From 77b23d13d60d21f583197bbef47436ed96d7dac7 Mon Sep 17 00:00:00 2001 From: David Gardiner Date: Wed, 1 Sep 2021 14:13:58 +0930 Subject: [PATCH 01/21] Use current version of fetch-metadata action --- .../automating-dependabot-with-github-actions.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/content/code-security/supply-chain-security/keeping-your-dependencies-updated-automatically/automating-dependabot-with-github-actions.md b/content/code-security/supply-chain-security/keeping-your-dependencies-updated-automatically/automating-dependabot-with-github-actions.md index 3054438ffb..97cc2ccdf4 100644 --- a/content/code-security/supply-chain-security/keeping-your-dependencies-updated-automatically/automating-dependabot-with-github-actions.md +++ b/content/code-security/supply-chain-security/keeping-your-dependencies-updated-automatically/automating-dependabot-with-github-actions.md @@ -165,7 +165,7 @@ jobs: steps: - name: Dependabot metadata id: metadata - uses: dependabot/fetch-metadata@v1.1.0 + uses: dependabot/fetch-metadata@v1.1.1 with: github-token: "${{ secrets.GITHUB_TOKEN }}" # The following properties are now available: @@ -200,7 +200,7 @@ jobs: steps: - name: Dependabot metadata id: metadata - uses: dependabot/fetch-metadata@v1.1.0 + uses: dependabot/fetch-metadata@v1.1.1 with: github-token: "${{ secrets.GITHUB_TOKEN }}" - name: Add a label for all production dependencies @@ -230,7 +230,7 @@ jobs: steps: - name: Dependabot metadata id: metadata - uses: dependabot/fetch-metadata@v1.1.0 + uses: dependabot/fetch-metadata@v1.1.1 with: github-token: "${{ secrets.GITHUB_TOKEN }}" - name: Approve a PR @@ -263,7 +263,7 @@ jobs: steps: - name: Dependabot metadata id: metadata - uses: dependabot/fetch-metadata@v1.1.0 + uses: dependabot/fetch-metadata@v1.1.1 with: github-token: "${{ secrets.GITHUB_TOKEN }}" - name: Enable auto-merge for Dependabot PRs From 7d810497f769d6c858f1cd86a5dda5aff281f161 Mon Sep 17 00:00:00 2001 From: Van <20492454+VanDng@users.noreply.github.com> Date: Wed, 1 Sep 2021 15:23:33 +0700 Subject: [PATCH 02/21] Update removing-sensitive-data-from-a-repository.md --- .../removing-sensitive-data-from-a-repository.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/content/github/authenticating-to-github/keeping-your-account-and-data-secure/removing-sensitive-data-from-a-repository.md b/content/github/authenticating-to-github/keeping-your-account-and-data-secure/removing-sensitive-data-from-a-repository.md index 5ddef4ad7b..6f4d471bfa 100644 --- a/content/github/authenticating-to-github/keeping-your-account-and-data-secure/removing-sensitive-data-from-a-repository.md +++ b/content/github/authenticating-to-github/keeping-your-account-and-data-secure/removing-sensitive-data-from-a-repository.md @@ -86,6 +86,14 @@ To illustrate how `git filter-repo` works, we'll show you how to remove your fil ```shell $ cd YOUR-REPOSITORY ``` + {% note %} + + **Note:** You should be aware that the `filter-repo` command removes some configurations such as the remote url stored in the file `git/config`. You may want to back up the config file and restore it before executing `git push` commands in the next steps. + + You may want to backup your '.git/config' file before continuing with the next step because the 'filter-repo' command removes some configurations such as the remote url, later you will encounter the problem of can not do 'git push'. + + {% endnote %} + 4. Run the following command, replacing `PATH-TO-YOUR-FILE-WITH-SENSITIVE-DATA` with the **path to the file you want to remove, not just its filename**. These arguments will: - Force Git to process, but not check out, the entire history of every branch and tag - Remove the specified file, as well as any empty commits generated as a result From cdbbc0404387eada669e24a76dd3416662cee931 Mon Sep 17 00:00:00 2001 From: Van <20492454+VanDng@users.noreply.github.com> Date: Wed, 1 Sep 2021 15:32:07 +0700 Subject: [PATCH 03/21] Update removing-sensitive-data-from-a-repository.md --- .../removing-sensitive-data-from-a-repository.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/content/github/authenticating-to-github/keeping-your-account-and-data-secure/removing-sensitive-data-from-a-repository.md b/content/github/authenticating-to-github/keeping-your-account-and-data-secure/removing-sensitive-data-from-a-repository.md index 6f4d471bfa..bdd5bb8d44 100644 --- a/content/github/authenticating-to-github/keeping-your-account-and-data-secure/removing-sensitive-data-from-a-repository.md +++ b/content/github/authenticating-to-github/keeping-your-account-and-data-secure/removing-sensitive-data-from-a-repository.md @@ -89,8 +89,6 @@ To illustrate how `git filter-repo` works, we'll show you how to remove your fil {% note %} **Note:** You should be aware that the `filter-repo` command removes some configurations such as the remote url stored in the file `git/config`. You may want to back up the config file and restore it before executing `git push` commands in the next steps. - - You may want to backup your '.git/config' file before continuing with the next step because the 'filter-repo' command removes some configurations such as the remote url, later you will encounter the problem of can not do 'git push'. {% endnote %} From 868bdeba515d775fd84ce60731fd1de56f562925 Mon Sep 17 00:00:00 2001 From: Van <20492454+VanDng@users.noreply.github.com> Date: Wed, 1 Sep 2021 15:34:34 +0700 Subject: [PATCH 04/21] Update removing-sensitive-data-from-a-repository.md --- .../removing-sensitive-data-from-a-repository.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/github/authenticating-to-github/keeping-your-account-and-data-secure/removing-sensitive-data-from-a-repository.md b/content/github/authenticating-to-github/keeping-your-account-and-data-secure/removing-sensitive-data-from-a-repository.md index bdd5bb8d44..f90b1d7d77 100644 --- a/content/github/authenticating-to-github/keeping-your-account-and-data-secure/removing-sensitive-data-from-a-repository.md +++ b/content/github/authenticating-to-github/keeping-your-account-and-data-secure/removing-sensitive-data-from-a-repository.md @@ -88,7 +88,7 @@ To illustrate how `git filter-repo` works, we'll show you how to remove your fil ``` {% note %} - **Note:** You should be aware that the `filter-repo` command removes some configurations such as the remote url stored in the file `git/config`. You may want to back up the config file and restore it before executing `git push` commands in the next steps. + **Note:** You should be aware that the `filter-repo` command removes some configurations such as the remote url stored in the file `.git/config`. You may want to back up the config file and restore it before executing `git push` commands in the next steps. {% endnote %} From 4a904da53f0f7d26946240672042c6c35cfb43dd Mon Sep 17 00:00:00 2001 From: Van <20492454+VanDng@users.noreply.github.com> Date: Wed, 1 Sep 2021 16:44:28 +0700 Subject: [PATCH 05/21] Update removing-sensitive-data-from-a-repository.md --- .../removing-sensitive-data-from-a-repository.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/content/github/authenticating-to-github/keeping-your-account-and-data-secure/removing-sensitive-data-from-a-repository.md b/content/github/authenticating-to-github/keeping-your-account-and-data-secure/removing-sensitive-data-from-a-repository.md index f90b1d7d77..91e8a6a224 100644 --- a/content/github/authenticating-to-github/keeping-your-account-and-data-secure/removing-sensitive-data-from-a-repository.md +++ b/content/github/authenticating-to-github/keeping-your-account-and-data-secure/removing-sensitive-data-from-a-repository.md @@ -86,9 +86,10 @@ To illustrate how `git filter-repo` works, we'll show you how to remove your fil ```shell $ cd YOUR-REPOSITORY ``` + {% note %} - **Note:** You should be aware that the `filter-repo` command removes some configurations such as the remote url stored in the file `.git/config`. You may want to back up the config file and restore it before executing `git push` commands in the next steps. + **Note:** You should be aware that the command `filter-repo` removes some configurations such as the remote url stored in the file `.git/config`. You may want to back up the config file and restore it before executing `git push` commands in the next steps. {% endnote %} From 9d1709be35b274ef89735db4ee84f5cd5cefec9d Mon Sep 17 00:00:00 2001 From: Van <20492454+VanDng@users.noreply.github.com> Date: Wed, 1 Sep 2021 17:03:33 +0700 Subject: [PATCH 06/21] Update removing-sensitive-data-from-a-repository.md --- .../removing-sensitive-data-from-a-repository.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/content/github/authenticating-to-github/keeping-your-account-and-data-secure/removing-sensitive-data-from-a-repository.md b/content/github/authenticating-to-github/keeping-your-account-and-data-secure/removing-sensitive-data-from-a-repository.md index 91e8a6a224..e748e15a1c 100644 --- a/content/github/authenticating-to-github/keeping-your-account-and-data-secure/removing-sensitive-data-from-a-repository.md +++ b/content/github/authenticating-to-github/keeping-your-account-and-data-secure/removing-sensitive-data-from-a-repository.md @@ -89,13 +89,14 @@ To illustrate how `git filter-repo` works, we'll show you how to remove your fil {% note %} - **Note:** You should be aware that the command `filter-repo` removes some configurations such as the remote url stored in the file `.git/config`. You may want to back up the config file and restore it before executing `git push` commands in the next steps. + **Note:** On step 4, you should be aware that the command `filter-repo` removes some configurations such as the remote url stored in the file `.git/config`. You may want to back up the config file and restore it before executing `git push` commands in the next steps. {% endnote %} 4. Run the following command, replacing `PATH-TO-YOUR-FILE-WITH-SENSITIVE-DATA` with the **path to the file you want to remove, not just its filename**. These arguments will: - Force Git to process, but not check out, the entire history of every branch and tag - Remove the specified file, as well as any empty commits generated as a result + - **Removes some configurations such as the remote url stored in the file `.git/config`**. You may want to back up the config file in advance, so you can restore it when the execution is completed. - **Overwrite your existing tags** ```shell $ git filter-repo --invert-paths --path PATH-TO-YOUR-FILE-WITH-SENSITIVE-DATA From afe5a23f2642d4110118a96a96702d72ead9aac4 Mon Sep 17 00:00:00 2001 From: Van <20492454+VanDng@users.noreply.github.com> Date: Wed, 1 Sep 2021 17:04:14 +0700 Subject: [PATCH 07/21] Update removing-sensitive-data-from-a-repository.md --- .../removing-sensitive-data-from-a-repository.md | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/content/github/authenticating-to-github/keeping-your-account-and-data-secure/removing-sensitive-data-from-a-repository.md b/content/github/authenticating-to-github/keeping-your-account-and-data-secure/removing-sensitive-data-from-a-repository.md index e748e15a1c..12e8a9f548 100644 --- a/content/github/authenticating-to-github/keeping-your-account-and-data-secure/removing-sensitive-data-from-a-repository.md +++ b/content/github/authenticating-to-github/keeping-your-account-and-data-secure/removing-sensitive-data-from-a-repository.md @@ -82,17 +82,12 @@ To illustrate how `git filter-repo` works, we'll show you how to remove your fil > Receiving objects: 100% (1301/1301), 164.39 KiB, done. > Resolving deltas: 100% (724/724), done. ``` + 3. Navigate into the repository's working directory. ```shell $ cd YOUR-REPOSITORY ``` - - {% note %} - **Note:** On step 4, you should be aware that the command `filter-repo` removes some configurations such as the remote url stored in the file `.git/config`. You may want to back up the config file and restore it before executing `git push` commands in the next steps. - - {% endnote %} - 4. Run the following command, replacing `PATH-TO-YOUR-FILE-WITH-SENSITIVE-DATA` with the **path to the file you want to remove, not just its filename**. These arguments will: - Force Git to process, but not check out, the entire history of every branch and tag - Remove the specified file, as well as any empty commits generated as a result From d8a0843caa8f99a5db8f763eabd1fa4a894ab60d Mon Sep 17 00:00:00 2001 From: Van <20492454+VanDng@users.noreply.github.com> Date: Wed, 1 Sep 2021 17:19:01 +0700 Subject: [PATCH 08/21] Update removing-sensitive-data-from-a-repository.md --- .../removing-sensitive-data-from-a-repository.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/github/authenticating-to-github/keeping-your-account-and-data-secure/removing-sensitive-data-from-a-repository.md b/content/github/authenticating-to-github/keeping-your-account-and-data-secure/removing-sensitive-data-from-a-repository.md index 12e8a9f548..491c7746d4 100644 --- a/content/github/authenticating-to-github/keeping-your-account-and-data-secure/removing-sensitive-data-from-a-repository.md +++ b/content/github/authenticating-to-github/keeping-your-account-and-data-secure/removing-sensitive-data-from-a-repository.md @@ -91,7 +91,7 @@ To illustrate how `git filter-repo` works, we'll show you how to remove your fil 4. Run the following command, replacing `PATH-TO-YOUR-FILE-WITH-SENSITIVE-DATA` with the **path to the file you want to remove, not just its filename**. These arguments will: - Force Git to process, but not check out, the entire history of every branch and tag - Remove the specified file, as well as any empty commits generated as a result - - **Removes some configurations such as the remote url stored in the file `.git/config`**. You may want to back up the config file in advance, so you can restore it when the execution is completed. + - **Remove some configurations such as the remote url stored in the file `.git/config`**. You may want to back up the config file in advance, so you can restore it when the execution is completed. - **Overwrite your existing tags** ```shell $ git filter-repo --invert-paths --path PATH-TO-YOUR-FILE-WITH-SENSITIVE-DATA From 34857bc6eb8af0e5feab887670145e68288d9c03 Mon Sep 17 00:00:00 2001 From: Van <20492454+VanDng@users.noreply.github.com> Date: Wed, 1 Sep 2021 17:19:36 +0700 Subject: [PATCH 09/21] Update removing-sensitive-data-from-a-repository.md --- .../removing-sensitive-data-from-a-repository.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/content/github/authenticating-to-github/keeping-your-account-and-data-secure/removing-sensitive-data-from-a-repository.md b/content/github/authenticating-to-github/keeping-your-account-and-data-secure/removing-sensitive-data-from-a-repository.md index 491c7746d4..bdb49dd885 100644 --- a/content/github/authenticating-to-github/keeping-your-account-and-data-secure/removing-sensitive-data-from-a-repository.md +++ b/content/github/authenticating-to-github/keeping-your-account-and-data-secure/removing-sensitive-data-from-a-repository.md @@ -81,13 +81,11 @@ To illustrate how `git filter-repo` works, we'll show you how to remove your fil > remote: Total 1301 (delta 724), reused 910 (delta 522) > Receiving objects: 100% (1301/1301), 164.39 KiB, done. > Resolving deltas: 100% (724/724), done. - ``` - + ``` 3. Navigate into the repository's working directory. ```shell $ cd YOUR-REPOSITORY ``` - 4. Run the following command, replacing `PATH-TO-YOUR-FILE-WITH-SENSITIVE-DATA` with the **path to the file you want to remove, not just its filename**. These arguments will: - Force Git to process, but not check out, the entire history of every branch and tag - Remove the specified file, as well as any empty commits generated as a result From 0ab4e700d29d1ff16187aa311ea979d4d09cf19e Mon Sep 17 00:00:00 2001 From: Van <20492454+VanDng@users.noreply.github.com> Date: Wed, 1 Sep 2021 17:20:06 +0700 Subject: [PATCH 10/21] Update removing-sensitive-data-from-a-repository.md --- .../removing-sensitive-data-from-a-repository.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/github/authenticating-to-github/keeping-your-account-and-data-secure/removing-sensitive-data-from-a-repository.md b/content/github/authenticating-to-github/keeping-your-account-and-data-secure/removing-sensitive-data-from-a-repository.md index bdb49dd885..23c4b67427 100644 --- a/content/github/authenticating-to-github/keeping-your-account-and-data-secure/removing-sensitive-data-from-a-repository.md +++ b/content/github/authenticating-to-github/keeping-your-account-and-data-secure/removing-sensitive-data-from-a-repository.md @@ -85,8 +85,8 @@ To illustrate how `git filter-repo` works, we'll show you how to remove your fil 3. Navigate into the repository's working directory. ```shell $ cd YOUR-REPOSITORY - ``` -4. Run the following command, replacing `PATH-TO-YOUR-FILE-WITH-SENSITIVE-DATA` with the **path to the file you want to remove, not just its filename**. These arguments will: + ``` + 4. Run the following command, replacing `PATH-TO-YOUR-FILE-WITH-SENSITIVE-DATA` with the **path to the file you want to remove, not just its filename**. These arguments will: - Force Git to process, but not check out, the entire history of every branch and tag - Remove the specified file, as well as any empty commits generated as a result - **Remove some configurations such as the remote url stored in the file `.git/config`**. You may want to back up the config file in advance, so you can restore it when the execution is completed. From da527d754a78c799958e588ad2786146ac6be9b6 Mon Sep 17 00:00:00 2001 From: Van <20492454+VanDng@users.noreply.github.com> Date: Wed, 1 Sep 2021 17:21:11 +0700 Subject: [PATCH 11/21] Update removing-sensitive-data-from-a-repository.md --- .../removing-sensitive-data-from-a-repository.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/github/authenticating-to-github/keeping-your-account-and-data-secure/removing-sensitive-data-from-a-repository.md b/content/github/authenticating-to-github/keeping-your-account-and-data-secure/removing-sensitive-data-from-a-repository.md index 23c4b67427..51117920ad 100644 --- a/content/github/authenticating-to-github/keeping-your-account-and-data-secure/removing-sensitive-data-from-a-repository.md +++ b/content/github/authenticating-to-github/keeping-your-account-and-data-secure/removing-sensitive-data-from-a-repository.md @@ -81,11 +81,11 @@ To illustrate how `git filter-repo` works, we'll show you how to remove your fil > remote: Total 1301 (delta 724), reused 910 (delta 522) > Receiving objects: 100% (1301/1301), 164.39 KiB, done. > Resolving deltas: 100% (724/724), done. - ``` + ``` 3. Navigate into the repository's working directory. ```shell $ cd YOUR-REPOSITORY - ``` + ``` 4. Run the following command, replacing `PATH-TO-YOUR-FILE-WITH-SENSITIVE-DATA` with the **path to the file you want to remove, not just its filename**. These arguments will: - Force Git to process, but not check out, the entire history of every branch and tag - Remove the specified file, as well as any empty commits generated as a result From 485f065925cbe13256258e03ab37f13a18534503 Mon Sep 17 00:00:00 2001 From: Van <20492454+VanDng@users.noreply.github.com> Date: Wed, 1 Sep 2021 17:21:50 +0700 Subject: [PATCH 12/21] Update removing-sensitive-data-from-a-repository.md --- .../removing-sensitive-data-from-a-repository.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/github/authenticating-to-github/keeping-your-account-and-data-secure/removing-sensitive-data-from-a-repository.md b/content/github/authenticating-to-github/keeping-your-account-and-data-secure/removing-sensitive-data-from-a-repository.md index 51117920ad..436b85c1bd 100644 --- a/content/github/authenticating-to-github/keeping-your-account-and-data-secure/removing-sensitive-data-from-a-repository.md +++ b/content/github/authenticating-to-github/keeping-your-account-and-data-secure/removing-sensitive-data-from-a-repository.md @@ -86,7 +86,7 @@ To illustrate how `git filter-repo` works, we'll show you how to remove your fil ```shell $ cd YOUR-REPOSITORY ``` - 4. Run the following command, replacing `PATH-TO-YOUR-FILE-WITH-SENSITIVE-DATA` with the **path to the file you want to remove, not just its filename**. These arguments will: +4. Run the following command, replacing `PATH-TO-YOUR-FILE-WITH-SENSITIVE-DATA` with the **path to the file you want to remove, not just its filename**. These arguments will: - Force Git to process, but not check out, the entire history of every branch and tag - Remove the specified file, as well as any empty commits generated as a result - **Remove some configurations such as the remote url stored in the file `.git/config`**. You may want to back up the config file in advance, so you can restore it when the execution is completed. From 24e0f57c8bde960b7acae0f81c2942f92a2a22ed Mon Sep 17 00:00:00 2001 From: John Date: Wed, 1 Sep 2021 08:27:26 -0700 Subject: [PATCH 13/21] a discussion -> an issue Moving from a discussion to a discussion seems redundant? --- .../best-practices-for-community-conversations-on-github.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/discussions/guides/best-practices-for-community-conversations-on-github.md b/content/discussions/guides/best-practices-for-community-conversations-on-github.md index 4e0ef47013..adcc77b1ac 100644 --- a/content/discussions/guides/best-practices-for-community-conversations-on-github.md +++ b/content/discussions/guides/best-practices-for-community-conversations-on-github.md @@ -1,7 +1,7 @@ --- title: Best practices for community conversations on GitHub shortTitle: Best practices for community conversations -intro: 'You can use discussions to brainstorm with your team, and eventually move the conversation to a discussion when you are ready to scope out the work.' +intro: 'You can use discussions to brainstorm with your team, and eventually move the conversation to an issue when you are ready to scope out the work.' versions: fpt: '*' --- From d0b37de1648b430236276ea1646a9832774d5a6d Mon Sep 17 00:00:00 2001 From: GitHub Actions Date: Thu, 2 Sep 2021 09:45:19 +0000 Subject: [PATCH 14/21] update search indexes --- lib/search/indexes/github-docs-2.22-cn-records.json.br | 4 ++-- lib/search/indexes/github-docs-2.22-cn.json.br | 4 ++-- lib/search/indexes/github-docs-2.22-de-records.json.br | 4 ++-- lib/search/indexes/github-docs-2.22-de.json.br | 4 ++-- lib/search/indexes/github-docs-2.22-en-records.json.br | 4 ++-- lib/search/indexes/github-docs-2.22-en.json.br | 4 ++-- lib/search/indexes/github-docs-2.22-es-records.json.br | 4 ++-- lib/search/indexes/github-docs-2.22-es.json.br | 4 ++-- lib/search/indexes/github-docs-2.22-ja-records.json.br | 4 ++-- lib/search/indexes/github-docs-2.22-ja.json.br | 4 ++-- lib/search/indexes/github-docs-2.22-pt-records.json.br | 4 ++-- lib/search/indexes/github-docs-2.22-pt.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-cn-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-cn.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-de-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-de.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-en-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-en.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-es-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-es.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-ja-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-ja.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-pt-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-pt.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-cn-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-cn.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-de-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-de.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-en-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-en.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-es-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-es.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-ja-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-ja.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-pt-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-pt.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-cn-records.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-cn.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-de-records.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-de.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-en-records.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-en.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-es-records.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-es.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-ja-records.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-ja.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-pt-records.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-pt.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-cn-records.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-cn.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-de-records.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-de.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-en-records.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-en.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-es-records.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-es.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-ja-records.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-ja.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-pt-records.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-pt.json.br | 4 ++-- 60 files changed, 120 insertions(+), 120 deletions(-) diff --git a/lib/search/indexes/github-docs-2.22-cn-records.json.br b/lib/search/indexes/github-docs-2.22-cn-records.json.br index c92ad05aa9..7361aa9ec7 100644 --- a/lib/search/indexes/github-docs-2.22-cn-records.json.br +++ b/lib/search/indexes/github-docs-2.22-cn-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:99aece4ccd1d66d548a2699706f50d4e2c737c25398706f8cc747b7e969426f7 -size 506784 +oid sha256:0acd8907c97e940107c8e1f518203fefff0b32c977b40878de154afc056d93b5 +size 506737 diff --git a/lib/search/indexes/github-docs-2.22-cn.json.br b/lib/search/indexes/github-docs-2.22-cn.json.br index 5dec7bef71..6d17a2155f 100644 --- a/lib/search/indexes/github-docs-2.22-cn.json.br +++ b/lib/search/indexes/github-docs-2.22-cn.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8e9b654516737ab886be3c1bc0b2c42609bf76f5632ecee0c10859b1dd7477f9 -size 802840 +oid sha256:f9711c9f8dc693fbd14b1f56344698694d7c7a2cf7350fc72f249dd2705f3d78 +size 803274 diff --git a/lib/search/indexes/github-docs-2.22-de-records.json.br b/lib/search/indexes/github-docs-2.22-de-records.json.br index efd9fc1c95..3614615ba5 100644 --- a/lib/search/indexes/github-docs-2.22-de-records.json.br +++ b/lib/search/indexes/github-docs-2.22-de-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0ba5a88a73144a42ca66f843f4f9d126296e4c9111f113fa96fb1b47127e22e3 -size 469359 +oid sha256:d87bc1fd0458173dd22caa1f7570c80fbade9efd4fbad88b958037661d3f0d54 +size 469636 diff --git a/lib/search/indexes/github-docs-2.22-de.json.br b/lib/search/indexes/github-docs-2.22-de.json.br index 64e70cf71e..a9ad9ac209 100644 --- a/lib/search/indexes/github-docs-2.22-de.json.br +++ b/lib/search/indexes/github-docs-2.22-de.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5f386ef7853c38ac90cc58d541e34a4a80bd177ac33ae5a5b682e781d4f7c5bc -size 2077220 +oid sha256:d34151e39c6999ed1928c667292d8055c279b2f1a9e4ad43dbd8597b81e358dd +size 2078574 diff --git a/lib/search/indexes/github-docs-2.22-en-records.json.br b/lib/search/indexes/github-docs-2.22-en-records.json.br index dca3a0e557..e0912bcd6c 100644 --- a/lib/search/indexes/github-docs-2.22-en-records.json.br +++ b/lib/search/indexes/github-docs-2.22-en-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b43b069594b5f4e294aa4e47de913d05d72fc4e83c5cf43eca53918b1199b455 -size 432328 +oid sha256:c685e56cc1f0abf3682f3554a086177f3242338fe9486f8dd2c86e72e88e8a8f +size 432565 diff --git a/lib/search/indexes/github-docs-2.22-en.json.br b/lib/search/indexes/github-docs-2.22-en.json.br index 0db4794d65..ab26f517f6 100644 --- a/lib/search/indexes/github-docs-2.22-en.json.br +++ b/lib/search/indexes/github-docs-2.22-en.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:88d2aff1cfcde5c7118471899d853789bfaba1f52c052ebd4f7ec35f7cf12153 -size 1695654 +oid sha256:338c12ce0b89dd2490e275aaf809c57007dca5b36e257d9f1f88c49ae61fd46b +size 1695168 diff --git a/lib/search/indexes/github-docs-2.22-es-records.json.br b/lib/search/indexes/github-docs-2.22-es-records.json.br index 0b47ae41b1..5c4e3d0fd1 100644 --- a/lib/search/indexes/github-docs-2.22-es-records.json.br +++ b/lib/search/indexes/github-docs-2.22-es-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0a14f36bd486ef2868b1740915195bf1b9e22bb2461428271c5ea3882e8bc164 -size 280234 +oid sha256:acf1007cd6fa9d558a0cb2e32da8a0efef52e25e37d0d4004c54c08a69424cab +size 280079 diff --git a/lib/search/indexes/github-docs-2.22-es.json.br b/lib/search/indexes/github-docs-2.22-es.json.br index 05b7421d5d..0fc9b280c9 100644 --- a/lib/search/indexes/github-docs-2.22-es.json.br +++ b/lib/search/indexes/github-docs-2.22-es.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:043d8ca1b98a4c24b01dd86f4e547b667c27af9252b692301278691a2fd93bfc -size 1067402 +oid sha256:adb577e3b85135c7d2d74fd4e49801a2c13e5b83dfcab6d51cb2ccae5840e2e2 +size 1066314 diff --git a/lib/search/indexes/github-docs-2.22-ja-records.json.br b/lib/search/indexes/github-docs-2.22-ja-records.json.br index b286dfb166..8817a62b61 100644 --- a/lib/search/indexes/github-docs-2.22-ja-records.json.br +++ b/lib/search/indexes/github-docs-2.22-ja-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:06842dad4c5881b0bc545c0bfb40a6c7fb9f78027a6236dc2964fdcb1ebf1368 -size 528482 +oid sha256:f4a6daa0a6103c8e6a212f7286bbdfdc4788efdcd8f15d6f7bee25b4fa7b8b4f +size 528722 diff --git a/lib/search/indexes/github-docs-2.22-ja.json.br b/lib/search/indexes/github-docs-2.22-ja.json.br index 6b13a32072..11dc98cef6 100644 --- a/lib/search/indexes/github-docs-2.22-ja.json.br +++ b/lib/search/indexes/github-docs-2.22-ja.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9d35e420b8410837d51e9f3b76e6a870aa6551f9a30eefea314cbf12ee184fbf -size 2795198 +oid sha256:ddcace20a737edfb95babe39fcb6a4084d87651338524917484e63365ecf1be5 +size 2797340 diff --git a/lib/search/indexes/github-docs-2.22-pt-records.json.br b/lib/search/indexes/github-docs-2.22-pt-records.json.br index 36c9a231cc..b82279e7be 100644 --- a/lib/search/indexes/github-docs-2.22-pt-records.json.br +++ b/lib/search/indexes/github-docs-2.22-pt-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3c3a5e079826867c97908cc0c1fa6a3e0f4acc6ff96f68dcbae43c959ca0bdf8 -size 443366 +oid sha256:b80a064761e74f5de33b00d7cfa3c5292e90de432aa1ce1eac5f62dc32cf760e +size 443795 diff --git a/lib/search/indexes/github-docs-2.22-pt.json.br b/lib/search/indexes/github-docs-2.22-pt.json.br index 80aae2c838..a275705bbc 100644 --- a/lib/search/indexes/github-docs-2.22-pt.json.br +++ b/lib/search/indexes/github-docs-2.22-pt.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b26c2d0a1ead1da53e618000fcfd170367bd4f92395629181400fb7a8ec5d09f -size 1851070 +oid sha256:2ce3a17d0e29ba6f797cf53195dc6453a7b786766d680640275907a45aba98f6 +size 1852334 diff --git a/lib/search/indexes/github-docs-3.0-cn-records.json.br b/lib/search/indexes/github-docs-3.0-cn-records.json.br index db3c901cd0..ce1e3ba7ea 100644 --- a/lib/search/indexes/github-docs-3.0-cn-records.json.br +++ b/lib/search/indexes/github-docs-3.0-cn-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5c63a00444fc413129fc9f1986acd18e0d69489ffbd3a8ec5b238ccac90702e0 -size 524461 +oid sha256:953216ed98e23048f592656701ad96715fa87bd834a7e6dbbcafeca7027f80f7 +size 524563 diff --git a/lib/search/indexes/github-docs-3.0-cn.json.br b/lib/search/indexes/github-docs-3.0-cn.json.br index d7726494ed..3ea68c8871 100644 --- a/lib/search/indexes/github-docs-3.0-cn.json.br +++ b/lib/search/indexes/github-docs-3.0-cn.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a272e4fe4108c5597c376920705d6a83488a56eb86c6ec34952f1544dad8b6af -size 833715 +oid sha256:e67c46ffdeb963837286e15bff981ad665bb93fc5cd8860e9ca59da7c2af7acf +size 833042 diff --git a/lib/search/indexes/github-docs-3.0-de-records.json.br b/lib/search/indexes/github-docs-3.0-de-records.json.br index b7b3827d1c..5a29d84dea 100644 --- a/lib/search/indexes/github-docs-3.0-de-records.json.br +++ b/lib/search/indexes/github-docs-3.0-de-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:95cfc762084bdb15e50fd9976bd530ab77b26937eb6c3cbd88788f14155b4d0a -size 490207 +oid sha256:e3631e646331e18e7ef216349de954217a314f817dd9e8b82207e7c7c51580fd +size 490218 diff --git a/lib/search/indexes/github-docs-3.0-de.json.br b/lib/search/indexes/github-docs-3.0-de.json.br index 5cd5c514d5..80013e68b7 100644 --- a/lib/search/indexes/github-docs-3.0-de.json.br +++ b/lib/search/indexes/github-docs-3.0-de.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:da7c6a87445c146a9c5d317abf352ce0314bfe93e1f9734ed74a47d16970c326 -size 2178972 +oid sha256:01f6bcd6d8af9c79fdaea9745470e62a948182dd540df9ff50f82a2ac9b2c815 +size 2178636 diff --git a/lib/search/indexes/github-docs-3.0-en-records.json.br b/lib/search/indexes/github-docs-3.0-en-records.json.br index dfbebfff2c..a3801d2d0c 100644 --- a/lib/search/indexes/github-docs-3.0-en-records.json.br +++ b/lib/search/indexes/github-docs-3.0-en-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:938d978f048e7bb25f9456afadd6eff5f3a3dd1af72ed7c215829ba2214823ec -size 452296 +oid sha256:b6b3ff968d2cd4ca96cc83725b52126b5f35d5f3d8bf0b112ce38b0c13dc6ccf +size 452181 diff --git a/lib/search/indexes/github-docs-3.0-en.json.br b/lib/search/indexes/github-docs-3.0-en.json.br index 3f58f89df2..dfac2ddaf1 100644 --- a/lib/search/indexes/github-docs-3.0-en.json.br +++ b/lib/search/indexes/github-docs-3.0-en.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3ca0b5afca34df23e6b791581d3ecef8e78e84c81a61a7add9da01d24498334e -size 1769643 +oid sha256:bcecbed38b7736b98cb37051fca99202e79f51011aee5f825044c23d9bdcf291 +size 1770256 diff --git a/lib/search/indexes/github-docs-3.0-es-records.json.br b/lib/search/indexes/github-docs-3.0-es-records.json.br index 9c662edcac..a534a4eaf0 100644 --- a/lib/search/indexes/github-docs-3.0-es-records.json.br +++ b/lib/search/indexes/github-docs-3.0-es-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b9389723e6e3afd36ef184c64783699f65b493e6924bc00a2bf90bad519af75f -size 278150 +oid sha256:5c43c13cb97fbde959fbe6b5ce3e3a65213f7643f1e007b1420f65159bfebe30 +size 278360 diff --git a/lib/search/indexes/github-docs-3.0-es.json.br b/lib/search/indexes/github-docs-3.0-es.json.br index 35f0c9265d..76435b59bb 100644 --- a/lib/search/indexes/github-docs-3.0-es.json.br +++ b/lib/search/indexes/github-docs-3.0-es.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:aa44d0a937ad972df8548a81a7a104f3c7ccac0d43abc4d809aae08d17633cca -size 1055118 +oid sha256:8f167a46fe3b67e7e3cb2ae445365c6f4222be1326dd847745661b5b6f66627d +size 1055919 diff --git a/lib/search/indexes/github-docs-3.0-ja-records.json.br b/lib/search/indexes/github-docs-3.0-ja-records.json.br index ce894cb136..3669afce03 100644 --- a/lib/search/indexes/github-docs-3.0-ja-records.json.br +++ b/lib/search/indexes/github-docs-3.0-ja-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:11e8515787859fb49f379da3d289413a3a5c5a341a200a471d6a42bcdf2a0be6 -size 550220 +oid sha256:3893b7a70bc0e3e5fb0dd2e9fa872877c66e53c2fa070d3936981a0fb79083f5 +size 550429 diff --git a/lib/search/indexes/github-docs-3.0-ja.json.br b/lib/search/indexes/github-docs-3.0-ja.json.br index 9c0ab93349..4bb79bfeab 100644 --- a/lib/search/indexes/github-docs-3.0-ja.json.br +++ b/lib/search/indexes/github-docs-3.0-ja.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8cd5cb13df11a05dfda45196187ea6be7917606b933c2aa8a399fc9cc2fa3d18 -size 2910819 +oid sha256:2a38e5c072e84e41e145d2a83cce680288a56711fca8a74dd88b2174f14568f0 +size 2912155 diff --git a/lib/search/indexes/github-docs-3.0-pt-records.json.br b/lib/search/indexes/github-docs-3.0-pt-records.json.br index e8f00db085..4e269c46ef 100644 --- a/lib/search/indexes/github-docs-3.0-pt-records.json.br +++ b/lib/search/indexes/github-docs-3.0-pt-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2ee8d56ccb9beb4f4c7c500b780888c06b039f06be97ba862ac1de26df9e5a78 -size 464698 +oid sha256:5805e5292eeee4307adac87d11f300b0c9aa2ac255decbf6b36090c785c20e3d +size 464980 diff --git a/lib/search/indexes/github-docs-3.0-pt.json.br b/lib/search/indexes/github-docs-3.0-pt.json.br index 759e571eb5..0a5128328f 100644 --- a/lib/search/indexes/github-docs-3.0-pt.json.br +++ b/lib/search/indexes/github-docs-3.0-pt.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a23cab13e34587a93c86dd6cd49345955c5fe64683268257ed06ad4c00130224 -size 1937650 +oid sha256:c2db737fe960766f3e63b9af7f14950d7c1862bef737282a722653826b8f1bcf +size 1937882 diff --git a/lib/search/indexes/github-docs-3.1-cn-records.json.br b/lib/search/indexes/github-docs-3.1-cn-records.json.br index 6ef6f40919..238b5314fd 100644 --- a/lib/search/indexes/github-docs-3.1-cn-records.json.br +++ b/lib/search/indexes/github-docs-3.1-cn-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ee3e7957ec4d098dd2e4836ab8ab7c3fccd68e3176c7a61c6aca17013b3294ea -size 534265 +oid sha256:de60d143e3ba1040b6740423052b12c0bff719279c5dafe49bbb1e3d49367718 +size 534208 diff --git a/lib/search/indexes/github-docs-3.1-cn.json.br b/lib/search/indexes/github-docs-3.1-cn.json.br index 1a035ce3c5..4d2f5d43ee 100644 --- a/lib/search/indexes/github-docs-3.1-cn.json.br +++ b/lib/search/indexes/github-docs-3.1-cn.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0bc7bfe564c73c34e5574026d0aeb31a00349aaa079906d4cec54bb8047e21db -size 845804 +oid sha256:bb494aeef75821e2249e3c1b78ebbf5725c2871a2827612b89b6b54ea166a72f +size 846389 diff --git a/lib/search/indexes/github-docs-3.1-de-records.json.br b/lib/search/indexes/github-docs-3.1-de-records.json.br index c727fd0106..0203f8effc 100644 --- a/lib/search/indexes/github-docs-3.1-de-records.json.br +++ b/lib/search/indexes/github-docs-3.1-de-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ef53abc93b8a5b4d95e237a63bea9bb1f454cadfc51781acd9d7ecedf40d14d4 -size 497075 +oid sha256:2ba1e05cfb5d0d9f58d28116a74d8b17bd4677499bc3d32b979adbcd0a2c65b9 +size 497111 diff --git a/lib/search/indexes/github-docs-3.1-de.json.br b/lib/search/indexes/github-docs-3.1-de.json.br index 5fb1e53f6b..9b13342cbb 100644 --- a/lib/search/indexes/github-docs-3.1-de.json.br +++ b/lib/search/indexes/github-docs-3.1-de.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a37f498aeb8334d08c93fc6af7ea433eebff32d375ae5a95788b3a327550e874 -size 2221467 +oid sha256:1c5a2075480d96e482ac7b32b5730534927cf806a4a4a93de1b17d7218eec483 +size 2221120 diff --git a/lib/search/indexes/github-docs-3.1-en-records.json.br b/lib/search/indexes/github-docs-3.1-en-records.json.br index f356f165a1..886a7b1149 100644 --- a/lib/search/indexes/github-docs-3.1-en-records.json.br +++ b/lib/search/indexes/github-docs-3.1-en-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e030f5fecb3443fc09794e72e69716dba58ed38cb5398bcf65c59301d3fd080c -size 460672 +oid sha256:d429da81b9b8f6a41761b2c1b958dd9429169d98b28c006fbb3795a285bda551 +size 460700 diff --git a/lib/search/indexes/github-docs-3.1-en.json.br b/lib/search/indexes/github-docs-3.1-en.json.br index 32560c55de..3a79c4de91 100644 --- a/lib/search/indexes/github-docs-3.1-en.json.br +++ b/lib/search/indexes/github-docs-3.1-en.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:39c6476cde5cf6c494b236721a0358d95562daf58a0a289542328b17d08ee12f -size 1805197 +oid sha256:9e285537009b4ebe3c61eec04229aab298c5b75088fc2033d729da5bebc5579b +size 1805083 diff --git a/lib/search/indexes/github-docs-3.1-es-records.json.br b/lib/search/indexes/github-docs-3.1-es-records.json.br index b4491eb41b..766133ccb5 100644 --- a/lib/search/indexes/github-docs-3.1-es-records.json.br +++ b/lib/search/indexes/github-docs-3.1-es-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7801aecd05533fd0c7c26ab66bfae73675e0e4b1f2224c1b9d246343feb1dc0f -size 278293 +oid sha256:703434303c3e20c0712db4e667f0818218ca2777b99f3ff1fd00f0c5b51ff13f +size 278411 diff --git a/lib/search/indexes/github-docs-3.1-es.json.br b/lib/search/indexes/github-docs-3.1-es.json.br index 616a6ccf11..c55edd7252 100644 --- a/lib/search/indexes/github-docs-3.1-es.json.br +++ b/lib/search/indexes/github-docs-3.1-es.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:27f9040ced5bc5ab4bd56247374c0193b6582309623372c6154f5d5631cd5d4e -size 1057436 +oid sha256:c483e0104946c61a288e07ae8af3586855896181106ba60353ed6bd3c46e84f2 +size 1056484 diff --git a/lib/search/indexes/github-docs-3.1-ja-records.json.br b/lib/search/indexes/github-docs-3.1-ja-records.json.br index 321e26ff1c..84aa932e2f 100644 --- a/lib/search/indexes/github-docs-3.1-ja-records.json.br +++ b/lib/search/indexes/github-docs-3.1-ja-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:dc5099bd3981028c0f28a58846cc3294b0304545421653b052a1ff091b46f6b3 -size 559388 +oid sha256:1142562aff3826e8a5eb1b9e5b04a9694416f9c0f245b066d0481fcee436347a +size 559510 diff --git a/lib/search/indexes/github-docs-3.1-ja.json.br b/lib/search/indexes/github-docs-3.1-ja.json.br index 53488e5adb..e4fd015419 100644 --- a/lib/search/indexes/github-docs-3.1-ja.json.br +++ b/lib/search/indexes/github-docs-3.1-ja.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8e5455de692f68a419c1bb0f1b727c5b6691c36927c1fb19ac0bdcde16be40d6 -size 2966287 +oid sha256:2ff061a64f84cb1768faa52b46fd5913b2aa299061898f2c0d8c1215ff45546c +size 2966538 diff --git a/lib/search/indexes/github-docs-3.1-pt-records.json.br b/lib/search/indexes/github-docs-3.1-pt-records.json.br index 4f044ce40e..0539d1e2a7 100644 --- a/lib/search/indexes/github-docs-3.1-pt-records.json.br +++ b/lib/search/indexes/github-docs-3.1-pt-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:647d129f6fb0d5d0160c91180f0defb3eaa73eda81b09a1e563a669581515f24 -size 472136 +oid sha256:c89e965a051caaf3461c6678121aeecfe34683c5866108fb6bb5ad34ac021dec +size 472164 diff --git a/lib/search/indexes/github-docs-3.1-pt.json.br b/lib/search/indexes/github-docs-3.1-pt.json.br index 1819bc2e2f..05a490fdf3 100644 --- a/lib/search/indexes/github-docs-3.1-pt.json.br +++ b/lib/search/indexes/github-docs-3.1-pt.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b198b3a03cc55bd15085bd10aedf2b09350d412fb73aea858caf04cfaecd6f21 -size 1971481 +oid sha256:7c418a18018fbaf29ff24f53afbe7a5ebe164b4445a2b81a04a10b06fea4cdcd +size 1972205 diff --git a/lib/search/indexes/github-docs-dotcom-cn-records.json.br b/lib/search/indexes/github-docs-dotcom-cn-records.json.br index 94401a4f29..418a0f700d 100644 --- a/lib/search/indexes/github-docs-dotcom-cn-records.json.br +++ b/lib/search/indexes/github-docs-dotcom-cn-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:715393b4190f57d3d49351ccd0014a28ad4e149ea247dd7a0d637db293e03979 -size 709780 +oid sha256:e0c0688e6a354e348c3b05f6c85efca8e823200544e874998734599f18dea4b0 +size 709996 diff --git a/lib/search/indexes/github-docs-dotcom-cn.json.br b/lib/search/indexes/github-docs-dotcom-cn.json.br index bb3e6059e1..3650536b9a 100644 --- a/lib/search/indexes/github-docs-dotcom-cn.json.br +++ b/lib/search/indexes/github-docs-dotcom-cn.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b8ba04d09e4633fa8d18336ac76e0afd7d078c4331f3737b6c21811cfc629a06 -size 969378 +oid sha256:4216f859bf836b7809f660b6d2ba9f472d6ceef7ae978d8f66a993de233e07b9 +size 969241 diff --git a/lib/search/indexes/github-docs-dotcom-de-records.json.br b/lib/search/indexes/github-docs-dotcom-de-records.json.br index 12cae544a3..ff2e168a22 100644 --- a/lib/search/indexes/github-docs-dotcom-de-records.json.br +++ b/lib/search/indexes/github-docs-dotcom-de-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3e4d04878ed338155fb943ff5740f774b873d69c24ba9ddf2db4a0a488075d03 -size 647625 +oid sha256:02b89a4bb6a2a51a6774184006aec864bece5aaeb02a2c2d274f8b1cabc19905 +size 647919 diff --git a/lib/search/indexes/github-docs-dotcom-de.json.br b/lib/search/indexes/github-docs-dotcom-de.json.br index b6fcc87534..06b1cb5c6a 100644 --- a/lib/search/indexes/github-docs-dotcom-de.json.br +++ b/lib/search/indexes/github-docs-dotcom-de.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b5ef83fe3eb62f2b9d41b45129f615c2489f9c2eeee72cbe70cbf3a719a23731 -size 2901634 +oid sha256:a21bf76cd11992957c0ea9851139e3dc11c930eb8653eb46986806ea291072d1 +size 2902817 diff --git a/lib/search/indexes/github-docs-dotcom-en-records.json.br b/lib/search/indexes/github-docs-dotcom-en-records.json.br index 990cc7e9e8..d590b15e8e 100644 --- a/lib/search/indexes/github-docs-dotcom-en-records.json.br +++ b/lib/search/indexes/github-docs-dotcom-en-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b4ff87723b86bd73a1521dc85ce7255c0a502c22b2619b84844b6b8e28ea7710 -size 624808 +oid sha256:bb8a49506359ee3e02a7362b7b2657b65c9d729724cbd41b0d53bee372b40404 +size 624881 diff --git a/lib/search/indexes/github-docs-dotcom-en.json.br b/lib/search/indexes/github-docs-dotcom-en.json.br index 72f92a83cd..64b9d297d4 100644 --- a/lib/search/indexes/github-docs-dotcom-en.json.br +++ b/lib/search/indexes/github-docs-dotcom-en.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:45a90eb7a03300055183a60d1e33482eb5f639f486606ee75f422ef644f5f348 -size 2380267 +oid sha256:0f634e9618f61af14ba9473a2e36be73a3e9b18e89a7217dea223467e984d797 +size 2380946 diff --git a/lib/search/indexes/github-docs-dotcom-es-records.json.br b/lib/search/indexes/github-docs-dotcom-es-records.json.br index 6659e37ff3..e20b04dd4a 100644 --- a/lib/search/indexes/github-docs-dotcom-es-records.json.br +++ b/lib/search/indexes/github-docs-dotcom-es-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ce28158cf9072f19cb4fbcad7ee24793e300caa20054a6e8613152f2394716c5 -size 306360 +oid sha256:0424c5f2df03b0f3bddfffe41dbe274f4d6cd9ef3975c1e6ee711189ea885a3f +size 306533 diff --git a/lib/search/indexes/github-docs-dotcom-es.json.br b/lib/search/indexes/github-docs-dotcom-es.json.br index c04bce7bf6..e4a0ae60db 100644 --- a/lib/search/indexes/github-docs-dotcom-es.json.br +++ b/lib/search/indexes/github-docs-dotcom-es.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:35e5e79e37482bc5effebc0011ac7ec63e0dde6180a1dda52ddf4c5402885367 -size 1088377 +oid sha256:de848dad3f1bb3d179b207e04e25fc3d70e2aa6df9281861ca5b283b35266a8f +size 1087971 diff --git a/lib/search/indexes/github-docs-dotcom-ja-records.json.br b/lib/search/indexes/github-docs-dotcom-ja-records.json.br index a2accdf26d..a02f731578 100644 --- a/lib/search/indexes/github-docs-dotcom-ja-records.json.br +++ b/lib/search/indexes/github-docs-dotcom-ja-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1652750908113e1637265fc31fc7d5d39b6f8392769fa3d7c15a891503cca3ce -size 738148 +oid sha256:38215cfdcbc8d73132fb7576bf6979145cf542421fc17da04fd62a80758fde75 +size 738464 diff --git a/lib/search/indexes/github-docs-dotcom-ja.json.br b/lib/search/indexes/github-docs-dotcom-ja.json.br index 9e6c4a99ec..d99a68650f 100644 --- a/lib/search/indexes/github-docs-dotcom-ja.json.br +++ b/lib/search/indexes/github-docs-dotcom-ja.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:430ac8b273506371659ebf9cb8d63d8e37d9134cfe59c4ab849e20c0f6c73c46 -size 3851760 +oid sha256:f3567635f4ad64a19cfea989b916d913def004c8c0444216337164bf4d35447e +size 3852136 diff --git a/lib/search/indexes/github-docs-dotcom-pt-records.json.br b/lib/search/indexes/github-docs-dotcom-pt-records.json.br index 23a78c4921..3c6cdc2faf 100644 --- a/lib/search/indexes/github-docs-dotcom-pt-records.json.br +++ b/lib/search/indexes/github-docs-dotcom-pt-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e1b12556151fde21d72303f1251e451fc719ca251870ecc307db5ccf465bf126 -size 621397 +oid sha256:7d1c8a993eea6b4f881a1be954c001bfcf7c5b895c146a614081d43ea91d1766 +size 621401 diff --git a/lib/search/indexes/github-docs-dotcom-pt.json.br b/lib/search/indexes/github-docs-dotcom-pt.json.br index b414ac9ce9..3f0369ac32 100644 --- a/lib/search/indexes/github-docs-dotcom-pt.json.br +++ b/lib/search/indexes/github-docs-dotcom-pt.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:fed7de97147808a85d3db0aa0c35e8b845625383c13cf4cd4a540f3ea8cf20b5 -size 2551989 +oid sha256:4be8a9ba87b0b39332581dfea061d3844b0363bab17dd253a1fc4a1c9a7a18d3 +size 2551517 diff --git a/lib/search/indexes/github-docs-ghae-cn-records.json.br b/lib/search/indexes/github-docs-ghae-cn-records.json.br index 82382e4c44..06de7d3873 100644 --- a/lib/search/indexes/github-docs-ghae-cn-records.json.br +++ b/lib/search/indexes/github-docs-ghae-cn-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:28a06c68c81a9ddeeb580d8370d53221448580ec77c34c2bc898c8c1638ed09b -size 414050 +oid sha256:c36fb2de47b7ee7bb622d4a5b128695f96bf24e20bccff0e128210fb7b74151b +size 414404 diff --git a/lib/search/indexes/github-docs-ghae-cn.json.br b/lib/search/indexes/github-docs-ghae-cn.json.br index f2732a094b..f8e5637324 100644 --- a/lib/search/indexes/github-docs-ghae-cn.json.br +++ b/lib/search/indexes/github-docs-ghae-cn.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b7993b21d0739c89c456c324304ab2b6c886aeb57390004d29b3bd23f2d1b3c3 -size 630918 +oid sha256:0d8503028fab44bc13d9aebd6b708a67393478a3168f57dbc17daa41449d4479 +size 631051 diff --git a/lib/search/indexes/github-docs-ghae-de-records.json.br b/lib/search/indexes/github-docs-ghae-de-records.json.br index b8d92a09af..175a93e809 100644 --- a/lib/search/indexes/github-docs-ghae-de-records.json.br +++ b/lib/search/indexes/github-docs-ghae-de-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:979e33dceeda8695e3dde0a51ee4bf7313ad20455d461a1e8a14053501d7b876 -size 390662 +oid sha256:d0f295e268d0f9b217c269ea04e705bf88834c4f47632cf7b735d204db271d8d +size 390796 diff --git a/lib/search/indexes/github-docs-ghae-de.json.br b/lib/search/indexes/github-docs-ghae-de.json.br index a42376c384..9122fbc29d 100644 --- a/lib/search/indexes/github-docs-ghae-de.json.br +++ b/lib/search/indexes/github-docs-ghae-de.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5ce29cb109d3e235e372deee31d6f75d38363b5fdb4128efbe416ded4d791b18 -size 1698254 +oid sha256:95faa66dc1752e9bd9b57da092469748fe8c7e8ed7c3c4aaecaba9dd1764c2e1 +size 1698716 diff --git a/lib/search/indexes/github-docs-ghae-en-records.json.br b/lib/search/indexes/github-docs-ghae-en-records.json.br index 3486483422..1371592222 100644 --- a/lib/search/indexes/github-docs-ghae-en-records.json.br +++ b/lib/search/indexes/github-docs-ghae-en-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9ded2731f7340acf7e4e0f16a64ce642be7ac8035da8b5750f8fb2a2102691f5 -size 360865 +oid sha256:edace1f300d46b0b3a1ad126a483fafae79a62854d7a7e7eaf65e944fa212e5e +size 360829 diff --git a/lib/search/indexes/github-docs-ghae-en.json.br b/lib/search/indexes/github-docs-ghae-en.json.br index 3b6e3cf502..e80c242287 100644 --- a/lib/search/indexes/github-docs-ghae-en.json.br +++ b/lib/search/indexes/github-docs-ghae-en.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ffb17247d70f3a0d310b759fe7a8f8244469763ae8d76142f01b48b84bbaa1bd -size 1354428 +oid sha256:fb0121a813a3b92beff87eda43bc9a1949c70c6e5830dbd1b3f973f08d159b4e +size 1354056 diff --git a/lib/search/indexes/github-docs-ghae-es-records.json.br b/lib/search/indexes/github-docs-ghae-es-records.json.br index d1f9fb64b5..c6846d7476 100644 --- a/lib/search/indexes/github-docs-ghae-es-records.json.br +++ b/lib/search/indexes/github-docs-ghae-es-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9346544c184ae5b38898ff0d38bb1885e0f12900904be431c81a3c9e29e9b1cd -size 200765 +oid sha256:2a707baa6125bd74f5857d3f295efbc291610986f450eed7495fd9a095b75472 +size 200686 diff --git a/lib/search/indexes/github-docs-ghae-es.json.br b/lib/search/indexes/github-docs-ghae-es.json.br index 88eb2ba238..c7c9dd7401 100644 --- a/lib/search/indexes/github-docs-ghae-es.json.br +++ b/lib/search/indexes/github-docs-ghae-es.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3a8996ca046908ded6d826f5280a107113236dff6db905e49ac56189b3cb80bf -size 718000 +oid sha256:344ce735c2453ae8f3aba0cf5618c5f322ab45756d4c352ff05f7c17c90ab61d +size 718086 diff --git a/lib/search/indexes/github-docs-ghae-ja-records.json.br b/lib/search/indexes/github-docs-ghae-ja-records.json.br index 38b296129f..468a701340 100644 --- a/lib/search/indexes/github-docs-ghae-ja-records.json.br +++ b/lib/search/indexes/github-docs-ghae-ja-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:822d7937ea78357b062bf8cf228fd15b95625fb296626d2e159ca660b7ad65a5 -size 435386 +oid sha256:4cb8437b42f9ca86358876822ca9ee56aa9d3a60358eda4e339fcebee6a8ae6e +size 435303 diff --git a/lib/search/indexes/github-docs-ghae-ja.json.br b/lib/search/indexes/github-docs-ghae-ja.json.br index 734b877ced..004ef8b5dc 100644 --- a/lib/search/indexes/github-docs-ghae-ja.json.br +++ b/lib/search/indexes/github-docs-ghae-ja.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0b83b02fc81a10efcc89242040c2a301170a03a3b9626c014151d1ae6377339b -size 2215891 +oid sha256:da9ab5b6230a098171f3be7d6016846cd521baf20b22b13ccfe68b785d8a9055 +size 2216332 diff --git a/lib/search/indexes/github-docs-ghae-pt-records.json.br b/lib/search/indexes/github-docs-ghae-pt-records.json.br index 78557fe67c..4c5f749855 100644 --- a/lib/search/indexes/github-docs-ghae-pt-records.json.br +++ b/lib/search/indexes/github-docs-ghae-pt-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d699ad873129577531f2038ec1c30a89214b26744eb77f9c42ce8fddb680ca3a -size 371556 +oid sha256:8279d7d1b8551f7b07e74e2611cb7530b7c566839e180f71d1d0e8615c4393d5 +size 371544 diff --git a/lib/search/indexes/github-docs-ghae-pt.json.br b/lib/search/indexes/github-docs-ghae-pt.json.br index 5a54972b9f..3073bebc54 100644 --- a/lib/search/indexes/github-docs-ghae-pt.json.br +++ b/lib/search/indexes/github-docs-ghae-pt.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d31bcf60f9cc8aae504fbddfd470267a2677e79cd8079995facdbd8a19f9836f -size 1496099 +oid sha256:e485677b896ed0baed07610e2ab9f0ee13c41438e07ebef826e322d4e9ae1bd4 +size 1496286 From 9b34b10428dce075122ef81d1f215679696ad67b Mon Sep 17 00:00:00 2001 From: AlonaHlobina <54394529+AlonaHlobina@users.noreply.github.com> Date: Thu, 2 Sep 2021 18:24:06 +0200 Subject: [PATCH 15/21] Update beta-codeql-packs-actions.md (#21235) --- .../about-code-scanning-with-codeql.md | 2 +- .../configuring-code-scanning.md | 4 ++-- .../code-scanning/beta-codeql-packs-actions.md | 15 --------------- .../code-scanning/beta-codeql-packs-cli.md | 2 +- 4 files changed, 4 insertions(+), 19 deletions(-) delete mode 100644 data/reusables/code-scanning/beta-codeql-packs-actions.md diff --git a/content/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/about-code-scanning-with-codeql.md b/content/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/about-code-scanning-with-codeql.md index 6bd97704de..286d3771a0 100644 --- a/content/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/about-code-scanning-with-codeql.md +++ b/content/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/about-code-scanning-with-codeql.md @@ -54,7 +54,7 @@ These queries must belong to a published {% data variables.product.prodname_code For more information, see "[About {% data variables.product.prodname_codeql %} packs](https://codeql.github.com/docs/codeql-cli/about-codeql-packs/)" and "[About {% data variables.product.prodname_ql %} packs](https://codeql.github.com/docs/codeql-cli/about-ql-packs/)" in the {% data variables.product.prodname_codeql %} documentation. -{% data reusables.code-scanning.beta-codeql-packs-actions %} +{% data reusables.code-scanning.beta-codeql-packs-cli %} {%- else %} The queries you want to run must belong to a QL pack in a repository. Queries must only depend on the standard libraries (that is, the libraries referenced by an `import LANGUAGE` statement in your query), or libraries in the same QL pack as the query. For more information, see "[About {% data variables.product.prodname_ql %} packs](https://codeql.github.com/docs/codeql-cli/about-ql-packs/)." diff --git a/content/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning.md b/content/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning.md index 59d76bbf59..58ba599b89 100644 --- a/content/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning.md +++ b/content/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning.md @@ -303,7 +303,7 @@ Your specified category will not overwrite the details of the `runAutomationDeta {% if codeql-packs %} ### Using {% data variables.product.prodname_codeql %} query packs -{% data reusables.code-scanning.beta-codeql-packs-actions %} +{% data reusables.code-scanning.beta-codeql-packs-cli %} To add one or more {% data variables.product.prodname_codeql %} query packs (beta), add a `with: packs:` entry within the `uses: github/codeql-action/init@v1` section of the workflow. Within `packs` you specify one or more packages to use and, optionally, which version to download. Where you don't specify a version, the latest version is downloaded. If you want to use packages that are not publicly available, you need to set the `GITHUB_TOKEN` environment variable to a secret that has access to the packages. For more information, see "[Authentication in a workflow](/actions/reference/authentication-in-a-workflow)" and "[Encrypted secrets](/actions/reference/encrypted-secrets)." @@ -389,7 +389,7 @@ The settings in the configuration file are written in YAML format. {% if codeql-packs %} ### Specifying {% data variables.product.prodname_codeql %} query packs -{% data reusables.code-scanning.beta-codeql-packs-actions %} +{% data reusables.code-scanning.beta-codeql-packs-cli %} You specify {% data variables.product.prodname_codeql %} query packs in an array. Note that the format is different from the format used by the workflow file. diff --git a/data/reusables/code-scanning/beta-codeql-packs-actions.md b/data/reusables/code-scanning/beta-codeql-packs-actions.md deleted file mode 100644 index d3b68e0a6e..0000000000 --- a/data/reusables/code-scanning/beta-codeql-packs-actions.md +++ /dev/null @@ -1,15 +0,0 @@ -{% ifversion fpt %} - -{% note %} - -**Note:** Use of {% data variables.product.prodname_codeql %} query packs with {% data variables.product.prodname_code_scanning %} is currently in beta and subject to change. To use this beta functionality, update your workflow to specify the beta release of the _codeql-action_. - -``` - - uses: github/codeql-action/init@v1 - with: - tools: https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.6.0-beta.1 -``` - -{% endnote %} - -{% endif %} diff --git a/data/reusables/code-scanning/beta-codeql-packs-cli.md b/data/reusables/code-scanning/beta-codeql-packs-cli.md index dd7dd48f9f..a3f012cc4d 100644 --- a/data/reusables/code-scanning/beta-codeql-packs-cli.md +++ b/data/reusables/code-scanning/beta-codeql-packs-cli.md @@ -2,7 +2,7 @@ {% note %} -**Note:** The {% data variables.product.prodname_codeql %} package management functionality, including {% data variables.product.prodname_codeql %} packs, is currently in beta and subject to change. To use this beta functionality, install the beta release of the {% data variables.product.prodname_codeql_cli %} bundle from: https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.6.0-beta.1. +**Note:** The {% data variables.product.prodname_codeql %} package management functionality, including {% data variables.product.prodname_codeql %} packs, is currently in beta and subject to change. {% endnote %} From 28ba13d2081d47400ddf81212ee249b235bc3e50 Mon Sep 17 00:00:00 2001 From: lesleyanneb <31181282+lesleyanneb@users.noreply.github.com> Date: Fri, 3 Sep 2021 02:54:08 +1000 Subject: [PATCH 16/21] Update about-storage-and-bandwidth-usage to include Actions impact (#21255) * Update about-storage-and-bandwidth-usage.md * use reusable for Actions Co-authored-by: Ethan Palm <56270045+ethanpalm@users.noreply.github.com> --- .../versioning-large-files/about-storage-and-bandwidth-usage.md | 1 + 1 file changed, 1 insertion(+) diff --git a/content/github/managing-large-files/versioning-large-files/about-storage-and-bandwidth-usage.md b/content/github/managing-large-files/versioning-large-files/about-storage-and-bandwidth-usage.md index 9b2e33d2e3..8ed3d6c19d 100644 --- a/content/github/managing-large-files/versioning-large-files/about-storage-and-bandwidth-usage.md +++ b/content/github/managing-large-files/versioning-large-files/about-storage-and-bandwidth-usage.md @@ -19,6 +19,7 @@ When you commit and push a change to a file tracked with {% data variables.large For example: - If you push a 500 MB file to {% data variables.large_files.product_name_short %}, you'll use 500 MB of your allotted storage and none of your bandwidth. If you make a 1 byte change and push the file again, you'll use another 500 MB of storage and no bandwidth, bringing your total usage for these two pushes to 1 GB of storage and zero bandwidth. - If you download a 500 MB file that's tracked with LFS, you'll use 500 MB of the repository owner's allotted bandwidth. If a collaborator pushes a change to the file and you pull the new version to your local repository, you'll use another 500 MB of bandwidth, bringing the total usage for these two downloads to 1 GB of bandwidth. +- If {% data variables.product.prodname_actions %} downloads a 500 MB file that is tracked with LFS, it will use 500 MB of the repository owner's allotted bandwidth. {% ifversion fpt %} If {% data variables.large_files.product_name_long %} ({% data variables.large_files.product_name_short %}) objects are included in source code archives for your repository, downloads of those archives will count towards bandwidth usage for the repository. For more information, see "[Managing {% data variables.large_files.product_name_short %} objects in archives of your repository](/github/administering-a-repository/managing-git-lfs-objects-in-archives-of-your-repository)." From c06909177ad3b2b9e74504fa19ed6136a6982482 Mon Sep 17 00:00:00 2001 From: Emma Makinson Date: Thu, 2 Sep 2021 18:24:41 +0100 Subject: [PATCH 17/21] Adds repo breakdown for LFS data (#21260) * Adds repo breakdown for LFS data * Update data/reusables/dotcom_billing/lfs-data.md Co-authored-by: Ethan Palm <56270045+ethanpalm@users.noreply.github.com> --- assets/images/help/billing/lfs-data.png | Bin 23436 -> 28680 bytes data/reusables/dotcom_billing/lfs-data.md | 3 ++- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/assets/images/help/billing/lfs-data.png b/assets/images/help/billing/lfs-data.png index 24adf43e4d93eae49794849b84cbd38e910570eb..6949e1b169287ebd4545822dae8a7885f15bfb73 100644 GIT binary patch literal 28680 zcmeFZc|6qL`!~**m=Z>W>`S7uBx39uG9gq}d6%B}rin<6w3s`U^X&0%e_^GrsE?)DdUZ`@+zmD`Bna?9XW!icA<{II~ zn|m+LUeDETs6O5(*Q-~~EwbuyS7d4O!;oio^3n&>d%EvmUSPTmXK~Otb_{+D0)+=c zFJFcS27#YJL0DR~<~1dz5Fa#Ze>fdk)T-i_imhToE*D`?-8PFQJ&NSv>HJiR;=6sW zZ~WAUFROu$Jq-k(1pZmfjU90)XB)Ko(|DQxG*|}or=^&mI#`X~^P_I;uV%lV09WJs z=P^J3uSS2&08(s~J$U=irlR2DzkB>2`Y7y2dhCRVUS>&>X9mGZHXCK^y#5p`o5tWk zGZ6Uu!{8yqsBzvV&n*ReRi7uEU!`p4kOyApQ491&eb|=oTt;M zhnq9lob%x7U_x(u%|_&OD*jl0gPwGq?0c-|b1BhV4@VRlcR9sN!0ay)-DkcQNZ=*g zp3mD@pf^={|8(E(2(9T=NTuA`LwAb0dgsXgzG}wE?&8R7`$e;k=J*ZkR9J~KA}agh zLq5G4N(iMuJs`zzjPQ&_b-pfYt!QwmQm&Vp&TqZ1w_{RnC)sP`|{d{^Bd?cF&c zQ2UkqyiF;UoHs&YO2&1K?0aG2$(tgodEP7Ue&h%<5#RLQr4}4*dYjiqI5$pNSd+{W zNkvQS*I-sviB)vGKJU6_@zuAkb4IKBl5V5PjTAzgP8&W#hE}%Fh0xJ_^A%j z@wvhBMN{o*jB`iKdgs~PrmfeuK0an4(6XuBBsX*~Wq0#g?M?`$QZ^cu=}y>Exs@*( z=e8BVv?+@A@y$!x3j11JwEQ#P%PM8RdoE~r%E+MxQ&x0I>z(jvMB3Finy}s{cEO0Xj?M3#~8VIR$8Gu zGaH_kXy9$rxAJ4ySmcTXAwr0CZE?#g1lP_MV=i=d!MdeyXm>kg5sMlJi^SEc-4U`AV85GKkmi8HpRyOVr^LzWbb>kZOEdG_Z>!CQ|~WlfwGpAZJBSuQTbm>%szR+_BfAdl$V%QrF^T_pAIPq%muYTQM4KiqiJk<*8^3 z(~k{q1Er4m&0=(CERNPyEfLDTrF<@9(Dy}e=ls;}v%;DM$)9^?_Y3XKdxehpo`u^@ zWhjo`=VxsK$!{9ZzoeD~->iPH_N^n;*AwIuE#hN*OR%$(m|HgY5!d$Ml8&~=Z7`W& zY$49$)Qi%-B%n6DVa6Gh-lh@?ySb}zB4i*kHWt)=gE3ajP_8Mj>&qQ@Aag*+MCJ3y zO+g8R4`!H^_DT}2io*=y7pC(t{;&XpPDW^v-!l1Xa@pp8uBz{fTvqNoR)dB$>PcUt ztUNT8?GFJ?g&>t<_&Gt})K%Q_+nnO^?E)+b$F__YS-0IOeGt!>Pv9I2mPmg){}DUZ+og zA?f4M1(rXzp2HQc(M7dQUE57vr{|#@1o&vyt!1$nEz(Vq`%tm7wergf=ghk{lR$t6zEU{BS%?<);++&s6KI29D(KCQ%bO<-mGbwPr@%j@a#Sag_g@jEDlssuMLFJz#j zd`0mbS?B}bBI4H_k0s}0O}Vvcb^7s*=dJ8#!!|I^<6Jv*7fs5~kvHTNnjv@ltEKbU ztZt;nVOA#6Uf6^CB)dd<`xE~0Z^fj(nD~cXWZZn>BW%rCPXN_YAT;At$iRH)$d)P`gaGdNd?; zg!xGocH#IWX9%YV_hw~ZP#Fnwnvfs$Ov$8)duP-?3P?Lhw=@OxG@}CEpS-r6oIyk{ z-ELH+4o<7W07&Ye%Im#Pz{@>f#fpz zXte`BdNWM-cb3f2C+m{KNB~lyrbscoM_k^`WYxx~^z(BqGs-#-@>5;1T)(?Ma}8vs zw!Q^WbDDdSof{iR?!QTS3!-L!R`<=0f(!)wn_u~YYNX7jS@;YCRa| zc~eb@*_(kgpU+UZQTaL3yjbG-O5Q%o&Ops(-Y-z2h8e8QREU8Uz^W=2B`ua)j`0oD zJ&PM>3N0iBmqD;lhDrvhfmSY-ien&wbD!J4xQZ;&OV&I?vTcV8S&B)^o)@|ahiItO zXREx3d~JlQxI^y>l?jcuu?U5xyr9Rn-13^tG-xPmzOP|YC2x7B<~ZKrgaFlwNU9I{ znHoE`VH!$3`4+mOx|&blHt^t|K^67aX2N0yJr^Y8t4U=@QmqJ@IenOkAwW=a@bQJM z%AF`A1bg%9HSXlb#|Jk);$=MD9*yYp%pWg;sP;IQ0!E`ro|?noIS@V+k8ZY2UISWb zmUGrMpx*AFTAr;RspaQvYmb78s9PZ!Vbpe4hp9`%pzc>rCdDLHW-)!HinhAJve%dy74w4#6(H8M1Av4Yq=)aK3#)I!iZ zXW_0h3GmP5$Pa-J`JfY_PASaUKXxc#HM`ccjqh1OWIA4oiT8i@R12-dCCDh(@wl}?sG9NZwI|&- zH8u8p>Z0MJ=ONf_2CCMDQ3>`#)?o8wE%gB#i+U8BK>m6~x8vG}^N2$AKUgL zF9gb=y7PWLJ=NSu0qwcbGTW`y`KB8Gp^{g*s(OO_a<;|G-t!KkWF6JE&A-1MCwDzU zKiN2MFeVkVvWlEdBD~dh&D+@+nyvFmjmv%eqTP5ahu&lEEy?LyDek&HaV}T#4WYnp zFW0?W*DI5cQs>cMy%aE+Yq-E*D%&pfJ^#^7)NaA6#Lk&Oml!_uk`N!17`l?|v54 zA#j9Q4RX|X=JB(&hI@XRx29WAnD;%c%6n^WOH#L1di)lbJ1)tL_KmHRC!4rBHcE$* zZsxLJu7p1saoOANFZY}LHr*+{rG!I*Hdnh~de+bO&d_sjRq%O>DQ=%@><=+6e(8-~j3||EEc2o~wJx_T<5foA z_gyJKx+x5NuG*&?JR`wulekeH_r*@JjyB(<=~PQQOLj-7;l!FW>?oI%!if6Kb6m`* z@KOIE@rT4`f_LLKzuOb{Cf6j-_NdM+mTy@?&p%H9j@k9DgJ9V#7Mtj9lQ;+$A@F#J z=$vEVq)Alf#j$GvI~#>ETSdW#vw4u)K$UBOTX}E1Z^26PR>7$%`2c&*6qk&fy%9pe zLSG@`j2v*RY@sJ#c6j?}=GmT%>=dpS6JI*`iA?RacfmXPdU=a8k4Yzxahb|vM~!4% zvnuz|pIswlV3oJL7Frn>+$5uPxJvJ~5uP)O;A9I(LB%gNxiqRF^u&gjB1=sdxH=Ly z7KM7+k?*P|P7ppl`k+Ey2z#sq<$-0vND%J12S&QQus7Wtn!~QARGX~2xLjqnpnK0?Kq3Ldp3ybRrGwY zrFcs~^FGsbYa91AH)yeVVB(RTNJPc_F1Jn#Y;HcwC-bUK9a-8}YG&aUejADjwtG=yb3p^Zsd zrLuEMFZNNsf9P~rwW;Yb(3t-Oc;G zD3#H&17CUztP7SoY3}T3AYbLe_hVvc~&1ggt{r>yz1`liy`x6mP(zJW{9EZ4<>50n(wKhA_JVN9miH- zLf_-%pZGOv8!nekUE$+bn{~41DhqjS7aQCb%CnHz_Ao>x8Tk@gWajtvSFw{^ge~Ec zC0Op2Fzx0s`Qp)(mmf50He}6xNC5cWTu^+9-Wu7r_Uxk&=`iNL6Z-O@!)8Ttft5gt zp?jiA%aXU$-w}%PvX)6|Hyt1EDyj#Gh%;*5v(-#1(@CC&O^Z!fpU^B2!<9opVv6It zVGSc$e!Tul1t&uc-Ehj9PFlw9Dklyzg+wA@U50GEgjR8BP(~E-L_k)uE6+61-}ThD zQbhrSoB+rRSC;Il^G(5O7akc#!GypToQeh4^qUS(HAttA&@u7pKI98fP(|F12-t5~ zIO_G{(fuY9DSB4WQ{l_S%5yB!HkSNgm+^`IQsurfoz(O6*Zkd}8)>@HOvpLIg;HszXSCQa$h)vuDgh;Us0*JIi=EHC6iLCors@t_+D8m` z2g?apU24@m?~E?E>_ zNByRHYawID@nn5&Mcn3BNsY^{npSZ3q~N!Qu|$6pqDGa=BikP8kfi%w%Zl--Qk;~A zaTM_=qANst+;$45f8Q)f&2>cm!lQc6U}7WSnuP@pB`tLHTd~|aYT&P2gF_i(vsW! zXA&O2;tAi3^7XhH$+c&GGg5;@?9FbEgGlZwZK5?!q;PG~f2}S+0r<;~hBVSVL)=t= z#SUnW4ASmvU|wLdEspHPLP3F_5|D@Wn;ClsE+ z&}t7qP-OXN<;t7Tup^?Z$1SuG{<+b?%?lp5F$yz&S7Se#XZ**%MyCkN!=?&mF97gdjf00NePK3SEyRB?a>`CV=AlvZuD^81AvzmCW$9I3)9$xzwb|swg`sl&NVUP4c$cLf9|_3*420Zq~FkgX5tl)SJ?^;j&}3jTVgD zyF_9F!z&AjTD|FAkO(g*I^fK^Rb&lqB^_=RL9@V%Yw z;R|FrP=l`}EG9;$0Q zk-}c34InpZo@PnP@(6)lzK&b@&@$SSZnEn+E7_i4`kV%2zqBR;TuCr3`~t|SGz=bS z5;AV;#x0BcVRhYIr5xdpQzF_%QBOlb3nsP9j3OVNK}WZa2`-P9$D<(OH+iL(HgYmQ zs1hgLcHG{bMVhb>45Ns`;-LxNk0wkbtP6M#;_ioSkSg)j{%X%D4Z6h)e@5`9 zX41Iz3>xvE(vhx+hXC9fm&&0tbJtT0mtPAZWBD$T7bZfHF{%|!D9Lj}7eBp)h z=WWF6PHt5`nm)~ptie?9hsbr~7%u4>lb;M#)Q_zyc~J=bLMI$)2Go@A24WM`oe`Zq zi;6`YRzhb`nX3*^TBjZY`Xy#YWcMxa{_rz+8aH=SoCoDaq;JG-TwMR4lV-i-rG0DB zxM#Vh`y3k)r6;aGVM+2jt2{qv(Ym!KtOkn^0AH?qts%zrCWbDr@}0YC$Cn}-rxo~f5$D5fSUSy{)hiyoxAU89w@`lob8A)NQ zJ7(g#K1z8W?mxkLnUZX+mqg^$r#fdJnpLcN3K#aEKHue+r72+WL8hMKAkl`AF?R)A zYTmG6LfJAl4ybKr+n==`{j!vuyZarvnfw#@(e%=?f{tMI(u?=^>DsQQXs0*sn@i%C z_c1{vQL_d4Xv^iDZ&&R9;bH2;51HULK$p4-Iy8bCL z=w~|(J_{_oxocv=PZs;1?czwSDoouKt+b9sQfOH5CF zm-%N;bJ}VG2F5u1Q-3y};s@Lki7t%&v#0;fKFuPNc>pxNtdzD!Nn*FHu24O&q)Ub?-`ecj4O_e$%s=hiSDab;O`+bh+Qvh{WyK)GPr1CWz{!gjH>35# z2AAF#xr4dR9GWT&#EOh45D7Hy%|UX*O`y>%MY?P+WUCgcT3KkHG?%od%zf;$9KIUg ztFOFupQfwtOtAu%X&N1izE5E2KZWt_)^%J$(w`BO_gXUJTpQpL-iy3kvALjYJmPL# z9YsZM@F<;1$oIBT5`saS40%^k)q9_UMEP;bejj4=LuW0Ay^-At$JcV#cd8L7+Qt?b zzcWWxZ7L6iRX2I~*ldS24DzU8NV5-chys;MNOGgGS?|l%F0b}yD1}L8b|zIRC1n78 zm|1k}3?waUr8Zmk%@;q5(@IN+t?+v_yUMNpZh=OjN*@HI}UCp%S#9az$AV&7Wg_g2f0rz^pnCfHR}mG zWxd(Ar|o{!%dtdu-&$@xBX0u}@E>EZ!}+YSd=BytQQ9#}RM_9g^^zp3#V+|#9!3?Z zYvL+sRTHa8bAuhysz=R0Kw+-=L#VV~>WFva{*Lc-t}+j21P^(x=i<(Z4?2~Q(h<3n zgKVwKNc!q#*QH8~gVK@tSZqe=aMJZ-3?h2C zg{Q{)5?_(C#23fYBhemLbLE_U#`~M#qw}b^>CNW&eM1FT;_Z|RKECy@agk1+-)||! zP)uxBh)1llf~1ub*t`6Jb`RFd8Hkb*;m_$xHoG9Z#NL+Me@6 zJc7ae1mI;U7myZ_(tGLp+CEB~&0nwb0;GIP+dgvi7>BB(>Czs@m_^Y&_39L*jbz3M zdml)vg3c{i2(&h*AqQcmSu6F05l>?Ss!%szO`g;;8u^ByU&uKuV1N@>*LZ$!ev^k_ zGUWu8!szsE(x*4ZZBEu-;r6g*d!>JsP`2s)| zLPNW*6|@&}6i>rw#&=KgD(B6#qeRJ82>-y>Fwz*$L&o*f+~xX~`ndDTy^>8UVn0v2 z2rWPqLAC$+@)^rC7|3;$<2YjEtT==3RB*dI*{^77^2X@)n(!6g3V{4~$`MlKj({`^ zHm68S^6a9WWp#K$w}6t1{1Ho%SzG+RYqfogjE-;_JDk7iu}9(P7M}RY5#sDp0^CiAzhjU$kf94?LlhJBD`yUkc64S#B1SvKxKiYZ!U)r?`qU3Al?c?$ROsT7R?=<0LH8{KxLQ zL>Xv7RtS3BvL`h|bsJM9ZeBYEf>{%&MQkR|<`L{v4J}}TW0QP}o|Q3TJw8I?GzSzMpZxio7%g|rAg!`lW%rod1%W_=+Q@=WHPA#4%Dc z>m3&IYN(wN@tFubcLeX2TlXn+o?}tO8FDm;O8Rj9v{le~MqC7kfLQGGH1<-Uve0@! z&>d;eD$WgHc?yr=jEOe#rkVM78{UxocfMZHGSf<`He1CuAw>fI?rrqRHQ8l z)D@CT$WN=nc~FKDpduj{P&pJPTZqKc&`QBAt7Ra}8XuuY8WiH_smWi2o?61@is`YI zr`I(gcSj1&x~WxaSmhW_>hrpsQ605xjY(h(Rx?;X*ac~>zyx>8QQjV+j37PbNI!7( z<(CY^mPbk%<~{N|v{%zbp}I#Tw@NRn6u0*Dy(s zr3RovHi}oByVAeF6dL^UNv*p41|Sp z$x_&87KKL~oXVm65*s!~7@wIOs8!Y@h9>5|_#ZuJ>puP*9pt?NghE)qL}O`94pIv}vT zRUj68C3W?pCtE1K`cPf%soI$f0WF-Q;INujMzP)n59^}S(%JoCGgfuj|UL+qs0(se*aoEuE9ZEmA_ASex+>tdwYB1HJO{dID zQLt4Vnvt90U1zw!JW64-_rFBZY#0>u()OG;I@Vv*jbHnKmqQxjhH z*LBUOxn$$chYWlu*-m75wt9*+rSYw%4-M3^Haap>L+Z#)UC7EM-biIa{rQZWPDhVf zIBtKrwJfX&cFnrUcjZK-cxdg+-Adt;O{W4}O)k=;l^hAsNZVEf!OAM-QUiyqmM4e~N3CQqK=|B=h~r7~)`vO`Wu>NsVRkt+^Xv z&@^tc-V2xT&CBzgxil3ik3rRFW|Rto z;Eti7Y{(5iu5X!BD1|=&3t9MkA)IPKxDnI!mR*7-so?FBwPX5aPE_1Fa87}rVoHCM)+gD z=3j6}2uOz!ycU097-0azn7&GK&iJ$WuSdG}=UMD5SnaCbGf73S&6O~CaNki(RJwft z1LN+{ghX-cWbduSB}wjKde}sP@mNs-Ls@srmVE_Li!qyvtC@A@29%)ucd4YT{s{r$ zH0aE9wPSHY;A?&VXuqBuKU78SMa0ScznF^Q#{bYKYuu9{KsK0E;&aWr#EhOJ;jP;45kR2Zu0gUV_e_ zcufj0au!*>`^#0kF+hL%tBK`*I)L*zV3gWxF#XF{|L>vy$39h4KSF(m@Za^$D1i0T zo{*c1KJ4?o|JP~wTPL1|I^2a{z5!WxR!yk*b20v}5cU5I6#ahy{r_hSv=+Tfe2eNF zeOcF`YUbv)+uoM@E!Fs)>0sc6674^V7neW)B)bwa7|Dvduz(C!d+5O+NHtA40IIek zSG0_VeI+qdDK=@J6!3Guiv{QS4=)TCN$zhyneWig`n!c4rRiWs0c2zFVeznlf78HXFUg zl%ecA{V_s?9QI*-b#7ud85Nb4W6ATL6Vp3ZG~099uX9*vXxik$^JPA6We=4IoR{d3 zl!v9leWJf<+1Txmm|ZfdSk7ZPmpk?M8S~vA>{5v0T6fv)e*f?oqo34hII91HP)P}o zqiUqty7?nUuIS*}m+B#%-;A<5hM1IM%ZyL|08n!OC(BZ6qmV|Y9_O!H2UP@rzUx-;Ou3472v&;4fVZsi>Pw(H_R-CDckv=S1By5< zuGKWSpmK>8#Rk*RjTaRbo20JfwpuWiXn&_I&Wo z7mV#{G*0Bf%bt~KeN>x|>z7pu;cdm*#>`C!Q;k|6Dd|w#T+dC-m38?g6r4 zPbd%rDb0E?X(}mts5lHL6QMtN>_sY>VwOld?wbq!_2*w|k8SQfn%u6l?G)0S z-t%HW%Zwl(KeoOaWx}Rglkw8W>Dk0j54|Nkgr~9j20UdGsJ)*?tW{3w78)guuWN2s z(aB}koG6!;=p-BiK@NfI=FGDzj)Sh zddxu?1Y2qb`L7a;9f86DPY|FM_bXzFw2jpF+|czBt_NXFK(WVkQ+D-K)^;8vEt_r9 zj$I0>{n|d^_QNP!Z(6ij@M+}UC4ds0JC7L~U!Tcm_R(T?oo8kRZKU07RGJe259p=n ztD+r|yGXg*w#Jnx#!OX?LSbd8ih%OAHjDljxx6)sy}Onp6{i&^V3QP5@BG^N1b{op1RjrS&ThiZ$x?6bsgm5Pjymo5%s_~}6^MKOLG0}S%w zd-N8Zd%g_{LSPl#o{0_LCtP_d0am2Cd$QoR!zRv$Cx~jNP%exmg#YFpIiVZB zxzWC`KpCWyoerSci%h{wgX)oonQca&6jT)64E0!FmQaq(V@fR(1#?&RwrtXV?%>Sq;_yXp?Na8CZFEs6+~JW-lZGx~ch8 z(s_KXeC@Qd!kStxS9|)B09a53A7XWJ-(}lTkx|u|ycKml`7~1CK_bAZb-x(iYWI z(XhZMmD!WvCpr(IRB}V|uosf2&m14XGabQNfac%M6r6|`Rx{_h%b|Jn8a-?PmL7f| zVRf={<{Eo2mFpRC20@is!Tjt|{gl2$Nxw5-n;xvjAmfML`2_jJqGPc3@cc#(KpOW- zofC%|hdzO)i8wbuenV0p{L)>($-O>kIc3&it_vAAve!OZs+0;<;B*(rxo_tqRZmFC7y;YwT0eq>hNsAppOoXf@k5 zO&>QYZIkY=nI;PUYSZk5x-Dh!b?KSv8L-3&^8gkbr5BsDF>xJ37Sx(quI{DWWiX;1 zZ@8IpBJ-%p1px!I@y`$iye&leIA~e2qKrDh9o8+TBj{h6ZjKA;Q-f%b<>A^py71yd z(-op%-;OU8*^795;LXphh~`u4*C04$j6l&za+Jjn6NR$s#g?k_#O4f_{l+L%i%y;| zF)PC%75O{VIYX#WQ~mjlItO!LAqq0sgprvaX;dJlb9uh_<1Kf7qYMr!#B!i9QMX6Dl#+ltB zzLJ^*(Rx~VV992~%BLq2<>CwUqDQbP#nHt~HC}0Tp9)3b`oUCw{Gnk_t#Yn%i#htb zY3tn1fW)P{_PB0^g}yS9{zf?ZZzz1dl1DP;fVTs=Q#+JJ5N)X2OHs98wkSEP?rdv|`5nZ<81lucd?Whkxpakjo? zTD*FDn4{UF(lun)pbY|{PLUqa^Y3tNdBzPlgt!cua|w-TBZ-T%yx5AYMf`?U`Z*7z zD)nst?G~?=}DCr>Z( zC#ku*vzpAH`suV3DRrP0^wG&y;&qeiq&X`n^vIkRgjwAOthtxK@c6@h358vCB(JEl zkYx~k(V_pO-QQ;p3g8{;5bP)Qkj&GlwizNnBZ}h zx%NQ@rAshhue#X%)p>YQP|YqB~!gxY1w6D}b?$ z$7=PDoc-7g6F?J@)9xkwWkdo-^b%EA+#m1ns$l?fcb(1yAM>YCmE{25)7`B6%X|NO zmjVC~+s#!f!gS(qF5Q7907=7e8oX=5ZSvQ1XqBjgYXg^UxDF}_zfn836>xZRf;ZyN zxzVHq!mVn(3K;$x+`%+juT%>C*_v8kP2k*UMIY^7UOezO^3-tjA5*Ih1a>CJiuqld zzn1$TFr-oc5<<6@ZT1?Z z5uQc@->sA%Kx%htHmCeL`VJd)#FP%>Q_HhC9P(QW6@E|n=uHqkTfmD0l6Cg+m}Kn0 z_D08YM^s*!1mCuOo^Hww-yVP&{^+!l-XAs5pLdTZ#&fyf*w=zoyB7E5is*1tDie^wL`8sA1udnawCYDKjuJWYuYn6>k| zKB_pvt7}xFFmRnU^*_##+3nWq@2^>n-0Ng%`#_Ifn{J!-E1GV`2UXuHKczT(z=Za; z)hI~}`B1*QkJo>5pK4B!nR(gRnO>)PE#t9Ko1x0vz~^oI-vFj>wyb(*iLMi1&^xdX zLps9y`Oav`*ZtN45T@VuBu3-WR!kd)D2#owIUz7D?3u{)PCAX~_(;R(dz4Od|j=VSM*L zuD9JYOU+Hr&&Ip2=2s58)(q^>wJlzz?0j?X=Jm7uH_&c_BqIWpB`IUv0FgnF%BzZQ zO|F1_|F%$jkQm7{v#}znzUU{$9x#wkG}Iyf=P}kH(+8Mc4?YSo;Aa|M-fc3=chH)( z5a(kBm3*InSj<6-$2QSydEbbt4c!OurjE(}@WZ6ek?_05ML#Od;8ZUIt!`G$yR$L) zTND>Kts1;>*UqUNZa}_JISW2xxSH}iFZyc+YAfFkvfLG37xG0TtscD&_{ z)|SMU!j7VGI{%M=cc)JTl~IP8x_wS})af5xJ}0E6GAR#0JEb}o!bWMYGt&b&|BT$% za$b1a;^fZyM4abTyN7092*zD>|I<_POkp`yKRe@(zNDoe zQZ0q5BnWciJRe! zxSQ21>APYKXIi1GLgUNt0Z9e@XjC-mWU%%bAV}onqwL_ho1f`s1y0ekl6WNlJ1RV&oy(n7Q2ZfG&EpYA4))Ss= zw+akpO#Co2u?A7v>$i>!apN4gk_@F$Lf~BX`#(m4gb|y3zt2?D6g7Y~|&ms>wRg41L7b$+`&vpHB+6|BOd|CU&BDZ&0ndSP|2a}XaTie->mBYPN z)goch<5wEq8*OGm&jEyGcmhK#!tl$}t>ojP7dIaM-Uz}V0z8nRE_{7Nc4kbEDbo$g4I@At~DRYZw~oxB(Op*4C8vL6%ub{a%`-EXL0;wy=FPIY-@49 zUyITnrf9?sTjUmLE0#1o!wzZ&lcJ^vkqY+(>?r);_(P(!L5GSM{*#6p=%txK!o7XW zJjcBj29g;|dA>E~7-hSix8P|Kqn4(vyf8D%oZitbH*`J4t{UJ;ozzUU>s11MMo`>< zZV(XDHr*=Qo)_cpvorvHp5irKgTkbtqyUuhLZl~{+c);eh9)GY=EBUI)e6PK*l|E! zybK83pY%S^RKAI3O?sBP|9ZbgLqPV`uz;1#X{b)vcx`kxuhh7u1b|us9bU6twj=|B zUDeazH_U6*zdW5*au`ras0u!+xq-g2OTL~ewlU_BzKZMSy;W+=n|4xffx#-38qROe z2nfA@f+$ihb)M*Z1fU~(Xv0HHbDNhE3Vh!DdPnlh2NZ4Aopcpt+_Hx-*yWkfHD4zK zL&)f;(U%9Gr$$nv`n$D&*VqI=8*sDw^W05gx}WM#vxD-)@8a!Pw*yy0h;fm!7Ogw?A-cHNKpMXecHhf`C!2mZ^{x-_^IB3<^ zfH+-(3txHusJL>f$PALN#r_8%D%i103Vs|CSPLks=?Hm4of0R#Ei6z=5&Mgr}t;Vy8ek?a1)O`(jx0V+ZYsob1H#si3!W?4!Oi<9f z=ef(|1%Jd$m!DxV$5%1di;K8K$p{A91u|%TRYBFXfe>m@7))1CyG>;3VUjN z1N0ri$#S#&pl#~hJFV_<2^*i(Wsg!;CwNANJLwwY|BxE0u>)D7d9C9VLOPBQ?+3b< zSSc4ldG&t1sYTO)1@CpU4fUT};Mj~RFh8;_>f67g046;n2N==ns84?x|KB(NFT4am zn;WPfDZg0KKYtizJ()o!13DvTa{DiDJ1_%Fz&7iU^cQ**1RzTEqkn_*U>&~;0?RGl z(JuQJ&btJ(7GzNU3p!pppma0Ro&N&4Pk`2!IMILpNRwI^0P>12BL@G1qpUz|K9M2) zQ$hb3L0Gl}$Q~W};V7!q~z-d@Aq|Xo}>iqF-&fT-}`t9rZ*u9q>7`8c1{w%ay#0I|h^iDpy;%w*ZN1+(CUm(_x1fbboSYbymc9*q~`|s)FxICKEY`nM zAgauJ`|()LjhFt5En6A-QhqBYK2Jvxw+V&C~G)C?qRlR4}}N3N$)k?hIv7 z(UY(}Ml$G?Uz?iVb&XOuigCT-neXyhbnv?wIRE-CvC71)V{o~pHFdU=SbGe%z}`q+ z3)Z=s@pkHUp?`#b!4Oa*&yvb3v9whunFm2@R}WB;?|hYsaC;zZ)|o#w6K{OuiYx#x zcb2EWC@$&iE8Q}I_yfP#WHtg^6xyVgd{RV>E0K`sGOx@;I8h^nh!WNuO68SOP|cH3 zgmcN?IeY|bI+Jh%0B^OmKoC0wRx=2!%s#l}lS(BNB2~zl9yC@gov1RIGp!TJ7|A^L zV)c2^8n!Oz`LXouNp-79m8CJYvAZmBLP52mag78(WBdNABS$+y9{IWO_*>$I^dhN` zQR;{p2};%8rU+Og=9{PxUeZQ0aIcslM0lJPVc;e}?#u^&=7m0IK0t&&;s|Hkj*2w6TwS;BF9>!xnjZr7`lx~2?AU*yD91`SkY6x#@*=C0ts!oqLpIrm;@2U0X z%Bpj|{x+$M)LixC?OUH(@ifxxuua_C!_))&ztpazbAZ~ld%!=n2JZ+cE*l=#&;(ud zQG@7uPb~WTb(K9Xw}AM>3lzi4Sgc7IIpqvpsS34^3|K)&Po2BPj#W{A$_yl)TFs%r ztCdeNu9|`S8k3jED_I!Gx)gVL8%2^O`%0V7WC;0Jg^582IO(X&S>XKKqp&q$Zar2f ze`H%i93xPiaB3!k#~bX2prHTN-j#<#`L=D#q)B2X6=e!Z)<}dHX6*gQQYs1&FH(dM z*~WyBJw-H3B~lbZlrUr|+X%@%mKbCoyJ5b2{34F;eZS*)zdznTzT^ALF^*@s?(4pv z`?=2RJg@8NW$R^_wAMqk{HkPQ7FdWTt3@h3!Gq>WeKm7PA$=dA$b}f?X|N--?Ox>9 zE1TNM-w;C;&`n8Ek^hI(Z|JC8xWB9W3BPa8S*+Od&Bdmi@Ln#+^&@`^LpbZ zxNOrOSG>+89f^(GOBsv0bkzNryQ)-vAY3s?`RFGr2^#RIU7W<~d zr3==&%z+R;`fKuo7{8x%ZLPXd@4b!*9qO?Yl*!U6{L$EL7fn__)0id0XQsG z)k{M$M2fV{w`*LOs$hHW$^0`w|J9dqIY)v-<{c>;MPM&+t!ZDW2k*gJbMM?Jwy6vv zL+`_M3`y~qEVbL3LvOLIZPyL0;7zov0R>7?1#!y#{>X&NI4Scoc}Dm`pDm3LC4{dr ze~08C^9P`7VNpjlXY%bkqD!(u%uRh&d^>mYJB_wZdDlVtYrH)wPamJ_mb^uU@Q z#`MK1j<-tB#~%~uNt5p1yIr77N&x+-4?7l1);dH@>@Cn-SO8-`mr_uP9lPmof0Cat z%HkH>CN6u3E{?_UK2$-j?sH05q_+RGI~&MOzQqs2P}KX{tcYQ?Q*guJS?H7Z_Bw2Q zFwet~yH?p_GdfU4j}slvBQwL^lc||7M{zgHJC=}gka)P}L4Q9t{4GldoWOlAh*QGn zOBOG1a2?z>91CK$RSc%50>$>7K4M6Hp#nux%7&=%-^!q2Nz=#xhIu&O!_p2PVf?$0 z&%xs6OY#;0P9tj2nImgXQCIxpRX^{=wTEfHn;|vF!HZ}Mv8f$j3`2_xBq&?m9wdx1 z)k|WSTLq=h_7eJFIpsn7vmS>Fv&Jxl_+S>l=R3zI`cAWc^XuYD>^)ar76iIb3BQPx z8_aUOCuo2Wj}L(_O{b_#3Yb9yRnLAXs@TuC+VWdE>%1nN&5GR49vlZ1KY5?})t@}D zomvxrqDjST>%stCIx?3+B~3L)oXb8$%o4()ZXINI1(lHlu=2r%o z?|wN&prv$%w|zQMfP6@V0*SP^q^QJ8wetMDgJ0YB0*Nd}oD@PJ9j9}*$2DN;J+xF9 z(?gSgsgMnTS(G2gv?(uJ+I?U!91k!S4GA;K%ez2-0VG&Ul zv;QdWZ0w_K=h(Ut`4{4nA+8nH4i%OC&={`6R;y(df?hu-0^##8CaP}M`Cuie{P!0j zvy=*|$1m7G&Tw2^Hq~LT24u1MgaE;w!MdN@P_FuEcy3%9tLoGn75f*FKAfW~A{>C3 z4R(d>%DkY#&>$hJ%XwdwLDt^2aw<{|QE`Y-)|!H0UfFY4DS%)^k|5G1GE9pkh@bc> zAG;mN3W;C!6Y=M!CW=8$9H7xN@(m4Z+k+Coe~0>dboP>u*f1Te$Nyq=hNb2Hta`ZQ+r3iocs3+dm=C-;T9VokfvBqk#%)r{!YmVMj^M%m60Cwf9Xb>Ybh0D{M6&(J8RXwd z92r?`>>eh0F#*k@%XzjQ;e&4ZY_FF-p?D`N>bZQ6VUePz5P3f@o#}|7I)k@L41+*V zuirkCU^VkY#*|3Twiv)!2**vYYU0*M>-(S34R&S&<*se#4Dx7rz@ zQ)wnCMvpWRu>u#DQP0zJp`x_+{?FH9?{NL6f`J5(!JqzeK~M@d(J1u0a^ZJq%>1|b zReD4G>h$!0-`E2%d%snw*L0bVi9v?OAM~R}zK7!XGQL@ivq;~-1n5vWP`aYcgSahX zc<{TnMDg30j!8m>{xQc~AoO%^ZI|pOd;kGRAnJFe$=~N-_ZEMdDQX$NQ}``5;^F6iIG z$jYbjRQ9-mgCC9bd&{El)GM8G%-0j2!|bfpJah=ceqN~IcHVmj0j5rYh94xpK{~tmR2Cf4z7T(TBmWMv6uR{K znulFBDVv93zyti^Kt1zEoD8V(RDijzRo~2M-0YaNZ~&WReN(r9KtllIWUTWq*{$b9 z>Gn5k0wl(RGTeeIMF28Pc-N7UyD`rI$Xyoz3Ab?ktIZZQJOpmhZF9J|#rQlpNPSfj zn>Sl@O&g3dbyQYti}CFMz+UgSy}sEZ89^{g!`n|DZ86>f+$e8KI&ZT@2@k+1MGEV* zw;2C#xD$JC57YT-HI~ij9gvu4Qajq=+;gQ_$7TV}>8Ckc)@>A;v^y=1^aeK6;d{b; zv*FE;fH`mF>&|SR$T~V_i&*)`vCVEXFapl_*e4^s`E(gNW$ZE&leY!`nt`bpx!+W~ z{=lsz2oS&-b>H+`)&)pwh};cC|7l`+(lLLY&M34C0RA#ss7pGV@AQAbP`{O#0V7f> zUCe+f7#yS{_83&Aao&5z8`mFg@|7rD9+ZxzbnKm=L%XrAe3V&%)3ZKG@yA!NA+dLH zk0t+^n6+p3vxGmhXnGVBE}JI$I(NNk!!Ogb0)iy*^vlx#**5|pnZj%CY!(q&GGD#$ zb;nioW5854`Xoh@%0-%f9p&D`bfGX6bI5`%*w2!1x}a)9s~T~>?)vb1!{M(S>=%8y zyZrsD>Ql73QBiZbiN7SSAE0TNEP2dM&D7^>H8p2OTnsPyHQDC+>tT`IMD#c%BjM{j zM?{hWUb9~D;rQc^k_S)SQ9jn`bfOF8gYj*D^3mNWg1Elot{r0%(od|eUt0Lfu&FJ_ zw&{r@@igkg^gY*~L)m(KPIHbWj;B8Y`DP;>Gf?RO@Hqn`nlM}fcuE&f8*ZE0RpFif z7jFD;ubwz}6DaZnFY~6VjQuxZ>J#ltx>vl9)Lr)dhTagS68|+X$&1VvSRo7LUkImF z_6eNQhp4^jCE~l2D1Bl5v>GFK@-MY2;>)C#q85e6>p}=DR?7kiJlmpCE_3!bI~OVB zCZI4DIcA*u!qDnRMn_cQ(#m!P_Tt_1fk4{n9YFAjL|)ML8t?po!=zBPqdlio_#1W_ z#|emnFcUq1^+Kj=5f&?k!zaBsZt7vAZ`qor)(Apitk8Sk3-#Q^AZeZVifpyrG6t9r z2kj4qz9e2b-NBJZD;0&@y}yya^3<^y4054BF;ZP-{=9Y4%%I`O(Q!JB;am9mq^h5_ z8Z>NiC)Z1@pzzc5@?gusXNN#_D#v}d+T=g{V=Cr$|B^QwZOCBBpWmdBGpA!O`QH=? zVO@_ZR5Ow>e<(<(VwpdzUgl2cac6ziBh>UlIU6lca_?NUdtbH;IrE+)(JqZ+Dn!e> zaqllg&i0?WKxljFTpOx3AWQD9w;d;*n5aMeEq?p0uHZv%9Q?4UOUjU)BSD|_JDeBn zC?%MG=pu8c?zV0PRTVS)a};Y2 ziJR{*5j@Pmz>!Y>MnJYg(QJ3d47H~J9q(xz09;VNC*ug*y%PCUL*KYtYWz+j%}ac` z_AE9#42-r{!=((4^<3)@J5hZQ8$J2l5Xi&IU**aKFT4mPB;7^bvAj_{y2eNDcKFRl z6198OrOOV1_JWon>~>DYA!=)CLn)!x(;N;w(zL^P(4TTlLgLB&cWp-5g=40J_nkrr zmHlB&g&njys7is*}XUHyFgNg&s;#Z*J);2HwRc#cVmhd>=mmsySH8a9aDnQ$dxjJ;{W+sC`ll(^$c2mS1Ar8&AVs+5T zj0Bjlg!5HM;($~@5-WB-&aBh#i~{a@tRTF&w>K+Gy&!|5pssZT12y0n|7B{?pB(3CVc*lnt7bFN^uzbbz)#YpLn;kjJmM#h>s zln^g%JDslP+yZBeNiB|vo59JSUEC%r*X@kyL$hUN%Xc4;xig};pG}po`+#e~*y+oF zki?O`OvrKm(AMWS5Gz$k$&7<7*ms4DKJL4wMR;cW%D^!Iy=db9_CQJD&$J+z@J)GN z4^484%BY|)3vQ6x3^SKJC&w8GG_F~o1DLY0GcrHWhfxEhh-4qk_0F@q${WwA(`z+3 zAkOgJ;ur4w3+g&b*kM*ivYW`1(HgvR-mxk{ud7@*Bn)}&_n|X?xW}^=8bDbJ%^rJ# zwW~_g=dcyZ1IZ(SL;SKkt4@-i!w98Sy=Dfj)MbiPp#nhLk*bi9zyj{+l@3qg3F197 zZ!_T^$g1oJLK0-0f8Uz+I1DM82vo|aYi#TwXsP3BDhFGU;RR5s&yI-Wlp`q^B54oGXxOtpWj(fEts>BDJvL%pH^h6<$YFZAu^w$^H4=aZlrz z4fBKboJt-m7drSu{42c-{s$0)Prq?JN=h1s7u;wsHsz3IHFTfjj7rjN`6Lxg{4^X~ zw9Cbamsl1U58WW)cVBY_p&ZNbvo&V3@iC9kSY1hFP2+)XS58%i?ZxuUgfGf9=1$k0 zZ9vy64<+G6O3ml67C>vFysv7#+|Q^v?8Z7Ap@#U z3uOoI0@-%A2ESk0)1&~H)I%+cTzp&9H8Jw@WR&Y5wo!Uoqu{v7-$i$8VPLo(2srta z0$|)oSK|aA1d-tAo4ohzI%Cyr`wp+hf^7~d!eQln7Pkae^~aom!(~!llmD-MiZT&QRytjBHDz z>{@q*zp1Ah5GgyI5}sGvPiHxGunTV8Q|7rTF}4S6b3I4N4tCuM?WBw*AoL89$UnUi z&o+pGdtd22@oqCRU||8=2w_OegkDAXH(dgt(iMP9W?18**8?N^eUBdp5QIe&)z13o zK%msT4?=mPg0L;z7#0|K{P@zhiyK#@qcSicV1R(6t zUI~HCXvM+;1n6vGzPWqX-w*VQ5A6j|Ak%687G%o|bTP&^@)n8rwOSrZi6m6t4%YvbeFKoyuA^#m`N+D$Rx`oW-{~ z)nC3tk-QEU{# z*G)7G(z#af#SbBrQ2hk8oA(7-^HVFo-eN_XRR1kxpNlD`>CF!Qvut=tR!AC(?^5tta^1I$=218Mq02!l;-@^VHUigNqj;W|HX|weZZVxU;YgvJyzygzY)ec!7EYaLFH$6VjedRUf(wax`Ea^m zxw~|+yHMIDcKrMFpMEpHA5oxyl^@C$C&!bod`YGZgqwY&79z-Vg)D9!{=T9$UgMtQ^ckYv@{!s!x7vWuWr>5oHr%O4g+W91(@xaES%gP{I^33+~ zpPdTJsB1BjJKVO&u0nW+Z{ziS*tbiyiIfSrjensbRhm((X`WcBhb-7(2%V#;_lX`H9QY~wSS-!F&x#Z(iEIYzdy`(W+ z-HOvmsx%Qa?5138#uL&|Wfrpuc`4T%ODI>0=ck9VQ@rxLLCQ&$n7e5kWR6A4FMiq; zJim}Lj(1-bU~-y~G%bkIOH_E2=z_bgxx7QCc( zjp+&G(z1>w%#zK;YweGo!Qt?zQ}!Ok5qYaWHIy;SF?ce$LYDx&D;z2Z&E6l6gu}B@ z&n`}a#k(V69q)pD9xUFTIu+_uW2!8}#1ej`6vsYRA;k;6*3)*j>QWUJV?DZX4&m$K zw;UV*wP$75!rRI(J)EWGyKAM}sjG1NEw5%?JTPR&W7&8m?R>-B^Jg+Da$y$HC*^u^ z&s=KrVGka=ahIIpBHMO(_9YXj@bnz3tY(*N^JUUZpR7^)k!VnYdDhz&ij1< z>=Xooow7-_TK@+lQytS?wDhw-zaf>JFi7Q-_=p|9ZwZ0Q?1VDa1+Z@XhH>koVcd>3 z3P;y$qF=i~oDV9)DZ23+ZGmJ|vG^1}{CMN$=p4WQjWNPp5M|7r$Lv9$Jsxbj;qhSf zXucJxtAC*(`E>KbQWnk^wK{x3@8G79*f3?2B7EE!@sRF~i4x0HBUcD+Xg&S?})4W%Z-p0jzgK!{=C4+JO zPtVv5zPTni!-;OUnB5RPEWv$~<=0uEOd!@5`}40?V46fT`~Fz=|A(wCwpUD&}D`NO33-+-adeup(`dLUD)U5L`+NEgD>lHn_V>fnvc4?hp!v0>#}5 z!QKC%{e9qCzF}IXZFl~X3sOBs>(8W*p%2PC@6SxvXbg3DCnao zD5$$w50E(|X4d>DDEe>ZB*iscQ4y1s$UKw>71#NYoKKxP?)PuLU{qxK19<;DjgCxS z!|ormK=)}i4l?;$;&1jlzA2%!C_j@%-%0wY*MV&I~uIE2T!FHx#uKe{$~t z&CV6YXP3us@st`TjaD2I~p>6iX_6$*FmcZrCJk zo(`Gqi}!__*o~P{E+MgID&HDr16=uV*l=F~ksP#1Qb0EzbeN$Kkd}5Y8?uh3Bj__& zSBP;P7V_P=#WwDH9zASu<6eFGKdSWo(GB{iIK|YxiYR~5*MBsR`lIOI)clWj|I;E_ zVTk)ieE+2X-qgP}`1i;EK@nBOKhpfWOn;^MPnnE~{#8#OP~lz+b3h9sJA0P%+tSKiuQ(+Y*m*4x?`9is#0)awfP)V{UYO zNYO_hH1|u)Zt=%R-NK#g#_p$AFpmfB#1dEx0fhGn6zBKv9e6)H@}-;mNn`i|t&r!9 zrH!?l6#d2~PU7vY(d|zZtHd`hXUAYCFh$zcjPc{*#@by=o9k>QqLPV^ld!$T8Y-T6 zP5z<6mv-B)TFp%4+gnlpvwj6jt)Ye^fOeTKfuY+9O=qO{Efo>{L-OwS^A+h?QGrYx z`K~KEuP3p;nl9I2a%|SiY#jKH0GZ`al$~GrxrkkBfOj?{Hh!hy_%SqGg?f}Ond=Qc9??Mm4J zhL*}lx4?D}0j|f?p&`Vt{`R(HVW$~hT3SlPNkt;3e(ei4^z&<0*u&gfn}wQ<%EHXv zOE<}OLh^ScCy8E|1Xn}YjiKd4a?}YPjz>5GwsRRN2__dC=?SzwAqan4$(GSkobo0U zp5@_df5tN?L=vK+2);m@3kj`S7?k=u!2SK~T@UIjzUDROR@HrKBf%uMx#K1FI-QcK z`B{4!(Xkw}I)*Fj9R~^$*Og*XSF7kcA;wjq6Yzv!*1yG< zM!EtA00dF+7Mwv9j=SNqj}CCuKZV^jhU<6TwFJ}3Oi{kYAjemg&T8!&Pj&LaJjFcjVM z?`F^o+aLE*WhDb2TpYtg9UeV%Fp!AJ&Mu-Li;L%EebztF|M;$M{)UjuH|N=|1wimt zMdS{8Zbp!?7m404w^fCdcpa#N&`)sf-f~_>5wMwG7sQ7KL`Y@m)YXtNk+YezI5O?=(x=k+P*p zfAUzItOrrGC*E4x%;#oTLS&JcT`A{qaT9>K!G-M?wCqjtP@MH)wVcPnx*J2_rhO%X zAP@gt-9#Lz`k9Ii5$C@U|7 zfEyZTcd>QyG{a5&RmfrfQK+g)Z^2kZ{StuaLNV&Mc!VFpUxQppimO)a1NNEkwWfbY znY3C+6%`fs^j0-wh2f@eEQ_J7S+z<(>5vTzsleKGQT^m#7)8jy)N;O+dU|C*Uqqg@ zIu{Owl!Y{Tj_c*hPp?RW#g`+?B0mGZp3vyn_};D=fZJbtlTxSKF+U^zr%7U)gSN&* z;IFJiJ`XdlUD-`DoXMq{stl0isn=xGU%J4K6 zqxJOw@Qv^I@5yM8FJ|PoShk9t?q&q99*c8yEgD-Fpt%(TTOsQ?HDaryeQ?sv$;twd zepSWn)Ub;8d%F2D|2HCOx)CFo#hIb~T;#L$a0{B4qQerg&OcT^42ATADWa$!o=%;W zWhzc}KN7I`NI(an4kaQYYnM?2xA!no09Ddm(DkOL8KkptE4T=0dLj^}p9kgZoz_yA z;~!2pFiGjm!hzE}H<6-z(qn^C@up~(eo!;j{K;&Df1PbkcJ2=AIit&x(6fIvTh4qF zwc`L^rLP!nN%ZpcgR0XC#DUCz5eR(l>SC#d#s-GI$BtaE#q;=vLIsp0(1{@W4V01t8SU#okVf^*AGQ(~0%q&=bZ%vK%S0)SjG zH(dAo^lSHGmcTo6p>xd$|NeJ17RdSYcaE!qO%$dAp*R+aNY9DXLc%6?ndj4p`T+-!jY<#- z@ttOUdG=5uOkoP0f>jT%J%|bPTg!L$F>#A2(l19!Q)h~Pn76Y4q|t`Qw7p!kGE$nY zaHE=4&Jgv8{8t-EO#Bs>JKL>+WcNdOv)9^YJ^&O|1s8q&Ho=t9>dF$ud{B5rM<$5) z(Xefv_zhvej3Ce9GCbY>oWe!Cf8NgrL|W?BgB$c`VU=c>Z|Uu=uF6C@<3Uard#dA})OXnz#w&lFTMkyk)S$JPzqQGs9aJ0h>(XeZYE| zZ5l$MiuU57hHit>Z^hzT5e9*USd4E5fS;PLmQGSD7pKF?6{%pA%zUyMw8?zF4;T~i zX+qmbtF*BMFDJm!8Z;t;X`GxtJL?@DrRGtl>V?sWQ46!d!btyGwgsRz4#W!UJ7_jT zRqRPEObC1Q^qU?G^%g1C{@4*0oP`M8fEJ50-oif$#Ib?>+nm}rLdw;_+qYUomcB!L z=yJYdt%L)UdkK_X!&WpiG0z4z+3jGdANw)JL8j)mU#zR1_|J$KcjF+(e~0chj&$9^ z_|IR{^N$+c-Gh(!c5g}?F`MFVXc4JrKPE<;e|`7a$5G5j@IH6w8r<}^cD-Kg8;e>E zd7X90E*~ru2U2~~qwPx$nnM3(SZCjN{&k=67HJwbL;j|w4FIxq{M?ho9~SJKP)G%G zRqOWYLAb4t-oBCP`YKLJwaN95|K6oZ+VLMRH>a!L)7JQ9zP3uGDrc;7rVR5k=sDEf z4muVia~>5EyF1*T_AWnB7+|+}fws1`o6<^j%L)_v?shRU>@A|_j}w$242Tq;@6vu; zs5c5U9|3wmo(r0-bU)o%wXRfC1b z&PoO^=I~1~PGVV>D0>`bAdx2}_wr9R4lj8A!fRI8>MCICWcrHE2kAr+a3FGV zjBoHdss-U+Bh6EQv(y%eMBI*xHl+3Jkhl`76P-uyU&!2Y1j28pvTz1Bt_EJUI-%WL|T&x`BB9`BI5PgAPjvLwe;;X9} zdf)84VyU4gdBFJ1s0RHf`GgkJKP_YHv_=NQrmZp6p5;8nr0kPAm*8FORe;|<|uEwPmUj8l_X?|phkDJ&+ms%hju3e zRzC=uvVYjJ$uXfCI!QV&`DHf1UUG9u&(YHnGS_@lQSA&~L0ySe=g6>wC@8kLuDRRm zqTfXQ?e6(noD>%O;_*K{z|(-Cb0d%MpDLR0!&2$2EmviC-en)$4;Q?-%%$J;xj9a> z;}$;ZDAAczNq-?@4%o>|h!0O%7GBEkRnCNERe@~Q$=nXB?K>avv2lU|7<~DkI$^UC z{j~gElXi#-V^KcNXO~tW=Dy2~e#)_8`f>fesrIz*lN8N&NgIHj%5rlJ+Ny1*I)iZ1YDahr{IW2#Q-S`;ZRm68(ALT45 zOH3CH$|6Jm!e`Y^e03J4UA$5LbdeplsJc@(f5rMk=L(;eheyq`xBQKRUQnpxp`ue3 zy^&JNdJ#fmO6qk>KN9@&*gs+t0S2|be)3CtWgq+>c1SG73UfL;A*e+YKYP{a!BWY{ zUXDWcLe1%>z;?Q|I%gn85Bh$t=huSwLX4uxb+(r9VHcmN3~9{xwt!NKfWoUc;L2qE z)zF`0&Sq+|=fgfnn8*Bl>%j9>$fxT3Tv%^cdju^H<8RBOQ_w5$-p}HJsiQ=5111=j zYZ-;(`WuEV#P1I_A3N)FP-(=xPG>I^et31g5bfWsOM=<4d9I$4mi*$veN@L>^}Mcz z$_If#ywVh?a6r7zz8S_ah?yait4tp;co8o+4{C82;aD5zuh-Mk<-F~KzHntW-Sg}G z)O3`s{Kfw0dzRQadVwmKA_I|gl1LzSL;Un=R{Rl0HX)%&&9uZ{M;k!6j6VQG1L|ui z5Seu7WGTIaxJqzvg9#JkOc7sc8T)zlztqlkMc!+%ez9CsCQf ztd!8-Y(L&=jE~9b^u5^uiS$II>xLAVC*qq0XYqZQXOz_=lxJ2pm2Y%imabHgn^T$r zZ`m_sGCWwOKf{EkRGO{xGM=(GTssT`WT#k!rn(2rRK)HEsP>ZdI8{}Al^Vzlctv~Y z1ed`IuLYqve?eaW;Wt;co$;@hyL;#*%TZ= zu}}IT%&R-)gwfV`t^CHwW7{hlIrR!G5>qapR6-{GusN0^zcje#;&DutGLZ$0Mwj>Y zTuGBnSxgnzBqaBhWp-!7t3?i1Da>SmidluPU+7b?mw%Ns0#%t*8AvpfUKz>Hb8lfn zKyaY4_x5mW28Wv>u$B4gs$%o*6BVF=+$xN=(5e*7{Ql`TFE z1e;kg1abI%jG_)wF$fKVc^}o9^aCTsZv1QEMRNKsh!HRZ;cph%rLLh~AfiA0YE50j zAw>!-E*fF+q>&fr(qCEI`rXH)E0R9;Xev%^d&U@}DfFujgTkk$^DYQt_)7NArVF_oW zhaAiX!V`oTp#h~jW(cG`w(sCZuO-+MP)BelW_bK|hBc(0XXlmGen9$93wOECP@L6A zm1BZ+ddqN@v4KD-IB)}KICAtm4zn&l>+9HF)wh{?%?yc|?;}GF9&eGp;MW*`+fPe+ z;l!>B)qbG6K^{PS2m0s%5)NRF1g{edX54Qs{sM7AiK%XmAW-#Qzn_p_djjf=Hh|OyYotIm2u85cRQ}g*5_`KN883S=hi)wZYg_~^ z4m;8Yfm^FHwN6eKUfAXsp}zS$dgP-}cyF;Vw?l})$2oiE!-vcIP|)=N&~%~FDigR2 zc@K+fRF*Lc7-E4!;9QtSi|6<7@DIj7CjU4E2|};9!trs#!r=_T9f3`FLJmdM29?j) z?sKv@tPy)vT6F1XP#6t%U?1LB(~_IDJm#+`0!L#|$e$jpiFxpfSG3FDANKOLoBh|C zy6v0T$~WMV2I1+u?=$*eYxi!!^?Mh3icMkh$+6{L3FU@`765qK8A8l_)?7QT4`>RQ zLVv;UZV=ZRZ6rUn1_(gzcf`HL?2+K5WACZ35coMjv8O-n?;e>Upeq!y?B9Gv0O9pV zZ(V!8c{skl<#V%|sB`)Or|m+f2T$hcb-@T!Au+NV)l0l%Ao>j>>>;B>KM;g!4zR6b zu6WmA-ti_&~xEb-)1^kz)2l_MOn4qqA*^Mn~ zPl7I98}giv4cav6G?*jabrU-uhCLMLg_I*6&?m^5i+mMc{B{B9A}^8e|Mqx_MF)u} zP4kO5L2FpTvo{xP7T7dOCwX@tVP6_BW2-wN%Tds4itovuom+pJGqWq(j1WL_8vI_ZmeL(Uu_b{a4T~| zLMQoi;`{3Lzz6BW$(ss(%fdGu?2|?2M?)nas3f;X-i_oH<246ea#`w)-wC??YkqdvB+^gY!cMnn zq`kco0!q0>QLe(mL@q})IT^FUu&^f>xzN0Porq~rgHM{SdtSY4MyGPD5SP2HPF_0r zxgiN20Z;v`w%sta1%y6j5mA`QR-*Tp>TY|hBOMpqfm;I-gKzJ78WZuVc3{8~f;?yT zlb_p?U0Xc(8edXJlFfBH8O*|n^BNU^i0bfWJw`pn{@o|EOW7FtQux)+$%DYn!k&_z z`4YD}J|_X2DIk&m2R0aPB=n2?-cLjNdSg}G9q-%!Tx#I8WkoD?Szk-5WA~2q2Pl9_a&Q3 zCcLMw$_bweUR=HfQ=seV&D8G99&NrI4zFJHXW%9bqRPf(@VY@OwWV?4re~lz2fSC= zBTvTtQs^WSFkExU6!y=t2RPoXcfCL2x=U)px#VE23^kjyL1!Fd+~pVrRb28 z2)Uv0JYw5V6W}88a!`p**7xPYZWX=lb+BT3Ga$Yn@^&ORSGmw)U1HXr&hZezlJs6e z9^-O_<{pEof_We&wKmNk*?Tx?lbW5k&500*%Wt>9pF)T76aS zX(-Cq3`0g4EJ(*EMc&!BIPlSC{BZiws!&u`+MC-y?cHR0fj;NBKPh*VzQ|6R>w*16 z;h^3o=qv=8;0dk;JSto%F$q?z+ts1xxrJe{(-yW-;ZgThrq3?B5a z>{rT0y4)BG;l9tK`z*NfKE2zwh1=ucaK7ahrU!1vXTk#Vkp-CG7}-JLfhB?_7w(t- z2Tx&1!t}yemn-COuFZ_%l*S8&5;89RrwgGT`(CCoLHXk|UsIspNt(RX5ZWeK3? z_kJc!Hw%~Yq$;PlM~5<1pT~;t=+;j^4rD`rZ?K^>2FGAr;O8mmNlQ4M1UUO2oalfI z0=cOABV*5!I;FK?L{n1l6_fZcra56XpjXcY>W&FKH_S;is%fCNn{B17uMw}eD-r&@ zz?hL0b+Gk^J;c`TBOps*b1qK$D{RBxE;@~7-L%yRe=Jv0R}R7Qx}yB=pT5&PO-)^# zn4Jb1NzpfYxG#|*3!EP&?GlYV6x+6|>tM;tyW6SFw5tVQwfC1o0LLhIwlAvNBLo9XRXFJ;TI4cI~wA^kyL*RQyCul+d=7F!FtA zCxkrXDWkFk;;JZquZa8Vi$?O8tkwgog9;4tDEw1&a2J*F^Xh_f?`b{kafEx zlfpo}Fm+QLoN}`ichH--t8&p&a^R35xmB>d|I`}YpVcv2CXjXAKU{CAoEfCQ zb8&xfIpgSY#=xX(6IcA97{>mABz3{k(rX2?^#^9MpWEWw#|1-{({g<4*0_@rbrIuo zI)ay&3E#e*e42!Qe&3}@#Z$0Fa1?bg9#ZwyGn3$Yaig_-J?qA+qdG(&=Q(MOM!{gp zFjcZkl47Orv8%%VfXjoJ73t#-3bL)2D`MO(w&XfyJ+r9AlvkXS!pOs&179dQ5x>39 zDXdk?D7JggeK%e(14741ZCIAvaP{f-SY?4^g;vO^dOPRlfbOx=Szq5VSnP6*&e{b% z@dzWKVqM^J&<)K=8ZkQFB3xx?=i_>w+pF?>wB@r*BV`GHzIu_yvv~QXgR;4L^u4p5 zbdR08!OV-duPP2Olo6vX(sZ!JM{ws=$@nd!s(5UoKp*`Qbw8>nR?vdLH}Lnt9bLRR zvy@NNyMZ$=`czwh>@=-Pc+S$AJ#K^- z9*mHXB$(5%rC@t`g}ImDf$#IBg&w65ZecgjOZzPwTZ}JzKg1m8>20_7RtkHprGD&+ zhHZy_h}i#HLKfCR4a!Xjqq=4@1FRR)6n2x1ha@2pq(iPynAODN6qIMAKzv7NCTbLi)k(SV<52A%bhj6CnYRMF>`t4Tp@%uv4Y$|jatFl6s-DHdX!ce=dR#vk z%Xa}SuC^5N%Eg3P5*`cKBIb1dbW*;0sc~W{so=SHZPlFRt4akGd4%cR&X19mfX2QC zM&b5EOD^)9x8Ao6IEi*j{a)N544O}0Ity8IN4z@Q-J7hU`=xf91ahGkys~)%*IM#e z=>>ushUf&rCKxA#w96X@ncHp{E{A7s&dY@04xl8<*Q3nGg^wj9Rv~o5lTwkr3_=fi zLuh_TGXi>mqlmyxcP0EAi#)?vA2O|ss}y;Z_@oQO1;n*s%O(uer_R&jhrf@T_T}cP zHT>;HT43i8(MrUmHoFQH5d}k9w)gTAEGAQC@zH9A$Z)I~tc+}ILbIBL z5VcsS!aQ(&l?kr`f@m@QjxiBc_txRDX>I}_+^S@1`uP3G$n4x$$VkVd)Vaot5R1g@R25u5a*B8E9>nF3~+ zui529LaH>3*~i;mKmOd{=pguZgIRbW^r;6JL|GF+d9p%QY&BJUvSkvpCA%nv2ctja z*i7cOjcE6y%gDq}^yTQ=D5R-`xCK8zeILrH$Uiy_w4@;Nd?)_0pLKP4tz_KWu!0BN z&X=gI=)(zGtMj={oWPb)E8FRiH???(QGB|Rf98N+C!WNUCKw51`@|B&;Z}vp##r2z zjENWZp}+@u0-&4e5DCdndJxCiclmDh8@BAI@yF_jxlt@w#rGV3-BX9GFQV|$6;0lA zr}!J)B-D3bEwl;0T)nXGpR|xX4V>QmJhbRoxZ>jeTnjl(k+XFoPEK0znH=5J5IA+G zhGIuu-87MYCCo=DCA*OdeF^m8dLrH9{bYWEg|X@~nmwtre=FcFCKC1zv3yAJ06R$N z67rJm1-MGdYX8|Q6M%Ga@Oj*{5}V8@3QTCPU(<}XWgXu|dg-am@#i+i@JgIdBRqaLg>)o>B^`f<|c z=5bG3nEkUP)o=(Kn&Rzymp}IM6&oD3v4V9Ays}f0hB=Kp8lI0zI#&+v0N>DXpnxJz8Uywfr3b+J6d1T7dxOQ5R zo*`aUx8`H4ia`hFFHYA!<;lSJ{J;dF^wnt7#7*m5Wl=kh*Hxq96r`vRQcM8l!gRln zHNNRkz=TdQU-tB%;8xa-1)6lb_X6i}6HXt+UN7yfd~leR|BgM4Qh$TO@w8w(M`78< zoo!QJ8%Mo*Qt-h<1&=W`;0LUk7!qhRZ*l@m@FC+#HcJ7J1(bVAI5mF1a^mn6Q2BT<;hnO@|M`(=qXj>P2cq zFhaJsJwR9Y;=5(knn^M76jpQCI<=(On6OH%-L;-L!uWvF1_OMc}qiXMaQ3Th{!_1Ah!G9WU|{c}i8Kvtu^z@zmdj23 zpp#9wUjN*Tnsk;NMrgX|P|UL?KFRW=*zO|{N?$*|C>F+gjs!#6qJmWyaESQ}AFM#} z)nwp6ZX;1YZ~9P8=p+m606T;n7WJCssE{LABd!uBuGBq)Lv3;+Z*X>?R=lgku`tuO|1O)Row@m-%I`*ScN&g~nV=H_{{<4BEZO5kWM~lOX zz#;)Accnr(4_BnmA)ho(z1@f2hA>pbA**QHLG01q+k}!%dXn!I5cojP7;b=Le9%a5I0y)Ga|+a*bY(IF zOtEI1F{AQR8zD_Y^z>@_m-Dx?|`Rmglp+A$DV+HYxb&Syca{DFLo$3)X$zW-ktpiD_%*nfOIVU;1+7q> z^F!}EnvIx%iD_c=@2#3`pR0{}?Ur4oNPfE|ve}TC@PQAa$1|AcpBuW0fak8aN3V8g z<7G0!C2GrV+sM;R@^VsJ1!GYTtBV!qpMb@?P+yoz zZ9WtY?6#mkA?ae|R=4MYzH%9RPY!!tQOPzdJRA29;a_y2J^Vgw*d#I9 zi{^7a0qSKke>LOvsp|WXVSUpPs^gSm6KN`Pwm9DMa#ts*#?`f6-P}lUDs~4b&QRJ~ z+xa?O^TF^5Vicu?vV*{Uh~=hi)-(~bL~>l>pFl*wiY8eF1oW{1Qi=br3s^tlZnF~B zVhl*!sZdOjWDEo0;xEglnVSJTI{f9;aG!h*~dw#DVZHUWUK+rP4#n>t!_Q?Y9d0DC&P7i(;So0+iH@Tlx)Tx+ zs{n$UT=mHPF8e9$&(W6W+F9ktvs)8sNOjA-yh(2>e9?J6V+`iWQbUXh!BU>y`)OJ; ztX~?%BJkMsqp&E7+uUzxevI(*uTS>>tT}vL1;Fp^9_dS((G*&cr~Ynw*ZXoH@NIvu zQgZkE$<3~BBmMIN4{eN%$liK{1|G_d;)VUoc=T$CTCWb^!%V;fOK*83ELxbc;WPbq znW-N)$r5;`?4{-D{i@E32>AT>qidTBkaD^Rf$eX5?ojR_o2}ga{?O+xMv47@Dw0V05c#iv=i~mN{-XRz|HYt1miS*6 zfn(p(eg9q7DGQ5x3I7Y;cTjs{xUt(dd3$Sjl8tR&Ow|KHmC|Bt+E+#U0W`226({r|y=w#feTm;<0wh(NgD8xsmE<+N53ut`v9PXJ@p$C-KVI$GgyGC`D>B8?CP{B$d( ze_sfKfl2 zv{f1to2wS1&3be8RX~=OLA`?}mX_N>?fHb!v-EFM6}oN(Mf}O!O`VSkR1+Fow)aAs!6}F5H}01Wu}o-gp|l0jsSTP@XNt&bAEn z|Fo*HYKwo09FCr(gU=R#$4>{kCJRw`xE_Al@W&O$TZYUN|9V#B+m@VpbIMgY73p)* zD|GcMVTxfeDzC)*COahf;Xv>znY2Yg2!wAX|3_XtP>|EfT&YI zf>|WbdZLf3@|_?B*||!y>jmYw@Y#SqXme?CDR+(VVEWZ#SuN9JR*!;jbM-a32wsyd zjsOt$mH>mmnm)O!4EGb(vxd9HXn_S;G!8Qdk16y91Aq|*Vjt~2jG46OR2@9>_6_z( z5#L6iatw9sRgo_ugUZn?7HLFggF;G-(D5L{XBR(Ak zn$O^_8D;q8v$5N(!RPj#97VFaD8nvZ zZ3k5hfWeN(mei2*M`T55q?sKSS85w$+hY529as6VyN|uva|ZI6!N;rl1R{lxfaJlB`v^6 zL}zHhy$)fO2-6DgACg8qT#_{!ig~Z>@Ss0aHG9AVVDl9(r{w;sWe%WN5a4~e9ffr<6kz@G zJQHpi##uv}m+v{BhVlGXex%YVntJ`s@b#=Am_d`z=b_&-XCI0(@u7CoslZpUui|Jv znU6Ort)a2_@b_$8Khw>>CXElqM3p&NOKmGx{PYwf*h=fdNeF!CBx7&8G#WqpYcuxB zab>;K9BH8BW>ekOnCVh)hl6B!JZ_1*BAE3u&7a#(+cbX}^=ry;mZ0#y+s*s^rXTol zUU2AS(R4XQ@=)GDoM#*;!b@5`OfVWo3B{So$Y1V!@WkAV?aFwNyN8wKY1xqlox*kZ z*VC-UR{@dP_+po)cjCB8tcOhHeL&)NQa*LT0&7WhdHpGmMb(dQy0G~xH8h;Nux^lQ ziYN7n@O5Y_zcrN{_xcJ4eh{$fr&%7tVH(uZG zfFDb`byUL;X`8#OFq`SdDziAD$7cqVT=6^{&mm8r zpAZ<97<@JdRMTp{zhEHI&4trG4&$LTF->~JZiQ!%JB`Nfsau^V@Ng=yPyANCy^_k2 zB2c60U_Osa#99_gl*`f||B#$D_&6n2q*WZ2`g4H&W=7WWGl(J*4_YKNb&GcvedWS2^K_{ho{O4YZN-U+Ul?aNrC5jqYCy zG(m`*>#Q__e9E+s>UlMF5F`tYLbh^Q_p!?E8|cy-g)@qxBe+&6r1ws$edyjj^*|xk z=!{s8F9`|;5u4SF!+l>6jE@rrL@R0u*^(Z}g4MdbyE`4WBSaK;&5)Nzz$R?@DZd@b z^4cUUuf@U9o^QDtNqdrZ9k);KVo=SLy zM}=>8rdhE=w^X9{*2I$l!u4Ywm2nb&k30hufO>!i zpU=UU2ymDh*!riBqBw7lQ>+gOTL5!dSMCJK3to2--!3Dq^Uhe1P<&>M2>SL{7WRoa zE7{y9dD;EZp-J#Olz#abszxT*ChKl%({Ya~s<=h_W}PRYUF^ZeK;RE462}&a3H#?l z1o~j{GwU(<9){N!^D^k>?PH=`TGsbj9cS1Fyq(?ubTC6>-tz)mWNqJ6IdPu_!H_JG zPi(N~xbKoSbAM-LRG3Cfm6<0ZsSHKZ;wvm~EeFG)aJoz%rTAB8o{EdZs)2Kd=3x{} z)fra4Um8D0};a(M?srfUINC8>S5Bq%mF=a zb7j(^L!oc29K`9OyA``Ndf(q_bj2Z3-VuRK+Pr=5^`S(o2FeoI#He%`Qus{j@+jDtwW^tS;DfZxc zvPPdfzc6wZSR4-RK$8?aw^AVvge3fA%MX<(qqi}qzIo#?@}j6GiAVS}gC|c|E9~x; z0cJFIIf2@0@TEl43}T7L`y3A>0XHORP(-nc8zZ?C8*V#-UIbtderxe=~W z)!8g)W+*gTb|xI!;GYs$XU>7)Ha@3(`pETTNWmVjQ$nJ*ULMT$c}J5l2}ve+)1MGa zgXF4zYiK%D`27H%=7pg*lb5cU;@J|n@r{q9l%@z~Sy6^ryoHa#GsdFVnckH?yJ*nC0)3!xTJLdZ`h-rkdJs^{+j9To z&A55`8EE4r(AIb50vEks?P+Z%GnWsz^Ns#QZE?y6M?q1!*MH zl$4sV9Gc_)B)E z@~U-TI}fP(0~8WdOtSbmAAA|@=bnm|=lB}iv=_PJ<1PvV25{JISLEn9?*jLYpS7wL z{mei8m#OtV&I357b-nFZP{|NgN*8inopda3B2_Y6{S4QoN(uQ80SB87CRlm!fr;Z2 zd5bg4CewT3TrShli&x)J@gauKXjXZXtg0Hq7h@jBO-@BXA@n<9WxZG)7oK~5&qcX= zxPjei;{HUGoj63;VWe(0?fWoWf>MSTUvrz_#^XO{0K=Q1oczZO&y7!})hCXRPpO9XgQrn*HN= zz)8q8umuVfWwF-s|WsCrx%8Cx;9 zo=PXNCbI5S)_r=7rhzoLH(E>|>CZnC+W6np9;c54aY=ntzH7^h$f0tqXO^(}5$T#@ zH$x%&(=||rSVA~im6Sq?5il%6(|ksEx;stp&x(>|Tw)$T7#+Q`yPL7JtIXuGjkmZP zW6ZbB*>v*&8PRB4i=aghl=`(1tHd6|>?Krj{g~(eUbH#D6`HEPuz!BL)W1IDEoFPu zz0pY%F(i5)Q7{K^=)5&hcc0Um*HL8n4&_7UMS&Kp*7BQbf7h&!PEOEt_fP#o<|4x< zYH5QU9B23unqvamg0*-N%ADo4>!0@#Pw)5a|Eqh|LsKwJ^WIt%+}uu2Z`+w#b zEzCCnB=Hk6jM<-1P@s@?-s(kDOUoxMtXy8GNR^R=n?DKg@lj19pWYygm;cq`pNL zvY-BI$mm{y|5m^IYwQ1g7cgNUfBxS_$o|}N|0nQck#j$8|0V9kBEmj=&q2BWOh17o zA^YZBa5Qg+5G1%`Tuoo9rB7G%mvR<+2@o6 zB*-Ss0n?%vF8ZK1LrHD;v|>jagMr_vrVbr;55sHqm6hOFXi>@OKfy>A;chVM2iQaz zTJOC;ij@e7nWuNVS5`yIYumN+UgzH$8=ok0V@9M~d!*q-vxcPwvI|zv9hSIcV#I-< z4%1~0YwOJnP3N!9= zA2EfVwKN=d;OaRb3X^4ymJR5~LYhW2h*H4icS=gi^zSH;ca;lSOEh8&MaQA>x%~jyHAxfLACGaI%OiM#wfrS zmuKG3oW`9Irn*B1PB%TJC#khc89XjOYtsdhx8?*ZBz&x1r#V~=&52;*4;xmPU#108 z)$Iy7?wUrg%dH3g=ysX+Xnp6hC*n(a42+2@xhx;{=GRTd+~Jt{X*Jxy9X5kmlX{ZI}#@;li*(2flW z9>c(xk5UDnC&?X`(1_S?z4Zn8i^fcLLpdg9GA{<|a9&^Mf4W_qIs$m5qWY0?XME1t zn!Ca$y9IojziyGJ3$^Ro--`QaeI1v4QG&&){iA<6Tz_;C8O7uhEIqm1fnkph&Iq>L zRUz+ek$eVl8HtQ}olm=Xd#=w076cmW|0Z=FPK`|YBN8+W^z9ODyUV(Y-u^UNJZ?oH{DtS?Qe_jkQEdK?`Yv!J{1;Sa~wd@EVRnz`q-{1D;4zWDju+r zF%$*&jAU2f?3w_(P8@Kn|y747(z&kk68M!xeXzK8x24^N1)u!Kr8Z#HibdU5+ z0sPC{sZ{x99bK=^d8vQb^b0NcTj-dc^&%}n<5wectwcrwFL zu+K;e7fBuV+B-KJhjUmy2JpId0jX+jvL0{V& znM;3Ge^F)1qBjLh#=4uXAdktM?%Wwjc;)?v6;x2Q&oXN4Cg)5E7gUWB#=(k z10k^*2NZRgT*B08io$;KycfvZ#3)%|lM@?YHY%(+;Yg3S-XlOKqnluX{8GTkVT*0N zn}#fTOjZvoE63R|6CS`6(_egI#k_L*axI@^{v&!!d(`_|g@R#s@^d^lvi@rWGO3pj zf2-alh5p>0Ttgl_ZE;a<2jExY%yeMOJfo~DtK?vRy#L&2wS*3%*c(?u#R>)64EhjD zcAXe905^H)NmvOHMyR4jEX^r>h<4r{-}ZBN^GHr_?8>rN=!z~B0k`{We%XDaKRTlJ zxIn7{QvH6e;5n^KcR}&@85ipqcaBjc_wM$1Lrg}SUYK=8()s4Miq95QF#KL6-GoX= zCC+dzLVb%hDllU?R968%jo+88I|vz#y0`&|qVLqv3OHZV z*qZA$#DSmbaVC>cuerZOiw?RBSauwF7@eh!HUz3SXa~xBQgNC{m1AP~c0&~m1d=Vf zwTSg{-U@u7JC7$bdz!zx-Z^+ZOA8~6WJ3WBb9M5wI@+Pb?5suucxcKc%|G0p{GU?J zJF3ZTS>PZ|Km?Rt54}kcLK7(>gx)(sC<#)eSLtvl0!FF`s1)hFieLx?>0Ja-Is#HP zl%RBh`vs5ZdDmO-t+Vdke`IBSea|<0_I$sYJ;`&=@+8JxCfcj@*kHHAev~h)^KSFK zUk^qt?=hAK$rHUHe%;_WDTtL=SvsX6o2pO$B?aR@;>JAq`u@C7lkX8YP9W65@0T0O z=I8tIbsspU9aKDQ^-d$wVNq5_9V8f+%TKK85>2Fqf72%x5-T&Asg+ewAi)1X@b3I{ zwGIRV!Q{z#wA}TN*GM~c`%WlxQ@vEksDO-XpIvrPfRa$7*es2woq7E5+Salnpt&l# znQ0HO`mALK)K0ygR|*#H>GyzQWzjw+!7BIg6Gvo-7Fj54Xs+K@XzT%n$BBcRiwv|$ zxeJcq|y14LUH;n3TD41VT_4Nu9zn?0aAj$J=e!K=b1t#{2YRF4cP zFVTn9XTN`rfny?KHJUs0$Fft!!YfKE2v&yHIw=(8NWY$TxRN&@N;)xbIj=+!9__G-X9dj z>Jjf;E^N;L2f%Dg*`J=O)W(gzJXAa$wARthCP$yBoWB~K4`K6eP&a7m zpi;Skz`8_BnMGcH;m+_p_0?LcUg?2K3vWj`m+QASEusyOSV|~v!h?WpYerx+h zdBJVP=PzxXSW!!8KF`^9nOr4I`;S^0p_72ygadWobLo(d1#j$vqzE*4)rxqB8M;PW z9Bq;VdAQ6;85Be0a;z7U;d~?#Ob6Hx-Y6exRPQ0yw4(=2Hig=HfZ14o;e{D51~BN0t3Dx)rZ?9NLnYri-IG-KUXKa=B%v zj-e76o6{%7n34uXGfyOqSNYnH|g-{BMu?8k@0-u(XWBBgTlUTflRBu%uKWPa9 zB&py;w5#!MCxyq2Z}%ghON`w3$Vbp?LSNQju0A!KeznNYeOnb9vNm!lqJa#WOe68M zQT_euSgmF@yu99Dkq}FW|kWCWZ>tiQxOw z?FUL|MZC2<=rW5AmwNP7)~wXmv%lu^FZC(Zh$z_z75t5;ZNjNhIuyUQ77=P&nfYp4 z=Lbk9=%DglK8f2Eso2>XgT-gdwJF)-hK40T-dFTh3Wh?`z^%P3z@R4Uxz-@=nuiVD zdrW=ZfQ5&#Qr=VUDTkS`$$@(el)rCyDqBSv0O!u%QkTq%?Hz4FS2WxrE}Eq5ex>x& z7ud`>4eZprtawjwK?KvTO^hv8;ir15+DsHcpMB$g?o~|Q){EHQLt>5$A@`;;|4v8Z zXT&8~bUmf*&)ES3^L+@V5|xK^D_)ODWAPF;S3Wo{a`kV$p8);dnZx9q!mB2&Gyx&K z|4n9yiMXrRb_fW`*f5SD_+aTv=~i*Xx5IPMw)6va_1QgKB3>l41zYQv`uD}Xex!27 zgZ#uKM4b=Zc?zqz^P`X@W6ZESL*|aaq`xz=#ta0}*ZpX*(s)N>QAlt1bTuuSok;6k zG<8!f^gD&IQ$cvLrhei2)ZfbE2BQyFkCI$E$!%iTY1v{yExjtgAtj$W;0~F9nA?x( z*7d>e><&I_RmK`>BwO@t&8=!$7+USb-Lu zwL{x6TubfI-^jp)g=m0_PbYefXUzVZZ_Tpc^mrsE(O*$}!f+Y&;C565)I)mQp9%j^ zlpg*kl)Kq<=_w~oUi+X7O_~&tKSt#23%CK*{4E^BMs1+L&#W*&o-|PxX?hVA$q#vq zw7!106qA_sPR&bSLh-e~Bi;fSP?{Hb6wGG(AdcfcJxKKRn%CA?)oq@=w96t? znw-hgBV}4On`9noDYR4^0rf}9wjgxkrkddQ2Z<8!gi3SzdqO%ud4l~<3>A$G9fqpm z^lc(&a>6b^KMovhYG9h=VJsTEpYJ{nZ3)@W7G$IadpIztcWrk6Jw{>pPE6z}YJ{nT zinh|T?I5qr(#BZmw$(`PT9Lfl&fr+7PaGi1GSe{&pnopd%M2(plc27GsUw=|+1JZb zTs@_H_fg>ug!CyU;QIX?Dl7cWTXd;=JUv3xsOyig;u+BzFAF8@7r)y(;=g#@(lwlL zUp0eIq8R^uoWOf^y6sRHeL!+autaDyX*yL(9|g6XX_S7pL3-Og?wMJ%bG3&;I0}J; zriz(|Ev9xyPZL!n5@#xCf3a+JvdFU;yP$ijTo32dmHIUgn9$dfXEO;b$~gfzHS#ii zmh*I!!%v@aeZov+U0)tX&$jPf%={57Q&1s#&(6#x4v5hNy=XKMN1iET+70;9g7aQp z#l4>d_zs1>VY`4QN#&a-@MU59l8dVeGgF-^HCkMxC?n=-5MYeP+ilDuw7=5(>FYhY z7O*H#KT}Ob`9h<@(M7rd?`Bg1^dO=)QstWh`xzzR|LmM4&8&Rgh#j~1dmzB*vsFE@ z3<`I7DL1vLesEGwEUZqFr)?{jKe@De&qGH&TP{prt1v*iQQBweK)_6k?L8r#?aTCW zgJM5Dp6oc^RG&m`-t4mVicad16(7rzBD=JP^^?4~N9-Iwn6Npd`{V-%;T(H$G;(L&lsU^4U8r5cmqr z5Ee>EeR*k*5LH(5tZ9CH%tdFlf2mAI?{x3$p<6ypr9hU7}qcFrF@mMmOS*h zKX8JpcK>)YsBu@2z3GkUo7C36lj5vcqWSn=01P6{UTzGL-?iGMRuK|9)k|JMuth&)Z9H2OJ+fZYuWqK_!B;#jl6WV za6SjNuG4ML;LNjG>o=iW+)_76vx7c0&)wA8IkEFETd|XRD`H$MmcXijbnL5(j7j9> z;p>5k!b@XJfX|?GkhOUO>_Y=9YI8P>Dqbb-JRc437CbpE4IQ{~}MUi^QP$co+UY&6U@-?T(!PLGSaiwH_dm#!iQ#Ri3!jk=>+&9w8byKzk$wmYG8o|<#n(o`Z(OC^5H{7Ip(n3X&_PlY^thv zffbhi0A~a6@PGn=cAwVFYaC0Dy~o)?Fh5}HJI1_LC>^NptDtIhvYPV4gwGQs4xvXI z)yi&1gw8yVEq!*sxrZiAtGI=1oks4p%JNC2Pn_ra;fdoR3-X_8s@NCF8SFz0>e%>_ zuZnha!ks0?4~~v=loo10Hxl5K7Rl<3z@p^J_J!DxG01~0rh$qZ-+a}*cwpzS7EkZf z?cAj9t1U;DzoYHMLq1y0+K_O?n&tUiV6j znf9w`@nQn*NY0eG3)-K)TG9wM<;W%$x>Pj%Z;urz5onISbE@3Ra;_+Wz}6;TA2b$ zYC#|f$&HZ2yk19($^oD0ogFV|3a}t_%f2b_q+1)Vt~u;~pcWbZN2SmDETzJ6b!p4v z;-Pni5Y0432*v=2rT{IRSjcTh%=@kEz5}u=U&+{~psLb)->PY<)|pZYL>j{dScK80 zDBfK`rB7x{DRr$2Y{~BA4a67n1;TzG&KnO(qH?Tk114m*vjeP zZJO)!^U$-l$Qa?UdgtM}Gx;+AlOt^z{SHJGGa4K?(DWJmP3a9d`TTyb z$>r~dLN^wt_qUccfn9hh8dtPZw5L*`AZyeULtxR41^PUXyOg_)d$K@#av7-XuuMbW zj5}7DQyr Date: Thu, 2 Sep 2021 12:38:03 -0500 Subject: [PATCH 18/21] Reduce checkout to a single file for efficiency (#21262) --- .github/workflows/add-review-template.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/add-review-template.yml b/.github/workflows/add-review-template.yml index ddff524a75..efa8106202 100644 --- a/.github/workflows/add-review-template.yml +++ b/.github/workflows/add-review-template.yml @@ -16,8 +16,11 @@ jobs: if: github.event.label.name == 'add-review-template' && github.repository == 'github/docs-internal' steps: - - name: check out repo content - uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f + - name: Download the template file + uses: Bhacaz/checkout-files@c8f01756bfd894ba746d5bf48205e19000b0742b + with: + files: .github/review-template.md + token: ${{ secrets.GITHUB_TOKEN }} # Jump through some hoops to work with a multi-line file - name: Store review template in variable @@ -31,6 +34,6 @@ jobs: run: | gh pr comment $PR --body "$TEMPLATE" env: - GITHUB_TOKEN: ${{secrets.DOCUBOT_FR_PROJECT_BOARD_WORKFLOWS_REPO_ORG_READ_SCOPES}} + GITHUB_TOKEN: ${{ secrets.DOCUBOT_FR_PROJECT_BOARD_WORKFLOWS_REPO_ORG_READ_SCOPES }} PR: ${{ github.event.pull_request.html_url }} TEMPLATE: ${{ env.TEMPLATE }} From daaf6d346ceb4326aa768550d32b60643df20d8a Mon Sep 17 00:00:00 2001 From: GitHub Actions Date: Thu, 2 Sep 2021 17:41:48 +0000 Subject: [PATCH 19/21] update search indexes --- lib/search/indexes/github-docs-2.22-cn-records.json.br | 4 ++-- lib/search/indexes/github-docs-2.22-cn.json.br | 4 ++-- lib/search/indexes/github-docs-2.22-de-records.json.br | 4 ++-- lib/search/indexes/github-docs-2.22-de.json.br | 4 ++-- lib/search/indexes/github-docs-2.22-en-records.json.br | 4 ++-- lib/search/indexes/github-docs-2.22-en.json.br | 4 ++-- lib/search/indexes/github-docs-2.22-es-records.json.br | 4 ++-- lib/search/indexes/github-docs-2.22-es.json.br | 4 ++-- lib/search/indexes/github-docs-2.22-ja-records.json.br | 4 ++-- lib/search/indexes/github-docs-2.22-ja.json.br | 4 ++-- lib/search/indexes/github-docs-2.22-pt-records.json.br | 4 ++-- lib/search/indexes/github-docs-2.22-pt.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-cn-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-cn.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-de-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-de.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-en-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-en.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-es-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-es.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-ja-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-ja.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-pt-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-pt.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-cn-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-cn.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-de-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-de.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-en-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-en.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-es-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-es.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-ja-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-ja.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-pt-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-pt.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-cn-records.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-cn.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-de-records.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-de.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-en-records.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-en.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-es-records.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-es.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-ja-records.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-ja.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-pt-records.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-pt.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-cn-records.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-cn.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-de-records.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-de.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-en-records.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-en.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-es-records.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-es.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-ja-records.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-ja.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-pt-records.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-pt.json.br | 4 ++-- 60 files changed, 120 insertions(+), 120 deletions(-) diff --git a/lib/search/indexes/github-docs-2.22-cn-records.json.br b/lib/search/indexes/github-docs-2.22-cn-records.json.br index 7361aa9ec7..3e0cbf90ba 100644 --- a/lib/search/indexes/github-docs-2.22-cn-records.json.br +++ b/lib/search/indexes/github-docs-2.22-cn-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0acd8907c97e940107c8e1f518203fefff0b32c977b40878de154afc056d93b5 -size 506737 +oid sha256:3f3e44b2ca29fe9c83cdc9e584fee0d00f4ab34e4c975677f372886c76a2fc80 +size 506557 diff --git a/lib/search/indexes/github-docs-2.22-cn.json.br b/lib/search/indexes/github-docs-2.22-cn.json.br index 6d17a2155f..21c77dd7ce 100644 --- a/lib/search/indexes/github-docs-2.22-cn.json.br +++ b/lib/search/indexes/github-docs-2.22-cn.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f9711c9f8dc693fbd14b1f56344698694d7c7a2cf7350fc72f249dd2705f3d78 -size 803274 +oid sha256:44827db69e36ee5d4aea6a5d94c7e9038edc0003ea91fdf08f8b5c4e8ec2a443 +size 802698 diff --git a/lib/search/indexes/github-docs-2.22-de-records.json.br b/lib/search/indexes/github-docs-2.22-de-records.json.br index 3614615ba5..41315e7289 100644 --- a/lib/search/indexes/github-docs-2.22-de-records.json.br +++ b/lib/search/indexes/github-docs-2.22-de-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d87bc1fd0458173dd22caa1f7570c80fbade9efd4fbad88b958037661d3f0d54 -size 469636 +oid sha256:086567d0df48c434557a432c26a0b4ae0dd86ef370fb017929e7563328c44ae5 +size 469237 diff --git a/lib/search/indexes/github-docs-2.22-de.json.br b/lib/search/indexes/github-docs-2.22-de.json.br index a9ad9ac209..883f573af8 100644 --- a/lib/search/indexes/github-docs-2.22-de.json.br +++ b/lib/search/indexes/github-docs-2.22-de.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d34151e39c6999ed1928c667292d8055c279b2f1a9e4ad43dbd8597b81e358dd -size 2078574 +oid sha256:13e90f429cdbb9c1e0e637e455cbf97945d7f89b14f098ab479f7402a4535fcb +size 2077879 diff --git a/lib/search/indexes/github-docs-2.22-en-records.json.br b/lib/search/indexes/github-docs-2.22-en-records.json.br index e0912bcd6c..ec4f1dc24d 100644 --- a/lib/search/indexes/github-docs-2.22-en-records.json.br +++ b/lib/search/indexes/github-docs-2.22-en-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c685e56cc1f0abf3682f3554a086177f3242338fe9486f8dd2c86e72e88e8a8f -size 432565 +oid sha256:986cf9324354b46f26a07fe3a48d22ad0532470a77fb1ce2f32d8fc319c0f46a +size 432668 diff --git a/lib/search/indexes/github-docs-2.22-en.json.br b/lib/search/indexes/github-docs-2.22-en.json.br index ab26f517f6..621aaa6e24 100644 --- a/lib/search/indexes/github-docs-2.22-en.json.br +++ b/lib/search/indexes/github-docs-2.22-en.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:338c12ce0b89dd2490e275aaf809c57007dca5b36e257d9f1f88c49ae61fd46b -size 1695168 +oid sha256:ac33678e427fea3fd0fc7c0c72d11437d51d5dc5d830d7a2fdbc99eae1c25eda +size 1694779 diff --git a/lib/search/indexes/github-docs-2.22-es-records.json.br b/lib/search/indexes/github-docs-2.22-es-records.json.br index 5c4e3d0fd1..977b120c39 100644 --- a/lib/search/indexes/github-docs-2.22-es-records.json.br +++ b/lib/search/indexes/github-docs-2.22-es-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:acf1007cd6fa9d558a0cb2e32da8a0efef52e25e37d0d4004c54c08a69424cab -size 280079 +oid sha256:a3e5e763fdb221bb02aca7be4cbac3e2aaee2d4f6ec6c7ee0c582ec84bd8daa7 +size 279884 diff --git a/lib/search/indexes/github-docs-2.22-es.json.br b/lib/search/indexes/github-docs-2.22-es.json.br index 0fc9b280c9..817c5d1afe 100644 --- a/lib/search/indexes/github-docs-2.22-es.json.br +++ b/lib/search/indexes/github-docs-2.22-es.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:adb577e3b85135c7d2d74fd4e49801a2c13e5b83dfcab6d51cb2ccae5840e2e2 -size 1066314 +oid sha256:05879b857d1364c40e621fc0c78cc2526c28651966c055ddf4c407832ae18e05 +size 1067549 diff --git a/lib/search/indexes/github-docs-2.22-ja-records.json.br b/lib/search/indexes/github-docs-2.22-ja-records.json.br index 8817a62b61..49bb54731f 100644 --- a/lib/search/indexes/github-docs-2.22-ja-records.json.br +++ b/lib/search/indexes/github-docs-2.22-ja-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f4a6daa0a6103c8e6a212f7286bbdfdc4788efdcd8f15d6f7bee25b4fa7b8b4f -size 528722 +oid sha256:da557c16e523eb25658e5c2fe97bd4da6550dc07f411df42af4a6e2c068e4d1d +size 529650 diff --git a/lib/search/indexes/github-docs-2.22-ja.json.br b/lib/search/indexes/github-docs-2.22-ja.json.br index 11dc98cef6..3d0ec4602c 100644 --- a/lib/search/indexes/github-docs-2.22-ja.json.br +++ b/lib/search/indexes/github-docs-2.22-ja.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ddcace20a737edfb95babe39fcb6a4084d87651338524917484e63365ecf1be5 -size 2797340 +oid sha256:b3a3b0d91d29fb7d54487e4fb5110add511b05ed74cf962cbe2aa427f3c3fc07 +size 2799183 diff --git a/lib/search/indexes/github-docs-2.22-pt-records.json.br b/lib/search/indexes/github-docs-2.22-pt-records.json.br index b82279e7be..57af69f64a 100644 --- a/lib/search/indexes/github-docs-2.22-pt-records.json.br +++ b/lib/search/indexes/github-docs-2.22-pt-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b80a064761e74f5de33b00d7cfa3c5292e90de432aa1ce1eac5f62dc32cf760e -size 443795 +oid sha256:bdc6c75724b71d3e30bb092b62cd457cf91da377295ed316a5a8051c2008c1fa +size 443662 diff --git a/lib/search/indexes/github-docs-2.22-pt.json.br b/lib/search/indexes/github-docs-2.22-pt.json.br index a275705bbc..9915837b75 100644 --- a/lib/search/indexes/github-docs-2.22-pt.json.br +++ b/lib/search/indexes/github-docs-2.22-pt.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2ce3a17d0e29ba6f797cf53195dc6453a7b786766d680640275907a45aba98f6 -size 1852334 +oid sha256:3377c13ec026f9a17f45cce85f7da3d39eeb65a7aeb0dd9346246fb5088197e4 +size 1852560 diff --git a/lib/search/indexes/github-docs-3.0-cn-records.json.br b/lib/search/indexes/github-docs-3.0-cn-records.json.br index ce1e3ba7ea..5b41641751 100644 --- a/lib/search/indexes/github-docs-3.0-cn-records.json.br +++ b/lib/search/indexes/github-docs-3.0-cn-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:953216ed98e23048f592656701ad96715fa87bd834a7e6dbbcafeca7027f80f7 -size 524563 +oid sha256:24b832cf19ac94213906f398e40cbad0ab79e86581e4bcddfc7c48cae5fef3a9 +size 524689 diff --git a/lib/search/indexes/github-docs-3.0-cn.json.br b/lib/search/indexes/github-docs-3.0-cn.json.br index 3ea68c8871..7109100256 100644 --- a/lib/search/indexes/github-docs-3.0-cn.json.br +++ b/lib/search/indexes/github-docs-3.0-cn.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e67c46ffdeb963837286e15bff981ad665bb93fc5cd8860e9ca59da7c2af7acf -size 833042 +oid sha256:65ab41215b4bbacdcc0ff7874774772bd429d7d6a96fa7136d2d8f664ccec753 +size 833423 diff --git a/lib/search/indexes/github-docs-3.0-de-records.json.br b/lib/search/indexes/github-docs-3.0-de-records.json.br index 5a29d84dea..62ee2c414b 100644 --- a/lib/search/indexes/github-docs-3.0-de-records.json.br +++ b/lib/search/indexes/github-docs-3.0-de-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e3631e646331e18e7ef216349de954217a314f817dd9e8b82207e7c7c51580fd -size 490218 +oid sha256:1d85660b759aa292c5ecd84f450bd4c60f0eae92716e36df65830aec71ed345f +size 490253 diff --git a/lib/search/indexes/github-docs-3.0-de.json.br b/lib/search/indexes/github-docs-3.0-de.json.br index 80013e68b7..d4cac9195a 100644 --- a/lib/search/indexes/github-docs-3.0-de.json.br +++ b/lib/search/indexes/github-docs-3.0-de.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:01f6bcd6d8af9c79fdaea9745470e62a948182dd540df9ff50f82a2ac9b2c815 -size 2178636 +oid sha256:3644173d5f8985d371e60d1452197f4a8c398eb165d870057c17cc23df467d94 +size 2178913 diff --git a/lib/search/indexes/github-docs-3.0-en-records.json.br b/lib/search/indexes/github-docs-3.0-en-records.json.br index a3801d2d0c..ffc6a2b2b9 100644 --- a/lib/search/indexes/github-docs-3.0-en-records.json.br +++ b/lib/search/indexes/github-docs-3.0-en-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b6b3ff968d2cd4ca96cc83725b52126b5f35d5f3d8bf0b112ce38b0c13dc6ccf -size 452181 +oid sha256:2a6cb0a5fa2e656f52d34eb80da1a1e6b088f5408a0829d71abb73491fa22f20 +size 452275 diff --git a/lib/search/indexes/github-docs-3.0-en.json.br b/lib/search/indexes/github-docs-3.0-en.json.br index dfac2ddaf1..cb77d57f89 100644 --- a/lib/search/indexes/github-docs-3.0-en.json.br +++ b/lib/search/indexes/github-docs-3.0-en.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:bcecbed38b7736b98cb37051fca99202e79f51011aee5f825044c23d9bdcf291 -size 1770256 +oid sha256:aa86b28fc808c314fc988b02456d73b1ec830a4dad47749109e99a738d89ab5b +size 1769933 diff --git a/lib/search/indexes/github-docs-3.0-es-records.json.br b/lib/search/indexes/github-docs-3.0-es-records.json.br index a534a4eaf0..c4cf698e5e 100644 --- a/lib/search/indexes/github-docs-3.0-es-records.json.br +++ b/lib/search/indexes/github-docs-3.0-es-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5c43c13cb97fbde959fbe6b5ce3e3a65213f7643f1e007b1420f65159bfebe30 -size 278360 +oid sha256:406d382ec2d7b3b52867235e2492118354b518dda409f9e45466be45af2b97ef +size 278464 diff --git a/lib/search/indexes/github-docs-3.0-es.json.br b/lib/search/indexes/github-docs-3.0-es.json.br index 76435b59bb..08035c5ef5 100644 --- a/lib/search/indexes/github-docs-3.0-es.json.br +++ b/lib/search/indexes/github-docs-3.0-es.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8f167a46fe3b67e7e3cb2ae445365c6f4222be1326dd847745661b5b6f66627d -size 1055919 +oid sha256:e2ed36c0c73c8972896e8d6c77f3bf780d87c1d14dfaafa748016d00e04a1852 +size 1056064 diff --git a/lib/search/indexes/github-docs-3.0-ja-records.json.br b/lib/search/indexes/github-docs-3.0-ja-records.json.br index 3669afce03..4d6cf102f4 100644 --- a/lib/search/indexes/github-docs-3.0-ja-records.json.br +++ b/lib/search/indexes/github-docs-3.0-ja-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3893b7a70bc0e3e5fb0dd2e9fa872877c66e53c2fa070d3936981a0fb79083f5 -size 550429 +oid sha256:2af8674712841d4c14c36cc01af5cf99096a8a655328efaa3868a807008b968d +size 550552 diff --git a/lib/search/indexes/github-docs-3.0-ja.json.br b/lib/search/indexes/github-docs-3.0-ja.json.br index 4bb79bfeab..675f01a91a 100644 --- a/lib/search/indexes/github-docs-3.0-ja.json.br +++ b/lib/search/indexes/github-docs-3.0-ja.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2a38e5c072e84e41e145d2a83cce680288a56711fca8a74dd88b2174f14568f0 -size 2912155 +oid sha256:985e8e7b78f6fab788ce50af5bd08bbb8977aa3727eadc74a9f760eb7c2dd8fe +size 2913993 diff --git a/lib/search/indexes/github-docs-3.0-pt-records.json.br b/lib/search/indexes/github-docs-3.0-pt-records.json.br index 4e269c46ef..0744ead627 100644 --- a/lib/search/indexes/github-docs-3.0-pt-records.json.br +++ b/lib/search/indexes/github-docs-3.0-pt-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5805e5292eeee4307adac87d11f300b0c9aa2ac255decbf6b36090c785c20e3d -size 464980 +oid sha256:12ec4a029d33d8e6b0bf23c7dfe80b2c1cfc52b2335bb275203496ec71ca5e0d +size 464678 diff --git a/lib/search/indexes/github-docs-3.0-pt.json.br b/lib/search/indexes/github-docs-3.0-pt.json.br index 0a5128328f..49e1ab4b93 100644 --- a/lib/search/indexes/github-docs-3.0-pt.json.br +++ b/lib/search/indexes/github-docs-3.0-pt.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c2db737fe960766f3e63b9af7f14950d7c1862bef737282a722653826b8f1bcf -size 1937882 +oid sha256:2fc05b1e505d293937c4fe461c424a5b3bb824b17309f02504d79e6d07d71176 +size 1935868 diff --git a/lib/search/indexes/github-docs-3.1-cn-records.json.br b/lib/search/indexes/github-docs-3.1-cn-records.json.br index 238b5314fd..362008ae4f 100644 --- a/lib/search/indexes/github-docs-3.1-cn-records.json.br +++ b/lib/search/indexes/github-docs-3.1-cn-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:de60d143e3ba1040b6740423052b12c0bff719279c5dafe49bbb1e3d49367718 -size 534208 +oid sha256:6268b78daed748466f42e8d2e5e4667cafdec7b8754cb9d7cb0f099b88929a76 +size 534428 diff --git a/lib/search/indexes/github-docs-3.1-cn.json.br b/lib/search/indexes/github-docs-3.1-cn.json.br index 4d2f5d43ee..79e9a227ac 100644 --- a/lib/search/indexes/github-docs-3.1-cn.json.br +++ b/lib/search/indexes/github-docs-3.1-cn.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:bb494aeef75821e2249e3c1b78ebbf5725c2871a2827612b89b6b54ea166a72f -size 846389 +oid sha256:b2e80a9693582a5e5dbee64e3f586cc3b64cd5a253daf678ffb6f7328cfb2263 +size 846023 diff --git a/lib/search/indexes/github-docs-3.1-de-records.json.br b/lib/search/indexes/github-docs-3.1-de-records.json.br index 0203f8effc..dd0983a047 100644 --- a/lib/search/indexes/github-docs-3.1-de-records.json.br +++ b/lib/search/indexes/github-docs-3.1-de-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2ba1e05cfb5d0d9f58d28116a74d8b17bd4677499bc3d32b979adbcd0a2c65b9 -size 497111 +oid sha256:2e2990e256c877c49b930fd4d9d304a551cb0957b2f105224c83be784787977e +size 497143 diff --git a/lib/search/indexes/github-docs-3.1-de.json.br b/lib/search/indexes/github-docs-3.1-de.json.br index 9b13342cbb..0b62fc7a19 100644 --- a/lib/search/indexes/github-docs-3.1-de.json.br +++ b/lib/search/indexes/github-docs-3.1-de.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1c5a2075480d96e482ac7b32b5730534927cf806a4a4a93de1b17d7218eec483 -size 2221120 +oid sha256:12c516bc184658fa6ff0a569b9521d3f698231f05f2e786fbfb7a1dce83adb68 +size 2220765 diff --git a/lib/search/indexes/github-docs-3.1-en-records.json.br b/lib/search/indexes/github-docs-3.1-en-records.json.br index 886a7b1149..6ec8b981dd 100644 --- a/lib/search/indexes/github-docs-3.1-en-records.json.br +++ b/lib/search/indexes/github-docs-3.1-en-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d429da81b9b8f6a41761b2c1b958dd9429169d98b28c006fbb3795a285bda551 -size 460700 +oid sha256:0ac687cfa4c11800b2a88e2506cf9823011f1dc8942929560af620ba02c8a372 +size 460955 diff --git a/lib/search/indexes/github-docs-3.1-en.json.br b/lib/search/indexes/github-docs-3.1-en.json.br index 3a79c4de91..00b1c770ae 100644 --- a/lib/search/indexes/github-docs-3.1-en.json.br +++ b/lib/search/indexes/github-docs-3.1-en.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9e285537009b4ebe3c61eec04229aab298c5b75088fc2033d729da5bebc5579b -size 1805083 +oid sha256:a4c09892175845f22de9af2cd48f698c211ea9276a815b2878927972aa7da685 +size 1805070 diff --git a/lib/search/indexes/github-docs-3.1-es-records.json.br b/lib/search/indexes/github-docs-3.1-es-records.json.br index 766133ccb5..eea49285c2 100644 --- a/lib/search/indexes/github-docs-3.1-es-records.json.br +++ b/lib/search/indexes/github-docs-3.1-es-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:703434303c3e20c0712db4e667f0818218ca2777b99f3ff1fd00f0c5b51ff13f -size 278411 +oid sha256:61c3a4316fbddd22a47c6b5291e27de8259974b063826782ab3d180ac7fe6f5c +size 278462 diff --git a/lib/search/indexes/github-docs-3.1-es.json.br b/lib/search/indexes/github-docs-3.1-es.json.br index c55edd7252..526550efd6 100644 --- a/lib/search/indexes/github-docs-3.1-es.json.br +++ b/lib/search/indexes/github-docs-3.1-es.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c483e0104946c61a288e07ae8af3586855896181106ba60353ed6bd3c46e84f2 -size 1056484 +oid sha256:6fa5e1e5e7816ad02784de23e64d236fdfbfe1f6f3f54f0ac6a4c786cd81c145 +size 1056468 diff --git a/lib/search/indexes/github-docs-3.1-ja-records.json.br b/lib/search/indexes/github-docs-3.1-ja-records.json.br index 84aa932e2f..782e91064d 100644 --- a/lib/search/indexes/github-docs-3.1-ja-records.json.br +++ b/lib/search/indexes/github-docs-3.1-ja-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1142562aff3826e8a5eb1b9e5b04a9694416f9c0f245b066d0481fcee436347a -size 559510 +oid sha256:b9857fde5bb73cfed8c014182a4f48f8fedb092d89a790c8f35315d6d5bb8a1c +size 558987 diff --git a/lib/search/indexes/github-docs-3.1-ja.json.br b/lib/search/indexes/github-docs-3.1-ja.json.br index e4fd015419..d53a617ec9 100644 --- a/lib/search/indexes/github-docs-3.1-ja.json.br +++ b/lib/search/indexes/github-docs-3.1-ja.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2ff061a64f84cb1768faa52b46fd5913b2aa299061898f2c0d8c1215ff45546c -size 2966538 +oid sha256:ca3264a5dbe6053015e11fac396314a97874c3eed5d681a15f773e2a50abd792 +size 2965543 diff --git a/lib/search/indexes/github-docs-3.1-pt-records.json.br b/lib/search/indexes/github-docs-3.1-pt-records.json.br index 0539d1e2a7..9d10c141b6 100644 --- a/lib/search/indexes/github-docs-3.1-pt-records.json.br +++ b/lib/search/indexes/github-docs-3.1-pt-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c89e965a051caaf3461c6678121aeecfe34683c5866108fb6bb5ad34ac021dec -size 472164 +oid sha256:0290bc33c4fba74ed1cecc1a0a85cd6812c41c4230aaaf5ac97b6329ae932500 +size 472076 diff --git a/lib/search/indexes/github-docs-3.1-pt.json.br b/lib/search/indexes/github-docs-3.1-pt.json.br index 05a490fdf3..f07dcd2c71 100644 --- a/lib/search/indexes/github-docs-3.1-pt.json.br +++ b/lib/search/indexes/github-docs-3.1-pt.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7c418a18018fbaf29ff24f53afbe7a5ebe164b4445a2b81a04a10b06fea4cdcd -size 1972205 +oid sha256:0fcd87f8cba6d3ba1449435428e29e32cb8f8c73461dc748ce4a670dd7a98fc4 +size 1971952 diff --git a/lib/search/indexes/github-docs-dotcom-cn-records.json.br b/lib/search/indexes/github-docs-dotcom-cn-records.json.br index 418a0f700d..5e9f7c3936 100644 --- a/lib/search/indexes/github-docs-dotcom-cn-records.json.br +++ b/lib/search/indexes/github-docs-dotcom-cn-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e0c0688e6a354e348c3b05f6c85efca8e823200544e874998734599f18dea4b0 -size 709996 +oid sha256:5f593d1d730602978f005fa658d90f52e4777605f862946505cf972d5215b0a0 +size 710335 diff --git a/lib/search/indexes/github-docs-dotcom-cn.json.br b/lib/search/indexes/github-docs-dotcom-cn.json.br index 3650536b9a..0496fd4341 100644 --- a/lib/search/indexes/github-docs-dotcom-cn.json.br +++ b/lib/search/indexes/github-docs-dotcom-cn.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4216f859bf836b7809f660b6d2ba9f472d6ceef7ae978d8f66a993de233e07b9 -size 969241 +oid sha256:c5dadd7bc3c22c7d8f0b90cb7351ae6df68bed8081d8e9b7b5375051eb4cf5b0 +size 969463 diff --git a/lib/search/indexes/github-docs-dotcom-de-records.json.br b/lib/search/indexes/github-docs-dotcom-de-records.json.br index ff2e168a22..124a6dac24 100644 --- a/lib/search/indexes/github-docs-dotcom-de-records.json.br +++ b/lib/search/indexes/github-docs-dotcom-de-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:02b89a4bb6a2a51a6774184006aec864bece5aaeb02a2c2d274f8b1cabc19905 -size 647919 +oid sha256:04a694022aec369121005247558817d1d7a152b17aa1ee3e1cdb75b765d7eb87 +size 647368 diff --git a/lib/search/indexes/github-docs-dotcom-de.json.br b/lib/search/indexes/github-docs-dotcom-de.json.br index 06b1cb5c6a..d98336a804 100644 --- a/lib/search/indexes/github-docs-dotcom-de.json.br +++ b/lib/search/indexes/github-docs-dotcom-de.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a21bf76cd11992957c0ea9851139e3dc11c930eb8653eb46986806ea291072d1 -size 2902817 +oid sha256:276637039c011d261792e2624bb6696d45ec478a037f8d877ab1080cee4db3a1 +size 2900802 diff --git a/lib/search/indexes/github-docs-dotcom-en-records.json.br b/lib/search/indexes/github-docs-dotcom-en-records.json.br index d590b15e8e..98e79972ae 100644 --- a/lib/search/indexes/github-docs-dotcom-en-records.json.br +++ b/lib/search/indexes/github-docs-dotcom-en-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:bb8a49506359ee3e02a7362b7b2657b65c9d729724cbd41b0d53bee372b40404 -size 624881 +oid sha256:4c81739067f36e0b2aad2dc74712eb8e1b724d3e226c47b1d5b4b1656b1ff2de +size 624568 diff --git a/lib/search/indexes/github-docs-dotcom-en.json.br b/lib/search/indexes/github-docs-dotcom-en.json.br index 64b9d297d4..814c795479 100644 --- a/lib/search/indexes/github-docs-dotcom-en.json.br +++ b/lib/search/indexes/github-docs-dotcom-en.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0f634e9618f61af14ba9473a2e36be73a3e9b18e89a7217dea223467e984d797 -size 2380946 +oid sha256:21c930c7773a873ebca7119a9fd104c50b3b66fb1d5a5073dda7145a045466c0 +size 2379990 diff --git a/lib/search/indexes/github-docs-dotcom-es-records.json.br b/lib/search/indexes/github-docs-dotcom-es-records.json.br index e20b04dd4a..c875b2d22a 100644 --- a/lib/search/indexes/github-docs-dotcom-es-records.json.br +++ b/lib/search/indexes/github-docs-dotcom-es-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0424c5f2df03b0f3bddfffe41dbe274f4d6cd9ef3975c1e6ee711189ea885a3f -size 306533 +oid sha256:4a6d09a73065571a870b5937dce8f86629048b8481c85a7b15bac861a939f8e8 +size 306412 diff --git a/lib/search/indexes/github-docs-dotcom-es.json.br b/lib/search/indexes/github-docs-dotcom-es.json.br index e4a0ae60db..517f02aca7 100644 --- a/lib/search/indexes/github-docs-dotcom-es.json.br +++ b/lib/search/indexes/github-docs-dotcom-es.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:de848dad3f1bb3d179b207e04e25fc3d70e2aa6df9281861ca5b283b35266a8f -size 1087971 +oid sha256:2809ce669e4bda17565458a4d660a5d9e27471ddd4c802f4003736a32850d0b5 +size 1088034 diff --git a/lib/search/indexes/github-docs-dotcom-ja-records.json.br b/lib/search/indexes/github-docs-dotcom-ja-records.json.br index a02f731578..756c9ede78 100644 --- a/lib/search/indexes/github-docs-dotcom-ja-records.json.br +++ b/lib/search/indexes/github-docs-dotcom-ja-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:38215cfdcbc8d73132fb7576bf6979145cf542421fc17da04fd62a80758fde75 -size 738464 +oid sha256:784e27484f76033b4815475c119221a8a7259601c1f281974a30c31378d1d316 +size 738470 diff --git a/lib/search/indexes/github-docs-dotcom-ja.json.br b/lib/search/indexes/github-docs-dotcom-ja.json.br index d99a68650f..f9dd4ad17a 100644 --- a/lib/search/indexes/github-docs-dotcom-ja.json.br +++ b/lib/search/indexes/github-docs-dotcom-ja.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f3567635f4ad64a19cfea989b916d913def004c8c0444216337164bf4d35447e -size 3852136 +oid sha256:a75f5e0912e9b8f0b3363675ad5a90c97113bfe9aed520962640619268c2e629 +size 3851996 diff --git a/lib/search/indexes/github-docs-dotcom-pt-records.json.br b/lib/search/indexes/github-docs-dotcom-pt-records.json.br index 3c6cdc2faf..1066ae09b8 100644 --- a/lib/search/indexes/github-docs-dotcom-pt-records.json.br +++ b/lib/search/indexes/github-docs-dotcom-pt-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7d1c8a993eea6b4f881a1be954c001bfcf7c5b895c146a614081d43ea91d1766 -size 621401 +oid sha256:0157b90a2c39dbd2718614c9b9d6fe4e9cb59762a6ec69abc24bd10527f601f0 +size 621390 diff --git a/lib/search/indexes/github-docs-dotcom-pt.json.br b/lib/search/indexes/github-docs-dotcom-pt.json.br index 3f0369ac32..189b4d8b02 100644 --- a/lib/search/indexes/github-docs-dotcom-pt.json.br +++ b/lib/search/indexes/github-docs-dotcom-pt.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4be8a9ba87b0b39332581dfea061d3844b0363bab17dd253a1fc4a1c9a7a18d3 -size 2551517 +oid sha256:470dd45ba19bcd2876b61e98657262ae6d8bab5d81f16ab6c269668b71c4f74a +size 2552402 diff --git a/lib/search/indexes/github-docs-ghae-cn-records.json.br b/lib/search/indexes/github-docs-ghae-cn-records.json.br index 06de7d3873..be49da7ebd 100644 --- a/lib/search/indexes/github-docs-ghae-cn-records.json.br +++ b/lib/search/indexes/github-docs-ghae-cn-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c36fb2de47b7ee7bb622d4a5b128695f96bf24e20bccff0e128210fb7b74151b -size 414404 +oid sha256:d21aeb104954142b0d32db51f56c999cc4e605859bf1a0034d9f84c52d555a7d +size 414200 diff --git a/lib/search/indexes/github-docs-ghae-cn.json.br b/lib/search/indexes/github-docs-ghae-cn.json.br index f8e5637324..a32540d6aa 100644 --- a/lib/search/indexes/github-docs-ghae-cn.json.br +++ b/lib/search/indexes/github-docs-ghae-cn.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0d8503028fab44bc13d9aebd6b708a67393478a3168f57dbc17daa41449d4479 -size 631051 +oid sha256:7294af0134eb502b2e48e7dad3fba952c85138f72351108f3c2b326509477594 +size 631379 diff --git a/lib/search/indexes/github-docs-ghae-de-records.json.br b/lib/search/indexes/github-docs-ghae-de-records.json.br index 175a93e809..dfbac1000e 100644 --- a/lib/search/indexes/github-docs-ghae-de-records.json.br +++ b/lib/search/indexes/github-docs-ghae-de-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d0f295e268d0f9b217c269ea04e705bf88834c4f47632cf7b735d204db271d8d -size 390796 +oid sha256:49570c586fcefba2c3f23dd69e83698687f02a4d435c16b41effc909105bb285 +size 390765 diff --git a/lib/search/indexes/github-docs-ghae-de.json.br b/lib/search/indexes/github-docs-ghae-de.json.br index 9122fbc29d..ddc8727c8a 100644 --- a/lib/search/indexes/github-docs-ghae-de.json.br +++ b/lib/search/indexes/github-docs-ghae-de.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:95faa66dc1752e9bd9b57da092469748fe8c7e8ed7c3c4aaecaba9dd1764c2e1 -size 1698716 +oid sha256:30e46378be84bf593153a362417c4a9a8254daaec12f7c4f6fdbb8467cbe15c9 +size 1698021 diff --git a/lib/search/indexes/github-docs-ghae-en-records.json.br b/lib/search/indexes/github-docs-ghae-en-records.json.br index 1371592222..3bee04f460 100644 --- a/lib/search/indexes/github-docs-ghae-en-records.json.br +++ b/lib/search/indexes/github-docs-ghae-en-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:edace1f300d46b0b3a1ad126a483fafae79a62854d7a7e7eaf65e944fa212e5e -size 360829 +oid sha256:99f8e6e3a6c68d4761c63b658e80601b903b3ee18444370ad62c411f0496a954 +size 360799 diff --git a/lib/search/indexes/github-docs-ghae-en.json.br b/lib/search/indexes/github-docs-ghae-en.json.br index e80c242287..6d9394a0ab 100644 --- a/lib/search/indexes/github-docs-ghae-en.json.br +++ b/lib/search/indexes/github-docs-ghae-en.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:fb0121a813a3b92beff87eda43bc9a1949c70c6e5830dbd1b3f973f08d159b4e -size 1354056 +oid sha256:02fceea1bbb82522f2d3c0771f099cbba136ebeaef97fbcf595c2bbd6f12fd9e +size 1353752 diff --git a/lib/search/indexes/github-docs-ghae-es-records.json.br b/lib/search/indexes/github-docs-ghae-es-records.json.br index c6846d7476..1cd14b6962 100644 --- a/lib/search/indexes/github-docs-ghae-es-records.json.br +++ b/lib/search/indexes/github-docs-ghae-es-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2a707baa6125bd74f5857d3f295efbc291610986f450eed7495fd9a095b75472 -size 200686 +oid sha256:cea609dfb61852db933f6855a1f61f97064fa4381fae1f97f0095e64e105feb4 +size 200662 diff --git a/lib/search/indexes/github-docs-ghae-es.json.br b/lib/search/indexes/github-docs-ghae-es.json.br index c7c9dd7401..7b19010726 100644 --- a/lib/search/indexes/github-docs-ghae-es.json.br +++ b/lib/search/indexes/github-docs-ghae-es.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:344ce735c2453ae8f3aba0cf5618c5f322ab45756d4c352ff05f7c17c90ab61d -size 718086 +oid sha256:6f10bf0d7c2503b4ab7e4aab9e406ce13269c701c0d44a2c6010e815ce85d99d +size 718441 diff --git a/lib/search/indexes/github-docs-ghae-ja-records.json.br b/lib/search/indexes/github-docs-ghae-ja-records.json.br index 468a701340..aedce6c878 100644 --- a/lib/search/indexes/github-docs-ghae-ja-records.json.br +++ b/lib/search/indexes/github-docs-ghae-ja-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4cb8437b42f9ca86358876822ca9ee56aa9d3a60358eda4e339fcebee6a8ae6e -size 435303 +oid sha256:a28a765353dea9442bf8d10ab752927789be014955126806e6b68ffe0944bff8 +size 435213 diff --git a/lib/search/indexes/github-docs-ghae-ja.json.br b/lib/search/indexes/github-docs-ghae-ja.json.br index 004ef8b5dc..f5f726af0b 100644 --- a/lib/search/indexes/github-docs-ghae-ja.json.br +++ b/lib/search/indexes/github-docs-ghae-ja.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:da9ab5b6230a098171f3be7d6016846cd521baf20b22b13ccfe68b785d8a9055 -size 2216332 +oid sha256:5c81e234ee9bda33a25a5417117c4f0a2e59e67957567ab141381626b9784364 +size 2216584 diff --git a/lib/search/indexes/github-docs-ghae-pt-records.json.br b/lib/search/indexes/github-docs-ghae-pt-records.json.br index 4c5f749855..afef372161 100644 --- a/lib/search/indexes/github-docs-ghae-pt-records.json.br +++ b/lib/search/indexes/github-docs-ghae-pt-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8279d7d1b8551f7b07e74e2611cb7530b7c566839e180f71d1d0e8615c4393d5 -size 371544 +oid sha256:51c348556e874bad76d249bd842ecd832e247a50e5c4cd7cd9ac910b337443c1 +size 371401 diff --git a/lib/search/indexes/github-docs-ghae-pt.json.br b/lib/search/indexes/github-docs-ghae-pt.json.br index 3073bebc54..ca9b3836f5 100644 --- a/lib/search/indexes/github-docs-ghae-pt.json.br +++ b/lib/search/indexes/github-docs-ghae-pt.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e485677b896ed0baed07610e2ab9f0ee13c41438e07ebef826e322d4e9ae1bd4 -size 1496286 +oid sha256:a12925f6553c2a90165b786d901df188e48ec191cc0f0709fcfd9ab37161ea7e +size 1496497 From 228582c613228e4fe7cc7e505e5749158d358709 Mon Sep 17 00:00:00 2001 From: Laura Coursen Date: Thu, 2 Sep 2021 14:00:10 -0500 Subject: [PATCH 20/21] Add :nail_care: --- .../removing-sensitive-data-from-a-repository.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/github/authenticating-to-github/keeping-your-account-and-data-secure/removing-sensitive-data-from-a-repository.md b/content/github/authenticating-to-github/keeping-your-account-and-data-secure/removing-sensitive-data-from-a-repository.md index 436b85c1bd..b7098039b2 100644 --- a/content/github/authenticating-to-github/keeping-your-account-and-data-secure/removing-sensitive-data-from-a-repository.md +++ b/content/github/authenticating-to-github/keeping-your-account-and-data-secure/removing-sensitive-data-from-a-repository.md @@ -89,7 +89,7 @@ To illustrate how `git filter-repo` works, we'll show you how to remove your fil 4. Run the following command, replacing `PATH-TO-YOUR-FILE-WITH-SENSITIVE-DATA` with the **path to the file you want to remove, not just its filename**. These arguments will: - Force Git to process, but not check out, the entire history of every branch and tag - Remove the specified file, as well as any empty commits generated as a result - - **Remove some configurations such as the remote url stored in the file `.git/config`**. You may want to back up the config file in advance, so you can restore it when the execution is completed. + - Remove some configurations, such as the remote URL, stored in the *.git/config* file. You may want to back up this file in advance for restoration later. - **Overwrite your existing tags** ```shell $ git filter-repo --invert-paths --path PATH-TO-YOUR-FILE-WITH-SENSITIVE-DATA From 41fc8eec695ab78162ed376a8c8fd2124b05a5fb Mon Sep 17 00:00:00 2001 From: Amy Burns Date: Thu, 2 Sep 2021 16:01:37 -0400 Subject: [PATCH 21/21] Fix incorrect date (#21271) --- data/reusables/codespaces/codespaces-trial-period.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/reusables/codespaces/codespaces-trial-period.md b/data/reusables/codespaces/codespaces-trial-period.md index 732c6d1dc5..cb349ce9fe 100644 --- a/data/reusables/codespaces/codespaces-trial-period.md +++ b/data/reusables/codespaces/codespaces-trial-period.md @@ -1,5 +1,5 @@ {% note %} -**Note:** {% data variables.product.prodname_codespaces %} is free to use for all organizations on a {% data variables.product.prodname_team %} or {% data variables.product.prodname_ghe_cloud %} plan until September 10, 2021. After this trial period ends, you must set a spending limit to continue to use Codespaces. For more information, see "[Managing spending limits for Codespaces](/billing/managing-billing-for-github-codespaces/managing-spending-limits-for-codespaces)." +**Note:** {% data variables.product.prodname_codespaces %} is free to use for all organizations on a {% data variables.product.prodname_team %} or {% data variables.product.prodname_ghe_cloud %} plan until September 13, 2021. After this trial period ends, you must set a spending limit to continue to use Codespaces. For more information, see "[Managing spending limits for Codespaces](/billing/managing-billing-for-github-codespaces/managing-spending-limits-for-codespaces)." {% endnote %}