From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-19.7 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,INCLUDES_CR_TRAILER,INCLUDES_PATCH, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,USER_AGENT_GIT autolearn=unavailable autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 2D042C433B4 for ; Wed, 12 May 2021 12:54:35 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id EB06661175 for ; Wed, 12 May 2021 12:54:34 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S233603AbhELMzj (ORCPT ); Wed, 12 May 2021 08:55:39 -0400 Received: from mail.kernel.org ([198.145.29.99]:53102 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231897AbhELMxJ (ORCPT ); Wed, 12 May 2021 08:53:09 -0400 Received: by mail.kernel.org (Postfix) with ESMTPSA id C7E7361454; Wed, 12 May 2021 12:51:47 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1620823907; bh=VpLsYBUyxDPAUDeiKOZVygRyVEGODhV1GMIGsuEHRw8=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=d4ErpNmWuXPXwpYmM0WD3X3ndNvX6sdaPHNGfQox7AganJxqVD8ocW4BEWnv4nmKn XJTJvPp6CoXKohvw2txq7Ia6t/6Duy85XYaH/SZss+4lvjGHh1A4W8cBE2HCEdW1ee 28A2w8PErov9IzB9E6gHlP5wEmnyox03kNDKNZPVItCOsZbxIwMWlQHfwQQJ2Xe+7F NTY9V12DhSzXMyj49d1frFU3PmSdOTt1aqVQpo2jziGcr9mQw+9kYpS64xhA9Hnmto jmeXAwbSkKb2RT1erWYvNYfiRiE3lArGVMEqCqnhfDdLkvviVtfgCdVp1XDan0twvu t9JgY28eMeI7A== Received: by mail.kernel.org with local (Exim 4.94.2) (envelope-from ) id 1lgoL3-0018nT-IX; Wed, 12 May 2021 14:51:45 +0200 From: Mauro Carvalho Chehab To: Linux Doc Mailing List Cc: Mauro Carvalho Chehab , Mali DP Maintainers , "James (Qian) Wang" , "Jonathan Corbet" , Daniel Vetter , David Airlie , Jani Nikula , Joonas Lahtinen , Liviu Dudau , Maarten Lankhorst , Maxime Ripard , Mihail Atanassov , Rodrigo Vivi , Thomas Zimmermann , dri-devel@lists.freedesktop.org, intel-gfx@lists.freedesktop.org, linux-kernel@vger.kernel.org, Jani Nikula Subject: [PATCH v2 32/40] docs: gpu: Use ASCII subset instead of UTF-8 alternate symbols Date: Wed, 12 May 2021 14:50:36 +0200 Message-Id: <2edfac4e4081d531f039cbebd9545789ebdcca6c.1620823573.git.mchehab+huawei@kernel.org> X-Mailer: git-send-email 2.30.2 In-Reply-To: References: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Sender: Mauro Carvalho Chehab Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org The conversion tools used during DocBook/LaTeX/Markdown->ReST conversion and some automatic rules which exists on certain text editors like LibreOffice turned ASCII characters into some UTF-8 alternatives that are better displayed on html and PDF. While it is OK to use UTF-8 characters in Linux, it is better to use the ASCII subset instead of using an UTF-8 equivalent character as it makes life easier for tools like grep, and are easier to edit with the some commonly used text/source code editors. Also, Sphinx already do such conversion automatically outside literal blocks: https://docutils.sourceforge.io/docs/user/smartquotes.html So, replace the occurences of the following UTF-8 characters: - U+2019 ('’'): RIGHT SINGLE QUOTATION MARK Acked-by: Jani Nikula Acked-by: Liviu Dudau Signed-off-by: Mauro Carvalho Chehab --- Documentation/gpu/i915.rst | 2 +- Documentation/gpu/komeda-kms.rst | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Documentation/gpu/i915.rst b/Documentation/gpu/i915.rst index 486c720f3890..2cbf54460b48 100644 --- a/Documentation/gpu/i915.rst +++ b/Documentation/gpu/i915.rst @@ -361,7 +361,7 @@ Locking Guidelines real bad. #. Do not nest different lru/memory manager locks within each other. - Take them in turn to update memory allocations, relying on the object’s + Take them in turn to update memory allocations, relying on the object's dma_resv ww_mutex to serialize against other operations. #. The suggestion for lru/memory managers locks is that they are small diff --git a/Documentation/gpu/komeda-kms.rst b/Documentation/gpu/komeda-kms.rst index eb693c857e2d..c2067678e92c 100644 --- a/Documentation/gpu/komeda-kms.rst +++ b/Documentation/gpu/komeda-kms.rst @@ -324,7 +324,7 @@ the control-abilites of device. We have &komeda_dev, &komeda_pipeline, &komeda_component. Now fill devices with pipelines. Since komeda is not for D71 only but also intended for later products, -of course we’d better share as much as possible between different products. To +of course we'd better share as much as possible between different products. To achieve this, split the komeda device into two layers: CORE and CHIP. - CORE: for common features and capabilities handling. -- 2.30.2 From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-16.8 required=3.0 tests=BAYES_00,DKIM_INVALID, DKIM_SIGNED,INCLUDES_CR_TRAILER,INCLUDES_PATCH,MAILING_LIST_MULTI, SPF_HELO_NONE,SPF_PASS,USER_AGENT_GIT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id CA49DC4360C for ; Wed, 12 May 2021 12:51:50 +0000 (UTC) Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 5B9E36141C for ; Wed, 12 May 2021 12:51:50 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 5B9E36141C Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=kernel.org Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=dri-devel-bounces@lists.freedesktop.org Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id A79EB6EB97; Wed, 12 May 2021 12:51:49 +0000 (UTC) Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by gabe.freedesktop.org (Postfix) with ESMTPS id 2E6446EB98; Wed, 12 May 2021 12:51:48 +0000 (UTC) Received: by mail.kernel.org (Postfix) with ESMTPSA id C7E7361454; Wed, 12 May 2021 12:51:47 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1620823907; bh=VpLsYBUyxDPAUDeiKOZVygRyVEGODhV1GMIGsuEHRw8=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=d4ErpNmWuXPXwpYmM0WD3X3ndNvX6sdaPHNGfQox7AganJxqVD8ocW4BEWnv4nmKn XJTJvPp6CoXKohvw2txq7Ia6t/6Duy85XYaH/SZss+4lvjGHh1A4W8cBE2HCEdW1ee 28A2w8PErov9IzB9E6gHlP5wEmnyox03kNDKNZPVItCOsZbxIwMWlQHfwQQJ2Xe+7F NTY9V12DhSzXMyj49d1frFU3PmSdOTt1aqVQpo2jziGcr9mQw+9kYpS64xhA9Hnmto jmeXAwbSkKb2RT1erWYvNYfiRiE3lArGVMEqCqnhfDdLkvviVtfgCdVp1XDan0twvu t9JgY28eMeI7A== Received: by mail.kernel.org with local (Exim 4.94.2) (envelope-from ) id 1lgoL3-0018nT-IX; Wed, 12 May 2021 14:51:45 +0200 From: Mauro Carvalho Chehab To: Linux Doc Mailing List Subject: [PATCH v2 32/40] docs: gpu: Use ASCII subset instead of UTF-8 alternate symbols Date: Wed, 12 May 2021 14:50:36 +0200 Message-Id: <2edfac4e4081d531f039cbebd9545789ebdcca6c.1620823573.git.mchehab+huawei@kernel.org> X-Mailer: git-send-email 2.30.2 In-Reply-To: References: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: dri-devel@lists.freedesktop.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Direct Rendering Infrastructure - Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Jani Nikula , Thomas Zimmermann , Jonathan Corbet , Mauro Carvalho Chehab , dri-devel@lists.freedesktop.org, Liviu Dudau , linux-kernel@vger.kernel.org, David Airlie , "James \(Qian\) Wang" , Rodrigo Vivi , Mali DP Maintainers , Mihail Atanassov , intel-gfx@lists.freedesktop.org Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" The conversion tools used during DocBook/LaTeX/Markdown->ReST conversion and some automatic rules which exists on certain text editors like LibreOffice turned ASCII characters into some UTF-8 alternatives that are better displayed on html and PDF. While it is OK to use UTF-8 characters in Linux, it is better to use the ASCII subset instead of using an UTF-8 equivalent character as it makes life easier for tools like grep, and are easier to edit with the some commonly used text/source code editors. Also, Sphinx already do such conversion automatically outside literal blocks: https://docutils.sourceforge.io/docs/user/smartquotes.html So, replace the occurences of the following UTF-8 characters: - U+2019 ('’'): RIGHT SINGLE QUOTATION MARK Acked-by: Jani Nikula Acked-by: Liviu Dudau Signed-off-by: Mauro Carvalho Chehab --- Documentation/gpu/i915.rst | 2 +- Documentation/gpu/komeda-kms.rst | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Documentation/gpu/i915.rst b/Documentation/gpu/i915.rst index 486c720f3890..2cbf54460b48 100644 --- a/Documentation/gpu/i915.rst +++ b/Documentation/gpu/i915.rst @@ -361,7 +361,7 @@ Locking Guidelines real bad. #. Do not nest different lru/memory manager locks within each other. - Take them in turn to update memory allocations, relying on the object’s + Take them in turn to update memory allocations, relying on the object's dma_resv ww_mutex to serialize against other operations. #. The suggestion for lru/memory managers locks is that they are small diff --git a/Documentation/gpu/komeda-kms.rst b/Documentation/gpu/komeda-kms.rst index eb693c857e2d..c2067678e92c 100644 --- a/Documentation/gpu/komeda-kms.rst +++ b/Documentation/gpu/komeda-kms.rst @@ -324,7 +324,7 @@ the control-abilites of device. We have &komeda_dev, &komeda_pipeline, &komeda_component. Now fill devices with pipelines. Since komeda is not for D71 only but also intended for later products, -of course we’d better share as much as possible between different products. To +of course we'd better share as much as possible between different products. To achieve this, split the komeda device into two layers: CORE and CHIP. - CORE: for common features and capabilities handling. -- 2.30.2 From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-16.8 required=3.0 tests=BAYES_00,DKIM_INVALID, DKIM_SIGNED,INCLUDES_CR_TRAILER,INCLUDES_PATCH,MAILING_LIST_MULTI, SPF_HELO_NONE,SPF_PASS,USER_AGENT_GIT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 03891C433B4 for ; Wed, 12 May 2021 15:34:27 +0000 (UTC) Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 939AA61CEC for ; Wed, 12 May 2021 15:34:26 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 939AA61CEC Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=kernel.org Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=intel-gfx-bounces@lists.freedesktop.org Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id C18BF6E220; Wed, 12 May 2021 15:34:25 +0000 (UTC) Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by gabe.freedesktop.org (Postfix) with ESMTPS id 2E6446EB98; Wed, 12 May 2021 12:51:48 +0000 (UTC) Received: by mail.kernel.org (Postfix) with ESMTPSA id C7E7361454; Wed, 12 May 2021 12:51:47 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1620823907; bh=VpLsYBUyxDPAUDeiKOZVygRyVEGODhV1GMIGsuEHRw8=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=d4ErpNmWuXPXwpYmM0WD3X3ndNvX6sdaPHNGfQox7AganJxqVD8ocW4BEWnv4nmKn XJTJvPp6CoXKohvw2txq7Ia6t/6Duy85XYaH/SZss+4lvjGHh1A4W8cBE2HCEdW1ee 28A2w8PErov9IzB9E6gHlP5wEmnyox03kNDKNZPVItCOsZbxIwMWlQHfwQQJ2Xe+7F NTY9V12DhSzXMyj49d1frFU3PmSdOTt1aqVQpo2jziGcr9mQw+9kYpS64xhA9Hnmto jmeXAwbSkKb2RT1erWYvNYfiRiE3lArGVMEqCqnhfDdLkvviVtfgCdVp1XDan0twvu t9JgY28eMeI7A== Received: by mail.kernel.org with local (Exim 4.94.2) (envelope-from ) id 1lgoL3-0018nT-IX; Wed, 12 May 2021 14:51:45 +0200 From: Mauro Carvalho Chehab To: Linux Doc Mailing List Date: Wed, 12 May 2021 14:50:36 +0200 Message-Id: <2edfac4e4081d531f039cbebd9545789ebdcca6c.1620823573.git.mchehab+huawei@kernel.org> X-Mailer: git-send-email 2.30.2 In-Reply-To: References: MIME-Version: 1.0 X-Mailman-Approved-At: Wed, 12 May 2021 15:34:25 +0000 Subject: [Intel-gfx] [PATCH v2 32/40] docs: gpu: Use ASCII subset instead of UTF-8 alternate symbols X-BeenThere: intel-gfx@lists.freedesktop.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Intel graphics driver community testing & development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Jani Nikula , Thomas Zimmermann , Jonathan Corbet , Mauro Carvalho Chehab , dri-devel@lists.freedesktop.org, linux-kernel@vger.kernel.org, David Airlie , "James \(Qian\) Wang" , Maxime Ripard , Mali DP Maintainers , Mihail Atanassov , intel-gfx@lists.freedesktop.org Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: base64 Errors-To: intel-gfx-bounces@lists.freedesktop.org Sender: "Intel-gfx" VGhlIGNvbnZlcnNpb24gdG9vbHMgdXNlZCBkdXJpbmcgRG9jQm9vay9MYVRlWC9NYXJrZG93bi0+ UmVTVCBjb252ZXJzaW9uCmFuZCBzb21lIGF1dG9tYXRpYyBydWxlcyB3aGljaCBleGlzdHMgb24g Y2VydGFpbiB0ZXh0IGVkaXRvcnMgbGlrZQpMaWJyZU9mZmljZSB0dXJuZWQgQVNDSUkgY2hhcmFj dGVycyBpbnRvIHNvbWUgVVRGLTggYWx0ZXJuYXRpdmVzIHRoYXQKYXJlIGJldHRlciBkaXNwbGF5 ZWQgb24gaHRtbCBhbmQgUERGLgoKV2hpbGUgaXQgaXMgT0sgdG8gdXNlIFVURi04IGNoYXJhY3Rl cnMgaW4gTGludXgsIGl0IGlzIGJldHRlciB0bwp1c2UgdGhlIEFTQ0lJIHN1YnNldCBpbnN0ZWFk IG9mIHVzaW5nIGFuIFVURi04IGVxdWl2YWxlbnQgY2hhcmFjdGVyCmFzIGl0IG1ha2VzIGxpZmUg ZWFzaWVyIGZvciB0b29scyBsaWtlIGdyZXAsIGFuZCBhcmUgZWFzaWVyIHRvIGVkaXQKd2l0aCB0 aGUgc29tZSBjb21tb25seSB1c2VkIHRleHQvc291cmNlIGNvZGUgZWRpdG9ycy4KCkFsc28sIFNw aGlueCBhbHJlYWR5IGRvIHN1Y2ggY29udmVyc2lvbiBhdXRvbWF0aWNhbGx5IG91dHNpZGUgbGl0 ZXJhbCBibG9ja3M6CiAgIGh0dHBzOi8vZG9jdXRpbHMuc291cmNlZm9yZ2UuaW8vZG9jcy91c2Vy L3NtYXJ0cXVvdGVzLmh0bWwKClNvLCByZXBsYWNlIHRoZSBvY2N1cmVuY2VzIG9mIHRoZSBmb2xs b3dpbmcgVVRGLTggY2hhcmFjdGVyczoKCgktIFUrMjAxOSAoJ+KAmScpOiBSSUdIVCBTSU5HTEUg UVVPVEFUSU9OIE1BUksKCkFja2VkLWJ5OiBKYW5pIE5pa3VsYSA8amFuaS5uaWt1bGFAaW50ZWwu Y29tPgpBY2tlZC1ieTogTGl2aXUgRHVkYXUgPGxpdml1LmR1ZGF1QGFybS5jb20+ClNpZ25lZC1v ZmYtYnk6IE1hdXJvIENhcnZhbGhvIENoZWhhYiA8bWNoZWhhYitodWF3ZWlAa2VybmVsLm9yZz4K LS0tCiBEb2N1bWVudGF0aW9uL2dwdS9pOTE1LnJzdCAgICAgICB8IDIgKy0KIERvY3VtZW50YXRp b24vZ3B1L2tvbWVkYS1rbXMucnN0IHwgMiArLQogMiBmaWxlcyBjaGFuZ2VkLCAyIGluc2VydGlv bnMoKyksIDIgZGVsZXRpb25zKC0pCgpkaWZmIC0tZ2l0IGEvRG9jdW1lbnRhdGlvbi9ncHUvaTkx NS5yc3QgYi9Eb2N1bWVudGF0aW9uL2dwdS9pOTE1LnJzdAppbmRleCA0ODZjNzIwZjM4OTAuLjJj YmY1NDQ2MGI0OCAxMDA2NDQKLS0tIGEvRG9jdW1lbnRhdGlvbi9ncHUvaTkxNS5yc3QKKysrIGIv RG9jdW1lbnRhdGlvbi9ncHUvaTkxNS5yc3QKQEAgLTM2MSw3ICszNjEsNyBAQCBMb2NraW5nIEd1 aWRlbGluZXMKIAkgIHJlYWwgYmFkLgogCiAjLiBEbyBub3QgbmVzdCBkaWZmZXJlbnQgbHJ1L21l bW9yeSBtYW5hZ2VyIGxvY2tzIHdpdGhpbiBlYWNoIG90aGVyLgotICAgVGFrZSB0aGVtIGluIHR1 cm4gdG8gdXBkYXRlIG1lbW9yeSBhbGxvY2F0aW9ucywgcmVseWluZyBvbiB0aGUgb2JqZWN04oCZ cworICAgVGFrZSB0aGVtIGluIHR1cm4gdG8gdXBkYXRlIG1lbW9yeSBhbGxvY2F0aW9ucywgcmVs eWluZyBvbiB0aGUgb2JqZWN0J3MKICAgIGRtYV9yZXN2IHd3X211dGV4IHRvIHNlcmlhbGl6ZSBh Z2FpbnN0IG90aGVyIG9wZXJhdGlvbnMuCiAKICMuIFRoZSBzdWdnZXN0aW9uIGZvciBscnUvbWVt b3J5IG1hbmFnZXJzIGxvY2tzIGlzIHRoYXQgdGhleSBhcmUgc21hbGwKZGlmZiAtLWdpdCBhL0Rv Y3VtZW50YXRpb24vZ3B1L2tvbWVkYS1rbXMucnN0IGIvRG9jdW1lbnRhdGlvbi9ncHUva29tZWRh LWttcy5yc3QKaW5kZXggZWI2OTNjODU3ZTJkLi5jMjA2NzY3OGU5MmMgMTAwNjQ0Ci0tLSBhL0Rv Y3VtZW50YXRpb24vZ3B1L2tvbWVkYS1rbXMucnN0CisrKyBiL0RvY3VtZW50YXRpb24vZ3B1L2tv bWVkYS1rbXMucnN0CkBAIC0zMjQsNyArMzI0LDcgQEAgdGhlIGNvbnRyb2wtYWJpbGl0ZXMgb2Yg ZGV2aWNlLgogCiBXZSBoYXZlICZrb21lZGFfZGV2LCAma29tZWRhX3BpcGVsaW5lLCAma29tZWRh X2NvbXBvbmVudC4gTm93IGZpbGwgZGV2aWNlcyB3aXRoCiBwaXBlbGluZXMuIFNpbmNlIGtvbWVk YSBpcyBub3QgZm9yIEQ3MSBvbmx5IGJ1dCBhbHNvIGludGVuZGVkIGZvciBsYXRlciBwcm9kdWN0 cywKLW9mIGNvdXJzZSB3ZeKAmWQgYmV0dGVyIHNoYXJlIGFzIG11Y2ggYXMgcG9zc2libGUgYmV0 d2VlbiBkaWZmZXJlbnQgcHJvZHVjdHMuIFRvCitvZiBjb3Vyc2Ugd2UnZCBiZXR0ZXIgc2hhcmUg YXMgbXVjaCBhcyBwb3NzaWJsZSBiZXR3ZWVuIGRpZmZlcmVudCBwcm9kdWN0cy4gVG8KIGFjaGll dmUgdGhpcywgc3BsaXQgdGhlIGtvbWVkYSBkZXZpY2UgaW50byB0d28gbGF5ZXJzOiBDT1JFIGFu ZCBDSElQLgogCiAtICAgQ09SRTogZm9yIGNvbW1vbiBmZWF0dXJlcyBhbmQgY2FwYWJpbGl0aWVz IGhhbmRsaW5nLgotLSAKMi4zMC4yCgpfX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19f X19fX19fX19fX19fXwpJbnRlbC1nZnggbWFpbGluZyBsaXN0CkludGVsLWdmeEBsaXN0cy5mcmVl ZGVza3RvcC5vcmcKaHR0cHM6Ly9saXN0cy5mcmVlZGVza3RvcC5vcmcvbWFpbG1hbi9saXN0aW5m by9pbnRlbC1nZngK