From 0055b3fe3148b8050472c39eca2e231b114b0b99 Mon Sep 17 00:00:00 2001 From: Sven Greb Date: Sun, 23 Apr 2023 13:14:13 +0200 Subject: [PATCH] `svengreb` GitHub account and `@svengreb` npm package scope migration With the retirement of the "Arctic Ice Studio" personal & Nord project brand [1] this project also moved to the "real-in-person" identity "Sven Greb" both in the context of the repository to the `svengreb` GitHub account [2] and the `@svengreb` npm package scope. During this migration the currently only npm package `@arcticicestudio/remark-preset-lint` [3] has been deprecated in favor of the new and upcoming `@svengreb/remark-preset-lint` [3] package that has been published afterwards. Also the visual representation of this style guide that was published before [6] through the way too outdated and deprecated GitBook [5] major version `2` has now been unpublished and removed. The documentations and references are updated to use the GitHub repository with the Markdown rendering instead for now until a custom website has been implemented using a modern "TechStack" like [Next.js][7]. A simple HTTP redirection page has been published through the `gh-pages` Git branch that redirects to `https://github.com/svengreb/styleguide-markdown` to catch possible users and make them aware of the migration. [1]: https://github.com/orgs/nordtheme/discussions/183#retire-arctic-ice-studio-as-nord-brand [2]: https://github.com/svengreb [3]: https://www.npmjs.com/package/@arcticicestudio/remark-preset-lint [4]: https://www.npmjs.com/package/@svengreb/remark-preset-lint [5]: https://www.gitbook.com [6]: https://arcticicestudio.github.io/styleguide-markdown [7]: https://nextjs.org GH-63 --- .editorconfig | 7 +- .eslintignore | 19 +- .eslintrc.js | 24 +- .gitattributes | 12 +- .github/CODEOWNERS | 19 +- .github/ISSUE_TEMPLATE.md | 13 - .github/ISSUE_TEMPLATE/bugs.md | 86 - .github/ISSUE_TEMPLATE/enhancement.md | 58 - .github/PULL_REQUEST_TEMPLATE.md | 28 - .github/workflows/ci-node.yaml | 8 +- .gitignore | 12 +- .husky/.gitignore | 1 - .husky/pre-commit | 6 +- .mailmap | 7 +- .npmrc | 18 +- .prettierignore | 9 +- .remarkignore | 9 +- .remarkrc.js | 9 +- CHANGELOG.md | 257 - CODE_OF_CONDUCT.md | 61 - CONTRIBUTING.md | 199 - README.md | 64 - assets/images/badge-codestyle.svg | 9 - assets/images/badge.ai | 1549 -- assets/images/badge.svg | 9 - .../remark-preset-lint/repository-hero.ai | 13197 ---------------- .../remark-preset-lint/repository-hero.svg | 5 - assets/images/repository-hero.ai | 12775 --------------- assets/images/repository-hero.svg | 9 - changelog.md | 302 + LICENSE => license | 5 +- lint-staged.config.js | 13 +- package-lock.json | 9313 +++++++++++ package.json | 68 +- .../remark-preset-lint/README.md | 124 - .../remark-preset-lint/index.js | 14 +- .../remark-preset-lint/package.json | 42 +- .../@svengreb/remark-preset-lint/readme.md | 175 + .../remark-preset-lint/rules/blockquotes.js | 9 +- .../remark-preset-lint/rules/code.js | 13 +- .../remark-preset-lint/rules/emphasis.js | 19 +- .../remark-preset-lint/rules/headings.js | 19 +- .../rules/horizontal-rules.js | 7 +- .../remark-preset-lint/rules/links.js | 29 +- .../remark-preset-lint/rules/lists.js | 21 +- .../rules/naming-conventions.js | 9 +- .../remark-preset-lint/rules/paragraphs.js | 7 +- .../remark-preset-lint/rules/raw-html.js | 5 +- .../remark-preset-lint/rules/strings.js | 7 +- .../remark-preset-lint/rules/support.js | 5 +- .../remark-preset-lint/rules/tables.js | 15 +- .../remark-preset-lint/rules/whitespace.js | 19 +- prettier.config.js | 19 +- readme.md | 89 + {src/rules => rules}/accessibility-a11y.md | 8 +- {src/rules => rules}/blockquotes.md | 0 {src/rules => rules}/code.md | 8 +- {src/rules => rules}/comments.md | 0 {src/rules => rules}/emphasis.md | 0 {src/rules => rules}/headings.md | 0 {src/rules => rules}/horizontal-rules.md | 0 {src/rules => rules}/images.md | 24 +- rules/index.md | 115 + {src/rules => rules}/links.md | 20 +- {src/rules => rules}/lists.md | 2 +- {src/rules => rules}/naming-conventions.md | 0 {src/rules => rules}/paragraphs.md | 0 {src/rules => rules}/raw-html.md | 6 +- {src/rules => rules}/strings.md | 4 +- {src/rules => rules}/tables.md | 0 {src/rules => rules}/whitespace.md | 2 +- src/README.md | 1 - src/SUMMARY.md | 136 - src/assets/markdown-logo.png | Bin 31980 -> 0 bytes src/assets/snowflake.png | Bin 1541 -> 0 bytes src/book.json | 20 - src/development/building.md | 24 - src/development/changelog.md | 1 - src/development/code-of-conduct.md | 1 - src/development/contributing.md | 1 - src/development/credits.md | 43 - src/development/requirements.md | 10 - src/rules/index.md | 13 - src/styles/website.css | 35 - 84 files changed, 10266 insertions(+), 29035 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE.md delete mode 100644 .github/ISSUE_TEMPLATE/bugs.md delete mode 100644 .github/ISSUE_TEMPLATE/enhancement.md delete mode 100644 .github/PULL_REQUEST_TEMPLATE.md delete mode 100644 .husky/.gitignore delete mode 100644 CHANGELOG.md delete mode 100644 CODE_OF_CONDUCT.md delete mode 100644 CONTRIBUTING.md delete mode 100644 README.md delete mode 100644 assets/images/badge-codestyle.svg delete mode 100644 assets/images/badge.ai delete mode 100644 assets/images/badge.svg delete mode 100644 assets/images/packages/@arcticicestudio/remark-preset-lint/repository-hero.ai delete mode 100644 assets/images/packages/@arcticicestudio/remark-preset-lint/repository-hero.svg delete mode 100644 assets/images/repository-hero.ai delete mode 100644 assets/images/repository-hero.svg create mode 100644 changelog.md rename LICENSE => license (84%) create mode 100644 package-lock.json delete mode 100644 packages/@arcticicestudio/remark-preset-lint/README.md rename packages/{@arcticicestudio => @svengreb}/remark-preset-lint/index.js (64%) rename packages/{@arcticicestudio => @svengreb}/remark-preset-lint/package.json (84%) create mode 100644 packages/@svengreb/remark-preset-lint/readme.md rename packages/{@arcticicestudio => @svengreb}/remark-preset-lint/rules/blockquotes.js (70%) rename packages/{@arcticicestudio => @svengreb}/remark-preset-lint/rules/code.js (70%) rename packages/{@arcticicestudio => @svengreb}/remark-preset-lint/rules/emphasis.js (63%) rename packages/{@arcticicestudio => @svengreb}/remark-preset-lint/rules/headings.js (80%) rename packages/{@arcticicestudio => @svengreb}/remark-preset-lint/rules/horizontal-rules.js (65%) rename packages/{@arcticicestudio => @svengreb}/remark-preset-lint/rules/links.js (77%) rename packages/{@arcticicestudio => @svengreb}/remark-preset-lint/rules/lists.js (76%) rename packages/{@arcticicestudio => @svengreb}/remark-preset-lint/rules/naming-conventions.js (84%) rename packages/{@arcticicestudio => @svengreb}/remark-preset-lint/rules/paragraphs.js (68%) rename packages/{@arcticicestudio => @svengreb}/remark-preset-lint/rules/raw-html.js (74%) rename packages/{@arcticicestudio => @svengreb}/remark-preset-lint/rules/strings.js (67%) rename packages/{@arcticicestudio => @svengreb}/remark-preset-lint/rules/support.js (88%) rename packages/{@arcticicestudio => @svengreb}/remark-preset-lint/rules/tables.js (66%) rename packages/{@arcticicestudio => @svengreb}/remark-preset-lint/rules/whitespace.js (71%) create mode 100644 readme.md rename {src/rules => rules}/accessibility-a11y.md (53%) rename {src/rules => rules}/blockquotes.md (100%) rename {src/rules => rules}/code.md (96%) rename {src/rules => rules}/comments.md (100%) rename {src/rules => rules}/emphasis.md (100%) rename {src/rules => rules}/headings.md (100%) rename {src/rules => rules}/horizontal-rules.md (100%) rename {src/rules => rules}/images.md (61%) create mode 100644 rules/index.md rename {src/rules => rules}/links.md (97%) rename {src/rules => rules}/lists.md (99%) rename {src/rules => rules}/naming-conventions.md (100%) rename {src/rules => rules}/paragraphs.md (100%) rename {src/rules => rules}/raw-html.md (84%) rename {src/rules => rules}/strings.md (92%) rename {src/rules => rules}/tables.md (100%) rename {src/rules => rules}/whitespace.md (99%) delete mode 100644 src/README.md delete mode 100644 src/SUMMARY.md delete mode 100644 src/assets/markdown-logo.png delete mode 100644 src/assets/snowflake.png delete mode 100644 src/book.json delete mode 100644 src/development/building.md delete mode 100644 src/development/changelog.md delete mode 100644 src/development/code-of-conduct.md delete mode 100644 src/development/contributing.md delete mode 100644 src/development/credits.md delete mode 100644 src/development/requirements.md delete mode 100644 src/rules/index.md delete mode 100644 src/styles/website.css diff --git a/.editorconfig b/.editorconfig index 6ae8b13..f160665 100644 --- a/.editorconfig +++ b/.editorconfig @@ -1,6 +1,5 @@ -# Copyright (c) 2018-present Arctic Ice Studio -# Copyright (c) 2018-present Sven Greb -# This source code is licensed under the MIT license found in the LICENSE file. +# Copyright (c) 2016-present Sven Greb +# This source code is licensed under the MIT license found in the license file. # Configurations for EditorConfig. # See https://editorconfig.org/#file-format-details for more details. @@ -16,7 +15,7 @@ end_of_line = lf indent_size = 2 indent_style = space insert_final_newline = true -max_line_length = 120 +max_line_length = 160 trim_trailing_whitespace = true # +-----------+ diff --git a/.eslintignore b/.eslintignore index d61a3d1..9b3cc63 100644 --- a/.eslintignore +++ b/.eslintignore @@ -1,11 +1,14 @@ -# Copyright (c) 2018-present Arctic Ice Studio -# Copyright (c) 2018-present Sven Greb -# This source code is licensed under the MIT license found in the LICENSE file. +# Copyright (c) 2016-present Sven Greb +# This source code is licensed under the MIT license found in the license file. -# Path match pattern to ignore specific files and directories. -# See https://eslint.org/docs/user-guide/configuring/ignoring-code for more details. +# Path match pattern to ignore (i.e. not lint) certain files and folders. +# References: +# 1. https://eslint.org/docs/latest/use/configure/ignore -build/* -**/node_modules/* -!.eslintrc.js +node_modules/ + +# Explicitly include specific "dotfiles". +# ESLint automatically applies ignore pattern for "dotfiles" by default to prevent accidentally lint over paths like +# `.git` or any other critical paths. +!**/.eslintrc.js !.remarkrc.js diff --git a/.eslintrc.js b/.eslintrc.js index 49b2412..f1d8099 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -1,22 +1,32 @@ /* - * Copyright (c) 2018-present Arctic Ice Studio - * Copyright (c) 2018-present Sven Greb - * This source code is licensed under the MIT license found in the LICENSE file. + * Copyright (c) 2016-present Sven Greb + * This source code is licensed under the MIT license found in the license file. */ /** * Configurations for ESLint. - * - * @see https://eslint.org/docs/user-guide/configuring + * @see https://eslint.org/docs/latest/use/configure + * @see https://eslint.org/docs/latest/use/configure/#using-configuration-files + * @see https://eslint.org/docs/latest/use/configure/#specifying-environments + * @see https://eslint.org/docs/latest/rules */ module.exports = { + root: true, extends: [ "@arcticicestudio/eslint-config-base", /* * Enable support for projects using Prettier. - * Note that this must always be placed after the `@arcticicestudio/eslint-config-base` preset to take precedence, - * otherwise it won't prevent errors due to useless and possibly conflicting rules! + * Note that this must always be placed after the `@arcticicestudio/eslint-config-base` preset to take precedence, otherwise it won't prevent errors + * due to useless and possibly conflicting rules! */ "@arcticicestudio/eslint-config-base/prettier", ], + overrides: [ + { + files: ["*.js"], + rules: { + "capitalized-comments": "off", + }, + }, + ], }; diff --git a/.gitattributes b/.gitattributes index 48f4b56..314fa3f 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,9 +1,7 @@ -# Copyright (c) 2018-present Arctic Ice Studio -# Copyright (c) 2018-present Sven Greb -# This source code is licensed under the MIT license found in the LICENSE file. +# Copyright (c) 2016-present Sven Greb +# This source code is licensed under the MIT license found in the license file. # Configuration to define attributes per path. -# # References: # 1. https://git-scm.com/docs/gitattributes # 2. https://git-scm.com/book/en/v2/Customizing-Git-Git-Attributes#Keyword-Expansion @@ -11,9 +9,3 @@ # Automatically perform line feed (LF) normalization for files detected as text and # leave all files detected as binary untouched. * text=auto eol=lf - -# +--------+ -# + Assets + -# +--------+ -*.ai binary -*.png binary diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 4f0f40e..84b72ae 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -1,15 +1,14 @@ -# Copyright (c) 2018-present Arctic Ice Studio -# Copyright (c) 2018-present Sven Greb -# This source code is licensed under the MIT license found in the LICENSE file. +# Copyright (c) 2016-present Sven Greb +# This source code is licensed under the MIT license found in the license file. -# Configuration for the GitHub feature to automatically request reviews from the code owners when a pull request -# changes any owned files. +# Configuration for the GitHub feature to automatically request reviews from the code owners +# when a pull request changes any owned files. # # References: -# 1. https://docs.github.com/en/github/creating-cloning-and-archiving-repositories/about-code-owners +# 1. https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners#codeowners-file-location # 2. https://github.com/blog/2392-introducing-code-owners -# +--------------------+ -# + Default Code Owner + -# +--------------------+ -* @arcticicestudio @svengreb +# +----------------------+ +# + Core Team Code Owner + +# +----------------------+ +* @svengreb diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md deleted file mode 100644 index a7787de..0000000 --- a/.github/ISSUE_TEMPLATE.md +++ /dev/null @@ -1,13 +0,0 @@ - - -> **Please read the [contribution guidelines](https://github.com/arcticicestudio/styleguide-markdown/blob/main/CONTRIBUTING.md) before filling out this issue template**. - -## [Please follow one of the issue templates](https://github.com/arcticicestudio/styleguide-markdown/issues/new/choose) - -To keep the backlog clean and actionable, issues should be opened using [one the provided issue templates](https://github.com/arcticicestudio/styleguide-markdown/issues/new/choose) to help maintainers and the community to understand it, find related reports and to resolve tickets faster. - -### Support - -If you got a question or need help with any aspect of the project feel free to ask and ensure to read the [extensive project documentations](https://arcticicestudio.github.io/styleguide-markdown). - -You can also search for already opened and related issue using the search for the [“question“](https://github.com/arcticicestudio/styleguide-markdown/labels/type-question) issue label. diff --git a/.github/ISSUE_TEMPLATE/bugs.md b/.github/ISSUE_TEMPLATE/bugs.md deleted file mode 100644 index a0e99db..0000000 --- a/.github/ISSUE_TEMPLATE/bugs.md +++ /dev/null @@ -1,86 +0,0 @@ ---- -name: Bug Report -about: Report a bug that is caused by the code in this repository ---- - - - -> **Please read the [contribution guidelines](https://github.com/arcticicestudio/styleguide-markdown/blob/main/CONTRIBUTING.md) before filling out this issue template**. - -## Prerequisites - -This section and the instructions in the sections below are only part of this issue template. Please ensure to **delete this whole section, all pre-filled instructions of the sections below and sections you have not filled out before submitting** to ensure a clear structure and overview. - -Please do your best to provide as much information as possible and use a clear and descriptive title for your bug report to help maintainers and the community understand and reproduce the behavior, find related reports and to resolve the ticket faster. - -- **Ensure the bug has not already been reported by using the [GitHub Issues search](https://github.com/arcticicestudio/styleguide-markdown/issues)** — check if this enhancement has already been suggested. If it has **and the issue is still open**, add your additions as comment to the existing issue instead of opening a new one. If you find a closed issue that seems to be similar to this one, include a link to the original issue in the [metadata head](#metadata-head) section of this issue. -- **Ensure the bug is reproducible and has not already been fixed** — use the [latest version](https://github.com/arcticicestudio/styleguide-markdown/releases/latest) and [`main`](https://github.com/arcticicestudio/styleguide-markdown/tree/main) branch. - -## Metadata Head - -The metadata head can be added to the top of the issue as [Markdown text quote](https://docs.github.com/en/github/writing-on-github/basic-writing-and-formatting-syntax) containing the the ID of other related issues. - -> Related issues: - -## Description - -Describe the bug as in many relevant details as possible with a clear and concise description. Ensure to fill in the [steps to reproduce](#steps-to-reproduce) it. - -### Steps to Reproduce - -1. Step One -2. Step Two -3. ... - -### Expected Behavior - -What you expect to happen? - -### Actual Behavior - -What actually happens? - -## Example - -Provide a [MCVE - The Minimal, Complete, and Verifiable Example](https://github.com/arcticicestudio/styleguide-markdown/blob/main/CONTRIBUTING.md#mcve) - -**This is a optional section, but it can drastically increase the speed at which this issue can be processed since it takes away the time-consuming reconstruction to reproduce the bug.** -The recommended way is to upload it as [Gist](https://gist.github.com) or new repository to GitHub, but of course you can [attach it to this issue](https://docs.github.com/en/github/managing-your-work-on-github/file-attachments-on-issues-and-pull-requests), use any free file hosting service or paste the code in [Markdown code blocks](https://docs.github.com/en/github/writing-on-github/basic-writing-and-formatting-syntax) into this issue. - -## Environment and Versions - -- What is the version of styleguide-markdown you are using? -- What is the name and the version of your OS? - - Have you tried to reproduce it on different OS environments and if yes is the behavior the same for all? -- If the problem is related to the runtime of the project (e.g. [Node.js](https://nodejs.org) or [Go](https://golang.org)) please provide the version you're running. - - Are you using any additional CLI arguments to run the project? -- What is the version of the build tool (e.g. [npm](https://www.npmjs.com) or [Yarn](https://yarnpkg.com)) you are running? - - Are you using any additional CLI arguments to start the build tool task/script other than defined by the project? - -If you've installed [Node.js](https://nodejs.org) on your system you can run [envinfo](https://www.npmjs.com/package/envinfo) via [npx](https://blog.npmjs.org/post/162869356040/introducing-npx-an-npm-package-runner) which will print environment information that help the the community to better reproduce the bug. - -Run the following command **from within the project root** and paste the output in the code block below: `npx envinfo --system --system --IDEs --languages --binaries --markdown --clipboard` - -```md -Paste output of the command here. -``` - -## Stack Trace and Error Messages - -```raw -Paste the full stack trace, error messages or the logfile here. -``` - -... or [attach them as files](https://help.github.com/articles/file-attachments-on-issues-and-pull-requests) to this issue. - -## Additional Context - -Add any other context, screenshots or screencasts which are relevant for this issue. - -## References - -Add any other references and links which are relevant for this issue. - -## Potential Solution - -Maybe include the lines of code that you have identified as causing the bug or references to other projects where this bug has already been reported. diff --git a/.github/ISSUE_TEMPLATE/enhancement.md b/.github/ISSUE_TEMPLATE/enhancement.md deleted file mode 100644 index 1d776fc..0000000 --- a/.github/ISSUE_TEMPLATE/enhancement.md +++ /dev/null @@ -1,58 +0,0 @@ ---- -name: Enhancement Suggestions -about: Submit an enhancement suggestion for new features or minor improvements to existing functionality ---- - - - -> **Please read the [contribution guidelines](https://github.com/arcticicestudio/styleguide-markdown/blob/main/CONTRIBUTING.md) before filling out this issue template**. - -## Prerequisites - -This section and the instructions in the sections below are only part of this issue template. Please ensure to **delete this whole section, all pre-filled instructions of the sections below and sections you have not filled out before submitting** to ensure a clear structure and overview. - -Please do your best to provide as much information as possible and use a clear and descriptive title for your enhancement suggestion to help maintainers and the community understand and reproduce the behavior, find related reports and to resolve the ticket faster. - -- **Ensure the enhancement has not already been reported by using the [GitHub Issues search](https://github.com/arcticicestudio/styleguide-markdown/issues)** — check if this enhancement has already been suggested. If it has **and the issue is still open**, add your additions as comment to the existing issue instead of opening a new one. If you find a closed issue that seems to be similar to this one, include a link to the original issue in the [metadata head](#metadata-head) section of this issue. -- **Check if the enhancement has already been implemented** — use the [latest version](https://github.com/arcticicestudio/styleguide-markdown/releases/latest) and [`main`](https://github.com/arcticicestudio/styleguide-markdown/tree/main) branch to ensure that the feature or improvement has not already been added. - -## Metadata Head - -The metadata head can be added to the top of the issue as [Markdown text quote](https://docs.github.com/en/github/writing-on-github/basic-writing-and-formatting-syntax) containing the ID of other related issues. - -> Related issues: - -## Description - -Describe the enhancement in many relevant details as possible. - -### Benefits - -Add specific use-cases and explain why this feature or improvement would be useful and maybe include references to related known problems or bug reports. - -### Possible Drawbacks - -Describe possible negative impacts regarding e.g. functionality or usability. - -### Alternative Solutions - -If you've considered alternative features or solutions please describe it clearly and concise. - -## Example - -Provide a [MCVE - The Minimal, Complete, and Verifiable Example](https://github.com/arcticicestudio/styleguide-markdown/blob/main/CONTRIBUTING.md#mcve) - -**This is a optional section, but it can drastically increase the speed at which this issue can be processed since it takes away the time-consuming reconstruction to reproduce the enhancement.** -The recommended way is to upload it as [Gist](https://gist.github.com) or new repository to GitHub, but of course you can [attach it to this issue](https://docs.github.com/en/github/managing-your-work-on-github/file-attachments-on-issues-and-pull-requests), use any free file hosting service or paste the code in [Markdown code blocks](https://docs.github.com/en/github/writing-on-github/basic-writing-and-formatting-syntax) into this issue. - -## Additional Context - -Add any other context, screenshots or screencasts which are relevant for this issue. - -## References - -Add any other references and links which are relevant for this issue. - -## Potential Solution - -Maybe include references to other projects where this enhancement already exists. diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md deleted file mode 100644 index c0707c9..0000000 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ /dev/null @@ -1,28 +0,0 @@ - - -> **Please read the [contribution guidelines](https://github.com/arcticicestudio/styleguide-markdown/blob/main/CONTRIBUTING.md) before filling out this pull request template**. - -## Prerequisites - -This section and the instructions in the sections below are only part of this pull request template. Please ensure to **delete this whole section, all pre-filled instructions of the sections below and sections you have not filled out before submitting** to ensure a clear structure and overview. - -Please do your best to provide as much information as possible and use a clear and descriptive title for your enhancement suggestion or bug fix to help maintainers and the community understand and reproduce the behavior, find related pull requests and to merge it faster. - -- **Ensure the pull request has not already been submitted by using the [GitHub Pull Request search](https://github.com/arcticicestudio/styleguide-markdown/pulls)** — check if this enhancement or bug fix has already been suggested. If it has **and the pull request is still open**, add your additions as comment or [suggest a change](https://docs.github.com/en/github/collaborating-with-issues-and-pull-requests/incorporating-feedback-in-your-pull-request#applying-a-suggested-change) to the existing pull request instead of opening a new one. If you find a closed pull request that seems to be similar to this one, include a link to the original pull request in the [metadata head](#metadata-head) section of this new pull request. -- **Ensure to adhere to the [pull request contribution guidelines](https://github.com/arcticicestudio/styleguide-markdown/blob/main/CONTRIBUTING.md#pull-requests)**, especially the one for tests and documentations. -- **Check if the enhancement has already been implemented or bug already fixed** — use the [latest version](https://github.com/arcticicestudio/styleguide-markdown/releases/latest) and [`main`](https://github.com/arcticicestudio/styleguide-markdown/tree/main) branch to ensure that the enhancement or bug fix has not already been added. - -## Metadata Head - -The metadata head should be added to the top of the pull request as [Markdown text quote](https://docs.github.com/en/github/writing-on-github/basic-writing-and-formatting-syntax) containing the [GitHub issue keyword(s)](https://docs.github.com/en/github/managing-your-work-on-github/linking-a-pull-request-to-an-issue) to link to the related enhancements suggestions (`Closes`) or bug reports (`Fixes`). You can add additional details like dependencies to other pull requests and the order it needs to be merged. - -> Closes ISSUE_ID -> Must be merged **after**/**before** ISSUE_ID - -## Description - -Describe the changes as in many relevant details as possible. If this is a enhancement suggestion add specific use-cases and explain why this feature or improvement would be useful. If this is a bug fix ensure to provide a _before/after_ comparison by describing the current behavior and the new behavior. - -## References - -Add any other references and links which are relevant for this pull request. diff --git a/.github/workflows/ci-node.yaml b/.github/workflows/ci-node.yaml index 23d7610..40f55ef 100644 --- a/.github/workflows/ci-node.yaml +++ b/.github/workflows/ci-node.yaml @@ -1,8 +1,10 @@ -# Copyright (c) 2018-present Sven Greb +# Copyright (c) 2016-present Sven Greb # This source code is licensed under the MIT license found in the LICENSE file. # GitHub Action Workflow for continuous integration jobs. -# See https://docs.github.com/en/actions and https://github.com/features/actions for more details. +# References: +# 1. https://docs.github.com/en/actions +# 2. https://github.com/features/actions name: ci-node on: @@ -12,7 +14,6 @@ on: - "**.json" - "**.md" - "**.yaml" - - "**.yml" branches: - main tags: @@ -23,7 +24,6 @@ on: - "**.json" - "**.md" - "**.yaml" - - "**.yml" jobs: lint: diff --git a/.gitignore b/.gitignore index 6483b71..b080a12 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,5 @@ -# Copyright (c) 2018-present Arctic Ice Studio -# Copyright (c) 2018-present Sven Greb -# This source code is licensed under the MIT license found in the LICENSE file. +# Copyright (c) 2016-present Sven Greb +# This source code is licensed under the MIT license found in the license file. # Path match pattern to intentionally ignore untracked files and directories. # See https://git-scm.com/docs/gitignore for more details. @@ -8,9 +7,4 @@ # +---------+ # + Node.js + # +---------+ -**/node_modules/ - -# +-------------------+ -# + Project Structure + -# +-------------------+ -build/ +node_modules/ diff --git a/.husky/.gitignore b/.husky/.gitignore deleted file mode 100644 index 31354ec..0000000 --- a/.husky/.gitignore +++ /dev/null @@ -1 +0,0 @@ -_ diff --git a/.husky/pre-commit b/.husky/pre-commit index f906b87..36b4f73 100755 --- a/.husky/pre-commit +++ b/.husky/pre-commit @@ -1,11 +1,9 @@ #!/bin/sh -# Copyright (c) 2018-present Arctic Ice Studio -# Copyright (c) 2018-present Sven Greb -# This source code is licensed under the MIT license found in the LICENSE file. +# Copyright (c) 2016-present Sven Greb +# This source code is licensed under the MIT license found in the license file. # Git "pre-commit" hook for husky. -# # References: # 1. https://github.com/typicode/husky # 2. https://git-scm.com/docs/githooks#_pre_commit diff --git a/.mailmap b/.mailmap index 7cd15fb..df88d05 100644 --- a/.mailmap +++ b/.mailmap @@ -1,9 +1,8 @@ -# Copyright (c) 2018-present Arctic Ice Studio -# Copyright (c) 2018-present Sven Greb -# This source code is licensed under the MIT license found in the LICENSE file. +# Copyright (c) 2016-present Sven Greb +# This source code is licensed under the MIT license found in the license file. # Configuration for the Git mail mapping feature to coalesce together commits by the same person in the shortlog, # where their name and/or email address was spelled differently or has been changed. # See https://git-scm.com/docs/git-shortlog#_mapping_authors for more details. -Arctic Ice Studio Sven Greb +Sven Greb diff --git a/.npmrc b/.npmrc index 5671c7d..a717f65 100644 --- a/.npmrc +++ b/.npmrc @@ -1,20 +1,18 @@ -# Copyright (c) 2018-present Arctic Ice Studio -# Copyright (c) 2018-present Sven Greb -# This source code is licensed under the MIT license found in the LICENSE file. +# Copyright (c) 2016-present Sven Greb +# This source code is licensed under the MIT license found in the license file. -# npm configurations. +# Configurations for npm. # See https://docs.npmjs.com/cli/v7/configuring-npm/npmrc for more details. # Only use a lockfile for single-consumer projects, like applications, but not for multi-consumer projects like # libraries. -# It can helps to pin dependency versions, improves the security through integrity checksums, prevents possible errors +# It helps to pin dependency versions, improves the security through integrity checksums, prevents possible errors # caused by updated transitive dependencies and allows to get deterministic build results, but it can hide problems in # multi-consumer projects when any later versions of a used dependency, or its transitive dependencies, is not # compatible with the own project anymore. -# See https://github.com/svengreb/tmpl/issues/70 for more details. -package-lock=false +package-lock=true -# Resolve to the latest minor and patch updates. -# Enable to automatically pin dependencies to exact versions instead of resolving to latest minor and patch updates. +# Do not resolve to the latest minor and patch updates. +# Automatically pin dependencies to exact versions instead of resolving to latest minor and patch updates. # This prevents possible errors caused by updated transitive dependencies. -save-exact=false +save-exact=true diff --git a/.prettierignore b/.prettierignore index 2e9c571..cdb9786 100644 --- a/.prettierignore +++ b/.prettierignore @@ -1,9 +1,8 @@ -# Copyright (c) 2018-present Arctic Ice Studio -# Copyright (c) 2018-present Sven Greb -# This source code is licensed under the MIT license found in the LICENSE file. +# Copyright (c) 2016-present Sven Greb +# This source code is licensed under the MIT license found in the license file. # Path match pattern to ignore (i.e. not reformat) certain files and folders. # See https://prettier.io/docs/en/ignore for more details. -build/* -**/node_modules/* +.husky/_/ +node_modules/ diff --git a/.remarkignore b/.remarkignore index f0936fe..1dff49d 100644 --- a/.remarkignore +++ b/.remarkignore @@ -1,10 +1,7 @@ -# Copyright (c) 2018-present Arctic Ice Studio -# Copyright (c) 2018-present Sven Greb -# This source code is licensed under the MIT license found in the LICENSE file. +# Copyright (c) 2016-present Sven Greb +# This source code is licensed under the MIT license found in the license file. # Path match pattern to ignore when searching for files. # See https://github.com/unifiedjs/unified-engine/blob/HEAD/doc/ignore.md for more details. -# Important: Directories must have no "asterisk" wildcard character at the path end, -# otherwise the pattern won't match! -**/node_modules/ +node_modules/ diff --git a/.remarkrc.js b/.remarkrc.js index 4d33405..5d22bb7 100644 --- a/.remarkrc.js +++ b/.remarkrc.js @@ -1,17 +1,16 @@ /* - * Copyright (c) 2018-present Arctic Ice Studio - * Copyright (c) 2018-present Sven Greb - * This source code is licensed under the MIT license found in the LICENSE file. + * Copyright (c) 2016-present Sven Greb + * This source code is licensed under the MIT license found in the license file. */ /** * Configurations for remark-lint. - * * @see https://github.com/remarkjs/remark-lint + * @see https://remark.js.org */ module.exports = { plugins: [ - "./packages/@arcticicestudio/remark-preset-lint/index.js", + "./packages/@svengreb/remark-preset-lint/index.js", /* Disabled to suppress warnings about duplicate "Example" headings. */ ["remark-lint-no-duplicate-headings", false], ], diff --git a/CHANGELOG.md b/CHANGELOG.md deleted file mode 100644 index a2c0e85..0000000 --- a/CHANGELOG.md +++ /dev/null @@ -1,257 +0,0 @@ -

- -

- -

- -

Changelog for the official Arctic Ice Studio Markdown code style.

- - - -# 0.4.0 - -![Release Date: 2021-04-06](https://img.shields.io/static/v1?style=flat-square&label=Release%20Date&message=2021-04-06&colorA=4c566a&colorB=88c0d0) [![Project Board](https://img.shields.io/static/v1?style=flat-square&label=Project%20Board&message=0.4.0&logo=github&logoColor=eceff4&colorA=4c566a&colorB=88c0d0)](https://github.com/arcticicestudio/styleguide-markdown/projects/5) [![Milestone](https://img.shields.io/static/v1?style=flat-square&label=Milestone&message=0.4.0&logo=github&logoColor=eceff4&colorA=4c566a&colorB=88c0d0)](https://github.com/arcticicestudio/styleguide-markdown/milestone/3) - -⇅ [Show all commits][gh-compare-tag-v0.2.0_v0.4.0] - -> Detailed information can be found in the [project documentation][docs]. - -This version changes this repository into a [monorepo][trbdev-monorepo], deprecates the [remark-preset-lint-arcticicestudio][gh-arcticicestudio/remark-preset-lint-arcticicestudio] package in favour of the new [@arcticicestudio/remark-preset-lint][gh-tree-pkgs-@ais-remark-preset-lint] package and adds support for [remark `13.0.0`][gh-remarkjs/remark-rel-v13.0.0]. - -## Feature - -
-Monorepo with remark packages — #10 ⇄ #12 (⊶ 0c21fabc) - -↠ Before this change this repository only contained the actual style guide documentation while specific projects that implement the guidelines for linters and code style analyzer lived in separate repositories. This was the best approach for modularity and a small and clear code base, but it increased the maintenance overhead by `1(n)` since changes to the development workflow or toolbox, general project documentations as well as dependency management required changes in every repository with dedicated tickets/issues and PRs. In particular, Node packages require frequent dependency management due to their fast development cycles to keep up-to-date with the latest package changes like (security) bug fixes. - -This style guide was implemented by the [remark-preset-lint-arcticicestudio][gh-arcticicestudio/remark-preset-lint-arcticicestudio] Node package that lived in its own repository. The development workflow was clean using most of GitHub's awesome features like project boards, _codeowner_ assignments, issue & PR automation and so on, but changes often required multiple actions when packages depend on each other or they use the same development tooling and documentation standards. - -### Monorepo Comparison - -[Monorepos][trbdev-monorepo] are a fantastic way to manage such a project structure, but there are also some points that must be taken into account: - -- **No more scoped code** — the developer experience with Git is slightly worse because commits can contains changes to multiple scopes of the code. Since there is only a “transparent separation” of code, that was previously located in a dedicated repository but is not aggregated into a parent (e.g. `packages`) with other modules, commits can now contain changes to multiple code scopes spread over the entire code base. -- **No more assignment of commits to single modules** — like described in the bullet point above, commit can contain changes to multiple modules, it is harder to detect which commit targeted a specific module. -- **Steeper learning curve for new contributors** — in a dedicated repository that only hosts a specific module it is easier for new developers to contribute to the project, but in a monorepo they might need to change code in multiple places within other modules or the root code/documentation of the entire project. -- **Uniform version number** — in order to keep conform to [SemVer][], the entire project must use a uniform version number. This means that a module that has not been changed since the last version must also be incremented in order to keep compatible with the other modules. - Using different version numbers prefixed/suffixed with an individual version number **is a not an option**, **increases the maintenance overhead** and **and drastically reduces the project overview and quality**! This would result in multiple Git tags on the `main` branch as well as “empty” changelogs and release notes with placeholder logs that only refer to changes of other modules. - -### Project Future - -Even though a _monorepo_ required some special thoughts, it also comes with a lot of benefits and makes sense **for specific project modules that are slightly coupled** and where using dedicated repositories only increases the maintenance overhead **when changes must be reflected in multiple modules anyway**. - -In order to reduce the maintenance overhead, the [remark-preset-lint-arcticicestudio][gh-arcticicestudio/remark-preset-lint-arcticicestudio] Node package has been migrated into this repository by adapting to [Yarn workspaces][yarn-docs-ws]. This simplifies the development tooling setup and allows to use a unified documentation base as well as a smoother development and testing workflow. - -This change also implies that the root of the repository is the main package for the entire project setup including shared development dependencies, tools and documentations while the packages only contain specific configurations and (dev)dependencies. - -### Scoped Packages - -Before [remark-preset-lint-arcticicestudio][gh-arcticicestudio/remark-preset-lint-arcticicestudio] was not a [scoped package][npm-docs-scopes] but suffixed with `-arcticicestudio`. To simplify the naming and improving the usage of user/organization specific packages, it is now scoped to `@arcticicestudio` resulting in the new name `@arcticicestudio/remark-preset-lint`. -The currently released public version has been deprecated using the [`npm deprecate` command][npm-docs-cli-depr] where the provided message points out to migrate to the new scoped packages. - -### Versioning - -The style guide itself and all packages use a shared/fixed/locked version. This helps all packages to keep in sync and ensure the compatibility with the latest style guide version. - -
- -
-Update to remark 13.0.0 (micromark) — #28 ⇄ #29 (⊶ 9ff968f6) - -

- - -↠ [remark 13.0.0][gh-remarkjs/remark-rel-v13.0.0] is a giant change for remark that replaced the 5+ year old internals with a new low-level parser called [micromark][gh-micromark/micromark]. It comes with 100% CommonMark (and GFM as an extension) compliance and is a good base for the future of remark and Markdown. - -### Migration - -This projects uses remark through the [remark-lint][gh-remarkjs/remark-lint] plugin, which introduced support for remark `13.0.0` in its [package version `8.0.0`][gh-remarkjs/remark-lint-rel-v8.0.0], and the [remark-cli][gh-remarkjs/remark] package, which comes with support for remark `13.0.0` in its [package version `9.0.0`][gh-remarkjs/remark-rel-remark-cli@9.0.0]. - -- **Updated `remark-cli`** — bumped minimum version from [`5.0.0` to `9.0.0`][gh-remarkjs/remark-comp-remark-cli@5.0.0_remark-cli@9.0.0] -- **Updated `remark-lint`** — bumped minimum version from [`6.0.1` to `8.0.0`][gh-remarkjs/remark-lint-comp-6.0.0_8.0.0] -- **Updated all `remark-lint-*` packages** — the [`@arcticicestudio/remark-preset-lint`][gh-tree-pkgs-@ais-remark-preset-lint] packages supports all `remark-lint-*` core rule packages whose minimum versions are now bumped to the major version that introduced support for remark `13.0.0`. -- **Added [`remark-gfm` plugin][gh-remarkjs/remark-gfm]** — the support for [GitHub Flavored Markdown][gfm] has been moved into the `remark-gfm` plugin. -- **Added [`remark-footnotes` plugin][gh-remarkjs/remark-footnotes]** — adds support for [Pandoc][] footnotes. -- **Validated the code base with new linter rules** — Run checks with updated packages afterwards to fix and improve results found by linters. - -### Features - -Because most package versions that are currently used were not up-to-date before, support for new features like core rules has also been added: - -- **Support for [`remark-lint-no-duplicate-defined-urls`][gh-remarkjs/remark-lint-tree-pkgs-remark-lint-no-duplicate-defined-urls]** — the core rule warns when definitions define the same URL. -- **Support for [`remark-lint-no-unneeded-full-reference-image`][gh-remarkjs/remark-lint-tree-pkgs-remark-lint-no-unneeded-full-reference-image]** — the core rule warns when full reference images are used that could be collapsed. -- **Support for [`remark-lint-no-unneeded-full-reference-link`][gh-remarkjs/remark-lint-tree-pkgs-remark-lint-no-unneeded-full-reference-link]** — the core rule warns when full reference links are used that could be collapsed. - -
- -## Improvements - -
-Plain text format for license file — #6 (⊶ a6f53c13) by @amayer5125 - -↠ Refactored the `LICENSE.md` file to use plain text instead of Markdown syntax and removed the `.md` file extension leaving the file named as `LICENSE`. -Therefore the linting ignore statements have also been removed as well as adjusting the actual text to match exactly the one of the [MIT license][choselic-mit]. -This allows GitHub to display “MIT“ as the license instead of just showing a “View license“ placeholder text. - -
- -
-“tmpl“ template repository migration — #11 ⇄ #13 (⊶ 47660393) - -

- -↠ Migrated the project setup, structure and development workflow [from version 0.9.0][svengreb/tmpl-rl-v0.9.0] of the [“tmpl“ template repository][svengreb/tmpl]. -Additionally specific assets like the repository hero image have been replaced and documentations like the _README_ and GitHub issue/PR templates adjusted. - -
- -## Bug Fixes - -
-Invalid list entry character in documentation summary — #5 (⊶ 2fe4ad65) by @amayer5125 - -↠ Changed the invalid list entry character from `*` to `-` in the summary of the documentation to adhere to the style guide and fix failing CI builds. - -
- -## Tasks - -
-Update remark URLs to reflect mastermain branch renaming — #7 (⊶ 23130286) by @outloudvi - -↠ Updated the default branch name from `master` to `main` which is a global change due to recent humanity movements. Also see #21 (or the entry in this version changelog) for more details about how this projects also adapted this change. - -
- -
-GitHub Flow migration — #19 ⇄ #20 (⊶ cf6f3fa2) - -

- -> Subtask of arcticicestudio/styleguide-git#9 - -↠ Adapted to [GitHub Flow][gh-guides-flow] like documented in detail in the main task issue arcticicestudio/styleguide-git#9. - -
- -
-From master to main — #21 ⇄ #22 (⊶ c7946f2e) - -

- -> Subtask of arcticicestudio/styleguide-git#11 - -↠ Adapted to the [default branch renaming from `master` to `main`][gh-github/renaming] like documented in detail in the main task issue arcticicestudio/styleguide-git#11. - -
- -# 0.2.0 - -![Release Date: 2018-11-15](https://img.shields.io/static/v1?style=flat-square&label=Release%20Date&message=2018-11-15&colorA=4c566a&colorB=88c0d0) [![Project Board](https://img.shields.io/static/v1?style=flat-square&label=Project%20Board&message=0.2.0&logo=github&logoColor=eceff4&colorA=4c566a&colorB=88c0d0)](https://github.com/arcticicestudio/styleguide-markdown/projects/3) [![Milestone](https://img.shields.io/static/v1?style=flat-square&label=Milestone&message=0.2.0&logo=github&logoColor=eceff4&colorA=4c566a&colorB=88c0d0)](https://github.com/arcticicestudio/styleguide-markdown/milestone/2) - -⇅ [Show all commits][gh-compare-tag-v0.1.0_v0.2.0] - -> Detailed information can be found in the [project documentation][docs]. - -## Improvements - -### Rules - -
-Change unordered marker from asterisk to dash — #3 ⇄ #4 (⊶ fea20a63) - -↠ Changed [unordered list marker][docs-unordered-marker] from asterisk `*` to dash `-` because asterisks can be confused for bold/italic markers. This also aligns with the default format of Prettier. - -
- -# 0.1.0 - -![Release Date: 2018-02-15](https://img.shields.io/static/v1?style=flat-square&label=Release%20Date&message=2018-02-15&colorA=4c566a&colorB=88c0d0) [![Project Board](https://img.shields.io/static/v1?style=flat-square&label=Project%20Board&message=0.1.0&logo=github&logoColor=eceff4&colorA=4c566a&colorB=88c0d0)](https://github.com/arcticicestudio/styleguide-markdown/projects/2) [![Milestone](https://img.shields.io/static/v1?style=flat-square&label=Milestone&message=0.1.0&logo=github&logoColor=eceff4&colorA=4c566a&colorB=88c0d0)](https://github.com/arcticicestudio/styleguide-markdown/milestone/1) - -⇅ [Show all commits][gh-compare-tag-init_v0.1.0] - -> Detailed information can be found in the [project documentation][docs]. - -## Features - -### Rules - -
-Change unordered marker from asterisk to dash — #1 ⇄ #2 (⊶ 261fe4cb) - -↠ Added the initial style guide with the [comprehensive base rule set][docs-rules] with support for [GitHub Flavored Markdown][gfm] which is based on the [CommonMark][] specification. - -
- -

- -

Copyright © 2018-present Arctic Ice Studio and Sven Greb

- -

- - - - - - - -[docs]: https://arcticicestudio.github.io/styleguide-markdown -[gfm]: https://github.github.com/gfm - - - -[commonmark]: http://commonmark.org -[docs-rules]: https://arcticicestudio.github.io/styleguide-markdown/rules/index.html -[gh-compare-tag-init_v0.1.0]: https://github.com/arcticicestudio/styleguide-markdown/compare/e894a349...v0.1.0 - - - -[docs-unordered-marker]: https://arcticicestudio.github.io/styleguide-markdown/rules/lists.html#unordered-marker -[gh-compare-tag-v0.1.0_v0.2.0]: https://github.com/arcticicestudio/styleguide-markdown/compare/v0.1.0...v0.2.0 - - - -[choselic-mit]: https://choosealicense.com/licenses/mit -[gh-arcticicestudio/remark-preset-lint-arcticicestudio]: https://github.com/arcticicestudio/remark-preset-lint-arcticicestudio -[gh-compare-tag-v0.2.0_v0.4.0]: https://github.com/arcticicestudio/styleguide-markdown/compare/v0.2.0...v0.4.0 -[gh-github/renaming]: https://github.com/github/renaming -[gh-guides-flow]: https://guides.github.com/introduction/flow -[gh-micromark/micromark]: https://github.com/micromark/micromark -[gh-remarkjs/remark-comp-remark-cli@5.0.0_remark-cli@9.0.0]: https://github.com/remarkjs/remark/compare/remark-cli@5.0.0...remark-cli@9.0.0 -[gh-remarkjs/remark-footnotes]: https://github.com/remarkjs/remark-footnotes -[gh-remarkjs/remark-gfm]: https://github.com/remarkjs/remark-gfm -[gh-remarkjs/remark-lint-comp-6.0.0_8.0.0]: https://github.com/remarkjs/remark-lint/compare/6.0.0...8.0.0 -[gh-remarkjs/remark-lint-rel-v8.0.0]: https://github.com/remarkjs/remark-lint/releases/tag/8.0.0 -[gh-remarkjs/remark-lint-tree-pkgs-remark-lint-no-duplicate-defined-urls]: https://github.com/remarkjs/remark-lint/tree/main/packages/remark-lint-no-duplicate-defined-urls -[gh-remarkjs/remark-lint-tree-pkgs-remark-lint-no-unneeded-full-reference-image]: https://github.com/remarkjs/remark-lint/tree/main/packages/remark-lint-no-unneeded-full-reference-image -[gh-remarkjs/remark-lint-tree-pkgs-remark-lint-no-unneeded-full-reference-link]: https://github.com/remarkjs/remark-lint/tree/main/packages/remark-lint-no-unneeded-full-reference-link -[gh-remarkjs/remark-lint]: https://github.com/remarkjs/remark-lint -[gh-remarkjs/remark-rel-remark-cli@9.0.0]: https://github.com/remarkjs/remark/releases/tag/remark-cli%409.0.0 -[gh-remarkjs/remark-rel-v13.0.0]: https://github.com/remarkjs/remark/releases/tag/13.0.0 -[gh-remarkjs/remark]: https://github.com/remarkjs/remark -[gh-tree-pkgs-@ais-remark-preset-lint]: https://github.com/arcticicestudio/styleguide-markdown/tree/main/packages/%40arcticicestudio/remark-preset-lint -[npm-docs-cli-depr]: https://docs.npmjs.com/cli/deprecate -[npm-docs-scopes]: https://docs.npmjs.com/about-scopes -[pandoc]: https://pandoc.org -[semver]: https://semver.org -[svengreb/tmpl-rl-v0.9.0]: https://github.com/svengreb/tmpl/releases/tag/v0.9.0 -[svengreb/tmpl]: https://github.com/svengreb/tmpl -[trbdev-monorepo]: https://trunkbaseddevelopment.com/monorepos -[yarn-docs-ws]: https://yarnpkg.com/en/docs/workspaces diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md deleted file mode 100644 index eacfa83..0000000 --- a/CODE_OF_CONDUCT.md +++ /dev/null @@ -1,61 +0,0 @@ -# Code of Conduct - -All (core) team members, contributors/committers and volunteers in this project are required to act according to the following Code of Conduct. We ask you to follow these guidelines which help steer our interactions and strive to keep this a positive and growing project and help us provide and ensure a safe environment for everyone. - -If you are being harassed, notice that someone else is being harassed, or have any other concerns, please contact me at support@arcticicestudio.com or directly to one of the core team members via [email][mailmap]. Your reports will be taken seriously and not dismissed or argued with. - -## What we believe in and how we act - -- In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to make participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, gender identity and expression, level of experience, nationality, personal appearance, race, religion, or sexual identity and orientation. We welcome people regardless of these or other attributes. -- Our community is based on mutual respect, tolerance, and encouragement. -- We believe that a diverse community where people treat each other with respect is stronger, more vibrant and has more potential contributors and more sources for ideas. We aim for more diversity. -- We are kind, welcoming and courteous to everyone. -- We are focusing on what is best for the community. -- We are respectful of others, their positions, their skills, their commitments and their efforts. -- We are attentive in our communications, whether in person or online, and we are tactful and respectful when approaching differing views and experiences. -- We are aware that language shapes reality. Thus, we use inclusive, gender-neutral language in the documents we provide and when we talk to people. When referring to a group of people, we aim to use gender-neutral terms like “team”, “folks” or “everyone”. [1][ref-gender-neutral-docs] -- We respect that people have differences of opinion and criticize constructively. - -## Unacceptable Behavior - -- Do not be mean or rude. -- Do not discriminate against anyone. -- Sexism and racism of any kind (including sexist and racist "jokes"), demeaning or insulting behavior and harassment are seen as direct violations to this Code of Conduct. Harassment includes offensive verbal comments related to age, body size, culture, ethnicity, gender expression, gender identity, level of experience, nationality, personal ability or disability, physical appearance, physical or mental difference, race, religion, set of skills, sexual orientation, socio-economic status, and subculture. Harassment also includes sexual images in public spaces, deliberate intimidation, stalking, following, harassing photography or recording, inappropriate physical contact, and unwelcome sexual attention. -- Respect that some individuals and cultures consider the casual use of profanity offensive and off-putting. -- Derailing, tone arguments and otherwise playing on people's desires to be nice are not welcome, especially in discussions about violations to this Code of Conduct. -- Please avoid unstructured critique. -- Likewise any spamming, trolling, flaming, baiting or other attention-stealing behavior is not welcome. -- Publishing others' private information, such as a physical or electronic address, without explicit permission -- Other conduct which could reasonably be considered inappropriate in a professional setting - -## Responsibilities - -The members of the core team and project maintainers are responsible for clarifying the standards of acceptable behavior and are expected to take appropriate and fair corrective action in response to any instances of unacceptable behavior. - -## Enforcement - -Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting us via support@svengreb.de or directly to one of the project core team members or owner via [email][mailmap]. The project team will review and investigate all complaints, and will respond in a way that it deems appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately. - -Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership. - -## Consequences for Violations - -If a participant engages in any behavior violating this Code of Conduct, the core team members and project owner of this project may take any action they deem appropriate, including warning the offender or expulsion from the project, exclusion from any interaction and loss of all rights in this project. - -Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful. - -Decisions about consequences of violations of this Code of Conduct are made by this projects core team members and project owner as named above and will not be discussed with the person responsible for the violation. - -## Scope - -This Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. Examples of representing a project or community include using an official project e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers. - ---- - -Thanks for the inspirations and attributions to GitHub's [Open Source Guides][oss-guides], [Hoodie's Code of Conduct][hoodie-coc] and the [Contributor Covenant Version 1.4][contrib-cov-1.4]. - -[contrib-cov-1.4]: https://contributor-covenant.org/version/1/4/code-of-conduct -[hoodie-coc]: http://hood.ie/code-of-conduct -[mailmap]: https://github.com/arcticicestudio/styleguide-markdown/blob/main/.mailmap -[oss-guides]: https://opensource.guide -[ref-gender-neutral-docs]: https://modelviewculture.com/pieces/gendered-language-feature-or-bug-in-software-documentation diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md deleted file mode 100644 index be6a89a..0000000 --- a/CONTRIBUTING.md +++ /dev/null @@ -1,199 +0,0 @@ -# Contributing to styleguide-markdown - -Thanks for contributing to styleguide-markdown! - -This is a set of guidelines for contributing to styleguide-markdown. Please take a moment to review this document in order to make the contribution process easy and effective for everyone involved. - -Following these guidelines helps to communicate that you respect the time of the developers managing and developing this open source project. In return, they should reciprocate that respect in addressing your issue, assessing changes, and helping you finalize your pull requests. - -As for everything else in the project, the contributions to styleguide-markdown are governed by our [Code of Conduct][gh-coc]. By participating, you are expected to uphold this code. Please report unacceptable behavior at support@arcticicestudio.com or directly to one of the core team members via [email][gh-mailmap]. - -## Getting Started - -styleguide-markdown is an open source project and we love to receive contributions from the community! There are many ways to contribute, from [writing- and improving documentation and tutorials](#documentations), [reporting bugs](#bug-reports), [submitting enhancement suggestions](#enhancement-suggestions) which can be incorporated into this project by [submitting a pull request](#pull-requests). - -The project development workflow and process uses [GitHub Issues][gh-issues]- and [Pull Requests][gh-pr] management to track issues and pull requests including multiple [issue templates][gh-issues-templates]. - -Before you continue with these contribution guidelines we highly recommend to read the awesome GitHub [Open Source Guides][os-guide] on how to [making open source contributions][os-guide-contrib]. - -### Bug Reports - -A bug is a _demonstrable problem_ that is caused by the code in the repository. This section guides you through submitting a bug report for styleguide-markdown. Following these guidelines helps maintainers and the community understand your report, reproduce the behavior and find related reports. - -**Do NOT report security vulnerabilities in public issues!** Please only contact one of the core team members or project owner in a responsible manner by [email][gh-mailmap] or via support@arcticicestudio.com. We will assess the issue as soon as possible on a best-effort basis and will give you an estimate for when we have a fix and release available for an eventual public disclosure. - -- **Use the [GitHub Issue search][gh-issues]** — check if the issue has already been reported. If it has **and the issue is still open**, add a comment to the existing issue instead of opening a new one. If you find a closed issue that seems like it is the same thing that you are experiencing, open a new issue and include a link to the original issue in the body of your new one. -- **Check if the issue has been fixed** — try to reproduce it using the [latest version][gh-releases-latest] and [`main`][gh-branch-main] branch in the repository. -- **Isolate the problem** — ideally create a [MCVE](#mcve). - -When you are creating a bug report, please provide as much detail and context as possible. Fill out on of [the required templates][gh-issues-template-bug], the information it asks helps maintainers to reproduce the problem and resolve issues faster. - -- **Use a clear and descriptive title** for the issue to identify the problem. -- **Describe the exact steps which reproduce the problem** in as many details as possible. -- **Include screenshots and animated GIFs** if appropriate which show you following the described steps and clearly demonstrate the problem. -- **Provide specific examples to demonstrate the steps**. Include links to files or GitHub projects, or copy/pasteable snippets. If you are providing snippets in the issue, use [Markdown code blocks][ghd-markdown-code-blocks] or [attach files to the issue][ghd-attach-file]. - -If possible please provide more context by answering these questions: - -- **Did the problem start happening recently** e.g. after updating to a new version of styleguide-markdown or was this always a problem? - - If the problem started happening recently, **can you reproduce the problem in an older version of styleguide-markdown?** - - What is the most recent version in which the problem does not happen? -- **Can you reliably reproduce the issue?** If not, please provide details about how often the problem happens and under which conditions it normally happens. - -Please include details about your configuration and environment based on the [issue template][gh-issues-template-bug]. - -### Enhancement Suggestions - -This section guides you through submitting an enhancement suggestion, including completely new features and minor improvements to existing functionality. Following these guidelines helps maintainers and the community understand your suggestion and find related suggestions. - -- **Use the [GitHub Issues search][gh-issues]** — check if this enhancement has already been suggested. If it has **and the issue is still open**, add your additions as comment to the existing issue instead of opening a new one. -- **Check if the enhancement has already been implemented** — use the [latest version][gh-releases-latest] and [`main`][gh-branch-main] branch to ensure that the feature or improvement has not already been added. -- **Provide a reduced show case** — ideally create a [MCVE](#mcve). - -Before creating enhancement suggestions, please check if your idea fits with the scope and provide as much detail and context as possible using a structured layout like the [the issue template][gh-issues-template-enhancement]. - -- **Use a clear and descriptive title** for the issue to identify the suggestion. -- **Provide a step-by-step description of the suggested enhancement** in as many details as possible and provide use-cases. -- **Provide examples to demonstrate the need of an enhancement**. Include copy/paste snippets which you use in those examples, use [Markdown code blocks][ghd-markdown-code-blocks] or [attach files to the issue][ghd-attach-file]. -- **Describe the current behavior** and **explain which behavior you expected to see instead** and why. -- **Explain why this enhancement would be useful** to most styleguide-markdown users. -- **Maybe list some other projects where this enhancement exists.** - -### Pull Requests - -This section guides you through submitting an pull request. Following these guidelines helps maintainers and the community to better understand your code. - -**Please [suggest an enhancement](#enhancement-suggestions) or [report a bug](#bug-reports) first before embarking on any significant pull request** (e.g. implementing features, refactoring code, fixing a bug), otherwise you risk spending a lot of time working on something that the core team members and project owner might not want to merge into the project. - -When you are submitting an pull request, please provide as much detail and context as possible. Fill out [the required template][gh-issues-template-pr] to help maintainers to understand your submitted code. - -- **Use a clear and descriptive title for the pull request** -- **Do not include issue numbers in the pull request title** but fill in the metadata section at the top of the [required pull request template][gh-issues-template-pr] making use of the [GitHub issue keywords][ghd-issue-keywords] to link to specific [enhancement suggestions](#enhancement-suggestions) or [bug reports](#bug-reports). -- **Include screenshots and animated GIFs** if appropriate which show you following the described steps and clearly demonstrate the change. -- **Make sure to follow the [JavaScript](#javascript-style-guide), [Markdown](#markdown-style-guide) and [Git](#git-style-guide) style guides**. -- **Remain focused in scope and avoid to include unrelated commits**. -- **Features and improvements should always be accompanied with tests and documentation**. If the pull request improves the performance consider to include a benchmark test, optimally including a chart. -- **Lint and test before submitting the pull request**. -- **Make sure to create the pull request from a [topic branch][git-docs-branching-workflows]**. - -**All pull requests must be send against the [`main`][gh-branch-main] branch** - Please read the [branch organization](#branch-organization) section below for details about the branching model. - -### Documentations - -styleguide-markdown's documentation consists of guides, which helps users to learn about the project. - -You can help improve the docs and guides by making them more coherent, consistent or readable, adding missing information, correcting factual errors, fixing typos, bringing them up to date when there are differences to the latest version. This can be done by submitting a [enhancement suggestion](#enhancement-suggestions) and then opening a [pull request](#pull-requests) for it. - -## Branch Organization - -styleguide-markdown uses the [GitHub Flow][ghg-flow] branching model. The repository consists of the `main` core branch with an infinite development lifecycle. The source code of `HEAD` in this branch contains the latest development state and reflects all tagged release versions. - -**All [pull requests](#pull-requests) for limited development lifecycle _story_/_topic_ branches must be send against the `main` branch**. - - - -## How else can I help? - - - -### Improve Issues - -Some issues are created with missing information, not reproducible, or plain invalid. You can help to make it easier for maintainer to understand and resolve them faster. since handling issues takes a lot of time that could rather spend on writing code. - -### Give Feedback On Issues and Pull Requests - -We're always looking for more opinions on discussions in issues and pull request reviews which is a good opportunity to influence the future direction of styleguide-markdown. - -The [question][gh-issues-label-question] issue label is a good place to find ongoing discussions and questions. - -## Style Guides - -Every major open source project has its own style guide, a set of standards and conventions for the writing and design of code, documentations and Git commit messages. It is much easier to understand a large code base when all the code in it is in a consistent style. - -A style guide establishes and enforces style to improve the intelligibility and communication within the project community. It ensures consistency and enforces best practice in usage and language composition. - -### JavaScript Style Guide - -styleguide-markdown adheres to the [Arctic Ice Studio JavaScript code style guide][gh-styleguide-javascript]. - -### Git Commit Messages - -A well-crafted Git commit message is the best way to communicate _context_ about a change to the maintainers. The code will tell what changed, but only the commit message can properly tell why. Re-establishing the context of a piece of code is wasteful. We can't avoid it completely, so our efforts should go to reducing it as much as possible. - -styleguide-markdown adheres to the [Arctic Ice Studio Git style guide][gh-styleguide-git]. The style guide assumes that you are familiar with the [GitHub Flow][ghg-flow] branching model. - -## MCVE - -A Minimal, Complete, and Verifiable Example. - -When [reporting a bug](#bug-reports), sometimes even when [suggesting enhancements](#enhancement-suggestions), the issue can be processed faster if you provide code for reproduction. That code should be… - -- …Minimal – Use as little code as possible that still produces the same behavior -- …Complete – Provide all parts needed to reproduce the behavior -- …Verifiable – Test the code you're about to provide to make sure it reproduces the behavior - -A MCVE is a common practice like on [Stack Overflow][stackoverflow-mcve] and sometimes it is also called [SSCCE][], a _Short, Self Contained, Correct (Compilable), Example_. - -The recommended way for GitHub based projects is to create it as [Gist][gh-gist] or new repository, but of course you can [attach it to issues and pull requests as files][ghd-attach-file], use any free code paste- or file hosting service or paste the code in [Markdown code blocks][ghd-markdown-code-blocks] into the issue. - -### Minimal - -The more code there is to go through, the less likely developers can understand your enhancement or find the bug. Streamline your example in one of two ways: - -- **Restart from scratch**. Create new code, adding in only what is needed to demonstrate the behavior and is also useful if you can't post the original code publicly for legal or ethical reasons. -- **Divide and conquer**. When you have a small amount of code, but the source of the bug is entirely unclear, start removing code a bit at a time until the problem disappears – then add the last part back and document this behavior to help developers to trace- and debug faster. - -#### Minimal and readable - -Minimal does not mean terse – don't sacrifice communication to brevity. Use consistent naming and indentation following the [style guides](#style-guides), and include comments if needed to explain portions of the code. - -### Complete - -Make sure all resources and code necessary to reproduce the behavior is included. The problem might not be in the part you suspect it is, but another part entirely. - -### Verifiable - -To entirely understand your enhancement or bug report, developers will need to verify that it _exists_: - -- **Follow the contribution guidelines regarding the description and details**. Without information developers won't be able to understand and reproduce the behavior. -- **Eliminate any issues that aren't relevant**. Ensure that there are no compile-time errors. -- **Make sure that the example actually reproduces the problem**. Sometimes the bug gets fixed inadvertently or unconsciously while composing the example or does not occur when running on fresh machine environment. - -## Versioning - -styleguide-markdown follows the [Semantic Versioning Specification][semver] (SemVer). We release patch versions for bug fixes, minor versions for enhancements like new features and improvements, and major versions for any backwards incompatible changes. Deprecation warnings are introduced for breaking changes in a minor version so that users learn about the upcoming changes and migrate their code in advance. - -Every significant change is documented in the [changelog][gh-changelog]. - -## Credits - -Thanks for the inspirations and attributions to GitHub's [Open Source Guides][os-guide] and various contribution guides of large open source projects like [Atom][gh-atom-contrib], [React][react-contrib] and [Ruby on Rails][ruby-on-rails-contrib]. - -[gh-atom-contrib]: https://github.com/atom/atom/blob/master/CONTRIBUTING.md -[gh-branch-main]: https://github.com/arcticicestudio/styleguide-markdown/tree/main -[gh-changelog]: https://github.com/arcticicestudio/styleguide-markdown/blob/main/CHANGELOG.md -[gh-coc]: https://github.com/arcticicestudio/styleguide-markdown/blob/main/CODE_OF_CONDUCT.md -[gh-gist]: https://gist.github.com -[gh-issues-label-question]: https://github.com/arcticicestudio/styleguide-markdown/labels/type-question -[gh-issues-template-bug]: https://github.com/arcticicestudio/styleguide-markdown/blob/main/.github/ISSUE_TEMPLATE/bugs.md -[gh-issues-template-enhancement]: https://github.com/arcticicestudio/styleguide-markdown/blob/main/.github/ISSUE_TEMPLATE/enhancement.md -[gh-issues-template-pr]: https://github.com/arcticicestudio/styleguide-markdown/blob/main/.github/PULL_REQUEST_TEMPLATE.md -[gh-issues-templates]: https://github.com/arcticicestudio/styleguide-markdown/issues/new/choose -[gh-issues]: https://github.com/arcticicestudio/styleguide-markdown/issues -[gh-mailmap]: https://github.com/arcticicestudio/styleguide-markdown/blob/main/.mailmap -[gh-pr]: https://github.com/arcticicestudio/styleguide-markdown/pulls -[gh-releases-latest]: https://github.com/arcticicestudio/styleguide-markdown/releases/latestsanitize=true -[gh-styleguide-git]: https://github.com/arcticicestudio/styleguide-git -[gh-styleguide-javascript]: https://github.com/arcticicestudio/styleguide-javascript -[ghd-attach-file]: https://docs.github.com/en/github/managing-your-work-on-github/file-attachments-on-issues-and-pull-requests -[ghd-issue-keywords]: https://docs.github.com/en/github/managing-your-work-on-github/linking-a-pull-request-to-an-issue -[ghd-markdown-code-blocks]: https://docs.github.com/en/github/writing-on-github/basic-writing-and-formatting-syntax -[ghg-flow]: https://guides.github.com/introduction/flow -[git-docs-branching-workflows]: https://git-scm.com/book/en/v2/Git-Branching-Branching-Workflows -[os-guide-contrib]: https://opensource.guide/how-to-contribute -[os-guide]: https://opensource.guide -[react-contrib]: https://facebook.github.io/react/contributing/how-to-contribute.html -[ruby-on-rails-contrib]: http://guides.rubyonrails.org/contributing_to_ruby_on_rails.html -[semver]: https://semver.org -[sscce]: http://sscce.org -[stackoverflow-mcve]: https://stackoverflow.com/help/mcve diff --git a/README.md b/README.md deleted file mode 100644 index 481b0d3..0000000 --- a/README.md +++ /dev/null @@ -1,64 +0,0 @@ -

- -

The Arctic Ice Studio Markdown code style.

- -

- -

- -

- -Every major open source project has its own style guide, a set of standards and conventions for the writing and design of code, documentations and assets. It is much easier to understand a large codebase when all the code in it is in a consistent style. - -A style guide establishes and enforces style to improve the intelligibility and communication within the project community. It ensures consistency and enforces best practice in usage and language composition. - -### Getting Started - -The [project documentation][docs] contains chapters to learn about -the [comprehensive base rule set][docs-rules] with support for [GitHub Flavored Markdown][gfm] which is based on the [CommonMark][] specification. It includes rules for all document elements like e.g. [code blocks][docs-rules-code-blocks], [headings][docs-rules-headings] or [lists][docs-rules-lists], defines [naming conventions][docs-rules-naming-conventions] and best practices for [whitespaces][docs-rules-whitespaces], [Raw HTML][docs-rules-raw-html], [emphasizing][docs-rules-emphasis] and [strings][docs-rules-strings]. - -The development chapters contain information about the [requirements][docs-dev-requirements] and [how to build][docs-dev-building] the style guide documentation. - -### Remark Configurations - -To follow the rules in a project and ensure that your code matches this style guide use the official extensible code linter rule preset [@arcticicestudio/remark-preset-lint][gh-tree-pkg-remark-preset-lint] for [remark-lint][gh-remarkjs/remark-lint], a plugin for [remark][]. - -### Contributing - -Read the [contributing guide][docs-dev-contributing] to learn about the development process and how to propose [enhancement suggestions][docs-dev-contributing-enhancements] and [report bugs][docs-dev-contributing-bug-reports], how to [submit pull requests][docs-dev-contributing-pr] and the project‘s [style guides][docs-dev-contributing-styleguides], [branch organization][docs-dev-contributing-branch-org] and [versioning][docs-dev-contributing-versioning] model. - -The guide also includes information about [minimal, complete, and verifiable examples][docs-dev-contributing-mcve] and other ways to contribute to the project like [improving existing issues][docs-dev-contributing-other-improve-issues] and [giving feedback on issues and pull requests][docs-dev-contributing-other-feedback]. - -

- -

Copyright © 2018-present Arctic Ice Studio and Sven Greb

- -

- -[commonmark]: http://commonmark.org -[docs-dev-building]: https://arcticicestudio.github.io/styleguide-markdown/development/building.html -[docs-dev-contributing-branch-org]: https://arcticicestudio.github.io/styleguide-markdown/development/contributing.html#branch-organization -[docs-dev-contributing-bug-reports]: https://arcticicestudio.github.io/styleguide-markdown/development/contributing.html#bug-reports -[docs-dev-contributing-enhancements]: https://arcticicestudio.github.io/styleguide-markdown/development/contributing.html#enhancement-suggestions -[docs-dev-contributing-mcve]: https://arcticicestudio.github.io/styleguide-markdown/development/contributing.html#mcve -[docs-dev-contributing-other-feedback]: https://arcticicestudio.github.io/styleguide-markdown/development/contributing.html#give-feedback-on-issues-and-pull-requests -[docs-dev-contributing-other-improve-issues]: https://arcticicestudio.github.io/styleguide-markdown/development/contributing.html#improve-issues -[docs-dev-contributing-pr]: https://arcticicestudio.github.io/styleguide-markdown/development/contributing.html#pull-requests -[docs-dev-contributing-styleguides]: https://arcticicestudio.github.io/styleguide-markdown/development/contributing.html#style-guides -[docs-dev-contributing-versioning]: https://arcticicestudio.github.io/styleguide-markdown/development/contributing.html#versioning -[docs-dev-contributing]: https://arcticicestudio.github.io/styleguide-markdown/development/contributing.html -[docs-dev-requirements]: https://arcticicestudio.github.io/styleguide-markdown/development/requirements.html -[docs-rules-code-blocks]: https://arcticicestudio.github.io/styleguide-markdown/rules/code.html#blocks -[docs-rules-emphasis]: https://arcticicestudio.github.io/styleguide-markdown/rules/emphasis.html -[docs-rules-headings]: https://arcticicestudio.github.io/styleguide-markdown/rules/headings.html -[docs-rules-lists]: https://arcticicestudio.github.io/styleguide-markdown/rules/lists.html -[docs-rules-naming-conventions]: https://arcticicestudio.github.io/styleguide-markdown/rules/naming-conventions.html -[docs-rules-raw-html]: https://arcticicestudio.github.io/styleguide-markdown/rules/raw-html.html -[docs-rules-strings]: https://arcticicestudio.github.io/styleguide-markdown/rules/strings.html -[docs-rules-whitespaces]: https://arcticicestudio.github.io/styleguide-markdown/rules/whitespaces.html -[docs-rules]: https://arcticicestudio.github.io/styleguide-markdown/rules/index.html -[docs]: https://arcticicestudio.github.io/styleguide-markdown -[gfm]: https://github.github.com/gfm -[gh-remarkjs/remark-lint]: https://github.com/remarkjs/remark-lint -[gh-tree-pkg-remark-preset-lint]: https://github.com/arcticicestudio/styleguide-markdown/tree/main/packages/@arcticicestudio/remark-preset-lint -[remark]: https://remark.js.org diff --git a/assets/images/badge-codestyle.svg b/assets/images/badge-codestyle.svg deleted file mode 100644 index b1845bd..0000000 --- a/assets/images/badge-codestyle.svg +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/assets/images/badge.ai b/assets/images/badge.ai deleted file mode 100644 index 027b02d..0000000 --- a/assets/images/badge.ai +++ /dev/null @@ -1,1549 +0,0 @@ -%PDF-1.5 % -1 0 obj <> endobj 2 0 obj <>stream - - - - - application/vnd.adobe.illustrator - - - badge - - - - - Arctic Ice Studio - - - - - Copyright (C) 2018-present Arctic Ice Studio (https://www.arcticicestudio.com) Copyright (C) 2018-present Sven Greb (https://www.svengreb.de) - - - - - 2021-04-02T14:24:45+02:00 - 2021-04-02T14:24:45+02:00 - 2021-04-02T14:24:45+02:00 - Adobe Illustrator CS6 (Windows) - - - - 256 - 48 - JPEG - /9j/4AAQSkZJRgABAgEASABIAAD/7QAsUGhvdG9zaG9wIDMuMAA4QklNA+0AAAAAABAASAAAAAEA AQBIAAAAAQAB/+4ADkFkb2JlAGTAAAAAAf/bAIQABgQEBAUEBgUFBgkGBQYJCwgGBggLDAoKCwoK DBAMDAwMDAwQDA4PEA8ODBMTFBQTExwbGxscHx8fHx8fHx8fHwEHBwcNDA0YEBAYGhURFRofHx8f Hx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8f/8AAEQgAMAEAAwER AAIRAQMRAf/EAaIAAAAHAQEBAQEAAAAAAAAAAAQFAwIGAQAHCAkKCwEAAgIDAQEBAQEAAAAAAAAA AQACAwQFBgcICQoLEAACAQMDAgQCBgcDBAIGAnMBAgMRBAAFIRIxQVEGE2EicYEUMpGhBxWxQiPB UtHhMxZi8CRygvElQzRTkqKyY3PCNUQnk6OzNhdUZHTD0uIIJoMJChgZhJRFRqS0VtNVKBry4/PE 1OT0ZXWFlaW1xdXl9WZ2hpamtsbW5vY3R1dnd4eXp7fH1+f3OEhYaHiImKi4yNjo+Ck5SVlpeYmZ qbnJ2en5KjpKWmp6ipqqusra6voRAAICAQIDBQUEBQYECAMDbQEAAhEDBCESMUEFURNhIgZxgZEy obHwFMHR4SNCFVJicvEzJDRDghaSUyWiY7LCB3PSNeJEgxdUkwgJChgZJjZFGidkdFU38qOzwygp 0+PzhJSktMTU5PRldYWVpbXF1eX1RlZmdoaWprbG1ub2R1dnd4eXp7fH1+f3OEhYaHiImKi4yNjo +DlJWWl5iZmpucnZ6fkqOkpaanqKmqq6ytrq+v/aAAwDAQACEQMRAD8A4zmQ1OxV2KuxV2KvR/yA 0rS9U/Mm0s9Ts4L60aC4Zre5jSaMlYyQSjhl2yM+TIPqb/lXH5e/9SvpH/SBbf8AVPKrLKnf8q4/ L3/qV9I/6QLb/qnjZWnf8q4/L3/qV9I/6QLb/qnjZWnf8q4/L3/qV9I/6QLb/qnjZWnf8q4/L3/q V9I/6QLb/qnjZWnf8q4/L3/qV9I/6QLb/qnjZWnf8q4/L3/qV9I/6QLb/qnjZWnf8q4/L3/qV9I/ 6QLb/qnjZWnf8q4/L3/qV9I/6QLb/qnjZWnf8q4/L3/qV9I/6QLb/qnjZWnf8q4/L3/qV9I/6QLb /qnjZWnf8q4/L3/qV9I/6QLb/qnjZWnf8q4/L3/qV9I/6QLb/qnjZWnf8q4/L3/qV9I/6QLb/qnj ZWnf8q4/L3/qV9I/6QLb/qnjZWnf8q4/L3/qV9I/6QLb/qnjZWnf8q4/L3/qV9I/6QLb/qnjZWnf 8q4/L3/qV9I/6QLb/qnjZWnf8q4/L3/qV9I/6QLb/qnjZWnf8q4/L3/qV9I/6QLb/qnjZWnf8q4/ L3/qV9I/6QLb/qnjZWnf8q4/L3/qV9I/6QLb/qnjZWnf8q4/L3/qV9I/6QLb/qnjZWnf8q4/L3/q V9I/6QLb/qnjZWnf8q4/L3/qV9I/6QLb/qnjZWki8/eQfItr5F8x3Nt5c0uC5g0u9kgnjsrdHR0t 3ZWVlQFWUioIwgm1IfF+XNbsVRc2k6lBYRX89u8VpO3GCWQcfU2JqgNCy7faApiqE64qidR02/0y 8kstQge2u4qepBIOLLyUMKg+IIOKvSP+cbv/ACall/zD3P8AyaORnyZR5vr7KWbsVdirsVdirsVd irsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirHfzH/APJe+aP+2Rf/APUNJhHNBfFO heXLnVo7u5Ei29hp6o99csHkMauSFIjjDu1eJ3pxHcjL2tENrGi6b8GiWfrXC/8AS01BVkkr4xW3 xQx/7Lmw6hhiqTXl7eXtw9zeTyXFxIavNKxdz82apxVNvKqQ289xrdyoe30hBLEjCqyXbmltGQev xgyMO6o2Kql9NNrWgrfyuZdR0o+lduxq0lrM5MUpJ6+nKxRj4MgxVmP/ADjd/wCTUsv+Ye5/5NHI z5Mo830T+Z1vqVwvltNMcrfpqzT2qhuIklttNvZ44nP8kjxBW9jlcWRX+a9aj1nyrZW2mSOv+JY6 LIvwvHZ+kZrpj/KfSBi9nYYAqTTAa35d8reWPrps/V0mHUb26D8XT0oFS13qDU3LCUePpEYVXajr +k6unlHUNYszdwy/XI76yitZNQC3cMfpyr6MKTs3pyow5ccaVAazcaC1xqMflm0m0n09E1KbU4pL WfTUmj9HhDwtp0gaR0k39REIUbFviAwqm+n6yvm+9g0VnmsdFS0S4McivDLqsf2GMTniRbI1OfH4 nqOiH4xyVF+XfK3lvUW1t77S7W4kXVLiJJXhQyKicAqq9OShe1DtiSqWRC6uNe/wNNdzPpNveTSO 7SyGeWyjtbedLR5uXqFRLd0JJq0ahSdzj5qmnmny5onl/RZ/MGg2UOlX+jp9ZDWcawCaGE8pLeVI wokWROSgMDRiCu+IKoIGT/Ctx5RZj651U6GKMQxs5n+s7HYgrprnp3GKrorm4vNB8veXJXZrsakL HUHqQzRaM7SSSMdtp/q0YPj6mKqX5bXl1o2l6NZXszzaZrcKzabcyEt6N2yl5rVnP7MlDJFXvyXs oxKhkfkWQ/4YEjlmK3WoE9Wagvp9gOpwFISvyr5W0PXfL1nruv2Vvqup63bx3k810iziNbhRKkEH MMI441YKOFK05H4t8JKFL9CLJq9h5RnvnvNDgjvL2S3LNzaOOSFLeynfkzSRxfWCaMfiAQNUA1bV EeYPL+keXY7TXNBtIdLuLa7tIbmK0RYIri2uJ47eSOaOMKjcVk5IxFVYChpXACql5T8p+WtT8vm4 vdNgku5by/53gQJcVW9mUETpxlBAFAQ2ElUlhuLe517SLLXrV9cTTodds1LwC8aT6teWKQzOnFhz EJ4u9PtV8cVZz5dttBi9d9L0caUTxEp+qC0Ljcjoq8qYCljuq6VZp5k1S88x+X5NdsLr0v0bdiBL 9LeBYESS3+rHnIhMweTkkZ5cqH7IwoWQ6H5QvPKOq3FqINVgt0uxYtdQhp7EBC31X9+DNH6T1ZVa hUEClKY2qtB5Tt4vLmlav5ds7e08wWlvDcQvEiQi5rGvq287KByWYbVavFqN1GNqlHme+l81+UfM Gvqs1ro2maTqA062lVopJL36rIk00i9vq55RIP5+bdlOI2Vn/mIkeX9TINCLScgj/jG2RCWI+XrP ya+laaX8rcp2ggLTnSwauUWrlynjvXJG0J5+Y/8A5L3zR/2yL/8A6hpMA5qXwxZ3t5ZXCXNnPJbX MZrHNExR1PsykEZe1puus6TqR467aFJj11OxVI5q+MsHwwy/RwY92OKoXVdGjs4kurW+gv7GVuKS xNxkVqV4ywPSRDT24+DHFUTr7R2NjY6JC4YwqLrUWUgg3U6g8Kjr6MXFPZufjiqH8uapDp+pq90p fT7hWttQiXq1vMOL0/yl+2v+UBir0b8gbE2H5yx2ZkWb0IrtFmjNUkURni6nwYbjIz5Mo831Fq2k yX1/ot0kgRdLvXu5FIJLq1ncWvEe/K5DfRlTNKdK8lvY6rqt2bkSW1xHLDpFvxp9VjunM90K1+L1 JyD7KqjG0Us8r+RLfT7Zv0wlvqV56dvbxSNGHWO3tIEhjjTmCRVleQ+7HElabsvJcll5oGoWssUW kpLJcxWKqQUlnt1hlCU+EITGr0/mLY2tInzb5Xn1v0zDMkLJa31oWcEml7B6Q6dgwUkYgqr615aG o6XbRRTm11XT+Mum6igq0M6LxrQ/aRxVZEP2lJHviClLNN0jzzp73gt5tM4Xty92zSLcOUeULyAU FOQVhtuK47IXt5InjtI7i31AjzHFdvqB1WSIFJJ5YxDIkkIYfuWhVYggaqqqnlyWuNrS+60bzTrf pWmtyWVrpKSJLc29mZZZLkRsHWNnkEQjjLKOahWLDaoFcVVj5Uc+dx5h9cfVPqwU2VN/ri8oxccv +MDmM/RjeyusvKbW3nO+8wGcNb3MNILSh/dzyrElxJXp8aWkNPfl443sq6z8pQ/4MtvLd9IX9GBI vrMJKOkkRDJNEequjqGU9iMb3VEeUNFvdF8v2+nX1yt3dxvNJPcovpq7zTvMSE/Z/vOmJSltpo3m zRITp+iS2NzpSlvqKXvrRy2qMSRFWMOJo0rRB8BC/DU9cUKa+R7y1S1v7HUFHmS3mnuLi/mirDcm 74+vDJErArEfTj4cWqnBftUNW1pXfRfMusXdm2vSWlvp1lMl19QsjJL680LB4WlllWLikbgOEVN2 APLtjaqGl6L54020fT7S601LYz3EsVzJFPLKq3E7zbxh41Yr6lPtDHZVo8oavpdzpNzodxBNNY29 /BeSahzLTy6hPBcyzkxU+IyW5JHT4tumNrSfaR/iPlL+mPqfGg9H6p6ta78uXqfRSmKUuk0vzNp2 oXtxoslpc2moSi4ezvTJEYZuCo5jljWWqPw5cCmzVPLegUN6f5avo9M1sXtxFJqeutJLcvCjJBGz W6W0aIpLMQiRrVjuxqdtgG1TnS7RrPTLSzZg7W0McLMOhMaBaj7sCUik8p3D+RdV8tidBPqEOowp cUPBTfPMykjr8PrCuG90OubTz1eWs9nctpaQXMbwytH9Y5hZFKkry2rvjsqzT7T8wbOwtrNW0l1t okhVj9ZqQihan7sdlV/zH/8AJe+aP+2Rf/8AUNJiOal8JZe1uxV2KuxV2KvUf+cbv/JqWX/MPc/8 mjkZ8mUeb6+ylm7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYqx3 8x//ACXvmj/tkX//AFDSYRzQXzGf+cbfzTr/ALxW3/STF/XLeMMeEu/6Fu/NT/lit/8ApJi/rjxh eEu/6Fu/NT/lit/+kmL+uPGF4S7/AKFu/NT/AJYrf/pJi/rjxheEu/6Fu/NT/lit/wDpJi/rjxhe Esq/Kj8pvzM8oec4NbvNFSaCGKaMot3bgkyJxHRm/VkZSBCQHuX6b83/APUtf9PsH9MhSXfpvzf/ ANS1/wBPsH9MaV36b83/APUtf9PsH9MaV36b83/9S1/0+wf0xpXfpvzf/wBS1/0+wf0xpXfpvzf/ ANS1/wBPsH9MaV36b83/APUtf9PsH9MaV36b83/9S1/0+wf0xpXfpvzf/wBS1/0+wf0xpXfpvzf/ ANS1/wBPsH9MaV36b83/APUtf9PsH9MaV36b83/9S1/0+wf0xpXfpvzf/wBS1/0+wf0xpXfpvzf/ ANS1/wBPsH9MaV36b83/APUtf9PsH9MaV36b83/9S1/0+wf0xpXfpvzf/wBS1/0+wf0xpXfpvzf/ ANS1/wBPsH9MaV36b83/APUtf9PsH9MaV36b83/9S1/0+wf0xpXfpvzf/wBS1/0+wf0xpXfpvzf/ ANS1/wBPsH9MaV36b83/APUtf9PsH9MaV36b83/9S1/0+wf0xpXfpvzf/wBS1/0+wf0xpUs80S+c 9Z8tatpEXl4RSajZXFokrXsJVWniaMMQB0HLCKV//9k= - - - - - - uuid:f9eb862d-3231-4035-9453-0c6679596bab - xmp.did:BE931965AE93EB11B9D18C4548FF5EA6 - uuid:5D20892493BFDB11914A8590D31508C8 - default - - uuid:cb3c1f29-1795-f44e-8c22-1034470b67ce - xmp.did:0980117407206811822A897E387FE54C - uuid:5D20892493BFDB11914A8590D31508C8 - proof:pdf - - - - - saved - xmp.iid:BE931965AE93EB11B9D18C4548FF5EA6 - 2021-04-02T14:24:39+02:00 - Adobe Illustrator CS6 (Windows) - / - - - - - - Document - Print - - - False - False - 1 - - 512.000000 - 512.000000 - Pixels - - - - Cyan - Magenta - Yellow - Black - - - - - - Standard-Farbfeldgruppe - 0 - - - - Weiß - RGB - PROCESS - 255 - 255 - 255 - - - Schwarz - RGB - PROCESS - 29 - 29 - 27 - - - CMYK Rot - RGB - PROCESS - 227 - 6 - 19 - - - CMYK Gelb - RGB - PROCESS - 255 - 237 - 0 - - - CMYK Grün - RGB - PROCESS - 0 - 150 - 64 - - - CMYK Cyan - RGB - PROCESS - 0 - 159 - 227 - - - CMYK Blau - RGB - PROCESS - 49 - 39 - 131 - - - CMYK Magenta - RGB - PROCESS - 230 - 0 - 126 - - - C=15 M=100 Y=90 K=10 - RGB - PROCESS - 190 - 22 - 34 - - - C=0 M=90 Y=85 K=0 - RGB - PROCESS - 230 - 51 - 42 - - - C=0 M=80 Y=95 K=0 - RGB - PROCESS - 233 - 78 - 27 - - - C=0 M=50 Y=100 K=0 - RGB - PROCESS - 243 - 146 - 0 - - - C=0 M=35 Y=85 K=0 - RGB - PROCESS - 249 - 178 - 51 - - - C=5 M=0 Y=90 K=0 - RGB - PROCESS - 252 - 234 - 16 - - - C=20 M=0 Y=100 K=0 - RGB - PROCESS - 222 - 220 - 0 - - - C=50 M=0 Y=100 K=0 - RGB - PROCESS - 149 - 193 - 31 - - - C=75 M=0 Y=100 K=0 - RGB - PROCESS - 58 - 170 - 53 - - - C=85 M=10 Y=100 K=10 - RGB - PROCESS - 0 - 141 - 54 - - - C=90 M=30 Y=95 K=30 - RGB - PROCESS - 0 - 102 - 51 - - - C=75 M=0 Y=75 K=0 - RGB - PROCESS - 47 - 172 - 102 - - - C=80 M=10 Y=45 K=0 - RGB - PROCESS - 0 - 161 - 154 - - - C=70 M=15 Y=0 K=0 - RGB - PROCESS - 54 - 169 - 225 - - - C=85 M=50 Y=0 K=0 - RGB - PROCESS - 29 - 113 - 184 - - - C=100 M=95 Y=5 K=0 - RGB - PROCESS - 45 - 46 - 131 - - - C=100 M=100 Y=25 K=25 - RGB - PROCESS - 41 - 35 - 92 - - - C=75 M=100 Y=0 K=0 - RGB - PROCESS - 102 - 36 - 131 - - - C=50 M=100 Y=0 K=0 - RGB - PROCESS - 149 - 27 - 129 - - - C=35 M=100 Y=35 K=10 - RGB - PROCESS - 163 - 25 - 91 - - - C=10 M=100 Y=50 K=0 - RGB - PROCESS - 214 - 11 - 82 - - - C=0 M=95 Y=20 K=0 - RGB - PROCESS - 231 - 29 - 115 - - - C=25 M=25 Y=40 K=0 - RGB - PROCESS - 203 - 187 - 160 - - - C=40 M=45 Y=50 K=5 - RGB - PROCESS - 164 - 138 - 123 - - - C=50 M=50 Y=60 K=25 - RGB - PROCESS - 123 - 106 - 88 - - - C=55 M=60 Y=65 K=40 - RGB - PROCESS - 99 - 78 - 66 - - - C=25 M=40 Y=65 K=0 - RGB - PROCESS - 202 - 158 - 103 - - - C=30 M=50 Y=75 K=10 - RGB - PROCESS - 177 - 127 - 74 - - - C=35 M=60 Y=80 K=25 - RGB - PROCESS - 147 - 96 - 55 - - - C=40 M=65 Y=90 K=35 - RGB - PROCESS - 125 - 78 - 36 - - - C=40 M=70 Y=100 K=50 - RGB - PROCESS - 104 - 60 - 17 - - - C=50 M=70 Y=80 K=70 - RGB - PROCESS - 67 - 41 - 24 - - - - - - Graustufen - 1 - - - - C=0 M=0 Y=0 K=100 - RGB - PROCESS - 29 - 29 - 27 - - - C=0 M=0 Y=0 K=90 - RGB - PROCESS - 60 - 60 - 59 - - - C=0 M=0 Y=0 K=80 - RGB - PROCESS - 87 - 87 - 86 - - - C=0 M=0 Y=0 K=70 - RGB - PROCESS - 112 - 111 - 111 - - - C=0 M=0 Y=0 K=60 - RGB - PROCESS - 135 - 135 - 135 - - - C=0 M=0 Y=0 K=50 - RGB - PROCESS - 157 - 157 - 156 - - - C=0 M=0 Y=0 K=40 - RGB - PROCESS - 178 - 178 - 178 - - - C=0 M=0 Y=0 K=30 - RGB - PROCESS - 198 - 198 - 198 - - - C=0 M=0 Y=0 K=20 - RGB - PROCESS - 218 - 218 - 218 - - - C=0 M=0 Y=0 K=10 - RGB - PROCESS - 237 - 237 - 237 - - - C=0 M=0 Y=0 K=5 - RGB - PROCESS - 246 - 246 - 246 - - - - - - Strahlende Farben - 1 - - - - C=0 M=100 Y=100 K=0 - RGB - PROCESS - 227 - 6 - 19 - - - C=0 M=75 Y=100 K=0 - RGB - PROCESS - 234 - 91 - 12 - - - C=0 M=10 Y=95 K=0 - RGB - PROCESS - 255 - 222 - 0 - - - C=85 M=10 Y=100 K=0 - RGB - PROCESS - 0 - 152 - 58 - - - C=100 M=90 Y=0 K=0 - RGB - PROCESS - 39 - 52 - 139 - - - C=60 M=90 Y=0 K=0 - RGB - PROCESS - 130 - 54 - 140 - - - - - - - - - Adobe PDF library 10.01 - - - Arctic Ice Studio - - - True - - - - - - - - - - - - - - - - - - - - - - - - - -endstream endobj 3 0 obj <> endobj 6 0 obj <>/Resources<>>>/Thumb 10 0 R/TrimBox[0.0 0.0 512.0 512.0]/Type/Page>> endobj 7 0 obj <>stream -H=0 ݧjl?Ɏ;qԱE)K<={g'p _j8ѼRynu/GU8t[5jgA*l蓓ERTg{?a -_YSj -endstream endobj 10 0 obj <>stream -8;Z\s5n8E1#Qt&*#PjDM@UrnGU+&eF^$N^K$A2r7%ZoiY7``a)[%Kk(XRU(CU8jgA -$"'u/S[j6gmEIdW$WVOP?P!'[5dO]thb4AhNSi23Wa_)5s4- -endstream endobj 11 0 obj [/Indexed/DeviceRGB 255 12 0 R] endobj 12 0 obj <>stream -8;X]O>EqN@%''O_@%e@?J;%+8(9e>X=MR6S?i^YgA3=].HDXF.R$lIL@"pJ+EP(%0 -b]6ajmNZn*!='OQZeQ^Y*,=]?C.B+\Ulg9dhD*"iC[;*=3`oP1[!S^)?1)IZ4dup` -E1r!/,*0[*9.aFIR2&b-C#soRZ7Dl%MLY\.?d>Mn -6%Q2oYfNRF$$+ON<+]RUJmC0InDZ4OTs0S!saG>GGKUlQ*Q?45:CI&4J'_2j$XKrcYp0n+Xl_nU*O( -l[$6Nn+Z_Nq0]s7hs]`XX1nZ8&94a\~> -endstream endobj 9 0 obj <>/Font<>/ProcSet[/PDF/Text]>>/Subtype/Form>>stream -BT -0 0 0 rg -/GS0 gs -/T1_0 1 Tf -0 Tc 0 Tw 0 Ts 100 Tz 0 Tr 12 0 0 -12 -176.9253 -61.2783 Tm -[(Dies ist eine A)12(dobe\256 I)-10(llustr)5(a)4(t)6(or\256-Da)4(t)6(ei, die ohne PDF-I)-10(nhalt)]TJ -0 -1.2 TD -[(gespeicher)-24(t wur)10(de)12(.)]TJ -T* -[(Damit diese Da)4(t)6(ei in ander)10(en)]TJ -0 -1.2 TD -[(A)3(n)13(w)10(endungen pla)4(tzier)-24(t oder ge\366\037net w)10(er)10(den k)-18(ann, sollt)6.1(e sie er)-4(neut in)]TJ -0 -1.2 TD -[(A)12(dobe I)-10.1(llustr)5(a)4(t)6(or mit der aktivier)-24(t)6(en Option PDF-kompa)4.1(tible)]TJ -T* -[(Da)4(t)6(ei erst)6(ellen gespeicher)-24(t w)10(er)10(den. Diese)]TJ -T* -[(Option be\036ndet sich im Dialog)-4(f)13(eld P)16(r)10(og)6(r)5.1(ammeigene I)-10(llustr)5(a)4(t)6(or)]TJ -T* -[(F)31(or)-4(ma)4(t)5(-)-14(Optionen, das beim)]TJ -0 -1.2 TD -[(Speicher)-4.1(n einer A)12(dobe I)-10(llustr)5(a)4(t)6(or)5(-Da)4(t)6(ei \374ber den B)-3.9(ef)13(ehl)]TJ -0 -1.2 TD -[(Speicher)-4.1(n un)4(t)6(er angez)7(eigt wir)10(d)10(.)]TJ -ET - -endstream endobj 5 0 obj <> endobj 14 0 obj <> endobj 15 0 obj <> endobj 16 0 obj <>stream -H|TiPTW~5mI#o^ TVLT׆nf$4: tc*0jK@Q2 --yx2Ij~MݪSs}绷.Y[a8ݾ.hgU2y:-HRdOpn5Lbdz=ѰfoBB1”qK.D@hѢ.]% VHiQOtH:6F-S]"#ZQ?IUBT2ϫriZ&WDKC%UEKy,h% 5RY|!3V)4. n=. -syab"sǰ6n +ǰ{p̉wۈ`11{|kAu=QA"n2|&t -̳I1 -mW^?TԊi3[׭8 -2tLV)^HQ`I&N -'}sX( Y2j` UpR )3c6"v!SpnP K(҃S SK+j/jʕJаVY-({83!斃DJW4I8O)JE^CNz#yZ~:`7>St)Acww?zHU^NknqBi-O+2F(o%W3ղwz1;@KMX{ v/d>փח /Tgx^\S~wLonKMǿTwvpיh/vvԗ:QZB-EATY+ޕ[7 ڏ-85NATI:sV;0Y>x{ -EI?}=׾<(/8ft4f#?6oHH7P0aeE3PiRPSJ/.(9gV]퐴ǛCԆ{_nM *Mu.;5(%e:' v ᧿|ͬKmpUr- %Lq&jWZ}w Xg0?ɺ{\VuՌX-O`hhu;isx3QR}%~&M"9V"6ٺM_[u]c"ź#EG )G!!~>E? -- vCP;&<{9>a"}koӀ>Xp M"YtxS0™gPMr K>ef$غrƎ$pڐ#mM~s|DGvџwAp>,[Kjp> F\"%~0ڽ^4H]$նTm$Y쿫8_O[tGo~JcI/$P-?xX,BUΐt\&{Ɋ_ud; #:!F1Џ Ǡ~Tlo>~yy;gv.|ptTP3؎5+R .tL 6{Mp7a/Q|Y'!gۗ3;=c}θt(5J<& <ޏ_w!R3(pe(L[KCbsKpx0MrVC{ةf?ٙa+jvhR#h:n*raeA" ۟JDަ}s ùt-#k3s -*hn<{[+$"H"dsQAcA1QXCyEfZk M%mdSCE*`2i,j@(.gW mD'sPoԃ2X" !nܧ䍚{Go^:m -?lRKmϡL4eq x%!Ȍ阜xi k`vAN >`_{;l > Y1vG3!P]>fpbQ?¿@%t䫂d;7sv~>B= 8/Gf#ǰ8xXolDhrS`{O|.yZ~mo@0#pSuAfUQ]Q؆d| rTr*k5JaenNE"&eSȷM|EyWegeQ>{xm -xj]`;]aA+FSOYk-sq]b, ƴ:(%EdJ>K /kl^je)`P'D׿r_I#_ m Lj0xEmG1Ép]4E)jͼ@?8b88H5}qNj=PK,ݮ3g~WȰ,JHC -\ ,hRaZW(Aݩ:bUSb\J]Gٜm.Cz^̊ -endstream endobj 13 0 obj <> endobj 8 0 obj <> endobj 17 0 obj <> endobj 18 0 obj <>stream -%!PS-Adobe-3.0 -%%Creator: Adobe Illustrator(R) 16.0 -%%AI8_CreatorVersion: 16.0.0 -%%For: (virtu-win7) () -%%Title: (Unbenannt-1) -%%CreationDate: 4/2/2021 2:24 PM -%%Canvassize: 16383 -%%BoundingBox: 214 -342 675 -260 -%%HiResBoundingBox: 214.647 -341.8711 674.0723 -260.0879 -%%DocumentProcessColors: Cyan Magenta Yellow Black -%AI5_FileFormat 12.0 -%AI12_BuildNumber: 682 -%AI3_ColorUsage: Color -%AI7_ImageSettings: 0 -%%RGBProcessColor: 0 0 0 ([Passermarken]) -%AI3_Cropmarks: 188 -556 700 -44 -%AI3_TemplateBox: 444.5 -300.5 444.5 -300.5 -%AI3_TileBox: 146.3398 -720.96 741.6602 120.96 -%AI3_DocumentPreview: None -%AI5_ArtSize: 14400 14400 -%AI5_RulerUnits: 6 -%AI9_ColorModel: 1 -%AI5_ArtFlags: 0 0 0 1 0 0 1 0 0 -%AI5_TargetResolution: 800 -%AI5_NumLayers: 1 -%AI9_OpenToView: -276 17 2.04 2938 1272 2 0 0 145 116 0 0 0 1 1 0 1 1 0 1 -%AI5_OpenViewLayers: 3 -%%PageOrigin:138 -696 -%AI7_GridSettings: 72 8 72 8 1 0 0.8 0.8 0.8 0.9 0.9 0.9 -%AI9_Flatten: 1 -%AI12_CMSettings: 00.MS -%%EndComments - -endstream endobj 19 0 obj <>stream -%%BoundingBox: 214 -342 675 -260 -%%HiResBoundingBox: 214.647 -341.8711 674.0723 -260.0879 -%AI7_Thumbnail: 128 24 8 -%%BeginData: 5151 Hex Bytes -%0000330000660000990000CC0033000033330033660033990033CC0033FF -%0066000066330066660066990066CC0066FF009900009933009966009999 -%0099CC0099FF00CC0000CC3300CC6600CC9900CCCC00CCFF00FF3300FF66 -%00FF9900FFCC3300003300333300663300993300CC3300FF333300333333 -%3333663333993333CC3333FF3366003366333366663366993366CC3366FF -%3399003399333399663399993399CC3399FF33CC0033CC3333CC6633CC99 -%33CCCC33CCFF33FF0033FF3333FF6633FF9933FFCC33FFFF660000660033 -%6600666600996600CC6600FF6633006633336633666633996633CC6633FF -%6666006666336666666666996666CC6666FF669900669933669966669999 -%6699CC6699FF66CC0066CC3366CC6666CC9966CCCC66CCFF66FF0066FF33 -%66FF6666FF9966FFCC66FFFF9900009900339900669900999900CC9900FF -%9933009933339933669933999933CC9933FF996600996633996666996699 -%9966CC9966FF9999009999339999669999999999CC9999FF99CC0099CC33 -%99CC6699CC9999CCCC99CCFF99FF0099FF3399FF6699FF9999FFCC99FFFF -%CC0000CC0033CC0066CC0099CC00CCCC00FFCC3300CC3333CC3366CC3399 -%CC33CCCC33FFCC6600CC6633CC6666CC6699CC66CCCC66FFCC9900CC9933 -%CC9966CC9999CC99CCCC99FFCCCC00CCCC33CCCC66CCCC99CCCCCCCCCCFF -%CCFF00CCFF33CCFF66CCFF99CCFFCCCCFFFFFF0033FF0066FF0099FF00CC -%FF3300FF3333FF3366FF3399FF33CCFF33FFFF6600FF6633FF6666FF6699 -%FF66CCFF66FFFF9900FF9933FF9966FF9999FF99CCFF99FFFFCC00FFCC33 -%FFCC66FFCC99FFCCCCFFCCFFFFFF33FFFF66FFFF99FFFFCC110000001100 -%000011111111220000002200000022222222440000004400000044444444 -%550000005500000055555555770000007700000077777777880000008800 -%000088888888AA000000AA000000AAAAAAAABB000000BB000000BBBBBBBB -%DD000000DD000000DDDDDDDDEE000000EE000000EEEEEEEE0000000000FF -%00FF0000FFFFFF0000FF00FFFFFF00FFFFFF -%524C4528272827282728272827282728272827282728272827527D7E7D7D -%7D7E7D7D7D7E7D7D7D7E7D7D7D7E7D7D7D7E7D7D7D7E7D7D7D7E7D7D7D7E -%7D7D7D7E7D7D7D7E7D7D7D7E7D7D7D7E7D7D7D7E7D7D7D7E7D7D7D7E7D7D -%7D7E7D7D7D7E7D7D7D7E7D7D7D7E7D7D7D7E7D7D7D7E7D7D7D7E7D7D7D7E -%7D7D7D7E7D7D7D7E7D8452FD162752FD68FF7D2827282728272827282728 -%272827282728272827280552FD68FF7D2727052727270527272705272727 -%052727270527272728FD68FF7D2827282728272827282728272827282728 -%272827282753FD68FF7DFD0A2705FD0B2728FD68FF7D2827282728272827 -%272728272827282727272827282752FD68FF7D0527272705270527277D28 -%27052705275928052705272EFD0FFFA9FFA8FD07FFA8FFA8FD05FFA8FFFF -%FFA8FD11FFA8FD05FFA8FFFFFFA8FFA8FFFFFFA8FFA8FD05FFA8A8FFFFA8 -%FFA8FD0BFFA8FFA8FD04FF7D28272827282752537D282827282727528452 -%2727282752FFFFFF7E7DFFFFFF7DA8FFFF53FFFF7E7DA87DA8A8FFFFFF7D -%A87DA87DA8FFFF7DA87D7DA8A8FFFF7DA8FFFF7D7DA8FFFFA8FD04FF7DA8 -%7D84FFFF7DA87D84FFA87DA87DFFFF7DA8A8A8FFFFFF7DA87D7EA8A87D84 -%A87DFFFFFFA87DFFFFFFA87EA8A8A8FFFFFF7D27270527287D522800FD06 -%277D057DFD042752FFFFFF7D53FFFFFF527DFF7D7DA8FF7DFFFFFF7D7DA8 -%FF53FF84A8FFFF7DA87DA8FFFFA87D7DFFFF7D7DFFA87D527DFFFF7DFFFF -%FF53FFFFFF7DA87DFFFFFF7DA87DFFFFFF53A87DFD05FFA87DFFFF7EA8FF -%A87EFFA87DFFA87D7EA8FFFFA8A8FD06FF7D272752537D27272728272827 -%28057D5227525927280552FFFFFFA87DA8FFA87DA8FFA8FF84FF7EA8FFFD -%04A852FFFFA8A8FFFFFF59A8FD04FF7D7EA8FFA8A8FFA8A8A87EA8FF7EA8 -%FFA87DFD04FFA8A8FD04FF7DA8A8FFFFA87D7EA8A9A8FFFFFF7DA8A8FFFF -%FFA8A8FFFF7DA87DFF7DFFFFFFA884A8FFA8FFFFFF7D05277D5300270527 -%272705270527522705275228052728FFFFFF7DA87DFF7DA87EA87DFF52FF -%527D7D537DA8527D7DFF7DA8FFFFA87D7DFD04FF7E7EA87DFF7DA87DFF7D -%FF59A97DFFFFA87DFD04FFA87DFFFFFFA87D7DFFFFFF7E7D53A884A8FD04 -%FF84A853A8FFA87DFFFFFF52A8FF7DA8FFFFA87DA87DA8FFFFFF7D282752 -%537D522827282728272752532728275952272753FFFFFFA8FFA87DA8A8A8 -%7DA8A8847DA8FFFFFFA87DFFFF7DA8A8A8FFFFA87DA8FD04FF7DFF7D84FF -%FF59A8FF84FFFF7D7DFFFFFF7DFFFFFFA87D7EFFFFFFA87DA8FFFFFF7DA8 -%A8FD05FFA8A8FFFFFF7DFFA8A8FFFFFFA8FFFF7DFFFFFFA8A8FD06FF7D27 -%2705272753525227270527277D05FD04277D272728FFFFFF7DFFA852A8FF -%52A8FFFFFF7D7DFFFFFF7D7EA8FFFF7D7D7DA8A87DFFA87DA8A853A8FF7D -%53FFFF527EFF7DFFFFA82EFFFFFF7E7DA8A859FF7D7DA8A852FF7D7E7E7D -%7DFF52A87EA8A8FFA87D7DA97DA8FFA87EFFFFFF7DFFFF7D7DA884847DA8 -%7DA8FFFFFF7D2827282728272E527D5228057D522727282727527D0552FD -%06FFA8FFFFA9FD04FFA8FD05FFA8FFFFFFA9A9A8A8A8FFFFFFA8A87DFD07 -%FFA8FD0BFFA8A87DFFFFFFA8A884FFFFFFA8A8A8FFFFA87EA8A8FD04FFA8 -%7DA8FFFFA8FD07FFFD09A8FFFFFF7D052727270527052727592727522827 -%270527272752272EFD68FF7D282728272827282728272827282728272827 -%2827282752FD68FF7DFD0C2705FD0727052752FD68FF7D28272827282728 -%27282728272827282728272827280552FD68FF7D27270527272705272727 -%05272727052727270527272728FD68FF7D28272827282728272827282728 -%27282728272827282753FD68FF7D05270027052700270527002705270027 -%05270027052728FFFFFFA8FFFFFFA8FFFFFFA8FFFFFFA8FFFFFFA8FFFFFF -%A8FFFFFFA8FFFFFFA8FFFFFFA8FFFFFFA8FFFFFFA8FFFFFFA8FFFFFFA8FF -%FFFFA8FFFFFFA8FFFFFFA8FFFFFFA8FFFFFFA8FFFFFFA8FFFFFFA8FFFFFF -%A8FFFFFFA8FFFFFFA8FFFFFFA8FFFFFFA8FD04FF7D53FD145228527DA87D -%7E7DA87D7E7DA87D7E7DA87D7E7DA87D7E7DA87D7E7DA87D7E7DA87D7E7D -%A87D7E7DA87D7E7DA87D7E7DA87D7E7DA87D7E7DA87D7E7DA87D7E7DA87D -%7E7DA87D7E7DA87D7E7DA87D7E7DA87D7E7DA87D7E7DA87D7E7DA87D7E7D -%A87D7E7DA87D7E7DA87DA853FD14FFA8FFFFFFA8FFA9FFA8FFA9FFA8FFA9 -%FFA8FFA9FFA8FFA9FFA8FFA9FFA8FFA9FFA8FFA9FFA8FFA9FFA8FFA9FFA8 -%FFA9FFA8FFA9FFA8FFA9FFA8FFA9FFA8FFA9FFA8FFA9FFA8FFA9FFA8FFA9 -%FFA8FFA9FFA8FFA9FFA8FFA9FFA8FFA9FFA8FFA9FFA8FFA9FFA8FFA9FFA8 -%FFA8FF -%%EndData - -endstream endobj 20 0 obj <>stream -%AI12_CompressedDataxr%Ǖ&f|;?Lj=6Xݵ=()5m4yI+`#TQ/33/6; ,ɄjHo/W7__ųf'Vܽ͛nrW?+x}wus+L>=_pu{__~KyuHݫK&y{6mXjw+.xG<'ׯVmHW1~Vڞ'W?_v֧qOgF wn.߿=^_?^\~s-}r͛6o..ps}Gǻˋw_}]yo׏\pHknZ^gj߾[_\&I?|[xwGkA?m7^nj鉷voooGq4W)_~v:tF{+'qhz}ޓWǿjۛ. hFS?7?\_aeI77o</ _^~{#ya~>#$C>xyڡ_aEۗVGz]ԭB!1G0۫ohW?^;MX|Os;^KmSLs/[l;>GқoFCOOt?шo?#-x{ -)ڬk}ٻ=ŷo? 7?x{wׯϿ> {,uɗxwǷ9Gr !CBiM~}u7~:%-G//?oo(~}A9]~y:oo='tx}~K[^%EJt=!yܼ{Ovus{~]\;}OG?sK͛ NAz{8]FVaj 4Z.vs-_N|Ϸfe_ܾ>>G|V\_@sseN}o߿͏矿{?7|w7-@j/> 䂗x~iqۏ21LC+J*qi97r馸F/^_pYr{yj>;^O >W_#ZP# V_-R쿞/_ιVo/tѯIO L=O{'=;Fנ{ﯿ=Y1~)ۯo\{냗=gJzLV_ܼw7Y$]=/^z sg~SoIu[/?Oo{ /w߭~}-#k ow#Mhn87;z0i溼n/\ߑ=Wt|5 _M[m^3}I5[mj7˞O?f7m vimMvmîم]KnSvnڭwvw}vOb>Ӿa?S[_ԓ]w%Oiў6Tj)7Gi@mԍ]ץ.vmh;t.m&Ӕԧ$$4.n&#ɾq 9]L16{ -n-fI׍Sfh [֞. V*qff -SM4L4Mi;h#fݮz=^7z>lMشz&mM6fڬ7A?ːi3.MC?m[Mko ۾Z D9кvc؎alna=L8C7!?mԏ=Aa]ط}i\,@c8ŶI96O#0d\5LlPrKttwt-D~ӿ&L%pu~}?zieƴCC+NR@0~ligcC~ٸV3(look4b  ݁זÚڴ`gvܶ6&o[ﭓF#&oћF>lQՎk$* =x6 ]:2M44=-ޖpD8iXavN4=a-a5ᲑpZO-k 5XSuiͮ7ZBD:B01La6avaPkjovlvn-zl@8ּb;^WuxN^'|ё5"$H+5" KaDŽ''T־:njycv*~ ܘb<91i…onNzә/m7k_erٚX= QYamdF3xk&<@ԶyȾ?83}qm`7b8b d[B>b}@:4vXz~*a45.xZ9t8~w ջrqW^P,<|=7V[?$doDZm/H$;^91g[X+je#lV^~Ӫ # |Ԩg}1}Wt6 ٦}cSvo< x{|VV{YLҍt4Y ;hLڙq62,|l<yeԃ1A߬K|a;fry-$b "bi\qpçHP`={!֋P?H г8/|d!*JPOr -)(j8Bj e1Vm%Ƕg"2>eCg$?NdMGF0QDĪFX꘩Ɍ,o\ZNh"ӎ눏wQ[~ڗA0" Zm[Җzk~B#m6i[{S޲Bʄ 샷[ԖlZbtǘT.5-2Ba}ƾh$}8Bӷ-t}m[WھDWжtg:?:S]NR dDʸ22ͣ1Y0׎hE?ߪFQ'ÐTŎEYkȈ,exE v Ɓ_[\豶c22-;=?bMG#zGcI -!T$W_28̯+7T`f+\l;6]?rvQƝ3b*>ӀJ#S( ʖQM(}{FO8I3u];(D烎M/FA/F g ,|>r$Tv=FHux AJjLyqؑ>]ifΰ :o_ _eܺ -Zkшwke:`*BkP9o"ՅjmmX=)=SJd_ic-jZ븨 1D-.g6/+ 5XbFĀaK"l"6Sʝpk!J:(;gn4xx63ZVԼehR+ubdVc{e|IӰ| l[wf=83,؞ -iNt1R JpSC;w1u[Y۽eoQw -{mJL){mHl'l;U*BXZRL4E(#J-*m* +Y̾ BcͲ}a FD|س$w}[ -*N$PeU7ʚ!l-#!|; H  ;9+IWc# -NU!EPZ!f-)-cSͭYR>bSی -jgXT7}Ij?jnQ+j۪=dÙS@Z SķjHZZW6PjSֳQ~V6^MǡaղLd`:;1ݰ|e:5,gBlٳ$(M4N;'VlTX)e5ObYT&#t֬]"MBȓbɔ˔˔&UZʕ,0de˵˖*]W)_f?}_H=¶ly!`&g* \P ̠wXݷl^\vk"2=^'G#K(N"Jӳ)[ѩƤNeǧT=:O{,k=HY{6B - NNϣ0O#5vYcSej -e.="c{dcڨ¶ -_䓜̓1ҲI|%,N 8QK .qT6YP /z?zMSN L 9/πlF u&J1)]T -/ǔqy=X:)ΪT9gtSul}J)L=5c),B%&ذ>XCḀx_D zq J\5 -•3m_M Tw+;t}_dGi\G[uW4*Ԕ4UB\IL!2hp=?1,v|֖cұi.+*)i2s]GQmvNDEM˵COuS݋ދָq:ek%E/fal9F$g-*aZ,p˱.lO0aeϲ=36qm8`"VpQh3[0klnRv҈4ISV5`mި~}uѫ;lF9oVڭl0ǾZrA-Yխmoan9ZN֧f7aSFe5CT^tC[n<9WvhD E_Evv,k+e䊙efdrZ5zuh%4SU[X;پz{ˆ͠omo+lN`tռKB/CAd)+GQ|'zaYÓ8tSZ>4[:8rm~MLFŞ)Y.`jڞ`4nÐ]ֆ$ӼĚV\fk4oԅ MbTxUg`f9v/8nj7xvTc?xλ@iso"p3־C >'7"+]e<:N7-p6U>dgNgF, @Ih j0ޱu"ƭCw܏6>Ƈб6>]v 08ȑ'6D&G^H?OҎX9˺D\ v`׸codVz EdIW\~1jh=<ؒO@ N*op#gA/ܩ\'9aNݲbgBZ$kĊ-y:,8b$Bo !&SPL"5 v$wWUYyԫON7!O}ƽ;C)`a9M˺97~ֹ46Yx+N4us_b>+]?K̽U!Ʈ+u9umy#ʎgm?ktH@َX@,%kb?{ `Yر 1H,@A'"{nWV{meRJ%b- -=F8_tU9¥Bs 0ߵڂi3L6ISME+SU@Z?kI{RHq!-4 7OOzh'\!8baΟ=qyk{6g}CCcAzl!زc>̷~ˠ%vz6:Ds=[yw'e֙CmJA3N -k5~(;K`\ 21#cAJmh'^y -:-;չ="b.-9q[Dō:eb6Tّ͒\fzڹ5qS?Q?zf, ڝAl)DLQ9_Tn)lIK-֍FKC-RoU!\+0p8b4<0Ҽ駟\jFFk5HrR:jjirv~@BW~bn`Siu`a X*.W^lm9ƃf&@ 5S- -W@RC+EuQi, u,&S,ΙZoLZ], T5Q-Zjn5kȩr}h,Q#[|8<(u&YΪL&Q⣺x}kLX2/:c4A-E,lj(!_eM,c5,IFsl6@/䟲1N;j{c҈䍂Ȏ`PTfJ|&eO?ܸl@d~}=^NkRNAu֣'7[iiXhf?M\,}6s߬8K_f4⾐JQ@[\un#Z%y_Q#5yZl=kryBd$*i(kPYZ(䊒Y^Al_Fب -.ZFㅗ.-%D }dƑd>b?+dm.QOڢ*+lS9$;eΘ.E<ƀLh`X.33WEgS-qlqhySc!<֠cW|h[t]dJ$|ERuّ˭76%щIW\?j%-Zl?EV2s6^;ZZ>_{,>.ُ&[̦~shJB\RN|@jiQRl{j(5?+m<qp9 -M)6בnPRKsQ --Hm{Z -9FX}N9M僳c5$fN7qjlQi~fY.4P\*ITDUl%F?p4%kʣ*yϛ͡?kXVؑa&lڈC1u= -07!J+OcAyQ8[KN"s i6hg&։j~JH6+\hx1MKhTFk0n4le$ii;0G)vo&^FD 5KDmi>#kSsab!XtW讥خgRY zWq!k.ŵ.2*cJWye{Oe?D )UH-i{K`rbݻIG>yd*qG#)O?шo ntc{ͩ7‘wQfK r١pݸCxx1<2"wNvvUNnutNSDԱ7cSGԜDTb]NM3h:l£PJb?TiR2߃Rj\lfʭhI ;M95)ga#GY2hx7eĆ.@sS{6c8X#pIZiv93ygzN09,&b8D7 ps4qUOǍ']>-*h:ܠf tY{5+3E#J;L}||n%SHNdO`.}R>O1n㥊Vz -r\L -æXΰH;U,컮i|l2eg~el#!'4h&.5wjunI]gO =;C`hڔVMX\;=hM)>6S:\Z{3 Gqn}bǏs3:'omE'~LPKDK"DLK"DL/DL/^1$bzI%K"DL/^1$bzI%j0^1$bzIgB9d㽤b{H-{ua\}w=TQ۱>3D_eѾ\XffoT kЄKmF1Qhz.-ӵ&Wz.nuhhޡ $^W qa7(2}+>o@ q 'KSEnM2 {4шpL eԮ)OSb֒חZma*W KCZaB3m@L -];I5S\mp(o7Vł5pk m*Qn6cr"}s4}2'-U0C' -,.2FH$; H`в|!Caq>PT{o]}+ct-iazuT6]#֤"|CBr"H\,pDN Q+}^2t?و ˉBY[6F( xQ -.J`'NBƙɝA6j7]9ӯ,֑Z@s+ -lMl(6)Ⱦ(x-.GS". } -8nL\p[(Z%iJGuP5>nt\͂J~\4eX.ie^;UEsk3MDQx.*w軾O-ރys]dEJ-+T=KknkyObb\3DFв5zMr&\o0yN7f租 -e&*#RPŚ%qׅﺀ +DEn&VjaI.(b/Fu%\='8YvDŽJ: -f}bxXʪ!Q. yUV@MT7/ F?U AxHYAĊK͉יYdV`$fLо??Q$Tߚ/q+(n%pbM 1;26PTj% pjʾ%|Q!M!ȦIg`̴r%6C̿'?ۘ #\zFaXa}\GRZy\~ŪЈP3Y,/r\c껢_.iƪtvnPE;}m;Dzq#1a@ji˪RdiaͱQ$k)o! 6p30՚˾@^oy-[e|bEx =;iJF "#D/#v4DV-9Duy]B[(j]~F<{R't]? ˈ/##VʌֶvZZQ4z֦67ϰ3y[)w?ŇZ>шOF|(,Oˈ?O.Z/|4%2_0D YUxve)ò]!m&I~]Ԋ,5[DYt[%I˕ZPZ4[j^jV@岥O)_Jrɇ4}J[({N/{QCnڎN| >9:8k^ - s:ݥ0,\KJ:E]1KJLP٥ٱ%$Osi@-VXذ 4A `yp(a(̥i-T8 pNC xڴJhEseCY7/ZgF_B #\eɘTV$_~hh{?i?bem}8&4& _AlMEg¹hYd}aaOe,up`r<<~ݻ꟯޾=_/; q,5QS`pG^پH+(YG1Kǒ,bؑ>pGx\{9YHYg`ߜ'ꪢ@9gRv [.O$sg*~nע~#ej}N3YWJqdDIpV;#F潛ŹŸIxoGOZ6"㶂ܒq{Rl$&d3Fӓ,Ei.i29IB)9 Ye,׸X[5p\iHEU="\v jXX?'pf2|xWu}Ec5x;A|]͐rԵ %]]49|WwtVdy?˚ -wv2Օ0ZD$x}Bc:Ow5k1`0,bbod}8CRg:qîȬׄ\.S)2 &(AUY6j&>.5p!яvTü7 !p%[iZ@}b鉳NNg%;vX[Zr*Z *S׳fʕY5S +>ig ywI 9OU CZWׅdַę!v1؋_L+|cje I=_wWwW߾zU -'~(x{M/ _ԟugBRVH#0YdkO叠/Bw 7o|Y jWo}կnد1{!|}{q+QǞonnެ~L뫻ۯ6F՗Wo_xy??W\f"&7)Vp`` .%3.ZdU3:BDW[VXQϐOK?B8ȍtHGt%Lc2TRw3dzm8F~qt4a_aG0Ӆ 9+} 4|v:-=kG]kES8#ztۥ4gfJtk8謴lh0QO/SlSBnhz\H0BHjB„h4zjTP@qa8k4jr!-T| z;[[xℴ#j=Ϧcr{ɷAW)$3IO"N|6izjOu SwS &Ǒ6iP^dh ]JIQmzP1F,Іq"!Lۆ740t@-0\p 43Z=F="PiѾUhFjF Z&5-!Oz\H򗡟]Ɓz&G}z?|kZ@#MhYhKæm"ODIDăbR0MtDA;AG%O=ᬅ2axzh7=?S;& l&$@HYC=P ja$':FL0O'i*PMgX* 8𝛯b+XvZ4?9PWaEz\DD< }j#AaW֑X:!tQMKBM("rb=Vbx}PWOH_LL&@~621p˔X授kڎ̶{Nj7w\vq(_~ssV>3Iǯ֟M_dj +G%WO_{yߝ|Ηˇ*;M --?Y4юhi"gL`6|5(e bCsXvHiӁF:c/Dy%>fh?OI'reFp_4A :ǩ k$cL N3DhH,&O\=8oK!JY~!`,ݠ^H=-*9!I\򺀘o a >v8i"m:15 - o;zQR$yY73S3>d^eC-eIL/,&DzKv<>\ F /;"D%Iq& GG2 ޞ@487K?Vzi'>$~yna@{K"t 8b̃С>:ۮ`GGf*fs@mDF,1-|8 ؂=u$!H'NzE44eZ9it]VD,ψ-n"u h*O 10TČ$x vXN \Ej4<>v2Ğ@ $F: F. '$b(d}tDFTd 24a8Tت#bJԠah;ڃKx#.#5ځbC7wc~BCI1P=I2zˆ |aJC_-lHhO{וMA"QКZHv78/̼UfO uGP:ςwmIY'HI+ &LB@y ؠR$!!7t](pCCai} -mS8 co[Nmd`tb|&e txBu#c hZfʈ%K#"jJeE@<㨀)v\&bΖpG-S`ÞYnHoaaOG<)ckbwHCfQC "%_q+'4%UP$H;70wm#Sa u[[02z[89 Pq;eAky1o< K g?!5f-P8{`DK Igڒf ֹ0 [負휂,,e|zc!&:0 ^߀ gIa$f~ȫ<]\^pn4L-);[| -hb+_hσd)T88Ir2w[sk~́c#knD&h}85֖nXZ K.(\۪7B>{At'A!_{M]ְ㼿YGbBtSK^_0-+ЎNj/z0j.2s Bហ5x"\hįwFZVUNZ81aY &pd =#( ; qJ SmYa"-xQf25u#XM@dޱ4˪|!Cf|,=sU0A`n_JWXKj+mhuN$6tVAo*N՞v`{ wvXh0iTĪMv1(;6r7 P2)/My)gfEzC%ʚI=ǖ-.L0 :;R3>59نNh7FxH b0o7 -MfB]P!e,ÏW)qԏd3g3Y_>ZetPie$Til3F3'HS4:Ƕ HlVג :2'刬'9Ot.dDN+{h }zfw҃ _=DDvyA7CbfaNC˞Y- K.GPx%'Lπ! j 0YD;, =匡fB׵0L@áU$+ނ3:@~[a,,;VaS^}[avD$3D  l2cB]#&Vµ&F2ױ[eƶ-f z($e1YMvm"z>MV`mxu*|^5jn:B" V ] C4SMEn~ x舨?WDc+OD9Xysn)Ӕ4'~JCd_ ' r!+-h$Bu30H$fr -pkSs褮o`Ԉ&M L;?x,B,޻M˺`LKDe!,,M#n3ď4>;J@Z\{XACeunPzfOy[B+{+}fp{GzwÎdt!A5ymy`RX7b@ Y\c3vQRv>_hБ30=ՠ-O 2An(~ |T+mEqt'4'e?{/Hjʈ:me L=]ELU(,iҷPX0PXFmkPX(Caԉ3E¶.K^b*k-:Yl /OˆBbJ#G h l;@I7q"`q#I!GY 8XCfdŭj8<*=Y@S@x"stS5╄vF -Vd 樑1ΧC.F]?mo $1]M8  -g - T fYm8ə, Hd7qT-\KD,OLRY)Q[TndNeɰn,N!TXT- -h< INeѲVr*5@Ŗbʂ3B@T glj ,xCŅY* o-a<]d# KdLDF""E VqU" Xi[" OdHu" L&mcQƐXni @ٳJ;!xAט+&S(@'50=$IyGte&;yEMpǨ4|Dɺ4<@GV؊!J#+qE -M,1E 2d1ImʈYiaL:,& :v2{Y%̩g\&[kb^v r#PuTWX6x& c* -klY4]żZE2?;3Bl¼ / KCus/eXQe{Ұ &Ui(XƇϞ:JCucO[YI$%Qpf$.e3ci KQPLW֌zf8lɰmpPĩBY""Aaq0Pcʃp9`pt绫ֱHCNȰlZ; -nrEcpQkZֺ*$__=r=f@ܭR@ ӳe`˄wlnV yoc&M$kؖ'S`~z@˸̭d(S76u%xh0U)jG|_HZȾtP0! c` `O^ -؅~&+xY[faGUz6VMt}A0pHLBHJH %\ - ^*"DԏQVTb“d)&,gWLj3DcF}9A6;Y\?/t=Sۧg* -ZSٚ&/rf*S -2lWMɔPDL_5%k9ș+)fk4s׵Ip\}`\w{~L 8;,̇ԉzܳұ -Y9i#/ BC 5dRgUўk_;qk4^GǮV|z~ّ: -m6?~U=)4Eu eYCyv~*8yrIwE/թr&ltib )s0nKy*h0:<%/3"N"-ƨ -=Df;aч"W|',}%gAWY8Dq#:+y n -lˤk|,wTI.~)S5*T?\\}}}@jo!{=3U>LZczvJ|ͩ`|42X*9,p4/=FsT@$ h`m$H||԰ I,HɿSafqȧb+@)3^5Z̉ *'3l˙/]!ȜU bjI9p*o>=JXrE I\q,A3lT?zdU~[~ъfs /m OŲ}LUFx˛aR+d r08YH[|p8~TOt_-G :w;dxIW,|58t@;A3t Re$h4^2>?10GKgo4wDB+q }GP!sdOd `fES^TT ܇ ҨLk03S\-}$-F%q6}69j-8k/GTXq/,:@Of#pXRWi8oB~#<7 "@UDr^ ]K<ֶΛ`y,:oh}w>_hБ30=Ugop[/_6?+6k~<7 ΩF^Y !1ű<{ h< ZE<} T0 ,}LҶGczRYdw>Ke%O>'x6 Lcz Epn*OhYz0 RJ= .ƱH ÆZlɮn3M dZWDXZe/cN,&^A B ؿ~* = 11y_@#(->9|A /Ÿvf}yo.p'FZ߷!!"~r584kHGKp 0 bF!׵V%ͰC!"*W3pY{!pq\80JuV+6蓗Aֹ|7#Jm`زukba\ɥd -󑸕!eD; ށsD""Jo1 qT؇8/V0LIz&_gX΍Q#kx|89^CGRogb/xK"\ u}"(āJ* jtcߍճa -)΃q.2H_E胹@J\ b!b*Dͭ-ʹtφq \LْzGbzXٿcLD|u,Mxu+,8nPq<p//d^Q 99A C%Lay#LGDJ7oGd&2kؠ[Z(pZvҢXHK3gOKD-c}ZHl -#/fPM1gɏ0%_YKaږr?&x8H$jv.bЎk=ePN-Mh^Oo -"܅R vA X̓.*oG50yتWZY\+P\e"I=0cvz7 -\GJD˿k @< E}[9VRze /u|FdGgFd/8"glE;ph-V4'rwCc;Z(#FzV;^yNSj%IDB aNk$(m#PX.Q׎ܩZZ"%tAiSr^ ~,=R{!N:FzUa]BW |(|b+sЀ2jᗊ^\C_R.ggez@ǜTz5\6Bn?V@<೵Bl2C@[="1^(«KXq"c\ݪ SXxqҠK.q\J3MΓM-.WxD?3\DL;{Ϙʚ4m3E\\(V6zk/{d+yOm\ -^k(^VͫUˊ.cO^N/f62 CWYijm^A.W*Wӣ#KYUEKe ydr -R|r>Cm^ׯƁ^Бt V׫:Žaҡ/ë&:N S47$Ћ?֤ҫD:MJNwdM6r/_>TLA6f:5kNp:b::J{KҠIy њbB+HW.=pWAu˥ּUu&jΨz֚bZWg.lE{YgȬ^ݭj^֥[ ^' -kܭE/뢌uq+VRvɋ嵅kQ̋慊UzƵ煏MH.Gz Z\]r͵k՝].-{hZR: Nh>5 䗲'Zm -m& ˋbl9lUώQ4\M!+ō֭fwMQܛ_.(Gs -LobAOUHსWGg75Nk ԦYEȊk_^<<57ؼ`|'R&2QK1aM`nM%Ouw8a?x78@A+0;4'5Lp7=ݲp/2â@;8 ay8tJ4myp][(&8چxje'LuаC[k$xbE1Mb/$m()HtE$ٱ[^԰ 'N2ņ8FFHCx-$wX&:#q!A)Gx# !1WZP*VdrEL+kzhva -=F$1"QQL&DtHiO5/^󉽿!3si9|2Xvh@+$yc{gv#@C%D S9N3f @qKJDL:ጄ:gn"z:.d|eBL[HM0 & &X[&W3kq zuQ kY,Δ') ׈bd9TכK S'X*ÉS\@6VS LI02jBA8 n3]y&@%l\eA+!M TM"K020-I &;2!0'&'b1YHc#ˤS~@cy0O.0.WO%2lW1.8EԵ{S {0EABr4V($ʤ)bە X(A/q6=GD!VL\wK! Q ]꩹ۧg -rߔR3VW-+t[s9\ -o@sHs}C+ku ÷k! >*3jO;v-kQ Ϲdk[u ѕk}v$ilǣ.ѭk+1kxwr}+ȍNN`D5qtCSQ7v8uHMz-,NsOn̬LjDΦ-ibyne܂ܓj6mbB9ϖ ls'f8gNlj~-xf1nEX6:ItYsntΆgiůa{7:VZHpsKn5 õ\d_kA-.1Uۥ*7]NsKrnqE>̻l{_ BHaeV,[wAp!8)*K]:Jյ]׮صh m&+rBUKwnk|.++^+^򅦡Ƀ'?=L/_Huaq451mT^JmW[-teSozS~C}X1X Z!~V Ȁ@dJ׻B/08Hxfټ Y8^ew4>Q:@$f3@3^Qv/5DA:`uX4Tn˖e1@Bb?{߭ox؞gmѷzY vLLTDіg+X5Ud7st荧{O?FMǟ;O,8u1ZF[i| rf(?x7 ` mCl)Vi]AY2ύ(,ʝznQ\BAAS[l%d9v[ ꉲ K,۵x !' oc -[Lə'"]epEU,Y仕I&<*? CpFuɢ^W~Up׶Vz|X è:c pBdab L(eT&6/BEJ(V{@wV|mF{.a9KH:t"<{8V` פ!?~_O/hIk|t>;Ob'q #G+N$\;CZp95x>QZt:hY* h$Yo,B Act/c}{<'*9gxF|#Dq_V:$v"kt$sԞ,}LT -r1 &bB}7*}^?*oz/k@,KsFa;f߾b"ئ=GlA%&0bSk/T"nL:}p*Ҽ̏HIPgJvU9k١GE-0 ҈L͛PΌIBjp3q]U-H x3̉fVZo:':y: M BBP{YqJ"%nG=tN%Hrn} +5ˇ 9%ĸؽcsŖJt鮔_.>(%NE!2R!41)#]])]rݕgqDTqN䤓ڒ`Ȧ(0IY jpsU/}PLon^rcMEOz^C*VlJ<.zG=_N/ Zm !/AȰ'(BoV$@uIE9fSe:MXֽ걛d:STT(3jxخ^Erj(hڞw(l睫a,V5(;Xj#Q;2RAT1\x-k{2MKxp 񄇄D1NjqCRwmTiU5 '>u\-BboYb!ʂsЀ R(жV5qMGr^ ()L(Ht/'7FqʑO - e -{QO+V Z ц>h4Hw|Z`KM>Ź6K֞m^Ě5Y\a3܄7"ZypgeqpY1|p2jAynA<4 `N7MvpKǴe:ߛα}UO~U&ȯp"*3hA%yW' !z Pjz#i -#g$Xoci`}+h+s45| 5K8;^A߷?w'6oA`ivie).s ..j.@a̐ qv!ʰҬpδcL%Ox0C˫0"Qi:̖a,faqc^glc#/m81+Ytď<\^ac1󺂊OYIcoA.3%XwʼnrL}fq[K.3 .XWl.whH~utlt0/V;gܸ܌Xz9koԚ&>+lF xrl惧,^!6anx 񡎬 }PM.q QZe[ Z]yɠOR\7*EF7Ɋ4会]CzR12[Hg!X/b<|^7>݌Κ܀" =o>j?/ArُB5ƃxLPxc 腅! ,K~rj/ C 6jbsTc#@ u&SEObqk^O95)&KsYczj1daYaP+b l7PbLHh=c[=]};Q{EJ,16ݻ7-%suk[yUZ ԑk;qcDz%gd/F7٧"xU.*agNbSa*o* e]gAUkj$L|c#6V=: #±rf'1~kQEW=OQf;^IpR݊f -]]Hkޔ"ChVeRQs &¶E=PQ-jg4N6IiwP7ex yr[XfFȲzśJuUl}vt̔DPqW/d(}ӒN-y);)/*&> \'Uz|azY߳N$2пcq0FnlME~(iYIr,^O:H^^ŎG:O1 G'tc1ri_.&^sw]5^awFK\]O'SF@˓o._~9f-rֹyhGEs$1Tbn1X~*A,Br#Ii w]O'U%.CմooeZ%JsP7ּI*¦!sx~1Xr]| ͙QQk۱wUNrCl҂$5m;TKRyW'ݫ6e^՜+= yq'}$,<jByv`l %F}Fңo'-HmUp"%rH2F)]4F'hĻ;\'8+U|L@h &9 -bS -RȲ*o$ٓⴏy-JurZj"B/P'6JWͻv8KځOhH5=8a|f-oڧrT -2Ɠn[Og榝Zl`0g PZLGYS`'ң Oia: -R{BT1 mLWݬHW|wRL:LZ*wׄc/ u(pvzӏf0R^T7|Wt2T2sb{xj -_ct@s;5`#..qQ9I(2#ߪ0]*U^'RաV\VkB^y.\N5Q)G'ҷi%Qr_dos(SPl[r\Ȇ36z_]K'Ce|C."WKaO9ni cr `kW -^K }nFKE\W?Um!C]î(u~,sd/,؊D$k2ŕ[=-`"Lav% -Hɬ(qxؐIŊ^6ԡPW32hdRarj b9350п1aJW'>"25;[?cqy#&",Is"-

[ҶIv4jcQcsdT`B܌νot~,hW}wLźU^gߝ2&F8n -cO/\A.*Mq Nu"?>RY{xQ&.K*Z Xӳu<]gwQt W\YjwA} ؊<k7IbcۆCEu3#| qZapWxJvI[ udl% <SU\/"5yrsB0^H"v=L/ߘ 9CF@D,E8e:#=bs427/ R`.njN6#3 - ÕNɸf }938#0;k o* Z(Ʃ2*-CГPu g͸o#>z9C詻3>+aa~^D|?S" OLQe\U-yeb>3hf;YYPIޙaf&SfȴN LғIOd b"&T$^LHuS+sfierm62 `Թ3zQ3i}fv0 "NlO7Vhpf-g7ö)а{t{N5w ?s"2ٛFf'$d9|HD.POXԓOx$yxhHO'.3 -{><Ǟ\~ah ^]09 !<^^riw=t.o.5&m>jJ{Dz~$ 1a -JdL<Hlޅ@LQB ھ4xfMGUIsإ__`"*#FIr覐UmiW)P'6"j}#|ѯ慍`!ut ( |yB݈(E߄ėbB&tV܏p,% 3/$i!5$>(vy]f/̼ޭCT@i|"c8\T@ 7|"km%6qj%Z:t>Պu.uw~| :u -֢Ni =Fh)*9'/-! -jWPXr쯗Oʈ #)Y ܲ{ v3Y|J'$~IyJ匯xCʨ/ԯ_z|g_T_ -Ϫ527S,SƁ\%Vd4;l7 o==²rip#=)\*Q\D^fsꡉG#_c^E;s\n5BLJd|XsZ(ԤooVUV6H(ySÿI(ŸRx x"_e1d"}Va:{+f_7W}R"X]:U0}YPGl,ŻXR*r'r?[+_.7_~@Ks;䖏QK0nꐜ39U9M͕-HƼR]ƒ{ԧЫqX2Q?Yrnflfl͒SF6KfF6KfF6K , ,95ldd4lѪg>(hp[O2oQoIx"YמQ'ZO^D<\4|"j4AgPᡍ((G-" P r'@Զh D( -ER9oA8%FrSF"V>{.]$ 7 +uBq5Sw@o>h@~ OD,>DV8nO't4I_uPW%U*AYR_(K+eUJPPVeRV *AYRY%(ˬ%UeqmQY&mQYB[uTVeV%UGe aY&mqYB[u\VeV%Uf m\ ?Y[]jPQ^aYD&m/,ÁRx)X e5m Y5t~@|ϯ ˽\WgS( #P@vG"^Y2PƟ?{P$5')JJȠ:|5n!a!^hžPHس"KIqJT`Mƭ eHQyb -Eut=WHA~R*euÉvi+ahPZ:*4VʱʿpHר&WGg#sHTO|86 "dFGqشL47IqCbD#gT !M# -5ZwJs4hQyH{#]BIxH7J/ld\-}{Mڣ|zcrڶ[((VOX_nKW@fLJW'Nl9 g>- -ˋ۳˯w!9PRNju8ccTRmD|GadNd^e&I E䲂BO inEQ6kK\޲YpĢY9Q}@hq+DVn /k.T@Kz[b alxEG(ފD P,vf7 NvG`C%dҽ+@Ͻuk^!? >VP*^M0HbY҆iW`1#*d?ƺ͜>Z2_9gmUB9A/o8W{ -"&w> |u+5nZ~xlea/_>+}zݳnkPVK=m):/3&#{P*=l]]#5]#^BJ-jrmѐjRFeD$z2?2`3nCC-\ш-m' -&֏V~pᩣ}ЏD]g/v!9&MTi -7. &j}=HǘqEcÇ׭56Mgi!NqQf8:qSWgl{O՟<2ȇ)ޏ*+$ Bej#^NH[c3 |4 Ht!r./VF$g9 7ٴⰁ"m/TF[g՚͸Hus/Rd$\ڋIndfb. gҲd`~=i8ə\Lc:inLdgF3zBw2#U^hgo5sp|{! mh[I-t2-M|tߝ;F|COBaD t,S"]O,nb 2+j v<=Iƙٲ_W_ K*~|ۛUOb+Yz%7H.]2/:$7YάTtO&J|75yik%{֔"j]R< JSh_DsEys{3`Q'a;}V7hho *$uencx˽E،zMY&YNgzáUC ɻ>Gl@;`~D`Nn3{\_:͉T-TzLrh[(( ޹B9Q#f_A5^:sq n"7S|U68W$rJe–Xaa_}o;/?vˇV힣zaT 9drB3:+f>Z.|yTJWKic_rKiW#="`8zUlUC /wrd]L::UܼLx"zQsQ! ӀFfm9Oڡj&h8:};vm]"qrnȈꀱΦ 6p4Tx gNm^!'^ulXpĦgfyQ3-F *ⲓ"H -b#fQ Ep*WXU3y\ T/r)r`RVrfU86kُ5+Yֹr@|~ZEljD0뫎CJ> [=S‰^KDmz;xE@,%~[dH}W{&VUzGm|H,InD@(7#Ab`6:U p 4|5zTt1H^M5Ed=~5oX́nY皽eo#Shs"5B)RA(^|%uaJ&~/$ -ʔJ ۃ:3 s\C8l=],-4qʚBÅaGW=j/JGo~*\m>pp>n`.qaࣙӝl{pվKN9>7}ϥ;h,9h}L*ow:0g/*~o~_寿ŷ_v|*U+YҜ_}on}o?o=o~ow_|~_}?_}W7~;e˯?C?o]||ҿ7a]??wG矿7?}Ϳ7X/>~[}ۯXg_?\u]_ҟۿ_oo?D\aUY)DK׿tuKٺ|?_+ЍO8CCLVm9=t>!_Ψ˭.(͆rWk?fSn,R [E!q6s\m/z.o;((3*FWU8bΰ( -YnʇBܕ`e$väbFN(E.3iGj!K~FoACtK㝆5ij軠_犡 r -~2]0ul#[26nGJ~zYUوaW6#98w$ -¼u+."+?Nj2**\8]2ue+k#./Jrf+vc~C1|Y_ xjˮm/@Ӛ?˚WenkcWaSjT+cHAU k2N14c}iK4RIpZRN0DE\!]2ݶA2OLY<{*c<%)廓hZU~Vt~kF_zrY'?xi\V>un~esI$ Şh `ba\eP@%t\`wA bju&L/Z[RCF͑u5EnjxT~`C",uEFsԔ6͑oj A-#*55f8VU ! ĸT T%ST٭! -/Kۭp/|$еd\sCp1دg^,㬪vZM gO[L҆?Ɋp]Ohv>{vD{r+tQ+ PY%D~+dwAOs7zٽ -` -B uHCPq"ǧī'FQ1[/*N/nձGROeSY-VD[: L`DseJ[䞺 bieeZ-U:cU.`p!D}n-2:<TOW^9.[*|<μM%Q e:U\ -?G)aT}e5vJ 6MyCE?ͅpv -t/UO<Jiڱ]Q{îe-X[beC[@@ӷ4ҁ>w.S:[+*1^[ ޣTSqz|pd|)"ZZS"bSjQDhokz,E -Ǣ+M8|[TM(*rζ+B_? ]S%A'w@nݎ@uI&yӬr"h$X4LpM+|Tr"dXCp#':3 vcd +lB$+q^MY8ܬPjWv߷ʔiYvɭ]"6g${@7Tڼ~Ssr-k67`\D*t61 +I?IO (wa5_1;= -s0 -}]|nëBO@IH*UR׷ -I޼pа{Nj"@' 1E#~8Ieߦ%K'Y_cC$)8J -3Fzm"H&='.@r8kB -HBx"V*[Լ/b2XOm}Uo,*we X"b_OusxYjh@ ]΃JƼVwU\h:)Qձ]) -zpӠ5/5Vm+[]e:o"wF->/+9PJ{ +p3n/v̌4D8NK}| -Vۛޗo)w$=HmiMI]odI[ :i73`M^2+DI7.m@}ܸfVJ`WJV־zo߮9&p.hVD -ޤx~Z(lN-#R\e)8v ۥk۴bFn;XгYsESVKqʢYٰ VH>i3ˀnUB)oujCJfulX<3&&4SdϬ@%>G_Vg0O32g^RDiGs1nX HK0IL@'q;@% 2wGwZhEfE/ؙeyȇ},! PL\UHIqf\0^R(cu5Q ߬s!_x|qg0!Y@p9[ J4 1"Mt8h  .zr_w%띇0ATQmu{vah -.uѥ+b|a[^L_㩰Hٌ~ 1,2ɒ$䟴)fߒ"uJ%=(72(_ -,XGR 7FtPE*Q]/Y@D]01{ ڈ7Zhn(gb.|9sն<0 >#p&[X+mSd%2̈ruI?o*OurJH 2?B!QZL(!|/^*%,e@1jCAĸN+E ^%86Ω5v0V־ G5,#Amm&M6$_U FEj[!*%H%uT/eM~炇 -\UܒC:L٣x5?+a>鰝B1c=_tvAM fbdtmhYM=F4,| -C$2.BAmXoŪW~2R hseО(W$ͺ eGR]rUEF4Z ZEjqNk%Д-aj -01Ik]ݚEŚẋv=u~/QV}zŏ%*am2;U-8)L蚭y;d9j64bY+j!6ћtjqxv>@odT,^hZ"i_Zd;N ,i:,3p?HT{ΣYIR)<|\lu%7!)vTe6\{;ݟ0ڻ2f#Xl:z|`d;uwY=eo a@< W$mV3jWE#HYO&b%bSSgIF1ɬA0(6\nWЈ_OI%CyU ׈Y'OSf ']`lC&I+ -MzP󊌃ڎx eQ8c0r-*1iXIBD#DVkTt&AсOâӪZ &W9k>z Qy*F@w!Rbi7Sw(\UEX@Pfӽ:J#-|>,Vh8zyLB2]9h -=1*z2@[nkC SCi寫 ^զYVrjVBv'=%|a4AJ6cD!ȹ]#J7+B&A(WI&ŷdKvtyGDȒB-[N/~â2.Q]0` 6a(BBh8JHǿ^U~R_"q(gNܶ1$aE -9'r9ZO2gJrYv!O@lwt3YڲKwCV-]9K9ܥ$mASѵ{Yp~a:-bbɜRPW!U9JG$6v:vbĄERx$ rSct`8N|V/Lvkpr0*j<Ɖ sY)Ўc \ų &ˬԶ冺DN&8f@YN~H;L~}a[XtoTqm6,64?hI:(Oe1ܢ0ɽ$XN R-HԟDLҦ;ꀨ, !qQ .q;-!֢{Pu욅y DW)FQ,lKȬUJ?FuLaMQ -ylX`C DnHQjaui$Xꪔ)([`84#4ZfUt]͋ G -V $fk &g45e<3TB]ݣ +(l Qz`\Q籙FD㛱FP坶mU'F>~q %iSJ1a}][/\P0c ̦TR{(VŰ[IUXD0<ZPgaickSUL3#'X]ݪ8-բۇu Ԓ`)Z~{K5MG5yR/2@J] 2\DoYriy$oV;T^ )!R?Uu65>GqҮ[RE顠" <:YtJVlMV$`𗗴Q՛ǠX -aiR]A5W6P-on#k}CC޳*Zo\P888f*8+#&4WiTv8Q;7<9%Z*VC}?)Y829VVj1 }S$P!"8t]C /$k4.3?Hdkj29=f'O*-ޕJ1GDž:y e{'3ܪ]7VY5UFp6Ͱk5e1}{r-gq5 *angky }mEg6R.y\VY0 DpC3&sV,B`oeLc̖`1 Y?7aU-zs;U݈T&'mmfOwufyIz7JZ$Q$v#:ua6Ӫ1Ě-D\>T#YQ+aRT lu q~͠jۦMՂ#뭶`􆍢RXV}IVС)$v⽪x \ c?oNɄws}io@/y -3@lM5%h9.W/)OA3.P/[EZım.ұۚBIa?1xjLJ;R|s(d,(u`=EMT ʡPx\ 9hj^rb I8iKgoa]'{q.C(8@ -O)`ѪR403(Xe֦d+NV5gbbK P\ pcvZV#^E&dEJ5 XDP}es;M*bk $uc*3 [^)aHCYyy-f)g&hʒ0S~yz?JQMBX*o 7h&FZڼ&F2S #-zoc"}ļd|+zX_e?0%՝r^Lj.S8ʡBPA4' c5i^6Qn!{XF7Vc$1DzeabE@rE^⊶D3KJB(S][pPiisl M|Z 1s>QR[kAj9BMHVbj3L:R#٣ɒ#@EFlKH&7\hCzu1U1X(JvOXH_%d!1C$TCFFu*Cb/vaKe QqJm)Uǐ7m8^ҬH^!P-5ZJ@ -βqvpls,lvo-JBJ[!sŰMihDٲWk](?[" -~`iN,u -)q+ӕmc{7)e#Qw-e]L9.d<.$vR_HTW!ڇ. Zz :B8)RBzڬ&&jeiJiiSdy]˒J W1`o@S329#2aaqY6UK-~#(otP %%^՞uK0Y_3`(rpm Gg*d0.i^ṳsU*Ur.$B)MD\Wa[Ayk*ourv͠+ -V;U-ء a|mCрZl;tGIacdT8OEg59%vSb@voXݹrTG.X2wm{T :'wQeXک jE(k*՟NY>bX?{)QW-$dK$e( @k3l8C`?H!< r9֪PbP0x3QO.JNb6k@ZԼO@P.#u .^Ϳ+]{5$UqBfknS҆"jt8;OU`ChTu;a͙2\$,^=LDVGL«DAmZ($Bڬ7_bM%el[SLЎ!ndu N.N.ug T\:W5$j\~oKr-Z^bj$ŷEr+Jޣf]{_w ظ0"L*ĽWU'4 -굈^^w; Ҁ:uf:}{.qAD/C6Z5I"V&5Ī2ҧzA,Kⷦ NHѪ`>HwRX  -%ZR4 u\DH_ˌBmCFb+pA%|t$D?ߢ7[ĮIOM٣+YSFK蝵&0hSѓhm`̪ݝ*'\28+rDb~xJfba @b6z͇pB͓fWW: -ƀMH@"fj%n_U!9BrfeCY biQ8?AIRVrRTeʯ wp1irxv<@>9~-NtDvuIb9i ֋BQR iae"^QT>vҖd&4o%,`BEݺ0s-Kć̍Zmp 6ϡ*P@eSF3z_,ga{PհMPmӀBeEh]< HYjY<-Lc >#lEI7Q u8Od2n/<`G41BG.:@kTmtր^Wb9K0rDlAuy9tQ,ݾ -MvYLUm2Fl5Ǟha`#;8 k>OV5wû/iRQ_^>DHLU)ᠿwudö+@Ź4Z,B`.xH|]-u̬(?Jw)p -:+&I+8ue,JŐZpFE`Ow*)ᡚ9~O N0Ʃ.j -oء%P:f2V|V altL>Sƙڼ{Q5Ob $?AF""G& AS*H '3<'8ğڮ LHodTބYQ'!lQ,`I+0Ձ).W`B-sk^5S-\Bv+upj[I E- 6ırδW+h&CE@5Bb d8\-bwP. ܭSLFzõ R M@v[)}\D(B~8(#Q_|+,?wpwZ '҉dWdW&&bٴn7LvPgLvLLvv 71!쐼a+0LLvEd#_ -ÙnE13Lv%QɮЊ?1ف`dd/m`Cr+$[Vf&sdWd#`[cb#73 0m;PAw:b]onɎW xex-$7Lv'&;3xejɮ F&_>3{dg#ݪБɮKI1^7LvLv9_$$ ^7I|\*DvDv#']Y'$t$Cp['{(~zUW%&$4ODvԙȮ -u&Q'DvLDvUu"JDdd&CȮLDv/Dvo@"λȮ$p"d"CȮd$C2!yCdWBdW4=CNyAdt"e#'҉Ddw7DvE$}Ȯr +W|%+Dv]n_쐮ى$J]!Nd`"AdWD]ut"Bbs$+#׭C@Dv)ԓv%N:AdNd] -N2 -Dvn3uDvAdW/0t";~ٕZf"bԁȮ F"DvȮ8R0٥4슠"o]z$+U"Ba$WLdWDdW8OF",oNDv&"*xW";#DvEَU3=4`?yّ>(5@bz!4 Ad'HdF";=Ad'>ODvDv|Dd}<\|$ӟ";IG"; F";+<] -F"aȮ$:MG"JkHdWȎ&"; ODv"~ىx"c(&"LDv) ";֌Dv5pz'"ZȮR0uUڑf'o1m t$`$[yCdt"C0U߽ZG";[Dvm3tDv]0[u߫D;$cMDvR0٥4S";q?w_]JȎLDv?*qȎ1 Ld'䢑DdWNa͑Dd+^숏NDvUB";`&";4Dd#]:Jq"DvzHd'I";6׽qLDv]Dv) "*wz$TN0 zk$zId'Ȫ}0Uo";yX#nDdy4*U8#]]7Dvu9f"ԙȮDd6E2^n?b"MAd'HdgDvH'"; F"; Dv?!AdW#]j$ zٕ@ -";҉#>3 G"" Ȏc$#<>٥`"Ki1z3]97DvE#]a`"_LdW$ C<!tȮIo$+g -O";36 I<֑NO]a1ODv]2٥8NȮ ]Ld"R0uqzMu:']lb"qd"NdW׉=O";'";$37Dvg";I&";IDv'";v"+g{Cdj:/C[Dv)8F";7DvD{g";E3'";"O";"#B#] -f".6" -HdGd LdW]l"C<I2'] 9uDdAdΘq!x$#3 Ndׅ9UT?١iMDv캉Ȯx!$tNȮ~$CȎ -nDv]Dv_숢!+BdGpz"+O""͑d&#$+m!+ٕDJ9^0Dvd$ +DvNIɱ,$O";'";=l"ӗ>Dvu@d7HȮ(t? -eS]LdW"bHdAdWNDv(7Dv3Ld%]|&#$#!7숄!#6q";B233o:Hd.NdިN";5Dv4kNDvt] "3]]";]8U>*=Ld!x"C2!yCdILDv -=XN]%}2}CdGLp&{y!ȎHdGg&#dDdF";o$쐼!S.c"Ȯ/O";fDvīf";5i?Dk0=U%DvtDvȎ~!Dv)x7I2I$C<٩}"cD1AȎЙN$#6>١9U5܏Dv!T3]BLd'Dd'ɓNّȎט }UUmDvh'ρN*v"{j?1%*^Pq#] G{!LDv<$NdO";ؑȮ*j9U!q١'";S#zId`$*|$x!$t߃f"DvW "; Dv[쐴x%XFmI z!9=Q2,}CdW&";*u6!^5٩g"5BdWBdX΁I]W"; -Mf";sG";oODvE@";3]}2!\}zJi]1΃N!Ld'ɓLd'@dgzr36)$#4)`9QqDdǴDv|:F";"o -9׉Ȏ0Ldٱf";6O";^f&Sj$GI<I0!yٕDv6f#7DvLdWi2=?1ԞDvEDaDv\$t$Cb C쐞 #kȮ~ +bjIdWN%#EFՈ<쐎DvEWf";$ "; "; (z%DdGIdF(({ّsSODvE+Zh$+:IM=HLDvJ Dvd)DvtDv&eO";Id8HdWT;}٩ g #V;aNDvDd'Ȯ -P}O~ٕ`X"uIDvE\]+˃NķBO";V8}$STt$+b;o$Ԙ.ODvDvao"rz]SpDvDd'<ٕ!t$`_;]Q%Bdt"5'";ߖMc*%m Y:٭*mȎϓNA{"#Bd'qu";@ԫ0䙈V_쬭f$#NNDvU7DvLdWeҍDvJs?hF";Vf";=DvΟxȎ7DvUT9#=٩Idg=l";#&";IDvJODvgԶ g";DdG ]w'Ϛx7Dv&~!#?ٱg";u#>H[DvBdّǞ4#Id昈쪖@d6٩6i u"Q 5UiW";,ȎlDdO";lȮB` AdWu٩ȎDdp@dLDv*gT0I$X-O";#]JdDv&";O"ڮ 9١Dva"Id0Q3ٱDv*T2!xI:I0A";h&";F"F̓NmWȮ F".u";#;GHbPq]g#_$$ؠ[K(ًeZ9N[oCPvBN_1Z<EBM%(;kT|TPv](;s(; e73uCQ>+(; e'aG e'5v]Qvh e(eG^G5^(;feG熲[(FOToCi{vS@PvʎPv;NBBIxʎ eQvn(;P7N5 ; eFa촄H(;E7(6#(zO(;y4$ngGy(;r;NBB!Pv;ʎ7Pvx,gN(;vvRe":(;v e(~F١Pvzc;.@5zUveG.(;m΄oTe/㎲Ӗ⍲יQv$J(;^(;ʎ&o:N1e7N!eBF-9Pvx$NQv-Ewf%dz,!1˙ ;I8kBw ;wVA$C=ޫ4u ^wRWDVdT z 1bם ]7Nt]RL3Ķu@_ʵuZVֵFI쯥q0T|ZuFN˙xuWT"l"I;N'nJxꦐhS:j? ?JMH<趀Dԩ⼾u=tvt"z}TIi ӭŦnw5tZH_Žj갮s 1KX@Awij^; 8/J͟fs5ϩT|0k -Yf_*&w0prZ cΑ=b'tNs4 լ4s]$}k.+=2p %Y R5NCThq"ٝ]qNOΓ8gOJqQ/Z:O✊l"N`eYE#]{s^ 9Œ9;s`'/!$su&rN -Ir'r4bν/?kEL.zgI38L-szCaO)$)sX,( -4 9W%"Oh"),>~oys>p^NAnN{,ɷ3jN\A#XWIhPAƁSQ̝WDVLf48c+NSsSTtrche$Ϳ7\hx˩J -Ε;ÊձriӋ]TF`4L9h4HH9 ;QN[rT {Ʌ89Di'tLggɩ O-!^^˼@߉$bMsm2E{q"f3_ۣ !Xp)ZyVmq!/F#R U9CrR'A䜉+K_ ' !ifń+d9r;B5N/T}&Җ}BN%>k!'$zBNjQ NQrX,φC!мj&D imNSF;AyM>ý-@CP%rzC8qe8``wD?n -;?nfX8%mGqv3$;hu -x ha&Or%]s)$T Q -N+bȽagqiM~\qStzzu` -3=N_XQC6n#8p@_[Jms4D8~L u!kG=9pR,8)4QYb8p(Zgd?2w+gAw&&28B-90p}_^}v~ mf]PPH]TbPঐ)pK6 -k6MG,-(p]q WҬ5.g׳(pfFSNhGjR਱tS(pK --Sl^Ո8@Z "&u2MTuƿqӑFOriK&7tCN#K /=g_7)& 3'q/\YY۔d&=0&Tn7Ӗvbg߮ȷMF:Z% ľi{|sp'QC߰maA3oK؉oS ZOaiMFD`FY[I{;ݧ,ޤr~p+6ggT:aޖh7 ooÂtluؐ=U;`l] }Q;|HdS ޖަ_NS!w[J-9n͞|7b~z6iiBcwS x`x7B)lBq߭t &O*L%ݦ|74; 3f}wKRwS#ņw{W\?wcx滕q`n2@'E4 N$r/ 2&=gƻqIL&lUet/2x7PJ3`7O, Lfg4b3'M C&٪<qsRp2U%3vCƀ» X۹nRg YyN[=A4sݠH0M$F2ݛ; uS4uudauSKK׍_e[d۲$$8nR]OڍК.Dhjh7v& &Dћ"3n:G6%WVl7;gutf_}V~/07^)b*%;MWF POwS\aMYM w3a -B?n(sy~H\@ WB+Hl7fl7N30†!llc`mq{l^_Y&( jtzxnop AwCPP,Ptc$(nn kD]Nݬ.q=nLS -ޭ`e109ޭн|,p»QYvIw>/Sp#ݴp-n,vDϧ}d5{akd7Q3JupgaݨXMg"u 3=bX}G)i$՟NZ#/&O_87=(4>&Mo vʳi_$6]Wqۖ/@q`)fApá ypӶ lfa 7F0Hhb:PgC,"<4F@pbq`o pqBn[$!0$n:it!:(v~ gu?u0;ѝ%:CQ tU/n -I79HL~m,Zm?+ZQѸ4ˌf۴S|@>mm{|1m1a۞8MkL6Jl qGr]k5ĵ]@=IY%; 麵IjS& i'ͫVRViSJӦ6M!z҆'M)͒m뚄6HU7@VAOϦZbmMHSͦn Φ:Y AǪͦ3:n̦n!POqҝeq>lWu~S/^x|8mF/mI}>xǦx16LcZ_ruG^ff8 -endstream endobj 21 0 obj <>stream -Fb${Pl -Gu44ɀ9lXR{ǰ$ -aQѓ`S7+`6NOinO6m40nf55%?Q&`o f5}.W RQvB[\MQ; ,U6ZGfu&YuZd_bc桟 ݮIUkꝘjcTh5G4a4C-DCdsԉSkZM\:~f̀w,5帎LҭFRSρŶ4A fUO &~^PT؄'/ CsLJ5BfpOALvcw? OcA;0ix,vx Zb O#eilڿi: r{фN#[O~5izm}R|6,cXf㊳JUev2`0o;vvE=vV^~bINӌsdg74UA&v2AjGI(i8Y;9 XR^R+Cwt:vt -p&:M"W5}iZZHdsS:: Om?LrV46c9 mQ'L -|9ĩ"ir\_4pplMӟkI4ŷm4b1 =lc$[PC^bQ/lnىBDhH~⦱g:,H5M FEuM#Bxp(0NܴBt ۃՔ$n/Yn>L M@M7K`*Y4Q`4iʲ4Frvld(*RM`Ӕi Mchf)'sX[Ƽx&BMMC¦&4K`Yf6wj~;^@YSo4e>Yy$fs@nL>`C}!S^iu6Mm7F ޅĎMSF5TP0e jZmJ4%U:4L#EBb9uMfayRqy?އ}kՂ͠~04Siڙhpڏ'C(+Ri>rff83MB>43J#+x7JZ7Xi~Xr倊3 -Xdv فG4Ћe1M4-,ME%+[$$P֗Xiy$A`F`Is>QizV@*adV`;+XiKY]KuV+ oVѝV+ hwV"1g!h V-*qJ**:Piر$VZŶ -ai6ՀURG &7, &KB,L,WHοd4 _4 aIxt$X.y~`_nu$'79JV<+M -@h/MQi"4Y*M["|JcZn}ZMR%vR/cҤZHiDNLuk - wR͐8mRZޙ==[ إIiK4T !tYL\oBBYi4im4r1aj3=;aik߿Kn -'Ɓ\kZkb*$0H=;!sDWJvbJBD)޶Cըn(XiPXKb!i VnJB Qfu(Xilg99J]XiV䂕 J+g)'+MuvsXR-m=я#밠16LKӖ"j?K'.̈́.R 3#LGt$`2LCa -` .vY@pL<R9p-iW^,9iС xiL)켴%$^ڒFY|ը4'.jɻ9EtܫqҴKS샗~~f܉2S546tĜFBa'YZo73^XgNK#b{qh4;(2+ Da+h<=ecGNoJD9i'&y= ں[[&tڕ,=3E?'Iegp)u:3հ[{(v\5,;ή+I]9;9;9ÝEqGwR0™-fovotN7Tp3url7TG -a-pS50=ZjX9=*U WfXf'mlF"όW{(8Pݭo;, ob#ztu¯0fp3~H^T2u]2vtuY^#Tþ䠗ىeZ ^fB/x٬V2m)ȭ,`/#(f.d&k _fr _~=trr2r^b;5h`@|0Qa3%yi>3C`V"q?{GN5_`\eIB//+O/`{ш~92egp_&vz/[J◙Y=s[. /|䶺/:Hӛq`ƀ;l1fR WgٞA<%;LiO2N2|Y -~Y2mpL*{ʮaA◡j3^W$$y\_-ЇM _64Bnm[ҍ_۪ |%|tAIL b.&_oN<ʝ&^'x]VpE\`&22[&'e+u~vvD5?>.CP2<.YL 6ekHǝQ첩$vT]f]r[vbex_|d.S6}]'e\GmJbdQ(r,Huߙ]F 'GBz,p)i}[{z e]))b|Kک^K1S m&FːBEԜly&z7jla⎄ ^fhsٯ? -c^ZMF5J;̈%+2}){]l:lLm+AsL.4ژwzW^aiuβ60U tˬ%/Su\—0KǗ|ĒQ$sD/S1+^+)$zR^F9Ml6m>Ow—MV=eN53Vlr_s2HoYŕe0TˈHg˖˖)Μ_Q6(;/Su2T/ӻi |KDXq/[0j̴5b,UuWjqɖ=X z+#̦3,i/|\$=LĬwXIZ==ne7 |&!Bt)`E;=N,d8M;GuxϤ2$Uv)YrqwS:Jj09eNYgG/jދ -|YM"Pm+cKqZyȻZLގ X֛AtQc -z;FO#?Bլ*CfEG;5Erms[-nYvREe)*Ze]nvߍΦ[\DzCe+I_k`Seˈxet&L6Z0+Fc̊a!L 3U7ԉYe.|qoAY2јtsAZi_q*lDMNV&ۺVv,nj_}n83aPG/&%h7- ˞YLaQWG=*2r%+%-Z[ˈ lowݘl6BU [||(~v e;Pyq 3C:t$ITed _Sj(F38q Z_Zˠ||Rl(+SW'nSXNFM#Nd앷fɝKɞCd@e,'lS[ -؍66ZWFu ":,-2c>8 -=Wme,Z&az¥xIӽP&~È[CP9sxN`1k-Yni *ZRcs6ACv5fJJ;@ʹ 3B9ۂ}Oj..(Z7&?VϠRcS|ȊJJoh=Zt*j<ֱwT Lk!6̚^9 ,)u7ǝ#'lZ]%ց#̺XoM2:ʐ5tDa]{{v!$S]-2-)u -}u1L5n0dTGh*8_: +;a>=IuX.Pq1T*&T OSVϮe=KROd6/r |xiB޾7w⠆ )/s K-** >~77Oz)9f ņG &MX jA 86oTVx鵝&a~e>#wex)]w:bҬɺ$ -AsZfqE͂ڔ_CQuc] -Eb*Wu {f,Tڵٖ,r딲:8Me)҃$L+*hKNR[AI"+R!Ҩ<&@r6R`w>}̞vڐmlsCƩ?,mev*KQS zh7*wIBkƳ)vc?PceSŎ;,Y Y:`YKWVvڇ#۔k]ɵ"r!Ҳ464jO{OՓduse -YoV0eT(xn~E7_Cfrt[O͊Iٽ-~:JYiv&=2=FfA^z%u6;gR9Yyʽoo=v[T+9 -s1EVЫH]h7 r {cP=iC,sû\i4k[Ůi5NYCWp*jM.VW;_r'>-6º0qXznZY!>c -yP5w%k'FQ3tUNRw"sYiRyP Z#7TaoF8C*7g65!nl(O2"ۯxp=mc\L/jdNI52>dU컪)'&UMۣ.T[6j隇孬YՋ4;Z=(=Q̩+rF{TØ6KBM^vn7(ٺ ˳WsVv{qn8DKirhZNK)C{qriY9nյ"늅˹$:_]ݑ?O) '.7; Hq]8 ?@ɉlrBW&)N?!>f1UR>cKvw[4}mrCa1u hpXlk*A|ye+()~sZXV;A,̺v],6iyO'i!Ъ~^p8B߷r6ZiR?/D!}sAaٮJlK d/uil߄1%\}Kn)TV vr _f{T9EB @obnT6QKo^j}56ܒ$Rm;EbźT,a7mG?53i -7m5Fj<9e/zeESeXYF<9KKBYJ7%*E="M5p⺖~@CW</c%w,]3%2-ɶA["̧kH؝[‹;PYu4fRĦk5# -0x*{٨rz`/Ԋh>zuqK3JYNlQ喢ެƕin/]X` M,t.<찛Vȁ$Řc/(,%-L'@F%f'\C|/G ?N_a{ܽ.7J<srnK^,gYor:'>NˊrV4ezOZAz "seZeOӂJ;4/֜%$ljM9qRUZ62Z -md;VЛ[䖬n*% -&oPO:#2*{՜)m-yciW3yXɅ:Iy - wT^KA'UCJQ! ܐ5QY:ESj,Jp`6h%Hg SuI9:cB hFaxpI%&CDiBmlE]6)rRذsKa<Ѳϛ|/ -0p2]sAq -slIiDe{@T2gSDY +H|,v_JPqӹsȬqꉟsT FN-Cɟl3Q*Cv< -1ѣp󖾆6jBi}bF7Ѝ*T^DLaWml@mYώjڻTs!Spl9qB.ݓMyG53( -j9mbejՃvYϙu-r!w23p?۾Bi'TH>ѭk=ҽN4@'JURN+&E,F{J /%V,%ja[cQ/VjG KY ј^%*cց I|m鐵4i?.Ez)dGZԒ{7`Md;f#I]W`.Sի -:yOZlN=QIRUI΢I.Lݒ BxU$aq1LFNJS -eT9k.Fvŋeul:|`:p@(>ˊS++iNWdř-hUGe"iޘ4,XG(}T -M<4Ҩg)#*6uEX,f B&ck#<;Z|BM3̭{{AH|?ӑ}m`y -+Cꨊ_̪:h0 a}o:sx-șqF1:imʕerIwPB؈J -hPϤ::՝/~87l]([D sH\Vݶ :nK 0f07Ae*VeV[WsQ`*T" [t1qO;|w=+~Aq9gz$X2P{^J}YK=rrBV2ji5x]+8f-JU'NPߛVDo%CzN)r4X"JDžFl| -jJFYɄk3lӛQ/i@ݶ;LCZճXZ'B̀uh]-GEk'/$,<{O@KIoqg Je]R$/ -/dzC*DXNtcrM>6n5f_\#/L,5(A^Vlfrz(:shСvۨKe,lg%[fE4E -G$a!ns<<0|WQۂZ0=eGW+ftPcw|_X_29"p@otQZOV -ύ' `@XGrRrUL@OV:-.6M]n*h&=E-+n~q -&Y(ߥ و!$a*nl%*MQsV"GY >1={CҞ~;jej[)nF"!w~ÿmIzkNvFH72Y`>El?Ty=H3[Oemgbz #AJ@CURk&{bTTbt.7㽔TL{֮ էI8N*IG_ v;/V+?n2m?'O'yM= -؋$B*sx+}e7UX}=L]Xv"ѽGR -בV1CnchR[TA'ݽէ)dH>g2&nd9ɺ+$[Fxx"cu, &uXKeQiS,Q/۵_*hSZϵzYx)5R -*IS֪G&9̲_독LzQ3xi}Ea佇=HTM6+[Rlm"?rM5_iˍoyM5߹ 'JNV-?|&aA 6+ SI\, { b0UB 7}l -TI(mY$$/S?JG7="=X ޻D*⮤֋%շ'TVmd9AVŰpY -QDפc)!e:*N;c##uF]=fظWcup=2e#K"6Z.'K]V5};EBc״^n"&+e&}R>xXLGsKhf5Ӵ t7n8֬Y[͊K-ʰs-n21 Ki!eR~yLi\! sܞ2v-5W\B#*~9BJ)V.hrPHcX%pB`h6QXS#VXrXV_>̨r`f=Z\j5]0ܶ;)O=-tl?z<=ke:ߑd٫`;-z0 $>/eyo@z#̈co)Qdzĸ$4i$7j#axtX/ST@# EF}ƅ?}[h!8˼"tTL֤)WY)EV"?"Zyl2J)ଯD Z`Bs6@0$!Amq,zϼ~ǏZ_EDB%d܃2!䝤*\ l/hŚHY?c֘ͻ<:4Oһ0DuFakL\,H7P8Dk aD) g}V7SD] ⧬:K+pݻ.4)7ieʳc3&;]d2 NܗxD(^6-1nkTK!ubpNECkM!}Sŗ]Xs!`CLr\[Pz"pݦP imZaBA: ЪCߛ'FնsK(bXpD֚39(CFBpma@ ʍOI y]벂E O=@ u)~խkX D9)$\V4>#Icm#fO<=@j#eFqW ջjsa $=+kUN_(&1o҅dfRN9̃ôuM@ j^6ϰHH9nR&#PwgԳv{7SӁ@#%#p;pXp;AeP7V/ OBjS@VpvS -<)(V 6 QԞHqPzqOMSG:T궍 a< n,|rӥ0l>k7bսX3< Fg΍ -㔐WH$(Cߟ㕃?mP=6M\lw%j!뚔l`{ ; -[n̗[9^yKw\k*{h8~h#G͏Fy eG.T٘q&(rCBe'ΨI"ۖEK%S6>hCϕ2ɂdbܨ$Э[FPFSQU2M&v2Z9m oSkT_ iIfsF$:6nCȷu :iRm|]4tׄ\l8*DEX^G[ò}R?i8K>[LwbqEx"lv`t!R ƈlAT4RPa,?Y 3hމ̎wa\Έ'}lJd|>E>R*Ҭ$ҁyhG-)!ZnbJL1BqK;UeD.e yʵɽ)Rr0ϯ&!,jm!ɻ,ſn 80Bll+L&L\Ep\ _t;ʆ$oݬLUNUsEqF٨*b)==}mMCMjJ4}Lucpצ NdQ(VP;'dIƵ˃D! -xa U3pƯ<%;|#T=ֳp<яPM`5=g1&B8+W(W(r9+):,謂gP*W-$iCE.##lV-TT:Ɋ-JbvG5pXY2J$P կS߰Mp<|%m, Bv]bVQ Mj˶S{ȶT&7LrB2wp+\x'unٵ-tdw=+v3f6R2+b'[U RLpq1ˀVBrkJIavFI}yTo6k!,X{8n7v\Va~ (dHϽ<|Jҙ5>~ -dFV>r gdT༤~-8 --s}5?@0sFu)4ewz+rvJ437cf V_ޓO_׉:bzM_>h*R0UU, aU.wⷁBAvN|6S-@*"rG2|rbʹqE&Cŭ-|y0U|s5;Ae*ʘMelkl|ę?[d3&QK1+q wU\ "a<0! -JlC{TP N&6/a  ΦuszAȔ޴D-AI>l$jV 疮Tm(sóss~Ә>]fX;Jx%ϧl Ddx +AU>(V|A em[ͱsgȆ;K'c}sGVCjh.R|>y.0, :R%O"tL\Z+s2gye"t ? A`ѕrm!x[{QITʹq7( -()>HO}7Fݴ2xJ@vzNfLVBgD*7q7e*.9UWu;"qٜ,3q\EQ*R*b. h^R_\ElWQJ*JU$ܚR2Wc^\En3WQ&\(C7W U KI\MvUԇ*]WQJ*_*sye*/}q5mefU\J*ns狫ȅٹ%bUĄ,q5d;?WQ;U\J\E -LWH~*}qĜ'"Qϋ}UԤ^\EU4e**R(*RݒRWQ›h늝0q>objU3q役T0$);WhJ\EWQ-ht/Dp*nU\rp+;W܋&s2\E*J\E<WҊ*JN\Eh6"$"yHӛ(9sd~pW\EUH\EUeRWqU;Ww7W#UPKI\%WQ{DQ/Umv2w\%WFtpIo"r*J\E)?dWrT;WUX'b/灲K\ť$⒃hsT*iW7WQU$JKI\%WbW7WUG0qke"6hn;WL _\E HUv*.%q\E="U){**>Kٸ4d3WQWW;0q8޹'WU򃫨/*'L\wl\E*F۸\E -\EU.qJ1U>+*U7x/2WzW|sO\Efۡl**Pcj*bL(O}^6x9߯'yQ󛫨ٻ,fUTWB*a*e**qqg"o"4Xiݹ/yqI6&"ÝT"UTuh/"U43"K;WQqU*U+3WQD\Eo(ob U\E~a*)qUd%b*jpl UW7"QUN΍0qU\E2o"%fV`?x'b]7"U/"h`ÝH(gٸR -U=q T&;^狫!(\E -m\E l7\E&Wa>qZ*"\E)UiUŠ_n*Uٸ`7q7W*X`~sU0UhWfUUql\“5";WR*"|s'"yU%X'3@\E"WQC*U2CUUQȉP\EVƉX)r߹R~p5eg"HЛRWQ›f0qɿ\E ?ZdUzW❫HUWUmU3q,lWqK8WQ? :UDI\E^*J\E)WQ**WQ?3W۹؁RWS(/"l*ZHUg*s|sU\ELWWQyU"'"i7Wѭ*H\E?R\E*%K*Uf+q6$beUlZ>fN"d*d"m/jHc*?4?HƛHF*Rts\FUԭT=:W%qWwL\E)hyq[&WzU$s5~d~p\Ed\EJ|v";(W9qQW7{s\ ÿ8qٞWqSvߒC(oLqnᖴq=;W{W5qQWQb/W5q'sq *.!q79ɽU)G*‹7e,D\ť2*.b7 /"tY0 3,ؑ8XYYQfYXn6^dE),f2YQE+˙Ɋ``dE-2YUJ"+Ҷ&+"'LV|_&+{ٳ$֙t&+NVDIdE^&+JNdEHHMVNVTH7+5/ H9i(|Y%byiȊdEOob ˒Ɋ+_yɊdELdE)?ȊȉH 7 +j?ɊZg?Ȋ'"ɉ"r"+JdE)?Ȋ$";DVlaɊYrDVY̻U#ȊSHdťzȀ&+j?ɊjndET'+OɊ~Y% +Ldv^xw ){q˒dEdELOYNV\B"+n@ MdE`Ao5dE]H![Yt"+wLdE4o"r"+ȊR~ !'"J"+1/"$DV)Cߟ5y +jmȊfikmȊX$"{I|v$>tD/(\ }in37:j/gBKc\ 8mѼ(۟GnIG>Gl/26v,Qj"JZXDLT>W@EY;0v$b L b7ՉCT) to|/A&Q|LBFRH?-)2!A D6v(v3Q_CS b49eoca V_81Lȡ`rX 5`|pg:d gc%fnH|S9MVkpPiwռ5 6TSE5| k;$ay!e ta^Os -](ikXkXTseq \C)װhA:,\lk-kX>l6,WMaѪ:p QOiEkTS) l(3RHLL`r&z ˈV /?7oBdCd"&ِwɆŃl(Jau;YZi`Bf_¢b5T Vҡfp@>'%{/C'P[j g(E3TKf8i O$& ' -+hBs 'P bx>0v `xqJT w #y[JzI/ ś|: || Z#z9pƻy(rqnJ -<5N!Q BmW-X( -,Pfm SH¥:PHA+|`$V*]so N dPa؉V/r*,r*,c^?A:vPd#VbjnڂA's -479()D! - yfqE -.*8=(i PO ~*T$?THĢ T(+] *$)2 -} 5 苯%9s -uc2BSGgBۡ)]Hxgn-=;͸" SQ -Q$,P!I)O]I)D1ϜRhoWf-}{ JRvJRR",bɔ‰Z -)J` -53),>1)Mj)])S£01KI%}>XAV1X/BۢN!A -B,9r]A&DGׁ5-?>~7g QlS# -K`LDa<# -%[!0xpQXxog6[(ɎDOF -r68MOl6e-9"¹3^MQ@PtMKDa9F7cUS -0 -u;c7D3! -B{ 2PM0rGo P8MW#f; L%Áq–P({I(nͧ}I(TIK=# -45/PD(d'2{OY73y(As -1ֺؘc wv>!Bfa4KI|Mv>ae.BRrY~,u-<2/Y,:>g{'d;:nx¥Qaʁ',x¢J]{OXUӁ',V;҂-C~ -i+O>pyJHKtB+a&d 0z 2!(h`=;P>?cTB$%_EP>]ƒwwHhd&P:GD#<CP{rZ2lPeI9mnH4ÚL&.K8F_$5XST kPM9XR+FBf JY(dA%x65Xd TQRkpҰp`)^yY6"dqHT(DIM5^VrC@U(( -:| J6׋ ⥤e8QN/%2(`L2/u`Q*t]P(K`9: xa |Rzw-r=v -I//3ڏ&?Hh{qoPsXAb Y2UPRڂ -&4qȔnR{M dtJ j&NP< /Y5QlAv=U&x<bW\;Ej$#8bl1p]&{FEp)"jO}RӳSڳb*Le*rDq*gcKñcbe7進S(Qi;eY=(6J.)V{Yb7zEӳN -e*)(z(|QKxr AB -/S."-" aDDeAKxNѯʂfRo$.˘-JuBr)_u| hI9CVҲ>`g|=[@|@ӿ8r -Sǵ\,G@cVڅ܇~zّF]#/BqN?4J 9=b浐X%B)' J}HbIS6 PA/~8<D=O( QB,=`$<>wG*JKv"KAɄu&Bl%GBR+a"Q Hބp@ 5JAt ) (XG Xծe 0)jWw m, ,CH0c2CВGbj'剄r0YbJB $!b!8A;pbved3A O? A  *G]RJvCK~M "Xc4Na? $Z7,&C}M뷏E RR՞ԬO@=PٞZ_@G:PS4(\o&.;82pl@|QeZܟ? - ߣ3k@J/Oa&.PA $7SX1T`T)(EV"*o_3H%mW'R` R WsOJtLR`1yY@E6xt2)MA -bA -Dߠ@@E(P ^spu' , 9x|uN`Q m@]/?tPY%N*ELn |N -5AbyEo n2!PssVS[R5@@S_L:J>3jl@Ͱh@ 'N]p9G$O;?TI ![g~V+ i]7~+7gTA$߬k -$(>|֊x?ozu_M 3N )jq5D2>۷N VW_@ O_@uR_w[? !DIrKUN꟪g1?e,PŗaSW?I0Ӽ&!YBܵ교dꬱԐeISL qZY\IޛL4Yv[$L;ko7P 9瀨U72~5{qh#=7V;\4''?aO7: Kp%Lqe) -0̷`Oȟbvk1_$T ŸӍ{֨lfB<;ZyVd^!l?81- - #R+ŷܹ~bOtD1 3{G' X8m%:Oa{6觼2)ᮋW(}FsǕ4E˯?aLvFe#9oLApadQ3S.ha &dY5lcՒlk/|BOv -!fլ0a Dk/>ՙ`>U4G-lT+9>(tǡ}Uqf5o>=ɵ[VoOZ>%ڎ,`Wi&4p}nuYWe7X}E?s` K4h;-c9;50}]]>vAæ]̧AbQ9}E2@:]vDG-}X_'Чe@+T?wJ6LFmBN+Q }eЇB47}OAW(~هkKGjY<%șЇ<I *}z^a-#gw@ &@_iT>)앖.7l+A,c>xЧf|5~S9ϧ>C'>A >ߖp>j |hq}Z+O%ؚ8I'B9|D 8*| lV0Z*R]+$ A IAˋ^w:_j)g]A+7FΎGWe(y&JuTn:0KL:YO:z' -@OzGEE}+JQp>SY\$8_B 3p۴3M7|Ro! -~Zr%_48v%:ե6‰A2&|to_t>:;I:^+:(ȃΧQΧk;Χ9-MdR7< *7h3y<{?ePⳗ9 HO:J͍8|d0ɉg-:_IS*NzFubIt>Vg[=XWJYt>C{*0;;:y{-؉4/:_y'|8ET·a !љtx$ hظ}j1|ʗLT3Z:_!o~Ul5pzwAM6Sf[l>"l}l>cx G3Bxp>EĪ 0фf-;Lh\a"2e>TIh"t>_,8b :$GͧnEA*|JޗT,2ʝAէ"R'@G+0.d42^ Χ%ΧފG" G}/͇3opٯ}jx#;L3]͛;O/̧u-_̧qU{%D02ZL2|*"+1|*NW( d-d>“|Z?[GiS+L2AIww ˳}<O֛ʧXB?:#n[|6 P>ܦ}ۋȇ=ASEOȇtiVi^8$łABu&; |j"4l[[uBUO]ۺ],8D#8sɧG;H>-ÆMNt^y=~;DC>S{M"渿 U4pW>1HDxǶDlIv"ߦ%N"iND>}7:[q";* eVk=pYO{FOOo7:ޏhY!$$&OyH>@ 4!ʔg, c|,H>Cّ|4ʿ|;4HBasFH>P3D ҞOFE18NAQG< lo -fk?&y-@>fiZL^oLJqV'`i^^<>ZS&ͰAS1mG:Cf<>>jN@>,D>zQhLܖM?ɧc+@?QʐF+o4\^=IH9lj#j;ZE'"b@"_ОR%X(ݧA՜ȧ] LCƝ,|Rx -'OWD>e]4 U3d_D> $ȂW3|z7) -" -ӑ|KILMU x;1pCc13yBL- L,]kJX>dJˇQibHX>ŗXkٱ|WzxBb9 ,ߦ&K,` =*&{u>/o ʷɞZ&ڠ|>mӇsBt !j\4m8c1A -n5SK(ͺ?CKS0P>T2 ;8o:!)D'4/L>w]H>(;(_D>iI b͖ - {s|R=a8b7N #y-6⋘mtn0|T%:)|$:Ƴ |(|q+@Ѭ M>%z= SH@Ps#6ѕ>{p. (щS0 O^z-䞦#3_wEuA3MQs:{O{'B^}g)^K(Dᛧn@{!NОtu/}GFEZ$D[rP;NĹr^tzz-5w{~ݷ{e ,t=LrQRHZ+B;gh_ ;XO*WO8ˑ^ŽZCnωNTx&,V}? XM!BD;L9:/PO,B־2 ԛJ\Ë';!fOO"1izWel2p1L75Q;43%zH -|z9FlQDSNw2oI 7f -1j?o ;>oFQN3EΓGΓj;qPᄚy-'5W4Z̼nI̋'^^A#О՝* g&M$'_Lf H^!ӯ/HYC9")yZ`&U( -HR8eH5~m 3{Xd!4hMnb$;#9C$\m30y*ȱc`GI90y͙юɓlI\h`ض;S,޶ %/)< g㚐=@ŗf.EW(W8C!] y7frv+(yE|2%~SL>ꘒ(yKJue&Èr~AT6dq茼%숼!O,GWfb':UwBTj[P0 -aDw:y.v\[H@yKB KGݼ=TTeZ-6NS$bA#V[<`oqSI<[3 yT B^QG'l7'Ō@z.$[yW@:lotG5y!o);"oG5@Sy/#o 7iY NcvF n`@AH#Oc5"OSE+$1ycy5wj>'SFB}&܆țBFv^X;t%3TXb@Y ?nha#aiabАw1At#1fygX.6yKIMvFBj9G-&hzf=eYwGZuJLɣӣzf&UVpl);%oWgb+wf+ñeҀ A×ECl#QhsZ -RNɛJ-98y*$4 U㔖9GU0JWLP)6YSP֏ >Ҷ.M#*'3 - -;: E9zP̂1QT " yw[63k6WI;ΗGhĉxm;"#U Cὂ?S?/X~v]I͓ rR>DžBVO<(UwzE%ݍVx(9>;duŃjzaE<|R7ӲRR)^ez]bt@BVܕQ7^WbO[7fߵ;ы}9uo=Qmo/~pUDu7-MF+ gJaz`bQQ"furCkP %ܟIƿ4Ax8ΊsK|c1{-YdSꠕA\ԏDZ|T_LN>Ȗz:" -=g]Q=R(XjRIJڣK<Lƞ ɗeAB][٩_?C'q2-ůf,En - F@o̔/ϴwrE 'o;jŗ3vŴ'Um2ج#@Q;ʂ!߇jNⱿSRLF'`gޚ&w㗜*TC䱆@[!>X*:)-=yM^n<>n7FJP?ں9|m )+IMiC}ǭ:>uvNQLx>#cN]+j#!2%ȟCk(ݓicќw&Ah -Fԙ4/ǚW/.aǧ}?c7\ƂID^hQ$M߫T `h|Ob*tjV{RuBX<|p|]5+X^YKmBiXl}6s'657h -W<;ja$BOJ2raU,^& fOFWUXq.u+w|1XϷɷŹ&CYm4M9@a ʛoS+0~@Tsе}W|h&(*g#J;@º`B7b4ߡ>}ݛ5]Ưl%H[;& -dhX>jQa~o*hX{*S\ױS.WCZb-t_'p]%UnMYn+AR0*Zr|>,t #$:y! -oŢI"\2ecR>kQ{}>L|xLKaxܭEU%\|aѭJ3"mˣT䌇FH0>ɏI+1TwIyb]I.~|f&Z}Qrz[5*D1#[^j*זL+U_y;3qVZ7Pɪr2$ЃR -]oAjGFW{GB/K?~vb32i=k=;Z#ӢXw)i`f`bq;/P)pɎ[yK/@G%)d_;Z.O[ja00ki!+ CAֽ~M9+=J-${-LX J>y6/OdrwRNJB+t,+ttuنpn?8n -,K6FUZ7|ZO2k0ԮrBS 4nAufa6˚30B?sBM;Z~iOTdS|XVÛ26ǒDjZA%Hav,-wb[;dǾ=~֘?D6[JS -.#"kKP|>p\$Y/Ĭ1;͢C-U\EKd`"Ild _aLXN4h __J? }{W%KQ̌/Y< e;߾ӟ0OŶZYٺmc_$ůHցX}\JKn?iSBgyx!՞mvR(-sh۩|cՙ9(Z[?,l&=N[{*XTM<-Y^%k̿HaV^P=loׁ -ZZ!T+.Z-іGi/{/2G*1\ Eff=t 'J>yf@2i챫*tkfeʧ_RnʊrAZ.veq;TP]fIZ}xz]n42i<8OM~ 3}z90iYQnזLqE{kPXo=e"sea \**`2 ȂT~{XXʵjejEW>NVPcCDDv{_hL/OE;ň[L"UA֚\+ʜ)4X^=?A'Ul ^*P#Pf6\ei,b}}4 <Pg>#e-2 -j9^ yc1s6Ǣ. Md9-Eĉ\Y2pkh^;9cspXMPsݡVS|W`dKZ ({rR( p}wSNKWYu#;Ge"~M\?Z Ul1HkąCđ2u!TG422_ --t&;('PRC }ƛuZ9zrnjuG$Bŕ^SHK_{q%-Yak$PF!aqb@T(P9f)&[j9i1I! @yPOR"5[(Ŷ]ׅUAh1N>s[}щ֍ -&TsMR]l0OLԦ#–fq^ G3Wߣ"|n((\:6J+^g,rZMaE teZH00WcT8;= 8bw~_ԋκjM$5ah -ձ#49frrHM~.Ft@!Q=:JH(WC!^)ʌ1-C8u2%3'js(:W^a6?hՙV1lY.QTy(T06~Z-j51=:/#-'’z5YxFFDspUi)53,]"eR GviXY([{&eD6C*25Zmk5zj 5bk"GʹfzS,ݪQJъ(UOZ]Rl4eZAa]걶O:ki׳ Ji!u[,z 17gNj-~( ,-`EUX?}/< @}:l|&"FQA)t+Dh1#vD6V)S}$p_J -iwӡ=!ūڏAh&6`gxk0#7-KkaFbBNL-5LtK{j{U} 톓BVLL\ >QCksBgLދժ/k_mg5z:+WM[gݰUJK `5;m - rrEN>rzih\xyݮaV2Z6(Ʒ֠ݶ5k:4Qh!@BU9w!+bE,ńV"E]!5,ȠA꧞N -q)e]|)Z=,.Prao*U zBKe -ɘߔѦz,qPCq$1Ղgv~vA[0 ]dgnjOnV,zC찮ӷ(Uli v0 R^ -z>W\n\f̲Mu~c|BJ iu3kV(4,шuҔVfVmut= OgK ]!b 4SFSFI;4bk#r*%]9^z E_NnZxUri b ,^3`z6T}P;3;ebk*>Hze RÎ"7s/6|h9~P+@fiJ+h@)՟QSG'NjWݦTٻ0TߖR<S g{fѝBER%SAH_áP'j<: b??LJKyOU.ll]>iAnS8XQ%0?( J(e&c*l佔VxzF# -5+ŴPsgX(C2SB! j+r,dqgZ(>g-DuOU09˕#+n8,TiQ:͌n^]ЅbW0T)Nuh}l­t%|tk`A*u%]JQUݶzѝ˶VBq!NwoCXa`"`K!bʏv mb ) {}yy[p+Xq ce .hq6, jdgtkFL+TRVcV3Hא83=x"K]I1Ԕ{4l2$3A!Bk -9,5%-%ʂo*n c[:,zWzm -,߽tv)΢OC={aHcV“dDh%'n\oرYu{xCРT#H|G;=B[w %VZ5˪_?7)w$e{CD*ТZe dR%&Xh0b4SjFӗ86j}jѿ178@ `~o$CdysAʰr}PжЮ{̑j/@I2db ͬ&k-˪sPFm͚Űe@h)eyWHJL32F4<~*SeWH`,//Vtn媴f&c#Z7*4/v_)MUYErNlR CizXC~_>̨t` ҶlB6Z\#~H,PJeTԓSLn_=+n i୔ Xd1@eߣ*]o?FJ9GdZ ǟ`S;#I2Tǽ&ۈX*d:aN*J yy2w%ʜp(gw[蟖 -<ܚ,X -n&Y$hVW})n*ĔSY_F'UkǝW~kÇg j[m -OXVk3N$:gPfIc+ÕlD+hźIY(CXFܧsZ6 -0Oǂm3$Om!memAݽ,{5g8K lDY>qso]. 4h9QJJ6{ÙFj Q6fcDyr.>0p(i$|WxDDm \j&HuTR<ٌhI'P2yw`mDNKm0kvimV&zǬV ZLTAzl4u%F2_bcZ\>Ǣ hKU`HCia.#)lC -HC06M]iHoCT]j,hdkf'ѵW[13-q FQSIh}V-nCDOA:~G'PEl5TK 5dbKUkhtw|u.V㓛jy -%;ή5~0"Gt+,!2ՄH~NJ^ e>TB,}6-NO_Ta<؞ h?Y'Aiw\5\tLNTh` -Sg TI+6W<3/[kHY&6,:Tۊ}ew;sVTݍ42/~i-MY]8j*#ajtreZ!w?Bck۱)MYsp¥7Zgi[ 5,^<{5*﵍i8eE -o#7vVBe \nSf|j?0O;[2)65kv,|r3dYfC37a~} 7eg+UmVw8TڲɇWn*t.5|;@t[xKP?( ߮aumN s:pv}  GY_oexX -ָ9պ]r4mE4D&\3h.Vsc:dz-Pl-ag8΍-V ԐN&<"OQп?kXj ՖhSݬb]cU :Qѳĩ[ -GnS zpGLXRpfj(6LTU# - i̙MQ-hiǼv!6 G-I Sps\[Yd^@(t%(eq1jCݙfӢFK9!{Z0*@h'UEV R. Ã=TH\hۮovC! 6i 7E -Uνڠ&+9$o+>]4[eS[%x}!6vkeso2?f+j8sopDf.csڽ=OTEc[iHq2)j.88@^KȶaO!Wl( f`(UZWo(%Q1iLdgɴY \%ȊU"0lmIF CZR{7%g_eC-⬏b9#zi5OXVm>>!ہSÔU8l hX|+@(RUI^.yr`HOz^US -?N,EXE[Gs - -垕BwرVًbW6#*W{#(׌"bБ@K  dNr☛,9PbnR#;PyDδ嗊AOLJ3[Ne(jl'J6VC`D88;2{'|;Lv`Mk˶SGy]\nTI5sdtwOoVqCa"'>Q7oD쀨P 6nqG)e~nw7~dDv`ZKvˇiU6k|"g{,U>=Xś&7GJB6/nB-Qׁ*$ zo6o]nD@d僎[QzI1g ʒkIrβqh~&㏭@ؕ!MT ~SM} ro -hB&Qxğ exZWfvUlǼ,r{VTP6@4ݓĆ[ *RE[,,UfKBj\[݂Lr,Kx[0r,E2" -CPU_DQ j&6yf8q&1}ЬnW!SzfJC&hw0 APх"-Zz*tnӘ>]fx?bRBY;^8te -G{߶N}ͭ Ȅp};7{dl[3.qގ+u* İ5%O"tz5b)euӖ8Lۜë،ѱrm!xc2ZGَd%EJHRX{[Mqo*vaeʛvI.L^BgD+AEIEO.l[r*O\./n/+֬KՆ -.IWV:znDh\D}Yvq{qZ֛mT=SQތJXbi]M - -VF*Sm-RȟYQR\_dEDVD."kId:(pgWjmrGSMV,w`7 Gw%YhеK -` ?ȊYQ_-=eYeY\7~U"+@/bT22YQgp9?s|And)$R_ɊV׋(y&+x'+.%ߘ)Y\a`dłXLdŢu'X%\-b;XzTvR2X/b! ("XK/\o`E? (s+5zZ+ VlrOH`V[+6 w3XE+$bVlJ`E)(XQ Vl+z+65\+V`EVDI`ņ (9d`V/bCKV|-o (990q+J`E)؎ Xb(i4?DoX%l`Eɟ V(obUwq-bXXeXVKI`Mb4%2<2XQ߮Vܔ Vg%bUA(9Q:3XXV>7e+.95b'ֈ Vd+VXXXR`+VvbUgZ+~vVI`v3Xa/ VDI`EXӗEפm)UIX`E)W+zXSX|e"VyFK`Eb H V$~Q3 VDN`EVo;XQ?K (.@~[/_`E hs ;uE2Xq) 8 VQ([87gbSu+6qsXq) +gjBVԗ`6X7X9QX (9!%`E} V$ԼBewḾ( g,!'RXqB+H`EI6g+.9 VTXQ VdK`E+b;R2X V$ܚR2Xc^`E#f`Eo"f+b`EVV$X7Xș hV$řzq2Xq) +66X ȍXQ`ELX.VT";VN,'X)[h_` VԊo`JXUUS `ES^`E(ob$$7X Xe6ڪ+i`E). V`EN%ДUVXQ`EXQ Vܔ+V -vb V_ (9dbVv";X? V -V/"r+rV`vi+~V_`ť$XvbU VO+j`ť$XPnŪXUTv1w`%XFtIo"r+J`E)?i_`EVDy%go+;zXq@K$RXqVVT; &B?&"QV\J+.M Vu% VDI`EN}SV+`z]?6e`Eŧ2Xq)Xql+jV L`E~  VDI`EN}XR+ebU2Kb/}? -f Xrx%gb -BobXi+ SH`Z/2Vd+*AH>\DZQ`EVX_+*Q67֟ILTV*K`Ee#XQ% ?ÐLM`ũdXe~5g6.8 V\r5go8X+*_+`Em3XQ V" h];Xq) d+ZVē V7A$;x%b} +r`+JVlWH`EXQwX9n`EVD`E=U xN+6K5v"ћV$D`E;7IEhI q;XDuX`H%q+V4VR>d$";X~'$"j+bm+bIz$<_`E" e+B H`E!`E]`EB9;XVTlXQ V8gXVp+Bzy%g"9V VX"b+$gvF+u|`F Vl 6~n`EV|kx`EˉXMO (5d" HV VdM`E 2XQ VdJ`EM? h(obâr+$"Zd~B+?XQy - (0+" " -5V+N`E$?V ";XQ5Ixeҟ HR+r1 ȟ8 (ҙ V}V+%+%kX*+*5 &XQ{` -f+M`Eºobb+I~#?LXQJ+3Xe+Gr˖D8`JV$2/NL`Eݖ VTXQ Vʩ+VyXQq VgV VJ2Htk++ֳe"B+Jy&]Xu~e3XQ =_+Vm+VawVDN`JuAR+VޱQXoy?X%bX{7XVT1z VTWfWXQzVTh .5eRx?*3XQ7XQ VT;+XQT+VCm`EƱ7XbI`E%?%b8XQXe+*Ȗ -+Ҳ`E-#~uf+j|`EBo VԷ`E7X+ک;XQUR+V-6b+2n'>*+\XQc`Eﺁ&CV$ɹu5dT"5 S3XQ+`E V`Ee"{+Z~X,XQJѪ=%go+JU<_`X`E`"V,A XXU4 XU7Xz6<+JaEg (6)`ENVJm+7oXQ-_wX+/73XQˁ`EkVC~}X+jHiVz*X+j`E hKXsVx`E X`f%b -hrb VDN`EV (9+U;XQb5? HD+jRXQX͆p+~+6/;XQJ+j=X5`EeXQe{o"= چ VTIV$VTb#nQXS`E(e+?H&"VXQr+I`E)oVR&" o`E3X+R֙HXD`E^XVTh+Xr:5PobS23XQEob;/)X1 (%+i`vX+ziM`EG+6/"M;XVT!5e -'%b Vlӝo+2`E HR2XQ" 7 h+"X`EK`f]XQY`EVXqxXީ7X[+jŖ~ -fXfV%+o"iV4V7XV=#[p2XI+ZVl+rj+6X]2X`EE2XV47XރV`EE2~$" Hh XS+b1+J4%"H?- iy3XQG+*8iJ`E}`Ed>i|i9H`E\X_`fX`E a+jtVj+P7$xU*Vl/`E3XQ+jڲe -VUfe"}/jHc+?4V$0+R\+6:w"r n`Ev '& V3xU&`FV$`EtH.¼;XʝV䷽ | V`E5d{rn`ť$&;XaތS0%"/"j+$"!7Xp+*#R`E h1 ;XqVqVT>YVXlG XqSMrQX Wq+VU3ȊY$"uVDaahEn7hERZ @+bWb&\Y2Њh&/" *%[}Z|#v{hϦ6ZXaqhE3ZV$[Њ( ȩoV$Њtъ<Z)ъPVeKF+ҠЊtъ ЊTЊ-hE.w"ɧ7Z^gF+dob%U90@+V`nhEb (ZQVlNvl~Y-&FՌV~Z9dhE ZuB+phE ،@+2'$Zq ;ZqVĖ"9;ZVRsC+ڿъKuZ9QZQ"τVlъъyG+⢞ЊKI-hEьVdF+zЊvZqB iB+䈄VԩH0Vl6@"VdЊdihEVъ oZrB+$B+*|ъ -B+&eB+NaG+N1Њ!$bZVdNhEYwZq#"VӗЊ:2ZQhE9VDNhE)(ZQnC+bEЊ&hE*mw"7ZQ, sB+F+bЊZd~LhE HHbB+sЊhEJZB+RuЊ$"Њ|؎VrHIB+RەЊhŶRhNL4Z¹V$ЊhE7Z„VdaЊS ZQMF+RhEmM2ZєZqɁV@3VVTTF+үF+*̑ъtBЊjhEZQV?Њ -&z2Zq) @+]*HَV+Lhw`7Z5ZrLV;z5+1\E >a .'t)*KPEu*6"YHE[I@ŇSھ9r_0[6ޖFGr%*#PL ORuJ4#I\+)vEU1AuRyUu0FB(JW[E SZE}N/g'v_L|dR(__ #O#':q - 'fY8DՖoj qAE&2Q0&JT%%*SEK>uOZG`[>aDUf% -{Pz}FO!DEڱ/ˠDc* x|]c"Ci%jng|Q4DƖobSpP2Л/chH ZY [ΌA$Yg>E *,m!cE@| kNbu=;;2N `{D@D׵(wP]D$ Ja< RQ/b2 ,ٜϴl0Xc!Z^ X|6 Dԓɢx(3RL2^11}KYw]t+&dRȁႁ(eE F*i@b@ ~ #X<R} ^&J -A5UR ?/>8>}O+KCZƵȇڻ3 驭=T\{u=9PEK`"j_ ` w3T'*솩;P?v>YgVxM@CvuP Q븐("3DykӘi Yh*S0?.8W-¸L!B !S2u2 1C ["jģx(*av]6|!a7y>c؅f_ȅ,pz2Ɠ1:P^V3lZvϑL,  5Zc -B'ZaT̐pz8O\aQvDVwB;/\aP -yWXh2LA -%0#ЉWXT~ -eWX'd\azJ`akKSH\©P9&n~BOxUdn4o(7s \Rf-Bu"k?RXN.%K\B Kreq Q\BXB}]:'mPsoA>2NM,RpɁ%qnBX^9m\4Úl2⟄XJHȩKIT%S nD%|sJ(@hRL%lGP QYTBN&S K>TB]Jp)J8I% ҅ ,>3_]~,?HDaNA9( Ig!Oyy`q#T9%N!pB!a!N=G|}f8TnG#TPQK:|RĢo^V :1ڏ\pAxgUc)$R@@sT79X3%T.UA Ny~MA*| -Πϩ `%&={4u،VT| rQRay7P1ѬK%Z/vj|M[ TVtrUW-Vյ\UYM=Yfrig%XJj1kxL/c -CS]SkۺxT6,*l((V:J԰g)|T h3YX~;PP}M#$IPkS 8 :kA58o4e ^lq 8f,KIg (OL@ulH@O9Pq)vxώTVU -ӤTµJ$g~8Ge0o,Q$ogd -NsK@)!N-$@TzP T -dy#.gMIl)P1z6`)L3B ?hAOOq&kΥ._w+JƜQ»@ 7WFO金4_?. dW& ︌~mhWp/VX?/JX?=}׼}fBz@hf?$J0ռ?~ /_׃B./8 ([0u+ )ajug3vP~Zj[9~cd=>9~͜6ĉW@8~:+"3k$_LNw!0~sIrӧuJ% ҙ&8~Rp+8\~it?aGy { WZwdXG͓haiTpćs4Yd/8~* q-AWdc @_$2R7ݮl>#+$?u?Ӈ19~0ɉg-MR7H#e9~8{& [FSцSZU)ώirJJ?cPgqH _-λ? -y-G+\pD8ǯ=?Sb7BVQL<9~0CW{rIazp%q8?%(6?}[Ư#uP, aIS׊[&D(ƫ4P`[a7>a*DхF+a̮uqG?VAj?z,?_,tgٵ{QhRa)~VW?V?efY$͟'Q:!~ -6.$2& ?56!kbSƚuUP06kf S`qzeT&^*'OB[ïOENVcmdi9@mI"Ą"[wV+T:L2xï`T/R ?, ?|~w~.&<9~&O ({~t_GeCu*Q[2u CmWrxZhԄQ=+*ddV v4;B'łBufo6Z?}> V9}Bl}>g'Jfxrxcާbx}6TG%d7zR(U>d*݇Ƴ}|7WŬ/tj|p$_yl4?;llIvvR&n J -bUO͂ÀG݇FP}R>VN辪m.(dnݲME6a-9}rO>~@$x޷)L9}F]}+ox9Pvx7uI>)?}z2O7t}ZX.%eMԼh!B|4}a?~>x>UR<7}frs"!`m>Ԋ2$, r[GD#;:?&Ou /}r&1o ѫGVJ<܇ijP#,uDv;:,o>9QLܪ\?ާc+?QN:evx:qi>ݟ>2O2/^-MݧwxCQ)aaW~z쎵diS.-v2db`U,KUՙ}4ӡ>vѥf^}(v_A뼿}G[Qf>ZCLh߷^1QOu%25C!&?)gu*}ڟ9WYk~WzSdB#[J*5dW*0 ;1SdR-!6فe^EVL"Gv\4m8e1.).)ͺ?K[6 |އZGBO -L#p|Cb|#S̜@)l={Qk}eiqenr&4ky-j> nN;9}֏GUBGc< G%;?_X6#/TA'r J7> p>|Adձ}㰸M!PSӽ/ݻ"캡nsMQsӄY|3QM؞I$Oo:@zH3|]w$ɧ:Ac6tx|ZkBx|KsGS4l4P4*_Z,>b1%@r3A|X ħfZ0St}`>/ -QL+cGBV |vT:TOKU|t+KUq &[ޛjnwQH=At{2zO)e+an?{" ]VL];*aN9tzbxzEFU `!6{i-&wu:o{۽ʬ7S՞Q;H{SH61{ -ҿ({OYq/_{Xm'`OBq?/6z݊Q&[/zSt!-=YSyEәC.7L -DOOF%Oi|nCT\a*s --%K^,1g`zDdi+WdgPNA,a3OO ̤R^)2Nr@= v̚k(  -$GqqzHLVf -r zڣ\@=hIvI!:zŝO}Szpz+KG UL~\qqv@OoVe5<=H~OoSvޒW?m9Hߡnd& 0q> ؠL1fcC/2wb"2 DU)5m8xxs!%HA8) w? }z( L"UH- >v@^Mҋb3Ra#T0!<($+RF„dRj?֛,E$alRA+xQ -;.C #!QR$I]O5~'N(ZCRXMl=F ZGPZ%ԫܑ~s2 ,tGI9߿pkOu5.E?No<~RovÓY=_p>ß_b{_^~&w7W>W!/o㟮c4w6Aqus28s] l|Q~^=vA?6Nm|t$gۤG_۳7_~ꇅִ|l~Qc> ~ fia,׾TEa >K.A(HҷwW/?\j/5)UP`rԡG٥&6Ȇl|EԺdge/'jԛ@b'Rޗ>&>q}ӖL~*:]tX +}T~NNt}S'ўL\rJᖭ > FOk0sIڧ'ay);/|M}}J4}}5iN-@uf"lZ5S;nBO \!Cg""Hmd k|3Ȉ4Ja49t9&Q R*[ b[|Qba UzRAGf'%sZ<&(a,KENn9:ujc"9Nt嚱Y4/p -B$]&n&7*5"usAPI#&LRNODb"A1vO$1ѝuF đ'k'}/-7;,yĎqQ2;6\@~`Ț.L |dR^"We3& u_swQEPWDD,UgF'+>\D~3*hCk; TOF'oKIi?)}E@CeD' [ScCRZ(( C4"+).|SwŁ+CQT՟F]A-)ELTԇ( W&'!0Jŗas%Lïqlb N\cR]nvau*ߺI2ZYB&8%aoAov\{;BRjwCnSZ%@t,;9hd YXj&3/7~]JIS.>}^UVNG?27~ <8֚uSz⼷Q6v팀)>8n8OY#'P$GO>X]}z}ut'}ӳmڧGO:Ҹ7>=os= ?p7>=oJHy}9]L_("Mm%/H[C*N9f,S\{}#Q^:UΣ^s]3Ӵ &؈%PWӍFPt)0?52bc"6e; -k9uSGSzyG; _'@P!_G Voqɞhg2euSgb6t2f[:( _lG'L>3*KLA \OBznrΧ#oXD9h \}ֵq Ĥ L1zۗn/2uwmu~B|}B9G" 4m3UF}iy鲳JW -M+^$ѹ ԵQ#MfPCd fSK|ߖ^[M序~{? -ϲ$ھ+^veHN:|+g(\1Yjҷqsرp23;E_S[ [<'#eJTHE%:h_ܸlF5v\4&AX &+fbu4}0~FS {݊d}w{`<8ZDžw g؂Qׁ -vyx߾R6*ԍȓf䥜 I -0}2KBheb*O t!ңDwUw'&".$ -͉E5'W鉑Qdء$-4֪PmӼq"џ.NIйJOBl\{xXci'hydMS!ښdV`kD cs-ؘj c7ԧV/6mFQ.ziLlMe>/:֪}ֻ\gN6zDH.%p|j4Dbެ$v6=-g~AIӓ\TE_'&/uceVpUp6bbz^{G]*#5DSeq&T w3fY~sc*;X@xe&: ܁*ڢ]׺PLQ7B<%~۷@>vӝWN-&kըT:,icޡ\WRꫛf(M>26KQ"WѰN(}h~pIѪ0=ט[RTQFAjU׍UgWUJbwc4 -zGf_cN^ylÍc0>CkWHugh5Eεd7ӁX\ԷCAVr7XINFsߎm[*(]us1{ rh§}ĮaangخK9N蠝R=/:>unN(2x60uvkVi01D6cN ØUS+;v!<SSl#=cHG1l}4n3 -~Tah@jM&et8څ,zhzmJ (4EL$oK*#5YeS}QADLqZ:̥҃"N]_]ʺjk4Pl;ԩa8AF,gTSOFj+>>Uݩ~RN}v9Rw՚R:T{ÃdnInx亐}K jj_UG-ي f h]-pԎf)`@HϖSaB yPIF%Fam6-Qd1HkqdNyN4|' n`*pP [Q؃qL)Py9&3 ]mk -- Cqz(;JA&V)O,zdCgCt4zF k#kRQ2gƒeXQ?Evӏ.`Qqk#ꢇ$7,hG?QP@=\RI>9yM*1Q۝̙N7gjK3/D=ᆖGQ9tRT/蹇])h-ugbrޏФSE cTm8nAqصkst ]LPC]IJ̪uY<A>D",U!:24Q%2iU\pY[mu24۔@!$8ht# JIZTohy`? S yyT0¿TOәq(3s(wc]ZT*áZ-EHEuR&X:hv][ |;WT a#5F'l@򃨆X}&]"zUYCЅa(ZJ5/S7@4*U5nХ+u?4zhűon"*ad>> */;=.m)GDkIDQ3?- ZgEЅ;~p/ƫ4["1׶p}D4ItKwSE\Bw'nCwWᬧ^@֦/ʳBy'rT JA5(5+kBl+yG؇a6j[$"ӳ#U|:օx[q{YϬ',k \ՐSx@dR3lj N:09ɘBBJyJ +[J*>Q Igt[Zb97tӈU5mY/Ԏ:{>Z so;ȝANؔgK@R1g͆U;YԲr9Q+ -f'A4YZ1Г(hKg? :'؉tĠ?Нam -O7T7PH+&]ڙz"E&Ɨ׵d01]q -6@YN oaAS9q<и3GNpa(uU6v$[C۬ˋMl4'&>_ЀaEnAhPSP9F6􇽪! ;{ʶ-)4<4ңhQ@x8uIXƝN+Ͼe'tJt]bZZ)1G[=zWZ4v'j?j8K $D1+7 T02+ 4Sul0f3'Ą4z04Swg ֙|qsV }&(+{)s9^&j q==*6Bd4GÜ 8idݤf JVr׊b$%બ;9裆Ccn\ M0s׀U%elΣ*VPIېjH t - ,S$`z @'MW] "AqhA}QMTn_Pd&= c;jFjנI0u @f"v.~6|{1 QQ`o"+\a@NJBީ聬9Rހ&KĞ 8 "+Zd=-DADPƞ/]ܤbvK%[4ܬv 9i^]C+i}%kȻvl!苚IXIX}WZ~qՇ#p 3 - ᫾;{ܥEB~dn=+^ŐAt,e=K"l]/GiD.L''@3l~Q+X2`{"*Bs -=ph2#)J]* ]T r${\yT{ -Ae;ͽCVƊfJz xFżFun1Ux0$ׅbڂY{epcTqjxF\*=$马ZgU1dNG % -W2VFF*$`@|"Ay>bM CLppmi0UTbD{ jy"MUP0]fqODtp5'4s*gSOգaS^Vu,S9m|q@-sk08x/ "i h1 =w L,Y >XE%(>*ır5ˤm 6|h=>jJ&NeY9DRnw:UKꀧ˔XMsgT6"E!Y!C+S3>ߝ,({b0rQU##&ƾ:s]T̐8,Ď奴bSvS'}F E'a~pO I|9L)ZڸoeAn.͊إRȋ: -endstream endobj 22 0 obj <>stream -Ծthr|LAѦ<[ý57z(ǠnXuC(S\=T -nSR@NG f:epG=c:Y4%W&zi]C#ԍvvYP{,r0#At^k_EGko@ A7z#PFt|.xy8^{%)4Cj?е%B|?j|wۨΛQ|4N -,>:(seDZ:j( Qj#VM$Gd h `&%cQ=aNs'a=qVo8w]P{X] -I su3ul-h4y(Vã-$ޖ(im* ۓ -Tˎ wJaG@̩aP_$PCLA*dbs7psIw#@T҂UŌH._%n r#D4mt&aeOc =ߡ|>{m |#ANGA<_%ث elkʌ9L罎R|&ΪחpN=M+} Q -nE -A + niaH񒝏r⹧_8Aф' Y"IHNˁ$`H1j5!0)YqŖN}Tch !CkJ/f8#%Q=knM5njE W[-]-D3*;$',<]tT?U7 }YްS - fLUYA)Qk+7ZGVsOC -A'RR  .c(&vVJ=eC F -G1t";y@C֌Z(yBJWL|Nv}};+#ϴ9X"wBa„Z. sK 6ĨND aMaQ'i#k$,VHHCsuu&ҭY<B^ˈ'W p-w/{ۉj.)Im1Ts/:0gǥ9OuJ#dž&ӓY#7WcBvP'w+6 ZfL]M epjUzwj)D*ѓ)NJ-aY#fWpL9] wڑZ!z8ymehvhk(c?Q?ުr &w 9jΕźaîFUQkH,1S>r)\{+ijkAthCvPւz*q)W:<# j5x.+\<n5$0Ht-wgK,}r%C.Elء#g"nt -HĔTzy$7$q:^8jy p. LvmM2[ET{zFFk,x? KbCL?" .aER<%HW!N@:=g-ހ3'JKz 9d)b3Js/L|RO.UG6X|2#פ-NK^*}@ ~ [p}cs4ԎW)6Ŏ =QG}==rLZH]J.D@ ,zb3r -D.S@7o)@rn.nesb瞌T1 @w%LC?yEBg1Sq]Դz «Ls*"ktkP*$BXm{ou9*,Urc'5e/ce|H5xLcqjƥJԳ7^ -"OPt -!#Rw| Lf{rexݑt1f0#zXzJBG]XD/;](NRQUv]2%ΆA\'+lN Ɗhzgo(;Tz3ǩ8Gd5!jƑ#\\PRR1$:ہXyGE'j2ca2@$^e o ~ z\FS˥eGǓMgz[jf-:VBQy {rWPZG2=B%3! . M)ʽ$ Ђ妛ռe-X&g{a'B0e8w*ޛa4a]0-v-Y-QzQ柺Fbg\gkr@=FE5|ү%6w cY(UFD͛JG?Y!Aik^|b҇q^QWD`BZE}wK(*n cfRڬhcC$ =OoDzK5=Aփ^F79Qe;\zHjPa`[22OkCSBRZܚ<w͖Lkɭ%np_Ǘ-Kp@\ >ˠ6kׯV%ϵz)EHJ8!zI"3D'{[G)ClTdJ{֚IG8]V*ؖ{j -&C ->-'W "v@1jeX QmA˫H檈~?DԄIl5yF-zO1ȓf"}lPTB3WNIӉciFIǮ1GAs745кb޵qa{IB3踞|7Өs Vnf+Rbٯ/ WM?ei5,hgXkJW4Y8K9O^{pOoD-#GŪWaߓ7)oún+J1K^uHQ|цz%5<2|&OK >;R:\ ԫ>UC^Tz>TZ5gή+\0ѥtoΠ}%,7 QPMHшm1J)H6H1QJqHDR}I NF4zਧkjCWaGpzJmsA]HwNlQ&%^*Z"Í/ڼ9:Xpᙽ[ߋwF-s}({I~9,%g-s˲{HP^YbJH+sA;8uSn!ݤV^&s _HkKkܵpbՅQpcE}>e=MR>j4[.~79W|۫n޼~͕P?Z/WW "/}aY| -c> ~ CGi,>_7j9|ѢioXvMrf =kifꨍ+}4H.%vJ2!ͧd:W3*˭ҍI֛h0g.@0k/ -6Zr#8*|XDfdx1dp=\lF Y|p:_l$3D -uOd)}6aB5U\d=P ߒ@\Ø;<4;$^$z,>v!Iqcz04?Jy|69*9~ 3FV73=N X[eӎ9P4~k4-/CɄ&]PmJοHF -!oXzF=\g_a'%9JTG"_"0F $HC1BĀ>ŌDwr23hs ."C7{NM=SwgcbRul~|omw P6^~ӫgh?2|ў }}< w" -_xK> (zή/o퇗緫<.{:{sqzۿZ]7l;黌vxF훛gNwݵ{7p?xll?1x@4pm]XNγz;KQ^Y{7EAA]Zݜ^oorؗp$?*{--@ -п3ٽ=>}.w?ٓ>Y髗;t_?9"H;C竛W}ּvޒ"y!V/|avھî7W[?]Rq{]{Ls?o|ܾl:O=𮮿==TX?_v?k/=gCߝ^f޴AM^{gowY;5Bl˧nOyKMVj}  ?}g/W7:?{sB(&)aæ;lƧehy٧<}ys_I}{ViJ9J_B@c$9. RőnVwozW /. ]_ox{.SA?ٍl,gGqt&"_<}~SXy/^yًœۏwώwPc톮뽶Z= E*<pBߣ;o{ovj79.oyG<Io_o4ICy4Y}2)cu]tҩ[]^AA{sEpɣ˹v8]'Q2=pt,>SNbmDFyoÅOX>\8GgÙnOw:G+Nrޙrw?EE;rrg:rùvϾ޹nAkgǧqiknj:t<؅mS;h+}{x2{qK|}{뎞^͠}=|\_pgD8swy_$ -6?? ;->r cyOw7VV~n}f=k/=0ݛ?z|xfaq(9~h"c}!9zbrxDQx|I%'}1iO,'?x,Yyyr֞]NjvYнX?bfW/nRĵzx07;lN} J{@ȧ~a7^^_\)M̓Lk$?Gv'觇nHn4.=t_"3{Pg'ӨgpO >HeHS}3މAtz\:yyzuju:6FAw>>;lu>mOVPg1Ѯ\.u_ݑ{wn?=Hɡ]h_ΐ}N;t~~ yY;} bXjTscW] -yvz7ƒ{C%~6^4m:y|q~:ӋϯwH)PCYb}.kx1^]_07oǶ q΃IW痻_~/Gz>tzO{}Jg>mٙGБC8zď*cF!߭=p?(vK8[d7]'~8!|zyF! _xzur}46Sw'_Vh㏫/oGg~Lg^yt{rXxg@8x^ŃWT'y.Zxp-\b|juIfWOޞ__n?Y=>-Oq~"k/<hB?d,- OIU;v|0r݅8T{'\ۅ޵]󈲠>x':x'D߉=Q"wttC}%Sp=D'^s]˓nUMUMgHǽ9?3Zo??n<ɏL>T;ɏL~7;p.?sykߎC}Y؇ -p?3#OZ᪳Cx.?/*o@/Jc_/SGhD7lۦ/>^ܜݞ^|q}CV=PnowX/vI_{顆jnVlCtJnWo.lvPC6O2+a90Voa>J!#:C lS׈SuӃ}N`,ԃzPP|YSQ&<`Lԃ&>5y7UA?V#?|/Z^=f7?|fq90)[ -~p8~(G&Pm7?o?O{=",>_o#oKqqGd,jek=d˱-.-q'ljvq֩5Slغ…lǶ|\bD1-Zdc.v>Q/mt{"7.{VI`R^>оB\֙']lڟܱ˹,l8n#tںXs|:/9bmm[aNeAsW^:jC3zQkkKG*>Y8j16Ztb)6wƴ~aKjæuisc)ۅk3QA9N% }/5VyˉWE[ۋmc[_C óɛJҋmV!7 Œi6'{vзM^ݮK_} X*g>ZO׷C=#_<}z<}OˍO}~ -J;_} mcc_?Рkr Jm9E:`*Ķ3ţj lkM4o6ژ6.m7ЦǹmW.ڊ=9p)}آK%mжm}vاֿօ^um5h| m@؈FnU65mᏘ=a> X3/,NvdbjI2 jۼ ==p-0 -C7۔~Ti[H 1hi/!k[ L+Dz3m%1o$4-=- 0>)gb1DҖ -KbYM}9%fMK$U>ɭ+c6+@;E]0H.6n:TP= BB@'ūbkkjrN> q2Qh% 63dY1G%lm%l&8cdtKDa{ɦJGwG\j+ak*QVx}1=ZOf?md3X]5X  gյ!VyɵH[q%GL8h`b6 `п&#Jc406Vn*"פg2ALBvb$0sF.oI6MJB[)Vm8X.F:l 4k Oܬ9CvEQ:Ʊ3Ho sP^lJ&n:;9q~; --ZMtצ[2n"Yٌ!(\+]u,=֯)Mʡi7-;XVvFϦei@6{>8K2[6 +A83a,6m70 }rt.S"iȦ&9-piw,!ušVBRUb+RRi0) l\tƊA§b[ oe`me١-V#A`q`[N!}Bn;Ȕ$²8бLg+ MC0籖"\^GA&=f7*x2Ȗ#luʂ™"kױC_a,4ʬ##{21RŁI-R,@(82nBiE2Œ,7!3mb֦grXZn*Md>*sp5yߞ$$=]MUHFDgv Ncً&.歍Ҷ2v2*t`.stib8dMę]bT k3%cU8j O`Хuc% (5N3;ª*u=VGZ5EONUI -6F lslѭ&DNd1#֬g Jpb;{Y'f>,2$G q+U\hpn8زFxr`o([6͑=*8J.%X5v*N*pL0T%=NCֈ"D 28:R۔;8Cmw:O̔a^<=ȅ(.8Db~V5K| gbm;&&[>`GM<|l3پƻ<|sd>K&֔hAZ; `8Ҳ)>v;5 ^ofE鈂Pߤ~nXM%(Ab Ȳ[=;ٛ 8Q܀TE8}B8'F4Q -v&;[4)ig&-܎k%NFmG $R ƶy( |]'86I̾<pl h#Wh*k ȤOdAK60CpĤMm17f 0[o&1߬_$0A!YkOs<\ -Lh(4I  1 6zװNhxUi=ZBn D3lEQ#V-9<'4 J` -$dPnK&TD8z)tYf&E͟Jfwn -t>(უɋZ?عo_Da7l{J\z"P<+@L%bBȮPGVchauC"> L^ t -cVVh -PfZr)_)FN{8w~hW -}ޛHP 6RY3152\$Am,S /!]jf297h B5iwG)&i=xM.6qb=vW 29BcOfhi&S )۴iCP*y+xr3)EHt.`ZO$ 4$'ZTGi֗Ku׮ux2ɠDl`s#r*䢓$DRޛ 6'!_C;1!*qㄾ ۱ a2-  h#YD68m7k`%&>#ϱ B^MF[TbA=66eE~gG&0 6sCb&1x GqU|YK 4{Wp;΀b)2CZ=AI$^2A@Q]nw@B^!Igבb -oĆE!DGB&M,M$^wK304B56<d`}nzJ" T@@'|FZ%d,p@l1.L!'22hAGQW/($/F#P,xy&E6Xt 0.X -dIᙯ !.B 91ytFXԶ<+% pzkSAH4CkZ-Nfs>]3"4xF)P -KZR0(QIiR)_HG1Z -̴E/Ec8¾p pIRs w>hp& F+;-7sg6pڌYdcf{%#d'^Jf41 Pf)#{27$/FΰFF5H!IJ;)$~˲j7!3HHM4k19:4lL4'Q7SX[a3H!3A|Q!#ET+"z+Q2kN`kĆB -6t7b -䒩K}G\#{}A=%:V31%<8!s܍( 'zG>3~d=BQJif$1O}UEV\՛/ԟbxzE eeDƐG5J{cYFcq逇L(g-eȁ6kjVX#M rqe` -Y\@>oOs#PšW4Y=-"!JfkJLPCT*q)"4N*ע0#t W#bRRəMN^Q^3m1 iXtJT Jk`ܤ"!9 IH>O!eBfCH]+Kn&Ij[VyE%@gd2bR'ұ4Y)LxD؜F"brZfYygj7MWA*dCD,<8Q -)ظ.K7[)0D2\9Gpt}} -$c6Ah̚ 9e @'Ϻ#wU =jMT !ͪh;p%7nLʵȹEDIfg%^$5LPV{nI7gV|ZH\ۂf:_СjY\r 'Ǿ nی17{ᰁhz_GU;U`vl‚?wK鴈HM%Cкʏں 7Sqx es- - -032WU [OU2v`[f 9tqJ'Ye zZ' T婢QzvVvIl%, J&H u f3占 lt*O0SJ_ˆPo& :&H)f1,9}}YT%K; ȡ҄x!ߙ"I^G5fX9&(krb*9iExjhwE6)ݏ(,`/hDQ-YBsT9^6P~`v"m*O`R됹YKG`pT9R ǒC-G׋ʴ"W/DNfSy+iJ2*Riɨhd#'MfL?tII"x0m}E L֠>0\MG)/Xl) yʅIVbGӥ$:wO-M%r}#P 6@ۗLA8D~5U-Z:~??eQ^M! *.,)NbAd#Rcx>̛ՏԞ+05$[Ğx>QA}ecJh nCPeXN9YlҴ.6׈۵'{ }s EBpRr-O)RGFcc\m2~[,7}{ QMp V* %+A'!k>NzR%OE Visz&HdjyM;\V}D &q>gyՅf辣1-.?Xnt1rN*Fs^<|':|WW1rg7R'DxO}sjF 3C8ԯ,7|YUՕqVX.GOr,M&Use#`x]YnR -԰Fo0ZDՖSnv,jY]#q`>0ql{drQ+уN-+I-TG˔~_ޜ]]=_^|yszjMj}S5᭙# -Hu%6'ttrW-0h b?2ÏlNڬzfuߜ>?_]. MP\lϾmpکKxrQnz17 7km^0Tl...%;0X%kv;/~NϞ}lg͓c;jp.\G4; Zx\6eFTN5FLy!aI3~}onFDUbv!!223RaND8s*X2mƶcB[uP'atq.Y$ʋӾ@S2pbJħ29}̄p-| va nٍ+P4aTdE#T(ͅI0EeHi --еOl70DG~>3q\fj VXhҟh\9/Si O'PGhKYyl&W<;AH`EQH^fXM)݋V8?qmz'bπ _(KZ}u҆Xo尿`8h%م7귷z坣6sr[g-Ѱ?TJTŒސB"!Gћ2UcK*KL0|i|Z9 >HUa]Nm,Np5"lvv\쬞U wTMʁQ"<-ؔ$>[RdpE `8Lid|\KSI Vβ"!3+}ST3!lbS!A_BV_;ӁiT#^aR (5eJY3Z?v솹a(3Tp4xUrsdOCiZ -OiȺ,d} {~6Vnf`ęjᆂ>֑D)D3 tHUTm1oK"~`+}zS60%ZNr{J%EUfazf=6)>X7H́| ݂"8jYb [Ӻ_7R{e M~7i_~,[}A{_o^S*&S֭Ij~VmsЮ -%dyb` DcX@"p\VT~MCuG&+Aq{Rw.X@Yc0 ,0M:LEL ǀ*)`uz%Ej"b~c/SeL#ì\CRHQ 3*xr!9Kby&ϖYҳmŸ}k=) -kן\Fd:FӼ0b T^S yGPL ~ KqA~Ю -R>Ũ07R+UiH*\j -@ QfRWbԂ714sI›0 vs0!sfXL)e@nKT+ i"kz? czRp|&LhBuJuT` R,L=c:@EAW!%GPv2"3FGSDG w -Ӏy$~렦0-vylrIæMQQOtPr3tb33췔Y6hQ8 bW b31K0@i$p&nBMhB{2 0[)^j@*[;M=yBkv~䏁Նx pvM&J&D ܧjaoɊvTi6kbA)Z:ebt* 1i2=hOpCS.LQp?gA UP H7^.<0BoO$rs` -˩qG -ca=̅1EąH {:G!@?ABF aS13 HkD`fcf5!_V -yD=:Xԙ@Z!zkĊK˼sL|}MiY >ep4Y(f:I" k - 2L\{!@ 5eȳQxd -$7q6 i[oqmYQ³6VRRo%_I/'0@^` -\ PV$v(de{fT@4%Qsr҈P33*5Rƒ(SDQ#Xj@*qy!CSe '*>rc X3 ǜp3,!Wh4 Nނef )* 2@vT#X )T+@,A[*5eG^-*ifא5P2.0/8ơ\`c@J>tjsޒPqPHpJ -P l -$heJV_PZNE#c;8n ~uA ORҬa! -05x/` 5LS/MEh[t$%=QhHѓdu(ՍĢtT"F$VN ōCI!ˮjdf0lawkei ZA|E۝H|KLQl@G[UeBB&Hd wWuj[JB0inc5ie\t^L3YM '+?ٷ&l.=ogҤYI2ISY4O[/01<$4sk54a>^3?JlLv}j@<* GiБ;kPddj Xxl=4,F%d`^bhd)&E{`ɀ?R!F%c*A@'Q7fLƇ.@ +Si-*COJ@ J2ľĽm5gqH3?r[PZ3T`SJe ˮ)i7N1 q- SVj\C9["L+%{%9R5:d'ĭv:on7m ,ߺz"K4\3<ʽmx>cfH'O@4y!=5 ' F{d=N'"O*@`V'ͬxyk, V c{T{Ş TP3PR5O{p5O%cO@ZxK' ; vz,(a<ꞀjSkЬ*E<Š' Z4j< @dǞܒ`͚m[EP%/Ĕd*43rlmrb7 -AuO@B[G0' ^O@:Zq ZX` Hs^`<}^y] LҨNI;r x Ҽ K%2ǿ;Kfb40ߣ't)n.7_FiSD P2a - - dRUO1/jH ؛ "=N)J3@ A@rRP 0)@g5jI)Z=@CLXg2v QIgB)ƷER^[g22. (}j}i#/@f_2ـPi.,p B"(oݫŻ5S[wk698 D ĻR<3S>g\CW@=O2Y읉xz"M|A\@7t/@y8a6K菡/@3jW;_2}h=5gqS@.AC+3.p3f @Ν/pIZ_@j}ЙqffiL9p{A -b-*T189?ZӡvR@,9>XHJX7@j^ZS,n57dt @AuGѸR S)qnp}*7 :gFL/U(oƄs(]̈́sTEm Ml q$0K&w$4ao¼`MT֒(7) s4rY3P>OQfa7ʷ*+0IM겿ajb[fKs#ȷkFooA oR|o,g ca԰L6H0~g;k:C3dPȧ [ -xQO#)%N24h#⍤!PJ2,IzE´Zɷ( -P2IA$3L2ˈ}dٟsTpS2rb:("&)S䀳' C -y"7 ]6ASɤ@qnP4̆(})dsJ ]0 VOpCi]X5՗)X GMxek^f3:++A!9DkjBLةRrRG9>f1d쩏KaR9QyvN/@QZТE‚Wo 66 h ?5 -2,4@#Cv!U++es@F)q2֋zArBir`}ɨ?՘QxJ0R>#/ d%TDzz`-bɝj@<@2Pw ύ#p̅n$E=2 fs`PvGzCEhT6rR*d`Q^kOq5%^ Uh!D Yi^ǼL0wۏtɬkAMe":(EvQwfsPLMV}lFLuœQ!&:“NJ}xHPd\*y|)`)?&/aS*WȋR'p* ډ0`nj9%AHzߎD581:0"(h -/!*Ts -JC2d@#S6&H&F&Q8*AiPL֝XBN A$ѽ2̪\{h&R'Y }dmrS\d$HOaL&]H.1-dS`Ln~Dcpiڐ*")x/Bi%&$glni!)TW&?N_8( -Ciiv3".NMw[$6H4@X- E2+lNU+^= `N, Ui$8|6hEG% R"÷Q'  kDF:tL#.*{cϋٰtZ%:!1#v)Ju:A4s/ŤUTwVQJVȈb2QIVňV|+Fo/oI&?p팻~{{:Xc^ܘjcb=oti0FVs.GY4Sz9);=b4W7hnuN|Pz #kQMCz  s,ɠF3%RN h x4e (C@*y>`,1qeKm<2,Z}}2Ps=TFPM?va&QZP(3B 7i` >QI '\wH;~ -~l J0Ep/k7p= -r)8}kA -WAqrFl_22FaEs *LIk)͡MM\fQJ܂^fTjFJ) BҌȄBB#aUAI0 S9ljȽ)I[-04in3Z[xG.G) -- >Dc/ )naX=xgsaTLԙci3r@ݢT`TC C(& G .p6Ɲrdyz((4h pf𺛶RS<6U4+( -v)A)*d< -,a,Gb9'ˀPᔤ#=* -m?Pz ]xJ.~IAk f(2Z$'!,uZ A30Y3NBzUJ#O[^h,b6à,hB=-]a3x< -9RuEh4#6Μ)$QnK+6 -SaKb#Tn@3ybg <A - -b3z@S(m7x.$̤6Dέ vb1N CS4b0uN-cCQ ){6LWǝ -0Mr߰K dbbe)%,6ɽ?0[km3,6_ʵIl`2 J3`Pbl;AװfJk̛Ԏ(/-6j -zYNZAe*gPiނ$VQ, +pd=8!&A P2r:;UJCgGza\|c -6|2@'= )xsyxC@Y -cO?]~`O%ˑgCh) -^AL3ܘ3AeH,Mr{Gm^;(IQ/MMNpragT ]%@N9e)FFth?)$0q-tUtAI@oP)PV6N3Z4ҥoa -ހz’=2tNVʍo8X=3GLW$}\0bP Bϊ}xC.RJDRAwbAĠHrȞtGEB{4IxïY B =jn98bHsF"B'-) -xLp!̫dɧ*"#P -Z0*2 T&υtFQ`%6.!@ @;8$w`*A@ DCu0=-M`P8I,8#9xBו R."X&ap̀ ~0#f*BiFdJwLM|DB=+{t1$aA$ZINPN8"/YF7 <ÊL"/ZDUHI=#$Sx  xhHPx0.^6.B[3JCcDTWi2ZԳ@0fh)0@Uw瓠 -W\9E;i0x#W19zP | 1ҴADF -l;RnF 5G )d4Re.<]f&-@Mք&::P[&%j$Qm29Mțbb2A,`S.&ʘp>r nV:9F-8Xm[kp&?hl Þ:E3Xsb/pj)T$iS$эON 3vJAhA ۵ .ʤ(K 3g0?J\xȼc6k\5^:_ s]chYL)G2qXո`ТsVj%Pۍ^l 8&O's<|`0T$ Z4o4a?]8҇?o9mw]Zۃ0<5rXnؠ.{}혦O4g3 X7gkzS?a|SiF}o>A ڝ:4ݮVaS~`++Fl'ò-gzM_h)AK}"M91 |z-`v%/I\^)H{JaMR|V~kv "BV'O _ NUC- a|++g }#AӚ1PBxgrϴ_X'1^ġ~n ?@l75[+~?9>gթQ;II`m)@UkrcuSevEWUCƿ2V.#߀& rf7Z[e{A9϶u?Lr}h_;3–?eY#R[RO^xL<]u$dvÃiXMe4C}XKoJ{l};4j>?kƶȈvTcj{mu4\`g<N~O_h:nX4{9bw7nL`7"1<t'ĵaǾGnY]v=8b~P̷?=?dzGf odzy^v;{eA?.N--w4U,D,e -<;D xß- 0c1' EpC`[A1?((O9,.O~ wav,V$Q\hCgL jI/}'ˍq@DbLZ"G[8R#}/IF:Ƞ'B`ođ; eX oohgo+;G0#v1y.qXǘo}cȉ˰) *e8b2PĭWsw˭ƪ&坝rʽ}1:7/ۓ{QHncj;:_Iܕ>&t->a$EF$0)>eBʕ/}М $WGRk Pi* K0m,&TPr&M&f_º 3̿PuAx@j|1J&iyua_4-].lfD*W߰A5a%BEܦGj ՃmP`?_ָ7sE2|`>sKg -vwvPT=.Gs(2&q0+ RwSX]ڮ#)% IpP[PTÊL5ބ+7@LO#^$ukr̄/.>y˛&|5djL/ j@1t).cNse)tcJD)X?^=*=4 T'?yB(V_K @eי .*B("gaɵ.DT7!3}sʄv]x]EVY$c6'(gs@AycM4& (sPNa1 +-#nPiCV]N Y3$ n^$*0C_gNZ9.VeIB!/i2,Z֖pHpqª}9# 8PFdt$L\* O{KS\ĄO"mhl'wDŠ*' /wFRRHDlf^"t 9>Lʍ¤m9x\ރיtYu9 ҄a;`-YVqה>)DY!/Zh2\J8a?<;tjE"k2AM:U"=N@Gauk ݄*"L zIrO&cU,Ia1 -B9=RT:CEFkoKR85$_3nym5I?MQgkvF6]Eͣígmm3t83߱5roe#ZNx탡yN=>ج@-W84yΰ}4퀟5wJ,?M^ JZf؏8Vz~l(@l"X:(0iհ\²y΃SijOgh@`Ū6?L9 .lV_+r|c~oJ T6% >N\ -~׀׶I,%v%Ub&&N XKgE&PCKS0,`6'mS$*s%.\aBJ0w$c;W9dfw&rFVp#Ejņ&>LeDZ Rs&}-"5MuSA㋣n #āBȆQk:@un+cs=S-|K'h׺ט YB?hX4;Tv<+8q0jbPIn*fi)N4k'lҠstPKqkm[َ.5vy̟o4~;uٞm 4JЮm;(le៱/>u?zK{8$e1 ̴3ſQ˳`7\bLhM} Yif?՜aaI)d V<8NL/gg xXgG[}S>jÝ9P}NŹلJ|]Gyw@N>_RqA.6aM{ 6+{g0w!;uiq'L6crڪ~;'NV]`rg6jL˫,7GNѰ߇Rew1rWL's~۸LDsAk(^Yn-> :ְlIz&Bc\QFoG1"gCzq2R`>w;zYvzkÀ$i(({O4`ԅ㟹,3RCVeFxkn/;^l! mUl.F`} = o9 -rxw 3HQYMhOvHg',b]/$U$+>u=y=>#DjM<_]`otӦXf (Bi -3#鐧whkj?Ͼ3n`#!T$C v/%RDtހ>Պ2Y{%f֜-r{to6qO26b0Fo {\fhƱۮy\=A> 4ψo.TfvNGk,o~i>ψ/j|:v`e*X it(I|f~l5IYj`vwJ~pK/t:%$(aSv)Su#uF|β7qDw< |€lJ#n Ė;KeC196 \ hĶ3>p9Bv̟'zK>މ]҉6O&F&ypSV::¨Q_3D Y޲^ 0 OZY54$82'|O9@e$xV F6vuZ;p`. - ٭q<^+9U"EǃECtu*Zq8I'k?nnNp3h˝R1iFzc|r.'m/wAT1:ۨcj?]dΧ)O*Qy|L,$ ~;lNY_i6 x/:${bRC#2ˇU)M{ݓnW CpLa$-F'm?>3]PWz8E=6 ;'Q 52G9H Ɏlv׀L-XYEԽ͵fu$) á-۲:׎z9c3A~]81:K֐WX 3 ]hm.޻v*o]z}u7/fw_9wmb]H]N_zCyGle?/2)'hw+sG|V3cж?^ؽxu~Nݛ:KX/٫;㥏o䫙kuoswVzheI^xwfi'5 Y={Mb_y;}ME{HS|YS{Eq£k/^~X]N{~^]YݣY2Ά w^]}yfxQku'X{Bxv\>zn͎vDkعǮ_g3r=l[o2{xsjZh /W//ޛ;|Z ҽ[չgۯo[zI+a[^}@խtՄ=pi=wiWC&?^&_Z3?=_~@-K~OS[ݛ7nl|wX0}7~ -l*%Թrt[ҏ֓Wvf|Zn/_XH>./xZ[\X_~fA|*~]} _V>>9sie?`Akmʃk:@㫷?ђny{Ɠϭ'GU`nƋ9զ>Akpj.0w{)Yy3/>̭,ir xWݯ 7:Bzg֓t K3eK =:v.M|{k9'be~ ӋQRk^737O+swT_m\ihѲ%`,:Z鹗<AO]=r pƽюߝj^6?_4-Z.6u4?X^om=x;/іu~=hO_'? ݢCS/niX{> ͗vO:}d>#PGnw{CqƇf7Ahv,UᄌdCsa/z8 iM/la*ܤh5oVOo^BlS-"H Ļ5y?w3*;X|驚oYTEvW"$>Vsm5OKW ܛcxun5\:8$|r#D"68H.\dt} N+-hTF}q΍߲xk }%ȘtdɄc}4{ >ݧ b-.4#:_D-f4<0tf%Bh:֓g+'(Z}-=wWW><|y}ܕ&ܺ[ `g矟}~~ɶ@P͝Pb;3}t{oЋSƫ>-KZx_6Kk[X y6T.w=]Hd [K^BQqc7Z`݅_.z+RjÍ7-(PZWr?ir#X֑n[0y9k}6G_gxm-o,[ __Yx|UM@Uh J4}s`xwg'4cJ4grA(W9Kw_mA}ҝ>g?]9y(ސ~Wa.fsٛ?:s1g\)5)jޛs߿$.6Tw;(nxop4\>%U#K:]X[~td+^9?/9׵ z:~yLG$xQ4.%zzxVFCae{Oo77>.ȣ]{::wƃ'S"kmwWL_u=еW++ZֻW/]߻Ұꚫtsn5u'9lǘK(gsIOy1fX[aV*?-V<7 9-16s L\d۴7<^>(YY󷓥ŻI8 jÀmoKAم^sN7ahGO]|{n»)'i^Q5k6ȿ_oD.(P󇇛<ٜX.߭m =;˝ɛ*kV<'/~ziAzz|e} -wf l{*0$`n.{z4 lyO.]\y˥^~)Ty<@b⾦;6&*X-_»gc7sxu9;s'rѯwIکzoߜٕQZɍ>ݮ?ڽ]6x4TV9_ >:fS#-[zs;}qg1wsJiC@m4]%M琍O&CSizsݹު -w-l~,v4}˵Vֽ$B½[t;v}P-7sG[GK;ŇWR'Zx5[HIiQ?}=Ru3o-?iev@H0{~evweq~w^oMnҺqٓ{핹q0͗<y;ߣ+s0| -;WoewK[BskxiΓ[G]$yhnܹppa{{ݥ 1rwhhO5EpvKՉZBLO^:ܓ٥'Cm&;Q7zŕsߍv-ݝˡ+;?F־!-^+^|&\-ݹuzG{ces0@xTνC誷525ZYo:<J韶gD&k[OrK\r5hL3>R^xUhҹ3وw>Jǚ>$˝C4m|m^Jt|qWi1v_@K\p3]9ֱq}fgn*ޝNz;?@o-o%sCtZv w'im VK>md=yiBZzcH'@@dۃ}5ƲeyA6URTV2?۶٬>*`ǵzpj 6_77P,E+8]M Gh<jx+4|Hz?\Եj@cbEI 휾Z-UOx'7YKP"щF9vs~_躮V+T2jQO(EWe{=m~èϢ$7V/.<~^ߛn7;(VI0c̘sϞ2~^]X1PRv=Іho&SHUTLpP>}Jʍm`{;CY5Ο!=ݬm_F9sB'l/?ų/&IZik7j$d.:jy*+;w%Ԟu4e) ˴nslw2=/g?$-h I+_7!ʹdWz70q! 'ÇZk3N^_FĔs67 +k qSӮ |Ͻ D~=뇛‘Uڹ;NTT; ^D1AW\=E(*a{qڗ=͠p8QpG=S֒}WYX}I9P?zYзoSTTr&+|ꛖޒgw?Tjz,Ji9ID_ [jk2M=GYt@?%_AQmI?lpGnT  x1~Fg9;xW@} 0'yÕлFwwݟ7q6%HY6wϚ`Zw2'f`2yW2[}8`JorOW`B2,:tfVL2Gvx>ydm8usỬRs+$~r]yAp8& TlǴ p!مj4 f!2vo߽ak A6JcX*,G}2V#T4.A/.|Njymx=",]jxA۬ʦ괫gN|x7:5c+ڡP6K67 -~:.CCnCe?xd{azb11ūvQiJ\(Htg??O'e6lHqctP@sZ`\[ו~xJOիVnjrؐsBt$g{|}N _lcCc'Td RhM-+ۓMbKKk\(ԉe֦WsCp/7uI=:kz7?;EhũHb}X?jQ*+F# 1vzIB.u8LRoV͍p]|Gx=uźZ{.ZnXZj Vև.k火cw6 Wp7hDnO++[ktv^#Vi")@0T+XOXeq|6`CWy 1P3ƺپsǺ ,66QOw k|+`bcwRIh\Z{ͬ} nX}UY-l\=t厵LǕӵDAIF4#iW'rfzõ2Ia`m FY7)̏s͍ۛ}~큆Xs{37hnηDp\(Xoctk18F0V@GZ箚?;nXd%n\vv]|sJzX_ҰsׅfcŜapzs#knX SWҝG?YUtR7asU߿\G} -XsyԱĨIh~7n # ]{k~{؉u2X~3- uoR߷xr#Y4ZZXM.6VmtďtTOom~`hT!vD}آ>- -7ώ6ͦ[m^7ˉo9DsyzS~}WR>mU:_'GskssŠmRODFePwV@Cl -V06x`ǺZHv=>\lP"N8 -hl[[TXѠbEƅm^Y KhQ7U⽇{C}l6W7tQQ\OoD3™4=G) O'ҿmzÕ #qۄ;o+ UZ4 v 'q81`,vW*۠ H5+MmN_MRXWO!4ͱ!I}@[^3zV#\o)&pWjb{PX@3A# -3CdĊӸf0F!k/аN9#QEZҮX緓.0~ ;A &=K/t=^v)5A zWwFwcZtMM -jRҝD5neNҾAtvW'.s̈DjmVmSZkh,tD-oN{0M -^v1-i6=KDRSP)7UύMv$9I:F;Rկۥ6MY2 8ڋBJR9ݢz1avihmsi4'sr=C;.݅i @x9A҈Kc˥Ȍgi~՜֢3Bf5|ܗ細Yj{wtsZ )7[ƀ:8e sKhKјUX't -]-3YZ'sOH/c6>/ I/E>b3ʼnaPt>EtSRA]0ȭ`: cq0cGkjip XIa3mF!7qiztz9}3/vq=/bw5vO'wuޝݒv>+tg -ᛤܚspFp2}f/GH?Ԣ$fiF=hp}8qǾG?M(&{Ha !l.ԴXjv놁| -G -}Fpg HskkpQ:4jΘlnCνp!{ ;) - -r Q`ĤgicWsiulj.wm!h\YeNU} eU-K-$4ZZ>r>Z>Rt.T X]kzr>ZYH9+ QKyE➵|?mr>dtrk➁ܳUghH'[5?;\+4KDcK%92ؑTUP3)dũVO&!5SyJb6ucEiD~ *-햢 IsUvgwt'mN/BxO.n*38͟oL ~B($ )& %nfw1($D^$̀%\Wvǘ_ FewylSUI{YhC/Ѭc7Tnb6R -~6~؝QBwkc˸':4N u@CF38@(?G~~x9{chK_wI5RC5=5^#ypjOok>%QzUO}~tpl7Kih;4 -(*g.his?9wJNҞGp+aUsUNWDzVg}ɚ$<ϓc7f6,wpv:WSa -ymPrn=YzX-"@vI]案_#C`H+f}J`.l%4)J5H>%P~Q\r)O=>oil9*(Ш-K§FϞ -Z>aV0w$RzuIzoܼ7F޸HhВחsM&/`)I#pfFS 䬇ha[{cĤQ)0mޛ$r!T0h'7iGilb_i,E6B.k rOqKaC`a*f%" ,(3oc4=*bc)HQDuƌjzzN}3D :52|<_ @&yʼy͎+%6Sʼ@5W9j1:[˼QC Fk|gV짬*w!j_֫۫otqSiX^m:m=qOP~a=a(X:~Ig RkQ36D{UL[Kk_ 4=^r$ly zy/[dA]AsSCK^e%^J*Lyl* TO߬Gmz\bi6ARwO3JФM>YM}sSh ܺXϭϑ;>7X蟥 f}~q%b.o n>7ۄ*K}|U}!ڙK.s9(# Ϟڻ>>gj -f8d-Ms}n}2,MעQK-sÙ @YVK+ , :\ط4y%ڜ}eˬ#% -*V(/rϻbe> ̠R >7 -c}}n%p,R `a9K+Zn#Un#n?Μ -v5aq?[xr,wEZ<7o9rn%UeJ6hy\og/'ErsVȧهTZ6ng&ꖏM~M0q8Smbq1^ju -?G^X79n.'zfy)]Gue^g==H\|OsaWX7BKhz7U9ga|хgw㚾uM 0oܦ9m<2)7RNCZNI l-gU: -֛ݙFfB5 V)- -${Qc)Bdb\ @ `wH.x'8vjs"ÊFA7Dz#"lP/I6jcy>Ec? YEP<R.r#<8a8l{rBLMKЂ =@B)yźx%qjhͥRx_H;Ho=.z_(Zr/zt/>߽nI}_FEj35@˸O6W@sno[J55u*LSq4j߻ߙk漐;/G2 1e0׾Ιˌ%3!W"B\ j zlRٶ5zYBw]0R҂(ɗhg#h˓jkw` -ٞmFS߳qhݶRa"/G\Ů1YZ(ϹI&˫E|z{m'ЩZF,|h˪-n GLjI-tܭ%\"VƝNjO\J\WBbwWSD3lV~mDl#U[IQj̛]uNHϖj\c Hگs- 4jr<+Wb*Dg΢;zjGc\ZX1Cۯ^iWE=jNdzele6EGe4R]y _B,i{I`s焂UYې*OʼG*V4B.W?]`URO'3 .셈+:jfgu4a~KBb*9S,W~Ѵjm0TGO[.iþ"6cLQ{8i\zKruH0qާ3q.Y -dLӌsyu3ӻvCtU1.⛶|!S&-k,IqX*~b#`Aw~2UR]8B=O׵j3z;'4up z˾:hz':.*o=0U%qdX}h;ٵ2I/%"΍yeW ~Z:yr*\T**ҵ_tkծ fOӐ[C5rz9,С[YY^\Ta]jwڼ15#BqMgNW24,9wlsp2}~>:|v_uES_<~s9?o9o^+w/c1z7|~+x%UT47v\RT’4"ՆdT4i;eb}eu~/%dQpKj+±ߵ1#QHo  p 4AT}E'e%B0dq]iD>)ֈ`ɀTDEk4\%Tq,:M *H k4B Nb89c!(EP"|G"9CL@"|!casY)'hj)s[rwcsԝ>@gVt㬝@ #V7g!&ZЁfI<frC@La+5#syHm$AknT#8&t  5?V M/(*oѧ{8_+6_vи:qsc-i>Y+f1!Ġ&Ѹ fUcd zLA.>P&gg}gffNn"@R gmOb/k)jĖC0@O3@IwE,}<_&B8 `d`y~’8 -~[mo O36dԾOZ-bjS"f -9-<-#bj23# 7poqڞ ^G\~)h'.b1Q y41]RZT'gzy=pšz &NƟ;ǩx[ x=Cj6 ^rP@\[S(hk6Ewcn.D+K@,\i+AUaL!@˳zWjc"ex[p?QޫPm2TZPΉ$@.b_x0ϴ2z +t񼼿ʕ?X2&O'u$*/gcl[y:ys RNmpB#I}h-;5! |l25/R٧.^g{NQAPW{)724,eK}$}ptH2P*f+&{{ ?]=B#ab+s)JB:-\gۯE#U !@*@b類 ]\[?/Ous ӯ c3xT+3'W!k+⛁pW亡g`-~SQ|3NBnG7]Nm`-\_prxzk&m=SY%* ?3WN^řE3NM3J^O=TB# }5ޞD.sбVJQˣR53m)8,Nb)83WO\RRh ڳ^I㫔ҍ2R$)!-)NT1#zmqnx3qɽe_}|SgK'ɜgi O#lRLo#fsI;lG(kzőD( |]籇ok8'[U1 vcv7ڮ~8~<[xd =f0CgZRʮ@SV2qcX9MnI)8œ<:H"8N{nUS39'n?L#L$M:X<- D؝b]`6I9C;2dh-%SK;^#K; `dZ]NIO30U )K9\:P9kF +14@;GUuOs#5cz'oݎ_z7Zw!v>n-iD㴖Z4a[Ӷ"q78F+2Ef NcQo[wF({'RD<¾3^8، כ~5FltBifkQ8|:1ΧyrnHؖ{Mڳ!x^$bnʢ&):}&Rv]N~8#^-}X״ŝUgR?+z|]3QZP# W,RQj@Vc\-0ߨMU^ {FA4}Y)dL[9\V!xxGQ,JR䅔*+`E\&ehmMrVBVP\IG×;}CV҈"ޝ#=0#on}8HNϏ`+JONTNDuK)QU% eeQYR,d.Vٔp&U2+ϧ2 U5[1lUS -ϩ"tWxZs0sABejV51[/|6%+l(Ng,{9^P^`/%qP_R^lJJN 3zR URbJd''\(K6f^愔H~h6fR e5%%JA6f`HY('SUa -pO`*hj&zA+HF`HIdA>dfRʫECqH5YAt\F"1jĐce9`<"Q2$G"Ek>&[YLɪ"-[+Gs[]c0oH)y)LF"@6 cF+IIQV8UeNQWHzmfkުs7)!29}:|mí٬T^'(fwUm$H*L{k&yQF% 9z&\w #voZh{PY80%`nEHHh pf,ل0/xi@XQ@/@mr6Xf턜9莢(U-|JSa8dFe@: HŜCJɊ"9 @"dpefwB: T01 ;[TV -jU1[2\rh_./RXI v%+UUT'3Ӊ$?nTT6e3ZsX^Vhq_Vs -<+jZD(D"IYj2Hg`ۚڟm/RO")#g6j,>LCTMĭhp1@AMI-OagQ0smX$bE mB=X`I!K4$0ZMm$;Axk C7ZgW*ք ք]'VA5lv1 va @p9w g*仲/jrPa&R#[uVdP}b#)$]zN(% vVq2ژ,iUQ3?ul"e*,`G*hXLndɭԥ.: Fn5dSS9j`l+j+O00<^YZrWy$nxA7C),(sCա"ϦMjT%hdVUTdh'&E%E3hM;`Oah%f36m陂tSl]EUslEp`Sv J.<(@a06^̀ #S`5Y* dk*ъ l sԊv%QHEt`@jgȪ>6ul"`6=S>stream -蔅 ; k` -2(zB^(blUQV3t:Se%Yuf)iFX8^혶FII_ Ie&Q>R*F.zAC|~뎻iJALTY-k~,-zJ8ZPAlHyDdMsjvxDYPo?kUf>ΚItb}Bi4tC4Ãx:L`e6?بBP -endstream endobj 24 0 obj <> endobj xref -0 25 -0000000000 65535 f -0000000016 00000 n -0000000076 00000 n -0000039745 00000 n -0000000000 00000 f -0000042354 00000 n -0000039796 00000 n -0000040101 00000 n -0000046942 00000 n -0000041181 00000 n -0000040300 00000 n -0000040619 00000 n -0000040667 00000 n -0000046829 00000 n -0000043028 00000 n -0000043116 00000 n -0000043511 00000 n -0000047015 00000 n -0000047255 00000 n -0000048315 00000 n -0000053676 00000 n -0000119265 00000 n -0000184854 00000 n -0000250443 00000 n -0000250770 00000 n -trailer -<]>> -startxref -250978 -%%EOF diff --git a/assets/images/badge.svg b/assets/images/badge.svg deleted file mode 100644 index 6856d11..0000000 --- a/assets/images/badge.svg +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/assets/images/packages/@arcticicestudio/remark-preset-lint/repository-hero.ai b/assets/images/packages/@arcticicestudio/remark-preset-lint/repository-hero.ai deleted file mode 100644 index 4809127..0000000 --- a/assets/images/packages/@arcticicestudio/remark-preset-lint/repository-hero.ai +++ /dev/null @@ -1,13197 +0,0 @@ -%PDF-1.5 % -1 0 obj <>/OCGs[5 0 R 27 0 R 48 0 R]>>/Pages 3 0 R/Type/Catalog>> endobj 2 0 obj <>stream - - - - - application/pdf - - - Arctic Ice Studio remark-lint Config Preset Banner - - - - - Arctic Ice Studio - - - - - - - - Copyright (C) 2018-present Arctic Ice Studio - - - - - Adobe Illustrator CS6 (Windows) - 2018-02-07T05:28:35+01:00 - 2018-02-07T05:33+01:00 - 2018-02-07T05:33+01:00 - - - - 256 - 124 - JPEG - /9j/4AAQSkZJRgABAgEASABIAAD/7QAsUGhvdG9zaG9wIDMuMAA4QklNA+0AAAAAABAASAAAAAEA AQBIAAAAAQAB/+4ADkFkb2JlAGTAAAAAAf/bAIQABgQEBAUEBgUFBgkGBQYJCwgGBggLDAoKCwoK DBAMDAwMDAwQDA4PEA8ODBMTFBQTExwbGxscHx8fHx8fHx8fHwEHBwcNDA0YEBAYGhURFRofHx8f Hx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8f/8AAEQgAfAEAAwER AAIRAQMRAf/EAaIAAAAHAQEBAQEAAAAAAAAAAAQFAwIGAQAHCAkKCwEAAgIDAQEBAQEAAAAAAAAA AQACAwQFBgcICQoLEAACAQMDAgQCBgcDBAIGAnMBAgMRBAAFIRIxQVEGE2EicYEUMpGhBxWxQiPB UtHhMxZi8CRygvElQzRTkqKyY3PCNUQnk6OzNhdUZHTD0uIIJoMJChgZhJRFRqS0VtNVKBry4/PE 1OT0ZXWFlaW1xdXl9WZ2hpamtsbW5vY3R1dnd4eXp7fH1+f3OEhYaHiImKi4yNjo+Ck5SVlpeYmZ qbnJ2en5KjpKWmp6ipqqusra6voRAAICAQIDBQUEBQYECAMDbQEAAhEDBCESMUEFURNhIgZxgZEy obHwFMHR4SNCFVJicvEzJDRDghaSUyWiY7LCB3PSNeJEgxdUkwgJChgZJjZFGidkdFU38qOzwygp 0+PzhJSktMTU5PRldYWVpbXF1eX1RlZmdoaWprbG1ub2R1dnd4eXp7fH1+f3OEhYaHiImKi4yNjo +DlJWWl5iZmpucnZ6fkqOkpaanqKmqq6ytrq+v/aAAwDAQACEQMRAD8A9U4q7FXYq7FXYq7FXYq7 FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7F XYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FX Yq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXY q7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq 7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7 FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7F XYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FX Yq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXY q7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq 7FXYq7FXYq7FXYq7FUptNeubq1huodIvDFPGssZLWgPFwGFR9Y8DhpVX9KX3/Vnu/wDg7T/soxV3 6Uvv+rPd/wDB2n/ZRirv0pff9We7/wCDtP8AsoxV36Uvv+rPd/8AB2n/AGUYqvtNUae7a1ls57WV YxKPWMJDKW47elJJ38cCoqa6toSBNMkZO4DsFr9+Kqf6S07/AJaof+Ri/wBcVd+ktO/5aof+Ri/1 xV36S07/AJaof+Ri/wBcVd+ktO/5aof+Ri/1xV36S07/AJaof+Ri/wBcVd+ktO/5aof+Ri/1xV36 S07/AJaof+Ri/wBcVd+ktO/5aof+Ri/1xV36S07/AJaof+Ri/wBcVd+ktO/5aof+Ri/1xV36S07/ AJaof+Ri/wBcVd+ktO/5aof+Ri/1xV36S07/AJaof+Ri/wBcVd+ktO/5aof+Ri/1xV36S07/AJao f+Ri/wBcVd+ktO/5aof+Ri/1xV36S07/AJaof+Ri/wBcVd+ktO/5aof+Ri/1xV36S07/AJaof+Ri /wBcVd+ktO/5aof+Ri/1xV36S07/AJaof+Ri/wBcVd+ktO/5aof+Ri/1xV36S07/AJaof+Ri/wBc Vd+ktO/5aof+Ri/1xV36S07/AJaof+Ri/wBcVQ3lz/lHtL/5hIP+TS4SqY4FdirsVdiqXf8ATQ/9 Gn/M3FUbNa20xBmhSQjYF1DU+/FVP9G6d/yyw/8AItf6Yq79G6d/yyw/8i1/pirv0bp3/LLD/wAi 1/pirE/O9/c6fLawaLZwST28cmqanGYUdmsLWgkhQU2kmZ6Rn/JbJBBXanC+peYtOsdKvEsbG406 a+9aC3tpTIVlhWM1mjk+HjKTtgVLr7Ur3y9f3eny/V9dc20L2XOCGCZLu6uUtYIZjCqp6crycgeA ICud+xVMbjyr5mtrNr221Rb/AFSNfUOmy2lnFYzMNzEnGJbiLl9lWaduPU8sFqhNW0fWotY0eCLV pIItWnmSSBrPT2MKpbyThFb0WrxKBaknCqlJe6lYX13oaGDUNSlubWy026ubeFVVp4JbmaSVIFiD COGF2CileIFRWuKppL5a1/TjDeWt8daIkQXem3VvYxI8TMFkNu8MUDRugPJfUdwace/LBapnrsdv aRWbQW8Kma8t4JKxIapJIFYbjwxCUj0nTdS8y2S60l+dHsLwerpVpZ21m5Nsd4pZ3uYJyzSrR+Kc QoNNz8WHkhCTprr6vpWkahcW+jSvb6lLPd28Fqy3ItJ7SO3kVZ1m9PnHcsWTqG9sVZJoeiRQtMZ9 RXVwQoVXgtE9Prv+4jj+174CUpFcNFqHmnU9Jl1dNBayeJdPs4IbITXUTwJI1wWvIZ+aeq7RUiAo U3O+FCzVtL8z2/lvU7+4vEs7zSYbpomgtbNortIUaSGdlkSZoyy0V1BG4JAAIxVVjsdR06+8t/WL 8X8Or3ZguYZbW0QBBp11c/CYokb+8hTv2xVOPMHo2d1okdvbwqt7qC21wDEhrGbeaSgqNvijXfAE pD5c0fzFqnlyy1iPV4/rl3As6209jatbBmFeLekkUvHts9cJQhl83vMwe3023+s3VlZpa6fIi8U1 G4vJrSUPIq8jHE0RLf5Kmm+NLabXfljzLY2T31nqa6nqMKmRtNuLSzjtJiBVoo/RhW4jLdEZpXoe vLBasg0r9C6npdnqVrbRG2voI7mAmNKmOZA6128GxSiv0bp3/LLD/wAi1/pgV36N07/llh/5Fr/T FXfo3Tv+WWH/AJFr/TFUN5c/5R7S/wDmEg/5NLhKoS8826el1JYaakmr6nEeMtpZcXETeE8zFYYf GjsGP7IONItFaQnmEvLPq8lsgkC+jY2quwhpWvK4fiZSfaNAPDvilb5k1abTNKeW1RZdRnZbbToH rxe5mPCINQg8ATycjooJ7YhXeW9Wn1HT2+uKsep2cr2mpQx1CLPFSpQEkhJFKyJU14MMSq//AKaH /o0/5m4FTHFXYq7FXYqxLTvLeo3uratrV9dXWnz3k31a1ggeMUsrSqQ8qpJ/eO0kvXo4HUYbQkuj eQkfWLXTdd0iHUtF0O2u7LTJ72OG4RoXmt5LWisDRki5RE8R9g+OG1pE6l5ENtqF3D5asoNMtZre 3vYI4VWK0/SVhdJNDzjSgT1FHB2Vd161oMbWk1vPMmvXdhJZ6dol7a65MnpqblUFtbu1V9V5wxjk RPtUjLM22wrgpUVqGl3p1TyyycrmPT5pTd3LEcqGyliDtU7lnYdPHFKUat5f1xtdv9ZsYBJc2V3Z 32nwu6otz6drLa3EQY14MYrhwpbblTtvhtCMvtb1rV4k07SNOvdPuJ3Rbu/u4xAlrDUNKVJY+rIV +FPT5LyNSaDBSptr9pcXMVksCFzFe20sgFBRI5AzNv4DEJSLQr3UfLOlxaBe6VeXcemp9X0y8sox PHcW0YpApo3KKRYwEf1KLUVDUOJ3QgX0zWn1zTNW17Sn1JHt9T9SyjWG4FmbmayNtD8bKrERW78m Wo5cqbUwqyjQ2sg8y2ujSaXUAuzwxRB6VoP3TNWle+ApSvUriZbu+sfMWivq+lPKJNNnitku09N1 UGGWIAurpIG+LiQVI+KtaKEHYaJqQ8k+ZLKGzktIb5bsaHpMrqzwQSWqxpF9plQPMHdU5UQMBtTD e6pl5gsNSGn6HfWlu11daHcx3b2SFRJKhtZbSVELELzVLlmUEipFK4AqjcXN5r+saMtvp11a2WnX TXt3d3kfoCqQSwpDGjkOzM81eQXjxB33GKoXy3qGu6T5U0/TF8v3s+pWtukPplreKH1FFKtK0uye JCk+AJ2wlUsHkXXbZlNuUlv7KzsrmG5Y8YJtQhvp7u4i/mVJPWZQafCG9sbWk/vPM+t3Vi9rpeh3 sOszKY0+tokdvbu23qSzhmR0TrSIuW8N8FKnmiaXDpGjWGlQEtBp9tDaxMepSGMRqT9C4ClG4q7F XYqwe+0TXtR0DQ3sphPp0VlEL3RDLJZ/WaxrQ/WoauvEV/dkcH/aIyVoTjy/rOgQiHRIbT9B3cak RaPNGluaDdvQ4ExTKO7RMw8cBVkGBLG7R/0z5tnuactP8v1trY/svfzJ+/cf8YYWEYPi8g7YUOv+ ekebbXUV20/WwthfDsl1GC1pMf8AjIOULeJ9MYqmf/TQ/wDRp/zNwJTHFXYq7FWK2fm3zBfQvdWP l17i0WWaJHF3Ajv9XlaFiEfjSrRmlWHzw0hbb+ebvUblYdF0eW8H1K3vpjNNHbNGLmWeJYmVuXxq 1q4ahpjS2qXHnWbTr3SbTWtMawk1e6a0gYTJMitwBRnK0pzkYRj3IxpbRvnPzXZ+VfLt3rd1E9wl stVt4qepIfBa+C1Y+CgnEC0l3mXzZZaDLp8dxG8pvpxE3Cn7mHkqPcSV/wB1xvIgY9uQxAVvWNd1 K01KDT9P0w6hNLC87n1kgCKjKn7YNal8aVAt54a2le11PS5rK/WWxRYS8ciSR394lmskcqE19N5P jVgD4VrXGkWmeo+YIbbUrbSraF73UrghngiIpBB+1PO52jTai92Oyg70aSra1q0elWcd1JGZFkur S0CqQCGvLqO1Vt+ytMGOAK7W9Wj0nTzeyRmVRLBDwUgGtxMkIO/gZK4hUF5e822OtX2qWEcb291p dxJA8ctP3kaO0YnjI6ozxuvsRv2wkKl+oeddSgg1S7tNFa7sdJadbqf6xHGa2wLPxRhU/DuMaRab 6HqmsX4L32lfo+FkV4nM8c3LlvSiAU2xKUuTzTrlzdXsenaE11b2Vy9q05uoouTx05EIwr3xpCjb eeL3UGSPStFluJwjm8gnmit3gkime3eNq81Yh4m3UkEbjGltq58+XNr61rc6NNDq8Ulokdk0sRSV b6YwRSJOpZaB1YMGAIp0pQ40totvMus2kU15q+jfUNMtIZbi8vPrMc3pxwxtIx9NByb7NNsaVQl8 263Z266jqmgvaaQSplnFxHJcQI5AEk8AVQqrX4+EjFR440q9PNOuXN1ex6doRuoLK5e1adrqKLk8 dORCsK03xpVDUfN3mXT4oZLny2Qs88VrHxvYT+8nkEaV26cmGNKyLS7nULm2Ml/ZfUJ+RAg9VZvh FKNySg38MCUXirsVS7y5/wAo9pf/ADCQf8mlwlURqOmadqdq1pqFtHdWzEExSqHXkOjCvRh2I3GB UHpGhy6V68UGoXM9m4H1a2u29f0CK14St++Zem0jtTscNqr6HpEGkaXBYQsZBEC0kz05yyyMXlle m3KSRmZvc4Cq7WdLt9V0u50+cssdwnESJs8bg8kkQ9mRwGU+IxVQiV111FkfnILIB3px5ESbmnau FUzwK7FXYq8/8r6D5ivPLsrWXmS505ZbrUBDElvaSLETezCoMkZc777tkiUJd5MVbjUv3WoyaJ6e g6VHJHbmBlkkS61FJG5Xkdw5+NSwNa/F8VTiVCaeYtGi1LUdI0ubVJb/AOsrqCi8f6v6kLG3X0yn 1eOFKxuodarWuIVJPMeqXHmjyprk9ynA+XdD1FNQiH2F1iS1mglQf8YIlenisqnCNlTprfVPMera /dxWNre6RJFJoNubi6eA+nGSL1kCW9yPjnJjJr/uobYFUNEfXNZvtOifVJNO1jTrG5stWkgSKXnc W1xHG7fv0f4ZKCRTTowxKpd5q0/V7S9vrWbUvruqXUmgyaZqdxCoaBRrMKGNoovTiZFk4ybBWatC dhQhWQ6Tbv5O1qS3vpmu9N1+dXTWZ+PrrfsoT0bllCrwl4/uDSin93/Jg5qu80trq6IG1g2ixrq+ iGBrb1BRRq1tyMnqfR098AVF+er2zl8uMkU8bubuwoqupP8AvdB2BxClKNP0m8msLvVtJVTrml6v qj2qseInie7f1rV2/llCihP2XCt2wqoabqVtqf5eecr+25CG5fVHVZFKOtYN1dTurKdmHY49VZ9p v/HOtf8AjDH/AMRGRSxPy7p2rXE2vPa6tJZRnVboCJIYHofh+KsisckUKVt5WurPzAbLTNYurNls vXubopbzS3EtxdSySPJ6sbKCXYmiKAOgFAMbVI9dsb6z1q7tdR1R7m7mudBmt9XKRRzRwG+kT0uH A24EboXB4fFz+IGmIVluoGOy0u/ubnVbnX7eO1mabSXFi3roIyXQLDBE7EqDtXfwwKk+quuheVJN b8v+YXvNOgi52OmXbxXltc0H7u2ilK/WS8n2E/etuRsemFVfQLZ5LrXWGv3GnD9K3P8Ao0X1LiPs 7/v4JX3/ANbEqmPmsU0jSB9YN1TVdMBuW4cnIu4xyPpqiV/1VAwBWUYEuxV2Kpd5c/5R7S/+YSD/ AJNLhKpjgV2KuxV2Kpd/00P/AEaf8zcVRF3ffVmVfq803IVrCnID57jFUP8Apn/lxu/+RX9uKu/T P/Ljd/8AIr+3FVseqxxrwj066Rak8VhAFSak0B7k1wqhJk0WYqZtBaQoOKl7SNqAktQV92JxVUtp dMtTW10aWAgkgxWyJuRQn4adsVVPr1r6csf6LuPTnJM6egKOWHFuYr8VRsa4qvj1SKJOEWnXSICS FWEAVJqdge5OKrU1G3SV5U0y5WWQ1eQQAMxoBua1Oyj7sVdJqFtI4eTTLh3FKM0AJHFg67k9mAYe +KrpdTimjMcunXUkbfaR4QwNDXcE4qtuNQt7mFoLnTLiaF6c4pIA6mhqKqSR1GKoWKLQ4nDxaA0b jcMtpGpFN+oxVGJqscYIj066QMSzBYQKsxqSaHqTiq0ahbCOSMaZcCOUsZUEA4sX+0WFd+XeuKqg 1gAACwuwBsAIv7cCrU1WNOXDTrpeRLNxhAqx6k0PXCrf6WTnz/R91zI4lvR3oN6VriqjcXVjchhc 6RPOHAVhJbq9Qp5AHlXYHfFVK3XRraZZ7bQnhmSvCWO0RGFRQ0YUPQ4qox2XluLUTqUXlsJqJJJv VsohPU1JPqAc+/jihVmj0SeVpp9BaWVzV5HtI2YnxJO5xSiI720jhSCPSp0gjIaOJbdQikHkCqg0 FDviqr+mf+XG7/5Ff24Fd+mf+XG7/wCRX9uKu/TP/Ljd/wDIr+3FUsj/AOVcemvpfof06Dhx+q8e NNqU7Yd0Lv8AkHn/AGqP+nbHdXf8g8/7VH/Ttjurv+Qef9qj/p2x3V3/ACDz/tUf9O2O6o7SP8L+ tL+h/qXrcR631T0uXGp48vT3pXpXFKaYFdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdir sVdirsVdirsVdirsVdir/9k= - - - - - - uuid:9E3E5C9A8C81DB118734DB58FDDE4BA7 - xmp.did:DAC7915CBF0BE8118B36C3778DB368CF - uuid:a875b7e4-d771-4966-95d4-aab67e65c9b3 - proof:pdf - - uuid:0edcf0fb-6008-42e7-abd5-c5992391f49a - xmp.did:81B6A849BC08E811A186FF4D02EEB64A - uuid:9E3E5C9A8C81DB118734DB58FDDE4BA7 - proof:pdf - - - - - saved - xmp.iid:F125223D0C6DE711947A9E222F7C5398 - 2017-07-20T07:28:19+02:00 - Adobe Illustrator CS6 (Windows) - / - - - saved - xmp.iid:DAC7915CBF0BE8118B36C3778DB368CF - 2018-02-07T05:28:35+01:00 - Adobe Illustrator CS6 (Windows) - / - - - - - - Basic RGB - Document - - - 1 - False - False - - 1112.413086 - 201.414063 - Pixels - - - - Cyan - Magenta - Yellow - Black - - - - - - Standard-Farbfeldgruppe - 0 - - - - Weiß - RGB - PROCESS - 255 - 255 - 255 - - - Schwarz - RGB - PROCESS - 0 - 0 - 0 - - - RGB Rot - RGB - PROCESS - 255 - 0 - 0 - - - RGB Gelb - RGB - PROCESS - 255 - 255 - 0 - - - RGB Grün - RGB - PROCESS - 0 - 255 - 0 - - - RGB Cyan - RGB - PROCESS - 0 - 255 - 255 - - - RGB Blau - RGB - PROCESS - 0 - 0 - 255 - - - RGB Magenta - RGB - PROCESS - 255 - 0 - 255 - - - R=193 G=39 B=45 - RGB - PROCESS - 193 - 39 - 45 - - - R=237 G=28 B=36 - RGB - PROCESS - 237 - 28 - 36 - - - R=241 G=90 B=36 - RGB - PROCESS - 241 - 90 - 36 - - - R=247 G=147 B=30 - RGB - PROCESS - 247 - 147 - 30 - - - R=251 G=176 B=59 - RGB - PROCESS - 251 - 176 - 59 - - - R=252 G=238 B=33 - RGB - PROCESS - 252 - 238 - 33 - - - R=217 G=224 B=33 - RGB - PROCESS - 217 - 224 - 33 - - - R=140 G=198 B=63 - RGB - PROCESS - 140 - 198 - 63 - - - R=57 G=181 B=74 - RGB - PROCESS - 57 - 181 - 74 - - - R=0 G=146 B=69 - RGB - PROCESS - 0 - 146 - 69 - - - R=0 G=104 B=55 - RGB - PROCESS - 0 - 104 - 55 - - - R=34 G=181 B=115 - RGB - PROCESS - 34 - 181 - 115 - - - R=0 G=169 B=157 - RGB - PROCESS - 0 - 169 - 157 - - - R=41 G=171 B=226 - RGB - PROCESS - 41 - 171 - 226 - - - R=0 G=113 B=188 - RGB - PROCESS - 0 - 113 - 188 - - - R=46 G=49 B=146 - RGB - PROCESS - 46 - 49 - 146 - - - R=27 G=20 B=100 - RGB - PROCESS - 27 - 20 - 100 - - - R=102 G=45 B=145 - RGB - PROCESS - 102 - 45 - 145 - - - R=147 G=39 B=143 - RGB - PROCESS - 147 - 39 - 143 - - - R=158 G=0 B=93 - RGB - PROCESS - 158 - 0 - 93 - - - R=212 G=20 B=90 - RGB - PROCESS - 212 - 20 - 90 - - - R=237 G=30 B=121 - RGB - PROCESS - 237 - 30 - 121 - - - R=199 G=178 B=153 - RGB - PROCESS - 199 - 178 - 153 - - - R=153 G=134 B=117 - RGB - PROCESS - 153 - 134 - 117 - - - R=115 G=99 B=87 - RGB - PROCESS - 115 - 99 - 87 - - - R=83 G=71 B=65 - RGB - PROCESS - 83 - 71 - 65 - - - R=198 G=156 B=109 - RGB - PROCESS - 198 - 156 - 109 - - - R=166 G=124 B=82 - RGB - PROCESS - 166 - 124 - 82 - - - R=140 G=98 B=57 - RGB - PROCESS - 140 - 98 - 57 - - - R=117 G=76 B=36 - RGB - PROCESS - 117 - 76 - 36 - - - R=96 G=56 B=19 - RGB - PROCESS - 96 - 56 - 19 - - - R=66 G=33 B=11 - RGB - PROCESS - 66 - 33 - 11 - - - - - - Kalt - 1 - - - - C=56 M=0 Y=20 K=0 - RGB - PROCESS - 101 - 200 - 208 - - - C=51 M=43 Y=0 K=0 - RGB - PROCESS - 131 - 139 - 197 - - - C=26 M=41 Y=0 K=0 - RGB - PROCESS - 186 - 155 - 201 - - - - - - Graustufen - 1 - - - - R=0 G=0 B=0 - RGB - PROCESS - 0 - 0 - 0 - - - R=26 G=26 B=26 - RGB - PROCESS - 26 - 26 - 26 - - - R=51 G=51 B=51 - RGB - PROCESS - 51 - 51 - 51 - - - R=77 G=77 B=77 - RGB - PROCESS - 77 - 77 - 77 - - - R=102 G=102 B=102 - RGB - PROCESS - 102 - 102 - 102 - - - R=128 G=128 B=128 - RGB - PROCESS - 128 - 128 - 128 - - - R=153 G=153 B=153 - RGB - PROCESS - 153 - 153 - 153 - - - R=179 G=179 B=179 - RGB - PROCESS - 179 - 179 - 179 - - - R=204 G=204 B=204 - RGB - PROCESS - 204 - 204 - 204 - - - R=230 G=230 B=230 - RGB - PROCESS - 230 - 230 - 230 - - - R=242 G=242 B=242 - RGB - PROCESS - 242 - 242 - 242 - - - - - - - - - Adobe PDF library 10.01 - - - Arctic Ice Studio - Arctic Ice Studio - - - True - http://arcticicestudio.com - - - - - - - - - - - - - - - - - - - - - - - - - -endstream endobj 3 0 obj <> endobj 7 0 obj <>/Resources<>/Properties<>>>/Thumb 53 0 R/TrimBox[0.0 0.0 1112.41 201.414]/Type/Page>> endobj 50 0 obj <>stream -/OC /MC0 BDC -q -0 201.414 1112.413 -201.414 re -W n -0.18 0.204 0.251 rg -/GS0 gs -q 1 0 0 1 337.8472 63.4375 cm -0 0 m -7.489 0 13.105 3.528 13.105 11.809 c -13.105 19.585 6.913 22.537 0 22.537 c --18.29 22.537 l --18.29 0 l -h --21.458 25.273 m -0 25.273 l -9.001 25.273 16.273 21.962 16.273 12.024 c -16.273 5.112 12.097 0 5.256 -1.152 c -5.256 -1.297 l -12.889 -2.16 14.761 -6.985 15.266 -12.313 c -15.77 -17.642 14.905 -23.402 16.994 -26.139 c -13.465 -26.139 l -11.521 -22.61 12.673 -16.706 12.097 -11.737 c -11.449 -6.769 9.001 -2.736 0 -2.736 c --18.29 -2.736 l --18.29 -26.139 l --21.458 -26.139 l -h -f -Q -q 1 0 0 1 396.6719 40.0352 cm -0 0 m -0 -2.736 l --34.923 -2.736 l --34.923 48.676 l --0.36 48.676 l --0.36 45.939 l --31.755 45.939 l --31.755 25.346 l --2.232 25.346 l --2.232 22.609 l --31.755 22.609 l --31.755 0 l -h -f -Q -q 1 0 0 1 402.0688 88.7109 cm -0 0 m -4.536 0 l -24.626 -47.884 l -24.77 -47.884 l -44.644 0 l -49.18 0 l -49.18 -51.412 l -46.012 -51.412 l -46.012 -3.888 l -45.868 -3.888 l -26.282 -51.412 l -23.114 -51.412 l -3.312 -3.888 l -3.168 -3.888 l -3.168 -51.412 l -0 -51.412 l -h -f -Q -q 1 0 0 1 488.4697 56.5244 cm -0 0 m --11.017 29.091 l --11.16 29.091 l --22.609 0 l -h --9.433 32.187 m -10.873 -19.226 l -7.489 -19.226 l -1.009 -2.736 l --23.617 -2.736 l --30.17 -19.226 l --33.555 -19.226 l --12.889 32.187 l -h -f -Q -q 1 0 0 1 524.4687 63.4375 cm -0 0 m -7.488 0 13.105 3.528 13.105 11.809 c -13.105 19.585 6.913 22.537 0 22.537 c --18.289 22.537 l --18.289 0 l -h --21.458 25.273 m -0 25.273 l -9.001 25.273 16.273 21.962 16.273 12.024 c -16.273 5.112 12.097 0 5.257 -1.152 c -5.257 -1.297 l -12.89 -2.16 14.762 -6.985 15.266 -12.313 c -15.77 -17.642 14.905 -23.402 16.993 -26.139 c -13.465 -26.139 l -11.521 -22.61 12.673 -16.706 12.097 -11.737 c -11.449 -6.769 9.001 -2.736 0 -2.736 c --18.289 -2.736 l --18.289 -26.139 l --21.458 -26.139 l -h -f -Q -q 1 0 0 1 548.3701 88.7109 cm -0 0 m -3.169 0 l -3.169 -29.594 l -35.499 0 l -39.604 0 l -16.13 -21.386 l -41.044 -51.412 l -37.083 -51.412 l -13.825 -23.546 l -3.169 -33.267 l -3.169 -51.412 l -0 -51.412 l -h -f -Q -592.938 58.253 15.409 -2.736 re -f -q 1 0 0 1 617.8496 88.7109 cm -0 0 m -3.169 0 l -3.169 -48.676 l -32.331 -48.676 l -32.331 -51.412 l -0 -51.412 l -h -f -Q -653.85 88.711 3.169 -51.412 re -f -q 1 0 0 1 666.0898 88.7109 cm -0 0 m -3.961 0 l -36.436 -47.164 l -36.579 -47.164 l -36.579 0 l -39.748 0 l -39.748 -51.412 l -36.003 -51.412 l -3.313 -3.888 l -3.169 -3.888 l -3.169 -51.412 l -0 -51.412 l -h -f -Q -q 1 0 0 1 709.3613 85.9746 cm -0 0 m -0 2.736 l -39.387 2.736 l -39.387 0 l -21.241 0 l -21.241 -48.676 l -18.073 -48.676 l -18.073 0 l -h -f -Q -q 1 0 0 1 775.458 62.9326 cm -0 0 m -18.073 0 l -27.362 0 30.53 6.121 30.53 11.449 c -30.53 15.266 28.802 23.042 18.505 23.042 c -0 23.042 l -h --3.169 25.778 m -18.722 25.778 l -24.554 25.778 33.698 23.69 33.698 11.377 c -33.698 2.377 27.794 -2.735 17.569 -2.735 c -0 -2.735 l -0 -25.634 l --3.169 -25.634 l -h -f -Q -q 1 0 0 1 836.2979 63.4375 cm -0 0 m -7.488 0 13.105 3.528 13.105 11.809 c -13.105 19.585 6.913 22.537 0 22.537 c --18.289 22.537 l --18.289 0 l -h --21.458 25.273 m -0 25.273 l -9.001 25.273 16.273 21.962 16.273 12.024 c -16.273 5.112 12.097 0 5.257 -1.152 c -5.257 -1.297 l -12.89 -2.16 14.762 -6.985 15.266 -12.313 c -15.77 -17.642 14.905 -23.402 16.993 -26.139 c -13.465 -26.139 l -11.521 -22.61 12.673 -16.706 12.097 -11.737 c -11.449 -6.769 9.001 -2.736 0 -2.736 c --18.289 -2.736 l --18.289 -26.139 l --21.458 -26.139 l -h -f -Q -q 1 0 0 1 895.1221 40.0352 cm -0 0 m -0 -2.736 l --34.923 -2.736 l --34.923 48.676 l --0.359 48.676 l --0.359 45.939 l --31.754 45.939 l --31.754 25.346 l --2.231 25.346 l --2.231 22.609 l --31.754 22.609 l --31.754 0 l -h -f -Q -q 1 0 0 1 934.0742 74.0225 cm -0 0 m --0.359 8.784 -6.984 13.177 -16.489 13.177 c --22.321 13.177 -30.603 10.729 -30.603 2.231 c --30.603 -6.049 -21.817 -7.417 -13.104 -9.217 c --4.32 -11.018 4.465 -13.25 4.465 -23.475 c -4.465 -34.132 -5.76 -37.947 -13.608 -37.947 c --25.634 -37.947 -35.427 -32.979 -35.282 -19.73 c --32.114 -19.73 l --32.763 -30.963 -23.762 -35.212 -13.608 -35.212 c --7.416 -35.212 1.297 -32.403 1.297 -23.475 c -1.297 -14.762 -7.488 -13.25 -16.272 -11.449 c --24.985 -9.649 -33.771 -7.562 -33.771 2.231 c --33.771 12.097 -24.626 15.913 -16.489 15.913 c --5.76 15.913 2.665 11.305 3.169 0 c -h -f -Q -q 1 0 0 1 980.8018 40.0352 cm -0 0 m -0 -2.736 l --34.923 -2.736 l --34.923 48.676 l --0.359 48.676 l --0.359 45.939 l --31.754 45.939 l --31.754 25.346 l --2.231 25.346 l --2.231 22.609 l --31.754 22.609 l --31.754 0 l -h -f -Q -q 1 0 0 1 980.6553 85.9746 cm -0 0 m -0 2.736 l -39.387 2.736 l -39.387 0 l -21.241 0 l -21.241 -48.676 l -18.073 -48.676 l -18.073 0 l -h -f -Q -q 1 0 0 1 385.0718 135.8594 cm -0 0 m --11.017 29.091 l --11.161 29.091 l --22.61 0 l -h --9.433 32.187 m -10.873 -19.226 l -7.489 -19.226 l -1.008 -2.736 l --23.618 -2.736 l --30.171 -19.226 l --33.555 -19.226 l --12.889 32.187 l -h -f -Q -q 1 0 0 1 421.0698 142.7725 cm -0 0 m -7.489 0 13.105 3.528 13.105 11.809 c -13.105 19.585 6.913 22.537 0 22.537 c --18.29 22.537 l --18.29 0 l -h --21.458 25.273 m -0 25.273 l -9.001 25.273 16.273 21.962 16.273 12.024 c -16.273 5.112 12.097 0 5.256 -1.152 c -5.256 -1.297 l -12.889 -2.16 14.761 -6.985 15.266 -12.313 c -15.77 -17.642 14.905 -23.402 16.994 -26.139 c -13.465 -26.139 l -11.521 -22.61 12.673 -16.706 12.097 -11.737 c -11.449 -6.769 9.001 -2.736 0 -2.736 c --18.29 -2.736 l --18.29 -26.139 l --21.458 -26.139 l -h -f -Q -q 1 0 0 1 485.0068 152.709 cm -0 0 m --1.367 8.641 -8.929 13.825 -17.498 13.825 c --30.963 13.825 -38.811 2.809 -38.811 -10.369 c --38.811 -23.546 -30.963 -34.563 -17.498 -34.563 c --7.488 -34.563 0.289 -25.635 0.863 -16.058 c -4.033 -16.058 l -2.881 -28.299 -6.192 -37.299 -17.498 -37.299 c --32.906 -37.299 -41.979 -25.418 -41.979 -10.369 c --41.979 4.681 -32.906 16.562 -17.498 16.562 c -0.721 16.562 3.096 0.72 3.168 0 c -h -f -Q -q 1 0 0 1 490.1143 165.3096 cm -0 0 m -0 2.736 l -39.387 2.736 l -39.387 0 l -21.242 0 l -21.242 -48.676 l -18.074 -48.676 l -18.074 0 l -h -f -Q -533.026 168.046 3.17 -51.412 re -f -q 1 0 0 1 585.3037 152.709 cm -0 0 m --1.369 8.641 -8.93 13.825 -17.498 13.825 c --30.963 13.825 -38.813 2.809 -38.813 -10.369 c --38.813 -23.546 -30.963 -34.563 -17.498 -34.563 c --7.49 -34.563 0.287 -25.635 0.863 -16.058 c -4.031 -16.058 l -2.879 -28.299 -6.193 -37.299 -17.498 -37.299 c --32.908 -37.299 -41.98 -25.418 -41.98 -10.369 c --41.98 4.681 -32.908 16.562 -17.498 16.562 c -0.719 16.562 3.096 0.72 3.168 0 c -h -f -Q -615.97 168.046 3.17 -51.412 re -f -q 1 0 0 1 668.2471 152.709 cm -0 0 m --1.369 8.641 -8.93 13.825 -17.498 13.825 c --30.963 13.825 -38.813 2.809 -38.813 -10.369 c --38.813 -23.546 -30.963 -34.563 -17.498 -34.563 c --7.49 -34.563 0.287 -25.635 0.863 -16.058 c -4.031 -16.058 l -2.879 -28.299 -6.193 -37.299 -17.498 -37.299 c --32.908 -37.299 -41.98 -25.418 -41.98 -10.369 c --41.98 4.681 -32.908 16.562 -17.498 16.562 c -0.719 16.562 3.096 0.72 3.168 0 c -h -f -Q -q 1 0 0 1 713.8213 119.3701 cm -0 0 m -0 -2.736 l --34.924 -2.736 l --34.924 48.676 l --0.359 48.676 l --0.359 45.939 l --31.754 45.939 l --31.754 25.346 l --2.232 25.346 l --2.232 22.61 l --31.754 22.61 l --31.754 0 l -h -f -Q -q 1 0 0 1 772.7881 153.3574 cm -0 0 m --0.359 8.784 -6.984 13.177 -16.49 13.177 c --22.322 13.177 -30.604 10.729 -30.604 2.231 c --30.604 -6.049 -21.818 -7.417 -13.105 -9.217 c --4.32 -11.018 4.465 -13.25 4.465 -23.475 c -4.465 -34.132 -5.76 -37.947 -13.609 -37.947 c --25.635 -37.947 -35.428 -32.979 -35.283 -19.73 c --32.115 -19.73 l --32.764 -30.963 -23.762 -35.212 -13.609 -35.212 c --7.416 -35.212 1.297 -32.403 1.297 -23.475 c -1.297 -14.762 -7.488 -13.25 -16.273 -11.449 c --24.986 -9.649 -33.771 -7.562 -33.771 2.231 c --33.771 12.097 -24.627 15.913 -16.49 15.913 c --5.76 15.913 2.664 11.305 3.168 0 c -h -f -Q -q 1 0 0 1 779.0479 165.3096 cm -0 0 m -0 2.736 l -39.387 2.736 l -39.387 0 l -21.242 0 l -21.242 -48.676 l -18.074 -48.676 l -18.074 0 l -h -f -Q -q 1 0 0 1 825.1299 168.0459 cm -0 0 m -0 -30.818 l -0 -37.011 1.295 -49.9 16.129 -49.9 c -28.73 -49.9 32.979 -42.483 32.979 -30.818 c -32.979 0 l -36.146 0 l -36.146 -30.818 l -36.146 -43.06 31.537 -52.636 16.129 -52.636 c --2.16 -52.636 -3.17 -37.659 -3.17 -30.818 c --3.17 0 l -h -f -Q -q 1 0 0 1 873.5127 119.3701 cm -0 0 m -13.826 0 l -23.402 0 34.275 5.257 34.275 23.042 c -34.275 44.067 20.811 45.939 13.178 45.939 c -0 45.939 l -h --3.168 48.676 m -13.682 48.676 l -32.043 48.676 37.443 36.075 37.443 23.042 c -37.443 8.497 30.027 -2.736 13.537 -2.736 c --3.168 -2.736 l -h -f -Q -918.368 168.046 3.168 -51.412 re -f -q 1 0 0 1 952.7861 118.1455 cm -0 0 m -13.393 0 21.242 11.018 21.242 24.194 c -21.242 37.372 13.393 48.389 0 48.389 c --13.465 48.389 -21.314 37.372 -21.314 24.194 c --21.314 11.018 -13.465 0 0 0 c -0 -2.735 m --15.41 -2.735 -24.482 9.146 -24.482 24.194 c --24.482 39.244 -15.41 51.125 0 51.125 c -15.338 51.125 24.41 39.244 24.41 24.194 c -24.41 9.146 15.338 -2.735 0 -2.735 c -f -Q -0.18 0.204 0.251 RG -2 w -q 1 0 0 1 223.9092 13 cm -0 0 m -888.504 0 l -S -Q -q 1 0 0 1 223.9092 178.959 cm -0 0 m -888.504 0 l -S -Q -190.959 1 -189.959 189.959 re -S -q 1 0 0 1 102.9995 59.4414 cm -0 0 m -34.86 71.118 l -38.221 71.118 l -73.081 0 l -70.141 0 l -36.542 68.599 l -2.94 0 l -h -f -Q -q 1 0 0 1 86.9995 59.4414 cm -0 0 m --71.12 34.859 l --71.12 38.219 l -0 73.078 l -0 70.139 l --68.6 36.539 l -0 2.939 l -h -f -Q -EMC -Q - -endstream endobj 53 0 obj <>stream -8;XuY;&7%l#lF6JGlOi*3jTA/Z0h8A]%O!XLc$npQX1d3VTB(7BA1X=G]oYh4?J0r -*@%G<':?Cd>:]enEVJ7FKF#2 -GFgLmN0=oMbX]q"i.T5ZN4Rut-9Tr&(/C`Y`i((87=_0Pb'U.sEY@9aC8l4t@j,$C -,2eq*8=^=Y/#,(:U0"Gk:$]X:EV+D);(DlF2*a<@?FCc*>Np)n-0*P(:=o.@G-<3V -HCI&olZU+`&5Q%7fnpM`:-&X3YqX@!d*20GG*8oG"_L#7-p/^Pm/E%/Sr`45_lKVt -#pE6XaM9+8Z765T\'rTF3*PrW=*^]a4+>E -endstream endobj 54 0 obj [/Indexed/DeviceRGB 255 55 0 R] endobj 55 0 obj <>stream -8;X]O>EqN@%''O_@%e@?J;%+8(9e>X=MR6S?i^YgA3=].HDXF.R$lIL@"pJ+EP(%0 -b]6ajmNZn*!='OQZeQ^Y*,=]?C.B+\Ulg9dhD*"iC[;*=3`oP1[!S^)?1)IZ4dup` -E1r!/,*0[*9.aFIR2&b-C#soRZ7Dl%MLY\.?d>Mn -6%Q2oYfNRF$$+ON<+]RUJmC0InDZ4OTs0S!saG>GGKUlQ*Q?45:CI&4J'_2j$XKrcYp0n+Xl_nU*O( -l[$6Nn+Z_Nq0]s7hs]`XX1nZ8&94a\~> -endstream endobj 48 0 obj <> endobj 56 0 obj [/View/Design] endobj 57 0 obj <>>> endobj 52 0 obj <> endobj 51 0 obj <> endobj 58 0 obj <> endobj 59 0 obj <>stream -%!PS-Adobe-3.0 -%%Creator: Adobe Illustrator(R) 16.0 -%%AI8_CreatorVersion: 16.0.0 -%%For: (virtu-win7) () -%%Title: (remark-preset-lint-arcticicestudio-banner.ai) -%%CreationDate: 2/7/2018 5:33 AM -%%Canvassize: 16383 -%%BoundingBox: -140 -406 973 121 -%%HiResBoundingBox: -139.7881 -405.4346 972.625 120.6763 -%%DocumentProcessColors: Cyan Magenta Yellow Black -%AI5_FileFormat 12.0 -%AI12_BuildNumber: 682 -%AI3_ColorUsage: Color -%AI7_ImageSettings: 0 -%%RGBProcessColor: 0 0 0 ([Passermarken]) -%AI3_Cropmarks: -139.7881 -405.4346 972.625 -204.0205 -%AI3_TemplateBox: 300.5 -300.5 300.5 -300.5 -%AI3_TileBox: -4.5415 -602.3877 837.3789 -7.06738 -%AI3_DocumentPreview: None -%AI5_ArtSize: 14400 14400 -%AI5_RulerUnits: 6 -%AI9_ColorModel: 1 -%AI5_ArtFlags: 0 0 0 1 0 0 1 0 0 -%AI5_TargetResolution: 800 -%AI5_NumLayers: 1 -%AI9_OpenToView: -288 214 1 1453 901 2 0 0 113 116 0 0 0 1 1 0 1 1 0 1 -%AI5_OpenViewLayers: 3 -%%PageOrigin:-100 -600 -%AI7_GridSettings: 72 8 72 8 1 0 0.8 0.8 0.8 0.9 0.9 0.9 -%AI9_Flatten: 1 -%AI12_CMSettings: 00.MS -%%EndComments - -endstream endobj 60 0 obj <>stream -%%BoundingBox: -140 -406 973 121 -%%HiResBoundingBox: -139.7881 -405.4346 972.625 120.6763 -%AI7_Thumbnail: 128 64 8 -%%BeginData: 5386 Hex Bytes -%0000330000660000990000CC0033000033330033660033990033CC0033FF -%0066000066330066660066990066CC0066FF009900009933009966009999 -%0099CC0099FF00CC0000CC3300CC6600CC9900CCCC00CCFF00FF3300FF66 -%00FF9900FFCC3300003300333300663300993300CC3300FF333300333333 -%3333663333993333CC3333FF3366003366333366663366993366CC3366FF -%3399003399333399663399993399CC3399FF33CC0033CC3333CC6633CC99 -%33CCCC33CCFF33FF0033FF3333FF6633FF9933FFCC33FFFF660000660033 -%6600666600996600CC6600FF6633006633336633666633996633CC6633FF -%6666006666336666666666996666CC6666FF669900669933669966669999 -%6699CC6699FF66CC0066CC3366CC6666CC9966CCCC66CCFF66FF0066FF33 -%66FF6666FF9966FFCC66FFFF9900009900339900669900999900CC9900FF -%9933009933339933669933999933CC9933FF996600996633996666996699 -%9966CC9966FF9999009999339999669999999999CC9999FF99CC0099CC33 -%99CC6699CC9999CCCC99CCFF99FF0099FF3399FF6699FF9999FFCC99FFFF -%CC0000CC0033CC0066CC0099CC00CCCC00FFCC3300CC3333CC3366CC3399 -%CC33CCCC33FFCC6600CC6633CC6666CC6699CC66CCCC66FFCC9900CC9933 -%CC9966CC9999CC99CCCC99FFCCCC00CCCC33CCCC66CCCC99CCCCCCCCCCFF -%CCFF00CCFF33CCFF66CCFF99CCFFCCCCFFFFFF0033FF0066FF0099FF00CC -%FF3300FF3333FF3366FF3399FF33CCFF33FFFF6600FF6633FF6666FF6699 -%FF66CCFF66FFFF9900FF9933FF9966FF9999FF99CCFF99FFFFCC00FFCC33 -%FFCC66FFCC99FFCCCCFFCCFFFFFF33FFFF66FFFF99FFFFCC110000001100 -%000011111111220000002200000022222222440000004400000044444444 -%550000005500000055555555770000007700000077777777880000008800 -%000088888888AA000000AA000000AAAAAAAABB000000BB000000BBBBBBBB -%DD000000DD000000DDDDDDDDEE000000EE000000EEEEEEEE0000000000FF -%00FF0000FFFFFF0000FF00FFFFFF00FFFFFF -%524C45FDFCFFFDFCFFFDFCFFFDFCFFFDFCFFFDFCFFFDFCFFFDFCFFFDFCFF -%FDFCFFFDFCFFFDFCFFFDFCFFFDFCFFFDFCFFFDFCFFFDFCFFFDFCFFFDFCFF -%FDCCFFA8AFA8A8A8A9A8A8A8A9A8A8A8A9A8A8A8A9FD05A8FD69FFA8AFFF -%A8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FD6AFFA8FD15FFA8FFFFFF -%FD13A8A9A8A8A8FFFD07A8FFA8A8A8FFFD0BA8FFFD07A8AFA8A8A8FFA8A8 -%A8A9A8A8A8A9FD07A8AFA8A8A8AFFD17A8FD14FFA8FD14FFA8A8FFA87E7D -%7E7DFFFFA87D7EA8A87D7E7D84A8FFA87D7DA8FD04FFA8FF7D7E7DA8FF84 -%7D7E7DFFFFFFA87D7DA8A8A87D7E7DA8FD04FFA8A87DA8A8FFA8FFFF7E7D -%7EA8FD10FFA8FD14FFA8A8FD13FF527DFFA87DFFA87D7D847DFFA87DA8FF -%52A8A87DA87DA8FF7D7DFFFFA8A87D7DA8FF53A859FFA8FFA8FFA87DFFFF -%7DA8A87D7DFF53FFFFFF7DA87DFFA87D7EA8A87D7EFFA87DA8FD0FFFA8FD -%14FFA8FD13FFA8A87EFFA8A8FFFFA87E7DFFFFFFA9FFFFA8FFFF7DA8A8FF -%FFFFA8FFFFFFA87EFD04FFA8A8FD06FF59FFFFFFA8FF84AFFFA8A8FFFFA8 -%A8A8FFFFFFA87DA87DFFFFFFA8A8FD0FFFA8FD14FFA9A8FD12FF7DA8A97D -%FF527E7D7D7DA8FD06FF7DFFFFA87DFD07FFA87E7DFD05FF52A87DA8FFFF -%FFA87D7D7DFFFFA8A8FF7DFFFFFF7DA87DFFFFFF7D7D53A8FD04FF7DFD0F -%FFA8FD08FFA8FD0BFFA8FD13FF53A87D7DA884FFFF7DA87DFFFFFFA8A8FF -%7EA8FF7E7DA8FFFFFF7DFFFFFF7D84FD04FF7DA8FD09FFA87DFF7DA9FF7E -%A8FFFFA87DA8FFFFFFA87D7D7DFFFFFFA8A8FD0FFF84FD06FFA87D84A8FD -%04FF7D52FD05FFA8FD11FF7D7EFFFF7D7D7DFFFFA87D7D7DFFA87DA8FF7D -%FFA87DA87DA8FF7D7DFFFFA8A87DA8FFFF53A87DFFA8FFFFFFA87DFFFF7D -%7DFF7D84FF7D7DFFFF59A87DFFA87D7DA8A87DA8FFA87DA8FD0FFFA9FD04 -%FFA8847DFD07FF7DA8A8FFFFFFA8FD12FFA8FD04FF7DFFFFFFA8FFFFA87D -%7EA8FFFFA8FFFFA8FFA8847D84FD04FFA8FF7DA87DA9FFA884A8A8FFFFFF -%A87E7DA8FFFFA8FFFFFF7DA87DA8FFA8A8A87DFFA8FFA87E7D7DA8FD10FF -%A8FFFFA87D7EA8FD07FF7DA8A87EFD04FFA8FD29FFA8FD09FFA8FD15FFA8 -%FD1FFFA8FF7E7DFD09FFA884FFFF7DFFFFFFA8FD6AFFA8FF52A8FD09FF7E -%A8FFFFA87DFFFFA8A8FD0DFFA8A87EA8FFFF7DFD04A8FD07FFA8FFFFFFA8 -%A8A8FD05FFA8FFFFFFA8FFFFFFA8FFA8FD04FFA87EFD04A8FFA8A87EA8A8 -%FF84A8A8FFFFFD04A8FFA8A87EFFA8A87EFD06A8FD0BFFA8FFFFA87E7EFD -%07FF7DFD04FF84A8FFA8FD0EFF7D7DA87DA87D7EA8A8A87DA8FFFFFF52FF -%FF7D7DFFA87DA8A87DA87DFFFF7DA8FFFFFF7DFFFFFF7EA853FFFFA87DA8 -%7D7D7EFFFFA87DA87D7D84A8A8A87DA87DA87DA8A87DA8A87DA87DA87EA8 -%7E7E7DA8A8FD0AFFA8FD04FFA87DA8A8FFFFFF7DA8FD04FFA8A8FFA9A8FD -%0DFF7DFFFFFF7D7DA8FFFFFF527DFFFF8452A8FF7D7DFFA8A8FFFFA859A8 -%FF7D7EFFFFFFA87DFFFFA8A87E597DFF7EA8FFA8A8FFFFFF7EA8FFFF7D7D -%A8FFFF847DA8FFFFFF7DA8FFFFA87DA8FD04FFA8A8FD0CFFA8FD06FF7E7D -%7EFFFF7EFD06FF7DFFA8FD0EFF7E7EA87DA87DFD05A87DFFFFA87DFF84FF -%A8A8A87EA8A87DA87D7D7DFD05FF7DFFFFFF7DA8A87DFFA8A8FF7DA9FFFF -%FFA87DFFA87D7DA8A8A87DA87DA9A8FFA87D7DA8FFA87DA8A8FFFFA87DFD -%0CFF84FD07FFA8A8A8FFA8FD06FFA9A8FFA8FD0DFF59FD047DA87DA8A8FF -%7DA87DAF7DA8A87D7E8459FF7DA87D7DA8527D7DA8FF7DA8A87DFFFFA87E -%7DA9A87D7EA8FF84A8FFFFFF7D7DFD04A87DA87D7DA87DA8A8A8FFA8A8FD -%047DA8A8A8FFA884FD0CFFA9FD14FFA8FD0EFFA8FFFFFFA87DFD04FF84FF -%A87DFF7DA87DFFA87EA8FFFFFFA8A87DFFA87DFFFFA8FF7DFFFFFF7DA8A8 -%FF7E7DA8FF7DFD04FFA8A8FFFFFFA8FFFFFF7EA8A8FFFFFF7DFFFFFF7D84 -%A8FD04FFA87DFD0CFFA8FD15FFA8FD0DFF7DFFFFFF7D7D7DA87EA87DFF7D -%7DFFA852FFFFFFA87DA8FFFFA87DA8FFFF7D7DFFFFA87DA8A87EA87DA8FF -%FF52A8FFA8A8FFFFFF7EA8FFFFFFA8A8FFFFA87D7DFD04A853A87D7D7E7D -%A8A8A8FFA8A8FD0CFFA8FD14FFA8FD13FFA8FFA8A9A8FD0BFFA8FD09FFAF -%FFFFFFA8A9A8FD19FFA8A9A8FFFFFF7DA8FFFFA8FFA8FD10FFA8FD14FFA8 -%A8FD69FFA8FD14FFA8FD05FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FF -%A8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FF -%A8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FF -%A8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA87DFFA8FFA8FFA8 -%FFA8FFA8FFA8FFA8FFA8FFA8FFA8A8A8FFFFFFA8FFA8FFA8FFA8FFA8FFA8 -%FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8 -%FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8 -%FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8 -%FFFD04A8FFA8A8A8FFA8A8A8FFA8A8A8FFA8A8A8FFA8FDE9FFFF -%%EndData - -endstream endobj 61 0 obj <>stream -%!PS-Adobe-3.0 -%%Creator: Adobe Illustrator(R) 16.0 -%%AI8_CreatorVersion: 16.0.0 -%%For: (virtu-win7) () -%%Title: (remark-preset-lint-arcticicestudio-banner.ai) -%%CreationDate: 2/7/2018 5:33 AM -%%Canvassize: 16383 -%%BoundingBox: -140 -406 973 121 -%%HiResBoundingBox: -139.7881 -405.4346 972.625 120.6763 -%%DocumentProcessColors: Cyan Magenta Yellow Black -%%DocumentFonts: HelveticaNeueLTStd-Th -%%+ HelveticaNeueLTStd-UltLt -%%DocumentNeededFonts: HelveticaNeueLTStd-Th -%%+ HelveticaNeueLTStd-UltLt -%AI5_FileFormat 12.0 -%AI12_BuildNumber: 682 -%AI3_ColorUsage: Color -%AI7_ImageSettings: 0 -%%RGBProcessColor: 0 0 0 ([Passermarken]) -%AI3_Cropmarks: -139.7881 -405.4346 972.625 -204.0205 -%AI3_TemplateBox: 300.5 -300.5 300.5 -300.5 -%AI3_TileBox: -4.5415 -602.3877 837.3789 -7.06738 -%AI3_DocumentPreview: None -%AI5_ArtSize: 14400 14400 -%AI5_RulerUnits: 6 -%AI9_ColorModel: 1 -%AI5_ArtFlags: 0 0 0 1 0 0 1 0 0 -%AI5_TargetResolution: 800 -%AI5_NumLayers: 1 -%AI9_OpenToView: -288 214 1 1453 901 2 0 0 113 116 0 0 0 1 1 0 1 1 0 1 -%AI5_OpenViewLayers: 3 -%%PageOrigin:-100 -600 -%AI7_GridSettings: 72 8 72 8 1 0 0.8 0.8 0.8 0.9 0.9 0.9 -%AI9_Flatten: 1 -%AI12_CMSettings: 00.MS -%%EndComments -%%BeginProlog -%%EndProlog -%%BeginSetup -[ -39/quotesingle 96/grave 128/Euro 130/quotesinglbase/florin/quotedblbase/ellipsis -/dagger/daggerdbl/circumflex/perthousand/Scaron/guilsinglleft/OE 145/quoteleft -/quoteright/quotedblleft/quotedblright/bullet/endash/emdash/tilde/trademark -/scaron/guilsinglright/oe/dotlessi 159/Ydieresis /space 164/currency 166/brokenbar -168/dieresis/copyright/ordfeminine 172/logicalnot/hyphen/registered/macron/ring -/plusminus/twosuperior/threesuperior/acute/mu 183/periodcentered/cedilla -/onesuperior/ordmasculine 188/onequarter/onehalf/threequarters 192/Agrave -/Aacute/Acircumflex/Atilde/Adieresis/Aring/AE/Ccedilla/Egrave/Eacute -/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis/Eth/Ntilde -/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/multiply/Oslash/Ugrave -/Uacute/Ucircumflex/Udieresis/Yacute/Thorn/germandbls/agrave/aacute -/acircumflex/atilde/adieresis/aring/ae/ccedilla/egrave/eacute/ecircumflex -/edieresis/igrave/iacute/icircumflex/idieresis/eth/ntilde/ograve/oacute -/ocircumflex/otilde/odieresis/divide/oslash/ugrave/uacute/ucircumflex -/udieresis/yacute/thorn/ydieresis -TE -%AI55J_Tsume: None -%AI3_BeginEncoding: _HelveticaNeueLTStd-Th HelveticaNeueLTStd-Th -[/_HelveticaNeueLTStd-Th/HelveticaNeueLTStd-Th 0 0 1 TZ %AI3_EndEncoding AdobeType -%AI55J_Tsume: None -%AI3_BeginEncoding: _HelveticaNeueLTStd-UltLt HelveticaNeueLTStd-UltLt -[/_HelveticaNeueLTStd-UltLt/HelveticaNeueLTStd-UltLt 0 0 1 TZ %AI3_EndEncoding AdobeType -%AI5_Begin_NonPrinting -Np -%AI8_PluginGroupInfo -(Adobe Vectorized Object) (Nachgezeichnetes Bild) (Vectorize.aip) -%AI8_PluginGroupInfo -(Adobe Flare Plugin) (Flare) (flare.aip) -%AI8_PluginGroupInfo -(Adobe Deform Plugin) (Adobe H\374llen-Zusatzmodul) (Envelope and Warp.aip) -%AI8_PluginGroupInfo -(Adobe Planar Group) (Adobe-Zusatzmodul Interaktiv malen) (Live Paint.aip) -%AI8_PluginGroupInfo -(Adobe Perspective Plugin Group) (Adobe Perspective Plugin Group) (Perspective.aip) -%AI8_PluginGroupInfo -(Adobe Path Blends) (Adobe Angleichungen-Zusatzmodul) (Live Blends.aip) -%AI8_PluginGroupInfo -(Adobe Symbolism) (Adobe Symbolism) (Symbolism.aip) -%AI8_PluginGroupInfo -(Adobe PatternOnPath Brush Tool) (Adobe Musterpinsel-Zusatzmodul) (ArtOnPath.aip) -%AI8_PluginGroupInfo -(Adobe PatternOnPath Brush Tool) (Adobe Musterpinsel-Zusatzmodul) (ArtOnPath.aip) -%AI8_PluginGroupInfo -(Adobe ArtOnPath Brush Tool) (Adobe Bildpinsel-Zusatzmodul) (ArtOnPath.aip) -%AI8_PluginGroupInfo -(Adobe ArtOnPath Brush Tool) (Adobe Bildpinsel-Zusatzmodul) (ArtOnPath.aip) -%AI8_PluginGroupInfo -(Adobe Calligraphic Brush Tool) (Adobe Kalligrafiepinsel-Zusatzmodul) (Calligraphic Brush Tool.aip) -%AI8_PluginGroupInfo -(Adobe Scatter Brush Tool) (Adobe Spezialpinsel-Zusatzmodul) (Scatter Brush Tool.aip) -%AI8_PluginGroupInfo -(Adobe Scatter Brush Tool) (Adobe Spezialpinsel-Zusatzmodul) (Scatter Brush Tool.aip) -%AI8_PluginGroupInfo -(Adobe Pattern Editor Plugin Group) (Adobe Pattern Editor Plugin Group) (Swatch Libraries.aip) -%AI8_PluginGroupInfo -(Pathfinder Suite) (Adobe Zusammengesetzte Form) (PathFinder Suite.aip) -%AI5_End_NonPrinting-- -%AI5_Begin_NonPrinting -Np -9 Bn -%AI5_BeginGradient: (Blauer Himmel) -(Blauer Himmel) 0 2 Bd -[ -0.591974 -0 -0.148531 -0 -0.239216 -0.870588 -0.929412 -4 %_Br -[ -0.591974 0 0.148531 0 0.239216 0.870588 0.929412 2 0 6 50 100 %_BS -%_0.591974 0 0.148531 0 0.239216 0.870588 0.929412 2 0 6 50 100 Bs -0.591974 0 0.148531 0 0.239216 0.870588 0.929412 2 1 6 50 0 %_BS -%_0.591974 0 0.148531 0 0.239216 0.870588 0.929412 2 1 6 50 0 Bs -BD -%AI5_EndGradient -%AI5_BeginGradient: (Goldstaub) -(Goldstaub) 0 4 Bd -[ -< -21202121222122222323222323242324242524242525252526262626272727272728282929292929 -2A2A2A2A2B2B2B2B2B2B2B2C2C2C2C2D2D2D2D2D2E2E2F2F30303030303131313132313232323232 -333333333434 -> -< -2D2F30313234343637393B3C3D3E4041434345464749494B4C4D4E4F50525354555658595B5C5D5E -5F616164656768696B6B6D6E6F70727374767778797A7B7D7E8081828384858688888A8B8D8E8F91 -919394959698 -> -< -F4F4F4F5F5F5F5F5F6F6F6F7F7F7F7F7F8F8F8F9F9F9FAFAFAFBFBFBFBFBFCFCFCFCFDFDFEFEFEFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFF -> -< -030404040404050506060606060707070708080808080808090909090A0A0A0B0B0B0B0C0C0D0D0D -0D0D0E0E0E0E0F0F0F0F0F1010101011111011111211121213131414141515161616161717171717 -181819191A19 -> -< -E5E5E4E4E3E3E2E2E1E1E1E0E0DFDFDEDEDDDDDDDCDCDBDBDADAD9D9D8D8D8D7D7D6D6D5D5D4D4D4 -D3D3D2D2D1D1D0D0D0CFCFCECECDCDCCCCCCCBCBCACAC9C9C8C8C7C7C7C6C6C5C5C4C4C3C3C3C2C2 -C1C1C0C0BFBF -> -< -C5C4C3C2C1C0BFBEBDBCBBBAB9B8B7B6B5B4B3B2B1B0AFAEADACABAAA9A8A7A6A5A4A3A2A1A09F9E -9D9C9B999897969594939291908F8E8D8C8B8A898887868584838281807F7E7D7C7B7A7978777675 -74737271706F -> -0 -4 %_Br -< -171717181818181818181919191A1A1A1A1B1B1B1B1B1C1C1D1D1D1D1D1D1E1E1E1F1F20202021 -> -< -69686765646261605E5D5B5A5856555352514F4C4B4948464543413F3E3C3A3837353332302F2D -> -< -FAFAFAFAFAFAF9FAFAFAFAF9F9F9F9F9F8F8F8F7F7F6F6F6F6F6F6F6F5F5F5F4F5F5F4F4F4F4F4 -> -< -030303030303030303030303030404040404040404040404040404040404040404040404040403 -> -0.898039 -< -9E9FA0A1A2A3A4A5A6A7A8A9AAABACADAEAFB0B2B3B4B5B6B7B8B9BABBBCBDBEBFC0C1C2C3C4C5 -> -< -030303030303030202020202020202020202020201010101010101010101010100000000000000 -> -4 %_Br -< -00000000000000000000000000000000000000000000000000000000000000000000000102040406 -060808090A0C0E0E0F0F1111131414151517 -> -< -A5A5A5A4A4A3A3A3A3A2A1A0A09F9E9E9D9B9B9A99989796959594939191908F8E8C8B8B89888685 -848281817F7D7C7A7978767472706F6D6B69 -> -< -F0F0F0F1F1F1F1F1F1F1F2F2F2F3F3F3F4F4F4F4F4F5F5F6F6F6F7F7F7F8F8F9F9FAFAFAFAFAFAFA -FAFBFBFBFBFCFCFCFCFCFCFBFBFBFBFBFAFA -> -< -00000000000000000000000000000000000000000000000000000000000000000000000000000000 -000000000000010101010101010102020203 -> -< -FFFFFFFEFEFEFEFDFDFDFCFCFCFBFBFBFAFAF9F9F9F8F8F7F7F6F6F5F5F4F4F3F3F2F2F1F1F0F0EF -EFEEEEEDEDECEBEBEAEAE9E9E8E7E7E6E6E5 -> -< -73737374747575767677777878797A7A7B7C7C7D7E7E7F808181828384848586878889898A8B8C8D -8E8F90909192939495969798999A9B9C9D9E -> -< -00000000000000000000000000000001010101010101010101010101010101010101020202020202 -020202020202020202020303030303030303 -> -4 %_Br -[ -0.202823 0.594781 1 0.099977 0.74902 0.435294 0 2 1 6 50 99.4382 %_BS -%_0.202823 0.594781 1 0.099977 0.74902 0.435294 0 2 1 6 50 99.4382 Bs -0.12842 0.177859 0.957183 0.013581 0.898039 0.772549 0 2 1 6 50 86.5168 %_BS -%_0.12842 0.177859 0.957183 0.013581 0.898039 0.772549 0 2 1 6 50 86.5168 Bs -0.090089 0.413703 0.981842 0.01062 0.898039 0.619608 0.011765 2 1 6 50 55.211 %_BS -%_0.090089 0.413703 0.981842 0.01062 0.898039 0.619608 0.011765 2 1 6 50 55.211 Bs -0 0.648035 0.942992 0 1 0.45098 0 2 1 6 59.5506 0 %_BS -%_0 0.648035 0.942992 0 1 0.45098 0 2 1 6 59.5506 0 Bs -BD -%AI5_EndGradient -%AI5_BeginGradient: (Unnamed gradient 1) -(Unnamed gradient 1) 0 2 Bd -[ -< -0000010304050608090B0C0D0F10111213141718191A1B1C1E1F21222324252728292A -> -< -00000102030405060708090A0A0B0C0C0D0E1011111213141516171819191A1B1B1C1D -> -< -000001020304050708090A0B0C0D0E0F101112131415161718191A1B1C1C1D1E1F2021 -> -< -0000000000000000000000000000000000000000000000000000000000000000000000 -> -< -FFFEFDFCFBFAF9F8F7F6F5F4F3F2F1F0EFEEECEBEAE9E8E7E6E5E4E3E2E1E0DFDEDDDC -> -< -FFFEFDFCFBFAF9F8F7F6F5F4F3F2F1F0EFEEECEBEAE9E8E7E6E5E4E3E2E1E0DFDEDDDC -> -< -FFFEFDFCFBFAF9F8F7F6F5F4F3F2F1F0EFEEECEBEAE9E8E7E6E5E4E3E2E1E0DFDEDDDC -> -4 %_Br -[ -0.81 0 1 6 50 100 %_BS -%_0.81 0 1 6 50 100 Bs -1 0 1 6 50 0 %_BS -%_1 0 1 6 50 0 Bs -BD -%AI5_EndGradient -%AI5_BeginGradient: (Unnamed gradient 17) -(Unnamed gradient 17) 1 2 Bd -[ -< -26252423222121201E1D1B1A191716151413131211100F0D0C0B09080605050403010000 -> -< -1F1E1D1D1C1B1A19181716151413131211100F0E0D0C0C0B0A0A09070605040302010000 -> -< -2120201F1E1D1C1C1B1A1817161615141312100F0F0E0D0C0B0A09080605040302010000 -> -< -000000000000000000000000000000000000000000000000000000000000000000000000 -> -< -DFE0E1E2E3E4E4E5E6E7E8E9EAEBECEDEEEFEFF0F1F2F3F4F5F6F7F8F9FAFAFBFCFDFEFF -> -< -DCDDDEDFE0E1E2E3E4E5E6E7E8E9EAEBECEDEEEFF0F1F2F3F4F5F6F7F8F9FAFBFCFDFEFF -> -< -DBDCDDDEDFE0E1E2E3E4E5E6E7E8E9EAEBECEEEFF0F1F2F3F4F5F6F7F8F9FAFBFCFDFEFF -> -4 %_Br -[ -0.150576 0.121614 0.130159 0.000183 0.87451 0.862745 0.858824 2 0.85 6 50 9.81595 %_BS -%_0.150576 0.121614 0.130159 0.000183 0.87451 0.862745 0.858824 2 0.85 6 50 9.81595 Bs -0 0 0 0 1 1 1 2 0 6 50 100 %_BS -%_0 0 0 0 1 1 1 2 0 6 50 100 Bs -BD -%AI5_EndGradient -%AI5_BeginGradient: (Unnamed gradient 2) -(Unnamed gradient 2) 0 2 Bd -[ -< -B7B8B8B9B9BABBBBBCBDBDBEBEBFC0C0C1C1C2C2C3C3C4C4C5C6C6C7C7C7C8C8C9CACACBCBCCCCCD -CDCECECFCFD0D1D1D2D2D3D3D4D4D5D5D6D6D7D7D8D8D9D9DA -> -< -515251535253555455575657575859595A5C5B5C5B5D5E5D5F605F61606163626364636564656766 -6869686A696B6C6B6D6E6D6F6E6F7170727373747475777678 -> -0 -0 -0 -< -9D9C9C9B9B9A999998979796969594949392929191908F8F8E8D8D8C8C8B8A8A8988888787868585 -84838382828180807F7E7E7D7D7C7B7B7A7979787877767675 -> -< -FFFEFDFCFBFAF9F8F7F6F5F4F3F2F1F0EFEEEDECEBEAE9E8E7E6E5E4E3E2E1E0DFDDDCDBDAD9D8D7 -D6D5D4D3D2D1D0CFCECDCCCBCAC9C8C7C6C5C4C3C2C1C0BFBE -> -4 %_Br -[ -0.854643 0.468879 0 0 0 0.458824 0.745098 2 1 6 50 100 %_BS -%_0.854643 0.468879 0 0 0 0.458824 0.745098 2 1 6 50 100 Bs -0.717464 0.316075 0 0 0 0.615686 1 2 1 6 50 0 %_BS -%_0.717464 0.316075 0 0 0 0.615686 1 2 1 6 50 0 Bs -BD -%AI5_EndGradient -%AI5_BeginGradient: (Unnamed gradient 28) -(Unnamed gradient 28) 1 2 Bd -[ -< -0000010304050608090A0C0D0F10111314151617181A1B1C1D1E1F20212324262728292A2B2D2E30 -31323335363738393A3C3D3E404142434445464748494A4B4C4D4E4F5051525354565758595A -> -< -00000100010203040504060708090908090A0B0C0C0C0D0D0E0F100F101112131413141516171816 -1718191A1B1A1B1C1D1E1F1E1F20212223222324252627262728292A2B2A2B2C2D2E2F2E2F30 -> -< -0000000103040304050707080909090B0C0B0C0D0E0E0F100F10111312131415151717171818191A -1B1B1C1C1C1E1D1E1F20202122232223242425252625262829282829282A2B2C2B2D2E2F2F2F -> -< -00000000000000000000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000001000101010101010202020202020203030303030404 -> -< -FFFEFDFCFBFAF9F8F7F6F5F4F3F2F1F0EFEEEDECEBEAE9E8E7E6E5E4E3E2E1E0DFDEDDDCDBDAD9D7 -D6D5D4D3D2D1D0CFCECDCCCBCAC9C8C7C6C5C4C3C2C1C0BFBEBDBCBBBAB9B8B7B6B5B4B3B2B1 -> -< -FFFEFDFDFCFBFAF9F8F8F7F6F5F4F3F3F2F1F0EFEEEEEDECEBEAE9E9E8E7E6E5E4E4E3E2E1E0DFDF -DEDDDCDBDADAD9D8D7D6D5D5D4D3D2D1D0D0CFCECDCCCBCBCAC9C8C7C6C6C5C4C3C2C1C1C0BF -> -< -FFFEFEFDFCFBFBFAF9F8F8F7F6F6F5F4F3F3F2F1F0F0EFEEEEEDECEBEBEAE9E8E8E7E6E6E5E4E3E3 -E2E1E0E0DFDEDEDDDCDBDBDAD9D8D8D7D6D6D5D4D3D3D2D1D0D0CFCECECDCCCBCBCAC9C8C8C7 -> -4 %_Br -[ -0 0 0 0 1 1 1 2 1 6 50 0 %_BS -%_0 0 0 0 1 1 1 2 1 6 50 0 Bs -0.35288 0.187259 0.186221 0.014984 0.694118 0.74902 0.780392 2 1 6 50 100 %_BS -%_0.35288 0.187259 0.186221 0.014984 0.694118 0.74902 0.780392 2 1 6 50 100 Bs -BD -%AI5_EndGradient -%AI5_BeginGradient: (Unnamed gradient 3) -(Unnamed gradient 3) 0 2 Bd -[ -< -2C2D2E2F303132333435363738393B3C3D3E3F4142434445464748494A4B4C4D4F50505152535454 -5556575858595A5B5C5D5E5F606162636364656667686969 -> -< -00000000000000000000000000000000000000000000000001000000000100000000000000010000 -010002010002010201000201020101030204040305040606 -> -0 -0 -< -DAD9D8D7D6D5D4D3D2D1D0CFCECDCCCBCAC9C8C7C6C5C4C3C2C1C0BFBEBDBCBBB9B8B7B6B5B4B3B2 -B1B0AFAEADACABAAA9A8A7A6A5A4A3A2A1A09F9E9D9C9B9A -> -< -F1F1F0F0EFEFEFEEEEEDEDEDECECEBEBEBEAEAE9E9E9E8E8E7E7E7E6E6E5E5E5E4E4E4E3E3E2E2E2 -E1E1E0E0E0DFDFDEDEDEDDDDDCDCDCDBDBDADADAD9D9D8D8 -> -1 -4 %_Br -[ -0.413245 0.021576 0 0 0.603922 0.847059 1 2 1 6 50 100 %_BS -%_0.413245 0.021576 0 0 0.603922 0.847059 1 2 1 6 50 100 Bs -0.17142 0 0 0 0.854902 0.945098 1 2 1 6 50 0 %_BS -%_0.17142 0 0 0 0.854902 0.945098 1 2 1 6 50 0 Bs -BD -%AI5_EndGradient -%AI5_BeginGradient: (Unnamed gradient 7) -(Unnamed gradient 7) 0 2 Bd -[ -< -0000010304050608090B0C0D0F1011121314151718191A1B1C1E1F21222324252728292A2B2C2D2E -2F3031323435363738393A3B3C3D3E3F404142434445464748494A4B4C4D4E4F5050515253545556 -5758595A5B5C5D5D5E5F5F6061626263646565666768696A6A6B6C6E6F7070717273747475767777 -78797A7A7B7C7D7E7E7F808181828383848585868687888889898A8B8B8C8D8D8E8F8F9090919292 -93949495959697979899999A9B9B9C9C9D9E9E9F9FA0A1A2A2A3A4A5A5A6A7A8A8A9AAAAABABACAD -ADAEAFB0B0B1B1B2B3B4B4B5B6B6B7B8B9B9BABBBCBDBDBEBFBFC0C1C1C2C3C4C5C6C7C8C9C9CACC -CED0D1D2D4D5D7D8DADCDEE0E3E5E7E9 -> -< -00000102030405060708090A0A0B0C0C0D0E0F1011111213141516171819191A1B1B1C1D1E1F2020 -2122232425262728292A2B2C2C2D2E2E2F303131323334353637373839393A3B3C3C3D3E3E3F4041 -424243444546474748494A4B4B4C4D4D4E4E4F4F505152525354555657575859595A5B5B5C5C5D5D -5E5F5F60616162636364656667676869696A6A6B6C6C6D6E6E6F6F70707172727374747576767778 -79797A7B7C7C7D7E7F7F80808182828384858586878888898A8A8B8C8C8D8E8E8F90919192939494 -959697979898999A9B9B9C9D9D9E9FA0A0A1A2A3A3A4A5A6A6A7A7A8A9AAABACADAEAFB0B1B1B2B3 -B5B6B7B8B9BABCBDBEC0C1C3C4C6C7C9 -> -< -000001020304050708090A0B0C0D0E0F10111112131415161718191A1B1C1C1D1E1F202121222323 -2425262728292A2B2C2D2D2E2F2F3031323233343536373738393A3B3B3C3D3D3E3F404041424243 -44444546464748494A4A4B4C4D4D4E4E4F505051515253535454555657575859595A5B5B5C5C5D5D -5E5F5F606161626263636465656667676869696A6A6B6C6C6D6D6E6F6F7070717272737474757676 -777778787879797A7B7B7C7D7D7E7E7F7F80808181828283838485858687878888898A8A8B8C8C8D -8D8E8E8E8F8F8F909091919293939494959596969798989999999A9A9B9B9B9B9C9C9C9C9C9D9D9D -9D9D9D9D9D9D9D9D9E9E9E9E9E9E9E9E -> -< -00000000000000000000000000000000000000000000000000000000000000000000000000000001 -01010101010101020202020202030303040404050506060607070808080909090A0A0A0B0B0C0C0D -0D0E0F0F1011121213131414151616171819191A1B1B1C1D1E1E1F202122232425262728292A2B2C -2D2E2E2F3031323435363738393A3B3D3E3F40414344454647494A4B4C4E4F505253555658595B5C -5E5F6162646567686A6B6D6F7072737577787A7B7D7F8082848688898B8D8F91939496989A9C9E9F -A1A3A5A6A7A9AAACAEB0B2B3B5B7B9BBBDBFC1C3C5C7C9CACBCDCED0D1D3D5D7D9DADCDEDFE1E2E4 -E5E7E8E9E9EBECEDEEF0F1F3F4F6F7F9 -> -< -FFFEFDFCFBFAF9F8F7F6F5F4F3F2F1F0EFEEEDECEBEAE9E8E7E6E5E4E3E2E1E0DFDEDDDCDBDAD9D8 -D7D6D5D4D3D2D1D0CFCECDCCCBCAC9C8C7C6C5C4C3C2C1C0BFBEBDBCBBBAB9B8B7B6B5B4B3B2B1B0 -AFAEADACABAAA9A8A7A6A5A4A3A2A1A09F9E9D9C9B9A999897969594939291908F8E8D8C8B8A8988 -87868584838281807F7E7D7C7B7A797877767574737271706F6E6D6C6B6A69686766656463626160 -5F5E5D5C5B5A595857565554535251504F4E4D4C4B4A494847464544434241403F3E3D3C3B3A3938 -37363534333231302F2E2D2C2B2A292827262524232221201F1E1D1C1B1A19181716151413121110 -0F0E0D0C0B0A09080706050403020100 -> -< -FFFEFDFCFBFAF9F8F7F6F5F4F3F2F1F0EFEEEDECEBEAE9E8E7E6E5E4E3E2E1E0DFDEDDDCDBDAD9D8 -D7D6D5D4D3D2D1D0CFCECDCCCBCAC9C8C7C6C5C4C3C2C1C0BFBEBDBCBBBAB9B8B7B6B5B4B3B2B1B0 -AFAEADACABAAA9A8A7A6A5A4A3A2A1A09F9E9D9C9B9A999897969594939291908F8E8D8C8B8A8988 -87868584838281807F7E7D7C7B7A797877767574737271706F6E6D6C6B6A69686766656463626160 -5F5E5D5C5B5A595857565554535251504F4E4D4C4B4A494847464544434241403F3E3D3C3B3A3938 -37363534333231302F2E2D2C2B2A292827262524232221201F1E1D1C1B1A19181716151413121110 -0F0E0D0C0B0A09080706050403020100 -> -< -FFFEFDFCFBFAF9F8F7F6F5F4F3F2F1F0EFEEEDECEBEAE9E8E7E6E5E4E3E2E1E0DFDEDDDCDBDAD9D8 -D7D6D5D4D3D2D1D0CFCECDCCCBCAC9C8C7C6C5C4C3C2C1C0BFBEBDBCBBBAB9B8B7B6B5B4B3B2B1B0 -AFAEADACABAAA9A8A7A6A5A4A3A2A1A09F9E9D9C9B9A999897969594939291908F8E8D8C8B8A8988 -87868584838281807F7E7D7C7B7A797877767574737271706F6E6D6C6B6A69686766656463626160 -5F5E5D5C5B5A595857565554535251504F4E4D4C4B4A494847464544434241403F3E3D3C3B3A3938 -37363534333231302F2E2D2C2B2A292827262524232221201F1E1D1C1B1A19181716151413121110 -0F0E0D0C0B0A09080706050403020100 -> -4 %_Br -[ -0.912474 0.787625 0.619837 0.97467 0 0 0 2 1 6 50 100 %_BS -%_0.912474 0.787625 0.619837 0.97467 0 0 0 2 1 6 50 100 Bs -0 0 0 0 1 1 1 2 1 6 50 0 %_BS -%_0 0 0 0 1 1 1 2 1 6 50 0 Bs -BD -%AI5_EndGradient -%AI5_BeginGradient: (Weiß, Schwarz) -(Weiß, Schwarz) 0 2 Bd -[ -< -0000010304050608090B0C0D0F1011121314151718191A1B1C1E1F21222324252728292A2B2C2D2E -2F3031323435363738393A3B3C3D3E3F404142434445464748494A4B4C4D4E4F5050515253545556 -5758595A5B5C5D5D5E5F5F6061626263646565666768696A6A6B6C6E6F7070717273747475767777 -78797A7A7B7C7D7E7E7F808181828383848585868687888889898A8B8B8C8D8D8E8F8F9090919292 -93949495959697979899999A9B9B9C9C9D9E9E9F9FA0A1A2A2A3A4A5A5A6A7A8A8A9AAAAABABACAD -ADAEAFB0B0B1B1B2B3B4B4B5B6B6B7B8B9B9BABBBCBDBDBEBFBFC0C1C1C2C3C4C5C6C7C8C9C9CACC -CED0D1D2D4D5D7D8DADCDEE0E3E5E7E9 -> -< -00000102030405060708090A0A0B0C0C0D0E0F1011111213141516171819191A1B1B1C1D1E1F2020 -2122232425262728292A2B2C2C2D2E2E2F303131323334353637373839393A3B3C3C3D3E3E3F4041 -424243444546474748494A4B4B4C4D4D4E4E4F4F505152525354555657575859595A5B5B5C5C5D5D -5E5F5F60616162636364656667676869696A6A6B6C6C6D6E6E6F6F70707172727374747576767778 -79797A7B7C7C7D7E7F7F80808182828384858586878888898A8A8B8C8C8D8E8E8F90919192939494 -959697979898999A9B9B9C9D9D9E9FA0A0A1A2A3A3A4A5A6A6A7A7A8A9AAABACADAEAFB0B1B1B2B3 -B5B6B7B8B9BABCBDBEC0C1C3C4C6C7C9 -> -< -000001020304050708090A0B0C0D0E0F10111112131415161718191A1B1C1C1D1E1F202121222323 -2425262728292A2B2C2D2D2E2F2F3031323233343536373738393A3B3B3C3D3D3E3F404041424243 -44444546464748494A4A4B4C4D4D4E4E4F505051515253535454555657575859595A5B5B5C5C5D5D -5E5F5F606161626263636465656667676869696A6A6B6C6C6D6D6E6F6F7070717272737474757676 -777778787879797A7B7B7C7D7D7E7E7F7F80808181828283838485858687878888898A8A8B8C8C8D -8D8E8E8E8F8F8F909091919293939494959596969798989999999A9A9B9B9B9B9C9C9C9C9C9D9D9D -9D9D9D9D9D9D9D9D9E9E9E9E9E9E9E9E -> -< -00000000000000000000000000000000000000000000000000000000000000000000000000000001 -01010101010101020202020202030303040404050506060607070808080909090A0A0A0B0B0C0C0D -0D0E0F0F1011121213131414151616171819191A1B1B1C1D1E1E1F202122232425262728292A2B2C -2D2E2E2F3031323435363738393A3B3D3E3F40414344454647494A4B4C4E4F505253555658595B5C -5E5F6162646567686A6B6D6F7072737577787A7B7D7F8082848688898B8D8F91939496989A9C9E9F -A1A3A5A6A7A9AAACAEB0B2B3B5B7B9BBBDBFC1C3C5C7C9CACBCDCED0D1D3D5D7D9DADCDEDFE1E2E4 -E5E7E8E9E9EBECEDEEF0F1F3F4F6F7F9 -> -< -FFFEFDFCFBFAF9F8F7F6F5F4F3F2F1F0EFEEEDECEBEAE9E8E7E6E5E4E3E2E1E0DFDEDDDCDBDAD9D8 -D7D6D5D4D3D2D1D0CFCECDCCCBCAC9C8C7C6C5C4C3C2C1C0BFBEBDBCBBBAB9B8B7B6B5B4B3B2B1B0 -AFAEADACABAAA9A8A7A6A5A4A3A2A1A09F9E9D9C9B9A999897969594939291908F8E8D8C8B8A8988 -87868584838281807F7E7D7C7B7A797877767574737271706F6E6D6C6B6A69686766656463626160 -5F5E5D5C5B5A595857565554535251504F4E4D4C4B4A494847464544434241403F3E3D3C3B3A3938 -37363534333231302F2E2D2C2B2A292827262524232221201F1E1D1C1B1A19181716151413121110 -0F0E0D0C0B0A09080706050403020100 -> -< -FFFEFDFCFBFAF9F8F7F6F5F4F3F2F1F0EFEEEDECEBEAE9E8E7E6E5E4E3E2E1E0DFDEDDDCDBDAD9D8 -D7D6D5D4D3D2D1D0CFCECDCCCBCAC9C8C7C6C5C4C3C2C1C0BFBEBDBCBBBAB9B8B7B6B5B4B3B2B1B0 -AFAEADACABAAA9A8A7A6A5A4A3A2A1A09F9E9D9C9B9A999897969594939291908F8E8D8C8B8A8988 -87868584838281807F7E7D7C7B7A797877767574737271706F6E6D6C6B6A69686766656463626160 -5F5E5D5C5B5A595857565554535251504F4E4D4C4B4A494847464544434241403F3E3D3C3B3A3938 -37363534333231302F2E2D2C2B2A292827262524232221201F1E1D1C1B1A19181716151413121110 -0F0E0D0C0B0A09080706050403020100 -> -< -FFFEFDFCFBFAF9F8F7F6F5F4F3F2F1F0EFEEEDECEBEAE9E8E7E6E5E4E3E2E1E0DFDEDDDCDBDAD9D8 -D7D6D5D4D3D2D1D0CFCECDCCCBCAC9C8C7C6C5C4C3C2C1C0BFBEBDBCBBBAB9B8B7B6B5B4B3B2B1B0 -AFAEADACABAAA9A8A7A6A5A4A3A2A1A09F9E9D9C9B9A999897969594939291908F8E8D8C8B8A8988 -87868584838281807F7E7D7C7B7A797877767574737271706F6E6D6C6B6A69686766656463626160 -5F5E5D5C5B5A595857565554535251504F4E4D4C4B4A494847464544434241403F3E3D3C3B3A3938 -37363534333231302F2E2D2C2B2A292827262524232221201F1E1D1C1B1A19181716151413121110 -0F0E0D0C0B0A09080706050403020100 -> -4 %_Br -[ -0.912474 0.787625 0.619837 0.97467 0 0 0 2 1 6 50 100 %_BS -%_0.912474 0.787625 0.619837 0.97467 0 0 0 2 1 6 50 100 Bs -0 0 0 0 1 1 1 2 1 6 50 0 %_BS -%_0 0 0 0 1 1 1 2 1 6 50 0 Bs -BD -%AI5_EndGradient -%AI5_End_NonPrinting-- -%AI5_Begin_NonPrinting -Np -%AI3_BeginPattern: (Jive) -(Jive) 47.5615 109.6396 155.9004 219.2813 -%_0 A -%_0 Xw -%_u -%_0 1 0 0 0 Xy -%_0 J 0 j 1 w 10 M []0 d %_0 XR -%_47.5615 219.2813 m -%_155.9004 219.2813 L -%_155.9004 109.6396 L -%_47.5615 109.6396 L -%_47.5615 219.2813 L -%_n -%_/ArtDictionary : -%_1 /Bool (AIPattern_Editor_Backing_Tile_Rect) , -%_; -%_ -%_u -%_*u -%_1 D -%_0 O -%_1 0.771237 0.226078 0.073854 0 0.258824 0.494118 Xa -%_135.0352 74.9453 m -%_135.0566 75.0645 135.1602 75.1504 135.2813 75.1523 c -%_148.1875 75.2871 160.0352 78.4199 169.2529 86.667 C -%_161.2227 81.1094 146.3105 79.1563 137.7256 83.0488 c -%_137.6152 83.0986 137.5566 83.2188 137.584 83.3369 c -%_137.6104 83.4551 137.7168 83.5371 137.8379 83.5332 c -%_148.5176 83.2441 157.1172 86.54 163.8223 92.498 C -%_156.9531 92.9199 151.248 97.2383 151.2656 102.3428 c -%_151.2656 102.4619 151.3496 102.5645 151.4668 102.5898 c -%_151.583 102.6152 151.7012 102.5547 151.75 102.4463 c -%_152.8711 99.957 156.498 98.666 160.333 99.5664 c -%_164.5127 100.5469 167.333 103.7559 166.6338 106.7314 c -%_166.1621 108.7461 164.1973 110.1348 161.6816 110.5186 c -%_161.5547 110.5371 161.4619 110.6484 161.4648 110.7764 c -%_161.4688 110.9043 161.5674 111.0098 161.6953 111.0215 c -%_162.7637 111.124 163.875 111.1279 165.0127 111.0195 c -%_171.5029 110.4023 176.5264 106.4238 176.9619 101.8418 C -%_181.6748 102.3887 185.8467 104.998 187.3408 108.6152 c -%_187.3857 108.7236 187.501 108.7871 187.6162 108.7695 c -%_187.7314 108.75 187.8193 108.6553 187.8291 108.5391 c -%_188.2061 103.7871 186.5713 100.7002 182.8584 97.6846 C -%_188.2432 99.7441 194.3027 99.8496 200.1133 97.1465 c -%_200.2188 97.0977 200.2773 96.9824 200.2559 96.8672 c -%_200.2324 96.752 200.1328 96.668 200.0156 96.6641 c -%_195.1367 96.4736 191.5996 94.9082 188.2861 91.5918 C -%_206.5391 96.7256 221.3711 85.3906 216.2383 68.5391 c -%_216.2031 68.4238 216.0918 68.3486 215.9707 68.3613 c -%_215.8496 68.373 215.7539 68.4688 215.7441 68.5898 c -%_214.8262 78.3037 208.041 84.7051 197.8828 85.666 C -%_203.2695 83.6055 208.8828 78.6895 209.4395 70.1318 c -%_209.4473 70.0098 209.3672 69.8984 209.248 69.8691 c -%_209.1289 69.8398 209.0059 69.8984 208.9551 70.0098 c -%_206.1563 76.1641 200.6582 79.2754 194.7949 79.8223 C -%_201.1289 77.2422 205.1914 71.2207 206.3652 63.4023 c -%_206.3848 63.2793 206.3105 63.1602 206.1914 63.123 c -%_206.0742 63.084 205.9453 63.1387 205.8887 63.248 c -%_202.0234 70.8311 193.7324 76.042 183.4424 72.0605 c -%_172.8252 67.9512 168.168 55.6738 167.1387 47.0195 c -%_167.124 46.8984 167.0234 46.8047 166.9004 46.7969 c -%_166.7783 46.7891 166.668 46.8711 166.6396 46.9922 c -%_162.9199 62.6797 170.2227 78.9414 183.2764 85.832 C -%_176.1807 83.8291 169.8369 79.5723 166.249 72.4775 C -%_157.9551 71.459 152.2451 68.6152 149.3916 63.2383 c -%_149.335 63.1309 149.2109 63.0781 149.0957 63.1133 c -%_148.9805 63.1465 148.9043 63.2578 148.9141 63.3789 c -%_149.0967 65.4883 149.8555 69.709 152.9883 71.6494 C -%_146.0234 71.6387 140.4824 72.543 135.1895 74.6621 c -%_135.0781 74.708 135.0127 74.8262 135.0352 74.9453 c -%_f -%_0 D -%_164.5215 21.4746 m -%_164.4229 21.541 164.293 21.5293 164.2061 21.4492 c -%_164.1201 21.3672 164.1016 21.2383 164.1602 21.1367 c -%_165.7803 18.3398 164.3008 14.3223 161.1094 14.3223 c -%_155.3887 14.3223 152.6387 25.0918 153.5137 34.916 C -%_155.6768 29.1602 157.5469 26.8613 160.8613 24.1211 c -%_160.9551 24.043 161.0898 24.043 161.1836 24.1191 c -%_161.2773 24.1973 161.3047 24.3281 161.2471 24.4355 c -%_156.3906 33.5156 155.3496 40.502 155.3496 48.5215 C -%_156.8125 42.5625 158.5449 39.1992 163.4766 34.1406 c -%_163.5625 34.0527 163.6992 34.0391 163.8018 34.1074 c -%_163.9033 34.1777 163.9404 34.3105 163.8887 34.4238 c -%_158.5908 46.0137 158.9951 58.8711 162.9414 68.6875 c -%_162.9805 68.7852 162.9561 68.8965 162.8789 68.9688 c -%_162.8018 69.0391 162.6895 69.0566 162.5938 69.0098 c -%_157.3887 66.459 154.3301 64.7832 149.8418 58.6211 C -%_151.1992 51.2227 150.0703 47.5723 146.6699 41.4258 C -%_150.6074 51.3438 148.5117 65.3203 138.4824 71.0176 c -%_138.373 71.0791 138.2344 71.0518 138.1582 70.9531 c -%_138.0801 70.8535 138.0869 70.7119 138.1738 70.6211 c -%_141.9551 66.666 144.7051 59.9863 142.3301 52.6934 C -%_143.8594 63.082 134.7344 71.8086 124.5508 71.8086 c -%_114.9512 71.8086 108.4004 64.2988 108.9414 56.8672 c -%_109.4785 49.502 114.3848 45.8984 118.6133 44.3691 c -%_118.7246 44.3301 118.8496 44.3711 118.9131 44.4707 c -%_118.9766 44.5723 118.9629 44.7012 118.8799 44.7871 c -%_113.2695 50.4785 112.502 61.2793 122.4629 64.5469 C -%_116.6035 59.4902 118.7734 47.7168 128.1523 46.8223 c -%_128.2695 46.8105 128.3789 46.8809 128.417 46.9922 c -%_128.4551 47.1035 128.4121 47.2266 128.3135 47.2891 c -%_126.3047 48.5664 124.6348 51.0605 124.6348 53.8633 c -%_124.6348 58.5371 128.0566 60.373 130.3105 60.373 c -%_133.7324 60.373 136.5703 57.1172 136.5703 52.1934 c -%_136.5703 46.3496 131.3105 41.5098 124.5508 40.7578 c -%_117.9248 40.0234 111.7686 42.9121 108.8008 47.2168 c -%_108.7314 47.3184 108.5996 47.3555 108.4873 47.3047 c -%_108.375 47.2539 108.3164 47.1289 108.3467 47.0098 c -%_111.3652 35.3066 125.1426 30.1328 135.2344 37.5039 C -%_128.6211 30.002 118.2285 29.8984 109.5127 37.5898 c -%_109.4219 37.6699 109.2871 37.6738 109.1904 37.5996 c -%_109.0938 37.5273 109.0635 37.3945 109.1172 37.2871 c -%_111.7842 31.8789 118.3701 25.4668 127.7227 26.4023 c -%_136.2793 27.2578 141.2441 35.416 142.2461 42.0938 C -%_142.8027 33.5723 140.8525 27.5566 133.4922 21.9473 c -%_133.3955 21.873 133.3652 21.7402 133.4199 21.6309 c -%_133.4746 21.5234 133.5996 21.4688 133.7168 21.502 c -%_140.502 23.4629 145.9473 26.9277 148.7656 34.0469 C -%_148.7656 27.8848 146.627 21.6738 141.2402 17.5352 c -%_141.1426 17.4609 141.1133 17.3301 141.168 17.2207 c -%_141.2227 17.1113 141.3467 17.0566 141.4639 17.0898 c -%_144.917 18.0742 147.6348 19.5781 149.6016 22.2754 C -%_150.9121 11.1758 156.123 4.58398 162.127 4.58398 c -%_166.252 4.58398 169.332 7.61719 169.332 12.4551 c -%_169.332 15.2852 167.8438 19.2578 164.5215 21.4746 c -%_f -%_263.748 113.0938 m -%_260.5859 116.998 254.209 118.4863 247.3164 117.082 C -%_247.8262 121.3828 246.9824 125.873 245.7051 128.5664 c -%_245.6523 128.6758 245.5313 128.7334 245.4141 128.7051 c -%_245.2969 128.6758 245.2168 128.5684 245.2207 128.4473 c -%_245.5957 119.6807 240.5977 112.6035 231.7715 109.5371 C -%_238.6777 114.293 240.6973 123.7305 237.4102 128.6035 c -%_237.3418 128.7021 237.2148 128.7412 237.1035 128.6953 c -%_236.9922 128.6504 236.9277 128.5332 236.9492 128.416 c -%_237.3223 126.3555 236.3438 123.7314 234.2363 121.6895 c -%_231.3301 118.875 227.3867 118.2363 225.4258 120.2598 c -%_223.4648 122.2852 224.2285 126.207 227.1328 129.0215 c -%_228.1934 130.0488 229.3926 130.7832 230.582 131.2061 c -%_230.6953 131.2461 230.7637 131.3594 230.748 131.4775 c -%_230.7344 131.5967 230.6387 131.6885 230.5195 131.6982 c -%_224.1309 132.2529 219.75 128.4463 217.0039 123.8203 c -%_214.209 119.1152 209.4336 115.4102 203.793 116.1504 c -%_203.6738 116.166 203.5605 116.0957 203.5195 115.9824 c -%_203.4805 115.8691 203.5254 115.7422 203.6289 115.6807 c -%_206.4258 113.9961 209.5 113.2969 213.4922 114.6289 C -%_207.6973 109.7197 199.4453 106.8867 191.6523 109.4014 c -%_191.543 109.4375 191.4238 109.3945 191.3613 109.2979 c -%_191.2988 109.2012 191.3105 109.0752 191.3867 108.9902 c -%_197.2949 102.4258 209.0762 102.2949 216.4961 107.6172 C -%_213.459 103.3008 209.4277 100.1328 202.2031 99.1387 c -%_202.0879 99.123 201.998 99.0313 201.9844 98.916 c -%_201.9727 98.7998 202.0391 98.6904 202.1484 98.6504 c -%_210.4395 95.5723 218.748 98.6953 225.5938 106.8652 C -%_222.6016 100.4883 217.6875 95.3809 210.8262 92.8535 c -%_210.7109 92.8115 210.6426 92.6934 210.6641 92.5742 c -%_210.6836 92.4531 210.7871 92.3643 210.9082 92.3613 c -%_214.8516 92.2803 218.3945 93.2188 223.1738 95.9316 C -%_219.666 90.2422 220.4336 80.293 225.543 73.6738 c -%_225.6133 73.582 225.7383 73.5498 225.8457 73.5957 c -%_225.9512 73.6426 226.0137 73.7549 225.9941 73.8691 c -%_224.8145 81.0703 227.293 89.1992 231.6035 93.5117 C -%_229.4512 85.8799 231.5977 78.9355 237.5 73.8672 c -%_237.5703 73.8066 237.6699 73.79 237.7559 73.8232 c -%_237.8438 73.8564 237.9043 73.9355 237.918 74.0273 c -%_239.1523 83.4453 249.6875 93.002 258.5195 93.8027 c -%_258.6445 93.8135 258.7422 93.9141 258.75 94.0381 c -%_258.7578 94.1621 258.6758 94.2754 258.5527 94.3027 c -%_254.2734 95.2715 249.8613 94.793 246.1641 93.2715 C -%_248.8242 96.2051 252.1035 98.3828 255.7188 99.5176 c -%_255.8359 99.5537 255.9082 99.668 255.8945 99.7891 c -%_255.8809 99.9102 255.7813 100.0039 255.6602 100.0127 c -%_251.1504 100.3242 246.7363 99.0068 242.9297 96.4746 C -%_247.291 103.0957 253.9102 108.0195 262.3574 109.9805 c -%_262.4785 110.0088 262.5605 110.1191 262.5547 110.2432 c -%_262.5469 110.3672 262.4512 110.4668 262.3281 110.4805 c -%_250.4102 111.7822 240.582 107.1621 234.1074 98.5625 C -%_235.7559 103.4629 240.4727 108.3184 247.0527 111.1816 c -%_252.8984 113.7266 258.9023 114.1279 263.4746 112.6914 c -%_263.5801 112.6582 263.6973 112.6982 263.7598 112.791 c -%_263.8223 112.8828 263.8184 113.0059 263.748 113.0938 c -%_f -%_210.8438 37.5215 m -%_215.6504 48.0078 215.3086 56.207 211.4375 66.5762 c -%_211.3926 66.6934 211.2715 66.7607 211.1484 66.7363 c -%_211.0254 66.7109 210.9395 66.5996 210.9453 66.4746 c -%_211.5664 53.8535 208.1191 44.8203 200.6465 38.668 C -%_208.8965 48.5195 205 68.2275 191.8242 68.2275 c -%_182.2393 68.2275 174.3086 60.252 172.3691 50.7031 c -%_172.3447 50.582 172.4111 50.459 172.5273 50.416 c -%_172.6426 50.3711 172.7734 50.416 172.8359 50.5215 c -%_175.6787 55.2832 180.2451 58.373 185.2939 58.373 c -%_193.4277 58.373 195.834 51.9063 195.834 47.375 c -%_195.834 41.1875 190.9082 36.0313 187.1279 36.0313 c -%_183.6904 36.0313 182.0869 38.8555 182.0869 40.959 c -%_182.0869 44.8574 185.085 48.125 188.4639 49.123 c -%_188.583 49.1582 188.6611 49.2773 188.6436 49.4023 c -%_188.624 49.5273 188.5186 49.6191 188.3936 49.6211 c -%_184.2861 49.6465 180.8154 47.7656 178.7627 44.0527 C -%_178.4932 46.9277 178.4902 48.7383 179.4033 51.7754 c -%_179.4385 51.8926 179.3848 52.0176 179.2773 52.0742 c -%_179.168 52.1309 179.0352 52.1016 178.9609 52.0059 c -%_171.6045 42.6133 175.125 26.3809 180.9404 19.6484 C -%_175.4082 23.6309 170.5234 32.2813 170.6006 44.041 c -%_170.6016 44.1641 170.5156 44.2676 170.3955 44.291 c -%_170.2754 44.3164 170.1563 44.25 170.1113 44.1367 c -%_166.0029 33.8848 168.1826 14.8887 179.3926 4.28516 C -%_176.5088 3.88867 173.5254 3.93945 170.2676 4.97852 c -%_170.1523 5.01367 170.0273 4.96484 169.9688 4.85938 c -%_169.9102 4.75195 169.9336 4.61914 170.0273 4.54102 c -%_174.1191 1.08594 179.8418 0 185.2939 0 C -%_180.5967 5.5 182.1572 16.5547 189.6494 16.5547 c -%_194.9961 16.5547 197.4238 8.25586 193.2949 3.77344 c -%_193.2168 3.6875 193.207 3.55859 193.2695 3.46289 c -%_193.334 3.36523 193.4551 3.32227 193.5664 3.36133 c -%_198.3457 5.01563 203.5117 9.15039 203.5117 14.377 c -%_203.5117 19.4199 198.6992 23.7715 191.7109 23.4277 C -%_200.5293 25.9336 209.7617 23.1602 214.5918 17.1758 c -%_214.666 17.082 214.7969 17.0547 214.9023 17.1074 c -%_215.0098 17.1621 215.0645 17.2832 215.0352 17.3984 c -%_212.2441 28.1152 203.0684 32.5977 191.5957 31.1055 C -%_200.877 34.8613 214.8457 31.5859 221.0195 23.7949 c -%_221.0918 23.7031 221.2188 23.6738 221.3262 23.7227 c -%_221.4316 23.7734 221.4902 23.8906 221.4668 24.0039 c -%_220.0957 30.6191 216.6035 35.5664 210.8438 37.5215 C -%_f -%_*U -%_*u -%_1 D -%_0.41001 0 0.011078 0 0.615686 0.862745 0.976471 Xa -%_0 0.4 0 0 0 Xy -%_237.2266 56.8086 m -%_237.2051 56.6895 237.1016 56.6016 236.9805 56.6016 c -%_224.0742 56.4648 212.2266 53.334 203.0098 45.0859 C -%_211.0391 50.6445 225.9512 52.5957 234.5371 48.7051 c -%_234.6465 48.6543 234.7051 48.5332 234.6777 48.416 c -%_234.6523 48.2988 234.5449 48.2168 234.4238 48.2188 c -%_223.7441 48.5098 215.1445 45.2129 208.4395 39.2559 C -%_215.3086 38.832 221.0137 34.5156 220.9961 29.4102 c -%_220.9961 29.291 220.9121 29.1875 220.7949 29.1621 c -%_220.6797 29.1387 220.5605 29.1973 220.5117 29.3066 c -%_219.3906 31.7949 215.7637 33.0879 211.9297 32.1875 c -%_207.75 31.2051 204.9297 27.998 205.6289 25.0215 c -%_206.0996 23.0078 208.0645 21.6191 210.5801 21.2344 c -%_210.707 21.2148 210.8008 21.1055 210.7969 20.9766 c -%_210.793 20.8496 210.6953 20.7441 210.5664 20.7305 c -%_209.498 20.6289 208.3867 20.625 207.25 20.7344 c -%_200.7598 21.3516 195.7363 25.3281 195.3008 29.9121 C -%_190.5889 29.3652 186.417 26.7539 184.9229 23.1387 c -%_184.8779 23.0293 184.7646 22.9668 184.6475 22.9844 c -%_184.5322 23.002 184.4443 23.0977 184.4346 23.2148 c -%_184.0576 27.9648 185.6924 31.0527 189.4053 34.0684 C -%_184.0205 32.0098 177.959 31.9043 172.1484 34.6055 c -%_172.043 34.6563 171.9844 34.7715 172.0059 34.8867 c -%_172.0293 35.002 172.1289 35.0859 172.2461 35.0898 c -%_177.125 35.2793 180.6631 36.8457 183.9795 40.1621 C -%_165.7227 35.0273 150.8906 46.3633 156.0234 63.2129 c -%_156.0586 63.3301 156.1699 63.4043 156.291 63.3926 c -%_156.4121 63.3809 156.5078 63.2852 156.5176 63.1641 c -%_157.4355 53.4492 164.2207 47.0469 174.3789 46.0879 C -%_168.9922 48.1465 163.3789 53.0625 162.8223 61.6211 c -%_162.8145 61.7441 162.8945 61.8535 163.0137 61.8848 c -%_163.1328 61.9141 163.2559 61.8535 163.3066 61.7422 c -%_166.1055 55.5879 171.6035 52.4785 177.4668 51.9297 C -%_171.1328 54.5117 167.0703 60.5332 165.8965 68.3516 c -%_165.877 68.4746 165.9512 68.5918 166.0703 68.6309 c -%_166.1875 68.668 166.3164 68.6152 166.373 68.5039 c -%_170.2383 60.9219 178.5293 55.7109 188.8213 59.6934 c -%_199.4375 63.8027 204.0938 76.0781 205.123 84.7324 c -%_205.1387 84.8555 205.2383 84.9492 205.3613 84.957 c -%_205.4844 84.9629 205.5938 84.8809 205.623 84.7617 c -%_209.3418 69.0723 202.0391 52.8125 188.9873 45.9219 C -%_196.082 47.9238 202.4258 52.1816 206.0137 59.2754 C -%_214.3066 60.293 220.0176 63.1387 222.8711 68.5156 c -%_222.9277 68.6211 223.0508 68.6738 223.166 68.6406 c -%_223.2813 68.6055 223.3574 68.4941 223.3477 68.375 c -%_223.166 66.2656 222.4063 62.0449 219.2734 60.1035 C -%_226.2383 60.1152 231.7793 59.2109 237.0723 57.0898 c -%_237.1836 57.0449 237.25 56.9277 237.2266 56.8086 c -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_0 D -%_207.7402 110.2773 m -%_207.8398 110.2129 207.9688 110.2227 208.0566 110.3047 c -%_208.1426 110.3848 208.1602 110.5137 208.1016 110.6172 c -%_206.4824 113.4141 207.9609 117.4297 211.1523 117.4297 c -%_216.873 117.4297 219.623 106.6602 218.748 96.8379 C -%_216.5859 102.5918 214.7148 104.8926 211.4004 107.6328 c -%_211.3066 107.709 211.1719 107.7109 211.0781 107.6328 c -%_210.9844 107.5566 210.957 107.4238 211.0156 107.3164 c -%_215.8711 98.2383 216.9121 91.252 216.9121 83.2324 C -%_215.4492 89.1895 213.7168 92.5527 208.7852 97.6133 c -%_208.6992 97.7012 208.5625 97.7148 208.4609 97.6445 c -%_208.3594 97.5742 208.3223 97.4414 208.373 97.3301 c -%_213.6719 85.7383 213.2676 72.8828 209.3203 63.0664 c -%_209.2813 62.9688 209.3066 62.8574 209.3828 62.7852 c -%_209.4609 62.7129 209.5723 62.6973 209.668 62.7422 c -%_214.873 65.293 217.9316 66.9688 222.4199 73.1328 C -%_221.0625 80.5313 222.1914 84.1797 225.5918 90.3262 C -%_221.6543 80.4102 223.75 66.4336 233.7793 60.7363 c -%_233.8887 60.6738 234.0273 60.7012 234.1035 60.8008 c -%_234.1816 60.9004 234.1758 61.041 234.0879 61.1328 c -%_230.3066 65.0879 227.5566 71.7676 229.9316 79.0586 C -%_228.4023 68.6699 237.5273 59.9453 247.7109 59.9453 c -%_257.3105 59.9453 263.8613 67.4531 263.3203 74.8848 c -%_262.7832 82.25 257.877 85.8555 253.6484 87.3828 c -%_253.5371 87.4238 253.4121 87.3809 253.3496 87.2813 c -%_253.2852 87.1816 253.2988 87.0508 253.3828 86.9668 c -%_258.9922 81.2734 259.7598 70.4746 249.7988 67.207 C -%_255.6582 72.2637 253.4883 84.0352 244.1094 84.9316 c -%_243.9922 84.9414 243.8828 84.8711 243.8457 84.7598 c -%_243.8066 84.6504 243.8496 84.5273 243.9492 84.4648 c -%_245.957 83.1855 247.627 80.6934 247.627 77.8906 c -%_247.627 73.2168 244.2051 71.3789 241.9512 71.3789 c -%_238.5293 71.3789 235.6914 74.6348 235.6914 79.5605 c -%_235.6914 85.4023 240.9512 90.2441 247.7109 90.9941 c -%_254.3379 91.7305 260.4941 88.8398 263.4609 84.5352 c -%_263.5313 84.4336 263.6621 84.3984 263.7754 84.4492 c -%_263.8867 84.5 263.9453 84.623 263.916 84.7422 c -%_260.8965 96.4453 247.1191 101.6191 237.0273 94.25 C -%_243.6406 101.75 254.0332 101.8555 262.75 94.1641 c -%_262.8398 94.084 262.9746 94.0781 263.0723 94.1523 c -%_263.168 94.2266 263.1992 94.3574 263.1445 94.4668 c -%_260.4785 99.873 253.8926 106.2852 244.5391 105.3516 c -%_235.9824 104.4961 231.0176 96.3359 230.0156 89.6602 C -%_229.459 98.1816 231.4102 104.1953 238.7695 109.8047 c -%_238.8672 109.8789 238.8965 110.0117 238.8418 110.1211 c -%_238.7871 110.2305 238.6621 110.2852 238.5449 110.25 c -%_231.7598 108.291 226.3145 104.8262 223.4961 97.707 C -%_223.4961 103.8672 225.6348 110.0781 231.0215 114.2168 c -%_231.1191 114.291 231.1484 114.4238 231.0938 114.5332 c -%_231.0391 114.6406 230.916 114.6953 230.7988 114.6621 c -%_227.3457 113.6797 224.627 112.1738 222.6602 109.4785 C -%_221.3496 120.5781 216.1387 127.168 210.1348 127.168 c -%_206.0098 127.168 202.9297 124.1348 202.9297 119.2988 c -%_202.9297 116.4688 204.418 112.4961 207.7402 110.2773 c -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_108.5137 18.6602 m -%_111.6758 14.7559 118.0527 13.2676 124.9453 14.6719 C -%_124.4355 10.3691 125.2793 5.88086 126.5566 3.18555 c -%_126.6094 3.07813 126.7305 3.01953 126.8477 3.04883 c -%_126.9648 3.07813 127.0449 3.18555 127.041 3.30664 c -%_126.666 12.0723 131.6641 19.1484 140.4902 22.2148 C -%_133.584 17.459 131.5645 8.02148 134.8516 3.15039 c -%_134.9199 3.05078 135.0469 3.01172 135.1582 3.05664 c -%_135.2695 3.10156 135.334 3.21875 135.3125 3.33789 c -%_134.9395 5.39844 135.918 8.02148 138.0254 10.0625 c -%_140.9316 12.877 144.875 13.5156 146.8359 11.4922 c -%_148.7969 9.4668 148.0332 5.54492 145.1289 2.73242 c -%_144.0684 1.70508 142.8691 0.96875 141.6797 0.546875 c -%_141.5664 0.505859 141.498 0.392578 141.5137 0.275391 c -%_141.5273 0.15625 141.623 0.064453 141.7422 0.054688 c -%_148.1309 -0.5 152.5117 3.30664 155.2578 7.93164 c -%_158.0527 12.6367 162.8281 16.3438 168.4688 15.6035 c -%_168.5879 15.5879 168.7012 15.6582 168.7422 15.7715 c -%_168.7813 15.8848 168.7363 16.0098 168.6328 16.0723 c -%_165.8359 17.7559 162.7617 18.4551 158.7695 17.125 C -%_164.5645 22.0332 172.8164 24.8652 180.6104 22.3516 c -%_180.7197 22.3164 180.8389 22.3594 180.9014 22.4551 c -%_180.9639 22.5508 180.9541 22.6777 180.876 22.7637 c -%_174.9668 29.3281 163.1855 29.459 155.7656 24.1348 C -%_158.8027 28.4512 162.834 31.6211 170.0586 32.6133 c -%_170.1738 32.6289 170.2637 32.7227 170.2773 32.8379 c -%_170.2891 32.9531 170.2227 33.0625 170.1133 33.1035 c -%_161.8223 36.1797 153.5137 33.0586 146.668 24.8867 C -%_149.6602 31.2656 154.5742 36.373 161.4355 38.9004 c -%_161.5508 38.9414 161.6191 39.0586 161.5977 39.1797 c -%_161.5781 39.3008 161.4746 39.3887 161.3535 39.3906 c -%_157.4102 39.4727 153.8672 38.5332 149.0879 35.8203 C -%_152.5957 41.5117 151.8281 51.459 146.7188 58.0801 c -%_146.6484 58.1719 146.5234 58.2031 146.416 58.1582 c -%_146.3105 58.1113 146.248 57.998 146.2676 57.8828 c -%_147.4473 50.6836 144.9688 42.5547 140.6582 38.2422 C -%_142.8105 45.873 140.6641 52.8184 134.7617 57.8848 c -%_134.6914 57.9453 134.5918 57.9629 134.5059 57.9297 c -%_134.418 57.8965 134.3574 57.8184 134.3438 57.7266 c -%_133.1094 48.3086 122.5742 38.752 113.7422 37.9512 c -%_113.6172 37.9395 113.5195 37.8398 113.5117 37.7148 c -%_113.5039 37.5898 113.5859 37.4785 113.709 37.4512 c -%_117.9883 36.4824 122.4004 36.9609 126.0977 38.4805 C -%_123.4375 35.5488 120.1582 33.3711 116.543 32.2363 c -%_116.4258 32.1992 116.3535 32.0859 116.3672 31.9648 c -%_116.3809 31.8438 116.4805 31.748 116.6016 31.7402 c -%_121.1113 31.4297 125.5254 32.7461 129.332 35.2793 C -%_124.9707 28.6582 118.3516 23.7344 109.9043 21.7715 c -%_109.7832 21.7441 109.7012 21.6328 109.707 21.5098 c -%_109.7148 21.3867 109.8105 21.2871 109.9336 21.2734 c -%_121.8516 19.9707 131.6797 24.5918 138.1543 33.1914 C -%_136.5059 28.2891 131.7891 23.4355 125.209 20.5723 c -%_119.3633 18.0273 113.3594 17.625 108.7871 19.0625 c -%_108.6816 19.0957 108.5645 19.0547 108.502 18.9629 c -%_108.4395 18.8691 108.4434 18.7461 108.5137 18.6602 c -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_161.418 94.2324 m -%_156.6113 83.7461 156.9531 75.5469 160.8242 65.1777 c -%_160.8691 65.0605 160.9902 64.9922 161.1133 65.0176 c -%_161.2363 65.043 161.3223 65.1543 161.3164 65.2773 c -%_160.6953 77.9004 164.1426 86.9316 171.6152 93.0859 C -%_163.3652 83.2324 167.2617 63.5254 180.4385 63.5254 c -%_190.0244 63.5254 197.9531 71.502 199.8926 81.0508 c -%_199.918 81.1719 199.8516 81.293 199.7344 81.3379 c -%_199.6191 81.3828 199.4883 81.3379 199.4258 81.2305 c -%_196.584 76.4688 192.0176 73.3789 186.9697 73.3789 c -%_178.834 73.3789 176.4277 79.8457 176.4277 84.3789 c -%_176.4277 90.5645 181.3545 95.7207 185.1357 95.7207 c -%_188.5732 95.7207 190.1768 92.8984 190.1768 90.7949 c -%_190.1768 86.8965 187.1787 83.6289 183.8018 82.6309 c -%_183.6807 82.5938 183.6045 82.4766 183.6221 82.3516 c -%_183.6396 82.2266 183.7451 82.1328 183.8721 82.1328 c -%_187.9775 82.1074 191.4473 83.9863 193.5 87.7012 C -%_193.7695 84.8262 193.7715 83.0156 192.8594 79.9766 c -%_192.8242 79.8594 192.877 79.7344 192.9844 79.6777 c -%_193.0938 79.623 193.2266 79.6504 193.3008 79.748 c -%_200.6582 89.1406 197.1367 105.3711 191.3223 112.1055 C -%_196.8535 108.123 201.7383 99.4707 201.6621 87.7109 c -%_201.6602 87.5898 201.7461 87.4844 201.8672 87.4609 c -%_201.9863 87.4375 202.1055 87.502 202.1504 87.6152 c -%_206.2598 97.8691 204.0801 116.8633 192.8691 127.4668 C -%_195.7539 127.8652 198.7363 127.8145 201.9941 126.7754 c -%_202.1094 126.7383 202.2344 126.7891 202.293 126.8945 c -%_202.3516 127 202.3281 127.1328 202.2344 127.2109 c -%_198.1426 130.666 192.4199 131.752 186.9697 131.752 C -%_191.666 126.252 190.1064 115.1992 182.6162 115.1992 c -%_177.2656 115.1992 174.8379 123.498 178.9668 127.9805 c -%_179.0449 128.0664 179.0547 128.1934 178.9922 128.291 c -%_178.9277 128.3887 178.8066 128.4297 178.6953 128.3926 c -%_173.916 126.7363 168.75 122.6035 168.75 117.375 c -%_168.75 112.334 173.5625 107.9805 180.5537 108.3242 C -%_171.7324 105.8203 162.5 108.5918 157.6699 114.5781 c -%_157.5957 114.6699 157.4648 114.6992 157.3594 114.6445 c -%_157.252 114.5918 157.1973 114.4707 157.2266 114.3535 c -%_160.0176 103.6387 169.1934 99.1543 180.667 100.6484 C -%_171.3848 96.8906 157.416 100.166 151.2422 107.957 c -%_151.1699 108.0488 151.043 108.0801 150.9355 108.0293 c -%_150.8301 107.9805 150.7715 107.8633 150.7949 107.748 c -%_152.166 101.1328 155.6582 96.1875 161.418 94.2324 C -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_*U -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_U -%_/ArtDictionary : -%_1 /Bool (AIPattern_Is_Main_Copy_of_EditGroup) , -%_1 /Bool (AIPattern_Is_Repeated_Art) , -%_; -%_ -%_9 () XW -%_u -%_*u -%_1 D -%_1 0.771237 0.226078 0.073854 0 0.258824 0.494118 Xa -%_0 1 0 0 0 Xy -%_26.6963 74.9453 m -%_26.7178 75.0645 26.8213 75.1504 26.9424 75.1523 c -%_39.8486 75.2871 51.6963 78.4199 60.9141 86.667 C -%_52.8838 81.1094 37.9717 79.1563 29.3867 83.0488 c -%_29.2764 83.0986 29.2178 83.2188 29.2451 83.3369 c -%_29.2715 83.4551 29.3779 83.5371 29.499 83.5332 c -%_40.1787 83.2441 48.7783 86.54 55.4834 92.498 C -%_48.6143 92.9199 42.9092 97.2383 42.9268 102.3428 c -%_42.9268 102.4619 43.0107 102.5645 43.1279 102.5898 c -%_43.2441 102.6152 43.3623 102.5547 43.4111 102.4463 c -%_44.5322 99.957 48.1592 98.666 51.9941 99.5664 c -%_56.1738 100.5469 58.9941 103.7559 58.2949 106.7314 c -%_57.8232 108.7461 55.8584 110.1348 53.3428 110.5186 c -%_53.2158 110.5371 53.123 110.6484 53.126 110.7764 c -%_53.1299 110.9043 53.2285 111.0098 53.3564 111.0215 c -%_54.4248 111.124 55.5361 111.1279 56.6738 111.0195 c -%_63.1641 110.4023 68.1875 106.4238 68.623 101.8418 C -%_73.3359 102.3887 77.5078 104.998 79.002 108.6152 c -%_79.0469 108.7236 79.1621 108.7871 79.2773 108.7695 c -%_79.3926 108.75 79.4805 108.6553 79.4902 108.5391 c -%_79.8672 103.7871 78.2324 100.7002 74.5195 97.6846 C -%_79.9043 99.7441 85.9648 99.8496 91.7754 97.1465 c -%_91.8809 97.0977 91.9395 96.9824 91.918 96.8672 c -%_91.8945 96.752 91.7949 96.668 91.6777 96.6641 c -%_86.7988 96.4736 83.2617 94.9082 79.9473 91.5918 C -%_98.2012 96.7256 113.0332 85.3906 107.9004 68.5391 c -%_107.8652 68.4238 107.7539 68.3486 107.6328 68.3613 c -%_107.5117 68.373 107.416 68.4688 107.4063 68.5898 c -%_106.4883 78.3037 99.7031 84.7051 89.5449 85.666 C -%_94.9316 83.6055 100.5449 78.6895 101.1016 70.1318 c -%_101.1094 70.0098 101.0293 69.8984 100.9102 69.8691 c -%_100.791 69.8398 100.668 69.8984 100.6172 70.0098 c -%_97.8184 76.1641 92.3203 79.2754 86.457 79.8223 C -%_92.791 77.2422 96.8535 71.2207 98.0273 63.4023 c -%_98.0469 63.2793 97.9727 63.1602 97.8535 63.123 c -%_97.7363 63.084 97.6074 63.1387 97.5508 63.248 c -%_93.6855 70.8311 85.3945 76.042 75.1035 72.0605 c -%_64.4863 67.9512 59.8291 55.6738 58.7998 47.0195 c -%_58.7852 46.8984 58.6846 46.8047 58.5615 46.7969 c -%_58.4395 46.7891 58.3291 46.8711 58.3008 46.9922 c -%_54.5811 62.6797 61.8838 78.9414 74.9375 85.832 C -%_67.8418 83.8291 61.498 79.5723 57.9102 72.4775 C -%_49.6162 71.459 43.9063 68.6152 41.0527 63.2383 c -%_40.9961 63.1309 40.8721 63.0781 40.7568 63.1133 c -%_40.6416 63.1465 40.5654 63.2578 40.5752 63.3789 c -%_40.7578 65.4883 41.5166 69.709 44.6494 71.6494 C -%_37.6846 71.6387 32.1436 72.543 26.8506 74.6621 c -%_26.7393 74.708 26.6738 74.8262 26.6963 74.9453 c -%_f -%_0 D -%_56.1826 21.4746 m -%_56.084 21.541 55.9541 21.5293 55.8672 21.4492 c -%_55.7813 21.3672 55.7627 21.2383 55.8213 21.1367 c -%_57.4414 18.3398 55.9619 14.3223 52.7705 14.3223 c -%_47.0498 14.3223 44.2998 25.0918 45.1748 34.916 C -%_47.3379 29.1602 49.208 26.8613 52.5225 24.1211 c -%_52.6162 24.043 52.751 24.043 52.8447 24.1191 c -%_52.9385 24.1973 52.9658 24.3281 52.9082 24.4355 c -%_48.0518 33.5156 47.0107 40.502 47.0107 48.5215 C -%_48.4736 42.5625 50.2061 39.1992 55.1377 34.1406 c -%_55.2236 34.0527 55.3604 34.0391 55.4629 34.1074 c -%_55.5645 34.1777 55.6016 34.3105 55.5498 34.4238 c -%_50.252 46.0137 50.6563 58.8711 54.6025 68.6875 c -%_54.6416 68.7852 54.6172 68.8965 54.54 68.9688 c -%_54.4629 69.0391 54.3506 69.0566 54.2549 69.0098 c -%_49.0498 66.459 45.9912 64.7832 41.5029 58.6211 C -%_42.8604 51.2227 41.7314 47.5723 38.3311 41.4258 C -%_42.2686 51.3438 40.1729 65.3203 30.1436 71.0176 c -%_30.0342 71.0791 29.8955 71.0518 29.8193 70.9531 c -%_29.7412 70.8535 29.748 70.7119 29.835 70.6211 c -%_33.6162 66.666 36.3662 59.9863 33.9912 52.6934 C -%_35.5205 63.082 26.3955 71.8086 16.2119 71.8086 c -%_6.6123 71.8086 0.061523 64.2988 0.602539 56.8672 c -%_1.13965 49.502 6.0459 45.8984 10.2744 44.3691 c -%_10.3857 44.3301 10.5107 44.3711 10.5742 44.4707 c -%_10.6377 44.5723 10.624 44.7012 10.541 44.7871 c -%_4.93066 50.4785 4.16309 61.2793 14.124 64.5469 C -%_8.26465 59.4902 10.4346 47.7168 19.8135 46.8223 c -%_19.9307 46.8105 20.04 46.8809 20.0781 46.9922 c -%_20.1162 47.1035 20.0732 47.2266 19.9746 47.2891 c -%_17.9658 48.5664 16.2959 51.0605 16.2959 53.8633 c -%_16.2959 58.5371 19.7178 60.373 21.9717 60.373 c -%_25.3936 60.373 28.2314 57.1172 28.2314 52.1934 c -%_28.2314 46.3496 22.9717 41.5098 16.2119 40.7578 c -%_9.58594 40.0234 3.42969 42.9121 0.461914 47.2168 c -%_0.392578 47.3184 0.260742 47.3555 0.148438 47.3047 c -%_0.036133 47.2539 -0.022461 47.1289 0.007813 47.0098 c -%_3.02637 35.3066 16.8037 30.1328 26.8955 37.5039 C -%_20.2822 30.002 9.88965 29.8984 1.17383 37.5898 c -%_1.08301 37.6699 0.948242 37.6738 0.851563 37.5996 c -%_0.754883 37.5273 0.724609 37.3945 0.77832 37.2871 c -%_3.44531 31.8789 10.0313 25.4668 19.3838 26.4023 c -%_27.9404 27.2578 32.9053 35.416 33.9072 42.0938 C -%_34.4639 33.5723 32.5137 27.5566 25.1533 21.9473 c -%_25.0566 21.873 25.0264 21.7402 25.0811 21.6309 c -%_25.1357 21.5234 25.2607 21.4688 25.3779 21.502 c -%_32.1631 23.4629 37.6084 26.9277 40.4268 34.0469 C -%_40.4268 27.8848 38.2881 21.6738 32.9014 17.5352 c -%_32.8037 17.4609 32.7744 17.3301 32.8291 17.2207 c -%_32.8838 17.1113 33.0078 17.0566 33.125 17.0898 c -%_36.5781 18.0742 39.2959 19.5781 41.2627 22.2754 C -%_42.5732 11.1758 47.7842 4.58398 53.7881 4.58398 c -%_57.9131 4.58398 60.9932 7.61719 60.9932 12.4551 c -%_60.9932 15.2852 59.5049 19.2578 56.1826 21.4746 c -%_f -%_155.4102 113.0938 m -%_152.248 116.998 145.8711 118.4863 138.9785 117.082 C -%_139.4883 121.3828 138.6445 125.873 137.3672 128.5664 c -%_137.3145 128.6758 137.1934 128.7334 137.0762 128.7051 c -%_136.959 128.6758 136.8789 128.5684 136.8828 128.4473 c -%_137.2578 119.6807 132.2598 112.6035 123.4336 109.5371 C -%_130.3398 114.293 132.3594 123.7305 129.0723 128.6035 c -%_129.0039 128.7021 128.877 128.7412 128.7656 128.6953 c -%_128.6543 128.6504 128.5898 128.5332 128.6113 128.416 c -%_128.9844 126.3555 128.0059 123.7314 125.8984 121.6895 c -%_122.9922 118.875 119.0488 118.2363 117.0879 120.2598 c -%_115.127 122.2852 115.8906 126.207 118.7949 129.0215 c -%_119.8555 130.0488 121.0547 130.7832 122.2441 131.2061 c -%_122.3574 131.2461 122.4258 131.3594 122.4102 131.4775 c -%_122.3965 131.5967 122.3008 131.6885 122.1816 131.6982 c -%_115.793 132.2529 111.4121 128.4463 108.666 123.8203 c -%_105.8711 119.1152 101.0957 115.4102 95.4551 116.1504 c -%_95.3359 116.166 95.2227 116.0957 95.1816 115.9824 c -%_95.1426 115.8691 95.1875 115.7422 95.291 115.6807 c -%_98.0879 113.9961 101.1621 113.2969 105.1543 114.6289 C -%_99.3594 109.7197 91.1074 106.8867 83.3145 109.4014 c -%_83.2051 109.4375 83.0859 109.3945 83.0234 109.2979 c -%_82.9609 109.2012 82.9727 109.0752 83.0488 108.9902 c -%_88.957 102.4258 100.7383 102.2949 108.1582 107.6172 C -%_105.1211 103.3008 101.0898 100.1328 93.8652 99.1387 c -%_93.75 99.123 93.6602 99.0313 93.6465 98.916 c -%_93.6348 98.7998 93.7012 98.6904 93.8105 98.6504 c -%_102.1016 95.5723 110.4102 98.6953 117.2559 106.8652 C -%_114.2637 100.4883 109.3496 95.3809 102.4883 92.8535 c -%_102.373 92.8115 102.3047 92.6934 102.3262 92.5742 c -%_102.3457 92.4531 102.4492 92.3643 102.5703 92.3613 c -%_106.5137 92.2803 110.0566 93.2188 114.8359 95.9316 C -%_111.3281 90.2422 112.0957 80.293 117.2051 73.6738 c -%_117.2754 73.582 117.4004 73.5498 117.5078 73.5957 c -%_117.6133 73.6426 117.6758 73.7549 117.6563 73.8691 c -%_116.4766 81.0703 118.9551 89.1992 123.2656 93.5117 C -%_121.1133 85.8799 123.2598 78.9355 129.1621 73.8672 c -%_129.2324 73.8066 129.332 73.79 129.418 73.8232 c -%_129.5059 73.8564 129.5664 73.9355 129.5801 74.0273 c -%_130.8145 83.4453 141.3496 93.002 150.1816 93.8027 c -%_150.3066 93.8135 150.4043 93.9141 150.4121 94.0381 c -%_150.4199 94.1621 150.3379 94.2754 150.2148 94.3027 c -%_145.9355 95.2715 141.5234 94.793 137.8262 93.2715 C -%_140.4863 96.2051 143.7656 98.3828 147.3809 99.5176 c -%_147.498 99.5537 147.5703 99.668 147.5566 99.7891 c -%_147.543 99.9102 147.4434 100.0039 147.3223 100.0127 c -%_142.8125 100.3242 138.3984 99.0068 134.5918 96.4746 C -%_138.9531 103.0957 145.5723 108.0195 154.0195 109.9805 c -%_154.1406 110.0088 154.2227 110.1191 154.2168 110.2432 c -%_154.209 110.3672 154.1133 110.4668 153.9902 110.4805 c -%_142.0723 111.7822 132.2441 107.1621 125.7695 98.5625 C -%_127.418 103.4629 132.1348 108.3184 138.7148 111.1816 c -%_144.5605 113.7266 150.5645 114.1279 155.1367 112.6914 c -%_155.2422 112.6582 155.3594 112.6982 155.4219 112.791 c -%_155.4844 112.8828 155.4805 113.0059 155.4102 113.0938 c -%_f -%_102.5059 37.5215 m -%_107.3125 48.0078 106.9707 56.207 103.0996 66.5762 c -%_103.0547 66.6934 102.9336 66.7607 102.8105 66.7363 c -%_102.6875 66.7109 102.6016 66.5996 102.6074 66.4746 c -%_103.2285 53.8535 99.7813 44.8203 92.3086 38.668 C -%_100.5586 48.5195 96.6621 68.2275 83.4863 68.2275 c -%_73.9004 68.2275 65.9697 60.252 64.0303 50.7031 c -%_64.0059 50.582 64.0723 50.459 64.1885 50.416 c -%_64.3037 50.3711 64.4346 50.416 64.4971 50.5215 c -%_67.3398 55.2832 71.9063 58.373 76.9551 58.373 c -%_85.0898 58.373 87.4961 51.9063 87.4961 47.375 c -%_87.4961 41.1875 82.5703 36.0313 78.7891 36.0313 c -%_75.3516 36.0313 73.748 38.8555 73.748 40.959 c -%_73.748 44.8574 76.7461 48.125 80.125 49.123 c -%_80.2441 49.1582 80.3223 49.2773 80.3047 49.4023 c -%_80.2852 49.5273 80.1797 49.6191 80.0547 49.6211 c -%_75.9473 49.6465 72.4766 47.7656 70.4238 44.0527 C -%_70.1543 46.9277 70.1514 48.7383 71.0645 51.7754 c -%_71.0996 51.8926 71.0459 52.0176 70.9385 52.0742 c -%_70.8291 52.1309 70.6963 52.1016 70.6221 52.0059 c -%_63.2656 42.6133 66.7861 26.3809 72.6016 19.6484 C -%_67.0693 23.6309 62.1846 32.2813 62.2617 44.041 c -%_62.2627 44.1641 62.1768 44.2676 62.0566 44.291 c -%_61.9365 44.3164 61.8174 44.25 61.7725 44.1367 c -%_57.6641 33.8848 59.8438 14.8887 71.0537 4.28516 C -%_68.1699 3.88867 65.1865 3.93945 61.9287 4.97852 c -%_61.8135 5.01367 61.6885 4.96484 61.6299 4.85938 c -%_61.5713 4.75195 61.5947 4.61914 61.6885 4.54102 c -%_65.7803 1.08594 71.5029 0 76.9551 0 C -%_72.2578 5.5 73.8184 16.5547 81.3105 16.5547 c -%_86.6582 16.5547 89.0859 8.25586 84.957 3.77344 c -%_84.8789 3.6875 84.8691 3.55859 84.9316 3.46289 c -%_84.9961 3.36523 85.1172 3.32227 85.2285 3.36133 c -%_90.0078 5.01563 95.1738 9.15039 95.1738 14.377 c -%_95.1738 19.4199 90.3613 23.7715 83.373 23.4277 C -%_92.1914 25.9336 101.4238 23.1602 106.2539 17.1758 c -%_106.3281 17.082 106.459 17.0547 106.5645 17.1074 c -%_106.6719 17.1621 106.7266 17.2832 106.6973 17.3984 c -%_103.9063 28.1152 94.7305 32.5977 83.2578 31.1055 C -%_92.5391 34.8613 106.5078 31.5859 112.6816 23.7949 c -%_112.7539 23.7031 112.8809 23.6738 112.9883 23.7227 c -%_113.0938 23.7734 113.1523 23.8906 113.1289 24.0039 c -%_111.7578 30.6191 108.2656 35.5664 102.5059 37.5215 C -%_f -%_*U -%_*u -%_1 D -%_0.41001 0 0.011078 0 0.615686 0.862745 0.976471 Xa -%_0 0.4 0 0 0 Xy -%_128.8887 56.8086 m -%_128.8672 56.6895 128.7637 56.6016 128.6426 56.6016 c -%_115.7363 56.4648 103.8887 53.334 94.6719 45.0859 C -%_102.7012 50.6445 117.6133 52.5957 126.1992 48.7051 c -%_126.3086 48.6543 126.3672 48.5332 126.3398 48.416 c -%_126.3145 48.2988 126.207 48.2168 126.0859 48.2188 c -%_115.4063 48.5098 106.8066 45.2129 100.1016 39.2559 C -%_106.9707 38.832 112.6758 34.5156 112.6582 29.4102 c -%_112.6582 29.291 112.5742 29.1875 112.457 29.1621 c -%_112.3418 29.1387 112.2227 29.1973 112.1738 29.3066 c -%_111.0527 31.7949 107.4258 33.0879 103.5918 32.1875 c -%_99.4121 31.2051 96.5918 27.998 97.291 25.0215 c -%_97.7617 23.0078 99.7266 21.6191 102.2422 21.2344 c -%_102.3691 21.2148 102.4629 21.1055 102.459 20.9766 c -%_102.4551 20.8496 102.3574 20.7441 102.2285 20.7305 c -%_101.1602 20.6289 100.0488 20.625 98.9121 20.7344 c -%_92.4219 21.3516 87.3984 25.3281 86.9629 29.9121 C -%_82.25 29.3652 78.0781 26.7539 76.584 23.1387 c -%_76.5391 23.0293 76.4258 22.9668 76.3086 22.9844 c -%_76.1934 23.002 76.1055 23.0977 76.0957 23.2148 c -%_75.7188 27.9648 77.3535 31.0527 81.0664 34.0684 C -%_75.6816 32.0098 69.6201 31.9043 63.8096 34.6055 c -%_63.7041 34.6563 63.6455 34.7715 63.667 34.8867 c -%_63.6904 35.002 63.79 35.0859 63.9072 35.0898 c -%_68.7861 35.2793 72.3242 36.8457 75.6406 40.1621 C -%_57.3838 35.0273 42.5518 46.3633 47.6846 63.2129 c -%_47.7197 63.3301 47.8311 63.4043 47.9521 63.3926 c -%_48.0732 63.3809 48.1689 63.2852 48.1787 63.1641 c -%_49.0967 53.4492 55.8818 47.0469 66.04 46.0879 C -%_60.6533 48.1465 55.04 53.0625 54.4834 61.6211 c -%_54.4756 61.7441 54.5557 61.8535 54.6748 61.8848 c -%_54.7939 61.9141 54.917 61.8535 54.9678 61.7422 c -%_57.7666 55.5879 63.2646 52.4785 69.1279 51.9297 C -%_62.7939 54.5117 58.7314 60.5332 57.5576 68.3516 c -%_57.5381 68.4746 57.6123 68.5918 57.7314 68.6309 c -%_57.8486 68.668 57.9775 68.6152 58.0342 68.5039 c -%_61.8994 60.9219 70.1904 55.7109 80.4824 59.6934 c -%_91.0996 63.8027 95.7559 76.0781 96.7852 84.7324 c -%_96.8008 84.8555 96.9004 84.9492 97.0234 84.957 c -%_97.1465 84.9629 97.2559 84.8809 97.2852 84.7617 c -%_101.0039 69.0723 93.7012 52.8125 80.6484 45.9219 C -%_87.7441 47.9238 94.0879 52.1816 97.6758 59.2754 C -%_105.9688 60.293 111.6797 63.1387 114.5332 68.5156 c -%_114.5898 68.6211 114.7129 68.6738 114.8281 68.6406 c -%_114.9434 68.6055 115.0195 68.4941 115.0098 68.375 c -%_114.8281 66.2656 114.0684 62.0449 110.9355 60.1035 C -%_117.9004 60.1152 123.4414 59.2109 128.7344 57.0898 c -%_128.8457 57.0449 128.9121 56.9277 128.8887 56.8086 c -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_0 D -%_99.4023 110.2773 m -%_99.502 110.2129 99.6309 110.2227 99.7188 110.3047 c -%_99.8047 110.3848 99.8223 110.5137 99.7637 110.6172 c -%_98.1445 113.4141 99.623 117.4297 102.8145 117.4297 c -%_108.5352 117.4297 111.2852 106.6602 110.4102 96.8379 C -%_108.248 102.5918 106.377 104.8926 103.0625 107.6328 c -%_102.9688 107.709 102.834 107.7109 102.7402 107.6328 c -%_102.6465 107.5566 102.6191 107.4238 102.6777 107.3164 c -%_107.5332 98.2383 108.5742 91.252 108.5742 83.2324 C -%_107.1113 89.1895 105.3789 92.5527 100.4473 97.6133 c -%_100.3613 97.7012 100.2246 97.7148 100.123 97.6445 c -%_100.0215 97.5742 99.9844 97.4414 100.0352 97.3301 c -%_105.334 85.7383 104.9297 72.8828 100.9824 63.0664 c -%_100.9434 62.9688 100.9688 62.8574 101.0449 62.7852 c -%_101.123 62.7129 101.2344 62.6973 101.3301 62.7422 c -%_106.5352 65.293 109.5938 66.9688 114.082 73.1328 C -%_112.7246 80.5313 113.8535 84.1797 117.2539 90.3262 C -%_113.3164 80.4102 115.4121 66.4336 125.4414 60.7363 c -%_125.5508 60.6738 125.6895 60.7012 125.7656 60.8008 c -%_125.8438 60.9004 125.8379 61.041 125.75 61.1328 c -%_121.9688 65.0879 119.2188 71.7676 121.5938 79.0586 C -%_120.0645 68.6699 129.1895 59.9453 139.373 59.9453 c -%_148.9727 59.9453 155.5234 67.4531 154.9824 74.8848 c -%_154.4453 82.25 149.5391 85.8555 145.3105 87.3828 c -%_145.1992 87.4238 145.0742 87.3809 145.0117 87.2813 c -%_144.9473 87.1816 144.9609 87.0508 145.0449 86.9668 c -%_150.6543 81.2734 151.4219 70.4746 141.4609 67.207 C -%_147.3203 72.2637 145.1504 84.0352 135.7715 84.9316 c -%_135.6543 84.9414 135.5449 84.8711 135.5078 84.7598 c -%_135.4688 84.6504 135.5117 84.5273 135.6113 84.4648 c -%_137.6191 83.1855 139.2891 80.6934 139.2891 77.8906 c -%_139.2891 73.2168 135.8672 71.3789 133.6133 71.3789 c -%_130.1914 71.3789 127.3535 74.6348 127.3535 79.5605 c -%_127.3535 85.4023 132.6133 90.2441 139.373 90.9941 c -%_146 91.7305 152.1563 88.8398 155.123 84.5352 c -%_155.1934 84.4336 155.3242 84.3984 155.4375 84.4492 c -%_155.5488 84.5 155.6074 84.623 155.5781 84.7422 c -%_152.5586 96.4453 138.7813 101.6191 128.6895 94.25 C -%_135.3027 101.75 145.6953 101.8555 154.4121 94.1641 c -%_154.502 94.084 154.6367 94.0781 154.7344 94.1523 c -%_154.8301 94.2266 154.8613 94.3574 154.8066 94.4668 c -%_152.1406 99.873 145.5547 106.2852 136.2012 105.3516 c -%_127.6445 104.4961 122.6797 96.3359 121.6777 89.6602 C -%_121.1211 98.1816 123.0723 104.1953 130.4316 109.8047 c -%_130.5293 109.8789 130.5586 110.0117 130.5039 110.1211 c -%_130.4492 110.2305 130.3242 110.2852 130.207 110.25 c -%_123.4219 108.291 117.9766 104.8262 115.1582 97.707 C -%_115.1582 103.8672 117.2969 110.0781 122.6836 114.2168 c -%_122.7813 114.291 122.8105 114.4238 122.7559 114.5332 c -%_122.7012 114.6406 122.5781 114.6953 122.4609 114.6621 c -%_119.0078 113.6797 116.2891 112.1738 114.3223 109.4785 C -%_113.0117 120.5781 107.8008 127.168 101.7969 127.168 c -%_97.6719 127.168 94.5918 124.1348 94.5918 119.2988 c -%_94.5918 116.4688 96.0801 112.4961 99.4023 110.2773 c -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_0.174805 18.6602 m -%_3.33691 14.7559 9.71387 13.2676 16.6064 14.6719 C -%_16.0967 10.3691 16.9404 5.88086 18.2178 3.18555 c -%_18.2705 3.07813 18.3916 3.01953 18.5088 3.04883 c -%_18.626 3.07813 18.7061 3.18555 18.7021 3.30664 c -%_18.3271 12.0723 23.3252 19.1484 32.1514 22.2148 C -%_25.2451 17.459 23.2256 8.02148 26.5127 3.15039 c -%_26.5811 3.05078 26.708 3.01172 26.8193 3.05664 c -%_26.9307 3.10156 26.9951 3.21875 26.9736 3.33789 c -%_26.6006 5.39844 27.5791 8.02148 29.6865 10.0625 c -%_32.5928 12.877 36.5361 13.5156 38.4971 11.4922 c -%_40.458 9.4668 39.6943 5.54492 36.79 2.73242 c -%_35.7295 1.70508 34.5303 0.96875 33.3408 0.546875 c -%_33.2275 0.505859 33.1592 0.392578 33.1748 0.275391 c -%_33.1885 0.15625 33.2842 0.064453 33.4033 0.054688 c -%_39.792 -0.5 44.1729 3.30664 46.9189 7.93164 c -%_49.7139 12.6367 54.4893 16.3438 60.1299 15.6035 c -%_60.249 15.5879 60.3623 15.6582 60.4033 15.7715 c -%_60.4424 15.8848 60.3975 16.0098 60.2939 16.0723 c -%_57.4971 17.7559 54.4229 18.4551 50.4307 17.125 C -%_56.2256 22.0332 64.4775 24.8652 72.2715 22.3516 c -%_72.3809 22.3164 72.5 22.3594 72.5625 22.4551 c -%_72.625 22.5508 72.6152 22.6777 72.5371 22.7637 c -%_66.6279 29.3281 54.8467 29.459 47.4268 24.1348 C -%_50.4639 28.4512 54.4951 31.6211 61.7197 32.6133 c -%_61.835 32.6289 61.9248 32.7227 61.9385 32.8379 c -%_61.9502 32.9531 61.8838 33.0625 61.7744 33.1035 c -%_53.4834 36.1797 45.1748 33.0586 38.3291 24.8867 C -%_41.3213 31.2656 46.2354 36.373 53.0967 38.9004 c -%_53.2119 38.9414 53.2803 39.0586 53.2588 39.1797 c -%_53.2393 39.3008 53.1357 39.3887 53.0146 39.3906 c -%_49.0713 39.4727 45.5283 38.5332 40.749 35.8203 C -%_44.2568 41.5117 43.4893 51.459 38.3799 58.0801 c -%_38.3096 58.1719 38.1846 58.2031 38.0771 58.1582 c -%_37.9717 58.1113 37.9092 57.998 37.9287 57.8828 c -%_39.1084 50.6836 36.6299 42.5547 32.3193 38.2422 C -%_34.4717 45.873 32.3252 52.8184 26.4229 57.8848 c -%_26.3525 57.9453 26.2529 57.9629 26.167 57.9297 c -%_26.0791 57.8965 26.0186 57.8184 26.0049 57.7266 c -%_24.7705 48.3086 14.2354 38.752 5.40332 37.9512 c -%_5.27832 37.9395 5.18066 37.8398 5.17285 37.7148 c -%_5.16504 37.5898 5.24707 37.4785 5.37012 37.4512 c -%_9.64941 36.4824 14.0615 36.9609 17.7588 38.4805 C -%_15.0986 35.5488 11.8193 33.3711 8.2041 32.2363 c -%_8.08691 32.1992 8.01465 32.0859 8.02832 31.9648 c -%_8.04199 31.8438 8.1416 31.748 8.2627 31.7402 c -%_12.7725 31.4297 17.1865 32.7461 20.9932 35.2793 C -%_16.6318 28.6582 10.0127 23.7344 1.56543 21.7715 c -%_1.44434 21.7441 1.3623 21.6328 1.36816 21.5098 c -%_1.37598 21.3867 1.47168 21.2871 1.59473 21.2734 c -%_13.5127 19.9707 23.3408 24.5918 29.8154 33.1914 C -%_28.167 28.2891 23.4502 23.4355 16.8701 20.5723 c -%_11.0244 18.0273 5.02051 17.625 0.448242 19.0625 c -%_0.342773 19.0957 0.225586 19.0547 0.163086 18.9629 c -%_0.100586 18.8691 0.104492 18.7461 0.174805 18.6602 c -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_53.0791 94.2324 m -%_48.2725 83.7461 48.6143 75.5469 52.4854 65.1777 c -%_52.5303 65.0605 52.6514 64.9922 52.7744 65.0176 c -%_52.8975 65.043 52.9834 65.1543 52.9775 65.2773 c -%_52.3564 77.9004 55.8037 86.9316 63.2764 93.0859 C -%_55.0264 83.2324 58.9229 63.5254 72.0996 63.5254 c -%_81.6855 63.5254 89.6152 71.502 91.5547 81.0508 c -%_91.5801 81.1719 91.5137 81.293 91.3965 81.3379 c -%_91.2813 81.3828 91.1504 81.3379 91.0879 81.2305 c -%_88.2461 76.4688 83.6797 73.3789 78.6309 73.3789 c -%_70.4951 73.3789 68.0889 79.8457 68.0889 84.3789 c -%_68.0889 90.5645 73.0156 95.7207 76.7969 95.7207 c -%_80.2344 95.7207 81.8379 92.8984 81.8379 90.7949 c -%_81.8379 86.8965 78.8398 83.6289 75.4629 82.6309 c -%_75.3418 82.5938 75.2656 82.4766 75.2832 82.3516 c -%_75.3008 82.2266 75.4063 82.1328 75.5332 82.1328 c -%_79.6387 82.1074 83.1094 83.9863 85.1621 87.7012 C -%_85.4316 84.8262 85.4336 83.0156 84.5215 79.9766 c -%_84.4863 79.8594 84.5391 79.7344 84.6465 79.6777 c -%_84.7559 79.623 84.8887 79.6504 84.9629 79.748 c -%_92.3203 89.1406 88.7988 105.3711 82.9844 112.1055 C -%_88.5156 108.123 93.4004 99.4707 93.3242 87.7109 c -%_93.3223 87.5898 93.4082 87.4844 93.5293 87.4609 c -%_93.6484 87.4375 93.7676 87.502 93.8125 87.6152 c -%_97.9219 97.8691 95.7422 116.8633 84.5313 127.4668 C -%_87.416 127.8652 90.3984 127.8145 93.6563 126.7754 c -%_93.7715 126.7383 93.8965 126.7891 93.9551 126.8945 c -%_94.0137 127 93.9902 127.1328 93.8965 127.2109 c -%_89.8047 130.666 84.082 131.752 78.6309 131.752 C -%_83.3281 126.252 81.7676 115.1992 74.2773 115.1992 c -%_68.9268 115.1992 66.499 123.498 70.6279 127.9805 c -%_70.7061 128.0664 70.7158 128.1934 70.6533 128.291 c -%_70.5889 128.3887 70.4678 128.4297 70.3564 128.3926 c -%_65.5771 126.7363 60.4111 122.6035 60.4111 117.375 c -%_60.4111 112.334 65.2236 107.9805 72.2148 108.3242 C -%_63.3936 105.8203 54.1611 108.5918 49.3311 114.5781 c -%_49.2568 114.6699 49.126 114.6992 49 -endstream endobj 62 0 obj <>stream -.0205 114.6445 c -%_48.9131 114.5918 48.8584 114.4707 48.8877 114.3535 c -%_51.6787 103.6387 60.8545 99.1543 72.3281 100.6484 C -%_63.0459 96.8906 49.0771 100.166 42.9033 107.957 c -%_42.8311 108.0488 42.7041 108.0801 42.5967 108.0293 c -%_42.4912 107.9805 42.4326 107.8633 42.4561 107.748 c -%_43.8271 101.1328 47.3193 96.1875 53.0791 94.2324 C -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_*U -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_U -%_/ArtDictionary : -%_1 /Bool (AIPattern_Is_Main_Copy_of_EditGroup) , -%_1 /Bool (AIPattern_Is_Repeated_Art) , -%_; -%_ -%_9 () XW -%_u -%_*u -%_1 D -%_1 0.771237 0.226078 0.073854 0 0.258824 0.494118 Xa -%_0 1 0 0 0 Xy -%_135.0352 184.5869 m -%_135.0566 184.7061 135.1602 184.792 135.2813 184.7939 c -%_148.1875 184.9287 160.0352 188.0615 169.2529 196.3086 C -%_161.2227 190.751 146.3105 188.7979 137.7256 192.6904 c -%_137.6152 192.7402 137.5566 192.8604 137.584 192.9785 c -%_137.6104 193.0967 137.7168 193.1787 137.8379 193.1748 c -%_148.5176 192.8857 157.1172 196.1816 163.8223 202.1396 C -%_156.9531 202.5615 151.248 206.8799 151.2656 211.9844 c -%_151.2656 212.1035 151.3496 212.2061 151.4668 212.2314 c -%_151.583 212.2568 151.7012 212.1963 151.75 212.0879 c -%_152.8711 209.5986 156.498 208.3076 160.333 209.208 c -%_164.5127 210.1885 167.333 213.3975 166.6338 216.373 c -%_166.1621 218.3877 164.1973 219.7764 161.6816 220.1602 c -%_161.5547 220.1787 161.4619 220.29 161.4648 220.418 c -%_161.4688 220.5459 161.5674 220.6514 161.6953 220.6631 c -%_162.7637 220.7656 163.875 220.7695 165.0127 220.6611 c -%_171.5029 220.0439 176.5264 216.0654 176.9619 211.4834 C -%_181.6748 212.0303 185.8467 214.6396 187.3408 218.2568 c -%_187.3857 218.3652 187.501 218.4287 187.6162 218.4111 c -%_187.7314 218.3916 187.8193 218.2969 187.8291 218.1807 c -%_188.2061 213.4287 186.5713 210.3418 182.8584 207.3262 C -%_188.2432 209.3857 194.3027 209.4912 200.1133 206.7881 c -%_200.2188 206.7393 200.2773 206.624 200.2559 206.5088 c -%_200.2324 206.3936 200.1328 206.3096 200.0156 206.3057 c -%_195.1367 206.1152 191.5996 204.5498 188.2861 201.2334 C -%_206.5391 206.3672 221.3711 195.0322 216.2383 178.1807 c -%_216.2031 178.0654 216.0918 177.9902 215.9707 178.0029 c -%_215.8496 178.0146 215.7539 178.1104 215.7441 178.2314 c -%_214.8262 187.9453 208.041 194.3467 197.8828 195.3076 C -%_203.2695 193.2471 208.8828 188.3311 209.4395 179.7734 c -%_209.4473 179.6514 209.3672 179.54 209.248 179.5107 c -%_209.1289 179.4814 209.0059 179.54 208.9551 179.6514 c -%_206.1563 185.8057 200.6582 188.917 194.7949 189.4639 C -%_201.1289 186.8838 205.1914 180.8623 206.3652 173.0439 c -%_206.3848 172.9209 206.3105 172.8018 206.1914 172.7646 c -%_206.0742 172.7256 205.9453 172.7803 205.8887 172.8896 c -%_202.0234 180.4727 193.7324 185.6836 183.4424 181.7021 c -%_172.8252 177.5928 168.168 165.3154 167.1387 156.6611 c -%_167.124 156.54 167.0234 156.4463 166.9004 156.4385 c -%_166.7783 156.4307 166.668 156.5127 166.6396 156.6338 c -%_162.9199 172.3213 170.2227 188.583 183.2764 195.4736 C -%_176.1807 193.4707 169.8369 189.2139 166.249 182.1191 C -%_157.9551 181.1006 152.2451 178.2568 149.3916 172.8799 c -%_149.335 172.7725 149.2109 172.7197 149.0957 172.7549 c -%_148.9805 172.7881 148.9043 172.8994 148.9141 173.0205 c -%_149.0967 175.1299 149.8555 179.3506 152.9883 181.291 C -%_146.0234 181.2803 140.4824 182.1846 135.1895 184.3037 c -%_135.0781 184.3496 135.0127 184.4678 135.0352 184.5869 c -%_f -%_0 D -%_164.5215 131.1162 m -%_164.4229 131.1826 164.293 131.1709 164.2061 131.0908 c -%_164.1201 131.0088 164.1016 130.8799 164.1602 130.7783 c -%_165.7803 127.9814 164.3008 123.9639 161.1094 123.9639 c -%_155.3887 123.9639 152.6387 134.7334 153.5137 144.5576 C -%_155.6768 138.8018 157.5469 136.5029 160.8613 133.7627 c -%_160.9551 133.6846 161.0898 133.6846 161.1836 133.7607 c -%_161.2773 133.8389 161.3047 133.9697 161.2471 134.0771 c -%_156.3906 143.1572 155.3496 150.1436 155.3496 158.1631 C -%_156.8125 152.2041 158.5449 148.8408 163.4766 143.7822 c -%_163.5625 143.6943 163.6992 143.6807 163.8018 143.749 c -%_163.9033 143.8193 163.9404 143.9521 163.8887 144.0654 c -%_158.5908 155.6553 158.9951 168.5127 162.9414 178.3291 c -%_162.9805 178.4268 162.9561 178.5381 162.8789 178.6104 c -%_162.8018 178.6807 162.6895 178.6982 162.5938 178.6514 c -%_157.3887 176.1006 154.3301 174.4248 149.8418 168.2627 C -%_151.1992 160.8643 150.0703 157.2139 146.6699 151.0674 C -%_150.6074 160.9854 148.5117 174.9619 138.4824 180.6592 c -%_138.373 180.7207 138.2344 180.6934 138.1582 180.5947 c -%_138.0801 180.4951 138.0869 180.3535 138.1738 180.2627 c -%_141.9551 176.3076 144.7051 169.6279 142.3301 162.335 C -%_143.8594 172.7236 134.7344 181.4502 124.5508 181.4502 c -%_114.9512 181.4502 108.4004 173.9404 108.9414 166.5088 c -%_109.4785 159.1436 114.3848 155.54 118.6133 154.0107 c -%_118.7246 153.9717 118.8496 154.0127 118.9131 154.1123 c -%_118.9766 154.2139 118.9629 154.3428 118.8799 154.4287 c -%_113.2695 160.1201 112.502 170.9209 122.4629 174.1885 C -%_116.6035 169.1318 118.7734 157.3584 128.1523 156.4639 c -%_128.2695 156.4521 128.3789 156.5225 128.417 156.6338 c -%_128.4551 156.7451 128.4121 156.8682 128.3135 156.9307 c -%_126.3047 158.208 124.6348 160.7021 124.6348 163.5049 c -%_124.6348 168.1787 128.0566 170.0146 130.3105 170.0146 c -%_133.7324 170.0146 136.5703 166.7588 136.5703 161.835 c -%_136.5703 155.9912 131.3105 151.1514 124.5508 150.3994 c -%_117.9248 149.665 111.7686 152.5537 108.8008 156.8584 c -%_108.7314 156.96 108.5996 156.9971 108.4873 156.9463 c -%_108.375 156.8955 108.3164 156.7705 108.3467 156.6514 c -%_111.3652 144.9482 125.1426 139.7744 135.2344 147.1455 C -%_128.6211 139.6436 118.2285 139.54 109.5127 147.2314 c -%_109.4219 147.3115 109.2871 147.3154 109.1904 147.2412 c -%_109.0938 147.1689 109.0635 147.0361 109.1172 146.9287 c -%_111.7842 141.5205 118.3701 135.1084 127.7227 136.0439 c -%_136.2793 136.8994 141.2441 145.0576 142.2461 151.7354 C -%_142.8027 143.2139 140.8525 137.1982 133.4922 131.5889 c -%_133.3955 131.5146 133.3652 131.3818 133.4199 131.2725 c -%_133.4746 131.165 133.5996 131.1104 133.7168 131.1436 c -%_140.502 133.1045 145.9473 136.5693 148.7656 143.6885 C -%_148.7656 137.5264 146.627 131.3154 141.2402 127.1768 c -%_141.1426 127.1025 141.1133 126.9717 141.168 126.8623 c -%_141.2227 126.7529 141.3467 126.6982 141.4639 126.7314 c -%_144.917 127.7158 147.6348 129.2197 149.6016 131.917 C -%_150.9121 120.8174 156.123 114.2256 162.127 114.2256 c -%_166.252 114.2256 169.332 117.2588 169.332 122.0967 c -%_169.332 124.9268 167.8438 128.8994 164.5215 131.1162 c -%_f -%_263.748 222.7354 m -%_260.5859 226.6396 254.209 228.1279 247.3164 226.7236 C -%_247.8262 231.0244 246.9824 235.5146 245.7051 238.208 c -%_245.6523 238.3174 245.5313 238.375 245.4141 238.3467 c -%_245.2969 238.3174 245.2168 238.21 245.2207 238.0889 c -%_245.5957 229.3223 240.5977 222.2451 231.7715 219.1787 C -%_238.6777 223.9346 240.6973 233.3721 237.4102 238.2451 c -%_237.3418 238.3438 237.2148 238.3828 237.1035 238.3369 c -%_236.9922 238.292 236.9277 238.1748 236.9492 238.0576 c -%_237.3223 235.9971 236.3438 233.373 234.2363 231.3311 c -%_231.3301 228.5166 227.3867 227.8779 225.4258 229.9014 c -%_223.4648 231.9268 224.2285 235.8486 227.1328 238.6631 c -%_228.1934 239.6904 229.3926 240.4248 230.582 240.8477 c -%_230.6953 240.8877 230.7637 241.001 230.748 241.1191 c -%_230.7344 241.2383 230.6387 241.3301 230.5195 241.3398 c -%_224.1309 241.8945 219.75 238.0879 217.0039 233.4619 c -%_214.209 228.7568 209.4336 225.0518 203.793 225.792 c -%_203.6738 225.8076 203.5605 225.7373 203.5195 225.624 c -%_203.4805 225.5107 203.5254 225.3838 203.6289 225.3223 c -%_206.4258 223.6377 209.5 222.9385 213.4922 224.2705 C -%_207.6973 219.3613 199.4453 216.5283 191.6523 219.043 c -%_191.543 219.0791 191.4238 219.0361 191.3613 218.9395 c -%_191.2988 218.8428 191.3105 218.7168 191.3867 218.6318 c -%_197.2949 212.0674 209.0762 211.9365 216.4961 217.2588 C -%_213.459 212.9424 209.4277 209.7744 202.2031 208.7803 c -%_202.0879 208.7646 201.998 208.6729 201.9844 208.5576 c -%_201.9727 208.4414 202.0391 208.332 202.1484 208.292 c -%_210.4395 205.2139 218.748 208.3369 225.5938 216.5068 C -%_222.6016 210.1299 217.6875 205.0225 210.8262 202.4951 c -%_210.7109 202.4531 210.6426 202.335 210.6641 202.2158 c -%_210.6836 202.0947 210.7871 202.0059 210.9082 202.0029 c -%_214.8516 201.9219 218.3945 202.8604 223.1738 205.5732 C -%_219.666 199.8838 220.4336 189.9346 225.543 183.3154 c -%_225.6133 183.2236 225.7383 183.1914 225.8457 183.2373 c -%_225.9512 183.2842 226.0137 183.3965 225.9941 183.5107 c -%_224.8145 190.7119 227.293 198.8408 231.6035 203.1533 C -%_229.4512 195.5215 231.5977 188.5771 237.5 183.5088 c -%_237.5703 183.4482 237.6699 183.4316 237.7559 183.4648 c -%_237.8438 183.498 237.9043 183.5771 237.918 183.6689 c -%_239.1523 193.0869 249.6875 202.6436 258.5195 203.4443 c -%_258.6445 203.4551 258.7422 203.5557 258.75 203.6797 c -%_258.7578 203.8037 258.6758 203.917 258.5527 203.9443 c -%_254.2734 204.9131 249.8613 204.4346 246.1641 202.9131 C -%_248.8242 205.8467 252.1035 208.0244 255.7188 209.1592 c -%_255.8359 209.1953 255.9082 209.3096 255.8945 209.4307 c -%_255.8809 209.5518 255.7813 209.6455 255.6602 209.6543 c -%_251.1504 209.9658 246.7363 208.6484 242.9297 206.1162 C -%_247.291 212.7373 253.9102 217.6611 262.3574 219.6221 c -%_262.4785 219.6504 262.5605 219.7607 262.5547 219.8848 c -%_262.5469 220.0088 262.4512 220.1084 262.3281 220.1221 c -%_250.4102 221.4238 240.582 216.8037 234.1074 208.2041 C -%_235.7559 213.1045 240.4727 217.96 247.0527 220.8232 c -%_252.8984 223.3682 258.9023 223.7695 263.4746 222.333 c -%_263.5801 222.2998 263.6973 222.3398 263.7598 222.4326 c -%_263.8223 222.5244 263.8184 222.6475 263.748 222.7354 c -%_f -%_210.8438 147.1631 m -%_215.6504 157.6494 215.3086 165.8486 211.4375 176.2178 c -%_211.3926 176.335 211.2715 176.4023 211.1484 176.3779 c -%_211.0254 176.3525 210.9395 176.2412 210.9453 176.1162 c -%_211.5664 163.4951 208.1191 154.4619 200.6465 148.3096 C -%_208.8965 158.1611 205 177.8691 191.8242 177.8691 c -%_182.2393 177.8691 174.3086 169.8936 172.3691 160.3447 c -%_172.3447 160.2236 172.4111 160.1006 172.5273 160.0576 c -%_172.6426 160.0127 172.7734 160.0576 172.8359 160.1631 c -%_175.6787 164.9248 180.2451 168.0146 185.2939 168.0146 c -%_193.4277 168.0146 195.834 161.5479 195.834 157.0166 c -%_195.834 150.8291 190.9082 145.6729 187.1279 145.6729 c -%_183.6904 145.6729 182.0869 148.4971 182.0869 150.6006 c -%_182.0869 154.499 185.085 157.7666 188.4639 158.7646 c -%_188.583 158.7998 188.6611 158.9189 188.6436 159.0439 c -%_188.624 159.1689 188.5186 159.2607 188.3936 159.2627 c -%_184.2861 159.2881 180.8154 157.4072 178.7627 153.6943 C -%_178.4932 156.5693 178.4902 158.3799 179.4033 161.417 c -%_179.4385 161.5342 179.3848 161.6592 179.2773 161.7158 c -%_179.168 161.7725 179.0352 161.7432 178.9609 161.6475 c -%_171.6045 152.2549 175.125 136.0225 180.9404 129.29 C -%_175.4082 133.2725 170.5234 141.9229 170.6006 153.6826 c -%_170.6016 153.8057 170.5156 153.9092 170.3955 153.9326 c -%_170.2754 153.958 170.1563 153.8916 170.1113 153.7783 c -%_166.0029 143.5264 168.1826 124.5303 179.3926 113.9268 C -%_176.5088 113.5303 173.5254 113.5811 170.2676 114.6201 c -%_170.1523 114.6553 170.0273 114.6064 169.9688 114.501 c -%_169.9102 114.3936 169.9336 114.2607 170.0273 114.1826 c -%_174.1191 110.7275 179.8418 109.6416 185.2939 109.6416 C -%_180.5967 115.1416 182.1572 126.1963 189.6494 126.1963 c -%_194.9961 126.1963 197.4238 117.8975 193.2949 113.415 c -%_193.2168 113.3291 193.207 113.2002 193.2695 113.1045 c -%_193.334 113.0068 193.4551 112.9639 193.5664 113.0029 c -%_198.3457 114.6572 203.5117 118.792 203.5117 124.0186 c -%_203.5117 129.0615 198.6992 133.4131 191.7109 133.0693 C -%_200.5293 135.5752 209.7617 132.8018 214.5918 126.8174 c -%_214.666 126.7236 214.7969 126.6963 214.9023 126.749 c -%_215.0098 126.8037 215.0645 126.9248 215.0352 127.04 c -%_212.2441 137.7568 203.0684 142.2393 191.5957 140.7471 C -%_200.877 144.5029 214.8457 141.2275 221.0195 133.4365 c -%_221.0918 133.3447 221.2188 133.3154 221.3262 133.3643 c -%_221.4316 133.415 221.4902 133.5322 221.4668 133.6455 c -%_220.0957 140.2607 216.6035 145.208 210.8438 147.1631 C -%_f -%_*U -%_*u -%_1 D -%_0.41001 0 0.011078 0 0.615686 0.862745 0.976471 Xa -%_0 0.4 0 0 0 Xy -%_237.2266 166.4502 m -%_237.2051 166.3311 237.1016 166.2432 236.9805 166.2432 c -%_224.0742 166.1064 212.2266 162.9756 203.0098 154.7275 C -%_211.0391 160.2861 225.9512 162.2373 234.5371 158.3467 c -%_234.6465 158.2959 234.7051 158.1748 234.6777 158.0576 c -%_234.6523 157.9404 234.5449 157.8584 234.4238 157.8604 c -%_223.7441 158.1514 215.1445 154.8545 208.4395 148.8975 C -%_215.3086 148.4736 221.0137 144.1572 220.9961 139.0518 c -%_220.9961 138.9326 220.9121 138.8291 220.7949 138.8037 c -%_220.6797 138.7803 220.5605 138.8389 220.5117 138.9482 c -%_219.3906 141.4365 215.7637 142.7295 211.9297 141.8291 c -%_207.75 140.8467 204.9297 137.6396 205.6289 134.6631 c -%_206.0996 132.6494 208.0645 131.2607 210.5801 130.876 c -%_210.707 130.8564 210.8008 130.7471 210.7969 130.6182 c -%_210.793 130.4912 210.6953 130.3857 210.5664 130.3721 c -%_209.498 130.2705 208.3867 130.2666 207.25 130.376 c -%_200.7598 130.9932 195.7363 134.9697 195.3008 139.5537 C -%_190.5889 139.0068 186.417 136.3955 184.9229 132.7803 c -%_184.8779 132.6709 184.7646 132.6084 184.6475 132.626 c -%_184.5322 132.6436 184.4443 132.7393 184.4346 132.8564 c -%_184.0576 137.6064 185.6924 140.6943 189.4053 143.71 C -%_184.0205 141.6514 177.959 141.5459 172.1484 144.2471 c -%_172.043 144.2979 171.9844 144.4131 172.0059 144.5283 c -%_172.0293 144.6436 172.1289 144.7275 172.2461 144.7314 c -%_177.125 144.9209 180.6631 146.4873 183.9795 149.8037 C -%_165.7227 144.6689 150.8906 156.0049 156.0234 172.8545 c -%_156.0586 172.9717 156.1699 173.0459 156.291 173.0342 c -%_156.4121 173.0225 156.5078 172.9268 156.5176 172.8057 c -%_157.4355 163.0908 164.2207 156.6885 174.3789 155.7295 C -%_168.9922 157.7881 163.3789 162.7041 162.8223 171.2627 c -%_162.8145 171.3857 162.8945 171.4951 163.0137 171.5264 c -%_163.1328 171.5557 163.2559 171.4951 163.3066 171.3838 c -%_166.1055 165.2295 171.6035 162.1201 177.4668 161.5713 C -%_171.1328 164.1533 167.0703 170.1748 165.8965 177.9932 c -%_165.877 178.1162 165.9512 178.2334 166.0703 178.2725 c -%_166.1875 178.3096 166.3164 178.2568 166.373 178.1455 c -%_170.2383 170.5635 178.5293 165.3525 188.8213 169.335 c -%_199.4375 173.4443 204.0938 185.7197 205.123 194.374 c -%_205.1387 194.4971 205.2383 194.5908 205.3613 194.5986 c -%_205.4844 194.6045 205.5938 194.5225 205.623 194.4033 c -%_209.3418 178.7139 202.0391 162.4541 188.9873 155.5635 C -%_196.082 157.5654 202.4258 161.8232 206.0137 168.917 C -%_214.3066 169.9346 220.0176 172.7803 222.8711 178.1572 c -%_222.9277 178.2627 223.0508 178.3154 223.166 178.2822 c -%_223.2813 178.2471 223.3574 178.1357 223.3477 178.0166 c -%_223.166 175.9072 222.4063 171.6865 219.2734 169.7451 C -%_226.2383 169.7568 231.7793 168.8525 237.0723 166.7314 c -%_237.1836 166.6865 237.25 166.5693 237.2266 166.4502 c -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_0 D -%_207.7402 219.9189 m -%_207.8398 219.8545 207.9688 219.8643 208.0566 219.9463 c -%_208.1426 220.0264 208.1602 220.1553 208.1016 220.2588 c -%_206.4824 223.0557 207.9609 227.0713 211.1523 227.0713 c -%_216.873 227.0713 219.623 216.3018 218.748 206.4795 C -%_216.5859 212.2334 214.7148 214.5342 211.4004 217.2744 c -%_211.3066 217.3506 211.1719 217.3525 211.0781 217.2744 c -%_210.9844 217.1982 210.957 217.0654 211.0156 216.958 c -%_215.8711 207.8799 216.9121 200.8936 216.9121 192.874 C -%_215.4492 198.8311 213.7168 202.1943 208.7852 207.2549 c -%_208.6992 207.3428 208.5625 207.3564 208.4609 207.2861 c -%_208.3594 207.2158 208.3223 207.083 208.373 206.9717 c -%_213.6719 195.3799 213.2676 182.5244 209.3203 172.708 c -%_209.2813 172.6104 209.3066 172.499 209.3828 172.4268 c -%_209.4609 172.3545 209.5723 172.3389 209.668 172.3838 c -%_214.873 174.9346 217.9316 176.6104 222.4199 182.7744 C -%_221.0625 190.1729 222.1914 193.8213 225.5918 199.9678 C -%_221.6543 190.0518 223.75 176.0752 233.7793 170.3779 c -%_233.8887 170.3154 234.0273 170.3428 234.1035 170.4424 c -%_234.1816 170.542 234.1758 170.6826 234.0879 170.7744 c -%_230.3066 174.7295 227.5566 181.4092 229.9316 188.7002 C -%_228.4023 178.3115 237.5273 169.5869 247.7109 169.5869 c -%_257.3105 169.5869 263.8613 177.0947 263.3203 184.5264 c -%_262.7832 191.8916 257.877 195.4971 253.6484 197.0244 c -%_253.5371 197.0654 253.4121 197.0225 253.3496 196.9229 c -%_253.2852 196.8232 253.2988 196.6924 253.3828 196.6084 c -%_258.9922 190.915 259.7598 180.1162 249.7988 176.8486 C -%_255.6582 181.9053 253.4883 193.6768 244.1094 194.5732 c -%_243.9922 194.583 243.8828 194.5127 243.8457 194.4014 c -%_243.8066 194.292 243.8496 194.1689 243.9492 194.1064 c -%_245.957 192.8271 247.627 190.335 247.627 187.5322 c -%_247.627 182.8584 244.2051 181.0205 241.9512 181.0205 c -%_238.5293 181.0205 235.6914 184.2764 235.6914 189.2021 c -%_235.6914 195.0439 240.9512 199.8857 247.7109 200.6357 c -%_254.3379 201.3721 260.4941 198.4814 263.4609 194.1768 c -%_263.5313 194.0752 263.6621 194.04 263.7754 194.0908 c -%_263.8867 194.1416 263.9453 194.2646 263.916 194.3838 c -%_260.8965 206.0869 247.1191 211.2607 237.0273 203.8916 C -%_243.6406 211.3916 254.0332 211.4971 262.75 203.8057 c -%_262.8398 203.7256 262.9746 203.7197 263.0723 203.7939 c -%_263.168 203.8682 263.1992 203.999 263.1445 204.1084 c -%_260.4785 209.5146 253.8926 215.9268 244.5391 214.9932 c -%_235.9824 214.1377 231.0176 205.9775 230.0156 199.3018 C -%_229.459 207.8232 231.4102 213.8369 238.7695 219.4463 c -%_238.8672 219.5205 238.8965 219.6533 238.8418 219.7627 c -%_238.7871 219.8721 238.6621 219.9268 238.5449 219.8916 c -%_231.7598 217.9326 226.3145 214.4678 223.4961 207.3486 C -%_223.4961 213.5088 225.6348 219.7197 231.0215 223.8584 c -%_231.1191 223.9326 231.1484 224.0654 231.0938 224.1748 c -%_231.0391 224.2822 230.916 224.3369 230.7988 224.3037 c -%_227.3457 223.3213 224.627 221.8154 222.6602 219.1201 C -%_221.3496 230.2197 216.1387 236.8096 210.1348 236.8096 c -%_206.0098 236.8096 202.9297 233.7764 202.9297 228.9404 c -%_202.9297 226.1104 204.418 222.1377 207.7402 219.9189 c -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_108.5137 128.3018 m -%_111.6758 124.3975 118.0527 122.9092 124.9453 124.3135 C -%_124.4355 120.0107 125.2793 115.5225 126.5566 112.8271 c -%_126.6094 112.7197 126.7305 112.6611 126.8477 112.6904 c -%_126.9648 112.7197 127.0449 112.8271 127.041 112.9482 c -%_126.666 121.7139 131.6641 128.79 140.4902 131.8564 C -%_133.584 127.1006 131.5645 117.6631 134.8516 112.792 c -%_134.9199 112.6924 135.0469 112.6533 135.1582 112.6982 c -%_135.2695 112.7432 135.334 112.8604 135.3125 112.9795 c -%_134.9395 115.04 135.918 117.6631 138.0254 119.7041 c -%_140.9316 122.5186 144.875 123.1572 146.8359 121.1338 c -%_148.7969 119.1084 148.0332 115.1865 145.1289 112.374 c -%_144.0684 111.3467 142.8691 110.6104 141.6797 110.1885 c -%_141.5664 110.1475 141.498 110.0342 141.5137 109.917 c -%_141.5273 109.7979 141.623 109.7061 141.7422 109.6963 c -%_148.1309 109.1416 152.5117 112.9482 155.2578 117.5732 c -%_158.0527 122.2783 162.8281 125.9854 168.4688 125.2451 c -%_168.5879 125.2295 168.7012 125.2998 168.7422 125.4131 c -%_168.7813 125.5264 168.7363 125.6514 168.6328 125.7139 c -%_165.8359 127.3975 162.7617 128.0967 158.7695 126.7666 C -%_164.5645 131.6748 172.8164 134.5068 180.6104 131.9932 c -%_180.7197 131.958 180.8389 132.001 180.9014 132.0967 c -%_180.9639 132.1924 180.9541 132.3193 180.876 132.4053 c -%_174.9668 138.9697 163.1855 139.1006 155.7656 133.7764 C -%_158.8027 138.0928 162.834 141.2627 170.0586 142.2549 c -%_170.1738 142.2705 170.2637 142.3643 170.2773 142.4795 c -%_170.2891 142.5947 170.2227 142.7041 170.1133 142.7451 c -%_161.8223 145.8213 153.5137 142.7002 146.668 134.5283 C -%_149.6602 140.9072 154.5742 146.0146 161.4355 148.542 c -%_161.5508 148.583 161.6191 148.7002 161.5977 148.8213 c -%_161.5781 148.9424 161.4746 149.0303 161.3535 149.0322 c -%_157.4102 149.1143 153.8672 148.1748 149.0879 145.4619 C -%_152.5957 151.1533 151.8281 161.1006 146.7188 167.7217 c -%_146.6484 167.8135 146.5234 167.8447 146.416 167.7998 c -%_146.3105 167.7529 146.248 167.6396 146.2676 167.5244 c -%_147.4473 160.3252 144.9688 152.1963 140.6582 147.8838 C -%_142.8105 155.5146 140.6641 162.46 134.7617 167.5264 c -%_134.6914 167.5869 134.5918 167.6045 134.5059 167.5713 c -%_134.418 167.5381 134.3574 167.46 134.3438 167.3682 c -%_133.1094 157.9502 122.5742 148.3936 113.7422 147.5928 c -%_113.6172 147.5811 113.5195 147.4814 113.5117 147.3564 c -%_113.5039 147.2314 113.5859 147.1201 113.709 147.0928 c -%_117.9883 146.124 122.4004 146.6025 126.0977 148.1221 C -%_123.4375 145.1904 120.1582 143.0127 116.543 141.8779 c -%_116.4258 141.8408 116.3535 141.7275 116.3672 141.6064 c -%_116.3809 141.4854 116.4805 141.3896 116.6016 141.3818 c -%_121.1113 141.0713 125.5254 142.3877 129.332 144.9209 C -%_124.9707 138.2998 118.3516 133.376 109.9043 131.4131 c -%_109.7832 131.3857 109.7012 131.2744 109.707 131.1514 c -%_109.7148 131.0283 109.8105 130.9287 109.9336 130.915 c -%_121.8516 129.6123 131.6797 134.2334 138.1543 142.833 C -%_136.5059 137.9307 131.7891 133.0771 125.209 130.2139 c -%_119.3633 127.6689 113.3594 127.2666 108.7871 128.7041 c -%_108.6816 128.7373 108.5645 128.6963 108.502 128.6045 c -%_108.4395 128.5107 108.4434 128.3877 108.5137 128.3018 c -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_161.418 203.874 m -%_156.6113 193.3877 156.9531 185.1885 160.8242 174.8193 c -%_160.8691 174.7021 160.9902 174.6338 161.1133 174.6592 c -%_161.2363 174.6846 161.3223 174.7959 161.3164 174.9189 c -%_160.6953 187.542 164.1426 196.5732 171.6152 202.7275 C -%_163.3652 192.874 167.2617 173.167 180.4385 173.167 c -%_190.0244 173.167 197.9531 181.1436 199.8926 190.6924 c -%_199.918 190.8135 199.8516 190.9346 199.7344 190.9795 c -%_199.6191 191.0244 199.4883 190.9795 199.4258 190.8721 c -%_196.584 186.1104 192.0176 183.0205 186.9697 183.0205 c -%_178.834 183.0205 176.4277 189.4873 176.4277 194.0205 c -%_176.4277 200.2061 181.3545 205.3623 185.1357 205.3623 c -%_188.5732 205.3623 190.1768 202.54 190.1768 200.4365 c -%_190.1768 196.5381 187.1787 193.2705 183.8018 192.2725 c -%_183.6807 192.2354 183.6045 192.1182 183.6221 191.9932 c -%_183.6396 191.8682 183.7451 191.7744 183.8721 191.7744 c -%_187.9775 191.749 191.4473 193.6279 193.5 197.3428 C -%_193.7695 194.4678 193.7715 192.6572 192.8594 189.6182 c -%_192.8242 189.501 192.877 189.376 192.9844 189.3193 c -%_193.0938 189.2646 193.2266 189.292 193.3008 189.3896 c -%_200.6582 198.7822 197.1367 215.0127 191.3223 221.7471 C -%_196.8535 217.7646 201.7383 209.1123 201.6621 197.3525 c -%_201.6602 197.2314 201.7461 197.126 201.8672 197.1025 c -%_201.9863 197.0791 202.1055 197.1436 202.1504 197.2568 c -%_206.2598 207.5107 204.0801 226.5049 192.8691 237.1084 C -%_195.7539 237.5068 198.7363 237.4561 201.9941 236.417 c -%_202.1094 236.3799 202.2344 236.4307 202.293 236.5361 c -%_202.3516 236.6416 202.3281 236.7744 202.2344 236.8525 c -%_198.1426 240.3076 192.4199 241.3936 186.9697 241.3936 C -%_191.666 235.8936 190.1064 224.8408 182.6162 224.8408 c -%_177.2656 224.8408 174.8379 233.1396 178.9668 237.6221 c -%_179.0449 237.708 179.0547 237.835 178.9922 237.9326 c -%_178.9277 238.0303 178.8066 238.0713 178.6953 238.0342 c -%_173.916 236.3779 168.75 232.2451 168.75 227.0166 c -%_168.75 221.9756 173.5625 217.6221 180.5537 217.9658 C -%_171.7324 215.4619 162.5 218.2334 157.6699 224.2197 c -%_157.5957 224.3115 157.4648 224.3408 157.3594 224.2861 c -%_157.252 224.2334 157.1973 224.1123 157.2266 223.9951 c -%_160.0176 213.2803 169.1934 208.7959 180.667 210.29 C -%_171.3848 206.5322 157.416 209.8076 151.2422 217.5986 c -%_151.1699 217.6904 151.043 217.7217 150.9355 217.6709 c -%_150.8301 217.6221 150.7715 217.5049 150.7949 217.3896 c -%_152.166 210.7744 155.6582 205.8291 161.418 203.874 C -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_*U -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_U -%_/ArtDictionary : -%_1 /Bool (AIPattern_Is_Main_Copy_of_EditGroup) , -%_1 /Bool (AIPattern_Is_Repeated_Art) , -%_; -%_ -%_9 () XW -%_u -%_*u -%_1 D -%_1 0.771237 0.226078 0.073854 0 0.258824 0.494118 Xa -%_0 1 0 0 0 Xy -%_26.6963 184.5869 m -%_26.7178 184.7061 26.8213 184.792 26.9424 184.7939 c -%_39.8486 184.9287 51.6963 188.0615 60.9141 196.3086 C -%_52.8838 190.751 37.9717 188.7979 29.3867 192.6904 c -%_29.2764 192.7402 29.2178 192.8604 29.2451 192.9785 c -%_29.2715 193.0967 29.3779 193.1787 29.499 193.1748 c -%_40.1787 192.8857 48.7783 196.1816 55.4834 202.1396 C -%_48.6143 202.5615 42.9092 206.8799 42.9268 211.9844 c -%_42.9268 212.1035 43.0107 212.2061 43.1279 212.2314 c -%_43.2441 212.2568 43.3623 212.1963 43.4111 212.0879 c -%_44.5322 209.5986 48.1592 208.3076 51.9941 209.208 c -%_56.1738 210.1885 58.9941 213.3975 58.2949 216.373 c -%_57.8232 218.3877 55.8584 219.7764 53.3428 220.1602 c -%_53.2158 220.1787 53.123 220.29 53.126 220.418 c -%_53.1299 220.5459 53.2285 220.6514 53.3564 220.6631 c -%_54.4248 220.7656 55.5361 220.7695 56.6738 220.6611 c -%_63.1641 220.0439 68.1875 216.0654 68.623 211.4834 C -%_73.3359 212.0303 77.5078 214.6396 79.002 218.2568 c -%_79.0469 218.3652 79.1621 218.4287 79.2773 218.4111 c -%_79.3926 218.3916 79.4805 218.2969 79.4902 218.1807 c -%_79.8672 213.4287 78.2324 210.3418 74.5195 207.3262 C -%_79.9043 209.3857 85.9648 209.4912 91.7754 206.7881 c -%_91.8809 206.7393 91.9395 206.624 91.918 206.5088 c -%_91.8945 206.3936 91.7949 206.3096 91.6777 206.3057 c -%_86.7988 206.1152 83.2617 204.5498 79.9473 201.2334 C -%_98.2012 206.3672 113.0332 195.0322 107.9004 178.1807 c -%_107.8652 178.0654 107.7539 177.9902 107.6328 178.0029 c -%_107.5117 178.0146 107.416 178.1104 107.4063 178.2314 c -%_106.4883 187.9453 99.7031 194.3467 89.5449 195.3076 C -%_94.9316 193.2471 100.5449 188.3311 101.1016 179.7734 c -%_101.1094 179.6514 101.0293 179.54 100.9102 179.5107 c -%_100.791 179.4814 100.668 179.54 100.6172 179.6514 c -%_97.8184 185.8057 92.3203 188.917 86.457 189.4639 C -%_92.791 186.8838 96.8535 180.8623 98.0273 173.0439 c -%_98.0469 172.9209 97.9727 172.8018 97.8535 172.7646 c -%_97.7363 172.7256 97.6074 172.7803 97.5508 172.8896 c -%_93.6855 180.4727 85.3945 185.6836 75.1035 181.7021 c -%_64.4863 177.5928 59.8291 165.3154 58.7998 156.6611 c -%_58.7852 156.54 58.6846 156.4463 58.5615 156.4385 c -%_58.4395 156.4307 58.3291 156.5127 58.3008 156.6338 c -%_54.5811 172.3213 61.8838 188.583 74.9375 195.4736 C -%_67.8418 193.4707 61.498 189.2139 57.9102 182.1191 C -%_49.6162 181.1006 43.9063 178.2568 41.0527 172.8799 c -%_40.9961 172.7725 40.8721 172.7197 40.7568 172.7549 c -%_40.6416 172.7881 40.5654 172.8994 40.5752 173.0205 c -%_40.7578 175.1299 41.5166 179.3506 44.6494 181.291 C -%_37.6846 181.2803 32.1436 182.1846 26.8506 184.3037 c -%_26.7393 184.3496 26.6738 184.4678 26.6963 184.5869 c -%_f -%_0 D -%_56.1826 131.1162 m -%_56.084 131.1826 55.9541 131.1709 55.8672 131.0908 c -%_55.7813 131.0088 55.7627 130.8799 55.8213 130.7783 c -%_57.4414 127.9814 55.9619 123.9639 52.7705 123.9639 c -%_47.0498 123.9639 44.2998 134.7334 45.1748 144.5576 C -%_47.3379 138.8018 49.208 136.5029 52.5225 133.7627 c -%_52.6162 133.6846 52.751 133.6846 52.8447 133.7607 c -%_52.9385 133.8389 52.9658 133.9697 52.9082 134.0771 c -%_48.0518 143.1572 47.0107 150.1436 47.0107 158.1631 C -%_48.4736 152.2041 50.2061 148.8408 55.1377 143.7822 c -%_55.2236 143.6943 55.3604 143.6807 55.4629 143.749 c -%_55.5645 143.8193 55.6016 143.9521 55.5498 144.0654 c -%_50.252 155.6553 50.6563 168.5127 54.6025 178.3291 c -%_54.6416 178.4268 54.6172 178.5381 54.54 178.6104 c -%_54.4629 178.6807 54.3506 178.6982 54.2549 178.6514 c -%_49.0498 176.1006 45.9912 174.4248 41.5029 168.2627 C -%_42.8604 160.8643 41.7314 157.2139 38.3311 151.0674 C -%_42.2686 160.9854 40.1729 174.9619 30.1436 180.6592 c -%_30.0342 180.7207 29.8955 180.6934 29.8193 180.5947 c -%_29.7412 180.4951 29.748 180.3535 29.835 180.2627 c -%_33.6162 176.3076 36.3662 169.6279 33.9912 162.335 C -%_35.5205 172.7236 26.3955 181.4502 16.2119 181.4502 c -%_6.6123 181.4502 0.061523 173.9404 0.602539 166.5088 c -%_1.13965 159.1436 6.0459 155.54 10.2744 154.0107 c -%_10.3857 153.9717 10.5107 154.0127 10.5742 154.1123 c -%_10.6377 154.2139 10.624 154.3428 10.541 154.4287 c -%_4.93066 160.1201 4.16309 170.9209 14.124 174.1885 C -%_8.26465 169.1318 10.4346 157.3584 19.8135 156.4639 c -%_19.9307 156.4521 20.04 156.5225 20.0781 156.6338 c -%_20.1162 156.7451 20.0732 156.8682 19.9746 156.9307 c -%_17.9658 158.208 16.2959 160.7021 16.2959 163.5049 c -%_16.2959 168.1787 19.7178 170.0146 21.9717 170.0146 c -%_25.3936 170.0146 28.2314 166.7588 28.2314 161.835 c -%_28.2314 155.9912 22.9717 151.1514 16.2119 150.3994 c -%_9.58594 149.665 3.42969 152.5537 0.461914 156.8584 c -%_0.392578 156.96 0.260742 156.9971 0.148438 156.9463 c -%_0.036133 156.8955 -0.022461 156.7705 0.007813 156.6514 c -%_3.02637 144.9482 16.8037 139.7744 26.8955 147.1455 C -%_20.2822 139.6436 9.88965 139.54 1.17383 147.2314 c -%_1.08301 147.3115 0.948242 147.3154 0.851563 147.2412 c -%_0.754883 147.1689 0.724609 147.0361 0.77832 146.9287 c -%_3.44531 141.5205 10.0313 135.1084 19.3838 136.0439 c -%_27.9404 136.8994 32.9053 145.0576 33.9072 151.7354 C -%_34.4639 143.2139 32.5137 137.1982 25.1533 131.5889 c -%_25.0566 131.5146 25.0264 131.3818 25.0811 131.2725 c -%_25.1357 131.165 25.2607 131.1104 25.3779 131.1436 c -%_32.1631 133.1045 37.6084 136.5693 40.4268 143.6885 C -%_40.4268 137.5264 38.2881 131.3154 32.9014 127.1768 c -%_32.8037 127.1025 32.7744 126.9717 32.8291 126.8623 c -%_32.8838 126.7529 33.0078 126.6982 33.125 126.7314 c -%_36.5781 127.7158 39.2959 129.2197 41.2627 131.917 C -%_42.5732 120.8174 47.7842 114.2256 53.7881 114.2256 c -%_57.9131 114.2256 60.9932 117.2588 60.9932 122.0967 c -%_60.9932 124.9268 59.5049 128.8994 56.1826 131.1162 c -%_f -%_155.4102 222.7354 m -%_152.248 226.6396 145.8711 228.1279 138.9785 226.7236 C -%_139.4883 231.0244 138.6445 235.5146 137.3672 238.208 c -%_137.3145 238.3174 137.1934 238.375 137.0762 238.3467 c -%_136.959 238.3174 136.8789 238.21 136.8828 238.0889 c -%_137.2578 229.3223 132.2598 222.2451 123.4336 219.1787 C -%_130.3398 223.9346 132.3594 233.3721 129.0723 238.2451 c -%_129.0039 238.3438 128.877 238.3828 128.7656 238.3369 c -%_128.6543 238.292 128.5898 238.1748 128.6113 238.0576 c -%_128.9844 235.9971 128.0059 233.373 125.8984 231.3311 c -%_122.9922 228.5166 119.0488 227.8779 117.0879 229.9014 c -%_115.127 231.9268 115.8906 235.8486 118.7949 238.6631 c -%_119.8555 239.6904 121.0547 240.4248 122.2441 240.8477 c -%_122.3574 240.8877 122.4258 241.001 122.4102 241.1191 c -%_122.3965 241.2383 122.3008 241.3301 122.1816 241.3398 c -%_115.793 241.8945 111.4121 238.0879 108.666 233.4619 c -%_105.8711 228.7568 101.0957 225.0518 95.4551 225.792 c -%_95.3359 225.8076 95.2227 225.7373 95.1816 225.624 c -%_95.1426 225.5107 95.1875 225.3838 95.291 225.3223 c -%_98.0879 223.6377 101.1621 222.9385 105.1543 224.2705 C -%_99.3594 219.3613 91.1074 216.5283 83.3145 219.043 c -%_83.2051 219.0791 83.0859 219.0361 83.0234 218.9395 c -%_82.9609 218.8428 82.9727 218.7168 83.0488 218.6318 c -%_88.957 212.0674 100.7383 211.9365 108.1582 217.2588 C -%_105.1211 212.9424 101.0898 209.7744 93.8652 208.7803 c -%_93.75 208.7646 93.6602 208.6729 93.6465 208.5576 c -%_93.6348 208.4414 93.7012 208.332 93.8105 208.292 c -%_102.1016 205.2139 110.4102 208.3369 117.2559 216.5068 C -%_114.2637 210.1299 109.3496 205.0225 102.4883 202.4951 c -%_102.373 202.4531 102.3047 202.335 102.3262 202.2158 c -%_102.3457 202.0947 102.4492 202.0059 102.5703 202.0029 c -%_106.5137 201.9219 110.0566 202.8604 114.8359 205.5732 C -%_111.3281 199.8838 112.0957 189.9346 117.2051 183.3154 c -%_117.2754 183.2236 117.4004 183.1914 117.5078 183.2373 c -%_117.6133 183.2842 117.6758 183.3965 117.6563 183.5107 c -%_116.4766 190.7119 118.9551 198.8408 123.2656 203.1533 C -%_121.1133 195.5215 123.2598 188.5771 129.1621 183.5088 c -%_129.2324 183.4482 129.332 183.4316 129.418 183.4648 c -%_129.5059 183.498 129.5664 183.5771 129.5801 183.6689 c -%_130.8145 193.0869 141.3496 202.6436 150.1816 203.4443 c -%_150.3066 203.4551 150.4043 203.5557 150.4121 203.6797 c -%_150.4199 203.8037 150.3379 203.917 150.2148 203.9443 c -%_145.9355 204.9131 141.5234 204.4346 137.8262 202.9131 C -%_140.4863 205.8467 143.7656 208.0244 147.3809 209.1592 c -%_147.498 209.1953 147.5703 209.3096 147.5566 209.4307 c -%_147.543 209.5518 147.4434 209.6455 147.3223 209.6543 c -%_142.8125 209.9658 138.3984 208.6484 134.5918 206.1162 C -%_138.9531 212.7373 145.5723 217.6611 154.0195 219.6221 c -%_154.1406 219.6504 154.2227 219.7607 154.2168 219.8848 c -%_154.209 220.0088 154.1133 220.1084 153.9902 220.1221 c -%_142.0723 221.4238 132.2441 216.8037 125.7695 208.2041 C -%_127.418 213.1045 132.1348 217.96 138.7148 220.8232 c -%_144.5605 223.3682 150.5645 223.7695 155.1367 222.333 c -%_155.2422 222.2998 155.3594 222.3398 155.4219 222.4326 c -%_155.4844 222.5244 155.4805 222.6475 155.4102 222.7354 c -%_f -%_102.5059 147.1631 m -%_107.3125 157.6494 106.9707 165.8486 103.0996 176.2178 c -%_103.0547 176.335 102.9336 176.4023 102.8105 176.3779 c -%_102.6875 176.3525 102.6016 176.2412 102.6074 176.1162 c -%_103.2285 163.4951 99.7813 154.4619 92.3086 148.3096 C -%_100.5586 158.1611 96.6621 177.8691 83.4863 177.8691 c -%_73.9004 177.8691 65.9697 169.8936 64.0303 160.3447 c -%_64.0059 160.2236 64.0723 160.1006 64.1885 160.0576 c -%_64.3037 160.0127 64.4346 160.0576 64.4971 160.1631 c -%_67.3398 164.9248 71.9063 168.0146 76.9551 168.0146 c -%_85.0898 168.0146 87.4961 161.5479 87.4961 157.0166 c -%_87.4961 150.8291 82.5703 145.6729 78.7891 145.6729 c -%_75.3516 145.6729 73.748 148.4971 73.748 150.6006 c -%_73.748 154.499 76.7461 157.7666 80.125 158.7646 c -%_80.2441 158.7998 80.3223 158.9189 80.3047 159.0439 c -%_80.2852 159.1689 80.1797 159.2607 80.0547 159.2627 c -%_75.9473 159.2881 72.4766 157.4072 70.4238 153.6943 C -%_70.1543 156.5693 70.1514 158.3799 71.0645 161.417 c -%_71.0996 161.5342 71.0459 161.6592 70.9385 161.7158 c -%_70.8291 161.7725 70.6963 161.7432 70.6221 161.6475 c -%_63.2656 152.2549 66.7861 136.0225 72.6016 129.29 C -%_67.0693 133.2725 62.1846 141.9229 62.2617 153.6826 c -%_62.2627 153.8057 62.1768 153.9092 62.0566 153.9326 c -%_61.9365 153.958 61.8174 153.8916 61.7725 153.7783 c -%_57.6641 143.5264 59.8438 124.5303 71.0537 113.9268 C -%_68.1699 113.5303 65.1865 113.5811 61.9287 114.6201 c -%_61.8135 114.6553 61.6885 114.6064 61.6299 114.501 c -%_61.5713 114.3936 61.5947 114.2607 61.6885 114.1826 c -%_65.7803 110.7275 71.5029 109.6416 76.9551 109.6416 C -%_72.2578 115.1416 73.8184 126.1963 81.3105 126.1963 c -%_86.6582 126.1963 89.0859 117.8975 84.957 113.415 c -%_84.8789 113.3291 84.8691 113.2002 84.9316 113.1045 c -%_84.9961 113.0068 85.1172 112.9639 85.2285 113.0029 c -%_90.0078 114.6572 95.1738 118.792 95.1738 124.0186 c -%_95.1738 129.0615 90.3613 133.4131 83.373 133.0693 C -%_92.1914 135.5752 101.4238 132.8018 106.2539 126.8174 c -%_106.3281 126.7236 106.459 126.6963 106.5645 126.749 c -%_106.6719 126.8037 106.7266 126.9248 106.6973 127.04 c -%_103.9063 137.7568 94.7305 142.2393 83.2578 140.7471 C -%_92.5391 144.5029 106.5078 141.2275 112.6816 133.4365 c -%_112.7539 133.3447 112.8809 133.3154 112.9883 133.3643 c -%_113.0938 133.415 113.1523 133.5322 113.1289 133.6455 c -%_111.7578 140.2607 108.2656 145.208 102.5059 147.1631 C -%_f -%_*U -%_*u -%_1 D -%_0.41001 0 0.011078 0 0.615686 0.862745 0.976471 Xa -%_0 0.4 0 0 0 Xy -%_128.8887 166.4502 m -%_128.8672 166.3311 128.7637 166.2432 128.6426 166.2432 c -%_115.7363 166.1064 103.8887 162.9756 94.6719 154.7275 C -%_102.7012 160.2861 117.6133 162.2373 126.1992 158.3467 c -%_126.3086 158.2959 126.3672 158.1748 126.3398 158.0576 c -%_126.3145 157.9404 126.207 157.8584 126.0859 157.8604 c -%_115.4063 158.1514 106.8066 154.8545 100.1016 148.8975 C -%_106.9707 148.4736 112.6758 144.1572 112.6582 139.0518 c -%_112.6582 138.9326 112.5742 138.8291 112.457 138.8037 c -%_112.3418 138.7803 112.2227 138.8389 112.1738 138.9482 c -%_111.0527 141.4365 107.4258 142.7295 103.5918 141.8291 c -%_99.4121 140.8467 96.5918 137.6396 97.291 134.6631 c -%_97.7617 132.6494 99.7266 131.2607 102.2422 130.876 c -%_102.3691 130.8564 102.4629 130.7471 102.459 130.6182 c -%_102.4551 130.4912 102.3574 130.3857 102.2285 130.3721 c -%_101.1602 130.2705 100.0488 130.2666 98.9121 130.376 c -%_92.4219 130.9932 87.3984 134.9697 86.9629 139.5537 C -%_82.25 139.0068 78.0781 136.3955 76.584 132.7803 c -%_76.5391 132.6709 76.4258 132.6084 76.3086 132.626 c -%_76.1934 132.6436 76.1055 132.7393 76.0957 132.8564 c -%_75.7188 137.6064 77.3535 140.6943 81.0664 143.71 C -%_75.6816 141.6514 69.6201 141.5459 63.8096 144.2471 c -%_63.7041 144.2979 63.6455 144.4131 63.667 144.5283 c -%_63.6904 144.6436 63.79 144.7275 63.9072 144.7314 c -%_68.7861 144.9209 72.3242 146.4873 75.6406 149.8037 C -%_57.3838 144.6689 42.5518 156.0049 47.6846 172.8545 c -%_47.7197 172.9717 47.8311 173.0459 47.9521 173.0342 c -%_48.0732 173.0225 48.1689 172.9268 48.1787 172.8057 c -%_49.0967 163.0908 55.8818 156.6885 66.04 155.7295 C -%_60.6533 157.7881 55.04 162.7041 54.4834 171.2627 c -%_54.4756 171.3857 54.5557 171.4951 54.6748 171.5264 c -%_54.7939 171.5557 54.917 171.4951 54.9678 171.3838 c -%_57.7666 165.2295 63.2646 162.1201 69.1279 161.5713 C -%_62.7939 164.1533 58.7314 170.1748 57.5576 177.9932 c -%_57.5381 178.1162 57.6123 178.2334 57.7314 178.2725 c -%_57.8486 178.3096 57.9775 178.2568 58.0342 178.1455 c -%_61.8994 170.5635 70.1904 165.3525 80.4824 169.335 c -%_91.0996 173.4443 95.7559 185.7197 96.7852 194.374 c -%_96.8008 194.4971 96.9004 194.5908 97.0234 194.5986 c -%_97.1465 194.6045 97.2559 194.5225 97.2852 194.4033 c -%_101.0039 178.7139 93.7012 162.4541 80.6484 155.5635 C -%_87.7441 157.5654 94.0879 161.8232 97.6758 168.917 C -%_105.9688 169.9346 111.6797 172.7803 114.5332 178.1572 c -%_114.5898 178.2627 114.7129 178.3154 114.8281 178.2822 c -%_114.9434 178.2471 115.0195 178.1357 115.0098 178.0166 c -%_114.8281 175.9072 114.0684 171.6865 110.9355 169.7451 C -%_117.9004 169.7568 123.4414 168.8525 128.7344 166.7314 c -%_128.8457 166.6865 128.9121 166.5693 128.8887 166.4502 c -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_0 D -%_99.4023 219.9189 m -%_99.502 219.8545 99.6309 219.8643 99.7188 219.9463 c -%_99.8047 220.0264 99.8223 220.1553 99.7637 220.2588 c -%_98.1445 223.0557 99.623 227.0713 102.8145 227.0713 c -%_108.5352 227.0713 111.2852 216.3018 110.4102 206.4795 C -%_108.248 212.2334 106.377 214.5342 103.0625 217.2744 c -%_102.9688 217.3506 102.834 217.3525 102.7402 217.2744 c -%_102.6465 217.1982 102.6191 217.0654 102.6777 216.958 c -%_107.5332 207.8799 108.5742 200.8936 108.5742 192.874 C -%_107.1113 198.8311 105.3789 202.1943 100.4473 207.2549 c -%_100.3613 207.3428 100.2246 207.3564 100.123 207.2861 c -%_100.0215 207.2158 99.9844 207.083 100.0352 206.9717 c -%_105.334 195.3799 104.9297 182.5244 100.9824 172.708 c -%_100.9434 172.6104 100.9688 172.499 101.0449 172.4268 c -%_101.123 172.3545 101.2344 172.3389 101.3301 172.3838 c -%_106.5352 174.9346 109.5938 176.6104 114.082 182.7744 C -%_112.7246 190.1729 113.8535 193.8213 117.2539 199.9678 C -%_113.3164 190.0518 115.4121 176.0752 125.4414 170.3779 c -%_125.5508 170.3154 125.6895 170.3428 125.7656 170.4424 c -%_125.8438 170.542 125.8379 170.6826 125.75 170.7744 c -%_121.9688 174.7295 119.2188 181.4092 121.5938 188.7002 C -%_120.0645 178.3115 129.1895 169.5869 139.373 169.5869 c -%_148.9727 169.5869 155.5234 177.0947 154.9824 184.5264 c -%_154.4453 191.8916 149.5391 195.4971 145.3105 197.0244 c -%_145.1992 197.0654 145.0742 197.0225 145.0117 196.9229 c -%_144.9473 196.8232 144.9609 196.6924 145.0449 196.6084 c -%_150.6543 190.915 151.4219 180.1162 141.4609 176.8486 C -%_147.3203 181.9053 145.1504 193.6768 135.7715 194.5732 c -%_135.6543 194.583 135.5449 194.5127 135.5078 194.4014 c -%_135.4688 194.292 135.5117 194.1689 135.6113 194.1064 c -%_137.6191 192.8271 139.2891 190.335 139.2891 187.5322 c -%_139.2891 182.8584 135.8672 181.0205 133.6133 181.0205 c -%_130.1914 181.0205 127.3535 184.2764 127.3535 189.2021 c -%_127.3535 195.0439 132.6133 199.8857 139.373 200.6357 c -%_146 201.3721 152.1563 198.4814 155.123 194.1768 c -%_155.1934 194.0752 155.3242 194.04 155.4375 194.0908 c -%_155.5488 194.1416 155.6074 194.2646 155.5781 194.3838 c -%_152.5586 206.0869 138.7813 211.2607 128.6895 203.8916 C -%_135.3027 211.3916 145.6953 211.4971 154.4121 203.8057 c -%_154.502 203.7256 154.6367 203.7197 154.7344 203.7939 c -%_154.8301 203.8682 154.8613 203.999 154.8066 204.1084 c -%_152.1406 209.5146 145.5547 215.9268 136.2012 214.9932 c -%_127.6445 214.1377 122.6797 205.9775 121.6777 199.3018 C -%_121.1211 207.8232 123.0723 213.8369 130.4316 219.4463 c -%_130.5293 219.5205 130.5586 219.6533 130.5039 219.7627 c -%_130.4492 219.8721 130.3242 219.9268 130.207 219.8916 c -%_123.4219 217.9326 117.9766 214.4678 115.1582 207.3486 C -%_115.1582 213.5088 117.2969 219.7197 122.6836 223.8584 c -%_122.7813 223.9326 122.8105 224.0654 122.7559 224.1748 c -%_122.7012 224.2822 122.5781 224.3369 122.4609 224.3037 c -%_119.0078 223.3213 116.2891 221.8154 114.3223 219.1201 C -%_113.0117 230.2197 107.8008 236.8096 101.7969 236.8096 c -%_97.6719 236.8096 94.5918 233.7764 94.5918 228.9404 c -%_94.5918 226.1104 96.0801 222.1377 99.4023 219.9189 c -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_0.174805 128.3018 m -%_3.33691 124.3975 9.71387 122.9092 16.6064 124.3135 C -%_16.0967 120.0107 16.9404 115.5225 18.2178 112.8271 c -%_18.2705 112.7197 18.3916 112.6611 18.5088 112.6904 c -%_18.626 112.7197 18.7061 112.8271 18.7021 112.9482 c -%_18.3271 121.7139 23.3252 128.79 32.1514 131.8564 C -%_25.2451 127.1006 23.2256 117.6631 26.5127 112.792 c -%_26.5811 112.6924 26.708 112.6533 26.8193 112.6982 c -%_26.9307 112.7432 26.9951 112.8604 26.9736 112.9795 c -%_26.6006 115.04 27.5791 117.6631 29.6865 119.7041 c -%_32.5928 122.5186 36.5361 123.1572 38.4971 121.1338 c -%_40.458 119.1084 39.6943 115.1865 36.79 112.374 c -%_35.7295 111.3467 34.5303 110.6104 33.3408 110.1885 c -%_33.2275 110.1475 33.1592 110.0342 33.1748 109.917 c -%_33.1885 109.7979 33.2842 109.7061 33.4033 109.6963 c -%_39.792 109.1416 44.1729 112.9482 46.9189 117.5732 c -%_49.7139 122.2783 54.4893 125.9854 60.1299 125.2451 c -%_60.249 125.2295 60.3623 125.2998 60.4033 125.4131 c -%_60.4424 125.5264 60.3975 125.6514 60.2939 125.7139 c -%_57.4971 127.3975 54.4229 128.0967 50.4307 126.7666 C -%_56.2256 131.6748 64.4775 134.5068 72.2715 131.9932 c -%_72.3809 131.958 72.5 132.001 72.5625 132.0967 c -%_72.625 132.1924 72.6152 132.3193 72.5371 132.4053 c -%_66.6279 138.9697 54.8467 139.1006 47.4268 133.7764 C -%_50.4639 138.0928 54.4951 141.2627 61.7197 142.2549 c -%_61.835 142.2705 61.9248 142.3643 61.9385 142.4795 c -%_61.9502 142.5947 61.8838 142.7041 61.7744 142.7451 c -%_53.4834 145.8213 45.1748 142.7002 38.3291 134.5283 C -%_41.3213 140.9072 46.2354 146.0146 53.0967 148.542 c -%_53.2119 148.583 53.2803 148.7002 53.2588 148.8213 c -%_53.2393 148.9424 53.1357 149.0303 53.0146 149.0322 c -%_49.0713 149.1143 45.5283 148.1748 40.749 145.4619 C -%_44.2568 151.1533 43.4893 161.1006 38.3799 167.7217 c -%_38.3096 167.8135 38.1846 167.8447 38.0771 167.7998 c -%_37.9717 167.7529 37.9092 167.6396 37.9287 167.5244 c -%_39.1084 160.3252 36.6299 152.1963 32.3193 147.8838 C -%_34.4717 155.5146 32.3252 162.46 26.4229 167.5264 c -%_26.3525 167.5869 26.2529 167.6045 26.167 167.5713 c -%_26.0791 167.5381 26.0186 167.46 26.0049 167.3682 c -%_24.7705 157.9502 14.2354 148.3936 5.40332 147.5928 c -%_5.27832 147.5811 5.18066 147.4814 5.17285 147.3564 c -%_5.16504 147.2314 5.24707 147.1201 5.37012 147.0928 c -%_9.64941 146.124 14.0615 146.6025 17.7588 148.1221 C -%_15.0986 145.1904 11.8193 143.0127 8.2041 141.8779 c -%_8.08691 141.8408 8.01465 141.7275 8.02832 141.6064 c -%_8.04199 141.4854 8.1416 141.3896 8.2627 141.3818 c -%_12.7725 141.0713 17.1865 142.3877 20.9932 144.9209 C -%_16.6318 138.2998 10.0127 133.376 1.56543 131.4131 c -%_1.44434 131.3857 1.3623 131.2744 1.36816 131.1514 c -%_1.37598 131.0283 1.47168 130.9287 1.59473 130.915 c -%_13.5127 129.6123 23.3408 134.2334 29.8154 142.833 C -%_28.167 137.9307 23.4502 133.0771 16.8701 130.2139 c -%_11.0244 127.6689 5.02051 127.2666 0.448242 128.7041 c -%_0.342773 128.7373 0.225586 128.6963 0.163086 128.6045 c -%_0.100586 128.5107 0.104492 128.3877 0.174805 128.3018 c -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_53.0791 203.874 m -%_48.2725 193.3877 48.6143 185.1885 52.4854 174.8193 c -%_52.5303 174.7021 52.6514 174.6338 52.7744 174.6592 c -%_52.8975 174.6846 52.9834 174.7959 52.9775 174.9189 c -%_52.3564 187.542 55.8037 196.5732 63.2764 202.7275 C -%_55.0264 192.874 58.9229 173.167 72.0996 173.167 c -%_81.6855 173.167 89.6152 181.1436 91.5547 190.6924 c -%_91.5801 190.8135 91.5137 190.9346 91.3965 190.9795 c -%_91.2813 191.0244 91.1504 190.9795 91.0879 190.8721 c -%_88.2461 186.1104 83.6797 183.0205 78.6309 183.0205 c -%_70.4951 183.0205 68.0889 189.4873 68.0889 194.0205 c -%_68.0889 200.2061 73.0156 205.3623 76.7969 205.3623 c -%_80.2344 205.3623 81.8379 202.54 81.8379 200.4365 c -%_81.8379 196.5381 78.8398 193.2705 75.4629 192.2725 c -%_75.3418 192.2354 75.2656 192.1182 75.2832 191.9932 c -%_75.3008 191.8682 75.4063 191.7744 75.5332 191.7744 c -%_79.6387 191.749 83.1094 193.6279 85.1621 197.3428 C -%_85.4316 194.4678 85.4336 192.6572 84.5215 189.6182 c -%_84.4863 189.501 84.5391 189.376 84.6465 189.3193 c -%_84.7559 189.2646 84.8887 189.292 84.9629 189.3896 c -%_92.3203 198.7822 88.7988 215.0127 82.9844 221.7471 C -%_88.5156 217.7646 93.4004 209.1123 93.3242 197.3525 c -%_93.3223 197.2314 93.4082 197.126 93.5293 197.1025 c -%_93.6484 197.0791 93.7676 197.1436 93.8125 197.2568 c -%_97.9219 207.5107 95.7422 226.5049 84.5313 237.1084 C -%_87.416 237.5068 90.3984 237.4561 93.6563 236.417 c -%_93.7715 236.3799 93.8965 236.4307 93.9551 236.5361 c -%_94.0137 236.6416 93.9902 236.7744 93.8965 236.8525 c -%_89.8047 240.3076 84.082 241.3936 78.6309 241.3936 C -%_83.3281 235.8936 81.7676 224.8408 74.2773 224.8408 c -%_68.9268 224.8408 66.499 233.1396 70.6279 237.6221 c -%_70.7061 237.708 70.7158 237.835 70.6533 237.9326 c -%_70.5889 238.0303 70.4678 238.0713 70.3564 238.0342 c -%_65.5771 236.3779 60.4111 232.2451 60.4111 227.0166 c -%_60.4111 221.9756 65.2236 217.6221 72.2148 217.9658 C -%_63.3936 215.4619 54.1611 218.2334 49.3311 224.2197 c -%_49.2568 224.3115 49.126 224.3408 49.0205 224.2861 c -%_48.9131 224.2334 48.8584 224.1123 48.8877 223.9951 c -%_51.6787 213.2803 60.8545 208.7959 72.3281 210.29 C -%_63.0459 206.5322 49.0771 209.8076 42.9033 217.5986 c -%_42.8311 217.6904 42.7041 217.7217 42.5967 217.6709 c -%_42.4912 217.6221 42.4326 217.5049 42.4561 217.3896 c -%_43.8271 210.7744 47.3193 205.8291 53.0791 203.874 C -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_*U -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_U -%_/ArtDictionary : -%_1 /Bool (AIPattern_Is_Main_Copy_of_EditGroup) , -%_; -%_ -%_9 () XW -%_U -%_/ArtDictionary : -%_4 /Int (AIPattern_Editor_Editable_Copy_Loc_Key) , -%_50 /Real (AIPattern_Editor_Dim_Percent_Key) , -%_5 /Int (AIPattern_Editor_Preview_Rows) , -%_109.6416 /Real (AIPattern_Editor_Tile_Height) , -%_1 /Bool (AIPattern_Editor_Top_in_Front) , -%_1 /Bool (AIPattern_Editor_Left_in_Front) , -%_1 /Bool (AIPattern_Editor_Dim_Copies_Key) , -%_5 /Int (AIPattern_Editor_Preview_Cols) , -%_108.3384 /Real (AIPattern_Editor_Tile_Width) , -%_; -%_ -%_9 () XW -E -%AI3_EndPattern -%AI5_End_NonPrinting-- -%AI5_Begin_NonPrinting -Np -%AI8_BeginBrushPattern -(Unnamed 6) 0 A -0 Xw -u -u -0 1 0 0 0 Xy -0 J 0 j 1 w 4 M []0 d 0 XR --4018.5 4018.5 m --3917.1816 4018.5 L --3917.1816 4010.7832 L --4018.5 4010.7832 L --4018.5 4018.5 L -n -u -0 O -0.720851 0.673426 0.586358 0.790768 0.137255 0.121569 0.12549 Xa --3917.3 4012.207 m --3917.1504 4012.2439 -3917.2041 4011.8247 -3917.1816 4011.7495 C --3917.4319 4011.8423 -3917.2937 4012.3159 -3917.3 4012.207 C -f --3919.7693 4013.1582 m --3919.7256 4012.9871 L --3920.0896 4013.4063 L --3919.7693 4013.1582 L -f --3922.0784 4013.1504 m --3921.8601 4013.8643 -3921.2417 4013.0352 -3920.8303 4013.2888 C --3920.7625 4013.4524 L --3920.5769 4012.8772 L --3921.0769 4012.9683 -3921.7263 4013.3499 -3922.0784 4013.1504 C -f --3923.3096 4011.6072 m --3923.2336 4011.8843 -3923.5759 4011.8455 -3923.0225 4011.6936 C --3923.0503 4011.6631 -3923.0583 4011.6455 -3923.0745 4011.623 C --3923.1243 4011.6272 -3923.1929 4011.6262 -3923.3096 4011.6072 C -f --3923.0745 4011.623 m --3922.8313 4011.603 -3923.2336 4011.3904 -3923.0745 4011.623 C --3923.0745 4011.623 L -f --3924.1975 4011.7822 m --3923.8772 4011.5342 L --3923.9441 4011.3704 -3924.2292 4011.333 -3924.1233 4011.2134 C --3924.4519 4011.3496 -3924.3843 4011.5127 -3924.1975 4011.7822 C -f --3924.5012 4012.303 m --3924.3352 4012.1982 L --3924.3643 4012.1294 -3924.4082 4012.105 -3924.5012 4012.303 C -f --3923.9832 4011.9768 m --3924.3352 4012.1982 L --3924.2888 4012.313 -3924.2839 4012.5447 -3924.1736 4012.1184 C --3924.2024 4012.3296 -3924.1328 4012.1262 -3923.9832 4011.9768 C -f --3923.7839 4012.0852 m --3923.6042 4012.24 -3923.3721 4012.3384 -3923.6936 4012.5852 C --3923.0808 4012.4871 -3923.1711 4011.9856 -3923.7839 4012.0852 C -f --3922.1963 4013.8887 m --3921.9561 4014.0984 L --3921.7483 4013.8584 L --3921.8521 4013.9771 -3922.2112 4013.665 -3922.1963 4013.8887 C -f --3926.1929 4011.4126 m --3926.2129 4011.5647 -3926.0852 4011.8174 -3926.0613 4012.012 C --3925.8247 4011.8374 L --3925.9463 4011.7334 -3926.1768 4011.6375 -3926.1929 4011.4126 C -f --3926.0613 4012.012 m --3926.4153 4012.2727 L --3926.0991 4012.303 -3926.0413 4012.1792 -3926.0613 4012.012 C -f --3924.5583 4013.0955 m --3923.9768 4012.5479 L --3924.6704 4013.103 L --3924.5583 4013.0955 L -f --3927.5449 4011.3936 m --3927.3442 4011.0422 L --3927.7017 4011.5735 L --3927.5449 4011.3936 L -f --3928.4417 4011.4551 m --3928.2932 4011.1638 -3928.6453 4010.9624 -3928.4883 4010.7832 C --3928.7319 4010.8352 -3928.9399 4011.0852 -3929.1272 4011.3103 C --3928.9282 4011.1848 -3928.7161 4011.2168 -3928.4417 4011.4551 C -f --3929.4417 4011.6375 m --3929.3423 4011.5679 -3929.2393 4011.4431 -3929.1272 4011.3103 C --3929.2329 4011.3772 -3929.3369 4011.4744 -3929.4417 4011.6375 C -f --3927.0183 4012.1975 m --3927.0457 4012.1055 -3927.0984 4011.8655 -3927.2969 4011.7639 C --3927.1577 4012.1912 L --3927.1152 4012.1936 -3927.0671 4012.1951 -3927.0183 4012.1975 C -f --3927.1528 4012.2046 m --3927.1577 4012.1912 L --3927.3088 4012.1814 -3927.4136 4012.1719 -3927.4585 4012.167 c --3927.4199 4012.1707 -3927.3279 4012.1824 -3927.1528 4012.2046 C -f --3926.9832 4012.1992 m --3926.9961 4012.1982 -3927.0056 4012.1975 -3927.0183 4012.1975 C --3927.0049 4012.24 -3926.9968 4012.2534 -3926.9832 4012.1992 C -f --3925.4863 4012.709 m --3925.6943 4012.948 -3926.1279 4013.2039 -3925.7083 4013.5686 C --3925.5591 4013.2759 -3925.7993 4013.0686 -3925.4863 4012.709 c -f --3926.8103 4012.7334 m --3926.4343 4012.8311 L --3926.4417 4012.7183 -3926.5095 4012.5535 -3926.4065 4012.4351 C --3926.8103 4012.7334 L -f --3926.9944 4012.8694 m --3926.8103 4012.7334 L --3926.9497 4012.6975 L --3926.9944 4012.8694 L -f --3928.7976 4012.0376 m --3928.96 4012.2239 -3929.1377 4012.239 -3929.3384 4012.269 C --3929.1233 4012.353 -3928.9009 4012.3992 -3928.6897 4012.3972 C --3928.6599 4012.2632 -3928.5671 4012.0222 -3928.7976 4012.0376 C -f --3927.9983 4012.1563 m --3928.0095 4012.1663 -3928.0239 4012.1707 -3928.0344 4012.1807 C --3928.0122 4012.217 -3927.9944 4012.2283 -3927.9983 4012.1563 C -f --3931.3142 4012.2664 m --3931.3032 4012.2896 -3931.2937 4012.3196 -3931.2825 4012.344 C --3931.28 4012.3196 -3931.2783 4012.2952 -3931.2751 4012.27 C --3931.3142 4012.2664 L -f --3928.6536 4012.4771 m --3928.4919 4012.5598 -3928.3953 4012.4551 -3928.3032 4012.324 C --3928.4241 4012.3662 -3928.5522 4012.3943 -3928.6897 4012.3972 C --3928.7031 4012.4583 -3928.7056 4012.4983 -3928.6536 4012.4771 C -f --3929.9929 4011.8374 m --3929.9087 4011.9272 -3929.8132 4012.0032 -3929.7129 4012.0723 C --3929.7952 4011.937 -3929.9631 4011.7263 -3929.9929 4011.8374 C -f --3928.0889 4012.0623 m --3928.0808 4012.0559 -3928.0735 4012.0479 -3928.0647 4012.0432 C --3928.1177 4011.9524 -3928.1111 4011.9966 -3928.0889 4012.0623 C -f --3928.0889 4012.0623 m --3928.1721 4012.1243 -3928.2375 4012.2295 -3928.3032 4012.324 C --3928.2048 4012.2896 -3928.1135 4012.2439 -3928.0344 4012.1807 C --3928.0544 4012.1504 -3928.0745 4012.104 -3928.0889 4012.0623 C -f --3931.9128 4015.009 m --3931.8843 4014.613 -3931.4592 4014.2471 -3931.0923 4014.6719 C --3930.7312 4014.375 -3930.9673 4013.0723 -3931.2825 4012.344 C --3931.2937 4012.5166 -3931.2937 4012.6763 -3931.6653 4012.9104 C --3931.5352 4013.1262 -3930.8408 4013.4163 -3931.1543 4013.7747 C --3931.6465 4013.9783 -3931.5576 4013.6343 -3931.7969 4013.425 C --3931.5935 4013.9182 -3932.4231 4014.1431 -3932.3159 4014.8687 C --3931.8843 4014.613 L --3931.8762 4014.7263 -3932.0327 4014.9063 -3931.9128 4015.009 C -f --3930.5745 4012.3843 m --3930.4216 4012.3352 L --3930.5959 4012.2664 -3930.7207 4012.1079 -3930.9504 4011.7976 C --3931.2048 4011.9915 -3931.2576 4012.1382 -3931.2751 4012.27 C --3930.5222 4012.3252 L --3930.5745 4012.3843 L -f --3929.7351 4012.3335 m --3929.8545 4012.7644 -3930.2217 4012.948 -3929.9968 4013.4143 C --3929.5481 4013.3843 -3929.6824 4013.0542 -3929.4143 4012.8672 C --3930.1384 4012.9744 -3929.2063 4012.6272 -3929.7295 4012.3831 C --3929.5872 4012.3096 -3929.4592 4012.2871 -3929.3384 4012.269 C --3929.4688 4012.217 -3929.5945 4012.1519 -3929.7129 4012.0723 C --3929.7063 4012.0823 -3929.7017 4012.0896 -3929.6963 4012.0984 C --3929.6929 4012.0984 L --3929.6929 4012.1006 -3929.6936 4012.1016 -3929.6936 4012.104 C --3929.6624 4012.1582 -3929.6521 4012.1912 -3929.6873 4012.1604 C --3929.6897 4012.165 -3929.6985 4012.167 -3929.7024 4012.1692 C --3929.7073 4012.2283 -3929.7207 4012.2808 -3929.7351 4012.3311 C --3929.9448 4012.2422 -3929.7681 4012.22 -3929.7024 4012.1692 C --3929.7 4012.1472 -3929.6943 4012.1272 -3929.6936 4012.104 C --3929.6943 4012.1023 -3929.6953 4012.1006 -3929.6963 4012.0984 C --3930.4216 4012.3352 L --3930.2681 4012.395 -3930.0759 4012.3831 -3929.7351 4012.3335 C -f --3926.0952 4014.4951 m --3926.1177 4014.457 -3926.1167 4014.4263 -3926.1184 4014.395 C --3926.1653 4014.448 -3926.1831 4014.4839 -3926.0952 4014.4951 C -f --3926.3936 4014.2351 m --3926.3408 4014.175 -3926.2969 4014.0032 -3926.1255 4014.0471 C --3925.9768 4014.1763 -3926.1262 4014.2534 -3926.1184 4014.395 C --3926.0151 4014.2808 -3925.7568 4014.0862 -3926.0808 4013.8762 C --3926.1321 4013.9351 L --3926.4241 4013.7871 -3926.7993 4013.2495 -3926.7483 4013.1902 C --3926.6631 4013.5784 -3926.5879 4013.8542 -3926.3936 4014.2351 C -f --3928.0852 4013.3943 m --3928.6892 4013.6055 L --3928.3816 4013.9783 L --3928.3972 4013.7544 L --3928.0537 4013.8423 -3928.1279 4013.5667 -3928.0852 4013.3943 C -f --3931.3833 4012.052 m --3931.3032 4011.5967 L --3931.6521 4012.24 L --3931.3833 4012.052 L -f --3932.1682 4012.1062 m --3932.1392 4011.7112 L --3932.3464 4011.9495 L --3932.1682 4012.1062 L -f --3976.4617 4017.0166 m --3976.6392 4017.1287 L --3976.5552 4017.0942 -3976.5012 4017.0564 -3976.4617 4017.0166 C -f --3975.1768 4017.0435 m --3975.1453 4016.8484 L --3975.2048 4016.9558 -3975.2292 4017.0352 -3975.1768 4017.0435 C -f --3951.4456 4012.1504 m --3951.7041 4011.7815 -3951.9929 4011.2083 -3951.9617 4011.6536 C --3951.8823 4012.0872 L --3951.7017 4012.009 -3951.5632 4012.0576 -3951.4456 4012.1504 C -f --3964.6479 4014.7415 m --3964.6233 4014.7832 -3964.5977 4014.8286 -3964.5723 4014.8728 C --3964.5095 4014.7246 -3964.4504 4014.5872 -3964.3977 4014.4583 C --3964.4729 4014.5471 -3964.5583 4014.6416 -3964.6479 4014.7415 C -f --3964.8303 4016.5364 m --3965.1711 4016.2566 L --3965.0945 4016.3542 -3964.9849 4016.448 -3964.8303 4016.5364 C -f --3983.4792 4017.4768 m --3983.6863 4017.9182 L --3983.3623 4017.9163 -3983.5049 4017.6936 -3983.4792 4017.4768 C -f --3940.2073 4012.2664 m --3940.4304 4012.0967 -3940.6079 4012.0254 -3940.7639 4012.0044 C --3940.4951 4012.2534 -3940.2783 4012.6272 -3940.2073 4012.2664 C -f --3975.9561 4012.4126 m --3976.0647 4012.4912 -3976.1111 4012.5796 -3976.1079 4012.6763 C --3975.9961 4012.6023 -3975.9329 4012.519 -3975.9561 4012.4126 C -f --3941.4082 4012.0059 m --3941.3689 4012.0496 -3941.3303 4012.071 -3941.2903 4012.1079 C --3941.1272 4012.0352 -3940.9631 4011.9768 -3940.7639 4012.0044 C --3940.9624 4011.8196 -3941.1897 4011.7046 -3941.4082 4012.0059 C -f --4008.9297 4017.1172 m --4008.9482 4017.0984 -4008.9705 4017.0884 -4008.9873 4017.0652 C --4008.9929 4017.1243 -4008.9673 4017.1272 -4008.9297 4017.1172 C -f --4016.3442 4012.74 m --4016.2712 4012.7124 -4016.1521 4012.7119 -4016.0398 4012.7063 C --4016.0945 4012.6763 -4016.1863 4012.6792 -4016.3442 4012.74 c -f --3935.3264 4011.917 m --3935.1599 4011.8887 -3935.3 4011.8694 -3935.3264 4011.917 C --3935.3264 4011.917 L -f --3934.5168 4013.6331 m --3934.5522 4013.6814 -3934.5791 4013.7439 -3934.5833 4013.844 C --3934.5696 4013.74 -3934.5464 4013.6736 -3934.5168 4013.6331 c -f --3943.0664 4014.7063 m --3943.0713 4014.7063 -3943.0752 4014.7046 -3943.0808 4014.7046 C --3943.0313 4014.7896 -3943.0398 4014.7732 -3943.0664 4014.7063 C -f --3935.0759 4012.1143 m --3935.1384 4012.061 -3935.2104 4012.0166 -3935.2888 4011.9856 C --3935.2544 4012.019 -3935.1897 4012.061 -3935.0759 4012.1143 C -f --3935.1096 4011.9092 m --3935.0522 4011.9287 -3935.0071 4011.9395 -3934.9641 4011.9512 C --3934.9431 4011.8792 -3934.9617 4011.8335 -3935.1096 4011.9092 C -f --3935.5583 4011.9407 m --3935.4631 4011.9336 -3935.3743 4011.9539 -3935.2888 4011.9856 C --3935.3215 4011.9558 -3935.3352 4011.9319 -3935.3264 4011.917 C --3935.3752 4011.9236 -3935.4441 4011.9326 -3935.5583 4011.9407 c -f --3995.2932 4015.9558 m --3995.3042 4015.9424 -3995.3169 4015.9336 -3995.3289 4015.915 C --3995.4968 4016.0952 -3995.4231 4016.0667 -3995.2932 4015.9558 C -f --3955.7783 4016.6563 m --3955.7705 4016.6519 -3955.7664 4016.6404 -3955.7593 4016.636 C --3955.7671 4016.6311 -3955.7769 4016.625 -3955.7839 4016.6199 C --3955.7783 4016.6563 L -f --3956.3762 4016.979 m --3956.1216 4016.4392 -3955.9768 4016.5056 -3955.7839 4016.6199 C --3955.9817 4015.3694 L --3956.3762 4016.979 L -f -*u --3979.5383 4017.1416 m --3979.1184 4017.532 L --3979.6252 4018.1736 -3979.9919 4017.9524 -3979.5977 4018.5 C --3979.5383 4017.1416 -3977.9656 4018.3616 -3977.9072 4017.0039 C --3977.6304 4017.2896 L --3977.7097 4017.2766 -3977.7224 4017.356 -3977.8008 4017.343 C --3977.2625 4017.9934 -3977.4009 4016.3616 -3976.7073 4016.5542 C --3976.4656 4016.6582 -3976.2969 4016.855 -3976.4617 4017.0166 C --3975.9231 4016.6807 L --3975.7664 4016.707 -3975.8047 4016.9431 -3975.9607 4016.917 C --3975.1392 4016.8086 L --3975.1453 4016.8484 L --3975.0281 4016.636 -3974.7625 4016.3064 -3974.6328 4016.1663 C --3974.4241 4016.3616 -3974.7375 4016.3103 -3974.6841 4016.479 C --3974.2292 4016.1504 L --3974.0439 4016.5032 -3974.4209 4016.844 -3974.7351 4016.7935 C --3974.3103 4018.1494 -3974.3577 4016.4524 -3973.4409 4017.2444 C --3973.8704 4017.4163 L --3973.5935 4018.1863 -3973.2583 4017.9072 -3972.7727 4018.3875 C --3972.8879 4018.1367 -3973.7449 4017.1775 -3973.2512 4016.8391 C --3973.1121 4016.9414 -3972.9287 4016.99 -3972.6624 4016.7168 C --3972.6599 4017.2 -3972.3999 4017.0811 -3972.0745 4017.0535 C --3972.0967 4017.6936 L --3971.7449 4017.5088 -3971.7727 4017.1831 -3971.5657 4016.895 C --3971.1736 4016.9583 -3971.0923 4017.4536 -3971 4017.8711 C --3970.3721 4017.9727 -3971.4336 4017.0767 -3970.6904 4016.9558 C --3970.1682 4017.2007 -3969.8015 4016.9392 -3969.1768 4016.5564 C --3968.8113 4016.7776 -3969.2407 4016.948 -3969.1096 4017.1311 C --3968.7856 4016.6206 L --3968.7063 4016.6331 -3968.7319 4016.7896 -3968.7449 4016.8687 C --3968.4719 4016.6707 -3968.7224 4016.229 -3968.2932 4016.0559 C --3968.1775 4015.3511 -3967.4121 4017.0852 -3966.8809 4016.2854 C --3966.75 4016.467 -3966.9441 4016.6775 -3966.9041 4016.925 C --3966.1753 4016.3999 -3966.2793 4016.5435 -3965.6809 4015.8367 C --3965.1711 4016.2566 L --3965.5457 4015.7766 -3965.0671 4015.2083 -3964.6479 4014.7415 C --3964.7808 4014.509 -3964.8943 4014.3064 -3964.9705 4014.2095 C --3964.3015 4013.8662 L --3964.2207 4013.9712 -3964.2881 4014.1912 -3964.3977 4014.4583 C --3964.3521 4014.4055 -3964.3088 4014.353 -3964.2751 4014.3047 C --3964.0359 4014.541 -3964.1599 4014.9104 -3964.3313 4015.2676 C --3964.4128 4015.1416 -3964.4937 4015.0071 -3964.5723 4014.8728 C --3964.7375 4015.2615 -3964.8921 4015.6919 -3964.8577 4016.0667 C --3964.8142 4015.9927 -3964.7305 4015.9292 -3964.6384 4015.8936 C --3964.6816 4015.999 -3964.7092 4016.0935 -3964.6892 4016.1575 c --3964.6665 4016.2246 -3964.5967 4016.083 -3964.4873 4015.9192 C --3964.3352 4016.6331 L --3964.2983 4016.3499 L --3963.4231 4016.7959 L --3962.7969 4016.0784 -3962.2522 4015.021 -3961.2583 4014.7271 C --3961.5049 4015.25 -3961.3113 4015.5811 -3961.3247 4016.2007 C --3961.5959 4015.5447 -3962.0945 4016.479 -3962.6096 4016.3462 c --3962.3408 4016.415 -3962.3999 4016.7112 -3962.4683 4016.813 C --3961.5496 4016.2168 L --3961.5703 4016.7239 -3961.3545 4016.5967 -3961.1145 4016.8064 C --3961.2959 4015.8047 -3960.4297 4016.1392 -3960.0559 4015.8323 C --3960.0327 4016.168 -3960.1223 4016.512 -3960.5784 4016.4304 C --3960.0752 4017.1848 -3959.9282 4015.2544 -3959.4343 4015.895 C --3959.5457 4015.9031 -3959.6057 4015.8518 -3959.6497 4016.0232 C --3959.3896 4015.7239 -3958.7537 4015.9612 -3958.9033 4016.2534 C --3959.0144 4016.2603 L --3958.2751 4016.3792 -3956.7639 4016.2676 -3956.6536 4015.417 C --3956.6462 4015.5276 -3956.7505 4016.4424 -3956.7952 4016.6143 C --3955.4761 4013.7527 L --3955.5923 4014.4832 -3955.1462 4016.2224 -3955.7593 4016.636 C --3955.5833 4016.74 -3955.3655 4016.8616 -3954.9944 4016.603 C --3955.1145 4016.499 -3955.2937 4015.5471 -3955.1296 4015.48 C --3954.6792 4016.2932 -3954.8169 4015.915 -3954.2617 4016.6084 C --3954.4417 4016.4524 -3954.2417 4015.3064 -3953.9573 4015.343 C --3954.0017 4015.5144 -3953.9336 4016.4734 -3954.0376 4016.5928 C --3953.3296 4015.4683 L --3953.5063 4015.6707 -3953.3608 4016.4214 -3953.2024 4016.74 C --3953.2759 4016.519 -3952.5903 4016.76 -3952.4016 4016.6487 C --3952.7017 4016.3875 L --3951.9023 4016.5579 -3951.9121 4014.8064 -3951.1191 4014.8655 C --3951.2151 4015.0974 -3951.3562 4016.2952 -3950.9529 4016.4363 C --3950.7681 4015.8606 -3950.1345 4013.6663 -3949.4329 4013.2227 C --3949.2983 4013.552 L --3948.76 4013.1768 L --3949.0952 4014.0435 -3950.0359 4015.8672 -3950.5496 4016.5767 C --3950.2505 4016.8374 -3950.4663 4016.9656 -3950.0183 4016.9351 C --3949.8601 4017.2439 -3950.2625 4017.4031 -3950.3943 4017.4214 C --3949.3513 4017.6206 L --3949.3977 4016.948 -3948.5537 4016.9463 -3948.5935 4016.3862 C --3949.7263 4017.083 L --3949.7722 4016.4119 -3949.0713 4015.175 -3948.3323 4015.2932 C --3948.1443 4015.561 -3948.4729 4016.49 -3948.4575 4016.7144 C --3948.3616 4016.4832 -3947.7561 4016.272 -3947.6882 4016.4363 C --3948.0017 4016.7959 L --3947.5903 4017.0486 -3947.3303 4015.9048 -3946.8359 4016.5464 C --3946.6653 4016.5896 -3946.3264 4017.4119 -3946.2969 4017.0144 C --3946.5752 4016.2471 -3946.6296 4013.8743 -3946.4441 4013.2979 C --3946.3843 4013.3499 -3945.5481 4014.031 -3945.3533 4014.4104 C --3945.0723 4015.012 -3945.7751 4015.844 -3945.5359 4016.3606 C --3945.5256 4016.1768 -3945.3704 4015.9502 -3945.3057 4015.8772 C --3945.1265 4016.0342 -3945.3799 4016.4463 -3944.9905 4016.363 C --3944.9255 4015.6824 -3944.1985 4016.4207 -3944.8064 4015.7871 C --3944.4255 4015.5923 -3944.4016 4015.9282 -3943.9543 4015.8975 C --3944.0967 4015.457 -3943.5527 4014.3992 -3943.1711 4014.2039 C --3943.1936 4014.3772 -3943.1079 4014.603 -3943.0664 4014.7063 C --3942.2856 4014.7676 -3941.8665 4015.0774 -3941.1384 4015.083 C --3941.0713 4015.2483 -3940.72 4015.448 -3940.8696 4015.7415 C --3940.7649 4015.6206 -3940.6687 4015.3894 -3940.4441 4015.373 C --3940.0095 4015.9624 -3940.9448 4015.4646 -3940.6135 4016.1736 C --3940.5852 4015.7776 -3940.0327 4015.6262 -3939.7129 4015.3792 C --3939.8113 4014.7671 -3940.4519 4015.2615 -3940.7722 4015.5088 C --3940.7737 4014.665 -3940.2161 4013.7815 -3939.4551 4013.3911 C --3938.8503 4013.1814 -3939.1929 4013.9363 -3939.0879 4013.8167 C --3937.9519 4013.9639 -3938.1201 4012.343 -3937.1768 4012.9524 C --3936.8025 4013.4895 -3937.1599 4014.021 -3937.0769 4014.4092 C --3937.5696 4014.6128 -3937.8333 4014.0679 -3938.1672 4014.0896 C --3937.7561 4014.344 L --3937.9128 4014.5232 -3938.2417 4014.6582 -3938.4209 4014.5032 C --3938.1072 4014.9856 -3936.5017 4014.5952 -3935.6252 4015.041 C --3935.4695 4014.8616 -3935.2007 4014.6743 -3935.3279 4014.4583 C --3935.6052 4014.5332 L --3935.8601 4014.0999 -3935.0833 4013.9336 -3935.4343 4013.7312 C --3935.0623 4013.4263 -3934.6453 4012.947 -3934.1216 4013.1924 C --3934.0232 4013.8054 L --3934.0344 4013.6262 -3934.3655 4013.4407 -3934.5127 4013.6272 c --3934.2944 4013.355 -3933.7097 4014.457 -3933.4705 4013.6543 C --3933.8376 4013.2295 L --3933.4641 4012.9214 -3933.0024 4012.2703 -3932.5383 4012.4639 C --3932.7495 4011.8584 -3 -endstream endobj 63 0 obj <>stream -932.6453 4012.5332 -3932.9751 4011.8247 C --3932.6892 4012.7063 -3934.1624 4011.7876 -3933.7031 4012.7134 C --3934.0415 4011.8916 -3934.2888 4012.3655 -3934.7312 4011.6638 C --3934.7175 4011.8662 -3934.5745 4012.051 -3934.9641 4011.9512 C --3934.9817 4012.0103 -3935.0232 4012.0852 -3935.0496 4012.1294 C --3935.0615 4012.1243 -3935.0657 4012.1206 -3935.0759 4012.1143 C --3935.0681 4012.1223 -3935.0623 4012.1311 -3935.0544 4012.1382 C --3935.0713 4012.1687 -3935.0728 4012.175 -3935.0464 4012.1462 C --3934.9536 4012.2356 -3934.8784 4012.3416 -3934.8479 4012.4539 C --3935.0413 4012.9182 -3935.6609 4012.9038 -3935.8704 4013.1443 C --3936.1016 4013.0479 -3935.7737 4012.9119 -3935.8999 4012.6963 C --3936.2129 4013.0559 L --3936.2439 4012.6072 -3936.8271 4012.3096 -3936.2825 4012.0464 C --3936.7727 4012.0264 L --3937.0613 4011.7747 -3937.4583 4011.6743 -3937.7031 4011.863 C --3937.9343 4011.7664 -3938.2871 4012.3606 -3938.0857 4012.0088 C --3938.8545 4012.2871 L --3938.8616 4012.175 L --3939.6201 4012.1184 -3940.4231 4012.9192 -3941.2903 4012.1079 C --3941.5457 4012.2212 -3941.8096 4012.3599 -3942.2368 4012.2327 C --3942.3201 4011.844 L --3942.6479 4011.979 -3943.3047 4011.4551 -3943.4456 4011.8599 C --3943.7993 4010.8142 -3945.0369 4011.6316 -3945.6135 4011.4463 C --3945.6353 4011.9536 L --3946.0322 4011.925 -3946.4128 4012.0696 -3946.9055 4012.2727 C --3946.8752 4012.7207 L --3947.3 4013.0884 -3947.9673 4012.4019 -3948.6392 4012.448 C --3948.5935 4012.2766 -3948.4231 4012.321 -3948.3025 4012.425 C --3949.1052 4011.4119 -3949.9961 4013.1614 -3950.7241 4012.4236 C --3950.9055 4012.5872 -3951.0369 4012.531 -3951.1641 4012.4192 C --3951.1472 4012.4175 -3951.1321 4012.4092 -3951.1191 4012.395 C --3951.1377 4012.3904 -3951.1653 4012.3887 -3951.1936 4012.3894 C --3951.2737 4012.3123 -3951.3562 4012.2227 -3951.4456 4012.1504 C --3951.3696 4012.26 -3951.2969 4012.3496 -3951.2336 4012.3911 C --3951.3735 4012.4004 -3951.5857 4012.4558 -3951.7937 4012.5686 C --3951.8823 4012.0872 L --3951.8992 4012.0935 -3951.9128 4012.0923 -3951.9304 4012.1006 C --3952.1345 4011.9231 -3952.0945 4012.3286 -3951.9856 4012.6912 C --3952.0903 4012.77 -3952.1863 4012.8655 -3952.2607 4012.9812 C --3952.4265 4012.2039 -3952.8064 4013.2432 -3953.0327 4012.4143 C --3953.1729 4012.8184 -3954.0784 4012.7183 -3954.1892 4013.5696 C --3954.1963 4013.4583 -3954.2576 4013.4055 -3954.1453 4013.3982 C --3954.3772 4013.3015 -3954.6089 4013.2046 -3954.8169 4013.4446 C --3954.9153 4012.8323 L --3955.4216 4013.655 L --3955.7292 4013.2822 -3955.8567 4013.0652 -3955.5513 4012.5942 C --3956.2888 4013.3196 -3956.1497 4012.8672 -3956.7769 4013.5852 C --3956.7463 4013.1895 L --3956.9705 4013.2046 -3957.3289 4013.7356 -3957.4641 4013.408 C --3957.9656 4012.655 -3959.9456 4013.304 -3961.2329 4012.604 C --3960.9832 4013.77 -3961.8313 4012.0823 -3961.8823 4012.9856 C --3961.9573 4012.7102 -3962.1367 4012.5542 -3961.9282 4012.3152 C --3962.5852 4012.5852 -3962.9153 4011.8772 -3963.3689 4012.6392 C --3963.4441 4012.3623 -3963.2283 4012.2356 -3963.2952 4012.071 C --3963.3479 4012.1311 -3963.5039 4012.311 -3963.5723 4012.1462 c --3963.6392 4011.9822 -3963.4761 4011.915 -3963.3721 4011.7952 C --3964.0432 4011.8416 -3964.1111 4012.6912 -3964.1599 4013.4883 C --3964.5 4013.1111 -3964.6697 4013.1638 -3964.9153 4013.687 C --3965.0337 4013.4263 -3965.2312 4013.1536 -3964.8142 4013.0598 C --3965.0488 4013.0215 -3966.2473 4012.6775 -3966.2712 4013.3167 C --3966.3447 4013.1543 -3966.5991 4013.269 -3966.6609 4013.343 C --3967.1873 4013.3047 -3967.2336 4013.2471 -3967.7505 4013.3079 C --3967.6072 4013.4119 L --3967.8113 4014.1831 -3968.0369 4013.584 -3968.4536 4013.6768 C --3968.4417 4013.5984 L --3969.3972 4013.0415 -3968.8542 4013.8643 -3969.7969 4013.229 C --3969.7456 4013.709 L --3969.8335 4014.74 -3970.5808 4013.1006 -3971.1279 4013.4951 C --3970.9304 4013.769 L --3971.2292 4014.1223 -3971.7656 4012.3662 -3972.0657 4012.2371 C --3972.1311 4012.1472 -3971.9624 4012.0935 -3971.8711 4012.0276 C --3972.6567 4011.4182 -3971.9729 4012.655 -3972.5583 4012.8015 C --3972.6663 4012.4624 -3972.4192 4011.9392 -3972.8132 4011.876 C --3973.0095 4011.6023 -3973.9561 4012.9768 -3974.4937 4012.3267 C --3974.3752 4012.5879 -3974.2576 4012.8484 -3974.5295 4013.0447 C --3974.9463 4013.1382 -3975.6563 4012.0579 -3976.0327 4012.8816 C --3976.0857 4012.8096 -3976.1057 4012.7415 -3976.1079 4012.6763 C --3976.4265 4012.8887 -3977.1433 4013.0291 -3977.3352 4013.4756 C --3977.6296 4011.8191 -3979.3159 4014.2815 -3979.3088 4012.7534 C --3980.2888 4012.8352 L --3980.2632 4012.6792 L --3980.8896 4012.5784 -3981.1111 4012.9446 -3981.3313 4013.311 C --3981.4761 4013.207 -3981.3704 4013.064 -3981.3584 4012.9846 C --3982.2737 4012.6763 -3982.3647 4012.7415 -3983.1321 4013.5032 C --3983.2119 4013.0071 L --3983.4199 4013.2952 -3984.5352 4012.2295 -3985.4329 4012.8079 C --3985.4241 4012.751 -3985.4055 4012.655 -3985.3342 4012.5852 C --3986.3442 4013.167 -3987.7522 4011.2112 -3988.1223 4013.0159 C --3988.7888 4013.4607 L --3987.9265 4013.6006 -3988.9172 4014.2444 -3988.5625 4014.5435 C --3988.9016 4014.6494 -3989.4392 4013.999 -3989.0225 4013.9063 C --3988.9573 4013.9966 L --3988.8042 4013.0559 -3990.0288 4013.6631 -3990.0056 4013.0222 C --3991.7024 4013.0696 -3993.3562 4012.5479 -3994.9456 4012.5078 C --3994.7625 4013.239 L --3995.3169 4013.1975 L --3995.4624 4013.0276 -3995.5122 4012.625 -3995.1167 4012.655 C --3995.3247 4012.24 -3995.78 4013.0032 -3995.7913 4013.1614 C --3996.5657 4012.8655 -3995.4888 4012.3086 -3995.7263 4012.291 C --3996.0488 4012.3455 L --3995.9761 4012.4312 L --3996.2375 4012.73 -3996.2607 4013.0471 -3996.7361 4013.0112 C --3997.0369 4012.8643 -3996.8904 4012.5598 -3997.0088 4012.532 C --3997.0081 4012.479 -3997.0481 4012.4551 -3997.1904 4012.5103 C --3997.8889 4012.448 L --3997.6096 4013.0254 L --3997.9192 4013.3103 -3998.2664 4012.9951 -3997.9441 4013.6494 c --3998.4172 4012.6404 -4000.5496 4013.2871 -4000.8401 4012.9744 C --4001.2737 4013.395 -4001.7017 4013.3875 -4002.2319 4013.3367 C --4002.1001 4013.457 -4002.0212 4014.1062 -4002.4785 4014.0271 C --4002.3113 4012.687 -4003.3159 4013.4456 -4003.6855 4012.4812 C --4003.3552 4013.1206 -4004.9856 4012.6392 -4004.4673 4013.5471 C --4004.8489 4013.4382 -4004.4905 4013.0454 -4004.78 4012.73 C --4005.6882 4013.249 -4006.7815 4012.3926 -4007.9041 4012.5679 C --4007.9216 4012.7444 -4007.7336 4013.0127 -4007.9744 4013.2747 C --4008.5671 4012.395 L --4008.7888 4012.4812 -4008.7712 4013.4104 -4009.1763 4012.8 C --4009.1191 4012.948 -4009.0337 4013.1707 -4009.1824 4013.2271 C --4011.3816 4012.3704 -4013.6763 4013.9292 -4015.9097 4012.3191 C --4015.6072 4012.6604 -4015.8088 4012.6936 -4016.0398 4012.7063 C --4015.8896 4012.7876 -4016.0432 4013.1404 -4016.0137 4013.3792 C --4016.9487 4012.7168 L --4017.1191 4013.3784 -4017.9512 4012.7615 -4018.0488 4013.3943 C --4017.7527 4013.28 L --4018.1465 4014.0271 -4017.2017 4014.9395 -4017.2593 4015.8975 C --4016.8184 4015.0486 -4016.0967 4017.1543 -4015.3733 4015.9395 C --4015.2136 4016.135 -4015.5095 4016.2483 -4015.4241 4016.4702 C --4015.2407 4016.0598 -4015.0193 4015.9744 -4014.6089 4016.1582 C --4014.6553 4016.26 L --4013.5024 4016.1599 -4013.0081 4016.5647 -4011.7129 4016.8342 C --4011.8088 4016.3606 L --4011.5305 4016.4236 -4011.4719 4016.5723 -4011.3416 4016.6912 C --4011.0222 4015.9727 -4012.1233 4016.6504 -4011.8323 4015.8584 C --4011.4631 4016.8223 -4009.8696 4015.8728 -4009.6201 4016.9683 C --4009.1919 4016.9744 -4009.7456 4016.4192 -4009.3176 4016.4263 C --4009.2041 4016.7227 L --4009.0959 4016.3408 L --4008.8152 4016.4038 -4008.6736 4016.7747 -4008.6631 4017.0254 C --4008.7312 4016.9956 -4008.8567 4017.0955 -4008.9297 4017.1172 C --4008.5657 4017.4663 -4007.9033 4016.9983 -4007.7783 4017.1118 C --4008.1897 4016.9292 L --4007.0212 4016.6519 -4005.5945 4017.041 -4004.4656 4016.4382 C --4004.5513 4016.2151 L --4003.6892 4015.8015 -4003.8608 4016.4607 -4002.9143 4016.269 C --4002.9487 4016.3223 L --4002.7593 4016.0999 -4002.5063 4015.9871 -4002.2473 4016.0127 C --4002.4863 4016.2747 -4001.7976 4016.521 -4002.1111 4016.811 C --4001.1763 4016.3672 -4001.6487 4016.4624 -4001.0313 4015.6316 C --4000.8889 4016.0032 L --4000.6785 4015.667 -4000.6609 4015.49 -4000.1882 4015.3943 C --4000.5759 4015.7124 -3999.8865 4015.959 -4000.3208 4016.3799 C --3999.3289 4017.1912 -3998.8479 4015.561 -3998.3928 4016.7471 C --3997.9373 4015.7207 -3999.2512 4016.1775 -3998.9961 4015.9575 C --3999.2097 4015.6223 -3998.6201 4015.1902 -3998.3088 4015.2932 C --3997.9919 4015.3167 -3997.77 4016.6072 -3996.9729 4016.5872 C --3997.0522 4016.5823 -3997.0576 4016.6604 -3997.1367 4016.655 C --3996.8384 4016.917 -3996.5522 4016.3008 -3996.1863 4016.7263 C --3995.9812 4016.105 -3995.7112 4016.7615 -3995.6521 4015.9702 C --3996.3833 4016.1536 L --3995.9688 4015.9463 -3995.5801 4015.02 -3994.8972 4015.4695 C --3994.9504 4015.6287 -3995.1536 4015.8391 -3995.2932 4015.9558 C --3995.0935 4016.1895 -3994.9087 4015.8015 -3994.7017 4016.041 C --3994.7607 4016.8335 -3995.5903 4016.2134 -3996.0344 4016.8174 C --3995.8201 4017.1519 -3995.1943 4016.2439 -3995.4175 4017.1016 c --3995.0967 4016.0112 -3994.6321 4017.24 -3994.0923 4016.4063 C --3994.1279 4016.8806 L --3994.0425 4016.8064 -3993.8655 4016.5823 -3993.7083 4016.5942 C --3993.9929 4017.2095 L --3993.5559 4016.6848 -3993.1504 4017.6692 -3992.7312 4017.3831 C --3993.6089 4017.3975 -3992.9282 4016.811 -3993.2993 4016.4646 C --3992.2168 4015.8296 -3992.6768 4017.7063 -3991.4648 4017.4783 C --3991.6289 4017.5454 -3992.0808 4017.1936 -3991.8242 4016.9734 C --3991.5935 4017.071 -3991.2888 4017.2534 -3991.1472 4017.5032 C --3990.3442 4017.4038 -3991.2705 4017.0144 -3990.9287 4016.7224 C --3990.6553 4017.3008 -3990.5344 4016.4871 -3990.1824 4016.3022 C --3990.1799 4016.7847 L --3989.2649 4017.0942 -3989.9373 4015.7791 -3989.1135 4016.1536 C --3989.4617 4016.8223 L --3989.0322 4016.6494 L --3989.1208 4017.1982 L --3988.6536 4016.791 -3988.5081 4016.896 -3988.0503 4017.0503 C --3988.1567 4016.7112 -3987.9905 4016.175 -3987.5852 4016.1599 C --3987.3088 4016.4463 -3987.74 4016.6184 -3987.1655 4016.5496 C --3987.2952 4016.8511 -3987.4373 4017.23 -3987.6873 4016.7864 C --3987.7129 4016.9436 -3987.8152 4017.0884 -3987.8416 4017.2444 C --3987.5439 4017.5735 -3987.0935 4017.3191 -3986.8855 4017.3142 C --3986.9656 4017.2964 -3987.0613 4017.2703 -3987.1104 4017.2024 C --3986.2776 4016.5332 L --3986.1465 4016.7144 -3986.2505 4016.8599 -3986.3535 4017.0032 C --3986.1848 4016.9502 -3986.0681 4016.7283 -3985.8201 4016.687 C --3985.8843 4017.0791 -3985.8689 4017.4839 -3986.22 4017.6687 C --3985.4265 4017.2334 L --3985.3735 4017.4038 -3985.0193 4017.7024 -3985.1223 4017.8462 C --3984.6824 4018.0767 -3984.0432 4017.0852 -3983.46 4017.3894 C --3983.4297 4017.3135 -3983.3689 4017.24 -3983.2449 4017.1848 C --3982.6968 4017.2732 -3982.2112 4017.7544 -3981.5615 4017.217 C --3981.1929 4017.9192 L --3980.6841 4017.7603 -3981.6919 4017.0342 -3980.8447 4016.769 C --3980.2449 4016.5447 -3980.6208 4017.3687 -3980.4104 4017.564 C --3980.1121 4017.2102 -3979.5935 4016.4888 -3979.0425 4017.061 C --3979.2249 4017.1936 -3979.3679 4017.0896 -3979.5383 4017.1416 C -f -1 D --3973.2632 4016.8296 m --3973.3848 4016.9312 -3973.6272 4017.2439 -3973.7161 4016.959 C --3973.5776 4016.4063 -3973.4705 4016.6707 -3973.2632 4016.8296 C -f --3963.7241 4015.6692 m --3963.8145 4015.8279 -3963.9543 4015.749 -3964.1121 4015.5667 C --3963.9976 4015.5271 -3963.8679 4015.5447 -3963.7241 4015.6692 C -f --3937.1511 4012.3096 m --3937.1563 4012.3174 -3937.1599 4012.3232 -3937.1641 4012.333 C --3937.4353 4012.145 -3937.3391 4012.22 -3937.1511 4012.3096 C -f -0 D --3936.5879 4012.519 m --3936.5313 4012.4524 -3936.5352 4012.3848 -3936.5591 4012.3174 C --3936.5984 4012.4392 -3936.7249 4012.448 -3936.8689 4012.4136 C --3936.8289 4012.5398 -3936.7561 4012.6272 -3936.5879 4012.519 C -f -1 D --3997.0713 4012.709 m --3996.9617 4012.8352 L --3997.2092 4012.9744 -3997.1399 4012.8484 -3997.0713 4012.709 C -f -*U -0 D --3964.8057 4016.3286 m --3964.8401 4016.2471 -3964.8496 4016.1575 -3964.8577 4016.0667 C --3964.9055 4016.1475 -3964.9065 4016.2415 -3964.8057 4016.3286 C -f --3983.4409 4017.395 m --3983.4473 4017.3911 -3983.4536 4017.3926 -3983.46 4017.3894 C --3983.4705 4017.4182 -3983.4761 4017.448 -3983.4792 4017.4768 C --3983.4409 4017.395 L -f --3945.3123 4016.6096 m --3945.4282 4016.5398 -3945.4929 4016.4524 -3945.5359 4016.3606 C --3945.5422 4016.4783 -3945.4895 4016.5784 -3945.3123 4016.6096 C -f --3933.6033 4011.6992 m --3933.9641 4011.8247 L --3933.7896 4011.8008 -3933.7273 4011.9063 -3933.6392 4011.9832 C --3933.6472 4011.8704 -3933.7161 4011.707 -3933.6033 4011.6992 C -f --3930.4719 4014.6848 m --3930.4192 4014.6255 -3930.3601 4014.6782 -3930.3081 4014.6184 C --3930.3225 4014.3943 L --3930.5471 4014.4087 -3930.7041 4014.5896 -3930.4719 4014.6848 C -f --3933.2693 4013.3022 m --3933.2407 4013.7083 -3933.0144 4013.5703 -3932.7617 4013.4951 C --3932.7769 4013.4966 -3932.7913 4013.5 -3932.8064 4013.4951 C --3932.7319 4012.9282 -3933.0012 4013.1152 -3933.2693 4013.3022 C -f --3932.7031 4013.4812 m --3932.6252 4013.4624 -3932.5457 4013.4524 -3932.4695 4013.4712 C --3932.4399 4013.2439 -3932.5642 4013.4236 -3932.7031 4013.4812 C -f --3935.8735 4012.25 m --3935.7537 4012.3542 -3935.7983 4011.7312 -3935.7305 4011.896 C --3935.5967 4011.3799 -3936.5295 4012.521 -3935.8735 4012.25 C -f --3933.0647 4014.6392 m --3933.1553 4014.1382 L --3933.2969 4014.5422 L --3933.0647 4014.6392 L -f --3935.0601 4014.271 m --3934.6563 4014.4104 L --3934.6624 4014.3264 -3934.6111 4014.2776 -3934.5481 4014.24 C --3934.7969 4014.2224 -3935.0696 4014.123 -3935.0601 4014.271 C -f --3934.5481 4014.24 m --3934.4185 4014.249 -3934.2952 4014.2383 -3934.2231 4014.1563 C --3934.2932 4014.1614 -3934.4441 4014.1782 -3934.5481 4014.24 C -f --3933.6167 4014.7896 m --3933.7361 4014.6851 L --3934.0212 4014.6487 L --3933.6167 4014.7896 L -f --3939.4009 4014.175 m --3939.8416 4014.3184 L --3939.8865 4014.49 -3939.7664 4014.5952 -3939.6023 4014.5271 C --3939.4968 4014.4072 -3939.3333 4014.3408 -3939.4009 4014.175 C -f --3938.0681 4015.5471 m --3938.1873 4015.4431 -3938.1953 4015.3311 -3938.2625 4015.1663 C --3938.2759 4015.7871 L --3938.0681 4015.5471 L -f --3939.3533 4015.6919 m --3939.3972 4015.8643 -3939.9929 4016.1863 -3939.4343 4016.1475 C --3939.3896 4015.9768 -3938.9482 4015.8335 -3939.3533 4015.6919 C -f --3945.9937 4014.9063 m --3945.8816 4014.8982 L --3945.8977 4013.8799 L --3945.9937 4014.9063 L -f --3951.8464 4017.343 m --3951.3242 4017.5872 -3951.7224 4016.7144 -3951.2505 4017.019 C --3951.1279 4016.7783 -3951.6362 4016.7703 -3951.5105 4016.5623 C --3951.8257 4016.8167 -3951.9912 4016.6736 -3951.8464 4017.343 C -f --3951.5105 4016.5623 m --3951.46 4016.5222 -3951.4065 4016.4734 -3951.3496 4016.408 C --3951.4409 4016.4712 -3951.4839 4016.52 -3951.5105 4016.5623 C -f --4017.5745 4012.1924 m --4017.9104 4011.98 L --4017.6936 4012.3223 L --4017.5745 4012.1924 L -f --4018.2192 4012.948 m --4018.2983 4012.2991 L --4018.5 4012.8862 L --4018.4241 4012.8572 -4018.2769 4012.8015 -4018.2192 4012.948 C -f --3972.3303 4018.1375 m --3972.3047 4017.9812 L --3972.3567 4017.8123 -3972.4353 4017.8 -3972.5928 4017.7732 C --3972.3303 4018.1375 L -f --3976.8848 4017.6519 m --3976.8064 4017.665 L --3976.9529 4017.0784 L --3976.8848 4017.6519 L -f --3980.7073 4018.4004 m --3980.5513 4018.425 -3980.3679 4018.2942 -3980.2112 4018.3196 C --3980.5513 4018.425 -3980.7495 4017.6692 -3980.7073 4018.4004 C -f -U -9 () XW -U -9 () XW -U -%AI8_EndBrushPattern -%AI8_BeginBrushPattern -(Unnamed Brush Pattern 45) 0 A -0 Xw -u -u -0 1 0 0 0 Xy -0 J 0 j 1 w 4 M []0 d 0 XR --7890 7890 m --7890 7859.3877 L --7865.1748 7859.3877 L --7865.1748 7890 L --7890 7890 L -n -0 O -0.258488 0.130922 0.134035 0.001434 0.784314 0.823529 0.847059 Xa --7890 7881.498 m --7865.1738 7881.498 L --7865.1738 7880.5142 L --7890 7880.5142 L --7890 7881.498 L -f -0.531884 0.324193 0.203311 0.042145 0.513726 0.6 0.694118 Xa --7890 7880.5176 m --7865.1738 7880.5176 L --7865.1738 7873.7935 L --7890 7873.7935 L --7890 7880.5176 L -f -0.258488 0.130922 0.134035 0.001434 0.784314 0.823529 0.847059 Xa --7890 7873.7959 m --7865.1738 7873.7959 L --7865.1738 7872.6367 L --7890 7872.6367 L --7890 7873.7959 L -f -0.420172 0.234684 0.133211 0.010101 0.627451 0.701961 0.792157 Xa --7865.1738 7872.6367 m --7865.1738 7860.5278 L --7890 7860.5278 L --7890 7872.6367 L --7865.1738 7872.6367 L -f -U -9 () XW -U -%AI8_EndBrushPattern -%AI8_BeginBrushPattern -(Unnamed Brush Pattern 47) 0 A -0 Xw -u -u -u -0 1 0 0 0 Xy -0 J 0 j 1 w 4 M []0 d 0 XR --7890 7890 m --7890 7859.3877 L --7859.3848 7859.3877 L --7859.3848 7890 L --7890 7890 L -n -0 O -0.258488 0.130922 0.134035 0.001434 0.784314 0.823529 0.847059 Xa --7859.3848 7880.5142 m --7868.8672 7880.5142 L --7868.8711 7889.998 L --7867.8896 7889.998 L --7867.8896 7881.4951 L --7859.3848 7881.4951 L --7859.3848 7880.5142 L -f -0.531884 0.324193 0.203311 0.042145 0.513726 0.6 0.694118 Xa --7859.3848 7873.7935 m --7875.5928 7873.791 L --7875.5928 7890 L --7868.8672 7890 L --7868.8672 7880.5132 L --7859.3848 7880.5132 L --7859.3848 7873.7935 L -f -0.258488 0.130922 0.134035 0.001434 0.784314 0.823529 0.847059 Xa --7859.3848 7872.6357 m --7876.7485 7872.6357 L --7876.7485 7889.999 L --7875.5957 7889.999 L --7875.5957 7873.791 L --7859.3848 7873.791 L --7859.3848 7872.6357 L -f -0.420172 0.234684 0.133211 0.010101 0.627451 0.701961 0.792157 Xa --7859.3848 7860.5244 m --7888.8594 7860.5244 L --7888.8594 7889.998 L --7876.7495 7890 L --7876.7495 7872.6357 L --7859.3848 7872.6357 L --7859.3848 7860.5244 L -f -0 0 0 0 1 1 1 Xa --7875.5918 7874.1533 m --7876.7207 7872.6733 l --7875.5918 7873.7959 l --7875.5918 7874.1533 l -f --7867.8896 7881.8096 m --7868.8232 7880.5615 l --7867.8896 7881.4951 l --7867.8896 7881.8096 l -f -U -9 () XW -U -9 () XW -U -%AI8_EndBrushPattern -%AI8_BeginBrushPattern -(Unnamed Brush Pattern 49) 0 A -0 Xw -u -u -u -0 1 0 0 0 Xy -0 J 0 j 1 w 4 M []0 d 0 XR --7890 7890 m --7859.3335 7890 L --7859.3335 7859.334 L --7890 7859.334 L --7890 7890 L -n -u -u -u -0 O -0.258488 0.130922 0.134035 0.001434 0.784314 0.823529 0.847059 Xa -1 XR --7881.4219 7889.9688 m --7880.5039 7889.9688 L --7880.5039 7868.8013 L --7859.3389 7868.8013 L --7859.3389 7867.8853 L --7881.4219 7867.8853 L --7881.4219 7889.9688 L -f -0.531884 0.324193 0.203311 0.042145 0.513726 0.6 0.694118 Xa -0 XR --7880.5039 7889.9688 m --7873.7539 7889.9688 L --7873.7539 7875.5527 L --7859.3389 7875.5527 L --7859.3389 7876.7173 L --7859.3389 7876.7173 L --7859.3389 7868.8013 L --7880.5039 7868.8013 L --7880.5039 7889.9688 L -f -0.258488 0.130922 0.134035 0.001434 0.784314 0.823529 0.847059 Xa -1 XR --7859.3389 7876.7173 m --7859.3389 7875.5527 L --7873.7539 7875.5527 L --7873.7539 7889.9688 L --7872.5889 7889.9688 L --7872.5889 7876.7173 L --7859.3389 7876.7173 L -f -0.420172 0.234684 0.133211 0.010101 0.627451 0.701961 0.792157 Xa -0 XR --7872.5889 7876.7173 m --7872.5889 7889.9688 L --7860.5039 7889.9688 L --7860.5352 7888.8135 L --7859.3389 7888.8135 L --7859.3389 7876.7173 L --7872.5889 7876.7173 L -f -U -9 () XW -1 Ap -1 XR --7890 7890 m --7890 7859.334 L --7859.3335 7859.334 L --7859.3335 7890 L --7890 7890 L -n -U -9 () XW -0 Ap -0 O -0 0 0 0 1 1 1 Xa -0 XR --7872.5986 7877.0796 m --7873.7285 7875.6016 l --7872.5986 7876.7212 L --7872.5986 7877.0796 l -f -%_/ArtDictionary : -%_(12.566368) /String (BBAccumRotation) , -%_; -%_ --7880.5 7869.1255 m --7881.3848 7867.9287 l --7880.5 7868.8101 L --7880.5 7869.1255 l -f -%_/ArtDictionary : -%_(12.566368) /String (BBAccumRotation) , -%_; -%_ -U -9 () XW -U -9 () XW -U -9 () XW -U -%AI8_EndBrushPattern -%AI5_End_NonPrinting-- -%AI5_Begin_NonPrinting -Np -%AI10_BeginSVGFilter -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(140%) /UnicodeString (xmlnode-nodevalue) , -(height) /UnicodeString (xmlnode-nodename) , -; (height) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(140%) /UnicodeString (xmlnode-nodevalue) , -(width) /UnicodeString (xmlnode-nodename) , -; (width) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(-20%) /UnicodeString (xmlnode-nodevalue) , -(x) /UnicodeString (xmlnode-nodename) , -; (x) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_AbgeflachteKanteMitSchatten_1) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(-20%) /UnicodeString (xmlnode-nodevalue) , -(y) /UnicodeString (xmlnode-nodename) , -; (y) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(4) /UnicodeString (xmlnode-nodevalue) , -(stdDeviation) /UnicodeString (xmlnode-nodename) , -; (stdDeviation) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feGaussianBlur) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(4) /UnicodeString (xmlnode-nodevalue) , -(dy) /UnicodeString (xmlnode-nodename) , -; (dy) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(4) /UnicodeString (xmlnode-nodevalue) , -(dx) /UnicodeString (xmlnode-nodename) , -; (dx) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(offsetBlur) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feOffset) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(lighting-color:white) /UnicodeString (xmlnode-nodevalue) , -(style) /UnicodeString (xmlnode-nodename) , -; (style) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(specularConstant) /UnicodeString (xmlnode-nodename) , -; (specularConstant) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(10) /UnicodeString (xmlnode-nodevalue) , -(specularExponent) /UnicodeString (xmlnode-nodename) , -; (specularExponent) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(5) /UnicodeString (xmlnode-nodevalue) , -(surfaceScale) /UnicodeString (xmlnode-nodename) , -; (surfaceScale) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(specOut) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(-20000) /UnicodeString (xmlnode-nodevalue) , -(z) /UnicodeString (xmlnode-nodename) , -; (z) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(-5000) /UnicodeString (xmlnode-nodevalue) , -(x) /UnicodeString (xmlnode-nodename) , -; (x) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(-10000) /UnicodeString (xmlnode-nodevalue) , -(y) /UnicodeString (xmlnode-nodename) , -; (y) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(fePointLight) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feSpecularLighting) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(in) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(specOut) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(specOut) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(k3) /UnicodeString (xmlnode-nodename) , -; (k3) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0) /UnicodeString (xmlnode-nodevalue) , -(k4) /UnicodeString (xmlnode-nodename) , -; (k4) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0) /UnicodeString (xmlnode-nodevalue) , -(k1) /UnicodeString (xmlnode-nodename) , -; (k1) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(k2) /UnicodeString (xmlnode-nodename) , -; (k2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(arithmetic) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(specOut) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(litPaint) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(offsetBlur) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMergeNode) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(litPaint) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMergeNode) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMerge) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(100%) /UnicodeString (xmlnode-nodevalue) , -(height) /UnicodeString (xmlnode-nodename) , -; (height) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(100%) /UnicodeString (xmlnode-nodevalue) , -(width) /UnicodeString (xmlnode-nodename) , -; (width) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(objectBoundingBox) /UnicodeString (xmlnode-nodevalue) , -(filterUnits) /UnicodeString (xmlnode-nodename) , -; (filterUnits) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0%) /UnicodeString (xmlnode-nodevalue) , -(x) /UnicodeString (xmlnode-nodename) , -; (x) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_Alpha_1) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0%) /UnicodeString (xmlnode-nodevalue) , -(y) /UnicodeString (xmlnode-nodename) , -; (y) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(turbulence) /UnicodeString (xmlnode-nodevalue) , -(type) /UnicodeString (xmlnode-nodename) , -; (type) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(2) /UnicodeString (xmlnode-nodevalue) , -(numOctaves) /UnicodeString (xmlnode-nodename) , -; (numOctaves) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0.05) /UnicodeString (xmlnode-nodevalue) , -(baseFrequency) /UnicodeString (xmlnode-nodename) , -; (baseFrequency) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(noStitch) /UnicodeString (xmlnode-nodevalue) , -(stitchTiles) /UnicodeString (xmlnode-nodename) , -; (stitchTiles) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(turb) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feTurbulence) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(in) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(turb) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(100%) /UnicodeString (xmlnode-nodevalue) , -(height) /UnicodeString (xmlnode-nodename) , -; (height) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(100%) /UnicodeString (xmlnode-nodevalue) , -(width) /UnicodeString (xmlnode-nodename) , -; (width) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(objectBoundingBox) /UnicodeString (xmlnode-nodevalue) , -(filterUnits) /UnicodeString (xmlnode-nodename) , -; (filterUnits) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0%) /UnicodeString (xmlnode-nodevalue) , -(x) /UnicodeString (xmlnode-nodename) , -; (x) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_Alpha_4) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0%) /UnicodeString (xmlnode-nodevalue) , -(y) /UnicodeString (xmlnode-nodename) , -; (y) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(fractalNoise) /UnicodeString (xmlnode-nodevalue) , -(type) /UnicodeString (xmlnode-nodename) , -; (type) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(4) /UnicodeString (xmlnode-nodevalue) , -(numOctaves) /UnicodeString (xmlnode-nodename) , -; (numOctaves) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0.1) /UnicodeString (xmlnode-nodevalue) , -(baseFrequency) /UnicodeString (xmlnode-nodename) , -; (baseFrequency) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(noStitch) /UnicodeString (xmlnode-nodevalue) , -(stitchTiles) /UnicodeString (xmlnode-nodename) , -; (stitchTiles) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(turb) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feTurbulence) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(in) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(turb) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_Dehnen_3) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(3) /UnicodeString (xmlnode-nodevalue) , -(radius) /UnicodeString (xmlnode-nodename) , -; (radius) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(dilate) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMorphology) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_Dehnen_6) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(6) /UnicodeString (xmlnode-nodevalue) , -(radius) /UnicodeString (xmlnode-nodename) , -; (radius) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(dilate) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMorphology) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_Erodieren_3) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(3) /UnicodeString (xmlnode-nodevalue) , -(radius) /UnicodeString (xmlnode-nodename) , -; (radius) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(erode) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMorphology) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_Erodieren_6) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(6) /UnicodeString (xmlnode-nodevalue) , -(radius) /UnicodeString (xmlnode-nodename) , -; (radius) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(erode) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMorphology) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_GaußscherWeichzeichner_4) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(4) /UnicodeString (xmlnode-nodevalue) , -(stdDeviation) /UnicodeString (xmlnode-nodename) , -; (stdDeviation) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feGaussianBlur) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_GaußscherWeichzeichner_7) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(7) /UnicodeString (xmlnode-nodevalue) , -(stdDeviation) /UnicodeString (xmlnode-nodename) , -; (stdDeviation) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feGaussianBlur) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(150%) /UnicodeString (xmlnode-nodevalue) , -(height) /UnicodeString (xmlnode-nodename) , -; (height) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(150%) /UnicodeString (xmlnode-nodevalue) , -(width) /UnicodeString (xmlnode-nodename) , -; (width) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(objectBoundingBox) /UnicodeString (xmlnode-nodevalue) , -(filterUnits) /UnicodeString (xmlnode-nodename) , -; (filterUnits) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(-10%) /UnicodeString (xmlnode-nodevalue) , -(x) /UnicodeString (xmlnode-nodename) , -; (x) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_Holzmaserung) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(-10%) /UnicodeString (xmlnode-nodevalue) , -(y) /UnicodeString (xmlnode-nodename) , -; (y) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(4) /UnicodeString (xmlnode-nodevalue) , -(stdDeviation) /UnicodeString (xmlnode-nodename) , -; (stdDeviation) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feGaussianBlur) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(4) /UnicodeString (xmlnode-nodevalue) , -(dy) /UnicodeString (xmlnode-nodename) , -; (dy) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(4) /UnicodeString (xmlnode-nodevalue) , -(dx) /UnicodeString (xmlnode-nodename) , -; (dx) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(offsetBlurredAlpha) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(offset) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feOffset) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(flood-color:black; flood-opacity:0.4) /UnicodeString (xmlnode-nodevalue) , -(style) /UnicodeString (xmlnode-nodename) , -; (style) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(color) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(color) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feFlood) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(in) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(offsetBlurredAlpha) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(offsetBlurredAlpha) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(color) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(shadowColor) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(resultScale) /UnicodeString (xmlnode-nodename) , -; (resultScale) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(white) /UnicodeString (xmlnode-nodevalue) , -(lighting-color) /UnicodeString (xmlnode-nodename) , -; (lighting-color) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(diffuseConstant) /UnicodeString (xmlnode-nodename) , -; (diffuseConstant) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(5) /UnicodeString (xmlnode-nodevalue) , -(surfaceScale) /UnicodeString (xmlnode-nodename) , -; (surfaceScale) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(diffuse) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(diffuse) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(60) /UnicodeString (xmlnode-nodevalue) , -(elevation) /UnicodeString (xmlnode-nodename) , -; (elevation) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(135) /UnicodeString (xmlnode-nodevalue) , -(azimuth) /UnicodeString (xmlnode-nodename) , -; (azimuth) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(light2) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feDistantLight) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feDiffuseLighting) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(specularConstant) /UnicodeString (xmlnode-nodename) , -; (specularConstant) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(10) /UnicodeString (xmlnode-nodevalue) , -(specularExponent) /UnicodeString (xmlnode-nodename) , -; (specularExponent) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(white) /UnicodeString (xmlnode-nodevalue) , -(lighting-color) /UnicodeString (xmlnode-nodename) , -; (lighting-color) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(5) /UnicodeString (xmlnode-nodevalue) , -(surfaceScale) /UnicodeString (xmlnode-nodename) , -; (surfaceScale) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(specularOut) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(60) /UnicodeString (xmlnode-nodevalue) , -(elevation) /UnicodeString (xmlnode-nodename) , -; (elevation) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(135) /UnicodeString (xmlnode-nodevalue) , -(azimuth) /UnicodeString (xmlnode-nodename) , -; (azimuth) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(light) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feDistantLight) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feSpecularLighting) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(in) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(specularOut) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(specularOut) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0) /UnicodeString (xmlnode-nodevalue) , -(k3) /UnicodeString (xmlnode-nodename) , -; (k3) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0) /UnicodeString (xmlnode-nodevalue) , -(k4) /UnicodeString (xmlnode-nodename) , -; (k4) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(k1) /UnicodeString (xmlnode-nodename) , -; (k1) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0) /UnicodeString (xmlnode-nodevalue) , -(k2) /UnicodeString (xmlnode-nodename) , -; (k2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(arithmetic) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(diffuse) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(litPaint) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(k3) /UnicodeString (xmlnode-nodename) , -; (k3) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0) /UnicodeString (xmlnode-nodevalue) , -(k4) /UnicodeString (xmlnode-nodename) , -; (k4) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0) /UnicodeString (xmlnode-nodevalue) , -(k1) /UnicodeString (xmlnode-nodename) , -; (k1) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(k2) /UnicodeString (xmlnode-nodename) , -; (k2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(arithmetic) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(specularOut) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(litPaint) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(litPaint) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(offsetBlurredAlpha) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMergeNode) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(litPaint) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMergeNode) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMerge) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(fractalNoise) /UnicodeString (xmlnode-nodevalue) , -(type) /UnicodeString (xmlnode-nodename) , -; (type) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(10) /UnicodeString (xmlnode-nodevalue) , -(numOctaves) /UnicodeString (xmlnode-nodename) , -; (numOctaves) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(.05) /UnicodeString (xmlnode-nodevalue) , -(baseFrequency) /UnicodeString (xmlnode-nodename) , -; (baseFrequency) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(noStitch) /UnicodeString (xmlnode-nodevalue) , -(stitchTiles) /UnicodeString (xmlnode-nodename) , -; (stitchTiles) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(Turbulence) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feTurbulence) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(matrix) /UnicodeString (xmlnode-nodevalue) , -(type) /UnicodeString (xmlnode-nodename) , -; (type) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1) /UnicodeString (xmlnode-nodevalue) , -(values) /UnicodeString (xmlnode-nodename) , -; (values) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(Grayscale) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(Turbulence) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feColorMatrix) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(4) /UnicodeString (xmlnode-nodevalue) , -(stdDeviation) /UnicodeString (xmlnode-nodename) , -; (stdDeviation) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(BlurredAlpha) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feGaussianBlur) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(-5) /UnicodeString (xmlnode-nodevalue) , -(dy) /UnicodeString (xmlnode-nodename) , -; (dy) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(-4) /UnicodeString (xmlnode-nodevalue) , -(dx) /UnicodeString (xmlnode-nodename) , -; (dx) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(OffsetBlurredAlpha) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(BlurredAlpha) /UnicodeString -endstream endobj 64 0 obj <>stream -(xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feOffset) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(in) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(OffsetBlurredAlpha) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(CompBlurTurb) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(Grayscale) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1.5) /UnicodeString (xmlnode-nodevalue) , -(stdDeviation) /UnicodeString (xmlnode-nodename) , -; (stdDeviation) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(CompBlurTurb2) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(CompBlurTurb) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feGaussianBlur) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(CompXferFire) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(Grayscale) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(table) /UnicodeString (xmlnode-nodevalue) , -(type) /UnicodeString (xmlnode-nodename) , -; (type) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(2 0) /UnicodeString (xmlnode-nodevalue) , -(tableValues) /UnicodeString (xmlnode-nodename) , -; (tableValues) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feFuncR) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(table) /UnicodeString (xmlnode-nodevalue) , -(type) /UnicodeString (xmlnode-nodename) , -; (type) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(.7 0 ) /UnicodeString (xmlnode-nodevalue) , -(tableValues) /UnicodeString (xmlnode-nodename) , -; (tableValues) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feFuncG) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(table) /UnicodeString (xmlnode-nodevalue) , -(type) /UnicodeString (xmlnode-nodename) , -; (type) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(.1 0) /UnicodeString (xmlnode-nodevalue) , -(tableValues) /UnicodeString (xmlnode-nodename) , -; (tableValues) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feFuncB) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComponentTransfer) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(in) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(CompSourceFire) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(CompXferFire) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(MergeAll) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(CompSourceFire) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMergeNode) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMerge) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(140%) /UnicodeString (xmlnode-nodevalue) , -(height) /UnicodeString (xmlnode-nodename) , -; (height) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(110%) /UnicodeString (xmlnode-nodevalue) , -(width) /UnicodeString (xmlnode-nodename) , -; (width) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(objectBoundingBox) /UnicodeString (xmlnode-nodevalue) , -(filterUnits) /UnicodeString (xmlnode-nodename) , -; (filterUnits) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(-5%) /UnicodeString (xmlnode-nodevalue) , -(x) /UnicodeString (xmlnode-nodename) , -; (x) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_KühleBrise) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(-40%) /UnicodeString (xmlnode-nodevalue) , -(y) /UnicodeString (xmlnode-nodename) , -; (y) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1.2) /UnicodeString (xmlnode-nodevalue) , -(radius) /UnicodeString (xmlnode-nodename) , -; (radius) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(dilate) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(a) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(a) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMorphology) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1.2) /UnicodeString (xmlnode-nodevalue) , -(radius) /UnicodeString (xmlnode-nodename) , -; (radius) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(dilate) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(a) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMorphology) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(-4) /UnicodeString (xmlnode-nodevalue) , -(dy) /UnicodeString (xmlnode-nodename) , -; (dy) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b1) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b1) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feOffset) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(fractalNoise) /UnicodeString (xmlnode-nodevalue) , -(type) /UnicodeString (xmlnode-nodename) , -; (type) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(5) /UnicodeString (xmlnode-nodevalue) , -(numOctaves) /UnicodeString (xmlnode-nodename) , -; (numOctaves) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0.2) /UnicodeString (xmlnode-nodevalue) , -(baseFrequency) /UnicodeString (xmlnode-nodename) , -; (baseFrequency) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(noStitch) /UnicodeString (xmlnode-nodevalue) , -(stitchTiles) /UnicodeString (xmlnode-nodename) , -; (stitchTiles) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b2) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b1) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b2) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feTurbulence) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(3) /UnicodeString (xmlnode-nodevalue) , -(scale) /UnicodeString (xmlnode-nodename) , -; (scale) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b2) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b3) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b1) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b3) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(A) /UnicodeString (xmlnode-nodevalue) , -(yChannelSelector) /UnicodeString (xmlnode-nodename) , -; (yChannelSelector) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(R) /UnicodeString (xmlnode-nodevalue) , -(xChannelSelector) /UnicodeString (xmlnode-nodename) , -; (xChannelSelector) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feDisplacementMap) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(matrix) /UnicodeString (xmlnode-nodevalue) , -(type) /UnicodeString (xmlnode-nodename) , -; (type) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0) /UnicodeString (xmlnode-nodevalue) , -(values) /UnicodeString (xmlnode-nodename) , -; (values) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b4) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b3) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b4) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feColorMatrix) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(stdDeviation) /UnicodeString (xmlnode-nodename) , -; (stdDeviation) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b5) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b4) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b5) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(freeze) /UnicodeString (xmlnode-nodevalue) , -(fill) /UnicodeString (xmlnode-nodename) , -; (fill) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(none) /UnicodeString (xmlnode-nodevalue) , -(accumulate) /UnicodeString (xmlnode-nodename) , -; (accumulate) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(replace) /UnicodeString (xmlnode-nodevalue) , -(additive) /UnicodeString (xmlnode-nodename) , -; (additive) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(linear) /UnicodeString (xmlnode-nodevalue) , -(calcMode) /UnicodeString (xmlnode-nodename) , -; (calcMode) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(stdDeviation) /UnicodeString (xmlnode-nodevalue) , -(attributeName) /UnicodeString (xmlnode-nodename) , -; (attributeName) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(5s) /UnicodeString (xmlnode-nodevalue) , -(dur) /UnicodeString (xmlnode-nodename) , -; (dur) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(always) /UnicodeString (xmlnode-nodevalue) , -(restart) /UnicodeString (xmlnode-nodename) , -; (restart) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0s) /UnicodeString (xmlnode-nodevalue) , -(begin) /UnicodeString (xmlnode-nodename) , -; (begin) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(5) /UnicodeString (xmlnode-nodevalue) , -(to) /UnicodeString (xmlnode-nodename) , -; (to) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(from) /UnicodeString (xmlnode-nodename) , -; (from) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(animate) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feGaussianBlur) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(-8) /UnicodeString (xmlnode-nodevalue) , -(dy) /UnicodeString (xmlnode-nodename) , -; (dy) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c1) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c1) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feOffset) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(fractalNoise) /UnicodeString (xmlnode-nodevalue) , -(type) /UnicodeString (xmlnode-nodename) , -; (type) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(10) /UnicodeString (xmlnode-nodevalue) , -(numOctaves) /UnicodeString (xmlnode-nodename) , -; (numOctaves) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0.05) /UnicodeString (xmlnode-nodevalue) , -(baseFrequency) /UnicodeString (xmlnode-nodename) , -; (baseFrequency) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(noStitch) /UnicodeString (xmlnode-nodevalue) , -(stitchTiles) /UnicodeString (xmlnode-nodename) , -; (stitchTiles) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c2) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c1) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c2) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feTurbulence) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(8) /UnicodeString (xmlnode-nodevalue) , -(scale) /UnicodeString (xmlnode-nodename) , -; (scale) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c2) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c3) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c1) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c3) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(A) /UnicodeString (xmlnode-nodevalue) , -(yChannelSelector) /UnicodeString (xmlnode-nodename) , -; (yChannelSelector) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(R) /UnicodeString (xmlnode-nodevalue) , -(xChannelSelector) /UnicodeString (xmlnode-nodename) , -; (xChannelSelector) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feDisplacementMap) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(matrix) /UnicodeString (xmlnode-nodevalue) , -(type) /UnicodeString (xmlnode-nodename) , -; (type) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0) /UnicodeString (xmlnode-nodevalue) , -(values) /UnicodeString (xmlnode-nodename) , -; (values) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c4) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c3) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c4) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feColorMatrix) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(stdDeviation) /UnicodeString (xmlnode-nodename) , -; (stdDeviation) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c5) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c4) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c5) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feGaussianBlur) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c5) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMergeNode) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b5) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMergeNode) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(a) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMergeNode) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMerge) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(50 50) /UnicodeString (xmlnode-nodevalue) , -(filterRes) /UnicodeString (xmlnode-nodename) , -; (filterRes) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(objectBoundingBox) /UnicodeString (xmlnode-nodevalue) , -(filterUnits) /UnicodeString (xmlnode-nodename) , -; (filterUnits) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_Pixelspiel_1) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(remove) /UnicodeString (xmlnode-nodevalue) , -(fill) /UnicodeString (xmlnode-nodename) , -; (fill) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(indefinite) /UnicodeString (xmlnode-nodevalue) , -(repeatDur) /UnicodeString (xmlnode-nodename) , -; (repeatDur) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(none) /UnicodeString (xmlnode-nodevalue) , -(accumulate) /UnicodeString (xmlnode-nodename) , -; (accumulate) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(replace) /UnicodeString (xmlnode-nodevalue) , -(additive) /UnicodeString (xmlnode-nodename) , -; (additive) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(spline) /UnicodeString (xmlnode-nodevalue) , -(calcMode) /UnicodeString (xmlnode-nodename) , -; (calcMode) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(filterRes) /UnicodeString (xmlnode-nodevalue) , -(attributeName) /UnicodeString (xmlnode-nodename) , -; (attributeName) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(10s) /UnicodeString (xmlnode-nodevalue) , -(dur) /UnicodeString (xmlnode-nodename) , -; (dur) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(always) /UnicodeString (xmlnode-nodevalue) , -(restart) /UnicodeString (xmlnode-nodename) , -; (restart) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0s) /UnicodeString (xmlnode-nodevalue) , -(begin) /UnicodeString (xmlnode-nodename) , -; (begin) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1 1;20 15;200 200; 15 20;1 1 ) /UnicodeString (xmlnode-nodevalue) , -(values) /UnicodeString (xmlnode-nodename) , -; (values) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(animate) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(7) /UnicodeString (xmlnode-nodevalue) , -(stdDeviation) /UnicodeString (xmlnode-nodename) , -; (stdDeviation) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feGaussianBlur) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(in) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(compositeOut) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(k3) /UnicodeString (xmlnode-nodename) , -; (k3) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0) /UnicodeString (xmlnode-nodevalue) , -(k4) /UnicodeString (xmlnode-nodename) , -; (k4) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0) /UnicodeString (xmlnode-nodevalue) , -(k1) /UnicodeString (xmlnode-nodename) , -; (k1) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(k2) /UnicodeString (xmlnode-nodename) , -; (k2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(arithmetic) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(compositeOut1) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(compositeOut) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(compositeOut1) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMergeNode) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMerge) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(50 50) /UnicodeString (xmlnode-nodevalue) , -(filterRes) /UnicodeString (xmlnode-nodename) , -; (filterRes) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(objectBoundingBox) /UnicodeString (xmlnode-nodevalue) , -(filterUnits) /UnicodeString (xmlnode-nodename) , -; (filterUnits) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_Pixelspiel_2) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(remove) /UnicodeString (xmlnode-nodevalue) , -(fill) /UnicodeString (xmlnode-nodename) , -; (fill) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(indefinite) /UnicodeString (xmlnode-nodevalue) , -(repeatDur) /UnicodeString (xmlnode-nodename) , -; (repeatDur) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(none) /UnicodeString (xmlnode-nodevalue) , -(accumulate) /UnicodeString (xmlnode-nodename) , -; (accumulate) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(replace) /UnicodeString (xmlnode-nodevalue) , -(additive) /UnicodeString (xmlnode-nodename) , -; (additive) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(linear) /UnicodeString (xmlnode-nodevalue) , -(calcMode) /UnicodeString (xmlnode-nodename) , -; (calcMode) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(filterRes) /UnicodeString (xmlnode-nodevalue) , -(attributeName) /UnicodeString (xmlnode-nodename) , -; (attributeName) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(10s) /UnicodeString (xmlnode-nodevalue) , -(dur) /UnicodeString (xmlnode-nodename) , -; (dur) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(always) /UnicodeString (xmlnode-nodevalue) , -(restart) /UnicodeString (xmlnode-nodename) , -; (restart) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0s) /UnicodeString (xmlnode-nodevalue) , -(begin) /UnicodeString (xmlnode-nodename) , -; (begin) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(50 50;20 20;50 50) /UnicodeString (xmlnode-nodevalue) , -(values) /UnicodeString (xmlnode-nodename) , -; (values) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(animate) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(7) /UnicodeString (xmlnode-nodevalue) , -(stdDeviation) /UnicodeString (xmlnode-nodename) , -; (stdDeviation) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feGaussianBlur) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(resultScale) /UnicodeString (xmlnode-nodename) , -; (resultScale) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(yellow) /UnicodeString (xmlnode-nodevalue) , -(lighting-color) /UnicodeString (xmlnode-nodename) , -; (lighting-color) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(diffuseConstant) /UnicodeString (xmlnode-nodename) , -; (diffuseConstant) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(5) /UnicodeString (xmlnode-nodevalue) , -(surfaceScale) /UnicodeString (xmlnode-nodename) , -; (surfaceScale) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(diffuse) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(diffuse) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(remove) /UnicodeString (xmlnode-nodevalue) , -(fill) /UnicodeString (xmlnode-nodename) , -; (fill) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(indefinite) /UnicodeString (xmlnode-nodevalue) , -(repeatDur) /UnicodeString (xmlnode-nodename) , -; (repeatDur) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(none) /UnicodeString (xmlnode-nodevalue) , -(accumulate) /UnicodeString (xmlnode-nodename) , -; (accumulate) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(replace) /UnicodeString (xmlnode-nodevalue) , -(additive) /UnicodeString (xmlnode-nodename) , -; (additive) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(linear) /UnicodeString (xmlnode-nodevalue) , -(calcMode) /UnicodeString (xmlnode-nodename) , -; (calcMode) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(lighting-color) /UnicodeString (xmlnode-nodevalue) , -(attributeName) /UnicodeString (xmlnode-nodename) , -; (attributeName) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(15s) /UnicodeString (xmlnode-nodevalue) , -(dur) /UnicodeString (xmlnode-nodename) , -; (dur) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(always) /UnicodeString (xmlnode-nodevalue) , -(restart) /UnicodeString (xmlnode-nodename) , -; (restart) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0s) /UnicodeString (xmlnode-nodevalue) , -(begin) /UnicodeString (xmlnode-nodename) , -; (begin) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(yellow;green;blue;indigo;violet;red;orange) /UnicodeString (xmlnode-nodevalue) , -(values) /UnicodeString (xmlnode-nodename) , -; (values) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(animate) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(60) /UnicodeString (xmlnode-nodevalue) , -(elevation) /UnicodeString (xmlnode-nodename) , -; (elevation) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(180) /UnicodeString (xmlnode-nodevalue) , -(azimuth) /UnicodeString (xmlnode-nodename) , -; (azimuth) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feDistantLight) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feDiffuseLighting) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(10) /UnicodeString (xmlnode-nodevalue) , -(specularConstant) /UnicodeString (xmlnode-nodename) , -; (specularConstant) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(15) /UnicodeString (xmlnode-nodevalue) , -(specularExponent) /UnicodeString (xmlnode-nodename) , -; (specularExponent) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(red) /UnicodeString (xmlnode-nodevalue) , -(lighting-color) /UnicodeString (xmlnode-nodename) , -; (lighting-color) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(15) /UnicodeString (xmlnode-nodevalue) , -(surfaceScale) /UnicodeString (xmlnode-nodename) , -; (surfaceScale) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(specularOut) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(remove) /UnicodeString (xmlnode-nodevalue) , -(fill) /UnicodeString (xmlnode-nodename) , -; (fill) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(indefinite) /UnicodeString (xmlnode-nodevalue) , -(repeatDur) /UnicodeString (xmlnode-nodename) , -; (repeatDur) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(none) /UnicodeString (xmlnode-nodevalue) , -(accumulate) /UnicodeString (xmlnode-nodename) , -; (accumulate) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(replace) /UnicodeString (xmlnode-nodevalue) , -(additive) /UnicodeString (xmlnode-nodename) , -; (additive) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(linear) /UnicodeString (xmlnode-nodevalue) , -(calcMode) /UnicodeString (xmlnode-nodename) , -; (calcMode) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(lighting-color) /UnicodeString (xmlnode-nodevalue) , -(attributeName) /UnicodeString (xmlnode-nodename) , -; (attributeName) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(15s) /UnicodeString (xmlnode-nodevalue) , -(dur) /UnicodeString (xmlnode-nodename) , -; (dur) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(always) /UnicodeString (xmlnode-nodevalue) , -(restart) /UnicodeString (xmlnode-nodename) , -; (restart) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0s) /UnicodeString (xmlnode-nodevalue) , -(begin) /UnicodeString (xmlnode-nodename) , -; (begin) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(indigo;green;yellow;blue;violet;red;orange) /UnicodeString (xmlnode-nodevalue) , -(values) /UnicodeString (xmlnode-nodename) , -; (values) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(animate) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(60) /UnicodeString (xmlnode-nodevalue) , -(elevation) /UnicodeString (xmlnode-nodename) , -; (elevation) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(180) /UnicodeString (xmlnode-nodevalue) , -(azimuth) /UnicodeString (xmlnode-nodename) , -; (azimuth) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(light) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feDistantLight) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feSpecularLighting) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(in) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(specularOut) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(specularOut) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0) /UnicodeString (xmlnode-nodevalue) , -(k3) /UnicodeString (xmlnode-nodename) , -; (k3) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0) /UnicodeString (xmlnode-nodevalue) , -(k4) /UnicodeString (xmlnode-nodename) , -; (k4) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(k1) /UnicodeString (xmlnode-nodename) , -; (k1) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0) /UnicodeString (xmlnode-nodevalue) , -(k2) /UnicodeString (xmlnode-nodename) , -; (k2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(arithmetic) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(diffuse) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(litPaint) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(k3) /UnicodeString (xmlnode-nodename) , -; (k3) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0) /UnicodeString (xmlnode-nodevalue) , -(k4) /UnicodeString (xmlnode-nodename) , -; (k4) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0) /UnicodeString (xmlnode-nodevalue) , -(k1) /UnicodeString (xmlnode-nodename) , -; (k1) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(k2) /UnicodeString (xmlnode-nodename) , -; (k2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(arithmetic) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(specularOut) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(litPaint1) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(litPaint) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(litPaint1) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMergeNode) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMerge) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(objectBoundingBox) /UnicodeString (xmlnode-nodevalue) , -(filterUnits) /UnicodeString (xmlnode-nodename) , -; (filterUnits) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_Schatten_1) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(2) /UnicodeString (xmlnode-nodevalue) , -(stdDeviation) /UnicodeString (xmlnode-nodename) , -; (stdDeviation) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feGaussianBlur) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(4) /UnicodeString (xmlnode-nodevalue) , -(dy) /UnicodeString (xmlnode-nodename) , -; (dy) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(4) /UnicodeString (xmlnode-nodevalue) , -(dx) /UnicodeString (xmlnode-nodename) , -; (dx) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(offsetBlurredAlpha) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feOffset) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(offsetBlurredAlpha) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMergeNode) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMergeNode) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMerge) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(130%) /UnicodeString (xmlnode-nodevalue) , -(height) /UnicodeString (xmlnode-nodename) , -; (height) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(140%) /UnicodeString (xmlnode-nodevalue) , -(width) /UnicodeString (xmlnode-nodename) , -; (width) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(objectBoundingBox) /UnicodeString (xmlnode-nodevalue) , -(filterUnits) /UnicodeString (xmlnode-nodename) , -; (filterUnits) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(-15%) /UnicodeString (xmlnode-nodevalue) , -(x) /UnicodeString (xmlnode-nodename) , -; (x) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_Schatten_2) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(-15%) /UnicodeString (xmlnode-nodevalue) , -(y) /UnicodeString (xmlnode-nodename) , -; (y) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(6) /UnicodeString (xmlnode-nodevalue) , -(stdDeviation) /UnicodeString (xmlnode-nodename) , -; (stdDeviation) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feGaussianBlur) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(8) /UnicodeString (xmlnode-nodevalue) , -(dy) /UnicodeString (xmlnode-nodename) , -; (dy) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(8) /UnicodeString (xmlnode-nodevalue) , -(dx) /UnicodeString (xmlnode-nodename) , -; (dx) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(offsetBlurredAlpha) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feOffset) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(offsetBlurredAlpha) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMergeNode) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMergeNode) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMerge) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(objectBoundingBox) /UnicodeString (xmlnode-nodevalue) , -(filterUnits) /UnicodeString (xmlnode-nodename) , -; (filterUnits) , -/XMLNode : -/Dic -endstream endobj 65 0 obj <>stream -tionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_Statisch) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(fractalNoise) /UnicodeString (xmlnode-nodevalue) , -(type) /UnicodeString (xmlnode-nodename) , -; (type) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(10) /UnicodeString (xmlnode-nodevalue) , -(numOctaves) /UnicodeString (xmlnode-nodename) , -; (numOctaves) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0.5) /UnicodeString (xmlnode-nodevalue) , -(baseFrequency) /UnicodeString (xmlnode-nodename) , -; (baseFrequency) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(noStitch) /UnicodeString (xmlnode-nodevalue) , -(stitchTiles) /UnicodeString (xmlnode-nodename) , -; (stitchTiles) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c2) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c1) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c2) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(remove) /UnicodeString (xmlnode-nodevalue) , -(fill) /UnicodeString (xmlnode-nodename) , -; (fill) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(indefinite) /UnicodeString (xmlnode-nodevalue) , -(repeatDur) /UnicodeString (xmlnode-nodename) , -; (repeatDur) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(none) /UnicodeString (xmlnode-nodevalue) , -(accumulate) /UnicodeString (xmlnode-nodename) , -; (accumulate) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(replace) /UnicodeString (xmlnode-nodevalue) , -(additive) /UnicodeString (xmlnode-nodename) , -; (additive) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(linear) /UnicodeString (xmlnode-nodevalue) , -(calcMode) /UnicodeString (xmlnode-nodename) , -; (calcMode) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(baseFrequency) /UnicodeString (xmlnode-nodevalue) , -(attributeName) /UnicodeString (xmlnode-nodename) , -; (attributeName) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(5s) /UnicodeString (xmlnode-nodevalue) , -(dur) /UnicodeString (xmlnode-nodename) , -; (dur) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(always) /UnicodeString (xmlnode-nodevalue) , -(restart) /UnicodeString (xmlnode-nodename) , -; (restart) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0.7) /UnicodeString (xmlnode-nodevalue) , -(to) /UnicodeString (xmlnode-nodename) , -; (to) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0.5) /UnicodeString (xmlnode-nodevalue) , -(from) /UnicodeString (xmlnode-nodename) , -; (from) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(animate) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feTurbulence) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(in) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c2) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(100%) /UnicodeString (xmlnode-nodevalue) , -(height) /UnicodeString (xmlnode-nodename) , -; (height) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(100%) /UnicodeString (xmlnode-nodevalue) , -(width) /UnicodeString (xmlnode-nodename) , -; (width) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(objectBoundingBox) /UnicodeString (xmlnode-nodevalue) , -(filterUnits) /UnicodeString (xmlnode-nodename) , -; (filterUnits) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0%) /UnicodeString (xmlnode-nodevalue) , -(x) /UnicodeString (xmlnode-nodename) , -; (x) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_Verwirbelung_3) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0%) /UnicodeString (xmlnode-nodevalue) , -(y) /UnicodeString (xmlnode-nodename) , -; (y) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(turbulence) /UnicodeString (xmlnode-nodevalue) , -(type) /UnicodeString (xmlnode-nodename) , -; (type) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(8) /UnicodeString (xmlnode-nodevalue) , -(numOctaves) /UnicodeString (xmlnode-nodename) , -; (numOctaves) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0.05) /UnicodeString (xmlnode-nodevalue) , -(baseFrequency) /UnicodeString (xmlnode-nodename) , -; (baseFrequency) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(noStitch) /UnicodeString (xmlnode-nodevalue) , -(stitchTiles) /UnicodeString (xmlnode-nodename) , -; (stitchTiles) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(turb) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feTurbulence) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(in) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(turb) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(100%) /UnicodeString (xmlnode-nodevalue) , -(height) /UnicodeString (xmlnode-nodename) , -; (height) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(100%) /UnicodeString (xmlnode-nodevalue) , -(width) /UnicodeString (xmlnode-nodename) , -; (width) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(objectBoundingBox) /UnicodeString (xmlnode-nodevalue) , -(filterUnits) /UnicodeString (xmlnode-nodename) , -; (filterUnits) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0%) /UnicodeString (xmlnode-nodevalue) , -(x) /UnicodeString (xmlnode-nodename) , -; (x) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_Verwirbelung_5) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0%) /UnicodeString (xmlnode-nodevalue) , -(y) /UnicodeString (xmlnode-nodename) , -; (y) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(fractalNoise) /UnicodeString (xmlnode-nodevalue) , -(type) /UnicodeString (xmlnode-nodename) , -; (type) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(4) /UnicodeString (xmlnode-nodevalue) , -(numOctaves) /UnicodeString (xmlnode-nodename) , -; (numOctaves) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0.4) /UnicodeString (xmlnode-nodevalue) , -(baseFrequency) /UnicodeString (xmlnode-nodename) , -; (baseFrequency) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(noStitch) /UnicodeString (xmlnode-nodevalue) , -(stitchTiles) /UnicodeString (xmlnode-nodename) , -; (stitchTiles) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(turb) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feTurbulence) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(in) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(turb) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -%AI10_EndSVGFilter -%AI5_End_NonPrinting-- -%AI5_Begin_NonPrinting -Np -%AI14_BeginSymbol -(Kombinationsfeld) 0 A -0 Xw -u -u -0 O -9 0.7 0 0 0 Xy -0 J 0 j 1 w 4 M []0 d 0 XR -6.5 -10 m -6.5 -10 L --10.5 -10 L --10.5 10 L -6.5 10 L -6.5 10 L -8.15625 10 9.5 8.6582 9.5 7 C -9.5 -7 L -9.5 -8.65625 8.15625 -10 6.5 -10 C -Bb -1 (Unnamed gradient 1) 0 0 -90 1 1 0 0 1 0 0 1 Bg --0.000001 -20 -24 0.000001 -7879.5 7901 Xm --0.000001 -23.5 -24 0.000001 -7879.5 7924.5 Bc --0.000001 -20 -24 0.000001 -7879.5 7901 Bm --0.000001 -23.5 -24 0.000001 -7879.5 7881 Bc -f -0 BB -0 1 0 0 0 Xy -6.5 -11 m -6.5 -11 L --10.5 -11 L --10.5 -10 L -6.5 -10 L -6.5 -10 L -8.15625 -10 9.5 -8.65625 9.5 -7 C -9.5 7 L -9.5 8.6582 8.15625 10 6.5 10 C -6.5 10 L --9.5 10 L --10.5 10 L --10.5 11 L -6.5 11 L -6.5 11 L -8.70898 11 10.5 9.20898 10.5 7 C -10.5 -7 L -10.5 -9.20898 8.70898 -11 6.5 -11 C -Bb -1 (Unnamed gradient 2) 0 0 -90 1 1 0 0 1 0 0 1 Bg --0.000001 -22 -25 0.000001 -7878.5 7902 Xm --0.000001 -25 -25 0.000001 -7878.5 7927 Bc --0.000001 -22 -25 0.000001 -7878.5 7902 Bm --0.000001 -25 -25 0.000001 -7878.5 7880 Bc -f -0 BB -U -9 () XW -0.690608 0.595209 0.559747 0.655817 0.2 0.2 0.2 Xa --3.5 -2 m -2.5 -2 L --0.5 2 l --3.5 -2 L -f -U -%_/ArtDictionary : -%_0 17 18 4 0 0 /RealMatrix -%_ (AI13Pattern9SliceScalingGridKey) , -%_5 /Int (AI13PatternRegistrationType) , -%_0 /Bool (AI15PixelPerfectSymbolEnablekey) , -%_1 /Bool (AI13PatternEnableGuides) , -%_2 /Int (AI13PatternExportType) , -%_; -%_ -9 () XW -%AI10_EndSymbol -%AI14_BeginSymbol -(Schaltfläche) 0 A -0 Xw -u -*u -1 D -0 O -0 1 0 0 0 Xy -0 J 0 j 1 w 4 M []0 d 0 XR -0 g -28.0005 -11 m -28 -11 L --28 -11 L --30.21 -11 -32 -9.20898 -32 -7 C --32 7 L --32 9.20801 -30.21 10.999 -28 11 C -28 11 L -28.0005 11 L -30.2085 11 32 9.20898 32 7 C -32 -7 L -32 -9.20898 30.2085 -11 28.0005 -11 C -f -0 D -31 7 m -31 8.6582 29.6563 10 28.0005 10 C -28 10 L --28 10 L --29.6572 9.99902 -31 8.65625 -31 7 C --31 -7 L --31 -8.65527 -29.6572 -10 -28 -10 C -28 -10 L -28.0005 -10 L -29.6563 -10 31 -8.65625 31 -7 C -31 7 L -Bb -1 (Unnamed gradient 2) 0 0 -90 1 1 0 0 1 0 0 1 Bg --0.000001 -22 -68 0.000003 -7857 7902 Xm --0.000001 -25 -68 0.000003 -7857 7927 Bc --0.000001 -22 -68 0.000003 -7857 7902 Bm --0.000001 -25 -68 0.000003 -7857 7880 Bc -f -0 BB -*U -9 0.85 0 0 0 Xy -28.0005 -10 m -28 -10 L -28 -10 L --28 -10 L --28 -10 L --29.6572 -10 -31 -8.65527 -31 -7 C --31 7 L --31 8.65625 -29.6572 9.99902 -28 10 C --28 10 L -28 10 L -28 10 L -28.0005 10 l -29.6563 10 31 8.6582 31 7 C -31 -7 L -31 -8.65625 29.6563 -10 28.0005 -10 c -Bb -1 (Unnamed gradient 3) 0 0 -90 1 1 0 0 1 0 0 1 Bg --0.000001 -20 -66 0.000003 -7858 7901 Xm --0.000001 -23 -66 0.000003 -7858 7924 Bc --0.000001 -20 -66 0.000003 -7858 7901 Bm --0.000001 -23 -66 0.000003 -7858 7881 Bc -f -0 BB -U -%_/ArtDictionary : -%_4 60 18 4 0 0 /RealMatrix -%_ (AI13Pattern9SliceScalingGridKey) , -%_5 /Int (AI13PatternRegistrationType) , -%_0 /Bool (AI15PixelPerfectSymbolEnablekey) , -%_1 /Bool (AI13PatternEnableGuides) , -%_2 /Int (AI13PatternExportType) , -%_; -%_ -9 () XW -%AI10_EndSymbol -%AI14_BeginSymbol -(Suchen) 0 A -0 Xw -u -1 Ap -0 O -1 1 0 0 0 Xy -0 J 0 j 1 w 4 M []0 d 0 XR -31 21.5322 m -31 24.0166 17.1211 26.0303 0 26.0303 c --17.1191 26.0303 -31 24.0166 -31 21.5322 c --31 19.0459 -17.1191 17.0303 0 17.0303 c -17.1211 17.0303 31 19.0459 31 21.5322 c -Bb -0 0 0 0 Bh -1 (Unnamed gradient 17) 0 0 0 1 1.4762 0 0 0.2143 -3789.1475 6144.7451 1 Bg -30.9986 0 0 -4.50006 -7891 7869.4692 Bm -f -0 BB -%_/ArtDictionary : -%_/Dictionary : /NotRecorded , -%_1.4762 0 0 0.2143 -3789.1475 6144.7451 /RealMatrix -%_ (CAIGradientTformMatrix) , -%_; (Adobe_AI9_ArtStyle_Dictionary) , -%_; -%_ -0 1 Xd -Bb -0 0 0 0 Bh -2 (Unnamed gradient 17) 0 0 0 1 1 0 0 1 0 0 1 Bg -0 BB -6 () XW -u -0 Ap -0 1 0 0 0 Xy -10 M -18.4502 21.9706 m --18.7514 21.9706 -19.0387 21.8438 -19.2384 21.6228 C --23.965 16.396 L --24.1564 16.1854 -24.2537 15.9123 -24.2398 15.6264 c --24.2259 15.3403 -24.1025 15.0776 -23.8923 14.8867 C --10.655 2.8613 L --10.4594 2.68388 -10.205 2.58601 -9.93892 2.58601 c --9.63749 2.58601 -9.35004 2.7128 -9.15027 2.93386 C --4.42351 8.15868 L --4.23263 8.36885 -4.13573 8.64198 -4.15001 8.92848 c --4.16429 9.21497 -4.28761 9.47757 -4.49724 9.66792 C --17.7366 21.6953 L --17.9317 21.873 -18.1849 21.9706 -18.4502 21.9706 C -Bb -0 0 0 0 Bh -1 (Unnamed gradient 28) -0.15047 0.64736 0 1.9211 1 0 0 1 0 0 1 Bg -18.1731 0 0 -18.1731 -7908.2183 7866.1729 Bm -f -0 BB -u -*u -0.478614 0.312474 0.290532 0.089723 0.54902 0.596078 0.627451 Xa --9.93896 3.08594 m --9.84473 3.08594 -9.66504 3.10986 -9.521 3.26953 C --4.79297 8.49561 L --4.65771 8.64453 -4.64502 8.81494 -4.64941 8.90381 C --4.65723 9.05713 -4.72217 9.19678 -4.8335 9.29785 C --18.0737 21.3262 L --18.1763 21.4194 -18.3096 21.4707 -18.4502 21.4707 C --18.5444 21.4707 -18.7236 21.4468 -18.8677 21.2871 C --23.5957 16.0591 L --23.8022 15.8315 -23.7842 15.4639 -23.5562 15.2568 C --10.3193 3.23193 L --10.2158 3.1377 -10.0806 3.08594 -9.93896 3.08594 C -F -1 D --9.93896 2.08594 m --10.3145 2.08594 -10.6919 2.21973 -10.9912 2.49121 C --24.2285 14.5166 L --24.8672 15.0967 -24.916 16.0928 -24.3359 16.7314 C --19.6094 21.958 L --19.3022 22.2979 -18.877 22.4707 -18.4502 22.4707 C --18.0747 22.4707 -17.6982 22.3369 -17.4004 22.0654 C --4.16113 10.0381 L --3.52441 9.45996 -3.47266 8.46191 -4.05273 7.82324 C --8.7793 2.59863 L --9.08643 2.25879 -9.51172 2.08594 -9.93896 2.08594 C --9.93896 2.08594 L -f -*U -U -0 0 Xd -6 () XW -U -0 0 Xd -6 () XW -%_0 D -%_-24.3359 16.7314 m -%_-24.916 16.0928 -24.8672 15.0967 -24.2285 14.5166 c -%_-10.9912 2.49121 l -%_-10.3516 1.91113 -9.35645 1.95996 -8.7793 2.59863 c -%_-4.05273 7.82324 l -%_-3.47266 8.46191 -3.52441 9.45996 -4.16113 10.0381 c -%_-17.4004 22.0654 l -%_-18.0371 22.6455 -19.0322 22.5967 -19.6094 21.958 c -%_-24.3359 16.7314 l -%_n -1 (Anon) XW -*u -0 O -0 R -0.478614 0.312474 0.290532 0.089723 0.54902 0.596078 0.627451 XA -4 M 0 g -7.40234 -25.5303 m -9.28125 -25.5303 11.1943 -25.2197 13.0703 -24.5713 C -22.1172 -21.4404 26.9102 -11.5713 23.7832 -2.52441 C -21.3018 4.64551 14.5879 9.14551 7.40234 9.14551 C -5.52344 9.14551 3.61328 8.83496 1.73438 8.18652 C --7.3125 5.05762 -12.1084 -4.81348 -8.97852 -13.8584 C --6.49707 -21.0283 0.219727 -25.5303 7.40234 -25.5303 C -B -1 D -7.40234 -20.374 m -2.21582 -20.374 -2.40918 -17.0791 -4.1084 -12.1729 C --5.1709 -9.09863 -4.97363 -5.7959 -3.55176 -2.86816 C --2.12988 0.055664 0.34668 2.25293 3.42188 3.31738 C -4.71191 3.76465 6.05176 3.99121 7.40234 3.99121 C -12.5889 3.99121 17.2139 0.696289 18.9131 -4.20801 C -19.9756 -7.28223 19.7783 -10.5869 18.3564 -13.5127 C -16.9346 -16.4404 14.458 -18.6377 11.3857 -19.7002 C -11.3857 -19.7002 L -10.0898 -20.1475 8.75 -20.374 7.40234 -20.374 C -7.40234 -20.374 L -Bb -0 0 0 0 Bh -1 (Unnamed gradient 28) 0.007548 0.433959 0 1.40083 1 0 0 1 0 0 1 Bg -17.0658 0 0 -17.0658 -7883.3364 7884.1445 Bm -b -2 BB -*U -u -0 D -10 M -8.90137 7.71973 m --8.35059 7.21973 -7.53711 7.19043 -6.95215 7.59863 C --9.96973 4.26465 L --22.5664 15.708 L --20.3691 18.1377 L --8.90137 7.71973 L -Bb -1 (Unnamed gradient 7) -3.81729 0 -49.4846 6.03541 1 0 0 1 0 0 1 Bg -17.6244 -20.6243 -16.0703 -13.7328 -7910.499 7901.1626 Xm -33.9039 -39.6748 -16.0703 -13.7328 -7944.4028 7940.8374 Bc -17.6244 -20.6243 -16.0703 -13.7328 -7910.499 7901.1626 Bm -33.9039 -39.6748 -16.0703 -13.7328 -7892.8745 7880.5381 Bc -f -0 BB -U -%_/ArtDictionary : -%_0 /Int (AI10 compound shape mode) , -%_; -%_ -2 1 0 0 0 Xy -0 0 Xd -6 () XW -%_-8.90137 7.71973 m -%_-8.35059 7.21973 -7.53711 7.19043 -6.95215 7.59863 C -%_-9.96973 4.26465 L -%_-22.5664 15.708 L -%_-20.3691 18.1377 L -%_-8.90137 7.71973 L -%_n -%_/ArtDictionary : -%_0 /Int (AI10 compound shape mode) , -%_; -%_ -1 (Anon 437) XW -0 O -4 M 12.5801 -23.1553 m -10.9014 -23.7354 9.16016 -24.0283 7.40234 -24.0283 c -0.65918 -24.0283 -5.35449 -19.7451 -7.56152 -13.3682 c --9.3125 -8.30762 -8.32813 -2.95605 -5.40723 1.08691 C --5.00293 -0.069336 -4.43066 -1.18066 -3.72559 -2.23926 C --3.80273 -2.38379 -3.88965 -2.52051 -3.96191 -2.66895 c --5.43652 -5.70605 -5.6416 -9.13379 -4.53906 -12.3232 c --2.77637 -17.4111 2.02148 -20.8291 7.40234 -20.8291 c -8.80078 -20.8291 10.1904 -20.5947 11.5352 -20.1299 c -14.7217 -19.0283 17.291 -16.749 18.7666 -13.7119 c -19.0146 -13.2021 19.2129 -12.6787 19.3887 -12.1494 C -19.7041 -12.1279 20.0215 -12.1143 20.3359 -12.0811 c -21.1885 -11.9932 22.0146 -11.8623 22.8184 -11.7021 C -21.6367 -16.8506 17.9277 -21.3037 12.5801 -23.1553 c -Bb -1 (Unnamed gradient 7) -0.837511 0 -63.554 2.1927 1 0 0 1 0 0 1 Bg -19.0977 -38.3947 -33.1435 -16.4857 -7881.2896 7936.3179 Xm -20.434 -41.0812 -33.1435 -16.4857 -7901.7231 7977.3994 Bc -19.0977 -38.3947 -33.1435 -16.4857 -7881.2896 7936.3179 Bm -20.434 -41.0812 -33.1435 -16.4857 -7862.1919 7897.9233 Bc -f -0 BB --6.4707 -11.915 m --4.26367 -18.292 1.75 -22.5752 8.49316 -22.5752 c -10.251 -22.5752 11.9922 -22.2822 13.6709 -21.7021 c -16.4521 -20.7393 18.7813 -19.0635 20.5557 -16.9619 C -18.7041 -19.7471 15.9766 -21.9795 12.5801 -23.1553 c -10.9014 -23.7354 9.16016 -24.0283 7.40234 -24.0283 c -0.65918 -24.0283 -5.35449 -19.7451 -7.56152 -13.3682 c --9.45313 -7.90137 -8.14941 -2.10254 -4.66309 2.02637 C --7.30762 -1.9502 -8.14941 -7.06348 -6.4707 -11.915 c -Bb -1 (Unnamed gradient 7) -0.284451 0 -62.8867 1.31311 1 0 0 1 0 0 1 Bg -11.6282 -22.7105 -32.3312 -16.5542 -7877.5737 7926.2744 Xm -13.8263 -27.0035 -32.3312 -16.5542 -7891.3999 7953.2778 Bc -11.6282 -22.7105 -32.3312 -16.5542 -7877.5737 7926.2744 Bm -13.8263 -27.0035 -32.3312 -16.5542 -7865.9453 7903.564 Bc -f -0 BB -u -0 1 0 0 0 Xy -10 M -9.12402 5.19824 m --9.96973 4.26465 L --22.5664 15.708 L --21.7207 16.6436 L --9.12402 5.19824 L -Bb -1 (Unnamed gradient 7) -0.125225 0 -65.913 1.33255 1 0 0 1 0 0 1 Bg -3.53784 -7.91375 -18.7709 -8.3915 -7899.1191 7888.4551 Xm -11.3559 -25.4018 -18.7709 -8.3915 -7910.4751 7913.8569 Bc -3.53784 -7.91375 -18.7709 -8.3915 -7899.1191 7888.4551 Bm -11.3559 -25.4018 -18.7709 -8.3915 -7895.5815 7880.541 Bc -f -0 BB -U -2 1 0 0 0 Xy -0 0 Xd -6 () XW -%_-9.12402 5.19824 m -%_-9.96973 4.26465 L -%_-22.5664 15.708 L -%_-21.7207 16.6436 L -%_-9.12402 5.19824 L -%_n -1 (Anon 438) XW -U -%_/ArtDictionary : -%_15.5 46.5 39.0454 13.0151 0 0 /RealMatrix -%_ (AI13Pattern9SliceScalingGridKey) , -%_5 /Int (AI13PatternRegistrationType) , -%_0 /Bool (AI15PixelPerfectSymbolEnablekey) , -%_0 /Bool (AI13PatternEnableGuides) , -%_2 /Int (AI13PatternExportType) , -%_; -%_ -9 () XW -%AI10_EndSymbol -%AI14_BeginSymbol -(Textbereich) 0 A -0 Xw -u -1 Ap -0 R -0.702296 0.157443 0 0 0.2 0.662745 0.882353 XA -0 1 0 0 0 Xy -0 J 0 j 0.991358 w 4 M []0 d 0 XR -77.5 45.5 m --77.5 45.5 L --77.5 -45.5 L -77.5 -45.5 L -77.5 45.5 L -s -0 0.6 0 0 0 Xy -1.00864 w 78.5 46.5 m --78.5 46.5 L --78.5 -46.5 L -78.5 -46.5 L -78.5 46.5 L -s -U -%_/ArtDictionary : -%_2.0811 156.0811 91.4609 2.4609 0 0 /RealMatrix -%_ (AI13Pattern9SliceScalingGridKey) , -%_5 /Int (AI13PatternRegistrationType) , -%_0 /Bool (AI15PixelPerfectSymbolEnablekey) , -%_1 /Bool (AI13PatternEnableGuides) , -%_2 /Int (AI13PatternExportType) , -%_; -%_ -9 () XW -%AI10_EndSymbol -%AI14_BeginSymbol -(Texteingabe) 0 A -0 Xw -u -0 Ap -0 R -0.702296 0.157443 0 0 0.2 0.662745 0.882353 XA -0 1 0 0 0 Xy -0 J 0 j 1 w 4 M []0 d 0 XR -77.5 11.5 m --77.5 11.5 L --77.5 -11.5 L -77.5 -11.5 L -77.5 11.5 L -s -0 0.6 0 0 0 Xy -78.5 12.5 m --78.5 12.5 L --78.5 -12.5 L -78.5 -12.5 L -78.5 12.5 L -s -U -%_/ArtDictionary : -%_1.7002 155.7002 24 2 0 0 /RealMatrix -%_ (AI13Pattern9SliceScalingGridKey) , -%_5 /Int (AI13PatternRegistrationType) , -%_0 /Bool (AI15PixelPerfectSymbolEnablekey) , -%_1 /Bool (AI13PatternEnableGuides) , -%_2 /Int (AI13PatternExportType) , -%_; -%_ -9 () XW -%AI10_EndSymbol -%AI5_End_NonPrinting-- -%AI5_Begin_NonPrinting -Np -%AI8_BeginPluginObject -(Adobe Brush Manager Order) -(Adobe Brush Manager Order) -( Adobe Calligraphic Brush Tool/ Rund - 3 Pt./ Adobe Calligraph) - -(ic Brush Tool/ Rund - 10 Pt./ Adobe Calligraphic Brush Tool/ O) - -(val - 3 Pt./ Adobe ArtOnPath Brush Tool/ Kohle - Feder/ Adobe ) - -(dBrush Brush Tool/ Stupfpinsel/ Adobe PatternOnPath Brush Tool) - -(/ Silber/) . -%AI8_EndPluginObject -%AI5_End_NonPrinting-- -%AI5_Begin_NonPrinting -Np -%AI8_BeginPluginObject -(Adobe dBrush Brush Tool) -(Stupfpinsel) -(0 4 0.75 0.75 0.33 0.75 1 3 AI_BristleBrushLibary_CS5 02_Round) - -(_Blunt) . -%AI8_EndPluginObject -%AI5_End_NonPrinting-- -%AI5_Begin_NonPrinting -Np -%AI8_BeginPluginObject -(Adobe Calligraphic Brush Tool) -(Oval - 3 Pt.) -(1 3 3 26 74 15 15 0 1 0 0) . -%AI8_EndPluginObject -%AI8_BeginPluginObject -(Adobe Calligraphic Brush Tool) -(Rund - 10 Pt.) -(1 10 10 100 100 0 0 1 0 0 0) . -%AI8_EndPluginObject -%AI8_BeginPluginObject -(Adobe Calligraphic Brush Tool) -(Rund - 3 Pt.) -(1 3 3 100 100 0 0 0 0 0 0) . -%AI8_EndPluginObject -%AI5_End_NonPrinting-- -%AI5_Begin_NonPrinting -Np -%AI8_BeginPluginObject -(Adobe ArtOnPath Brush Tool) -(Kohle - Feder) -(2 / Unnamed 6/ / / / / 0 1 / 1 1 1 0 1 0 0 0 1 1 0 0 0 0 1) . -%AI8_EndPluginObject -%AI5_End_NonPrinting-- -%AI5_Begin_NonPrinting -Np -%AI8_BeginPluginObject -(Adobe PatternOnPath Brush Tool) -(Silber) -(2 / Unnamed Brush Pattern 45/ Unnamed Brush Pattern 49/ Unname) - -(d Brush Pattern 47/ / / 5 0.623529 0.67451 0.737255 / 1 0 1 0) - -( 1 0 0 0 1 1 0 0 0 0 0) . -%AI8_EndPluginObject -%AI5_End_NonPrinting-- -%AI5_Begin_NonPrinting -Np -%AI9_BeginArtStyles -/KnownStyle : -(Anon) /Name , -/ActiveStyle : -/CompoundFilter : -(Chain Style Filter) 0 0 /Filter , -1 /Visible , -/CompoundFilter : -(Stack Style Filter) 0 0 /Filter , -1 /Visible , -/CompoundFilter : -(Chain Style Filter) 0 0 /Filter , -1 /Visible , -/BasicFilter : -(Adobe Stroke Offset) 1 0 /Filter , -1 /Visible , -(Illustrator.exe) /PluginFileName , -(Konturverschiebung: Live-Effekt) /Title , -2 /FillOrStroke , -/Dictionary : /NotRecorded , -(Inside) /String (DisplayString) , -/StrokeStyle : 0 R -0.478614 0.312474 0.290532 0.089723 0.54902 0.596078 0.627451 XA -0 1 0 0 0 Xy -0 J 0 j 1 w 4 M []0 d 0 XR -1 0 Xd -/Def ; - (StrokeStyle) , -1 /Bool (StrokeOffsetInside) , -; /Dict ; - /Part , -/BasicFilter : -(Blend Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -/BlendStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -/Def ; - (BlendStyle) , -; /Dict ; - /Part , -; - /Part , -/BasicFilter : -(Conduit Filter) 0 0 /Filter , -1 /Visible , -; - /Part , -/CompoundFilter : -(Chain Style Filter) 0 0 /Filter , -1 /Visible , -/BasicFilter : -(Fill Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -0 /Bool (UseEvenOdd) , -/FillStyle : 0 O -0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -0 1 Xd -Bb -0 0 0 0 Bh -2 (Unnamed gradient 28) -0.15047 0.64736 0 1.9211 1 0 0 1 0 0 1 Bg -0 BB -/Def ; - (FillStyle) , -; /Dict ; - /Part , -/BasicFilter : -(Blend Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -/BlendStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -/Def ; - (BlendStyle) , -; /Dict ; - /Part , -; - /Part , -; - /Part , -/BasicFilter : -(Blend Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -/BlendStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -/Def ; - (BlendStyle) , -; /Dict ; - /Part , -; - -/Execution ; - /Def ; -/KnownStyle : -(Anon 437) /Name , -/ActiveStyle : -/CompoundFilter : -(Chain Style Filter) 0 0 /Filter , -1 /Visible , -/CompoundFilter : -(Stack Style Filter) 0 0 /Filter , -1 /Visible , -/CompoundFilter : -(Chain Style Filter) 0 0 /Filter , -1 /Visible , -/BasicFilter : -(Adobe Stroke Offset) 1 0 /Filter , -1 /Visible , -(Illustrator.exe) /PluginFileName , -(Konturverschiebung: Live-Effekt) /Title , -2 /FillOrStroke , -/Dictionary : /NotRecorded , -(Inside) /String (DisplayString) , -/StrokeStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -0 0 Xd -/Def ; - (StrokeStyle) , -1 /Bool (StrokeOffsetInside) , -; /Dict ; - /Part , -/BasicFilter : -(Blend Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -/BlendStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -/Def ; - (BlendStyle) , -; /Dict ; - /Part , -; - /Part , -/BasicFilter : -(Conduit Filter) 0 0 /Filter , -1 /Visible , -; - /Part , -/CompoundFilter : -(Chain Style Filter) 0 0 /Filter , -1 /Visible , -/BasicFilter : -(Fill Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -0 /Bool (UseEvenOdd) , -/FillStyle : 0 O -0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -0 1 Xd -Bb -2 (Unnamed gradient 7) -3.81729 0 -49.4846 6.03541 1 0 0 1 0 0 1 Bg -0 BB -/Def ; - (FillStyle) , -; /Dict ; - /Part , -/BasicFilter : -(Blend Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -/BlendStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -/Def ; - (BlendStyle) , -; /Dict ; - /Part , -; - /Part , -; - /Part , -/BasicFilter : -(Blend Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -/BlendStyle : 2 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -/Def ; - (BlendStyle) , -; /Dict ; - /Part , -; - -/Execution ; - /Def ; -/KnownStyle : -(Anon 438) /Name , -/ActiveStyle : -/CompoundFilter : -(Chain Style Filter) 0 0 /Filter , -1 /Visible , -/CompoundFilter : -(Stack Style Filter) 0 0 /Filter , -1 /Visible , -/CompoundFilter : -(Chain Style Filter) 0 0 /Filter , -1 /Visible , -/BasicFilter : -(Adobe Stroke Offset) 1 0 /Filter , -1 /Visible , -(Illustrator.exe) /PluginFileName , -(Konturverschiebung: Live-Effekt) /Title , -2 /FillOrStroke , -/Dictionary : /NotRecorded , -(Inside) /String (DisplayString) , -/StrokeStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -0 0 Xd -/Def ; - (StrokeStyle) , -1 /Bool (StrokeOffsetInside) , -; /Dict ; - /Part , -/BasicFilter : -(Blend Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -/BlendStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -/Def ; - (BlendStyle) , -; /Dict ; - /Part , -; - /Part , -/BasicFilter : -(Conduit Filter) 0 0 /Filter , -1 /Visible , -; - /Part , -/CompoundFilter : -(Chain Style Filter) 0 0 /Filter , -1 /Visible , -/BasicFilter : -(Fill Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -0 /Bool (UseEvenOdd) , -/FillStyle : 0 O -0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -0 1 Xd -Bb -2 (Unnamed gradient 7) -0.125225 0 -65.913 1.33255 1 0 0 1 0 0 1 Bg -0 BB -/Def ; - (FillStyle) , -; /Dict ; - /Part , -/BasicFilter : -(Blend Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -/BlendStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -/Def ; - (BlendStyle) , -; /Dict ; - /Part , -; - /Part , -; - /Part , -/BasicFilter : -(Blend Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -/BlendStyle : 2 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -/Def ; - (BlendStyle) , -; /Dict ; - /Part , -; - -/Execution ; - /Def ; -/KnownStyle : -(Anon 458) /Name , -/SimpleStyle : -0 O -0.808438 0.673884 0.495369 0.548699 0.180392 0.203922 0.25098 Xa -0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -0 1 Xd -/Paint ; - /Def ; -/KnownStyle : -(Jive_GS) /Name , -/ActiveStyle : -/CompoundFilter : -(Chain Style Filter) 0 0 /Filter , -1 /Visible , -/CompoundFilter : -(Stack Style Filter) 0 0 /Filter , -1 /Visible , -/BasicFilter : -(Stroke Style Filter) 0 0 /Filter , -1 /Visible , -2 /FillOrStroke , -/Dictionary : /NotRecorded , -/StrokeStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -0 0 Xd -/Def ; - (StrokeStyle) , -; /Dict ; - /Part , -/BasicFilter : -(Conduit Filter) 0 0 /Filter , -1 /Visible , -; - /Part , -/BasicFilter : -(Fill Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -0 /Bool (UseEvenOdd) , -/FillStyle : 0 O -(Jive) 0 0 1 1 0 0 0 0 0 [0 1.47 -1.47 0 3405.7441 19244.7109] p -0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -0 1 Xd -/Def ; - (FillStyle) , -; /Dict ; - /Part , -/BasicFilter : -(Fill Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -0 /Bool (UseEvenOdd) , -/FillStyle : 0 O -0.389013 0.068635 0.08426 0 0.65098 0.815686 0.894118 Xa -0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -0 1 Xd -/Def ; - (FillStyle) , -; /Dict ; - /Part , -; - /Part , -/BasicFilter : -(Blend Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -/BlendStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -/Def ; - (BlendStyle) , -; /Dict ; - /Part , -; - -/Execution ; - /Def ; -/KnownStyle : -(Schein nach außen - 5 Pt.) /Name , -/ActiveStyle : -/CompoundFilter : -(Chain Style Filter) 0 0 /Filter , -1 /Visible , -/CompoundFilter : -(Stack Style Filter) 0 0 /Filter , -1 /Visible , -/BasicFilter : -(Stroke Style Filter) 0 0 /Filter , -1 /Visible , -2 /FillOrStroke , -/Dictionary : /NotRecorded , -/StrokeStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -0 0 Xd -/Def ; - (StrokeStyle) , -; /Dict ; - /Part , -/BasicFilter : -(Conduit Filter) 0 0 /Filter , -1 /Visible , -; - /Part , -/BasicFilter : -(Fill Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -0 /Bool (UseEvenOdd) , -/FillStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -0 0 Xd -/Def ; - (FillStyle) , -; /Dict ; - /Part , -; - /Part , -/BasicFilter : -(Adobe Outer Glow) 1 0 /Filter , -1 /Visible , -(Drop Shadow.aip) /PluginFileName , -(Schein nach au\337en) /Title , -/Dictionary : /NotRecorded , -1 /Bool (usePSLBlur) , -/FillStyle : 0 O -0.912474 0.787625 0.619837 0.97467 0 0 0 Xa -0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -0 1 Xd -/Def ; - (sclr) , -0.75 /Real (opac) , -5 /Real (blur) , -2 /Int (blnd) , -16 /Int (Adobe Effect Expand Before Version) , -; /Dict ; - /Part , -/BasicFilter : -(Blend Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -/BlendStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -/Def ; - (BlendStyle) , -; /Dict ; - /Part , -; - -/Execution ; - /Def ; -/KnownStyle : -(Schlagschatten) /Name , -/ActiveStyle : -/CompoundFilter : -(Chain Style Filter) 0 0 /Filter , -1 /Visible , -/CompoundFilter : -(Stack Style Filter) 0 0 /Filter , -1 /Visible , -/BasicFilter : -(Stroke Style Filter) 0 0 /Filter , -1 /Visible , -2 /FillOrStroke , -/Dictionary : /NotRecorded , -/StrokeStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -0 0 Xd -/Def ; - (StrokeStyle) , -; /Dict ; - /Part , -/BasicFilter : -(Conduit Filter) 0 0 /Filter , -1 /Visible , -; - /Part , -/BasicFilter : -(Fill Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -0 /Bool (UseEvenOdd) , -/FillStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -0 0 Xd -/Def ; - (FillStyle) , -; /Dict ; - /Part , -; - /Part , -/BasicFilter : -(Adobe Drop Shadow) 1 0 /Filter , -1 /Visible , -(Drop Shadow.aip) /PluginFileName , -(Schlagschatten) /Title , -/Dictionary : /NotRecorded , -1 /Bool (pair) , -7 /Real (vert) , -50 /Real (dark) , -7 /Real (horz) , -1 /Int (csrc) , -1 /Bool (usePSLBlur) , -/FillStyle : 0 O -0.912474 0.787625 0.619837 0.97467 0 0 0 Xa -0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -0 1 Xd -/Def ; - (sclr) , -0.75 /Real (opac) , -5 /Real (blur) , -1 /Int (blnd) , -16 /Int (Adobe Effect Expand Before Version) , -; /Dict ; - /Part , -/BasicFilter : -(Blend Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -/BlendStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -/Def ; - (BlendStyle) , -; /Dict ; - /Part , -; - -/Execution ; - /Def ; -/KnownStyle : -([Standard]) /Name , -/SimpleStyle : -0 O -0 0 0 0 1 1 1 Xa -0 R -0.912474 0.787625 0.619837 0.97467 0 0 0 XA -0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -1 1 Xd -/Paint ; - /Def ; -%AI9_EndArtStyles -%AI5_End_NonPrinting-- -%AI5_BeginPalette -0 0 Pb -0.912474 0.787625 0.619837 0.97467 0 0 0 ([Passermarken]) 0 1 Xz -([Passermarken]) -Pc -0 0 0 0 1 1 1 Xa -(Weiß) -Pc -0.912474 0.787625 0.619837 0.97467 0 0 0 Xa -(Schwarz) -Pc -0 0.94641 0.916289 0 1 0 0 Xa -(RGB Rot) -Pc -0.096254 0 0.951965 0 1 1 0 Xa -(RGB Gelb) -Pc -0.647547 0 1 0 0 1 0 Xa -(RGB Grün) -Pc -0.570733 0 0.153567 0 0 1 1 Xa -(RGB Cyan) -Pc -0.934081 0.745846 0 0 0 0 1 Xa -(RGB Blau) -Pc -0.409979 0.77676 0 0 1 0 1 Xa -(RGB Magenta) -Pc -0.168978 0.950286 0.823636 0.068666 0.756863 0.152941 0.176471 Xa -(R=193 G=39 B=45) -Pc -0 0.946624 0.85211 0 0.929412 0.109804 0.141176 Xa -(R=237 G=28 B=36) -Pc -0 0.752956 0.887388 0 0.945098 0.352941 0.141176 Xa -(R=241 G=90 B=36) -Pc -0 0.501823 0.907988 0 0.968627 0.576471 0.117647 Xa -(R=247 G=147 B=30) -Pc -0 0.365637 0.819852 0 0.984314 0.690196 0.231373 Xa -(R=251 G=176 B=59) -Pc -0.065736 0 0.852628 0 0.988235 0.933333 0.129412 Xa -(R=252 G=238 B=33) -Pc -0.231907 0 0.892332 0 0.85098 0.878431 0.129412 Xa -(R=217 G=224 B=33) -Pc -0.524254 0 0.880919 0 0.54902 0.776471 0.247059 Xa -(R=140 G=198 B=63) -Pc -0.718288 0 0.876951 0 0.223529 0.709804 0.290196 Xa -(R=57 G=181 B=74) -Pc -0.842954 0.14374 0.926757 0.021576 0 0.572549 0.270588 Xa -(R=0 G=146 B=69) -Pc -0.899077 0.322972 0.925994 0.247654 0 0.407843 0.215686 Xa -(R=0 G=104 B=55) -Pc -0.735958 0 0.689784 0 0.133333 0.709804 0.45098 Xa -(R=34 G=181 B=115) -Pc -0.766171 0.045533 0.450782 0 0 0.662745 0.615686 Xa -(R=0 G=169 B=157) -Pc -0.709987 0.132143 0.001953 0 0.160784 0.670588 0.886275 Xa -(R=41 G=171 B=226) -Pc -0.866178 0.492958 0 0 0 0.443137 0.737255 Xa -(R=0 G=113 B=188) -Pc -0.975586 0.89572 0 0.000824 0.180392 0.192157 0.572549 Xa -(R=46 G=49 B=146) -Pc -1 0.970001 0.322484 0.218753 0.105882 0.078431 0.392157 Xa -(R=27 G=20 B=100) -Pc -0.755703 0.923125 0 0.000031 0.4 0.176471 0.568627 Xa -(R=102 G=45 B=145) -Pc -0.5393 0.930297 0 0 0.576471 0.152941 0.560784 Xa -(R=147 G=39 B=143) -Pc -0.323583 1 0.236301 0.1673 0.619608 0 0.364706 Xa -(R=158 G=0 B=93) -Pc -0.097993 0.983551 0.407263 0.020691 0.831373 0.078431 0.352941 Xa -(R=212 G=20 B=90) -Pc -0 0.935058 0.142763 0 0.929412 0.117647 0.47451 Xa -(R=237 G=30 B=121) -Pc -0.220859 0.272648 0.389227 0.061189 0.780392 0.698039 0.6 Xa -(R=199 G=178 B=153) -Pc -0.354864 0.386694 0.466072 0.211734 0.6 0.52549 0.458824 Xa -(R=153 G=134 B=117) -Pc -0.446387 0.47068 0.52636 0.380346 0.45098 0.388235 0.341176 Xa -(R=115 G=99 B=87) -Pc -0.535302 0.542443 0.552728 0.542199 0.32549 0.278431 0.254902 Xa -(R=83 G=71 B=65) -Pc -0.204685 0.376715 0.593042 0.084871 0.776471 0.611765 0.427451 Xa -(R=198 G=156 B=109) -Pc -0.280308 0.462287 0.671046 0.207126 0.65098 0.486275 0.321569 Xa -(R=166 G=124 B=82) -Pc -0.324376 0.536675 0.760494 0.329229 0.54902 0.384314 0.223529 Xa -(R=140 G=98 B=57) -Pc -0.359228 0.605188 0.857359 0.451545 0.458824 0.298039 0.141176 Xa -(R=117 G=76 B=36) -Pc -0.391424 0.683131 0.943023 0.57116 0.376471 0.219608 0.07451 Xa -(R=96 G=56 B=19) -Pc -0.474617 0.7467 0.825315 0.730831 0.258824 0.129412 0.043137 Xa -(R=66 G=33 B=11) -Pc -Bb -2 (Weiß, Schwarz) 0 0 0 1 1 0 0 1 0 0 1 Bg -0 BB -(Weiß, Schwarz) -Pc -Bb -2 (Goldstaub) 0 0 0 1 1 0 0 1 0 0 1 Bg -0 BB -(Goldstaub) -Pc -Bb -2 (Blauer Himmel) 0 0 0 1 1 0 0 1 0 0 1 Bg -0 BB -(Blauer Himmel) -Pc -(Jive) 0 0 1 1 0 0 0 0 0 [1 0 0 1 0 0] p -(Jive) -Pc -1 (Kalt) 1 Pg -0.584497 0 0.222965 0 0.396078 0.784314 0.815686 Xa -(C=56 M=0 Y=20 K=0) -Pc -0.55404 0.445533 0 0 0.513726 0.545098 0.772549 Xa -(C=51 M=43 Y=0 K=0) -Pc -0.313512 0.439063 0.001465 0 0.729412 0.607843 0.788235 Xa -(C=26 M=41 Y=0 K=0) -Pc -1 (Graustufen) 1 Pg -0.912474 0.787625 0.619837 0.97467 0 0 0 Xa -(R=0 G=0 B=0) -Pc -0.762295 0.667414 0.60705 0.828763 0.101961 0.101961 0.101961 Xa -(R=26 G=26 B=26) -Pc -0.690608 0.595209 0.559747 0.655817 0.2 0.2 0.2 Xa -(R=51 G=51 B=51) -Pc -0.620386 0.5234 0.503532 0.47776 0.301961 0.301961 0.301961 Xa -(R=77 G=77 B=77) -Pc -0.559442 0.453803 0.448554 0.326848 0.4 0.4 0.4 Xa -(R=102 G=102 B=102) -Pc -0.492378 0.386633 0.38529 0.202182 0.501961 0.501961 0.501961 Xa -(R=128 G=128 B=128) -Pc -0.410864 0.319738 0.323857 0.110109 0.6 0.6 0.6 Xa -(R=153 G=153 B=153) -Pc -0.32575 0.244968 0.255344 0.043549 0.701961 0.701961 0.701961 Xa -(R=179 G=179 B=179) -Pc -0.231479 0.170962 0.180972 0.008301 0.8 0.8 0.8 Xa -(R=204 G=204 B=204) -Pc -0.11664 0.082246 0.092653 0 0.901961 0.901961 0.901961 Xa -(R=230 G=230 B=230) -Pc -0.062196 0.043153 0.05127 0 0.94902 0.94902 0.94902 Xa -(R=242 G=242 B=242) -Pc -PB -%AI5_EndPalette -%AI5_Begin_NonPrinting -Np -%AI9_BeginArtStyleList -([Standard]) -(Schlagschatten) -(Schein nach außen - 5 Pt.) -(Jive_GS) -%AI9_EndArtStyleList -%AI5_End_NonPrinting-- -%AI5_Begin_NonPrinting -Np -%AI10_BeginSymbolList -(Textbereich) -(Schaltfläche) -(Kombinationsfeld) -(Texteingabe) -(Suchen) -%AI10_EndSymbolList -%AI5_End_NonPrinting-- -%AI9_BeginDocumentData -%_/Document : -%_/Dictionary : -%_/XMLNode : -%_/Dictionary : -%_; (xmlnode-attributes) , -%_/Array : -%_/XMLNode : -%_/Dictionary : -%_; (xmlnode-attributes) , -%_/Array : -%_/XMLNode : -%_/Dictionary : -%_/XMLNode : -%_/Dictionary : -%_; (xmlnode-attributes) , -%_/Array : -%_; (xmlnode-children) , -%_2 /Int (xmlnode-nodetype) , -%_(&ns_vars;) /String (xmlnode-nodevalue) , -%_(xmlns) /String (xmlnode-nodename) , -%_; (xmlns) , -%_; (xmlnode-attributes) , -%_/Array : -%_/XMLNode : -%_/Dictionary : -%_/XMLNode : -%_/Dictionary : -%_; (xmlnode-attributes) , -%_/Array : -%_; (xmlnode-children) , -%_2 /Int (xmlnode-nodetype) , -%_(binding1) /String (xmlnode-nodevalue) , -%_(varSetName) /String (xmlnode-nodename) , -%_; (varSetName) , -%_/XMLNode : -%_/Dictionary : -%_; (xmlnode-attributes) , -%_/Array : -%_; (xmlnode-children) , -%_2 /Int (xmlnode-nodetype) , -%_(none) /String (xmlnode-nodevalue) , -%_(locked) /String (xmlnode-nodename) , -%_; (locked) , -%_; (xmlnode-attributes) , -%_/Array : -%_/XMLNode : -%_/Dictionary : -%_; (xmlnode-attributes) , -%_/Array : -%_; (xmlnode-children) , -%_1 /Int (xmlnode-nodetype) , -%_ /String (xmlnode-nodevalue) , -%_(variables) /String (xmlnode-nodename) , -%_; , -%_/XMLNode : -%_/Dictionary : -%_/XMLNode : -%_/Dictionary : -%_; (xmlnode-attributes) , -%_/Array : -%_; (xmlnode-children) , -%_2 /Int (xmlnode-nodetype) , -%_(&ns_vars;) /String (xmlnode-nodevalue) , -%_(xmlns:v) /String (xmlnode-nodename) , -%_; (xmlns:v) , -%_/XMLNode : -%_/Dictionary : -%_; (xmlnode-attributes) , -%_/Array : -%_; (xmlnode-children) , -%_2 /Int (xmlnode-nodetype) , -%_(&ns_custom;) /String (xmlnode-nodevalue) , -%_(xmlns) /String (xmlnode-nodename) , -%_; (xmlns) , -%_; (xmlnode-attributes) , -%_/Array : -%_; (xmlnode-children) , -%_1 /Int (xmlnode-nodetype) , -%_ /String (xmlnode-nodevalue) , -%_(v:sampleDataSets) /String (xmlnode-nodename) , -%_; , -%_; (xmlnode-children) , -%_1 /Int (xmlnode-nodetype) , -%_ /String (xmlnode-nodevalue) , -%_(variableSet) /String (xmlnode-nodename) , -%_; , -%_; (xmlnode-children) , -%_1 /Int (xmlnode-nodetype) , -%_ /String (xmlnode-nodevalue) , -%_(variableSets) /String (xmlnode-nodename) , -%_; , -%_/XMLNode : -%_/Dictionary : -%_/XMLNode : -%_/Dictionary : -%_; (xmlnode-attributes) , -%_/Array : -%_; (xmlnode-children) , -%_2 /Int (xmlnode-nodetype) , -%_(&ns_sfw;) /String (xmlnode-nodevalue) , -%_(xmlns) /String (xmlnode-nodename) , -%_; (xmlns) , -%_; (xmlnode-attributes) , -%_/Array : -%_/XMLNode : -%_/Dictionary : -%_; (xmlnode-attributes) , -%_/Array : -%_; (xmlnode-children) , -%_1 /Int (xmlnode-nodetype) , -%_ /String (xmlnode-nodevalue) , -%_(slices) /String (xmlnode-nodename) , -%_; , -%_/XMLNode : -%_/Dictionary : -%_/XMLNode : -%_/Dictionary : -%_; (xmlnode-attributes) , -%_/Array : -%_; (xmlnode-children) , -%_2 /Int (xmlnode-nodetype) , -%_526.1108 /Real (xmlnode-nodevalue) , -%_(height) /String (xmlnode-nodename) , -%_; (height) , -%_/XMLNode : -%_/Dictionary : -%_; (xmlnode-attributes) , -%_/Array : -%_; (xmlnode-children) , -%_2 /Int (xmlnode-nodetype) , -%_1112.4131 /Real (xmlnode-nodevalue) , -%_(width) /String (xmlnode-nodename) , -%_; (width) , -%_/XMLNode : -%_/Dictionary : -%_; (xmlnode-attributes) , -%_/Array : -%_; (xmlnode-children) , -%_2 /Int (xmlnode-nodetype) , -%_-139.7881 /Real (xmlnode-nodevalue) , -%_(x) /String (xmlnode-nodename) , -%_; (x) , -%_/XMLNode : -%_/Dictionary : -%_; (xmlnode-attributes) , -%_/Array : -%_; (xmlnode-children) , -%_2 /Int (xmlnode-nodetype) , -%_-405.4346 /Real (xmlnode-nodevalue) , -%_(y) /String (xmlnode-nodename) , -%_; (y) , -%_/XMLNode : -%_/Dictionary : -%_; (xmlnode-attributes) , -%_/Array : -%_; (xmlnode-children) , -%_2 /Int (xmlnode-nodetype) , -%_1 /Bool (xmlnode-nodevalue) , -%_(bottomLeftOrigin) /String (xmlnode-nodename) , -%_; (bottomLeftOrigin) , -%_; (xmlnode-attributes) , -%_/Array : -%_; (xmlnode-children) , -%_1 /Int (xmlnode-nodetype) , -%_ /String (xmlnode-nodevalue) , -%_(sliceSourceBounds) /String (xmlnode-nodename) , -%_; , -%_; (xmlnode-children) , -%_1 /Int (xmlnode-nodetype) , -%_ /String (xmlnode-nodevalue) , -%_(sfw) /String (xmlnode-nodename) , -%_; , -%_; (xmlnode-children) , -%_1 /Int (xmlnode-nodetype) , -%_ /String (xmlnode-nodevalue) , -%_(metadata) /String (xmlnode-nodename) , -%_; , -%_; (xmlnode-children) , -%_9 /Int (xmlnode-nodetype) , -%_ /String (xmlnode-nodevalue) , -%_(#document) /String (xmlnode-nodename) , -%_; (#document) , -%_/Dictionary : -%_36 /Real (padd) , -%_0 /Bool (mask) , -%_1 /Bool (spot) , -%_0 /Bool (alis) , -%_72 /Int (dpi.) , -%_4 /Int (colr) , -%_; (AI Auto Rasterize) , -%_0 /Bool (AI11 document knockout group) , -%_0 /Bool (AI11 document isolate blending) , -%_0 /Bool (AI9 paper simulation) , -%_2 /Int (AI9 transparency grid size) , -%_1 /Int (AI9 artboard color) , -%_52428 /Int (AI9 artboard color 2 blue) , -%_52428 /Int (AI9 artboard color 2 green) , -%_52428 /Int (AI9 artboard color 2 red) , -%_65535 /Int (AI9 artboard color 1 blue) , -%_65535 /Int (AI9 artboard color 1 green) , -%_65535 /Int (AI9 artboard color 1 red) , -%_16383 /Int (AIDocumentCanvasSize) , -%_1 /Bool (AI11 Preserve Text Editability) , -%_0 /Real (BleedLeftValue) , -%_0 /Int (CropAreaActive) , -%_/Array : -%_/Dictionary : -%_1 /Bool (IsArtboardDefaultName) , -%_7751.2119 8095.0205 /RealPoint -%_ (RulerOrigin) , -%_0 /Int (DisplayMark) , -%_(Zeichenfläche 1) /UnicodeString (Name) , -%_1 /Real (PAR) , -%_972.625 -405.4346 /RealPointRelToROrigin -%_ (PositionPoint2) , -%_-139.7881 -204.0205 /RealPointRelToROrigin -%_ (PositionPoint1) , -%_; , -%_; (ArtboardArray) , -%_([Mittlere Auflösung]) /UnicodeString (AI11 Document Setup Flattener Preset Name) , -%_150 /Real (AI9 Mesh Rasterization Resolution) , -%_300 /Real (AI9 Output Rasterization Resolution) , -%_42 /Int (AI11 Document Setup Language Popup) , -%_5 /Real (GlobalRepulsion) , -%_0 /Real (BleedRightValue) , -%_0 /Real (BleedTopValue) , -%_0 /Int (PerspectiveGrid_RightBlue) , -%_65535 /Int (PerspectiveGrid_RightRed) , -%_50 /Real (PerspectiveGrid_RightOpacity) , -%_45 /Real (PerspectiveGrid_RightFaceAngle) , -%_45 /Real (PerspectiveGrid_LeftFaceAngle) , -%_480 /Real (PerspectiveGrid_ViewingDistance) , -%_8191 8441 /RealPoint -%_ (PerspectiveGrid_StationPoint) , -%_26214 /Int (PerspectiveGrid_LeftGreen) , -%_58981 /Int (PerspectiveGrid_LeftBlue) , -%_6553 /Int (PerspectiveGrid_LeftRed) , -%_50 /Real (PerspectiveGrid_LeftOpacity) , -%_0 /Real (PerspectiveGrid_FloorOffset) , -%_0 /Bool (AI16 flattener anti alias) , -%_1 /Bool (AI10 flattener outline strokes) , -%_1 1 /RealPoint -%_ (PerspectiveGrid_Scale) , -%_0 /Bool (AI10 flattener outline text) , -%_0 /Int (PerspectiveGrid_Unit) , -%_15 /Real (PerspectiveGrid_CellCount) , -%_4 /Int (AI9 Flattening Quality Level) , -%_1 /Int (AI12_SpotColorMode) , -%_580 /Real (PerspectiveGrid_RightExtent) , -%_30 /Real (PerspectiveGrid_CellSize) , -%_250 /Real (PerspectiveGrid_HorizonHeight) , -%_580 /Real (PerspectiveGrid_LeftExtent) , -%_45874 /Int (PerspectiveGrid_FloorGreen) , -%_2 /Int (PerspectiveGrid_Type) , -%_32767 /Int (PerspectiveGrid_FloorBlue) , -%_32767 /Int (PerspectiveGrid_FloorRed) , -%_50 /Real (PerspectiveGrid_FloorOpacity) , -%_(14.0.0) /String (kAIFullDocumentVersionStr) , -%_32767 /Int (PerspectiveGrid_RightGreen) , -%_0 /Real (BleedBottomValue) , -%_/Dictionary : -%_/Array : -%_; (SelHatDocInterIDsArray) , -%_/Array : -%_; (SelHatDocLocalNamesArray) , -%_; (SelHatDocTableDict) , -%_1 /Int (kAIParametersWhichProfileKey) , -%_0 /Bool (kAIParametersCompression) , -%_0 /Int (kAIParametersEmbedProfileKey) , -%_1 /Bool (kAIParametersPDFCompatibility) , -%_0 -500 /RealPoint -%_ (PerspectiveGrid_RelativeFloorVanishingPoint) , -%_8431 8316 /RealPoint -%_ (PerspectiveGrid_RightPlaneCellExtent) , -%_0 /Int (PerspectiveGrid_RightPlaneVisibilityState) , -%_8191 7941 /RealPoint -%_ (PerspectiveGrid_RightPlaneTopPoint) , -%_8191 8441 /RealPoint -%_ (PerspectiveGrid_RightPlaneBottomPoint) , -%_8671 8191 /RealPoint -%_ (PerspectiveGrid_RightVanishingPoint) , -%_7951 8316 /RealPoint -%_ (PerspectiveGrid_LeftPlaneCellExtent) , -%_0 /Int (PerspectiveGrid_RulerOriginIndexSecond) , -%_0 /Int (PerspectiveGrid_RulerOriginIndexFirst) , -%_0 /Int (PerspectiveGrid_FloorPlaneVisibilityState) , -%_0 /Int (PerspectiveGrid_LeftPlaneVisibilityState) , -%_8191 7941 /RealPoint -%_ (PerspectiveGrid_LeftPlaneTopPoint) , -%_8191 8441 /RealPoint -%_ (PerspectiveGrid_LeftPlaneBottomPoint) , -%_7711 8191 /RealPoint -%_ (PerspectiveGrid_LeftVanishingPoint) , -%_1 /Bool (AI10 flattener preserve overprints) , -%_1 /Bool (AI10 flattener clip complex regions) , -%_75 /Int (AI10 flattener raster-vector balance) , -%_100 /Real (kAIParametersSubsetFontsRatioKey) , -%_; /Recorded , -%_/Dictionary : /NotRecorded , -%_([Medium Resolution]) /String (AI12 AI Flattener Preset Name) , -%_0 /Bool (AI16 AI Anti Aliasing) , -%_1 /Bool (AI12 AI Clip Complex Regions) , -%_1 /Bool (AI12 AI Outline Strokes) , -%_0 /Bool (AI12 AI Outline Text) , -%_75 /Int (AI12 AI Raster/Vector Balance) , -%_1 /Int (AI12 AI Overprints) , -%_([Medium Resolution]) /String (AI11 EPS Flattener Preset Name) , -%_0 /Bool (AI16 EPS Anti Aliasing) , -%_1 /Bool (AI11 EPS Clip Complex Regions) , -%_1 /Bool (AI11 EPS Outline Strokes) , -%_0 /Bool (AI11 EPS Outline Text) , -%_75 /Int (AI11 EPS Raster/Vector Balance) , -%_1 /Int (AI11 EPS Overprints) , -%_1 /Bool (AI9 no overprint in composite) , -%_/Dictionary : /NotRecorded , -%_ /String (/attributes/job.pagerange) , -%_1 /Int (/attributes/job.printall) , -%_1 /Int (/attributes/job.skipblank) , -%_0 /Int (/attributes/job.reverseorder) , -%_0 /Int (/attributes/job.collate) , -%_() /UnicodeString (/attributes/job.artboardrange) , -%_1 /Int (/attributes/job.printallartboards) , -%_; (AI11 Print JobInfo Dict) , -%_/Dictionary : /NotRecorded , -%_2 /Int (/attributes/cm.inteint) , -%_1 /Int (/attributes/cm.preservecmyk) , -%_0 /Int (/attributes/cm.preserveother) , -%_0 /Int (/attributes/job.bitmapresolution) , -%_0 /Real (/attributes/pgmk.bleedoff.bottom) , -%_6 /Real (/attributes/pgmk.marksoff.bottom) , -%_1 /Int (/attributes/pgmk.bleedoff.useDocBleeds) , -%_([Standard]) /UnicodeString (/attributes/collectionName) , -%_1 /Int (/attributes/stl.defaultprinter) , -%_() /UnicodeString (/attributes/stl.printername) , -%_() /UnicodeString (/attributes/stl.ppdmodelname) , -%_1 /Int (/attributes/stl.defaultppd) , -%_() /UnicodeString (/attributes/stl.customppd) , -%_0 /Int (/attributes/ppr.custom) , -%_1 /Int (/attributes/ppr.default) , -%_595.32 /Real (/attributes/ppr.width) , -%_841.92 /Real (/attributes/ppr.height) , -%_0 /Real (/attributes/ppr.image.left) , -%_0 /Real (/attributes/ppr.image.top) , -%_595.32 /Real (/attributes/ppr.image.right) , -%_841.92 /Real (/attributes/ppr.image.bottom) , -%_(Durch Treiber definiert) /UnicodeString (/attributes/ppr.name) , -%_0 /Real (/attributes/cppr.width) , -%_0 /Real (/attributes/cppr.height) , -%_0 /Real (/attributes/cppr.woffset) , -%_0 /Real (/attributes/cppr.hoffset) , -%_0 /Int (/attributes/cppr.trans) , -%_0 /Int (/attributes/job.designation) , -%_2 /Int (/attributes/job.printbounds) , -%_0 /Int (/attributes/job.printofile) , -%_0 /Int (/attributes/job.printasbitmap) , -%_() /UnicodeString (/attributes/job.name) , -%_0 /Int (/attributes/clr.mode) , -%_0 /Int (/attributes/clr.convertspots) , -%_0 /Int (/attributes/clr.overprintblack) , -%_720 /Int (/attributes/crd.orientation) , -%_0 /Int (/attributes/crd.fliphorz) , -%_5 /Int (/attributes/crd.position) , -%_0 /Real (/attributes/crd.org.h) , -%_0 /Real (/attributes/crd.org.v) , -%_100 /Real (/attributes/crd.scale.h) , -%_100 /Real (/attributes/crd.scale.v) , -%_0 /Int (/attributes/crd.scplcy) , -%_1 /Int (/attributes/crd.sccnst) , -%_0 /Int (/attributes/crd.tiling) , -%_0 /Real (/attributes/crd.overlap.h) , -%_0 /Real (/attributes/crd.overlap.v) , -%_0 /Int (/attributes/pgmk.enabled) , -%_0 /Int (/attributes/pgmk.style) , -%_() /UnicodeString (/attributes/pgmk.customfile) , -%_() /UnicodeString (/attributes/pgmk.jobtitle) , -%_0.25 /Real (/attributes/pgmk.deflinewidth) , -%_0 /Int (/attributes/pgmk.bleed) , -%_0 /Int (/attributes/pgmk.crop) , -%_0 /Int (/attributes/pgmk.pageinfo) , -%_0 /Int (/attributes/pgmk.registration) , -%_0 /Int (/attributes/pgmk.colorbars) , -%_0 /Real (/attributes/pgmk.bleedoff.left) , -%_0 /Real (/attributes/pgmk.bleedoff.top) , -%_0 /Real (/attributes/pgmk.bleedoff.right) , -%_6 /Real (/attributes/pgmk.marksoff.left) , -%_6 /Real (/attributes/pgmk.marksoff.top) , -%_6 /Real (/attributes/pgmk.marksoff.right) , -%_1 /Int (/attributes/fnt.dlmode) , -%_0 /Int (/attributes/fnt.dlprfonts) , -%_0 /Int (/attributes/fnt.subst) , -%_3 /Int (/attributes/ps.level) , -%_1 /Int (/attributes/ps.binary) , -%_0 /Int (/attributes/ps.negative) , -%_0 /Int (/attributes/ps.compression) , -%_0 /Int (/attributes/ps.contone) , -%_0 /Int (/attributes/ps.l1compat) , -%_300 /Real (/attributes/ps.shaderes) , -%_0 /Int (/attributes/ps.setflatness) , -%_1 /Real (/attributes/ps.flatness) , -%_75 /Int (/attributes/xp.balance) , -%_300 /Int (/attributes/xp.rresolution) , -%_150 /Int (/attributes/xp.gresolution) , -%_0 /Int (/attributes/xp.converttext) , -%_1 /Int (/attributes/xp.convertstroke) , -%_1 /Int (/attributes/xp.clip) , -%_0 /Int (/attributes/xp.antialiasing) , -%_0 /Int (/attributes/xp.opco) , -%_0 /Int (/attributes/xp.opse) , -%_0 /Int (/attributes/xp.opdu) , -%_([Mittlere Auflösung]) /UnicodeString (/attributes/xp.name) , -%_0 /Int (/attributes/rdrs.enabled) , -%_0 /Int (/attributes/rdrs.func) , -%_1 /Real (/attributes/rdrs.flatteness) , -%_() /UnicodeString (/attributes/rdrs.annot) , -%_ /String (/attributes/rdrs.custom) , -%_1 /Int (/attributes/cm.mode) , -%_(Coated FOGRA39 \(ISO 12647-2:2004\)) /UnicodeString (/attributes/cm.profile) , -%_; (AI11 Print Attribute Dict) , -%_0 /Bool (AI15 Document PixelPerfect) , -%_1 /Int (LastArtboardID) , -%_150 /Real (AI12 AI Gradient and Mesh Resolution) , -%_300 /Real (AI12 AI Line Art and Text Resolution) , -%_150 /Real (AI11 EPS Gradient and Mesh Resolution) , -%_300 /Real (AI11 EPS Line Art and Text Resolution) , -%_42 /Int (AI11 Document Setup Language Popup) , -%_0 /Bool (SVGTextOnPath) , -%_1 /Bool (SVGAutoKern) , -%_0 /Int (SVGFontType) , -%_0 /Bool (SVGXap) , -%_0 /Bool (SVGPgf) , -%_0 /Bool (SVGTemplate) , -%_0 /Int (SVGDTD) , -%_2 /Int (SVGEncoding) , -%_4 /Int (SVGStyleType) , -%_2 /Int (SVGEmbedRaster) , -%_3 /Int (SVGPrecision) , -%_1 /Int (SVGFontLocation) , -%_1 /Int (SVGFontSubsetting) , -%_0 /Bool (SVGAdobeNamespace) , -%_1 /Bool (PerspectiveGrid_Snap) , -%_0 /Bool (PerspectiveGrid_ShowHide) , -%_/Dictionary : /NotRecorded , -%_([Illustrator-Standard]) /UnicodeString (/attributes/collectionName) , -%_0 /Int (/attributes/AI11PDF_PageInfo) , -%_0 /Real (/attributes/AI11PDF_BleedTop) , -%_0 /Real (/attributes/AI11PDF_BleedBottom) , -%_0 /Int (/attributes/AI11PDF_RegMarks) , -%_1 /Int (/attributes/AI11PDF_CompressArt) , -%_0 /Real (/attributes/AI11PDF_BleedRight) , -%_(Dies sind die Standardeinstellungen beim Speichern einer Illustrator-Datei als PDF-Dokument. Verwenden Sie diese Einstellungen, wenn Sie die Datei später in Illustrator oder in einem Layoutprogramm wie z. B. InDesign bearbeiten möchten oder der endgültige Verwendungszweck der Datei unbekannt ist.) /UnicodeString (/attributes/AI12PDF_Description) , -%_0 /Int (/attributes/AI11PDF_FastWebView) , -%_1 /Int (/attributes/AI11PDF_BleedLink) , -%_1 /Int (/attributes/AI11PDF_Overprint) , -%_0 /Int (/attributes/AI11PDF_ColorBars) , -%_0 /Int (/attributes/AI12PDF_Trapped) , -%_1 /Int (/attributes/AI14PDF_DocBleed) , -%_0 /Real (/attributes/AI11PDF_BleedLeft) , -%_1 /Int (/attributes/AI12PDF_Standard) , -%_0 /Int (/attributes/AI11PDF_TrimMarks) , -%_300 /Int (/attributes/AI11PDF_MonochromeDownsampleResolution) , -%_1 /Int (/attributes/AI11PDF_PreserveIllustratorEditingCapabilities) , -%_1 /Int (/attributes/AI12PDF_OutputIntentProfileNamePolicy) , -%_75 /Int (/attributes/AI10 flattener raster-vector balance) , -%_1 /Int (/attributes/AI11PDF_ColorDownsampleKind) , -%_0.25 /Real (/attributes/AI11PDF_TrimMarkWeight) , -%_() /UnicodeString (/attributes/AI12PDF_OutputCondition) , -%_1 /Int (/attributes/AI12PDF_DestinationPolicy) , -%_() /UnicodeString (/attributes/AI12PDF_DestinationName) , -%_() /UnicodeString (/attributes/AI12PDF_RegistryName) , -%_0 /Int (/attributes/AI11PDF_PrinterMarkType) , -%_0 /Int (/attributes/AI16 flattener anti alias) , -%_6 /Int (/attributes/AI11PDF_GrayCompressionKind) , -%_1 /Int (/attributes/AI11PDF_GenerateThumbnails) , -%_0 /Int (/attributes/AI11PDF_FlattenTransparency) , -%_0 /Int (/attributes/AI12PDF_UsePrintTiling) , -%_256 /Int (/attributes/AI11PDF_GrayTileSize) , -%_100 /Int (/attributes/AI11PDF_SubsetFontRatio) , -%_1 /Int (/attributes/AI11PDF_GrayDownsampleKind) , -%_3 /Int (/attributes/AI11PDF_Compatibility) , -%_0 /Int (/attributes/AI10 flattener outline text) , -%_256 /Int (/attributes/AI11PDF_ColorTileSize) , -%_() /UnicodeString (/attributes/AI12PDF_OutputIntentProfileName) , -%_225 /Int (/attributes/AI11PDF_ColorDownsampleImageAbove) , -%_6 /Real (/attributes/AI11PDF_OffsetFromArtworkTop) , -%_1 /Int (/attributes/AI11PDF_PreserveAcrobatLayers) , -%_4 /Int (/attributes/AI11PDF_MonochromeCompressionKind) , -%_225 /Int (/attributes/AI11PDF_GrayDownsampleImageAbove) , -%_1 /Int (/attributes/AI11PDF_ColorCompressionQuality) , -%_6 /Real (/attributes/AI11PDF_OffsetFromArtworkRight) , -%_() /UnicodeString (/attributes/AI12PDF_OutputConditionIdentifier) , -%_1 /Int (/attributes/AI10 flattener clip complex regions) , -%_150 /Int (/attributes/AI11PDF_GrayDownsampleResolution) , -%_6 /Int (/attributes/AI11PDF_ColorCompressionKind) , -%_([Mittlere Auflösung]) /UnicodeString (/attributes/AI11PDF_FlatteningPresetName) , -%_150 /Real (/attributes/AI9 Mesh Rasterization Resolution) , -%_450 /Int (/attributes/AI11PDF_MonoDownsampleImageAbove) , -%_6 /Real (/attributes/AI11PDF_OffsetFromArtworkLeft) , -%_1 /Int (/attributes/AI12PDF_ColorConversionPolicy) , -%_1 /Int (/attributes/AI11PDF_MonochromeDownsampleKind) , -%_150 /Int (/attributes/AI11PDF_ColorDownsampleResolution) , -%_300 /Real (/attributes/AI9 Output Rasterization Resolution) , -%_1 /Int (/attributes/AI11PDF_GrayCompressionQuality) , -%_6 /Real (/attributes/AI11PDF_OffsetFromArtworkBottom) , -%_1 /Int (/attributes/AI10 flattener outline strokes) , -%_1 /Int (/attributes/AI12PDF_ProfileInclusionPolicy) , -%_; (PDFPresetCollection) , -%_1 /Int (AI9 Document Setup panel) , -%_0 /Bool (AISaveMultipleArtboards) , -%_/Dictionary : /NotRecorded , -%_0 /Int (/attributes/inklst.count) , -%_; (AI11 Ink List Dict) , -%_(Adobe PDF-Vorgabe.joboptions) /String (AI12 Job Options Name) , -%_7842 /Int (AI12 Job Options Size) , -%_/Binary : /ASCII85Decode , -%4?O&[+M4?:L\'M@ruc7FE2M8%144#00sDjDg,0$@;^.*@<,ps@sK2/ -%@;L!r%144#00sJtBgHQL@<4eSCi=>cD..'gF!,('Cia.s$6UHE6#LdY6#:7DF%:7ZGtDj]B4Z-,AmoLsAISth+>6#uFD4$WBjl'W -%Df0JbD..'gF!,('Cia.s$6UHE6$79f7VQ[\ATC.VCi=>cD..'gF!,('Cia.s$6UHE6$79f7VQ[\ATC:]@6#sC^g^o+>6&qDIdI!B-8j$AS-#n$6UHE6Xadu -%9j(+cEc5Q(Ch4_;VJ#h;ccak>VJ#i+EfLh%144#010/a7ri$`:i^JdBl%?'-r+\uALS&q+7Co^+n%,`+>6*#Ci=>[6W6Qn@:s.>Bk)6-4?O&[+F<4+>E,2D?g=%144#+7Co^+OB5+6>`77Rdo+6*#Ci=>cD..'g -%6tp.Q+?Vaq$6UH6+>68a@;Tt"ATJtu%144#+F<4+6S]@:OCt -%EZd%g2`OB5+n%,`+?hsu$6UHE -%6Z6dZE_1+VB4XJLGA_J1D/a<&<+p;`F(fK.A06*#Ci=>cD..'g6uR9eF(&p)Ch6RkE+L.F:2b#]%144#010Yo -%DfSEd@:s.@Bl%m&EZd#)CghEs7;cURA7Z2W+6*#Ci=>cD..'g9keKC -%ATMd+F`_>9DBLYk0F\@3+>6*#Ci=>cD..'g9keKCATMd+F`_>9DGY7fBk)E202G4M$6UHE6Z6dZE_1+VB4XtPF)Pl;FD5Z2+>G`- -%%144#010YoDfScfFED57B6-OVCh4_;.1HV,+>6*#D/`p*BjtdmBlnVoAThX$+>GK+%144#010YpE,oN2F&-7[ARfh'+>6N&Ado(i -%+>6*#D/aN,F)t/dB4Z-,FE2M8%144#010YqG%G]98SqmKATLgh8T&'MG\(D.FE2M8%144#010bk@2FT;R2Dd*A2DHm>2_m'@2Dd*A2Dm0B2E2Dm0B2E2`*3B2F]AS2_m'@1.3fM1c-m?2DHm>2`*3B -%2Dm0B2E2FB/P2`!-A1,(C92)$^<1c-m?1c@$A1.3fM1c-m?2F]AS2F9)O2`39C2FK5Q2Dm0B2FT;R2`*3B1.2`*3B2Dm0B2E75Q\P2`*3B2Dm0B -%2_m'@1,(C92E2`*3B2F]AS2_m'@1,(C92F]AS2Dd*A2Dm0B -%2_m'@1,(C92E2`WQG2F]AS2`39C2`*3B2_Zp>2_m'@2F]AS -%2E*2FK5Q2FK5Q1,(C92`EEE2E2_m'@2DQs?2Dm0B2E2`*3B2Dm0B2E2FT;R2FT;R2`*3B -%1,(C92E6,oFCes(6>U4NA9/l8Eckq&$6UHE6tLIO@rt(\Ecu#8+>>E&0JG17%144#019_X -%BQ\0$DII6qF!,RFF_)!h+6-$GA_J1D/a<&9lFof8SqmKATJu+@;L!r%144#01B_eARn)CCdr>\FE8RHEckq&$6UHE7;ZLFA4gcL:N1DiDf0V=AmoLsAISth -%+>60#@V'(GE+NodH#R=;AmoLsAISth+>60#BllaA6W[]:DJ=!$F!,('Cia.s$6UHE7;cURA7\,HCi=>cD..'gF!,RFF_)!h+66*@OB5+n%,`+6bo@;Tt"ATJtu%144#+F<4+66* -%@66*@Bk)6-4?O&[+F<4+>E,2D?g=%144# -%+7Co^+OB5+66*@6M`%144#01U%kGtDj]B4XtPF)Pl;FD5Z2+>G`-%144#01g"hB4XeKD/XH?+>GQ, -%3&NWQ%144#01o&07kubP0LKbpDfS-2;b:h7B4XJF@rrhU4:MW?+6].Ch6[^A9;K-1,Us!$6UHT4q.iA+>6>`77T*e0JGk4Ci=>cD..'g6tp.Q+?Vaq$6UH6+>6T7@;KY"Gp"h!%144#+6T7@;KY" -%Gp"h!%144#+>stream -FD5Q- -%ATCUUEa`g++EVXHAISth+>6GtGZ/`oF(KGi@rrhJ0JEqC+f@%144#5!BD_+6H-DJr*`@:s.@Bl%m&EZd#)CghEs7;cURA7Z2W+9DBL_h0F\@3+>6H- -%DJr*`@:s.GBl6g[F)Pl;FD5Z2:iC/a@sK1M:J2-(+n%,`+>6Me9cu/"$6UHE:N1DiD/"<-+D,%uF(Gdf+6<(@r-9uAOglWA7]gPEbT'*+D,%uF(Gdf+6JuD.Rd-@:Njk>7Co^+6E"B45:q%144#+&S=r<,Y<,9h\#pDKJfkH=\42@;L!r%144#+\ASuTuFD5Z2+>6Q0 -%Ecc>1Bljdk+6Z,EbTE,6Z6jaASuT4FE2M8%144#+6`9AOUHFARo=_A5I;bAnc'mF!,('Cia.s$6UH6+6<(@r-9uAOq)cATDU$DJO;9AmoLsAISth+6<(@r-9uAP$c]ATD3hFD5o0+D,%uF(Gdf+6<(@r-9uAPdDcAnc'mF!,('Cia.s$6UH6+6GtEbf_tASGdjF0F\@3+6H3CijB.ARoL`87?CHCh[d"+>6`9APZcMARfg\ATW$.DJ+#"$6UH6+n%,`+6PZ7T`H/FDuAE8T&W] -%DKJ]qDe<^"AQ*/VARfh#EZd#15n+/D+6Q"B4XeGEbf_cBl%?'02c_*@;\JEAmoguF:AR"+6Q3ATMF'G%F*QBln', -%B-;;:F_)!h+6`9AOLHHF_t]-F@'eTARlp*Eckq&$6UH6+?hsu$6UHs%144#02P&+=@-h8ARn,GGZ8T\EbTAW -%Dg5&iAohO*+Bo9^+=63+6PZ7T`H/FDuAE6Z6jQBln'-DFnAMDKKT) -%Bk;<--n,T4+6PZ7T`Q"B5)F/Ed:DgD.Oh<.1HV,+>6PZ7T`T#F@'eTARn,G -%GZ8TUARoL`6>q)kFE2M8%144#02P&+=B'62mCia.s$6UHE:ddcT<,u\i6>q*JDbXeRBjj>HGY_p`F(KG9>7Co^+=63+6Q3ATMF'G%FHmATDa1Bl8#kATW$.DJ+#5FE2M8%144#02lt$Ecb,dB4W2?%144#02m"&F(KG_Df0Z<+EVXHAISth -%+>6]7@;^-uATC7_DI[d&Df/-aAoAeF:i^,gATDs*%144#03(A;@;]UB7nIT1D]g]2ASl@/AISth+>6`9APdDcCi -%_; (AI12 Job Options Data) , -%_; /NotRecorded , -%_; -%AI9_EndDocumentData -%AI11_BeginTextDocument -/AI11TextDocument : /ASCII85Decode , -%+>5`7+?Vb/0/+M-+?ht30/+M240/+M24k&!+c.Q!+c.(!)rqs!-A3O!%e1N!,MXW!)*B7.3L9!+>=p%4s3$Q+?ht34?O`>0H`J?+>5`8+>6*#DerBuE+MLW -%DKI!S0H`J?+>5Dk./s5H8-!3$C]JVYAH6fPB`MWC@/s%&AH6iQAH5C(;ufhsF9#hO/HA`MBIP&W1*A7n5!C)Q4s3$Q+?Vb/0/+M2 -%40/+M24k5Dk4?O`>3B8386Z6mZ<-`Fo7W30d+>5Dk4?O`>0H_eCrr>=bA,pNJ@K9s>8H0H_eC -%s8FtV2^ok&0d&1n5!C)O4G!&4s2sM+>5Dk./s8G48q;j+>5Gl0d&YD+?Vb/0/+Lsrr;s\r]M\Q0/4S( -%+?ht34?O`>0H_eCs8G7^5:I^.0d&1n5!C)O4G!&4s2sM+>5Dk./s8G6iKG%+>5Gl0d&YD+?Vb/0/+Ls -%rr0H_eCs8P1\4"2:*0d&1n5!C)O4G!&4s2sM+>5Dk./s5h(a'YE+>5Gl -%0d&YD+?Vb/0/+Lsrr4)\+<2gQ0/4S(+?ht34?O`>0H_eCs"F^4#UplL0d&1n5!C)O4G!&4s2sM+>5Dk -%./s6#$nr)=+>5Gl0d&YD+?Vb/0/+Lsrr4Y^0FfNS0/4S(+?ht34?O`>0H_eCs"G!<&1J_T0d&1n5!C)O4G!&4s2sM+>5Dk./s8G2Z>T`+>5Gl1*AbE+?Vb/0/+Lsrr;sWr\u>L0/4S)+?ht34?O`>0H_eCs8G(Y3[l1)0d&4o5!C)O4P''4s2sM+>5Dk./s8G55m_p+>5Gl1*AbE+?Vb/0/+Lsrr;s_r]hnT0/4S)+?ht34?O`>0H_eCs8G@a67F$1 -%0d&4o5!C)O4P''4s2sM+>5Dk./s8H$3(;\+>5Gl1*AbE+?Vb/0/+Lsrr -%0H_eCs8QC)>q$mL0d&4o5!C)O4.3L8u+>P''4s2sM+>5Dk./s5h*?Z@O+>5Gl1*AbE+?Vb/0/+Lsrr4YY0F90N -%0/4S)+?ht34?O`>0H_eCs"Fg7$Rm2O0d&4o5!C)O4P''4s2sM+>5Dk./s6#%knMC+>5Gl1*AbE+?Vb/ -%0/+Lsrr4Ya0G,`V0/4S)+?ht34?O`>0H_eCs"G0A'e(7Y0d&4o5!C)O4Y-(4s2sM+>5Dk./s8H?N4=\ -%+>5Gl1E\kF+?Vb/0/+Lsrr4Z<0L7-10/4S*+?ht34?O`>0H_eCs"Heo6Ra-20d&7p5!C)O4Y-(4s2sM -%+>5Dk./s6#7kdF^+>5Gl1E\kF+?Vb/0/+Lsrr4ZD0M*]90/4S*+?ht34?O`>0H_eCs"Iq:@jrNR0d&7p5!C)O4Y-(4s2sM+>5Dk./s6#KeS30+>5Gl1E\kF+?Vb/0/+Lsrr4[-0S_)"0/4S*+?ht34?O`>0H_eCs"KHeN[Z)(0d&7p5!C)O -%4Y-(4s2sM+>5Dk./s6#ShQ`b+>5Gl1E\kF+?Vb/0/+Lsrr4[G0VKp<0/4S*+?ht34?O`>0H_eCs"L3% -%UF@<=0d&7p5!C)O4Y-(4s2sM+>5Dk./s6#V_G"t+>5Gl1E\kF+?Vb/0/+Lsrr4[O0W?KD0/4S*+?ht3 -%4?O`>0H_eCs"M>E_^Q]]0d&7p5!C)O4Y-(4s2sM+>5Dk./s6#jY5dF+>5Gl1E\kF+?Vb/0/+Lsrr4\8 -%0]sl-0/4S*+?ht34?O`>0H_eCs"NjpmO9830d&7p5!C)O4Y-(4s2sM+>5Dk./s6#r%S+!+>5Gl1E\kF -%+?Vb/0/+Lsrr4YU0EimJ0/4S*+?ht34?O`>0H_eCs8N-"!@]-E0d&:q5!C)O4b3)4s2sM+>5Dk./s8H -%)ZLa*+>5Gl2'>(H+?Vb/0/+Lsrr4\L0`*:A0/4S,+?ht34?O`>0H_eCru_jq&1J_T0d&=r5!C)O4t?+ -%4s2sM+>5Dk./s6#!\a[)+>5Gl2BY1I+?Vb/0/+Lsrr!0/4S.+?ht34?O`>0H_eCs"FI-!@]-E0d&Ct5!C)O45Dk./s5h,p4N`+>5Gl3$:CK+?Vb/0/+Lsrr0H_eCrrAeoUF@<=0d&J! -%5!C)O45Dk./s8H"oe`T+>5Gl0ea_64s2sM+>5Dk./s5HU&^o:+>5Gl0ea_64s2sM+>5Dk -%./s5HYQ1mV+>5Gl0ea_64s2sM+>5Dk./s5h0H`%u+>5Gl0ea_64s2sM+>5Dk./s5h1*AD&+>5Gl0ea_64s2sM+>5Dk./s6#!&+C% -%+>5Gl0eje74s2sM+>5Dk./s6#681_T+>5Gl0esk84s2sM+>5Dk./s6#6nh"X+>5Gl0esk84s2sM+>5Dk./s6#7PI:\+>5Gl0esk8 -%4s2sM+>5Dk./s6#82*R`+>5Gl0esk84s2sM+>5Dk./s6#8ha^'+>5Gl0esk84s2sM+>5Dk./s6#A2&Zc+>5Gl0esk84s2sM+>5Dk -%./s6#L+n?2+>5Gl0esk84s2sM+>5Dk./s6#LbOf;+>5Gl0esk84s2sM+>5Dk./s6#O"cbH+>5Gl0esk84s2sM+>5Dk./s8H&H5Gl0f'q94s2sM+>5Dk./s6#U+i;j+>5Gl0f1":4s2sM+>5Dk./s6#UbJSn+>5Gl0f1":4s2sM+>5Dk./s6#VD+kr+>5Gl0f1": -%4s2sM+>5Dk./s6#W%b/!+>5Gl0f1":4s2sM+>5Dk./s6#W\D:=+>5Gl0f1":4s2sM+>5Dk./s6#`%^7$+>5Gl0f1":4s2sM+>5Dk -%./s6#jtPpH+>5Gl0f1":4s2sM+>5Dk./s6#kV2BQ+>5Gl0f1":4s2sM+>5Dk./s6#mkF>^+>5Gl0f1":4s2sM+>5Dk./s6%+>Q;5 -%+>5Gl0f1":4s2sM+>5Dk./s6%J24>X+>5Gl0f1":4s2sM+>5Dk./s6%cnbSL+>5Gl0f1":4s2sM+>5Dk./s6&!&I\*+>5Gl0f1": -%4s2sM+>5Dk./s6&EAMbe+>5Gl0f1":4s2sM+>5Dk./s6&J2?"1+>5Gl0f1":4s2sM+>5Dk./s6A!2$):+>5Gl0f1":4s2sM+>5Dk -%./s5H0E=*^+>5Gl0f:(;4s2sM+>5Dk./s5H+TQs?+>5Gl0fC.<4s2sM+>5Dk./s5HT`G*A+>5Gl0fC.<4s4,R5!C)Q4s3$Q+C-*C -%0d'[C4?O`>0H`%l5!C)p+?ht30/F_54kC!-J9Y!,hjT!,hj.!+>kF!,DRC!,DRW.3L9$ -%+?Vb/0/+M&+>5Gl4?O`>0HaRB4?O`>0H_r"2'=P-+=R6hrs1%r5!C)O4#3'+>5Jm./s8H4"2:94s2sM+>5Dk/M8n'0/=Xu -%rr<"&.3Lf<+?Vb/0/+M#/i=b)1*A"Eru`.-+?ht34?O`>0H_r"2'=P-+=R6h+<2gQ5!C)O4#3'+>5Jm./s6##Upl[4s2sM -%+>5Dk/M8n'0/=Xurr4YZ.3Lf<+?Vb/0/+M#/i=b)1*A"Es"Fj1+?ht34?O`>0H_r"2'=P-+=R6h0FfNS5!C)O4#3'+>5Jm -%./s6#&1J_c4s2sM+>5Dk/M8n'0/=Xurr4Yd.3Lf<+?Vb/0/4S$/i=b)1*A"Es8NBS+?ht34?O`>0d&'=P-+=R6hs#heR5!C)O -%4#3'+>5Jm./s8H>q$m[4s2sM+>5Gl/M8n'0/=Xurr4)Y.3Lf<+?Vb/0/4S$/i=b)1*A"Eru`=2+?ht34?O`>0d&'=P- -%+=R6h0F90N5!C)O4#3'+>5Jm./s6#$Rm2^4s2sM+>5Gl/M8n'0/=Xurr4Y].3Lf<+?Vb/0/4S$/i=b)1*A"Es"Fs4+?ht3 -%4?O`>0d&'=P-+=R6h0G,`V5!C)O4#3'+>5Jm./s6#'e(7h4s2sM+>5Gl/M8n'0/=Xurr0d&'=P-+=R6hrsU>!5!C)O4#3'+>5Jm./s6#!@]-T4s2sM+>5Dk/M8e9+>5Gl/M8e9+>5Jm -%./s8H)CZdm4s2sM+>5Dk/M8e9+>5Gl/M8e9+>5Jm./s8H)^umn4s2sM+>5Dk/M8e9+>5Gl/M8e9+>5Jm./s6#q^EXO4s2sM+>5Dk -%/M8e9+>5Gl/M8e9+>5Jm./s5h&1J_c4s4,R5!C)B1*A\A+>5Dk4?O`>0HaRB4?O`>0H`(m0/4SR+?Vb/0/+MQ+>Fur+C-*C0d&S@ -%+>5Gl4?O`>0HaRB/i#:,/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht3>p)5Gl>9H$j+>5Dk>9G[D0d'aE0/4S34>E%+>>E%+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB1*A=p>p(dT+?Vb/0/+M245Gl1E\kF+?ht35!C)O4Y-G+>5Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H_u*+C-*C0d&7p5!C)Q4s3$Q+?Vb/0/+MQ -%+>P&r+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1E\kF+?ht35!C)O4k9I+>5Gl4?O`>0H`J?+>5Dk -%>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9G[D2]uBK0/4S34>E%+>>E%+>>E%+C-*C0d&4o -%5!C)Q4s3$Q+?Vb/0/+MQ+>P'!+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB1*AS" -%>p(dT+?Vb/0/+M245Dk>9G[D0ea_U+>5Gl4?O`>0H`J?+>5Dk>9GUP -%0H`&%0H_u*+C-*C0d&7p5!C)Q4s3$Q+?Vb/0/+MQ+>P&o0d'aE0/4S34>E%+>>E%+>>E%+C-*C0d&7p5!C)Q -%4s3$Q+?Vb/0/+MQ+>P&o1*BjF0/4S34>E%+>>E%+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB1*A;-+C-*C -%0d&S@+>5Dk4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1E\kF+?ht35!C)O4G\q>p(dT+?Vb/0/+M245Dk>9G[D0f:(Z+>5Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H_u*+C-*C0d&7p5!C)Q4s3$Q -%+?Vb/0/+MQ+>P&o2BZ9J0/4S34>E%+>>E%+>,Mo>p(dT+>Y-(4s3$Q+?ht3>p)5Gl>9H$j -%+>5Dk>9G^E0d'aE0/4S34>E%+>>E%+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB1E\Ir>p(dT+?Vb/0/4S3 -%45Dk>9G^E2'?0I0/4S34>E%+>,E,+>,E,+C-*C0d&1n -%5!C)Q4s3$Q+?Vb/0/+MQ+>Y-!+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT+>P''4s3$Q+?ht34?O`>0HaRB1E\Y" -%>p(dT+?Vb/0/4S345Dk>9G^E3?VTM0/4S34>E%+>>E% -%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB1E\D++C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)GVo>p(dT+?Vb/0/4S345Dk>9G^E0f'qX+>5Gl4?O`>0d&S@+>5Dk>9GUP -%0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>Y,p1a$'H0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`> -%0HaRB1E\D0+C-*C0d&S@+>5Gl4?O`>0HaRB/ho+=+>,E,+>,Mo>p(dT+>b3)4s3$Q+?ht34?O`>0HaRB1E\D1+C-*C0d&S@+>5Gl -%4?O`>0HaRB/ho+=+>,E,+>,Mo>p(dT+>b3)4s3$Q+?ht3>p)5Gl>9H$j+>5Dk>9GaF0d'aE0/4S34>E%+>>E%+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB1a"Xu>p(dT+?Vb/0/4S345Gl -%0d&YD+?ht35!C)O45Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S)+?ht35!C)Q4s2sM+>5Dk>9GaF -%0f:(Z+>5Gl4?O`>0d&S@+>5Dk>9GOQ1,U1,1,U1,1,U1[+>5Gl1a"tG+?ht35!C)O4Gbs>p(dT+?Vb/0/4S34p(dT+>b3)4s3$Q+?ht3>p)5Gl>9H$j+>5Dk>9GdG0d'aE0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>k8s+C-*C0d&S@+>5Dk4?O`>0HaRB/i#:,/i#:,/i#:,>p(dT+>G!& -%4s3$Q+?ht34?O`>0HaRB2'=[t>p(dT+?Vb/0/+M245Gl0d&YD+?ht35!C)O4b3H -%+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GdG2'?0I0/4S34>E% -%+>,Mo/i=bW+>5Gl0d&YD+?ht35!C)O4t?J+>5Gl4?O`>0H`J?+>5Dk>9GOR2'=M,2'=M,2'?0I0/4S(+?ht35!C)Q -%4s2sM+>5Dk>9GdG2]uBK0/4S34,E,+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>k9$+C-*C0d&S@ -%+>5Dk4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB2'=n%>p(dT+?Vb/0/+M245Gl0d&YD+?ht35!C)O4GPm>p(dT+?Vb/0/+M245Gl0d&YD+?ht35!C)O -%4GSn>p(dT+?Vb/0/+M245Gl0d&YD+?ht35!C)O4GVo>p(dT+?Vb/ -%0/+M245Gl0d&YD+?ht35!C)O4GYp>p(dT+?Vb/0/+M245Gl0d&YD+?ht35!C)O4G\q>p(dT+?Vb/0/+M245Gl0d&YD+?ht35!C)O -%4G_r>p(dT+?Vb/0/+M245Gl0d&YD+?ht35!C)O4Gbs>p(dT+?Vb/ -%0/+M245Gl0d&YD+?ht35!C)p+?ht34?O`>0H`7r0/4SR+?Vb/0/+MQ+>t>s+C-*C0d&S@+>5Dk -%4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1E\kF+?ht35!C)O4Y-G+>5Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H_u*+C-*R -%4s3$Q+?ht34?O`>0HaRB2BXh!>p(dT+?Vb/0/+M24t?"+C-*C0d&S@ -%+>5Dk4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB2BXq$>p(dT+?Vb/0/+M245Gl1*AbE+?ht35!C)O45Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H_u*+C-*R4s3$Q+?ht34?O`>0HaRB -%2BY"&>p(dT+?Vb/0/+M24t>s0HaXD0/4S34>E% -%+>>E%+>,Mo>p)GSn>p(dT+?Vb/0/+M24t>s1*BjF0/4S34>E%+>>E%+>,Mo>p)GYp>p(dT+?Vb/0/+M24t>s1a$'H0/4S34>E%+>>E%+>,Mo>p)G_r>p(dT+?Vb/0/+M245Dk>9GgH0fC.[+>5Gl4?O`>0H`J? -%+>5Dk>9GUP0H`&%0H_u*+C-*C0d&:q5!C)Q4s3$Q+C-*R4s2sM+>5Dk2]sb.+BosN4G!E+>5Gl4?O`>0H`J?+>5Dk -%>9GUP0H`&%0H_u*+C-*C0d&4o5!C)Q4s3$Q+?Vb/0/+MQ+?(E!+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1*AbE -%+?ht35!C)O4b3H+>5Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H_u*+C-*C0d&4o5!C)Q4s3$Q+?Vb/0/+MQ+?(E#+C-*C -%0d&S@+>5Dk4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB2]t%%>p(dT+?Vb/0/+M245Gl1*AbE+?ht35!C)O45Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H_u*+C-*C0d&4o5!C)Q4s3$Q -%+?Vb/0/+MQ+?(E'+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1*AbE+?ht35!C)O4GPm>p(dT+?Vb/ -%0/+M245Dk>9GjI0eskW+>5Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H_u* -%+C-*C0d&4o5!C)Q4s3$Q+?Vb/0/+MQ+?(Dt1E]sG0/4S34>E%+>>E%+>,Mo>p(dT+>P''4s3$Q+?ht34?O`> -%0HaRB2]sh3+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1*AbE+?ht35!C)O4G_r>p(dT+?Vb/0/+M2 -%45Dk>9GjI0fC.[+>5Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H_u*+C-*C -%0d&4o5!C)Q4s3$Q+C-*R4s2sM+>5Dk3$9k/+BosN4G!E+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H_u*+C-*C0d&7p -%5!C)Q4s3$Q+?Vb/0/+MQ+?1K"+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)k9I+>5Gl -%4?O`>0d&S@+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GmJ2]uBK0/4S34>E%+>>E% -%+>>E%+C-*C0d&4o5!C)Q4s3$Q+?Vb/0/+MQ+?1K'+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+?1Ju0HaXD0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB3$9q2+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)GYp>p(dT+?Vb/0/4S345Dk>9GmJ0f1"Y+>5Gl4?O`>0d&S@ -%+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+?1Ju2'?0I0/4S34>E%+>>E%+>,Mo>p(dT+>b3) -%4s3$Q+?ht34?O`>0HaRB3$9q6+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1a"tG+?ht35!C)p+?ht34?O`>0H`@u -%0/4SR+?Vb/0/+MQ+?:Q!+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1E\kF+?ht35!C)O4Y-G+>5Gl -%4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+?:Q%+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%/i#:,/i#:, -%>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB3?U7'>p(dT+?Vb/0/4S345Gl1*AbE+?ht35!C)O45Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+?:Q)+C-*C0d&S@+>5Gl4?O`>0HaRB -%0J5%%0J5%%0eP.&>p)GPm>p(dT+?Vb/0/4S345Dk>9GpK0eskW+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+?:Q!1E]sG0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB3?U%5+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)G_r>p(dT+?Vb/0/4S345Dk>9GpK0fC.[+>5Gl -%4?O`>0d&S@+>5Dk>9GUP0H`&%0H_u*+C-*C0d&:q5!C)Q4s3$Q+C-*R4s2sM+>5Dk0ea_'0d'[C4?O`>0HaRB0ea_)+C-*C0d&S@ -%+>5Gl4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1E\kF+?ht35!C)O4p(dT+?Vb/0/4S345Dk>9GXS+>k9I+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk -%>9GXS+?(EK+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S)+?ht35!C)Q4s2sM+>5Dk>9GXS+?1KL+>5Gl4?O`>0d&S@ -%+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GPm3?VTM0/4S34>E%+>>E%+>GK&+C-*R4s3$Q -%+?ht34?O`>0HaRB0ea_)0HaXD0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0ea_)1*BjF0/4S3 -%4>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0ea_)1E]sG0/4S34>E%+>>E%+>GK& -%+C-*R4s3$Q+?ht34?O`>0HaRB0ea_)1a$'H0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0ea_) -%2'?0I0/4S34>E%+>>E%+>,Mo>p(dT+>b3)4s3$Q+?ht34?O`>0HaRB0ea_)2BZ9J0/4S34>E%+>>E%+>,Mo>p(dT+>b3)4s3$Q+?ht3>p)p(dT+?Vb/0/4S345Gl0d&YD+?ht35!C)O4p(dT+?Vb/0/4S345Gl1*AbE -%+?ht35!C)O45Gl4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT+>b3)4s3$Q+?ht34?O`>0HaRB0eje* -%2BZ9J0/4S34>E%+>>E%+>>E%+C-*C0d&:q5!C)Q4s3$Q+C-*R4s2sM+>5Dk0esk)0d'[C4?O`>0HaRB0esk+ -%+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1E\kF+?ht35!C)O4p(dT+?Vb/0/4S345Dk>9GXU+>k9I+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q -%4s2sM+>5Dk>9GXU+?(EK+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S)+?ht35!C)Q4s2sM+>5Dk>9GXU+?1KL+>5Gl -%4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GVo3?VTM0/4S34>E%+>>E%+>GK& -%+C-*R4s3$Q+?ht34?O`>0HaRB0esk+0HaXD0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0esk+ -%1*BjF0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0esk+1E]sG0/4S34>E% -%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0esk+1a$'H0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`> -%0HaRB0esk+2'?0I0/4S34,B(2'=M,2'=M/+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+>GVo0fC.[+>5Gl4?O`> -%0H`J?+>5Dk>9GOQ1,U1,1,U1,2'?0I0/4S++?ht35!C)Q4s4,R5!C)O4GYp0/4SR+?Vb/0/+MQ+>GYp0d'aE0/4S34>E%+>>E%+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB0f'q.+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.& -%>p)p(dT+?Vb/0/4S345Gl0d&YD+?ht35!C)O4p(dT+?Vb/0/4S345Gl1*AbE+?ht35!C)O4p(dT+?Vb/0/4S345Dk>9GXV+?:QM+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q -%+?Vb/0/+MQ+>GYp0ea_U+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GYp0eskW+>5Gl4?O`> -%0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GYp0f'qX+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD -%5!C)Q4s3$Q+?Vb/0/+MQ+>GYp0f1"Y+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GYp0f:(Z -%+>5Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H_u*+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+>GYp0fC.[+>5Gl4?O`>0H`J?+>5Dk>9GUP -%0H`&%0H_u*+C-*C0d&:q5!C)Q4s3$Q+C-*R4s2sM+>5Dk0f1"+0d'[C4?O`>0HaRB0f1"-+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%% -%0J5%%/i=bW+>5Gl1E\kF+?ht35!C)O4p(dT+?Vb/0/4S345Dk>9GXW+>k9I+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GXW+?(EK+>5Gl4?O`> -%0d&S@+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S)+?ht35!C)Q4s2sM+>5Dk>9GXW+?1KL+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)& -%0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>G\q3?VTM0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0f1"- -%0HaXD0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0f1"-1*BjF0/4S34>E% -%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0f1"-1E]sG0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`> -%0HaRB0f1"-1a$'H0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0f1"-2'?0I0/4S34,B(2'=M,2'=M/+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+>G\q0fC.[+>5Gl4?O`>0H`J?+>5Dk>9GOQ1,U1,1,U1,2'?0I -%0/4S++?ht35!C)Q4s4,R5!C)O4G_r0/4SR+?Vb/0/+MQ+>G_r0d'aE0/4S34>E%+>>E%+>,Mo>p(dT -%+>Y-(4s3$Q+?ht34?O`>0HaRB0f:(0+C-*C0d&S@+>5Gl4?O`>0HaRB/ho+=+>,E,+>,E,+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ -%+>G_r1a$'H0/4S34,B(2'=M,2'=M,2'?0I0/4S++?ht35!C)Q4s2sM+>5Dk>9GXX+>k9I+>5Gl4?O`>0d&S@ -%+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GXX+?(EK+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`&%0HaXD -%0/4S)+?ht35!C)Q4s2sM+>5Dk>9GXX+?1KL+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H_u*+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ -%+>G_r3?VTM0/4S34>E%+>>E%+>,Mo>p(dT+>b3)4s3$Q+?ht34?O`>0HaRB0f:(.0HaXD0/4S34>E%+>>E%+>,Mo>p)5Gl4?O`>0HaRB/ho+=+>,E,+>,Mo>p(dT+>b3) -%4s3$Q+?ht34?O`>0HaRB0f:(.1a$'H0/4S34,B(2'=M,2'=M/+C-*C0d&:q5!C)Q4s3$Q+C-*R4s2sM+>5Dk -%0fC.-0d'[C4?O`>0HaRB0fC./+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1E\kF+?ht35!C)O4p(dT+?Vb/0/4S34p(dT+>b3)4s3$Q+?ht34?O`>0HaRB0fC.2+C-*C0d&S@+>5Gl4?O`>0HaRB -%/ho+=+>,E,+>,E,+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+>Gbs2'?0I0/4S34>E%+>,E,+>,E,+C-*C0d&1n -%5!C)Q4s3$Q+?Vb/0/+MQ+>Gbs2]uBK0/4S34>E%+>>E%+>>E%+C-*C0d&4o5!C)Q4s3$Q+?Vb/0/+MQ+>Gbs -%3$;KL0/4S34>E%+>>E%+>,Mo>p(dT+>b3)4s3$Q+?ht34?O`>0HaRB0fC.7+C-*C0d&S@+>5Gl4?O`>0HaRB -%0J5%%0J5%%/i=bW+>5Gl1a"tG+?ht35!C)O45Gl4?O`>0HaRB0J5%%0J5%%/i=bW+?ht35!C)Q -%4s2sM+>5Dk>9GXY+>GVo>p(dT+?Vb/0/4S345Gl1a"tG+?ht35!C)O45Gl4?O`>0HaRB/ho+=+>,E,+>,Mo>p(dT+>b3)4s3$Q+?ht3>p)5Mn0d&YD+?ht35!C)O4kC!-J9Y!,hjT!,hj.!+>kF!,DRC!,DRW.3L9$+?Vb/0/+M&+>5Gl4?O`>0HaRB4?O`> -%0H_r"2'=P-+=R6hrs1%r5!C)O4#3'+>5Jm./s8H4"2:94s2sM+>5Dk/M8n'0/=Xurr<"&.3Lf<+?Vb/0/+M#/i=b)1*A"E -%ru`.-+?ht34?O`>0H_r"2'=P-+=R6h+<2gQ5!C)O4#3'+>5Jm./s6##Upl[4s2sM+>5Dk/M8n'0/=Xurr4YZ.3Lf<+?Vb/ -%0/+M#/i=b)1*A"Es"Fj1+?ht34?O`>0H_r"2'=P-+=R6h0FfNS5!C)O4#3'+>5Jm./s6#&1J_c4s2sM+>5Dk/M8n'0/=Xu -%rr4Yd.3Lf<+?Vb/0/4S$/i=b)1*A"Es8NBS+?ht34?O`>0d&'=P-+=R6hs#heR5!C)O4#3'+>5Jm./s8H>q$m[4s2sM -%+>5Gl/M8n'0/=Xurr4)Y.3Lf<+?Vb/0/4S$/i=b)1*A"Eru`=2+?ht34?O`>0d&'=P-+=R6h0F90N5!C)O4#3'+>5Jm -%./s6#$Rm2^4s2sM+>5Gl/M8n'0/=Xurr4Y].3Lf<+?Vb/0/4S$/i=b)1*A"Es"Fs4+?ht34?O`>0d&'=P-+=R6h0G,`V5!C)O -%4#3'+>5Jm./s6#'e(7h4s2sM+>5Gl/M8n'0/=Xurr0d&'=P- -%+=R6hrsU>!5!C)O4#3'+>5Jm./s6#!@]-T4s2sM+>5Dk/M8e9+>5Gl/M8e9+>5Jm./s8H)CZdm4s2sM+>5Dk/M8e9+>5Gl -%/M8e9+>5Jm./s8H)^umn4s2sM+>5Dk/M8e9+>5Gl/M8e9+>5Jm./s6#q^EXO4s2sM+>5Dk/M8e9+>5Gl/M8e9+>5Jm./s5h&1J_c -%4s4,R5!C)B1*A\A+>5Dk4?O`>0HaRB4?O`>0H`(m0/4SR+?Vb/0/+MQ+>Fur+C-*C0d&S@+>5Gl4?O`>0HaRB/i#:,/i#:,/i#:, -%>p(dT+>G!&4s3$Q+?ht3>p)5Gl>9H$j+>5Dk>9G[D0d'aE0/4S34>E%+>,Mo/i=bW+>5Gl -%1E\kF+?ht35!C)O4P'F+>5Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S*+?ht35!C)Q4s2sM+>5Dk>9G[D -%1E]sG0/4S34>E%+>,Mo/i=bW+>5Gl1E\kF+?ht35!C)O4b3H+>5Gl4?O`>0H`J?+>5Dk>9GUP -%0H_u*+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB1*AFs>p(dT+?Vb/0/+M245Gl0d&YD+?ht3 -%5!C)O45Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S)+?ht35!C)Q4s2sM+>5Dk>9G[D3$;KL0/4S3 -%4>E%+>,Mo/i=bW+>5Gl1E\kF+?ht35!C)O45Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo -%>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB1*A;*+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I0/4S*+?ht35!C)Q4s2sM+>5Dk -%>9G[D0ejeV+>5Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S*+?ht35!C)Q4s2sM+>5Dk>9G[D0eskW+>5Gl4?O`>0H`J? -%+>5Dk>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB1*A;-+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I0/4S* -%+?ht35!C)Q4s2sM+>5Dk>9G[D0f1"Y+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB1*A;/ -%+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I0/4S*+?ht35!C)Q4s2sM+>5Dk>9G[D0fC.[+>5Gl4?O`>0H`J?+>5Dk>9GUP -%0H_u*+>,Mo>p(dT+>Y-(4s3$Q+?ht3>p)5Gl>9H$j+>5Dk>9G^E0d'aE0/4S34>E%+>,Mo -%/i=bW+>5Gl1E\kF+?ht35!C)O4Y-G+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ -%+>Y,t+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB1E\V!>p(dT+?Vb/0/4S345Gl1*AbE+?ht35!C)O45Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q -%4s3$Q+?Vb/0/+MQ+>Y-#+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)GPm>p(dT+?Vb/ -%0/4S345Dk>9G^E0eskW+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD -%5!C)Q4s3$Q+?Vb/0/+MQ+>Y,p1E]sG0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB1E\D/+C-*C -%0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)G_r>p(dT+?Vb/0/4S345Gl1a"tG+?ht35!C)O4Gbs>p(dT+?Vb/0/4S345Gl1a"tG+?ht35!C)p -%+?ht34?O`>0H`1p0/4SR+?Vb/0/+MQ+>b2q+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%/i=b(2'?0I0/4S*+?ht35!C)Q4s2sM+>5Dk -%>9GaF2'?0I0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>b3"+C-*C0d&S@+>5Gl4?O`> -%0HaRB0J5%%0J5%%0J5%%>p(dT+>P''4s3$Q+?ht34?O`>0HaRB1a"M1+C-*C0d&S@+>5Gl4?O`>0HaRB/ho+=+>,E,+>,E,+C-*C -%0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+>b2q2BZ9J0/4S34,B(2'=M,2'=M,2'?0I0/4S++?ht35!C)Q4s4,R5!C)O -%4k8p0d'[C4?O`>0HaRB2'=Ur>p(dT+?Vb/0/+M245Gl0d&YD+?ht35!C)O4P'F+>5Gl4?O`>0H`J?+>5Dk>9GOR2'=M,2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GdG1E]sG0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>k8u+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!& -%4s3$Q+?ht34?O`>0HaRB2'=b!>p(dT+?Vb/0/+M24k9"+C-*C -%0d&S@+>5Dk4?O`>0HaRB/i#:,/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB2'=h#>p(dT+?Vb/0/+M245Gl0d&YD+?ht35!C)O45Gl4?O`>0H`J?+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q -%4s2sM+>5Dk>9GdG3?VTM0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>k8r0HaXD0/4S3 -%4>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>k8r0d'aE0/4S34>E%+>,E, -%+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>k8r1*BjF0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q -%+?Vb/0/+MQ+>k8r1E]sG0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>k8r1a$'H0/4S3 -%4>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>k8r2'?0I0/4S34>E%+>,E, -%+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>k8r2BZ9J0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q -%+C-*R4s2sM+>5Dk2BXY-+BosN4G!E+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`> -%0HaRB2BXdu>p(dT+?Vb/0/+M240HaRB2BXh!>p(dT+?Vb/0/+M240HaRB2BXk">p(dT+?Vb/0/+M245Gl0d&YD+?ht35!C)O -%45Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S)+?ht35!C)Q4s2sM+>5Dk>9GgH3$;KL0/4S34>E%+>,Mo/i=bW+?ht35!C)Q4s2sM+>5Dk>9GgH3?VTM0/4S34>E%+>,Mo/i=bW+?ht35!C)Q -%4s2sM+>5Dk>9GgH0ea_U+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p)GSn>p(dT+?Vb/0/+M2 -%40HaRB2BX_0+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I5!C)Q4s3$Q -%+?Vb/0/+MQ+>t>s1E]sG0/4S34>E%+>,Mo/i=bW+?ht35!C)Q4s2sM+>5Dk>9GgH0f1"Y+>5Gl4?O`>0H`J? -%+>5Dk>9GUP0H_u*+>,Mo>p)G_r>p(dT+?Vb/0/+M24t>s2BZ9J0/4S34>E%+>,Mo/i=bW+>5Gl1a"tG+?ht35!C)p+?ht34?O`>0H`:s0/4SR -%+?Vb/0/+MQ+?(Dt+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I0/4S)+?ht35!C)Q4s2sM+>5Dk>9GjI1E]sG0/4S34>E%+>,Mo/i=bW+>5Gl1*AbE+?ht35!C)O4b3H+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT -%+>P''4s3$Q+?ht34?O`>0HaRB2]st#>p(dT+?Vb/0/+M245Gl0d&YD+?ht35!C)O45Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S)+?ht35!C)Q4s2sM+>5Dk>9GjI3$;KL0/4S34>E%+>,Mo/i=bW+>5Gl1*AbE+?ht35!C)O45Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT+>P''4s3$Q -%+?ht34?O`>0HaRB2]sh/+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I0/4S)+?ht35!C)Q4s2sM+>5Dk>9GjI0eskW+>5Gl -%4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT+>P''4s3$Q+?ht34?O`>0HaRB2]sh2+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b( -%2'?0I0/4S)+?ht35!C)Q4s2sM+>5Dk>9GjI0f1"Y+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT+>P''4s3$Q+?ht34?O`> -%0HaRB2]sh4+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I0/4S)+?ht35!C)Q4s2sM+>5Dk>9GjI0fC.[+>5Gl4?O`>0H`J? -%+>5Dk>9GUP0H_u*+>,Mo>p(dT+>P''4s3$Q+?ht3>p)5Gl>9H$j+>5Dk>9GmJ0d'aE0/4S34>E%+>,Mo/i=bW+>5Gl1E\kF+?ht35!C)O4Y-G+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q -%+?Vb/0/+MQ+?1K$+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB3$:.&>p(dT+?Vb/ -%0/4S345Gl1*AbE+?ht35!C)O45Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)& -%0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+?1K(+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)GPm -%>p(dT+?Vb/0/4S345Dk>9GmJ0eskW+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&% -%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+?1Ju1E]sG0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB -%3$9q4+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)G_r>p(dT+?Vb/0/4S345Dk>9GmJ0fC.[+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H_u*+C-*C0d&:q5!C)Q -%4s3$Q+C-*R4s2sM+>5Dk3?Tt0+BosN4G!E+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q+?ht3 -%4?O`>0HaRB3?U+#>p(dT+?Vb/0/4S345Dk>9GpK2'?0I0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+?:Q'+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT -%+>P''4s3$Q+?ht34?O`>0HaRB3?U:(>p(dT+?Vb/0/4S345Dk>9GpK3?VTM -%0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB3?U%1+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%% -%0eP.&>p)GVo>p(dT+?Vb/0/4S345Dk>9GpK -%0f'qX+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+?:Q!1a$'H0/4S34>E% -%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB3?U%6+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1a"tG+?ht35!C)O -%4Gbs>p(dT+?Vb/0/4S34GPm0/4SR+?Vb/ -%0/+MQ+>GPm0d'aE0/4S34>E%+>,Mo/i=bW+>5Gl1E\kF+?ht35!C)O4p(dT+?Vb/0/4S3 -%45Dk>9GXS+>k9I+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S( -%+?ht35!C)Q4s2sM+>5Dk>9GXS+?(EK+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S)+?ht35!C)Q4s2sM+>5Dk>9GXS -%+?1KL+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GPm3?VTM0/4S34>E% -%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0ea_)0HaXD0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`> -%0HaRB0ea_)1*BjF0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0ea_)1E]sG0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0ea_)1a$'H0/4S34>E%+>>E%+>GK&+C-*R4s3$Q -%+?ht34?O`>0HaRB0ea_)2'?0I0/4S34>E%+>>E%+>,Mo>p(dT+>b3)4s3$Q+?ht34?O`>0HaRB0ea_)2BZ9J -%0/4S34>E%+>>E%+>,Mo>p(dT+>b3)4s3$Q+?ht3>p)p(dT -%+?Vb/0/4S345Gl0d&YD+?ht35!C)O4p(dT+?Vb/0/4S345Gl1*AbE+?ht35!C)O45Gl4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT+>b3)4s3$Q -%+?ht34?O`>0HaRB0eje*2BZ9J0/4S34>E%+>>E%+>>E%+C-*C0d&:q5!C)Q4s3$Q+C-*R4s2sM+>5Dk0esk) -%0d'[C4?O`>0HaRB0esk++C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%/i=b(2'?0I0/4S*+?ht35!C)Q4s2sM+>5Dk>9GXU+>Y-G+>5Gl -%4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GVo2'?0I0/4S34>E%+>,E,+>,E, -%+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>GVo2]uBK0/4S34>E%+>>E%+>>E%+C-*C0d&4o5!C)Q4s3$Q+?Vb/ -%0/+MQ+>GVo3$;KL0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0esk3+C-*C0d&S@+>5Gl4?O`> -%0HaRB0J5%%0J5%%0eP.&>p)5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)5Gl4?O`>0HaRB0J5%%0J5%%0eP.& -%>p)5Gl4?O`>0HaRB/ho+=+>,E,+>,Mo>p(dT+>b3)4s3$Q+?ht34?O`>0HaRB -%0esk+2BZ9J0/4S34,B(2'=M,2'=M/+C-*C0d&:q5!C)Q4s3$Q+C-*R4s2sM+>5Dk0f'q*0d'[C4?O`>0HaRB -%0f'q,+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%/i=b(2'?0I0/4S*+?ht35!C)Q4s2sM+>5Dk>9GXV+>Y-G+>5Gl4?O`>0d&S@+>5Dk -%>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GYp2'?0I0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q -%4s3$Q+?Vb/0/+MQ+>GYp2]uBK0/4S34>E%+>>E%+>>E%+C-*C0d&4o5!C)Q4s3$Q+?Vb/0/+MQ+>GYp3$;KL -%0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0f'q4+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%% -%0eP.&>p)5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)5Gl4?O`>0HaRB -%0J5%%0J5%%0eP.&>p)5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)5Gl4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1a"tG+?ht35!C)O45Dk4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1a"tG+?ht35!C)p+?ht34?O`>0H`),+>5Gl>9H$j+>5Dk>9GXW+>G!E+>5Gl4?O`> -%0d&S@+>5Dk>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB0f1"/+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.& -%>p)p(dT+?Vb/0/4S345Gl0d&YD+?ht35!C)O4p(dT+?Vb/0/4S345Gl1*AbE+?ht35!C)O4p(dT+?Vb/0/4S345Dk>9GXW+?:QM+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q -%+?Vb/0/+MQ+>G\q0ea_U+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>G\q0eskW+>5Gl4?O`> -%0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>G\q0f'qX+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD -%5!C)Q4s3$Q+?Vb/0/+MQ+>G\q0f1"Y+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>G\q0f:(Z -%+>5Gl4?O`>0d&S@+>5Dk>9GOQ1,U1,1,U1,2'?0I0/4S++?ht35!C)Q4s2sM+>5Dk>9GXW+>Gbs>p(dT+?Vb/0/+M245Gl1a"tG+?ht35!C)p+?ht34?O`>0H`)-+>5Gl>9H$j+>5Dk>9GXX+>G!E+>5Gl4?O`>0d&S@+>5Dk>9GUP -%0H_u*+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB0f:(0+C-*C0d&S@+>5Gl4?O`>0HaRB/ho+=+>,E,+>,E,+C-*C0d&:q5!C)Q -%4s3$Q+?Vb/0/+MQ+>G_r1a$'H0/4S34,B(2'=M,2'=M,2'?0I0/4S++?ht35!C)Q4s2sM+>5Dk>9GXX+>k9I -%+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GXX+?(EK+>5Gl4?O`>0d&S@+>5Dk>9GUP -%0H`&%0H`&%0HaXD0/4S)+?ht35!C)Q4s2sM+>5Dk>9GXX+?1KL+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H_u*+C-*C0d&:q5!C)Q -%4s3$Q+?Vb/0/+MQ+>G_r3?VTM0/4S34>E%+>>E%+>,Mo>p(dT+>b3)4s3$Q+?ht34?O`>0HaRB0f:(.0HaXD -%0/4S34>E%+>>E%+>,Mo>p)5Gl4?O`>0HaRB/ho+=+>,E, -%+>,Mo>p(dT+>b3)4s3$Q+?ht34?O`>0HaRB0f:(.1a$'H0/4S34,B(2'=M,2'=M/+C-*C0d&:q5!C)Q4s3$Q -%+C-*R4s2sM+>5Dk0fC.-0d'[C4?O`>0HaRB0fC./+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%/i=b(2'?0I0/4S*+?ht35!C)Q4s2sM -%+>5Dk>9GXY+>Y-G+>5Gl4?O`>0d&S@+>5Dk>9GOQ1,U1,1,U1,1,U1[+>5Gl1a"tG+?ht35!C)O4p(dT+?Vb/ -%0/4S34p(dT+>b3)4s3$Q+?ht34?O`>0HaRB0fC.3+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%/i#:, -%/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB0fC.5+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT+>P''4s3$Q+?ht3 -%4?O`>0HaRB0fC.6+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1a"tG+?ht35!C)O4p(dT+?Vb/ -%0/4S345Dk>9GXY+>GPm>p(dT+?Vb/0/4S34Gbs0eskW+>5Gl4?O`>0d&S@+>5Dk>9GOQ1,U1,1,U1,2'?0I0/4S++?ht35!C)Q4s2sM+>5Dk -%>9GXY+>G\q>p(dT+?Vb/0/4S345Gl1a"tG+?ht35!C)p+?ht3>p)5Dk4?O`>0H_eCrr>OhGlVa_D#duEF9$@^FT>PE@/t'CFT?7YDZFYTDZEr@AH6TJCB.cCCB/K++>5Sp4?O`>0H`%l0/4S3 -%4#3'+>5Jm./s8H#Upl[4s2sM+>5Dk/M8n'0/=Xurr -%0H_r"2'=P-+=R6h+;cOM5!C)O4#3'+>5Jm./s5h*%5Dk/M8n'0/=Xurr4YX.3Lf<+?Vb/0/+M#/i=b)1*A"E -%s"Fd/+?ht34?O`>0H_r"2'=P-+=R6h0FTBQ5!C)O4#3'+>5Jm./s6#%OiMa4s2sM+>5Dk/M8n'0/=Xurr4Y`.3Lf<+?Vb/ -%0/+M#/i=b)1*A"Es"G-9+?ht34?O`>0d&'=P-+=R6hrs:+s5!C)O4#3'+>5Jm./s8H4XhL;4s2sM+>5Gl/M8n'0/=Xu -%rr<"(.3Lf<+?Vb/0/4S$/i=b)1*A"Eru`1.+?ht34?O`>0d&'=P-+=R6h+<;mR5!C)O4#3'+>5Jm./s6##q6u\4s2sM -%+>5Gl/M8n'0/=Xurr4Y[.3Lf<+?Vb/0/4S$/i=b)1*A"Es"Fm2+?ht34?O`>0d&'=P-+=R6h0FoTT5!C)O4#3'+>5Jm -%./s6#&Lehd4s2sM+>5Gl/M8n'0/=Xurr4Ye.3Lf<+?Vb/0/4S$/i=b)1*A"Es8NQX+?ht34?O`>0d&'=P-+=R6h0EN[G5!C)O -%4#3'+>5Jm./s8H$n3;_4s2sM+>5Gl/M8n'0/=Xurr4YQ.3Lf<+?Vb/0/+M#/i#:,0/4S$/i#:,0/=XurrFul0d'[C4?O`>0HaRB0d&=r>p(dT+?Vb/0/4S345Gl0d&YD+?ht35!C)p+?ht34?O`>0H`+n0/4SR+?Vb/0/+MQ+>P&o+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%% -%/i=b(2'?0I0/4S*+?ht35!C)Q4s2sM+>5Dk>9G[D1*BjF0/4S34>E%+>>E%+>>E%+C-*C0d&7p5!C)Q4s3$Q -%+?Vb/0/+MQ+>P&q+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I0/4S*+?ht35!C)Q4s2sM+>5Dk>9G[D1a$'H0/4S34>E%+>,Mo/i=bW+>5Gl1E\kF+?ht35!C)O4k9I+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u'2'=M,2'?0I -%0/4S(+?ht35!C)Q4s2sM+>5Dk>9G[D2]uBK0/4S34>E%+>>E%+>>E%+C-*C0d&4o5!C)Q4s3$Q+?Vb/0/+MQ -%+>P'!+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I0/4S*+?ht35!C)Q4s2sM+>5Dk>9G[D3?VTM0/4S34>E%+>,Mo/i=bW+>5Gl1E\kF+?ht35!C)O4GPm>p(dT+?Vb/0/+M24P&o0d'aE0/4S34>E%+>>E%+>>E%+C-*C0d&7p5!C)Q4s3$Q+?Vb/0/+MQ+>P&o1*BjF -%0/4S34>E%+>,Mo/i=bW+>5Gl1E\kF+?ht35!C)O4GYp>p(dT+?Vb/0/+M24P&o1a$'H0/4S34>E%+>,Mo/i=bW+>5Gl1E\kF+?ht35!C)O -%4G_r>p(dT+?Vb/0/+M24P&o2BZ9J0/4S34>E%+>,Mo/i=bW+>5Gl1E\kF+?ht35!C)O4Get>p(dT+?Vb/0/+M24p)5Gl>9H$j+>5Dk>9G^E0d'aE0/4S34>E%+>,Mo/i=bW+>5Gl1E\kF+?ht3 -%5!C)O4Y-G+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>Y,t+C-*C0d&S@+>5Gl -%4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB1E\V!>p(dT+?Vb/0/4S345Gl1*AbE+?ht35!C)O45Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>Y-# -%+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)GPm>p(dT+?Vb/0/4S345Dk>9G^E0eskW+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ -%+>Y,p1E]sG0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB1E\D/+C-*C0d&S@+>5Gl4?O`>0HaRB -%0J5%%0J5%%0eP.&>p)G_r>p(dT+?Vb/0/4S345Gl1a"tG+?ht3 -%5!C)O4Gbs>p(dT+?Vb/0/4S345Gl1a"tG+?ht35!C)p+?ht34?O`>0H`1p0/4SR -%+?Vb/0/+MQ+>b2q+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%/i=b(2'?0I0/4S*+?ht35!C)Q4s2sM+>5Dk>9GaF2'?0I0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>b3"+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0J5%% -%>p(dT+>P''4s3$Q+?ht34?O`>0HaRB1a"M1+C-*C0d&S@+>5Gl4?O`>0HaRB/ho+=+>,E,+>,E,+C-*C0d&:q5!C)Q4s3$Q+?Vb/ -%0/+MQ+>b2q2BZ9J0/4S34,B(2'=M,2'=M,2'?0I0/4S++?ht35!C)Q4s4,R5!C)O4k8p0d'[C4?O`> -%0HaRB2'=Ur>p(dT+?Vb/0/+M245Gl0d&YD+?ht35!C)O4P'F+>5Gl4?O`>0H`J? -%+>5Dk>9GOR2'=M,2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GdG1E]sG0/4S34>E%+>,E,+>,E,+C-*C -%0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>k8u+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB -%2'=b!>p(dT+?Vb/0/+M24k9"+C-*C0d&S@+>5Dk4?O`>0HaRB -%/i#:,/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB2'=h#>p(dT+?Vb/0/+M245Gl0d&YD -%+?ht35!C)O45Gl4?O`>0H`J?+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GdG3?VTM -%0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>k8r0HaXD0/4S34>E% -%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>k8r0d'aE0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q -%4s3$Q+?Vb/0/+MQ+>k8r1*BjF0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>k8r1E]sG -%0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>k8r1a$'H0/4S34>E% -%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>k8r2'?0I0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q -%4s3$Q+?Vb/0/+MQ+>k8r2BZ9J0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+C-*R4s2sM+>5Dk2BXY- -%+BosN4G!E+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB2BXdu>p(dT+?Vb/ -%0/+M240HaRB2BXh!>p(dT+?Vb/0/+M240HaRB2BXk">p(dT+?Vb/0/+M245Gl0d&YD+?ht35!C)O45Gl -%4?O`>0H`J?+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S)+?ht35!C)Q4s2sM+>5Dk>9GgH3$;KL0/4S34>E%+>,Mo -%/i=bW+?ht35!C)Q4s2sM+>5Dk>9GgH3?VTM0/4S34>E%+>,Mo/i=bW+?ht35!C)Q4s2sM+>5Dk>9GgH0ea_U -%+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p)GSn>p(dT+?Vb/0/+M240HaRB2BX_0+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I5!C)Q4s3$Q+?Vb/0/+MQ+>t>s1E]sG -%0/4S34>E%+>,Mo/i=bW+?ht35!C)Q4s2sM+>5Dk>9GgH0f1"Y+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo -%>p)G_r>p(dT+?Vb/0/+M24t>s -%2BZ9J0/4S34>E%+>,Mo/i=bW+>5Gl1a"tG+?ht35!C)O4Get>p(dT+?Vb/0/+M24p)5Gl>9H$j+>5Dk>9GjI0d'aE0/4S34>E%+>,Mo/i=bW -%+>5Gl1*AbE+?ht35!C)O4Y-G+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT+>P''4s3$Q+?ht34?O`>0HaRB -%2]sq">p(dT+?Vb/0/+M245Dk4?O`>0HaRB -%0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB2]t%%>p(dT+?Vb/0/+M245Gl1*AbE -%+?ht35!C)O45Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT+>P''4s3$Q+?ht34?O`>0HaRB2]t+'>p(dT -%+?Vb/0/+M24>E%+>,Mo -%/i=bW+>5Gl1*AbE+?ht35!C)O4GVo>p(dT+?Vb/0/+M24>E%+>,Mo/i=bW+>5Gl1*AbE+?ht35!C)O4G\q>p(dT+?Vb/0/+M2 -%4>E%+>,Mo/i=bW+>5Gl -%1*AbE+?ht35!C)O4Gbs>p(dT+?Vb/0/+M24>E%+>,Mo/i=bW+?ht35!C)Q4s4,R5!C)O40HaRB3$9pu>p(dT+?Vb/ -%0/4S345Gl4?O`>0HaRB0J5%%0J5%%0eP.& -%>p)k9I+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GmJ -%2]uBK0/4S34>E%+>>E%+>>E%+C-*C0d&4o5!C)Q4s3$Q+?Vb/0/+MQ+?1K'+C-*C0d&S@+>5Gl4?O`>0HaRB -%0J5%%0J5%%0eP.&>p)5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/ -%0/+MQ+?1Ju0HaXD0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB3$9q2+C-*C0d&S@+>5Gl4?O`> -%0HaRB0J5%%0J5%%0eP.&>p)GYp>p(dT+?Vb/0/4S345Dk>9GmJ0f1"Y+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+?1Ju2'?0I0/4S34>E%+>>E%+>,Mo>p(dT+>b3)4s3$Q+?ht34?O`>0HaRB3$9q6+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%/i=bW -%+>5Gl1a"tG+?ht35!C)p+?ht34?O`>0H`@u0/4SR+?Vb/0/+MQ+?:Q!+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%/i=b(2'?0I0/4S* -%+?ht35!C)Q4s2sM+>5Dk>9GpK1E]sG0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB3?U1%>p(dT -%+?Vb/0/4S345Gl0d&YD+?ht35!C)O45Gl4?O`>0d&S@+>5Dk>9GUP0H`&% -%0H`&%0HaXD0/4S)+?ht35!C)Q4s2sM+>5Dk>9GpK3$;KL0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`> -%0HaRB3?U=)>p(dT+?Vb/0/4S345Dk>9GpK0ea_U+>5Gl4?O`>0d&S@+>5Dk -%>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+?:Q!1*BjF0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht3 -%4?O`>0HaRB3?U%4+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)G\q>p(dT+?Vb/0/4S3 -%45Dk>9GpK0f:(Z+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H_u*+C-*C0d&:q -%5!C)Q4s3$Q+?Vb/0/+MQ+?:Q!2BZ9J0/4S34>E%+>>E%+>,Mo>p(dT+>b3)4s3$Q+?ht3>p)p(dT+?Vb/0/4S34GPm1E]sG -%0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0ea_-+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%/i#:, -%/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB0ea_/+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT+>P''4s3$Q+?ht3 -%4?O`>0HaRB0ea_0+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)p(dT+?Vb/0/4S3 -%45Dk>9GXS+>GPm>p(dT+?Vb/0/4S345Dk>9GXS+>GVo>p(dT+?Vb/0/4S345Dk>9GXS+>GYp>p(dT -%+?Vb/0/4S345Dk>9GXS+>G\q>p(dT+?Vb/0/4S345Dk>9GXS+>G_r>p(dT+?Vb/0/4S345Dk -%>9GXS+>Gbs>p(dT+?Vb/0/4S34GSn0/4SR+?Vb/0/+MQ -%+>GSn2'?0I0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>GSn2]uBK0/4S34>E%+>>E%+>>E%+C-*C0d&4o5!C)Q4s3$Q+?Vb/0/+MQ+>GSn0f:(Z+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`&%0HaXD -%0/4S++?ht35!C)Q4s2sM+>5Dk>9GXT+>Gbs>p(dT+?Vb/0/4S345Gl1a"tG+?ht35!C)p+?ht3 -%4?O`>0H`)*+>5Gl>9H$j+>5Dk>9GXU+>G!E+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB -%0esk-+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)p(dT+?Vb/0/4S345Gl0d&YD+?ht35!C)O4p(dT+?Vb/0/4S345Gl1*AbE -%+?ht35!C)O4p(dT+?Vb/0/4S345Dk>9GXU+?:QM+>5Gl -%4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GVo0ea_U+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)& -%0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GVo0eskW+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GVo -%0f'qX+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GVo0f1"Y+>5Gl4?O`>0d&S@+>5Dk>9GUP -%0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GVo0f:(Z+>5Gl4?O`>0H`J?+>5Dk>9GOQ1,U1,1,U1,2'?0I0/4S++?ht35!C)Q -%4s2sM+>5Dk>9GXU+>Gbs>p(dT+?Vb/0/+M245Gl1a"tG+?ht35!C)p+?ht34?O`>0H`)++>5Gl -%>9H$j+>5Dk>9GXV+>G!E+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB0f'q.+C-*C0d&S@ -%+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)p(dT+?Vb/0/4S345Gl0d&YD+?ht35!C)O4p(dT+?Vb/0/4S345Gl1*AbE+?ht35!C)O4p(dT+?Vb/0/4S345Dk>9GXV+?:QM+>5Gl4?O`>0d&S@+>5Dk -%>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GYp0ea_U+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q -%+?Vb/0/+MQ+>GYp0eskW+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GYp0f'qX+>5Gl4?O`> -%0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GYp0f1"Y+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD -%5!C)Q4s3$Q+?Vb/0/+MQ+>GYp0f:(Z+>5Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H_u*+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+>GYp -%0fC.[+>5Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H_u*+C-*C0d&:q5!C)Q4s3$Q+C-*R4s2sM+>5Dk0f1"+0d'[C4?O`>0HaRB0f1"- -%+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%/i=b(2'?0I0/4S*+?ht35!C)Q4s2sM+>5Dk>9GXW+>Y-G+>5Gl4?O`>0d&S@+>5Dk>9GUP -%0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>G\q2'?0I0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q -%+?Vb/0/+MQ+>G\q2]uBK0/4S34>E%+>>E%+>>E%+C-*C0d&4o5!C)Q4s3$Q+?Vb/0/+MQ+>G\q3$;KL0/4S3 -%4>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0f1"5+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.& -%>p)5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)5Gl4?O`>0HaRB0J5%% -%0J5%%0eP.&>p)5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)5Dk4?O`>0HaRB/ho+=+>,E,+>,Mo>p(dT+>b3)4s3$Q+?ht34?O`>0HaRB0f1"-2BZ9J0/4S34,B(2'=M,2'=M/+C-*C0d&:q5!C)Q4s3$Q+C-*R4s2sM+>5Dk0f:(,0d'[C4?O`>0HaRB0f:(.+C-*C0d&S@+>5Gl -%4?O`>0HaRB0J5%%/i=b(2'?0I0/4S*+?ht35!C)Q4s2sM+>5Dk>9GXX+>Y-G+>5Gl4?O`>0d&S@+>5Dk>9GOQ1,U1,1,U1,1,U1[ -%+>5Gl1a"tG+?ht35!C)O4p(dT+?Vb/0/4S34p(dT+>b3)4s3$Q+?ht34?O`> -%0HaRB0f:(2+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB0f:(4+C-*C0d&S@+>5Gl -%4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT+>P''4s3$Q+?ht34?O`>0HaRB0f:(5+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%/i=bW -%+>5Gl1a"tG+?ht35!C)O4p(dT+?Vb/0/4S345Dk -%>9GXX+>GPm>p(dT+?Vb/0/4S34G_r0eskW+>5Gl4?O`>0d&S@+>5Dk -%>9GOQ1,U1,1,U1,2'?0I0/4S++?ht35!C)Q4s2sM+>5Dk>9GXX+>G\q>p(dT+?Vb/0/4S345Gl -%1a"tG+?ht35!C)p+?ht34?O`>0H`).+>5Gl>9H$j+>5Dk>9GXY+>G!E+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u*+>,Mo>p(dT+>Y-( -%4s3$Q+?ht34?O`>0HaRB0fC.1+C-*C0d&S@+>5Gl4?O`>0HaRB/ho+=+>,E,+>,E,+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+>Gbs -%1a$'H0/4S34,B(2'=M,2'=M,2'?0I0/4S++?ht35!C)Q4s2sM+>5Dk>9GXY+>k9I+>5Gl4?O`>0d&S@+>5Dk -%>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GXY+?(EK+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S) -%+?ht35!C)Q4s2sM+>5Dk>9GXY+?1KL+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H_u*+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+>Gbs -%3?VTM0/4S34>E%+>>E%+>,Mo>p(dT+>b3)4s3$Q+?ht34?O`>0HaRB0fC./0HaXD0/4S34>E%+>>E%+>,Mo>p)5Gl4?O`>0HaRB/ho+=+>,E,+>,Mo>p(dT+>b3)4s3$Q -%+?ht34?O`>0HaRB0fC./1a$'H0/4S34,B(2'=M,2'=M/+C-*C0d&:q5!C)Q4s3$Q+C-*R4s4,R5!C)Q4s2L7 -%+>b3)4s3$Q+?ht34?O`>0H`J?+>5Dk./s5H=TDk1CB/JWD#eJSD?+ST=o`+6D?+GP@/t'CFX\Fd2'>"D+>5Dk0H`#'+?Vb/0/+MQ -%+?Vb/0/+M#/i=b)1*A"Es8N?R+?ht34?O`>0H_r"2'=P-+=R6hs#VYP5!C)O4#3'+>5Jm./s8H>:C[Y4s2sM+>5Dk/M8n' -%0/=Xurr4)X.3Lf<+?Vb/0/+M#/i=b)1*A"Eru`:1+?ht34?O`>0H_r"2'=P-+=R6h0F0*M5!C)O4#3'+>5Jm./s6#$7R)] -%4s2sM+>5Dk/M8n'0/=Xurr4Y\.3Lf<+?Vb/0/+M#/i=b)1*A"Es"Fp3+?ht34?O`>0H_r"2'=P-+=R6h0G#ZU5!C)O4#3' -%+>5Jm./s6#'Ib.g4s2sM+>5Gl/M8n'0/=Xurr0d&'=P-+=R6hs'7&r -%5!C)O4#3'+>5Jm./s5h)(?[l4s2sM+>5Gl/M8n'0/=Xurr4)].3Lf<+?Vb/0/4S$/i=b)1*A"Es"Fa.+?ht34?O`>0d&&# -%2'=P-+=R6h0FK#3'+>5Jm./s6#%4ND`4s2sM+>5Gl/M8n'0/=Xurr4Y_.3Lf<+?Vb/0/4S$/i=b)1*A"Es"G$6 -%+?ht34?O`>0d&'=P-+=R6h0GQ#Z5!C)O4#3'+>5Jm./s8H%OiMa4s2sM+>5Gl/M8n'0/=Xurr4YR.3Lf<+?Vb/0/4S$ -%/i=b)1*A"Es8NKV+?ht34?O`>0d&'=P-+=R6h0EEUF5!C)O4#3$2'=P,+>#3$2'=P-+=R6hru*=/5!C)O4#3$ -%2'=P,+>#3$2'=P-+=R6hru3C05!C)O4#3$2'=P,+>#3$2'=P-+=R6h0`*:A5!C)O4#3$2'=P,+>#3$2'=P-+=R6h -%+:otE5!C)p+?ht30/=Y445Gl>9H$j+>5Dk>9GXC2'?0I0/4S34,E,+>,E, -%+>,E,+C-*C0d&1n5!C)Q4s3$Q+C-*R4s2sM+>5Dk1*A5)+BosN4G!E+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo -%>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB1*A=p>p(dT+?Vb/0/+M245Gl1E\kF+?ht35!C)O4Y-G+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB1*ACr>p(dT+?Vb/0/+M24P&s+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!& -%4s3$Q+?ht34?O`>0HaRB1*ALu>p(dT+?Vb/0/+M245Gl1*AbE+?ht35!C)O45Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB1*AS">p(dT+?Vb/0/+M24P&o0HaXD0/4S34>E%+>,Mo/i=bW+>5Gl1E\kF+?ht35!C)O -%4GSn>p(dT+?Vb/0/+M245Gl1E\kF+?ht35!C)O4GVo>p(dT+?Vb/ -%0/+M24P&o1E]sG0/4S34>E%+>,Mo/i=bW -%+>5Gl1E\kF+?ht35!C)O4G\q>p(dT+?Vb/0/+M24P&o2'?0I0/4S34>E%+>,Mo/i=bW+>5Gl1E\kF+?ht35!C)O4Gbs>p(dT+?Vb/0/+M24P&o2]uBK0/4S34,Mo/i=b(2'?0I5!C)Q4s3$Q -%+C-*R4s2sM+>5Dk1E\>*+BosN4G!E+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`> -%0HaRB1E\Ir>p(dT+?Vb/0/4S345Dk>9G^E2'?0I0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>Y-!+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT+>P'' -%4s3$Q+?ht34?O`>0HaRB1E\Y">p(dT+?Vb/0/4S345Dk>9G^E3?VTM0/4S3 -%4>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB1E\D++C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.& -%>p)GVo>p(dT+?Vb/0/4S345Dk>9G^E0f'qX -%+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>Y,p1a$'H0/4S34>E%+>>E% -%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB1E\D0+C-*C0d&S@+>5Gl4?O`>0HaRB/ho+=+>,E,+>,Mo>p(dT+>b3)4s3$Q+?ht34?O`> -%0HaRB1E\D1+C-*C0d&S@+>5Gl4?O`>0HaRB/ho+=+>,E,+>,Mo>p(dT+>b3)4s3$Q+?ht3>p)5Gl>9H$j+>5Dk -%>9GaF0d'aE0/4S34>E%+>,Mo/i=bW+>5Gl1E\kF+?ht35!C)O4k9I+>5Gl4?O`>0d&S@+>5Dk -%>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GaF2]uBK0/4S34>E%+>>E%+>>E%+C-*C0d&4o -%5!C)Q4s3$Q+?Vb/0/+MQ+>b2q2'?0I0/4S34,B(2'=M,2'=M,2'?0I0/4S++?ht35!C)Q4s2sM+>5Dk>9GaF -%0fC.[+>5Gl4?O`>0d&S@+>5Dk>9GOQ1,U1,1,U1,1,U1[+>5Gl1a"tG+?ht35!C)p+?ht34?O`>0H`4q0/4SR+?Vb/0/+MQ+>k8r -%+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB2'=Xs>p(dT+?Vb/0/+M245Gl0d&YD+?ht35!C)O4Y-G+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht3 -%5!C)Q4s2sM+>5Dk>9GdG1a$'H0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>k9!+C-*C -%0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GdG2BZ9J0/4S34,E,+>,E, -%+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>k9#+C-*C0d&S@+>5Dk4?O`>0HaRB/i#:,/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht3 -%4?O`>0HaRB2'=k$>p(dT+?Vb/0/+M245Gl0d&YD+?ht35!C)O45Gl4?O`> -%0H`J?+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GdG0ea_U+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u'2'=M, -%2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GdG0ejeV+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM -%+>5Dk>9GdG0eskW+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GdG0f'qX+>5Gl4?O`> -%0H`J?+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GdG0f1"Y+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u'2'=M, -%2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GdG0f:(Z+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM -%+>5Dk>9GdG0fC.[+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GdG0fL4\+>5Gl4?O`> -%0H`J?+>5Dk>9GOR2'=M,2'=M,2'?0I5!C)Q4s3$Q+C-*R4s2sM+>5Dk2BXY-+BosN4G!E+>5Gl4?O`>0H`J?+>5Dk -%>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB2BXdu>p(dT+?Vb/0/+M240HaRB2BXh!>p(dT+?Vb/0/+M240HaRB2BXk">p(dT+?Vb/0/+M245Gl0d&YD+?ht35!C)O45Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S) -%+?ht35!C)Q4s2sM+>5Dk>9GgH3$;KL0/4S34>E%+>,Mo/i=bW+?ht35!C)Q4s2sM+>5Dk>9GgH3?VTM0/4S3 -%4>E%+>,Mo/i=bW+?ht35!C)Q4s2sM+>5Dk>9GgH0ea_U+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p)

GSn>p(dT+?Vb/0/+M240HaRB2BX_0+C-*C0d&S@ -%+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I5!C)Q4s3$Q+?Vb/0/+MQ+>t>s1E]sG0/4S34>E%+>,Mo/i=bW+?ht3 -%5!C)Q4s2sM+>5Dk>9GgH0f1"Y+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p)G_r>p(dT+?Vb/ -%0/+M24t>s2BZ9J0/4S34>E%+>,Mo/i=bW -%+>5Gl1a"tG+?ht35!C)O4Get>p(dT+?Vb/0/+M24,Mo>p)0H`:s -%0/4SR+?Vb/0/+MQ+?(Dt+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I0/4S)+?ht35!C)Q4s2sM+>5Dk>9GjI1E]sG0/4S3 -%4>E%+>,Mo/i=bW+>5Gl1*AbE+?ht35!C)O4b3H+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo -%>p(dT+>P''4s3$Q+?ht34?O`>0HaRB2]st#>p(dT+?Vb/0/+M245Gl0d&YD+?ht35!C)O45Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S)+?ht35!C)Q4s2sM+>5Dk>9GjI3$;KL0/4S34>E%+>,Mo/i=bW+>5Gl1*AbE+?ht35!C)O45Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT+>P'' -%4s3$Q+?ht34?O`>0HaRB2]sh/+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I0/4S)+?ht35!C)Q4s2sM+>5Dk>9GjI0eskW -%+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT+>P''4s3$Q+?ht34?O`>0HaRB2]sh2+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%% -%/i=b(2'?0I0/4S)+?ht35!C)Q4s2sM+>5Dk>9GjI0f1"Y+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT+>P''4s3$Q+?ht3 -%4?O`>0HaRB2]sh4+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I0/4S)+?ht35!C)Q4s2sM+>5Dk>9GjI0fC.[+>5Gl4?O`> -%0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT+>P''4s3$Q+?ht34?O`>0HaRB2]sh6+C-*C0d&S@+>5Dk4?O`>0HaRB/i=b(2'=M/+C-*R -%4s3$Q+?ht3>p)5Gl>9H$j+>5Dk>9GmJ0d'aE0/4S34>E%+>,Mo/i=bW+>5Gl1E\kF+?ht3 -%5!C)O4Y-G+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+?1K$+C-*C0d&S@+>5Gl -%4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB3$:.&>p(dT+?Vb/0/4S345Gl1*AbE+?ht35!C)O45Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+?1K( -%+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)GPm>p(dT+?Vb/0/4S345Dk>9GmJ0eskW+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ -%+?1Ju1E]sG0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB3$9q4+C-*C0d&S@+>5Gl4?O`>0HaRB -%0J5%%0J5%%0eP.&>p)G_r>p(dT+?Vb/0/4S345Dk>9GmJ0fC.[+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H_u*+C-*C0d&:q5!C)Q4s3$Q+C-*R4s2sM+>5Dk3?Tt0+BosN -%4G!E+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB3?U+#>p(dT+?Vb/0/4S3 -%45Dk>9GpK2'?0I0/4S34>E%+>,E,+>,E,+C-*C0d&1n -%5!C)Q4s3$Q+?Vb/0/+MQ+?:Q'+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT+>P''4s3$Q+?ht34?O`>0HaRB3?U:( -%>p(dT+?Vb/0/4S345Dk>9GpK3?VTM0/4S34>E%+>>E% -%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB3?U%1+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)GVo>p(dT+?Vb/0/4S345Dk>9GpK0f'qX+>5Gl4?O`>0d&S@+>5Dk>9GUP -%0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+?:Q!1a$'H0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`> -%0HaRB3?U%6+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1a"tG+?ht35!C)O4Gbs>p(dT+?Vb/0/4S3 -%4GPm0/4SR+?Vb/0/+MQ+>GPm0d'aE0/4S34>E%+>,Mo/i=bW+>5Gl1E\kF+?ht35!C)O4p(dT+?Vb/0/4S345Dk>9GXS+>k9I+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GXS+?(EK -%+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S)+?ht35!C)Q4s2sM+>5Dk>9GXS+?1KL+>5Gl4?O`>0d&S@+>5Dk>9GUP -%0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GPm3?VTM0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`> -%0HaRB0ea_)0HaXD0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0ea_)1*BjF0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0ea_)1E]sG0/4S34>E%+>>E%+>GK&+C-*R4s3$Q -%+?ht34?O`>0HaRB0ea_)1a$'H0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0ea_)2'?0I0/4S3 -%4>E%+>>E%+>,Mo>p(dT+>b3)4s3$Q+?ht34?O`>0HaRB0ea_)2BZ9J0/4S34>E%+>>E% -%+>,Mo>p(dT+>b3)4s3$Q+?ht3>p)p(dT+?Vb/0/4S345Gl0d&YD+?ht35!C)O4p(dT+?Vb/0/4S345Gl1*AbE+?ht35!C)O -%45Gl4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT+>b3)4s3$Q+?ht34?O`>0HaRB0eje*2BZ9J0/4S3 -%4>E%+>>E%+>>E%+C-*C0d&:q5!C)Q4s3$Q+C-*R4s2sM+>5Dk0esk)0d'[C4?O`>0HaRB0esk++C-*C0d&S@ -%+>5Gl4?O`>0HaRB0J5%%/i=b(2'?0I0/4S*+?ht35!C)Q4s2sM+>5Dk>9GXU+>Y-G+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)& -%0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GVo2'?0I0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ -%+>GVo2]uBK0/4S34>E%+>>E%+>>E%+C-*C0d&4o5!C)Q4s3$Q+?Vb/0/+MQ+>GVo3$;KL0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0esk3+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)5Gl4?O`>0HaRB0J5%%0J5%%0eP.& -%>p)5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)5Dk4?O`>0HaRB/ho+=+>,E,+>,Mo>p(dT+>b3)4s3$Q+?ht34?O`>0HaRB0esk+2BZ9J0/4S34,B(2'=M,2'=M/+C-*C0d&:q5!C)Q4s3$Q+C-*R4s2sM+>5Dk0f'q*0d'[C4?O`>0HaRB0f'q,+C-*C0d&S@+>5Gl4?O`>0HaRB -%0J5%%/i=b(2'?0I0/4S*+?ht35!C)Q4s2sM+>5Dk>9GXV+>Y-G+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q -%+?Vb/0/+MQ+>GYp2'?0I0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>GYp2]uBK0/4S3 -%4>E%+>>E%+>>E%+C-*C0d&4o5!C)Q4s3$Q+?Vb/0/+MQ+>GYp3$;KL0/4S34>E%+>>E% -%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0f'q4+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)5Gl4?O`>0HaRB -%0J5%%0J5%%0eP.&>p)5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)5Dk -%4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1a"tG+?ht35!C)O45Dk4?O`>0HaRB0J5%%0J5%%/i=bW -%+>5Gl1a"tG+?ht35!C)p+?ht34?O`>0H`),+>5Gl>9H$j+>5Dk>9GXW+>G!E+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u*+>,Mo>p(dT -%+>Y-(4s3$Q+?ht34?O`>0HaRB0f1"/+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)p(dT+?Vb/0/4S345Gl0d&YD+?ht35!C)O4p(dT+?Vb/0/4S345Gl1*AbE+?ht35!C)O4p(dT+?Vb/0/4S345Dk>9GXW+?:QM+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>G\q0ea_U+>5Gl4?O`> -%0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>G\q0eskW+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD -%5!C)Q4s3$Q+?Vb/0/+MQ+>G\q0f'qX+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>G\q0f1"Y -%+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>G\q0f:(Z+>5Gl4?O`>0H`J?+>5Dk>9GOQ1,U1, -%1,U1,2'?0I0/4S++?ht35!C)Q4s2sM+>5Dk>9GXW+>Gbs>p(dT+?Vb/0/+M245Gl1a"tG+?ht3 -%5!C)p+?ht34?O`>0H`)-+>5Gl>9H$j+>5Dk>9GXX+>G!E+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q+?ht3 -%4?O`>0HaRB0f:(0+C-*C0d&S@+>5Gl4?O`>0HaRB/ho+=+>,E,+>,E,+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+>G_r1a$'H0/4S3 -%4,B(2'=M,2'=M,2'?0I0/4S++?ht35!C)Q4s2sM+>5Dk>9GXX+>k9I+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u' -%2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GXX+?(EK+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S)+?ht35!C)Q -%4s2sM+>5Dk>9GXX+?1KL+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H_u*+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+>G_r3?VTM0/4S3 -%4>E%+>>E%+>,Mo>p(dT+>b3)4s3$Q+?ht34?O`>0HaRB0f:(.0HaXD0/4S34>E%+>>E% -%+>,Mo>p)5Gl4?O`>0HaRB/ho+=+>,E,+>,Mo>p(dT+>b3)4s3$Q+?ht34?O`> -%0HaRB0f:(.1a$'H0/4S34,B(2'=M,2'=M/+C-*C0d&:q5!C)Q4s3$Q+C-*R4s2sM -endstream endobj 67 0 obj <>stream -+>5Dk0fC.-0d'[C4?O`> -%0HaRB0fC./+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%/i=b(2'?0I0/4S*+?ht35!C)Q4s2sM+>5Dk>9GXY+>Y-G+>5Gl4?O`>0d&S@ -%+>5Dk>9GOQ1,U1,1,U1,1,U1[+>5Gl1a"tG+?ht35!C)O4p(dT+?Vb/0/4S34p(dT+>b3)4s3$Q+?ht34?O`>0HaRB0fC.3+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`> -%0HaRB0fC.5+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT+>P''4s3$Q+?ht34?O`>0HaRB0fC.6+C-*C0d&S@+>5Gl -%4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1a"tG+?ht35!C)O4p(dT+?Vb/0/4S345Dk>9GXY+>GPm>p(dT+?Vb/0/4S34Gbs -%0eskW+>5Gl4?O`>0d&S@+>5Dk>9GOQ1,U1,1,U1,2'?0I0/4S++?ht35!C)Q4s2sM+>5Dk>9GXY+>G\q>p(dT+?Vb/0/4S345Gl1a"tG+?ht35!C)p+?ht34?O`>0H`)/+>5Gl>9H$j+>5Dk>9GXZ+>G!E+>5Gl4?O`>0d&S@+>5Dk -%>9GOU+>,Mo/i=bW+?ht35!C)Q4s4,R5!C)O4Ghu0/4SR+?Vb/0/+MQ+>Ghu0d'aE0/4S34,Mo/i=b( -%2'?0I5!C)Q4s3$Q+C-*R4s4,R5!C)Q4s2L7+>P''4s3$Q+?ht3>p(dT+BosN4=p%4s2sM+>5Dk0d&YD+?Vb/0/+M(+?ht3 -%4?O`>0H`.o5!C)p+?ht30/Oe64kJ!+[N$0/Xk74I.0(n!/c[p43rhJF -%>l]9QU*(-m)'BqB0HgNA#quB6!\ad3#qu`@%58;H&MOqR5qkY[75.4c8MFX.K.r!5LG4`BRkU?dSM6WhTeN5qV(ef$WA)4Dj"TRK -%k:l5Gl./s5H>UTSV!.+^@!2gqV+<3'@0FBKB0FfcJ0G6&Rrr`9(rs8WI -%s#^6bs5b[P0/=Xurr4)T+=/-W.3L9"+=R6h0EEj/rs\o;.3L9#+>G!&4s3$Q+?ht34?O`>0H`J?+>5Dk./s5H;ZL_9AcQp%+>5Sp -%4?O`>0H_eCru`1%*A@LJ!\ad3#qu`@%58;H&MOqRSM6Whq_7t&rr3$!$3(G6%f[II)uh#[4o\e:+>5Gl./s5h(a'eP#VZT>$nr/F -%&24gu#ld!d>:C[J1*A"Eru`!u,p4N`+>5Mn./s6#!AFTT%0$ed+>5Po1*AbE+?ht35!C)p+>5Gl>9H$j+>5Dk0H`PC+?Vb/0/+M' -%+?ht3>p)5Sp4?O`>0HaRB4?O`>0H`J?+>5Dk./s5H>6%CuDZFeXD#duEC]J#HEr[<_=o`+6B`MWCBE2TDD?+8KDZFeXD#duE -%F9#Sq+>5Vq4?O`>0H`+n0/4S(1+k7'0/=Y^@;L!r+>5MnAmoLsAKWW_+EVXHAKWW`+>Pl.0H`#,+>GK&+>5Yr0eP.&0/t(.+>5_t -%0J5%%0/5.'0J5%%0/51(0d&,(1*A7n0/57*0H`#'1a"Ip0/5=,0H`#'2BX[r0/5C.0J5%%0/5F/FE2M8+>5H0+D,%uF(HII1,'hm -%Eckq90/>7)AmoLsAKWW]1*C1;Cia/10/>=+AmoLsAKWW]1a$C=Cia/10/>C-AmoLsAKWW]2BZU?Cia/10/>I/FE2M8+>5K0+D,%u -%F(HII1-$Ih@;L!r+>5N)+>=ok1GL"a@;L!r+>5N++D,%uF(HII1G^.c@;L!r+>5N-+D,%uF(HII1Gp:0+>5N/+>>E%+>5N0+>P&m -%1H6L61*A5+3?U!u0/P@*AmoLsAKWW_0d&4o0/PF,0H`#*1E\eB+>5Dk/i=b84s2L81a"Or0/PO/1*A5,2BXq$0/PU10H`#*3$9mt -%0/P[3/MSk3+>5T++>#<#0H`#+0d&.m0/YL-AmoLsAKWW`1E\eB+>5`8+>6Z-D/a<&:gn'UF5Gl>9GXQ0H`&% -%0H`&%0H`&%0HaXD5!C)Q4s2L91a"nC+>5`8+>6Z-D/a<&:gn'UF5Gl>9GXQ0H`&%0H`&%0H`&%0HaXD5!C)Q -%4s2L92'>"D+>5`8+>6)J8Q98GF@'eTDId=!+?ht30/YX1FE2M8+>5T2+D,%uF(HII2)l_#Eckq90/Ya4AmoLsAKWWa0Hat9Cia/1 -%0/bO-0H`#,1*A7n0/bU/0eP.&0/bX01bLI)0/b[10J5%%0/b^2>9I2o0/ba3>9I2o0/bd40H`#,3?U!u0/kR-0H`#-0d&:q0/kX/ -%0J5%%0/k[00J5%%0/k^1AmoLsAKWWb2'?L>Cia/10/kd3AmoLsAKWWb2^!3_F_)[K2`Mq%Eckq90/km64?O`>3B838;e^)fCh6FO -%Bl8#80/+M24Ful0d'[C0eP.&0eP.&0eP.&0J5%%>p)3B838;e^)fCh5tVF*)>;7V-"MF`M%95!C)B3&_s70JG+5+>5]6+EVXHAKX0#+?ht35!C)p+>5Gl -%>9H$j+>5Dk0H`PC+C-*R4s2L:+?Vb/0/+MQ+?Vb/0/+M24kL!*q#r0/Xk74=ok0d&/&0H`#(+>>E%+>5Mn0J5%%0/Oe*/heD$2'=S*0H`#,+>Ful2]sh-1*A50+>=ok3?WEa -%F_)[K0ea_.+>5H(+>P&m0esk,+>5H*+>=ok0f1"/2D-[+0/5=,FE2M8+>5H-+>,Mo0/5C.>9GOX+>GK&+>GK)1E]sG0/5F/>9GUP -%0H`&%0H`&%0HaXD0/5I0>9GXQ0H`)&0H`)&0HaXD0/>4(2BXY.0d((:Cia/10/>:*0H`#(1E^:@,0H`#(2'=Rq0/>I/ -%05bK?+>5K.+D,%uF(HII1,pC0DJO1AmoLsAKWW^0H`J?+?ht30/G=*1H$j>+>5N++?Vb/5!C)B1G^.-+>5N-+>=ok1Gp:/ -%+>5N/+>7VHC`kAe2]sds0/GR1AmoLsAKWW^3?U!u0/P@*1*AbE+?ht35!C)p+>5Gl>9H$j+>5Dk0H`PC+C-*R4s2L<+?Vb/0/+MQ -%+?Vb/0/+M242`E?D0ebRD+?);@0J5(60Jtj52`EZS/ho(73&Da:3B8cG0eb:=3?U7>2`E?D0ebRD+?);@0J5(60Jtj52`EZS/ho(73&Da; -%0K;$E2E!HN+?)5<2_Hg>0K:m33&!5Jm>9GXQ0H`&%0H`&%0H`)& -%0H_r,2(gmJ1,_$53A*-G1c799>p(dZ+>Gi.0H`#.+>Gi.0H`PC+?ht35!C)O41G1OC0Jt^13& -%3B/-@0K([=0JG1;3?U:;0fL^@1G_$N+?2&51+k770Jkd43&<9J/i,:>3B/-@2E1G1OC0Jt^1 -%3&<9J/i,:>3B/-@2E1G1OC0Jt^13&<9J/i,:>3B/-@2E -%1G1OC0Jt^13&Ful1*BdD0eP.&0J5%%0J5%%0eP.&1bgU?3AN?M+>#<-3%d3J0JkR.>p(dZ -%+>Gi.0H`#.+>Gi.0H`PC+?ht35!C)O40K([=0JG1;3?U:;0fL^@1Gh*M -%+?2&51+k770Jkd43&<9J/i,:?3Ar!>2`EQG2DI*F0d&G30fL^@1Gh*M+?2;=1bL[@2DR!03&<9J/i,:?3Ar!>2`EQG2DI*F0d&G3 -%0fL^@1Gh*M+?2;=1bL[@2DR!03&<9J/i,:?3Ar!>2`EQG2DI*F0d&G32_m!D2E3]S+?2;=1bL[@2DR!03&Ful1*BdD0eP.&0J5%%0J5%%0eP.&0eP.<1c.'4/MSq>/iGCA1c6C]+>5Yr0fUd>+>5\s0fUd>+?ht35!C)Q4s4,R -%5!C)Q4s2L5+?Vb/0/+M245Gl>9H$j+>5Dk./s5H+=SEd0d%nDrr=c&+?ht34?O`>0H_eCrr5Gl./s5H -%2CTb44s2sM+>5Dk./s5H#q6uM0d%nDrr=`%+?ht34?O`>0H_eCrubPq.3L8u+=R6h!&Z2J5!C)O4=ok1*A7n0/F_'2)mB7 -%0/Oe(1G^g00/Xk)2)mB70/aq*1G^g00/k"+2]sb5+EVXHAKWWd+BosN4=ok0d%nDru`:1+>5Jm./s5h*@W*a1E\+Fru`.- -%+>5Po./s5h)(?[l4s2sM+>5Dk0d&,(+=R6h+<;mR0/=Xurr4)].3L9"+=R6h+;lUN0/Oe"rr4)Y.3Lf<+?Vb/0/+M(+>5Gl./s5H -%X!o/E1*A"ErrBY[+>5Mn./s5h(b$R\1a"4Gru`1.+?ht34?O`>0H`.o0/4Rtrr2u!.3L9!+=R6h!4s[&0/F_!rr4)X.3L9#+=R6h -%+;lUN5!C)O4b2o0d%nDru`@3+>5Jm./s5h*%5Po./s5h(b$Rk4s2sM+>5Dk2'=P,+=R6h+5Gl./s5HX!o/E1*A"ErrBY[+>5Mn./s5h3@Q((1a"4Grua?O+?ht3 -%4?O`>0H`:s0/4Rtrr4)\.3L9!+=R6h+<;mR0/F_!rr4)X.3L9#+=R6h+;lUN5!C)O45Jm./s5H]."jU -%1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk3?Tt0+=R6h!37Ok0/=Xurr2u1.3L9"+=R6h+;cOM0/Oe"rr4)Y.3Lf<+?Vb/0/+M' -%1*A5)+=R6h+<2gQ0/=Xurr4)].3L9"+=R6h+;cOM0/Oe"rr4)Y.3Lf<+?Vb/0/+M'1E\>*+=R6h+<;mR0/=Xurr4)].3L9"+=R6h -%+;lUN0/Oe"rr4)Y.3Lf<+?Vb/0/+M'1a"G++=R6h+<2gQ0/=Xurr4)].3L9"+=R6h+;cOM0/Oe"rr4)Y.3Lf<+?Vb/0/+M'2'=P, -%+=R6h+<2gQ0/=Xurr4)].3L9"+=R6h+;cOM0/Oe"rr4)Y.3Lf<+?Vb/0/+M'2BXY-+=R6h+<;mR0/=Xurr4)].3L9"+=R6h+;lUN -%0/Oe"rr4)Y.3Lf<+?Vb/0/+M'3$9k/+=R6h!37Ok0/=Xurr2u1.3L9"+=R6h+;cOM0/Oe"rr4)Y.3Lf<+?Vb/0/+M(1*A5)+=R6h -%+*+=R6h+*+=R6h+* -%+=R6h+<2gQ0/=Xurr4)].3L9"+=R6h+;cOM0/Oe"rr4)Y.3Lf<+?Vb/0/+M*1a"G++=R6h!37Ok0/=Xurr2u1.3L9"+=R6h+?:kn -%0/Oe"rr4*%.3Lf<+?Vb/0/+M*2'=P,+=R6h+<2gQ0/=Xurr4)].3L9"+=R6h+;cOM0/Oe"rr4)Y.3Lf<+?Vb/0/+M*2BY1I+?Vb/ -%0/+M*2]t:J+?Vb/0/+M*3$:CK+C-*C0eje/+>5H,+?Vb/0/+Lsrr2sh!-J9Z!-8-Z!+c.H!,O),5!C)B0fC.d@;L!r+?ht30/4SR -%+?Vb/0/+M245Vq -%0H`PC+?ht30/4S)+?ht3>p)5Vq4?O`>0HaRB4?O`>0H`J?+>5Dk4?O`>0H_eCs!]'D2'=Rq0/aq84=ok0d&2-0J5%% -%0/Xk32D-g/5!C)Q4s3$Q+>5Gl1*AbE+C-*R4s2L50H`J?+>5Dk1a"G,+EVXHAKX0#+?ht30/4S34=p%4s4,R -%0/=YS+?Vb/00)$802P"Y0/Xk++>5Vq>9H$j+>5`8+>62,0/5.'0H`#&+?Vb/0/+MQ+?);@0J5(60Jtj52`EZS/ho(73&Da`+?ht3 -%0/4SR+>>E%+>>E%+?;D62)[p(dX+>P&m2BZ3H4?O`>3B838;BRVI+BosB/heD%/heD.3%d'H2*!E70etL: -%3&ifT1*BjF0/aqW+?Vb/00)$802`oG0d'[C0J5%%0J5%%3B/WK2DmKM+>GW,/iYgK2_lL]+>5Sp1*A5.+BosN45H' -%+?;G73AicR+>5H++>#<&2D-a=0JYO/0/5=,1-$sI2D@$F+>5Dk4?O`>0HaRB0J5%%3B8]P2)mH9>p)5Gl>9GUP0H_r%0fCX> -%0JG7?+?;D62)[4/ibgD2DZI]+>5Vq>9H$j+>5`8+>6Y90/5=,4?O`>0H`+n0/=Y(+>5SpAmoLsAKX0#+>5Vq>9H$j+>5`8 -%+>65-0/4SR+>>E%+>#<&2D-a=0JYO/3&<0I3B/lQ+>Pr03ArQL1E]sG0/XkV+>Pr"0d'aE0/t(Y+?);@0J5(60Jtj52`EWK/iYaL -%0f1"40K1g@0KD-J1*AM90K1U<1-%9R+C-*C3?VNK2`WlP/ho%62)ud<2`5H( -%+EVXHAKWW\1*A/'0fCX>0JG7?+>5H*+>Pr03ArQL1E\>+0H`%l5!C)p+?ht3>p)p)5Vq0H`PC+?ht30/4S(3$:CK+C-*R4s2L:+?Vb/0/+MQ+?Vb/0/+M245Vq4?O`>0H`(m0/4S.1+k7'0/YO.4?O`>3B8386U=:CAU&;n@;0V$+>5Sp./s5H5lbd&DZFYT+944u2#oTb -%+>5Dk4?O`>0H`(m0/4SR+>GK&+>,B.0Jb^3/i#+:3AM^01,UaG3$;KL5!C)Q4s2L92B[*^F_)[K2DcO20J5%%5!C)Q4s3$Q+>5Gl -%0fU:>4s4,R5!C)B0ea_44b2o1*C[ZF_)[Z4s3$Q+>5Gl4?O`>0HaRB4?O`>0H`(m5!C)p+>5Jm>9H$j+>5`8+>6PY+>5Sp -%0H`#,+BosN45H'+>Ful0H`J?+>5Dk>9GmZ2DQm=0JG=D+?2/32_HmB1H@E;>p)5Gl>9GUP0H`&%0H`800eP=A -%0JGC-2)R!B1G_$N+C-*C2'=Xs0/aqW+?Vb/00)$802`oG0d'[C0J5%%0J5%%2D['?2)[-B2BXk7/i,:>3B/-e+>5Vq>9H$j+>5`8 -%+>6V80/4SR+>>E%+>>E%+>u#1/i>O@0K(%22(g[@1H@E;>p(dX+>P&m2BZ3H4?O`>3B8389HYuC0H`5-/i57@1,C%+0f1")2*!9J -%2D?jA+>5H,+>G`+1b^mF1E\>)+?Vb/0/+MQ+>>E%+>kl+1b^jD1E]sG5!C)B0d'[C0J5%%/N#O@2`3B838;]m_J2'>"D+>5Dk0fU:/1*A7n0/Xka@;L!r+?ht30/aqW+?Vb/00)$801R-<0d'[C0J5%%/N#O@ -%2`kqt1bp102BX^s1bp102BXe8+>Fur1*AG1+>ktu1H-F51*AD5 -%+>G!E+>5\s>9GmZ2DHg=1H%0I+?2/23%d3N0f1a13&W`V/hf+;3B&'?1H73D0f1mI0d'aE00(.Z+?2&50eP1:2E*B63&<6J/ibmG -%1c6C82_d6D3AE?E2BXt83&E6B1c[BI+C-*C0ejemEckq90/54)/N#O@2`*1E\D0/i57A1G^.,1,'h)+?ht3>p)p)5Dk4?O`>0H_eCrr>ps70$$^5lad_9)pOD9E7Wa:&n5n+954<;?0,c;ZK5d -%;ud@V+>5Sp4?O`>0HaRB4?O`>0H`J?+>5Dk4?O`>0H_eCs!]'D2'>"D+>5N,+>=ok1Gp:/+?ht30/aq,+?ht35!C)B0d&22+?ht3 -%>p)5Vq4?O`>0HaRB4?O`>0H`J?+>5Dk4?O`>0H_eCs!]'D2'=Rq0/aq84Ful0d&D1/heD$2)?@;4Ful0d'[C0eP.&/ho=>1H?R11,(LE1*A2)2)%$M+C-*R4s3$Q -%+>5T1+EVXHAKWWa1a"M,/heD34s3$Q+?ht30/4S(3?ULL+C-*R4s2L50H`J?+>5Dk1a"G,+EVXHAKX0#+?ht30/4S34P''4s4,R0/=YS+?Vb/00)$802P"Y0/Xk++>5Vq>9H$j+>5`8+>62,0/5.'1*A5(+?Vb/0/+MQ+?2&51+k770Jkd43&<9J -%/i,:?3Ar!c+?ht30/4SR+>>E%+>>E%+?)#1/iGFA2_lL52(g[@1H@E;>p(dX+>P&m2BZ3H4?O`>3B838;BRVI+BosB/heD%/heD, -%0et@>0f:mF+>l#/1G^gI3$;KL0/aqW+?Vb/00)$802`oG0d'[C0J5%%0J5%%2_d'?2DI'J1*AG3/i,:>3B/-e+>5Sp1*A5.+BosN -%45H'+>kl+1b^jD1E\>*1a"A-3A*6K0JP@+0/5=,0f:R?0K:jE+>5Dk4?O`>0HaRB0J5%%2)-^?0K1aC+C-*R4s2L5 -%+BosB/heD"2*!9J2D?jA+?)#1/iGFA2_lL12(g^>3&p(dY+BosN45H,+?Vb/0/+M'3?Tt1+>=ok2'?L>Cia/1 -%5!C)B2BZ3H4?O`>3B8387j'H>+BosB/heD"2*!9J2D?jA+?(u5/ho:E1,9t,2(g^>3&p(dX+BosG0d&83+>bu!1Gg430d&;0 -%+>G\q1c6C41*AD4+>kqt0d&;5+>kkr1H6L71*AA4+>kqt0d'aE0/t(Y+?2&51+k770Jkd43&<6J/ibmH1bp152`EEC0fV$J2'=k7 -%3&E6B2)$gH+C-*C3?VNK3&!6G/het51cZ[<1GCd@3B/cN1*AP83B/WF1c[N<3&5H(+EVXHAKWW\1*A/+3A*6K -%0JP@+0/57*0f:R?0K:jE+>5K(+>=p%4s4,R5!C)p+?ht3>p)p)p(dU+?Vb/0/+M(+>5Gl -%0et@8+>5JmAmoLsAKWW^+D,%uF(HII1a$m\F_)[K2'=Y5/heD$2BX_,0H`#-+>GK&+>5\s0H`#/+>>E%+>5H'+>>E%+>5H(+>Ful -%0esk*+>5H*+>=ok0f1",+>5H,+>=ok0fC..+>5H.+>>E%+>5H/+EVXHAKWW\3?VpBCia/10/>4(FE2M8+>5K)+D,%uF(HII1,9ta -%@;L!r+>5K++D,%uF(HII1,L+c@;L!r+>5K-+D,%uF(HII1,^7e@;L!r+>5K/+EVXHAKWW]3$;gACia/10/>O1AmoLsAKWW^0H`%l -%0/G=*AmoLsAKWW^1*C1;Cia/10/GC,AmoLsAKWW^1a$C=Cia/10/GI.0d&,*2BX\+0H`#)2]sju0/GR11bp1,1H?R3+>5Q*+D,%u -%F(HII1bg+.+>5Q,+>=ok1c$7:4,Mo5!C)B1c-=1+>5Q/+>P&m1c?I8+>5Q1+>=ok1cQU3+>5Q3+>#<#0H`#+0H_r%/heD$ -%2)-4-+>5T-+D,%uF(HII2)?@;45Dk0d&,(+BosC/heD%/heD%/heD%/heDR+?ht35!C)B -%2)HF<45Dk0d&,(+BosC/heD%/heD%/heD%/heDR+?ht35!C)B2)QL=45T1+EVXHAKWW`2]u^@Cia/10/Y^3FE2M8+>5T4+D,%uF(HII2D?7c@;L!r+>5W-+>=ok2DQC/+>5W/+>GK& -%+>5W0+>b])+>5W1+>>E%+>5W2+Boso+>5W3+Boso+>5W4+>=ok2E;m6+>5Z-+>=ok2_cF3+>5Z/+>>E%+>5Z0+>>E%+>5Z1+D,%u -%F(HII2`2^i@;L!r+>5Z3+D,%uF(HII2`Dk$Eckq90/kj5FE2M8+>5Z6+?Vb/00)$802lS%E,9)^@;0V$+>5Dk4?O`>0H`(m0/4SR -%+>GK&+>GK&+>GK&+>>E%+C-*R4s3$Q+>5].+D,%uF(HII3&)O0+>5]0+>YW(+>5]1+>YW(+>5]2+D,%uF(HII3&Mg4+>5]4+?Vb/ -%00)$802lS%E,9)QF`VYCD+8)FFEMV8+?ht30/tm50eb:60H`#.3$<<`F_)[Z4s2L7+?Vb/0/+M&+>5Gl0J5%%0/=Y(/heD$1E\A( -%0H`#*+>>E%+>5Sp0J5%%0/aq-+>5Yr0eP4(0/t(.+>5_tFE2M8+>5H'+>t>q0eje++>5H)+>P&m0f'q++>5H++>Yo.0H`#'2'@!] -%F_)[K0fC.,2'=P,2]up(dT3$;EJ0J5%%0J5%%0J5%%>p(dT3?VNK0eP.&0eP.&0eP.&>p(dU0H`7r0/>7) -%AmoLsAKWW]1*A7n0/>=+AmoLsAKWW]1a"Ip0/>C-0H`#(2]sbkBl"nF1,^7e@;L!r+>5K0+>7VHC`kAd3?VpBCia/10/G:)4?O`M -%4s2L70d&81/heD$1GU(845N,+>=ok1Gg4.+>5N.+>=ok1H$@/DJ -7891 7891 /RulerOrigin , -; -/AI11UndoFreeTextDocument : /ASCII85Decode , -%+>5`7+?Vb/0/+M-+?ht30/+M240/+M24=p%4s3$Q+?ht34?O`>0H`J?+>5`8+>6*#DerBuE+MLWDKI!S0H`J?+>5Dk./s5H9`TG= -%EWBeR@/sg5Jm0H`PC+?ht35!C)p+?ht30/Xk74kD -%!$D8/!,)@@!-/'J!+Q"N!+c.N!$D8?!-A3d!,MXH!*q#r0/aq84Ful0d&2+/heD$1*C1;Cia/10/F__@;L!r+>5PoFE2M8 -%+>5Sp1,gg>+>5Vq0eP.&0/k"./heD$3$9mt00(.//heD$0ea_(/heD$0eje*+>5H)+>=ok0f'q++>5H++>=ok0f:(-+>5H-+>=ok -%0fL4//heD$0fU:tEckq90/5I0AmoLsAKWW]0Hat9Cia/10/>7)AmoLsAKWW]1*C1;Cia/10/>=+AmoLsAKWW]1a$C=Cia/10/>C- -%AmoLsAKWW]2BZU?Cia/10/>I/AmoLsAKWW]3$;gACia/10/>O1AmoLsAKWW^0H`%l0/G=*AmoLsAKWW^1*C1;Cia/10/GC,AmoLs -%AKWW^1a$C=Cia/10/GI.0d&,*2BX\+0H`#)2]sju0/GR10H`#)3?U!u0/P@*AmoLsAKWW_0d&4o0/PF,0H`#*1E\eB+>5Dk/i=b8 -%4s2L81a"Or0/PO/1*A5,2BXq$0/PU10H`#*3$9mt0/P[3/MSk3+>5T++>#<#0H`#+0d&.m0/YL-AmoLsAKWW`1E\eB+>5`8+>6Z- -%D/a<&:gn'UF5Gl>9GXQ0H`&%0H`&%0H`&%0HaXD5!C)Q4s2L91a"nC+>5`8+>6Z-D/a<&:gn'UF5Gl>9GXQ0H`&%0H`&%0H`&%0HaXD5!C)Q4s2L92'>"D+>5`8+>6)J8Q98GF@'eTDId=!+?ht30/YX1FE2M8+>5T2+D,%u -%F(HII2)l_#Eckq90/Ya4AmoLsAKWWa0Hat9Cia/10/bO-0H`#,1*A7n0/bU/0eP.&0/bX01bLI)0/b[10J5%%0/b^2>9I2o0/ba3 -%>9I2o0/bd40H`#,3?U!u0/kR-0H`#-0d&:q0/kX/0J5%%0/k[00J5%%0/k^1AmoLsAKWWb2'?L>Cia/10/kd3AmoLsAKWWb2^!3_ -%F_)[K2`Mq%Eckq90/km64?O`>3B838;e^)fCh6FOBl8#80/+M24Ful0d'[C0eP.&0eP.&0eP.&0J5%%>p)3B838;e^)fCh5tVF*)>;7V-"MF`M%95!C)B -%3&_s70JG+5+>5]6+EVXHAKX0#+?ht35!C)p+>5Gl>9H$j+>5Dk0H`PC+C-*R4s2L:+?Vb/0/+MQ+?Vb/0/+M24kH!,)?T!)il>!-nQ\!+c.9.3L9$+?Vb/0/+M&+>5Gl0J5%%0/=Y(/heD$1E\A(0H`#* -%+>>E%+>5Sp0J5%%0/aq-+>5Yr0eP4(0/t(.+>5_tFE2M8+>5H'+>t>q0eje++>5H)+>P&m0f'q++>5H++>Yo.0H`#'2'@!]F_)[K -%0fC.,2'=P,2]up(dT3$;EJ0J5%%0J5%%0J5%%>p(dT3?VNK0eP.&0eP.&0eP.&>p(dU0H`7r0/>7)AmoLs -%AKWW]1*A7n0/>=+AmoLsAKWW]1a"Ip0/>C-0H`#(2]sbkBl"nF1,^7e@;L!r+>5K0+>7VHC`kAd3?VpBCia/10/G:)4?O`M4s2L7 -%0d&81/heD$1GU(845N,+>=ok1Gg4.+>5N.+>=ok1H$@/DJ0H`%l5!C)p+?ht35!C)B0d&S@+>5Dk4?O`>0H`J?+>5Dk0H`#'+BosN40H_eCrr<-M+>5Gl./s5H2(9Y34s2sM+>5Dk./s6#!%B$D0d%nDrr=c&+?ht34?O`>0H_eCrrB/M+>5Gl./s5H1FXG14s4,R -%5!C)B0d&.m0/=Y(+>5Mn/i>UE+>5Po/i,:>+>5Sp/i>UE+>5Vq/i,:>+>5Yr/iOn+3$<<`F_)[K3?VNK4?O`>0H`%l0/4Rtrr4)\ -%.3L9!+=R6h+<;mR0/F_!rr4)X.3L9#+=R6h+;lUN5!C)O4Ful0d%nDru`=2+>5Jm./s5h*@W*a1E\+Fru`1.+>5Po./s5h -%)(?[l4s2sM+>5Dk1*A5)+=R6h!37Ok0/=Xurr2u1.3L9"+=R6h+;cOM0/Oe"rr4)Y.3Lf<+?Vb/0/+M)+>5Gl./s5HX!o/E1*A"E -%rrBY[+>5Mn./s5h(b$R\1a"4Gru`1.+?ht34?O`>0H`1p0/4Rtrr4)^.3L9!+=R6h+<2gQ0/F_!rr4)Z.3L9#+=R6h+;cOM5!C)O -%4k8p0d%nDru`@3+>5Jm./s5h*%5Po./s5h(b$Rk4s2sM+>5Dk2BXY-+=R6h!37Ok0/=Xurr2u1.3L9" -%+=R6h+?:kn0/Oe"rr4*%.3Lf<+?Vb/0/+M-+>5Gl./s5h*%5Mn./s5h(b$R\1a"4Gru`1.+?ht34?O`>0H`=t -%0/4Rtrr2u!.3L9!+=R6h!4s[&0/F_!rr4)X.3L9#+=R6h+;lUN5!C)O45Jm./s5H]."jU1E\+Fru`.- -%+>5Po./s5h)(?[l4s2sM+>5Dk0esk)0d%nDru`:1+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk0f'q*0d%nD -%ru`=2+>5Jm./s5h*@W*a1E\+Fru`1.+>5Po./s5h)(?[l4s2sM+>5Dk0f1"+0d%nDru`:1+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po -%./s5h)(?[l4s2sM+>5Dk0f:(,0d%nDru`:1+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk0fC.-0d%nDru`=2 -%+>5Jm./s5h*@W*a1E\+Fru`1.+>5Po./s5h)(?[l4s2sM+>5Dk0fU:/0d%nDrrB)K+>5Jm./s5H]."jU1E\+Fru`.-+>5Po./s5h -%)(?[l4s2sM+>5Dk1,9t*0d%nDru`@3+>5Jm./s5h*%5Po./s5h(b$Rk4s2sM+>5Dk1,C%+0d%nDru`@3+>5Jm -%./s5h*@W*a1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk1,U1-0d%nDrrB)K+>5Jm./s5H]."jU1E\+Frua5Po./s5h3[l18 -%4s2sM+>5Dk1,pC00d%nDru`@3+>5Jm./s5h*@W*a1E\+Fru`1.+>5Po./s5h)(?[l4s2sM+>5Dk1-$I10d%nDs"GHB+>5Jm./s6# -%*[r3q4s2sM+>5Dk1GBq)0d%nDs"Fj1+>5Jm./s6#%4ND`4s2sM+>5Dk0ea_'0d%nDru`:1+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po -%./s5h)(?[l4s2sM+>5Dk0eje(0d%nDru`:1+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk0fL4.0d%nDru`:1 -%+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk0f^@00d%nDrrB)K+>5Jm./s5H]."jU1E\+Fru`.-+>5Po./s5h -%)(?[l4s2sM+>5Dk1,'h(0d%nDru`@3+>5Jm./s5h*%5Po./s5h(b$Rk4s2sM+>5Dk1,0n)0d%nDru`@3+>5Jm -%./s5h*%5Po./s5h(b$Rk4s2sM+>5Dk1,L+,0d%nDru`@3+>5Jm./s5h*@W*a1E\+Fru`4/+>5Po./s5h)(?[l -%4s2sM+>5Dk1,^7.0d%nDru`:1+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk1,g=/0d%nDru`:1+>5Jm./s5h -%*@W*a1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk1GL"*0d%nDru`@3+>5Jm./s5h*%5Po./s5h)(?[l4s2sM -%+>5Dk1GU(+0d%nDru`:1+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk1G^.,0d%nDru`@3+>5Jm./s5h*%5Po./s5h(b$Rk4s2sM+>5Dk1Gg4-0d%nDrrB)K+>5Jm./s5H]."jU1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk -%1Gp:.0d%nDru`:1+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk1H$@/0d%nDru`@3+>5Jm./s5h*%5Po./s5h(b$Rk4s2sM+>5Dk1H-F00d%nDrrB)K+>5Jm./s5H]."jU1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk1H6L1 -%0d%nDru`@3+>5Jm./s5h*%5Po./s5h(b$Rk4s2sM+>5Dk1H?R20d%nDrrB)K+>5Jm./s5H]."jU1E\+Frr>/1 -%+>5Po./s5H4t.U<4s2sM+>5Dk1b^%*0d%nDru`@3+>5Jm./s5h*%5Po./s5h(b$Rk4s2sM+>5Dk1bg++0d%nD -%rrB)K+>5Jm./s5H]."jU1E\+Frr>/1+>5Po./s5H4t.U<4s2sM+>5Dk1bp1,0d%nDru`@3+>5Jm./s5h*%5Po -%./s5h(b$Rk4s2sM+>5Dk1c$7-0d%nDru`:1+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk1c-=.0d%nDrrB)K -%+>5Jm./s5H]."jU1E\+Frua5Po./s5h3[l184s2sM+>5Dk1c6C/0d%nDru`:1+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po./s5h -%)(?[l4s2sM+>5Dk1c?I?4s2sM+>5Dk1cHO@4s2sM+>5Dk1cQUA4s4,R0/51(2BXY-2'>"D+>5Dk./s5H8-!c4D?+_XDuaGLC]J9# -%+?ht30/5@-AmoLsAKX0#+>5Jm4?O`>0H`(m0/4S(1+k7'0/=Y^@;L!r+>5MnAmoLsAKWW_+EVXHAKWW`+>Pl.0H`#,+>GK&+>5Yr -%0eP.&0/t(.+>5_t0J5%%0/5.'0J5%%0/51(0d&,(1*A7n0/57*0H`#'1a"Ip0/5=,0H`#'2BX[r0/5C.0J5%%0/5F/FE2M8+>5H0 -%+D,%uF(HII1,'h_@;L!r+>5K)+D,%uF(HII1,9ta@;L!r+>5K++D,%uF(HII1,L+c@;L!r+>5K-+D,%uF(HII1,^7e@;L!r+>5K/ -%+D,%uF(HII1,pCg@;L!r+>5K1+D,%uF(HII1GBq*+>5N*+D,%uF(HII1GU(b@;L!r+>5N,+D,%uF(HII1Gg4d@;L!r+>5N.+>Ful -%1H$@0/heD$1H-F3+>5N1+>=ok1H?R3+>5Q*+D,%uF(HII1bg+.+>5Q,+>=ok1c$7:4,Mo5!C)B1c-=1+>5Q/+>P&m1c?I8 -%+>5Q1+>=ok1cQU3+>5Q3+>#<#0H`#+0H_r%/heD$2)-4-+>5T-+D,%uF(HII2)?@;45Dk -%0d&,(+BosC/heD%/heD%/heD%/heDR+?ht35!C)B2)HF<45Dk0d&,(+BosC/heD%/heD% -%/heD%/heDR+?ht35!C)B2)QL=45T1+EVXHAKWW`2]u^@Cia/10/Y^3FE2M8+>5T4+D,%u -%F(HII2D?7c@;L!r+>5W-+>=ok2DQC/+>5W/+>GK&+>5W0+>b])+>5W1+>>E%+>5W2+Boso+>5W3+Boso+>5W4+>=ok2E;m6+>5Z- -%+>=ok2_cF3+>5Z/+>>E%+>5Z0+>>E%+>5Z1+D,%uF(HII2`2^i@;L!r+>5Z3+D,%uF(HII2`Dk$Eckq90/kj5FE2M8+>5Z6+?Vb/ -%00)$802lS%E,9)^@;0V$+>5Dk4?O`>0H`(m0/4SR+>GK&+>GK&+>GK&+>>E%+C-*R4s3$Q+>5].+D,%uF(HII3&)O0+>5]0+>YW( -%+>5]1+>YW(+>5]2+D,%uF(HII3&Mg4+>5]4+?Vb/00)$802lS%E,9)QF`VYCD+8)FFEMV8+?ht30/tm50eb:60H`#.3$<<`F_)[Z -%4s2L7+?Vb/0/+M&+>5Gl0J5%%0/=Y(/heD$1E\A(0H`#*+>>E%+>5Sp0J5%%0/aq-+>5Yr0eP4(0/t(.+>5_tFE2M8+>5H'+>t>q -%0eje++>5H)+>P&m0f'q++>5H++>Yo.0H`#'2'@!]F_)[K0fC.,2'=P,2]up(dT3$;EJ0J5%%0J5%%0J5%% -%>p(dT3?VNK0eP.&0eP.&0eP.&>p(dU0H`7r0/>7)AmoLsAKWW]1*A7n0/>=+AmoLsAKWW]1a"Ip0/>C-0H`#(2]sbkBl"nF1,^7e -%@;L!r+>5K0+>7VHC`kAd3?VpBCia/10/G:)4?O`M4s2L70d&81/heD$1GU(845N,+>=ok1Gg4.+>5N.+>=ok1H$@/DJ -; -%AI11_EndTextDocument -%%EndSetup -%AI5_BeginLayer -1 1 0 1 0 0 1 -1 136 192 208 0 50 0 Lb -(remark-preset-lint-arcticicestudio-banner-typography) Ln -%_/ArtDictionary : -%_/XMLUID : (remark-preset-lint-arcticicestudio-banner-typography) ; (AI10_ArtUID) , -%_; -%_ -1 A -0 Xw -0 A -u -1 A -1 Xw -/AI11Text : -0 /FreeUndo , -0 /FrameIndex , -2 /StoryIndex , -/Art : -X= -0 A -0 Xw -1 Ap -0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -884.6807 -372.0625 m -172.0649 -372.0625 L -172.0649 -316.7285 L -884.6807 -316.7285 L -884.6807 -372.0625 L -n -X+ -; /ConfiningPath , -2 /TextAntialiasing , -; - -%_/ArtDictionary : -%_/XMLUID : (headline-remark-src) ; (AI10_ArtUID) , -%_; -%_ -0 0 Xd -6 () XW -1 A -1 Xw -/AI11Text : -0 /FreeUndo , -0 /FrameIndex , -1 /StoryIndex , -/Art : -X= -0 A -0 Xw -844.1533 -292.728 m -212.5928 -292.728 L -212.5928 -237.394 L -844.1533 -237.394 L -844.1533 -292.728 L -n -X+ -; /ConfiningPath , -2 /TextAntialiasing , -; - -%_/ArtDictionary : -%_/XMLUID : (headline-arcticicestudio-src) ; (AI10_ArtUID) , -%_; -%_ -0 0 Xd -6 () XW -u -*u -0 Ap -0 O -0.808438 0.673884 0.495369 0.548699 0.180392 0.203922 0.25098 Xa -176.6016 -316.7236 m -198.0591 -316.7236 L -207.0601 -316.7236 214.3325 -320.0352 214.3325 -329.9727 c -214.3325 -336.8848 210.1563 -341.9971 203.3154 -343.1494 c -203.3154 -343.2939 L -210.9482 -344.1572 212.8203 -348.9824 213.3247 -354.3105 c -213.8286 -359.6387 212.9644 -365.3994 215.0527 -368.1357 c -211.5244 -368.1357 L -209.5801 -364.6074 210.7324 -358.7031 210.1563 -353.7344 c -209.5083 -348.7656 207.0601 -344.7334 198.0591 -344.7334 c -179.7695 -344.7334 L -179.7695 -368.1357 L -176.6016 -368.1357 L -176.6016 -316.7236 l -f -1 D -198.0591 -341.9971 m -205.5479 -341.9971 211.1646 -338.4688 211.1646 -330.1885 c -211.1646 -322.4121 204.9717 -319.46 198.0591 -319.46 c -179.7695 -319.46 L -179.7695 -341.9971 L -198.0591 -341.9971 l -f -*U -*u -0 D -256.8838 -365.3994 m -256.8838 -368.1357 L -221.9609 -368.1357 L -221.9609 -316.7236 L -256.5239 -316.7236 L -256.5239 -319.46 L -225.1289 -319.46 L -225.1289 -340.0537 L -254.6514 -340.0537 L -254.6514 -342.79 L -225.1289 -342.79 L -225.1289 -365.3994 L -256.8838 -365.3994 l -f -*U -*u -262.2808 -316.7236 m -266.8169 -316.7236 L -286.9067 -364.6074 L -287.0508 -364.6074 L -306.9248 -316.7236 L -311.4609 -316.7236 L -311.4609 -368.1357 L -308.293 -368.1357 L -308.293 -320.6113 L -308.1484 -320.6113 L -288.563 -368.1357 L -285.3945 -368.1357 L -265.5928 -320.6113 L -265.4487 -320.6113 L -265.4487 -368.1357 L -262.2808 -368.1357 L -262.2808 -316.7236 l -f -*U -*u -339.249 -316.7236 m -359.5547 -368.1357 L -356.1709 -368.1357 L -349.6904 -351.6465 L -325.0645 -351.6465 L -318.5117 -368.1357 L -315.127 -368.1357 L -335.793 -316.7236 L -339.249 -316.7236 l -f -1 D -348.6816 -348.9102 m -337.665 -319.8193 L -337.5215 -319.8193 L -326.0723 -348.9102 L -348.6816 -348.9102 l -f -*U -*u -0 D -363.2227 -316.7236 m -384.6807 -316.7236 L -393.6816 -316.7236 400.9541 -320.0352 400.9541 -329.9727 c -400.9541 -336.8848 396.7773 -341.9971 389.9375 -343.1494 c -389.9375 -343.2939 L -397.5703 -344.1572 399.4424 -348.9824 399.9463 -354.3105 c -400.4502 -359.6387 399.5859 -365.3994 401.6738 -368.1357 c -398.1455 -368.1357 L -396.2021 -364.6074 397.3535 -358.7031 396.7773 -353.7344 c -396.1299 -348.7656 393.6816 -344.7334 384.6807 -344.7334 c -366.3916 -344.7334 L -366.3916 -368.1357 L -363.2227 -368.1357 L -363.2227 -316.7236 l -f -1 D -384.6807 -341.9971 m -392.1689 -341.9971 397.7861 -338.4688 397.7861 -330.1885 c -397.7861 -322.4121 391.5938 -319.46 384.6807 -319.46 c -366.3916 -319.46 L -366.3916 -341.9971 L -384.6807 -341.9971 l -f -*U -*u -0 D -408.582 -316.7236 m -411.751 -316.7236 L -411.751 -346.3174 L -444.0811 -316.7236 L -448.1855 -316.7236 L -424.7119 -338.1094 L -449.626 -368.1357 L -445.665 -368.1357 L -422.4072 -340.2695 L -411.751 -349.9902 L -411.751 -368.1357 L -408.582 -368.1357 L -408.582 -316.7236 l -f -*U -*u -453.1504 -349.918 m -453.1504 -347.1816 L -468.5596 -347.1816 L -468.5596 -349.918 L -453.1504 -349.918 l -f -*U -*u -478.0615 -316.7236 m -481.2305 -316.7236 L -481.2305 -365.3994 L -510.3926 -365.3994 L -510.3926 -368.1357 L -478.0615 -368.1357 L -478.0615 -316.7236 l -f -*U -*u -514.0615 -316.7236 m -517.2305 -316.7236 L -517.2305 -368.1357 L -514.0615 -368.1357 L -514.0615 -316.7236 l -f -*U -*u -526.3018 -316.7236 m -530.2627 -316.7236 L -562.7373 -363.8877 L -562.8809 -363.8877 L -562.8809 -316.7236 L -566.0498 -316.7236 L -566.0498 -368.1357 L -562.3047 -368.1357 L -529.6143 -320.6113 L -529.4707 -320.6113 L -529.4707 -368.1357 L -526.3018 -368.1357 L -526.3018 -316.7236 l -f -*U -*u -569.5732 -319.46 m -569.5732 -316.7236 L -608.96 -316.7236 L -608.96 -319.46 L -590.8145 -319.46 L -590.8145 -368.1357 L -587.6465 -368.1357 L -587.6465 -319.46 L -569.5732 -319.46 l -f -*U -*u -632.501 -316.7236 m -654.3916 -316.7236 L -660.2236 -316.7236 669.3682 -318.8115 669.3682 -331.125 c -669.3682 -340.125 663.4639 -345.2373 653.2393 -345.2373 c -635.6699 -345.2373 L -635.6699 -368.1357 L -632.501 -368.1357 L -632.501 -316.7236 l -f -1 D -635.6699 -342.502 m -653.7432 -342.502 L -663.0322 -342.502 666.2002 -336.3809 666.2002 -331.0527 c -666.2002 -327.2363 664.4717 -319.46 654.1748 -319.46 c -635.6699 -319.46 L -635.6699 -342.502 l -f -*U -*u -0 D -675.0518 -316.7236 m -696.5098 -316.7236 L -705.5107 -316.7236 712.7832 -320.0352 712.7832 -329.9727 c -712.7832 -336.8848 708.6064 -341.9971 701.7666 -343.1494 c -701.7666 -343.2939 L -709.3994 -344.1572 711.2715 -348.9824 711.7754 -354.3105 c -712.2793 -359.6387 711.415 -365.3994 713.5029 -368.1357 c -709.9746 -368.1357 L -708.0313 -364.6074 709.1826 -358.7031 708.6064 -353.7344 c -707.959 -348.7656 705.5107 -344.7334 696.5098 -344.7334 c -678.2207 -344.7334 L -678.2207 -368.1357 L -675.0518 -368.1357 L -675.0518 -316.7236 l -f -1 D -696.5098 -341.9971 m -703.998 -341.9971 709.6152 -338.4688 709.6152 -330.1885 c -709.6152 -322.4121 703.4229 -319.46 696.5098 -319.46 c -678.2207 -319.46 L -678.2207 -341.9971 L -696.5098 -341.9971 l -f -*U -*u -0 D -755.334 -365.3994 m -755.334 -368.1357 L -720.4111 -368.1357 L -720.4111 -316.7236 L -754.9746 -316.7236 L -754.9746 -319.46 L -723.5801 -319.46 L -723.5801 -340.0537 L -753.1025 -340.0537 L -753.1025 -342.79 L -723.5801 -342.79 L -723.5801 -365.3994 L -755.334 -365.3994 l -f -*U -*u -794.2861 -331.4121 m -793.9268 -322.6279 787.3018 -318.2354 777.7969 -318.2354 c -771.9648 -318.2354 763.6836 -320.6836 763.6836 -329.1807 c -763.6836 -337.4609 772.4688 -338.8291 781.1816 -340.6289 c -789.9658 -342.4297 798.751 -344.6621 798.751 -354.8867 c -798.751 -365.5439 788.5264 -369.3594 780.6777 -369.3594 c -768.6523 -369.3594 758.8594 -364.3916 759.0039 -351.1426 c -762.1719 -351.1426 L -761.5234 -362.375 770.5244 -366.624 780.6777 -366.624 c -786.8701 -366.624 795.583 -363.8154 795.583 -354.8867 c -795.583 -346.1738 786.7979 -344.6621 778.0137 -342.8613 c -769.3008 -341.0615 760.5156 -338.9736 760.5156 -329.1807 c -760.5156 -319.3154 769.6602 -315.499 777.7969 -315.499 c -788.5264 -315.499 796.9512 -320.1074 797.4551 -331.4121 C -794.2861 -331.4121 l -f -*U -*u -841.0137 -365.3994 m -841.0137 -368.1357 L -806.0908 -368.1357 L -806.0908 -316.7236 L -840.6543 -316.7236 L -840.6543 -319.46 L -809.2598 -319.46 L -809.2598 -340.0537 L -838.7822 -340.0537 L -838.7822 -342.79 L -809.2598 -342.79 L -809.2598 -365.3994 L -841.0137 -365.3994 l -f -*U -*u -840.8672 -319.46 m -840.8672 -316.7236 L -880.2539 -316.7236 L -880.2539 -319.46 L -862.1084 -319.46 L -862.1084 -368.1357 L -858.9404 -368.1357 L -858.9404 -319.46 L -840.8672 -319.46 l -f -*U -U -%_/ArtDictionary : -%_/XMLUID : (headline-remark) ; (AI10_ArtUID) , -%_; -%_ -0 0 Xd -6 () XW -u -*u -0 O -0.808438 0.673884 0.495369 0.548699 0.180392 0.203922 0.25098 Xa -235.8506 -237.3887 m -256.1567 -288.8008 L -252.7725 -288.8008 L -246.2915 -272.3115 L -221.6655 -272.3115 L -215.1128 -288.8008 L -211.7285 -288.8008 L -232.3945 -237.3887 L -235.8506 -237.3887 l -f -1 D -245.2837 -269.5752 m -234.2666 -240.4844 L -234.1226 -240.4844 L -222.6738 -269.5752 L -245.2837 -269.5752 l -f -*U -*u -0 D -259.8242 -237.3887 m -281.2817 -237.3887 L -290.2827 -237.3887 297.5552 -240.7002 297.5552 -250.6377 c -297.5552 -257.5498 293.3789 -262.6621 286.5381 -263.8145 c -286.5381 -263.959 L -294.1709 -264.8223 296.043 -269.6475 296.5474 -274.9756 c -297.0513 -280.3037 296.187 -286.0645 298.2754 -288.8008 c -294.7471 -288.8008 L -292.8027 -285.2725 293.9551 -279.3682 293.3789 -274.3994 c -292.731 -269.4307 290.2827 -265.3984 281.2817 -265.3984 c -262.9922 -265.3984 L -262.9922 -288.8008 L -259.8242 -288.8008 L -259.8242 -237.3887 l -f -1 D -281.2817 -262.6621 m -288.7705 -262.6621 294.3872 -259.1338 294.3872 -250.8535 c -294.3872 -243.0771 288.1943 -240.125 281.2817 -240.125 c -262.9922 -240.125 L -262.9922 -262.6621 L -281.2817 -262.6621 l -f -*U -*u -0 D -345.2188 -252.7256 m -343.8516 -244.085 336.29 -238.9004 327.7207 -238.9004 c -314.2559 -238.9004 306.4082 -249.917 306.4082 -263.0947 c -306.4082 -276.2715 314.2559 -287.2891 327.7207 -287.2891 c -337.7305 -287.2891 345.5078 -278.3604 346.082 -268.7832 c -349.252 -268.7832 L -348.0996 -281.0244 339.0264 -290.0244 327.7207 -290.0244 c -312.3125 -290.0244 303.2393 -278.1436 303.2393 -263.0947 c -303.2393 -248.0449 312.3125 -236.1641 327.7207 -236.1641 c -345.9395 -236.1641 348.3145 -252.0059 348.3867 -252.7256 C -345.2188 -252.7256 l -f -*U -*u -350.3262 -240.125 m -350.3262 -237.3887 L -389.7129 -237.3887 L -389.7129 -240.125 L -371.5684 -240.125 L -371.5684 -288.8008 L -368.4004 -288.8008 L -368.4004 -240.125 L -350.3262 -240.125 l -f -*U -*u -393.2383 -237.3887 m -396.4082 -237.3887 L -396.4082 -288.8008 L -393.2383 -288.8008 L -393.2383 -237.3887 l -f -*U -*u -445.5156 -252.7256 m -444.1465 -244.085 436.5859 -238.9004 428.0176 -238.9004 c -414.5527 -238.9004 406.7031 -249.917 406.7031 -263.0947 c -406.7031 -276.2715 414.5527 -287.2891 428.0176 -287.2891 c -438.0254 -287.2891 445.8027 -278.3604 446.3789 -268.7832 c -449.5469 -268.7832 L -448.3945 -281.0244 439.3223 -290.0244 428.0176 -290.0244 c -412.6074 -290.0244 403.5352 -278.1436 403.5352 -263.0947 c -403.5352 -248.0449 412.6074 -236.1641 428.0176 -236.1641 c -446.2344 -236.1641 448.6113 -252.0059 448.6836 -252.7256 C -445.5156 -252.7256 l -f -*U -*u -476.1816 -237.3887 m -479.3516 -237.3887 L -479.3516 -288.8008 L -476.1816 -288.8008 L -476.1816 -237.3887 l -f -*U -*u -528.459 -252.7256 m -527.0898 -244.085 519.5293 -238.9004 510.9609 -238.9004 c -497.4961 -238.9004 489.6465 -249.917 489.6465 -263.0947 c -489.6465 -276.2715 497.4961 -287.2891 510.9609 -287.2891 c -520.9688 -287.2891 528.7461 -278.3604 529.3223 -268.7832 c -532.4902 -268.7832 L -531.3379 -281.0244 522.2656 -290.0244 510.9609 -290.0244 c -495.5508 -290.0244 486.4785 -278.1436 486.4785 -263.0947 c -486.4785 -248.0449 495.5508 -236.1641 510.9609 -236.1641 c -529.1777 -236.1641 531.5547 -252.0059 531.627 -252.7256 C -528.459 -252.7256 l -f -*U -*u -574.0332 -286.0645 m -574.0332 -288.8008 L -539.1094 -288.8008 L -539.1094 -237.3887 L -573.6738 -237.3887 L -573.6738 -240.125 L -542.2793 -240.125 L -542.2793 -260.7188 L -571.8008 -260.7188 L -571.8008 -263.4541 L -542.2793 -263.4541 L -542.2793 -286.0645 L -574.0332 -286.0645 l -f -*U -*u -633 -252.0771 m -632.6406 -243.293 626.0156 -238.9004 616.5098 -238.9004 c -610.6777 -238.9004 602.3965 -241.3486 602.3965 -249.8457 c -602.3965 -258.126 611.1816 -259.4941 619.8945 -261.2939 c -628.6797 -263.0947 637.4648 -265.3271 637.4648 -275.5518 c -637.4648 -286.209 627.2402 -290.0244 619.3906 -290.0244 c -607.3652 -290.0244 597.5723 -285.0566 597.7168 -271.8076 c -600.8848 -271.8076 L -600.2363 -283.04 609.2383 -287.2891 619.3906 -287.2891 c -625.584 -287.2891 634.2969 -284.4805 634.2969 -275.5518 c -634.2969 -266.8389 625.5117 -265.3271 616.7266 -263.5264 c -608.0137 -261.7266 599.2285 -259.6387 599.2285 -249.8457 c -599.2285 -239.9805 608.373 -236.1641 616.5098 -236.1641 c -627.2402 -236.1641 635.6641 -240.7725 636.168 -252.0771 C -633 -252.0771 l -f -*U -*u -639.2598 -240.125 m -639.2598 -237.3887 L -678.6465 -237.3887 L -678.6465 -240.125 L -660.502 -240.125 L -660.502 -288.8008 L -657.334 -288.8008 L -657.334 -240.125 L -639.2598 -240.125 l -f -*U -*u -685.3418 -237.3887 m -685.3418 -268.207 L -685.3418 -274.3994 686.6367 -287.2891 701.4707 -287.2891 c -714.0723 -287.2891 718.3203 -279.8721 718.3203 -268.207 c -718.3203 -237.3887 L -721.4883 -237.3887 L -721.4883 -268.207 L -721.4883 -280.4482 716.8789 -290.0244 701.4707 -290.0244 c -683.1816 -290.0244 682.1719 -275.0479 682.1719 -268.207 c -682.1719 -237.3887 L -685.3418 -237.3887 l -f -*U -*u -730.5566 -237.3887 m -747.4063 -237.3887 L -765.7676 -237.3887 771.168 -249.9893 771.168 -263.0225 c -771.168 -277.5674 763.752 -288.8008 747.2617 -288.8008 c -730.5566 -288.8008 L -730.5566 -237.3887 l -f -1 D -733.7246 -286.0645 m -747.5508 -286.0645 L -757.127 -286.0645 768 -280.8076 768 -263.0225 c -768 -241.9971 754.5352 -240.125 746.9023 -240.125 c -733.7246 -240.125 L -733.7246 -286.0645 l -f -*U -*u -0 D -778.5801 -237.3887 m -781.748 -237.3887 L -781.748 -288.8008 L -778.5801 -288.8008 L -778.5801 -237.3887 l -f -*U -*u -812.998 -290.0244 m -797.5879 -290.0244 788.5156 -278.1436 788.5156 -263.0947 c -788.5156 -248.0449 797.5879 -236.1641 812.998 -236.1641 c -828.3359 -236.1641 837.4082 -248.0449 837.4082 -263.0947 c -837.4082 -278.1436 828.3359 -290.0244 812.998 -290.0244 c -f -1 D -812.998 -287.2891 m -826.3906 -287.2891 834.2402 -276.2715 834.2402 -263.0947 c -834.2402 -249.917 826.3906 -238.9004 812.998 -238.9004 c -799.5332 -238.9004 791.6836 -249.917 791.6836 -263.0947 c -791.6836 -276.2715 799.5332 -287.2891 812.998 -287.2891 c -f -*U -U -%_/ArtDictionary : -%_/XMLUID : (headline-arcticicestudio) ; (AI10_ArtUID) , -%_; -%_ -0 0 Xd -6 () XW -u -0 D -0 R -0.808438 0.673884 0.495369 0.548699 0.180392 0.203922 0.25098 XA -2 w 84.1211 -392.4346 m -972.625 -392.4346 L -S -%_/ArtDictionary : -%_/XMLUID : (bottom) ; (AI10_ArtUID) , -%_; -%_ -84.1211 -226.4756 m -972.625 -226.4756 L -S -%_/ArtDictionary : -%_/XMLUID : (top) ; (AI10_ArtUID) , -%_; -%_ -U -%_/ArtDictionary : -%_/XMLUID : (lines) ; (AI10_ArtUID) , -%_; -%_ -9 () XW -U -%_/ArtDictionary : -%_/XMLUID : (title) ; (AI10_ArtUID) , -%_; -%_ -9 () XW -u -1 Ap -51.1714 -404.4346 m --138.7881 -404.4346 L --138.7881 -214.4756 L -51.1714 -214.4756 L -51.1714 -404.4346 L -s -%_/ArtDictionary : -%_/XMLUID : (frame) ; (AI10_ArtUID) , -%_; -%_ -u -1 A -1 Xw -/AI11Text : -0 /FreeUndo , -0 /FrameIndex , -0 /StoryIndex , -/Art : -X= -0 A -0 Xw -1 w 111.6938 -18.4521 m -13.1279 -18.4521 L -13.1279 104.4346 L -111.6938 104.4346 L -111.6938 -18.4521 L -n -X+ -; /ConfiningPath , -2 /TextAntialiasing , -; - -%_/ArtDictionary : -%_/XMLUID : (sticker-src) ; (AI10_ArtUID) , -%_; -%_ -0 0 Xd -6 () XW -*u -0 Ap -0 O -0.808438 0.673884 0.495369 0.548699 0.180392 0.203922 0.25098 Xa --36.7886 -345.9932 m --1.92871 -274.875 L -1.43262 -274.875 L -36.292 -345.9932 L -33.3525 -345.9932 L --0.24707 -277.3945 L --33.8481 -345.9932 L --36.7886 -345.9932 l -f -%_/ArtDictionary : -%_(-1.570796) /String (BBAccumRotation) , -%_; -%_ -*U -%_/ArtDictionary : -%_/XMLUID : (character) ; (AI10_ArtUID) , -%_; -%_ -*u --52.7886 -345.9932 m --123.9082 -311.1338 L --123.9082 -307.7744 L --52.7886 -272.915 L --52.7886 -275.8545 L --121.3882 -309.4541 L --52.7886 -343.0537 L --52.7886 -345.9932 l -f -*U -%_/ArtDictionary : -%_/XMLUID : (code) ; (AI10_ArtUID) , -%_; -%_ -U -%_/ArtDictionary : -%_/XMLUID : (sticker) ; (AI10_ArtUID) , -%_; -%_ -9 () XW -U -%_/ArtDictionary : -%_/XMLUID : (box) ; (AI10_ArtUID) , -%_; -%_ -9 () XW -LB -%AI5_EndLayer-- -%%PageTrailer -gsave annotatepage grestore showpage -%%Trailer -%%EOF - -endstream endobj 5 0 obj <> endobj 27 0 obj <> endobj 35 0 obj [/View/Design] endobj 36 0 obj <>>> endobj 14 0 obj [/View/Design] endobj 15 0 obj <>>> endobj 49 0 obj [48 0 R] endobj 68 0 obj <> endobj xref -0 69 -0000000004 65535 f -0000000016 00000 n -0000000173 00000 n -0000041388 00000 n -0000000006 00000 f -0000490592 00000 n -0000000008 00000 f -0000041439 00000 n -0000000009 00000 f -0000000010 00000 f -0000000011 00000 f -0000000012 00000 f -0000000013 00000 f -0000000016 00000 f -0000490934 00000 n -0000490965 00000 n -0000000017 00000 f -0000000018 00000 f -0000000019 00000 f -0000000020 00000 f -0000000021 00000 f -0000000022 00000 f -0000000023 00000 f -0000000024 00000 f -0000000025 00000 f -0000000026 00000 f -0000000000 00000 f -0000490702 00000 n -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000490818 00000 n -0000490849 00000 n -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000051936 00000 n -0000491050 00000 n -0000041780 00000 n -0000052281 00000 n -0000052168 00000 n -0000050842 00000 n -0000051374 00000 n -0000051422 00000 n -0000052052 00000 n -0000052083 00000 n -0000052355 00000 n -0000052639 00000 n -0000053754 00000 n -0000059350 00000 n -0000124939 00000 n -0000190528 00000 n -0000256117 00000 n -0000321706 00000 n -0000387295 00000 n -0000452884 00000 n -0000491075 00000 n -trailer -<<2DAD887B6757F347872D98DDE176772A>]>> -startxref -491328 -%%EOF diff --git a/assets/images/packages/@arcticicestudio/remark-preset-lint/repository-hero.svg b/assets/images/packages/@arcticicestudio/remark-preset-lint/repository-hero.svg deleted file mode 100644 index 22bb755..0000000 --- a/assets/images/packages/@arcticicestudio/remark-preset-lint/repository-hero.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/assets/images/repository-hero.ai b/assets/images/repository-hero.ai deleted file mode 100644 index 768ee04..0000000 --- a/assets/images/repository-hero.ai +++ /dev/null @@ -1,12775 +0,0 @@ -%PDF-1.5 % -1 0 obj <>/OCGs[5 0 R 6 0 R 30 0 R 31 0 R 54 0 R 55 0 R 78 0 R 99 0 R 120 0 R]>>/Pages 3 0 R/Type/Catalog>> endobj 2 0 obj <>stream - - - - - application/pdf - - - Style Guide Markdown - Repository Hero - - - - - Arctic Ice Studio - - - - - - - - Copyright (C) 2018-present Arctic Ice Studio (https://www.arcticicestudio.com) Copyright (C) 2018-present Sven Greb (https://www.svengreb.de) - - - - - Adobe Illustrator CS6 (Windows) - 2018-02-07T05:34:06+01:00 - 2021-04-02T14:40:22+02:00 - 2021-04-02T14:40:22+02:00 - - - - 256 - 44 - JPEG - /9j/4AAQSkZJRgABAgEASABIAAD/7QAsUGhvdG9zaG9wIDMuMAA4QklNA+0AAAAAABAASAAAAAEA AQBIAAAAAQAB/+4ADkFkb2JlAGTAAAAAAf/bAIQABgQEBAUEBgUFBgkGBQYJCwgGBggLDAoKCwoK DBAMDAwMDAwQDA4PEA8ODBMTFBQTExwbGxscHx8fHx8fHx8fHwEHBwcNDA0YEBAYGhURFRofHx8f Hx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8f/8AAEQgALAEAAwER AAIRAQMRAf/EAaIAAAAHAQEBAQEAAAAAAAAAAAQFAwIGAQAHCAkKCwEAAgIDAQEBAQEAAAAAAAAA AQACAwQFBgcICQoLEAACAQMDAgQCBgcDBAIGAnMBAgMRBAAFIRIxQVEGE2EicYEUMpGhBxWxQiPB UtHhMxZi8CRygvElQzRTkqKyY3PCNUQnk6OzNhdUZHTD0uIIJoMJChgZhJRFRqS0VtNVKBry4/PE 1OT0ZXWFlaW1xdXl9WZ2hpamtsbW5vY3R1dnd4eXp7fH1+f3OEhYaHiImKi4yNjo+Ck5SVlpeYmZ qbnJ2en5KjpKWmp6ipqqusra6voRAAICAQIDBQUEBQYECAMDbQEAAhEDBCESMUEFURNhIgZxgZEy obHwFMHR4SNCFVJicvEzJDRDghaSUyWiY7LCB3PSNeJEgxdUkwgJChgZJjZFGidkdFU38qOzwygp 0+PzhJSktMTU5PRldYWVpbXF1eX1RlZmdoaWprbG1ub2R1dnd4eXp7fH1+f3OEhYaHiImKi4yNjo +DlJWWl5iZmpucnZ6fkqOkpaanqKmqq6ytrq+v/aAAwDAQACEQMRAD8A7z5P8n+UpvKWiSy6JYSS yWFq0kjWsLMzNCpJJK1JJwkoATf/AAV5N/6sOnf9IkH/ADRjZTTv8FeTf+rDp3/SJB/zRjZWnf4K 8m/9WHTv+kSD/mjGytO/wV5N/wCrDp3/AEiQf80Y2VpC6Jpemab5s1aDTrSGygaw092it40iQuZr wFiqACtAN8ShM79vMInpp8do8HEVNxJKr8u+yIwp9OBKG9Tzl/vjTv8AkbP/ANU8Oyu9Tzl/vjTv +Rs//VPHZXep5y/3xp3/ACNn/wCqeOyu9Tzl/vjTv+Rs/wD1Tx2V3qecv98ad/yNn/6p47K71POX ++NO/wCRs/8A1Tx2V3qecv8AfGnf8jZ/+qeOyu9Tzl/vjTv+Rs//AFTx2V3qecv98ad/yNn/AOqe Oyu9Tzl/vjTv+Rs//VPHZXep5y/3xp3/ACNn/wCqeOyu9Tzl/vjTv+Rs/wD1Tx2V3qecv98ad/yN n/6p47K71POX++NO/wCRs/8A1Tx2V3qecv8AfGnf8jZ/+qeOyu9Tzl/vjTv+Rs//AFTx2V3qecv9 8ad/yNn/AOqeOyu9Tzl/vjTv+Rs//VPHZXep5y/3xp3/ACNn/wCqeOyu9Tzl/vjTv+Rs/wD1Tx2V 3qecv98ad/yNn/6p47K71POX++NO/wCRs/8A1Tx2V3qecv8AfGnf8jZ/+qeOyu9Tzl/vjTv+Rs// AFTx2V3qecv98ad/yNn/AOqeOyu8lf8AKG6D/wBs60/5MJieahOHdI0Z3YIiAszMaAAbkknAqA0n XtM1czNp0jXFvDxH1tUb6vIWr/cykBJePHcoSPfGlV9T1Ky0ywn1C+lENpbIZJpCC1FHgqgsx8AB UnYYqusL60v7K3vrOUTWl1Gs1vMtaNG4DKwr4g4qltp/ymWqf9s7T/8Ak/e4eipzgVYs0LyPGjq0 kVPUQEFl5Co5DtUYq554UkSJ5FWWWvpISAzcRVuI6mg64q2JYjI0QdTKgDOgI5ANUKSOtDxNPliq Ek13RIpmhk1C2SZTxaNpowwbpQgmtcaVFiWIyemHX1OPLhUV41pWnhiqjc6jp9qSLq6igIAYiWRU 2JoD8RG1dsVbtL6xvEL2lxFcIpozROrgHwJUnFVG91zRLCaOC+1C2tJ5f7qKeaON23p8KsQTvjSo sTRGT0g6mTiH4VHLiTQNTw2xVpJoXkeNHVpIiBIgIJUkVHIdqjfFWo7q2lkaKOZHlTd0VgWXcruB 0+JSPoxVd6kfqGLkPUADFKjkFJIBp4bYqhtQ1fStNRZNRvYLKNzRHuJUiDEdgXK1xVqbWdHhSN5r 63iSZecLPKih1/mUk7j5Yq3a6xpF3N6FpfW9xNxL+lFKjtxBALcVJNAWGKq89zbW6h7iVIUJoGkY KCaE0qadgTiq6SSOKN5ZXCRoCzuxAVVAqSSegGKoKPX9ClkSKLUrV5HIVEWaMszE0AADbk40qOd0 jRndgiICzMxoABuSScVQmn6zpGpBzp19b3ojNJPq8qS8Sf5uBNMVRUckci842DrUjkpBFQaEVHgR TFVJ76xSNpXuIljUFmcuoUBTxYk17NscVW2mp6beFhZ3cNyU3YQyLJT58ScVUpde0OGVoptRtY5U JV43mjVlI6ggmoxpUXDPDPEs0EiyxOKpIhDKR4gjY4qwe281voflDytAkKKb3T7ZRqN2xhsICIYw BPMqvRm5fAu3Kh+IZKkJxb+UkvWW68w3ra5ISHjt2URaelN1MdqpZWp1DStIw7EYLWmRgAAACgGw AwJY5q6jWPMVno/2rPTTHqepeDSKx+pQnx/eI0x8OC9mwob0H/cVrF75fba2flqGkeHoyP8A6RCP +MMz19lkUDpiVRNp/wAplqn/AGztP/5P3uPRKc4FeeWztpn5k6vqtSLS+u7XSr8b8Qz2UL2ch+Up aL5yjJdENXUn6Q/MfStYdqWVjd3Wl2RJotYrKd7yXw3l4xH/AIxY9FSnQvNvl9vMdj5lj1GF7zzB ey2V3aBxzSzlpHp547UKNAhK9jM+EhCa6ObRLfWpZfKk2rldU1Em4ijsZDJ/pT/CBNNHIadN1wJS XRtS1bSzZDQNObU7640e6ksLVKiG1Rr6SVIZWl9JgLdGEKpszMvH4RVlKE6k07Q7jRtE1CKT9KS6 tq1o+o31yg9WaROamOSNh+7ETAoIaUTp1rgSm3mrS9O0c6brOlWkVrqMV/aW1LZFiaeC6nWCWF+I HNQshkAPQrUYAqp5E0fTLjypZ6jcwxXl7rltFe6pdSKJGnluIw7Bi1TwXlxROiqABiVCRaNGui+b ligY/oqx1CbRIgSSsUN5ZQahDFU/sxTqY4/5RIFwqu0HUIdIvZvM921LTzNZ3epTyE0AWyczWg/1 jYS7n/iv5DEqlmi+X9XsdabU7RC3mLT9G028u7XlQXLX15qNxf2xJ7ySHkhPR1Wu1cJKst0TUrPU /OU2oWb+pbXOi2ckbEEGhubnZlO6sDsQdwdsieSrb2yvrbzXfavb6dDrscsEFs8KSxLeWpjDsY0W crEUlEgahkQ18RSiqjpGm+VLrTta+r6eYZY5ZXudMvYYw1nNJCpZYloyqklPV+BmUsxIOFVHSfKt vc+R9AvNIigsddtLK0urG8WMJylEC8o5igDNHMpKSDwNeoGN7qlWtPceZPKOsea76BraCOxng0bT 3KsYqjjcTvxqPUdwY1p0Qf5bDHkrNPPH/KFeYPh5/wC428+Dbf8AcPtvgHNJQGnRlr6AP5LFiocH 64Tp59IjcPSORn2P8oxQqeZ7aHUtf0PR7yj6bL9ZvLm2avCd7URiKKQdGQNN6nE7EoMQqG8wHSLb VtNu3sLmxns7y2t4NUghiEbi6kW3EDkNyMUjShSCuxo37NcQqN8gf8o0n/MXqH/UdPiUhgdyqt5a nVgGVodQDKdwQdcGxySGYeddE0ew8v3Os2NpBY6npKm7sbuCNY5A8ZDenyQAlJqemynYg75EFSk+ hBy+rU8pfpUfpbUP9NrYjl/pT7fv5Ff4em4wlWf2CqtlABbCz/dqTaDh+6JFSn7slPhO3w7ZFKV+ TUSTyVoaOodH021VlYVBBgUEEHCeaqJ8pnTyZPLV1+iT1NgV9XT3/wCjeq+l84WT3rjaEbpeo6zI lymqaYbW4tgCrwSpPBcAg/3LH05Afh3EiLSo3PXFKj5T069tdMa51JAmralK17qKg14SSABIa9xB EqRA9+NcSoW+a9OvJre11LTUMmq6TMLm2iBAM0ZHC4t6kgfvYmYLU0D8T2xCr7Tfzlqn/bO0/wD5 P3uPRU5wKkd55TtLuLXI5JnA1tkdnWgaGSKFIo3jP8yNErivfDaoDUfy+s7vQtN0dLya3j09JI2u Ep6sonheGdmbajyCV2LD9o1xtFJ3q+iWep6Jc6PIPStp4TCpjoDHtRGj8GjIDL4EYLS1oWjjSrSW D1muGnuJ7qSVgFJe4kMjbDalWxKoLQ/KVvpN99ajuHlIjuIlRgBRbi7e76j+UycflhJVCap5FW4v 5bzTr99NM1xFfSwpGskRvIdhOEagDOnwvT7VAevVtFIq18sXL39tfazqk2qS2TGSzgMccFvHIylP V9OMVdwrEAuxArsAd8bVRi8qapp5kh0LWDYabLI8ospbdLgQmQ8nFsxZCiliWCtzAJ2AG2NrTrzy Lp0/lW48vpcTxG5kFxLqXINdNdeqJvrDNQAvzUdqU2A47Y2tIjzF5Q07WtKs9Mdmt7aymikjWP8A 33GpjeHf9mSF3jb2OIKaR0Okxxa7eauJCZLy1tbRoqDiq2slxIrA+LfWjX5YFQOleUbDS/Mep61a SOv6TSNZbTb0kkR3d5Ix+z6jScmH81W6k4bV195cvv0pPqejakdOurtUW8ikhW4t5WjHFJChaN1c J8NVcAilQaY2qrpXl36nDftcXcl7f6m3K8vHVU6II0SNEAVERR8I37kkk42qN0jTk0zSbLTkcyJZ QRW6yNsWESBATTx44FSt/KUDeT5/LQuXWKaGWH6zxBceqzNy49NuWG1Q935Y8x3tldWN75hMtreQ TW8qLaQoaTRtHUMD+zyrjaEVbaP5pjuIpJ/MHrQo6tLD9ThTmoNWXkDUVG1cUorXdBh1aKA+tJaX tnKLixvoOPqwyhSpI5BlZWRirqwoQcQVSi98m6nqrWba1rT3AsLu2vbaG2hW2iMlrOkwMq8pGkJC FftBRWvGoBDaKVR5V1e0kuY9F1prCwu5pbhrZ7dLhoZJ2Ly/V3Zl4BnZn4urgEmm22NqsuvIFg+k rptrcy28aWhtElakr1MyTmVy32nZ0q3jU42tKp8p317JCNd1iXUrSCRJ1sViit4XkiYPGZggLuEd QwXlxr1BxtVOHyrr1nLd/o7XjbW1zcz3Yga1ik4NcSGRgGY1I5NjashsormK1jjuZ/rM6ikk/AR8 z48V2GBKWeSv+UN0H/tnWn/JhMJ5qE5wK7FXYq7FUmtP+Uy1T/tnaf8A8n73D0VHXWr6TaS+ld3s FvLTl6csqI1D3oxBwKo/4j8vf9XS0/5Hxf8ANWGld/iPy9/1dLT/AJHxf81Y0rv8R+Xv+rpaf8j4 v+asaV3+I/L3/V0tP+R8X/NWNK7/ABH5e/6ulp/yPi/5qxpXf4j8vf8AV0tP+R8X/NWNK7/Efl7/ AKulp/yPi/5qxpXf4j8vf9XS0/5Hxf8ANWNK7/Efl7/q6Wn/ACPi/wCasaV3+I/L3/V0tP8AkfF/ zVjSu/xH5e/6ulp/yPi/5qxpXf4j8vf9XS0/5Hxf81Y0rv8AEfl7/q6Wn/I+L/mrGld/iPy9/wBX S0/5Hxf81Y0rv8R+Xv8Aq6Wn/I+L/mrGld/iPy9/1dLT/kfF/wA1Y0rv8R+Xv+rpaf8AI+L/AJqx pXf4j8vf9XS0/wCR8X/NWNK7/Efl7/q6Wn/I+L/mrGld/iPy9/1dLT/kfF/zVjSu/wAR+Xv+rpaf 8j4v+asaV3+I/L3/AFdLT/kfF/zVjSu/xH5e/wCrpaf8j4v+asaV3+I/L3/V0tP+R8X/ADVjSu/x H5e/6ulp/wAj4v8AmrGlYV5X/wCVsf4Z0j6j+gfqX1K3+q+v9c9X0vSXh6nH4eXGnKm1cJpCZ/8A IZP+/d/6fsGy7u/5DJ/37v8A0/Y7Lu7/AJDJ/wB+7/0/Y7Lu7/kMn/fu/wDT9jsu6I8q/wCIv8Ra t/iH6n+kPqdjx/R/q+j6Pq3fCvrfFz5c69qU98SrILr9E+r/AKV6Hq0/3bw5U/2W+BKj/wA69/y6 f8ksVd/zr3/Lp/ySxV3/ADr3/Lp/ySxV3/Ovf8un/JLFXf8AOvf8un/JLFXf869/y6f8ksVd/wA6 9/y6f8ksVd/zr3/Lp/ySxV3/ADr3/Lp/ySxV3/Ovf8un/JLFXf8AOvf8un/JLFXf869/y6f8ksVd /wA69/y6f8ksVd/zr3/Lp/ySxV3/ADr3/Lp/ySxV3/Ovf8un/JLFXf8AOvf8un/JLFXf869/y6f8 ksVd/wA69/y6f8ksVd/zr3/Lp/ySxV3/ADr3/Lp/ySxV3/Ovf8un/JLFXf8AOvf8un/JLFXf869/ y6f8ksVd/wA69/y6f8ksVf/Z - - - - - - uuid:9E3E5C9A8C81DB118734DB58FDDE4BA7 - xmp.did:DCC7915CBF0BE8118B36C3778DB368CF - uuid:b7fc7317-9f27-4b84-a1ce-c6a9407929ec - proof:pdf - - uuid:3600b47f-902d-4432-ae7f-d9a570117567 - xmp.did:A1C36FB86FFCE711867DCF1DA2E832F0 - uuid:9E3E5C9A8C81DB118734DB58FDDE4BA7 - proof:pdf - - - - - saved - xmp.iid:F125223D0C6DE711947A9E222F7C5398 - 2017-07-20T07:28:19+02:00 - Adobe Illustrator CS6 (Windows) - / - - - saved - xmp.iid:DCC7915CBF0BE8118B36C3778DB368CF - 2018-02-07T05:34:06+01:00 - Adobe Illustrator CS6 (Windows) - / - - - - - - Basic RGB - Document - - - 1 - False - False - - 888.000000 - 600.000000 - Pixels - - - - Cyan - Magenta - Yellow - Black - - - - - - Standard-Farbfeldgruppe - 0 - - - - Weiß - RGB - PROCESS - 255 - 255 - 255 - - - Schwarz - RGB - PROCESS - 0 - 0 - 0 - - - RGB Rot - RGB - PROCESS - 255 - 0 - 0 - - - RGB Gelb - RGB - PROCESS - 255 - 255 - 0 - - - RGB Grün - RGB - PROCESS - 0 - 255 - 0 - - - RGB Cyan - RGB - PROCESS - 0 - 255 - 255 - - - RGB Blau - RGB - PROCESS - 0 - 0 - 255 - - - RGB Magenta - RGB - PROCESS - 255 - 0 - 255 - - - R=193 G=39 B=45 - RGB - PROCESS - 193 - 39 - 45 - - - R=237 G=28 B=36 - RGB - PROCESS - 237 - 28 - 36 - - - R=241 G=90 B=36 - RGB - PROCESS - 241 - 90 - 36 - - - R=247 G=147 B=30 - RGB - PROCESS - 247 - 147 - 30 - - - R=251 G=176 B=59 - RGB - PROCESS - 251 - 176 - 59 - - - R=252 G=238 B=33 - RGB - PROCESS - 252 - 238 - 33 - - - R=217 G=224 B=33 - RGB - PROCESS - 217 - 224 - 33 - - - R=140 G=198 B=63 - RGB - PROCESS - 140 - 198 - 63 - - - R=57 G=181 B=74 - RGB - PROCESS - 57 - 181 - 74 - - - R=0 G=146 B=69 - RGB - PROCESS - 0 - 146 - 69 - - - R=0 G=104 B=55 - RGB - PROCESS - 0 - 104 - 55 - - - R=34 G=181 B=115 - RGB - PROCESS - 34 - 181 - 115 - - - R=0 G=169 B=157 - RGB - PROCESS - 0 - 169 - 157 - - - R=41 G=171 B=226 - RGB - PROCESS - 41 - 171 - 226 - - - R=0 G=113 B=188 - RGB - PROCESS - 0 - 113 - 188 - - - R=46 G=49 B=146 - RGB - PROCESS - 46 - 49 - 146 - - - R=27 G=20 B=100 - RGB - PROCESS - 27 - 20 - 100 - - - R=102 G=45 B=145 - RGB - PROCESS - 102 - 45 - 145 - - - R=147 G=39 B=143 - RGB - PROCESS - 147 - 39 - 143 - - - R=158 G=0 B=93 - RGB - PROCESS - 158 - 0 - 93 - - - R=212 G=20 B=90 - RGB - PROCESS - 212 - 20 - 90 - - - R=237 G=30 B=121 - RGB - PROCESS - 237 - 30 - 121 - - - R=199 G=178 B=153 - RGB - PROCESS - 199 - 178 - 153 - - - R=153 G=134 B=117 - RGB - PROCESS - 153 - 134 - 117 - - - R=115 G=99 B=87 - RGB - PROCESS - 115 - 99 - 87 - - - R=83 G=71 B=65 - RGB - PROCESS - 83 - 71 - 65 - - - R=198 G=156 B=109 - RGB - PROCESS - 198 - 156 - 109 - - - R=166 G=124 B=82 - RGB - PROCESS - 166 - 124 - 82 - - - R=140 G=98 B=57 - RGB - PROCESS - 140 - 98 - 57 - - - R=117 G=76 B=36 - RGB - PROCESS - 117 - 76 - 36 - - - R=96 G=56 B=19 - RGB - PROCESS - 96 - 56 - 19 - - - R=66 G=33 B=11 - RGB - PROCESS - 66 - 33 - 11 - - - - - - Kalt - 1 - - - - C=56 M=0 Y=20 K=0 - RGB - PROCESS - 101 - 200 - 208 - - - C=51 M=43 Y=0 K=0 - RGB - PROCESS - 131 - 139 - 197 - - - C=26 M=41 Y=0 K=0 - RGB - PROCESS - 186 - 155 - 201 - - - - - - Graustufen - 1 - - - - R=0 G=0 B=0 - RGB - PROCESS - 0 - 0 - 0 - - - R=26 G=26 B=26 - RGB - PROCESS - 26 - 26 - 26 - - - R=51 G=51 B=51 - RGB - PROCESS - 51 - 51 - 51 - - - R=77 G=77 B=77 - RGB - PROCESS - 77 - 77 - 77 - - - R=102 G=102 B=102 - RGB - PROCESS - 102 - 102 - 102 - - - R=128 G=128 B=128 - RGB - PROCESS - 128 - 128 - 128 - - - R=153 G=153 B=153 - RGB - PROCESS - 153 - 153 - 153 - - - R=179 G=179 B=179 - RGB - PROCESS - 179 - 179 - 179 - - - R=204 G=204 B=204 - RGB - PROCESS - 204 - 204 - 204 - - - R=230 G=230 B=230 - RGB - PROCESS - 230 - 230 - 230 - - - R=242 G=242 B=242 - RGB - PROCESS - 242 - 242 - 242 - - - - - - - - - Adobe PDF library 10.01 - - - Arctic Ice Studio - - - True - https://www.arcticicestudio.com - - - - - - - - - - - - - - - - - - - - - - - - - -endstream endobj 3 0 obj <> endobj 8 0 obj <>/Resources<>/Properties<>>>/Thumb 125 0 R/TrimBox[0.0 0.0 888.0 600.0]/Type/Page>> endobj 122 0 obj <>stream -/OC /MC0 BDC -0.18 0.204 0.251 rg -/GS0 gs -q 1 0 0 1 259.3472 316.6025 cm -0 0 m -2.722 0 l -14.775 -28.73 l -14.862 -28.73 l -26.786 0 l -29.508 0 l -29.508 -30.848 l -27.607 -30.848 l -27.607 -2.333 l -27.521 -2.333 l -15.769 -30.848 l -13.868 -30.848 l -1.987 -2.333 l -1.901 -2.333 l -1.901 -30.848 l -0 -30.848 l -h -f -Q -q 1 0 0 1 311.188 297.29 cm -0 0 m --6.61 17.455 l --6.697 17.455 l --13.566 0 l -h --5.66 19.312 m -6.524 -11.535 l -4.493 -11.535 l -0.604 -1.642 l --14.171 -1.642 l --18.103 -11.535 l --20.133 -11.535 l --7.733 19.312 l -h -f -Q -q -0 600 888 -600 re -W n -q 1 0 0 1 332.7871 301.4385 cm -0 0 m -4.492 0 7.863 2.117 7.863 7.085 c -7.863 11.751 4.148 13.521 0 13.521 c --10.974 13.521 l --10.974 0 l -h --12.875 15.164 m -0 15.164 l -5.4 15.164 9.764 13.177 9.764 7.215 c -9.764 3.067 7.258 0 3.154 -0.691 c -3.154 -0.778 l -7.734 -1.297 8.857 -4.191 9.159 -7.389 c -9.461 -10.585 8.943 -14.041 10.195 -15.684 c -8.078 -15.684 l -6.912 -13.566 7.604 -10.023 7.258 -7.043 c -6.869 -4.062 5.4 -1.643 0 -1.643 c --10.974 -1.643 l --10.974 -15.684 l --12.875 -15.684 l -h -f -Q -q 1 0 0 1 347.1279 316.6025 cm -0 0 m -1.901 0 l -1.901 -17.756 l -21.3 0 l -23.763 0 l -9.678 -12.832 l -24.626 -30.848 l -22.249 -30.848 l -8.295 -14.128 l -1.901 -19.96 l -1.901 -30.848 l -0 -30.848 l -h -f -Q -q 1 0 0 1 375.5107 287.3975 cm -0 0 m -8.295 0 l -14.04 0 20.564 3.153 20.564 13.824 c -20.564 26.439 12.485 27.562 7.905 27.562 c -0 27.562 l -h --1.901 29.205 m -8.208 29.205 l -19.225 29.205 22.465 21.645 22.465 13.824 c -22.465 5.098 18.016 -1.643 8.122 -1.643 c --1.901 -1.643 l -h -f -Q -q 1 0 0 1 415.7295 286.6621 cm -0 0 m -8.037 0 12.745 6.61 12.745 14.517 c -12.745 22.423 8.037 29.033 0 29.033 c --8.079 29.033 -12.787 22.423 -12.787 14.517 c --12.787 6.61 -8.079 0 0 0 c -0 -1.642 m --9.245 -1.642 -14.688 5.487 -14.688 14.517 c --14.688 23.546 -9.245 30.675 0 30.675 c -9.203 30.675 14.646 23.546 14.646 14.517 c -14.646 5.487 9.203 -1.642 0 -1.642 c -f -Q -q 1 0 0 1 431.4541 316.6025 cm -0 0 m -1.944 0 l -9.979 -28.816 l -10.066 -28.816 l -18.231 0 l -20.607 0 l -28.903 -28.816 l -28.988 -28.816 l -36.896 0 l -38.926 0 l -30.069 -30.848 l -27.909 -30.848 l -19.441 -1.643 l -19.354 -1.643 l -11.017 -30.848 l -8.899 -30.848 l -h -f -Q -q 1 0 0 1 472.8389 316.6025 cm -0 0 m -2.376 0 l -21.861 -28.299 l -21.948 -28.299 l -21.948 0 l -23.849 0 l -23.849 -30.848 l -21.603 -30.848 l -1.987 -2.333 l -1.901 -2.333 l -1.901 -30.848 l -0 -30.848 l -h -f -Q -q 1 0 0 1 534.2705 307.7891 cm -0 0 m --0.216 5.271 -4.19 7.906 -9.894 7.906 c --13.394 7.906 -18.362 6.437 -18.362 1.339 c --18.362 -3.629 -13.091 -4.45 -7.863 -5.53 c --2.592 -6.61 2.679 -7.95 2.679 -14.085 c -2.679 -20.479 -3.456 -22.769 -8.165 -22.769 c --15.381 -22.769 -21.257 -19.788 -21.17 -11.838 c --19.269 -11.838 l --19.658 -18.577 -14.257 -21.127 -8.165 -21.127 c --4.449 -21.127 0.778 -19.442 0.778 -14.085 c -0.778 -8.856 -4.493 -7.95 -9.764 -6.869 c --14.991 -5.79 -20.263 -4.536 -20.263 1.339 c --20.263 7.259 -14.776 9.548 -9.894 9.548 c --3.456 9.548 1.599 6.783 1.901 0 c -h -f -Q -q 1 0 0 1 538.0264 314.96 cm -0 0 m -0 1.643 l -23.632 1.643 l -23.632 0 l -12.745 0 l -12.745 -29.205 l -10.845 -29.205 l -10.845 0 l -h -f -Q -q 1 0 0 1 584.6416 316.6025 cm -0 0 m -2.117 0 l --10.282 -17.93 l --10.282 -30.848 l --12.183 -30.848 l --12.183 -17.93 l --24.496 0 l --22.336 0 l --11.189 -16.331 l -h -f -Q -q 1 0 0 1 588.5703 316.6025 cm -0 0 m -1.901 0 l -1.901 -29.205 l -19.398 -29.205 l -19.398 -30.848 l -0 -30.848 l -h -f -Q -q 1 0 0 1 631.124 287.3975 cm -0 0 m -0 -1.643 l --20.953 -1.643 l --20.953 29.205 l --0.216 29.205 l --0.216 27.562 l --19.053 27.562 l --19.053 15.207 l --1.339 15.207 l --1.339 13.565 l --19.053 13.565 l --19.053 0 l -h -f -Q -q 1 0 0 1 673.1582 300.876 cm -0 0 m -0 -15.121 l --1.643 -15.121 l --1.643 -8.554 l --1.729 -8.554 l --3.24 -13.047 -7.95 -15.855 -13.394 -15.855 c --22.726 -15.855 -27.91 -8.727 -27.91 0.13 c --27.91 8.857 -22.639 16.461 -13.351 16.461 c --6.999 16.461 -1.599 12.615 -0.519 6.179 c --2.334 6.179 l --3.759 11.492 -7.69 14.819 -13.307 14.819 c --21.645 14.819 -26.009 7.82 -26.009 0.13 c --26.009 -7.732 -21.775 -14.214 -13.307 -14.214 c --5.963 -14.214 -1.34 -9.201 -1.643 -1.642 c --13.005 -1.642 l --13.005 0 l -h -f -Q -q 1 0 0 1 680.2842 316.6025 cm -0 0 m -0 -18.491 l -0 -22.207 0.776 -29.94 9.677 -29.94 c -17.238 -29.94 19.787 -25.49 19.787 -18.491 c -19.787 0 l -21.687 0 l -21.687 -18.491 l -21.687 -25.836 18.922 -31.582 9.677 -31.582 c --1.296 -31.582 -1.902 -22.596 -1.902 -18.491 c --1.902 0 l -h -f -Q -707.413 316.603 1.9 -30.848 re -f -q 1 0 0 1 716.6582 287.3975 cm -0 0 m -8.295 0 l -14.041 0 20.564 3.153 20.564 13.824 c -20.564 26.439 12.486 27.562 7.906 27.562 c -0 27.562 l -h --1.901 29.205 m -8.209 29.205 l -19.226 29.205 22.466 21.645 22.466 13.824 c -22.466 5.098 18.016 -1.643 8.122 -1.643 c --1.901 -1.643 l -h -f -Q -q 1 0 0 1 764.5244 287.3975 cm -0 0 m -0 -1.643 l --20.953 -1.643 l --20.953 29.205 l --0.216 29.205 l --0.216 27.562 l --19.053 27.562 l --19.053 15.207 l --1.339 15.207 l --1.339 13.565 l --19.053 13.565 l --19.053 0 l -h -f -Q -0.18 0.204 0.251 RG -2 w -q 1 0 0 1 239.6343 252.8057 cm -0 0 m -542.477 0 l -S -Q -q 1 0 0 1 239.6343 347.1924 cm -0 0 m -542.477 0 l -S -Q -219.865 243.012 -113.976 113.976 re -S -q 1 0 0 1 167.0884 278.0762 cm -0 0 m -20.916 42.671 l -22.933 42.671 l -43.849 0 l -42.085 0 l -21.925 41.159 l -1.765 0 l -h -f -Q -q 1 0 0 1 157.4888 278.0762 cm -0 0 m --42.672 20.916 l --42.672 22.932 l -0 43.847 l -0 42.083 l --41.16 21.924 l -0 1.764 l -h -f -Q -EMC -Q - -endstream endobj 125 0 obj <>stream -8;Z\sCC8!&%"s+VR.:/WRHn[Qpo)W]6F!c#U)6UfhZ(]LJ)/eDN@,rO"leoIuRt`n(+&1-@gK>W0`Q1JXXRu&"+fdi$ -84,A&?u)mV`#dC>.7gO[-mIB[%Ma8+77U331sVP1d;G@#Y[q]7MF4P@b&ML0J[K0G -G=;K!]8,TM1fXp%?(1Ggin\gcMt!*tNTN;LKFgHU+b]VV4p(f.r],0~> -endstream endobj 126 0 obj [/Indexed/DeviceRGB 255 127 0 R] endobj 127 0 obj <>stream -8;X]O>EqN@%''O_@%e@?J;%+8(9e>X=MR6S?i^YgA3=].HDXF.R$lIL@"pJ+EP(%0 -b]6ajmNZn*!='OQZeQ^Y*,=]?C.B+\Ulg9dhD*"iC[;*=3`oP1[!S^)?1)IZ4dup` -E1r!/,*0[*9.aFIR2&b-C#soRZ7Dl%MLY\.?d>Mn -6%Q2oYfNRF$$+ON<+]RUJmC0InDZ4OTs0S!saG>GGKUlQ*Q?45:CI&4J'_2j$XKrcYp0n+Xl_nU*O( -l[$6Nn+Z_Nq0]s7hs]`XX1nZ8&94a\~> -endstream endobj 120 0 obj <> endobj 128 0 obj [/View/Design] endobj 129 0 obj <>>> endobj 124 0 obj <> endobj 123 0 obj <> endobj 130 0 obj <> endobj 131 0 obj <>stream -%!PS-Adobe-3.0 -%%Creator: Adobe Illustrator(R) 16.0 -%%AI8_CreatorVersion: 16.0.0 -%%For: (virtu-win7) () -%%Title: (repository-hero.ai) -%%CreationDate: 4/2/2021 2:40 PM -%%Canvassize: 16383 -%%BoundingBox: 85 -363 763 -246 -%%HiResBoundingBox: 85.1191 -362.7158 762.3418 -246.7407 -%%DocumentProcessColors: Cyan Magenta Yellow Black -%AI5_FileFormat 12.0 -%AI12_BuildNumber: 682 -%AI3_ColorUsage: Color -%AI7_ImageSettings: 0 -%%RGBProcessColor: 0 0 0 ([Passermarken]) -%AI3_Cropmarks: -19.7695 -604.7275 868.2305 -4.72754 -%AI3_TemplateBox: 300.5 -300.5 300.5 -300.5 -%AI3_TileBox: 3.27051 -602.3877 845.1904 -7.06738 -%AI3_DocumentPreview: None -%AI5_ArtSize: 14400 14400 -%AI5_RulerUnits: 6 -%AI9_ColorModel: 1 -%AI5_ArtFlags: 0 0 0 1 0 0 1 0 0 -%AI5_TargetResolution: 800 -%AI5_NumLayers: 1 -%AI9_OpenToView: -1037 355 1 2938 1272 2 0 0 145 116 0 0 0 1 1 0 1 1 0 1 -%AI5_OpenViewLayers: 3 -%%PageOrigin:-100 -600 -%AI7_GridSettings: 72 8 72 8 1 0 0.8 0.8 0.8 0.9 0.9 0.9 -%AI9_Flatten: 1 -%AI12_CMSettings: 00.MS -%%EndComments - -endstream endobj 132 0 obj <>stream -%%BoundingBox: 85 -363 763 -246 -%%HiResBoundingBox: 85.1191 -362.7158 762.3418 -246.7407 -%AI7_Thumbnail: 128 24 8 -%%BeginData: 4813 Hex Bytes -%0000330000660000990000CC0033000033330033660033990033CC0033FF -%0066000066330066660066990066CC0066FF009900009933009966009999 -%0099CC0099FF00CC0000CC3300CC6600CC9900CCCC00CCFF00FF3300FF66 -%00FF9900FFCC3300003300333300663300993300CC3300FF333300333333 -%3333663333993333CC3333FF3366003366333366663366993366CC3366FF -%3399003399333399663399993399CC3399FF33CC0033CC3333CC6633CC99 -%33CCCC33CCFF33FF0033FF3333FF6633FF9933FFCC33FFFF660000660033 -%6600666600996600CC6600FF6633006633336633666633996633CC6633FF -%6666006666336666666666996666CC6666FF669900669933669966669999 -%6699CC6699FF66CC0066CC3366CC6666CC9966CCCC66CCFF66FF0066FF33 -%66FF6666FF9966FFCC66FFFF9900009900339900669900999900CC9900FF -%9933009933339933669933999933CC9933FF996600996633996666996699 -%9966CC9966FF9999009999339999669999999999CC9999FF99CC0099CC33 -%99CC6699CC9999CCCC99CCFF99FF0099FF3399FF6699FF9999FFCC99FFFF -%CC0000CC0033CC0066CC0099CC00CCCC00FFCC3300CC3333CC3366CC3399 -%CC33CCCC33FFCC6600CC6633CC6666CC6699CC66CCCC66FFCC9900CC9933 -%CC9966CC9999CC99CCCC99FFCCCC00CCCC33CCCC66CCCC99CCCCCCCCCCFF -%CCFF00CCFF33CCFF66CCFF99CCFFCCCCFFFFFF0033FF0066FF0099FF00CC -%FF3300FF3333FF3366FF3399FF33CCFF33FFFF6600FF6633FF6666FF6699 -%FF66CCFF66FFFF9900FF9933FF9966FF9999FF99CCFF99FFFFCC00FFCC33 -%FFCC66FFCC99FFCCCCFFCCFFFFFF33FFFF66FFFF99FFFFCC110000001100 -%000011111111220000002200000022222222440000004400000044444444 -%550000005500000055555555770000007700000077777777880000008800 -%000088888888AA000000AA000000AAAAAAAABB000000BB000000BBBBBBBB -%DD000000DD000000DDDDDDDDEE000000EE000000EEEEEEEE0000000000FF -%00FF0000FFFFFF0000FF00FFFFFF00FFFFFF -%524C457DA8A87DA87DA87DA87DA87DA87DA87DA87DA87DA87DFD6AFF7DFD -%14FFA8A8FFFFFFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8 -%FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8 -%FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8 -%FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FD14FF7DFFFFFFFD04A8 -%7EA8A8A87EA8A8A87EA8A8A87EA8A8A87EA8A8A87EA8A8A87EA8A8A87EA8 -%A8A87EA8A8A87EA8A8A87EA8A8A87EA8A8A87EA8A8A87EA8A8A87EA8A8A8 -%7EA8A8A87EA8A8A87EA8A8A87EA8A8A87EA8A8A87EA8A8A87EA8A8A87EA8 -%A8A87EA8A8A87EA8A87DFD14FFA8A8FD69FFA8FD14FF7EFD6AFF7DFD14FF -%A8A8FD69FFA8FD14FFA8FD6AFF7DFD07FFA8A8FD05FFA8A8FD04FFA8A8FD -%23FFA8FD2DFFA8FD17FFA8FD06FF7DA8A8FD05FF527DFD04FFA8FD07FF7D -%FD04FFA8FFFF84FFFFFF7DA87DFFA8FFFFFFA8A87DA87DFFFFFF7D847DFF -%A8FFFFFF7DFFFFFF7DFFFFFFA8FFFFFFA8847DA8A8A87DA87DA8FFFFFFA8 -%7EFFFFFFA8847D7EA8FFFFFF7DA87DA8FFA9FD04FFA8FF7EA87DA8FFFF7D -%A87DA8FFFFFF7DFFFFFFA8A87DA8FD06FF7EA87DFD04FFA8A8FD05FFA852 -%A8FFFFA82EFFA8537DFF7DA8A8A87DA8A8FF7DA87E7DA8A87DFF7D84FFA8 -%53A87DFFA852A8FF7D7D52FFFFA8A8FFFF7DA8FF7D7DA8847DFF7DA8FFA9 -%7D7DA8FFFF847EFFA8FFFFFF7D7DA8FF59A87DFFFFFF7DA8A87DA8FF7DA8 -%7DFD04A8FFFFFFA8FFFFA87D7DFD08FF84FFFF7DFFFFFF7DFD07FF53A8FF -%FF7D7DFFA87DA8FFA8A8FFFFA87DFFA884FFA8A8FFFFA87D7EFFFFFFA87D -%A8FFA87DAFFFA87D7E7EFF7DA9FFFF7DFFFFFFA8FFA8A8FFFF7DFF7DFF7D -%FFFFFFA8FD06FF7DFD04FFA8A8A8FFFFA8A8A87DFFFFFF7DA8A8FD06FF7D -%FF52A8FD09FFA87DFFFF7DA8FFFFA8A8FD05FFA87E7DFFA87D7DFF7DFF7D -%FFFD057DA85252A8FF7DA8FFFFA8537DFFFFFFA87D7DFF7DA87DA97DA8A8 -%7DA8A8A8FFFFFF7D7D7DFFFFA87DFFFFA852A8FF7DA8FFFF7E537D7DFFFF -%FF7DFFA8A87DFF7DFFFFFF7DA87D84A9FFFFA8FD047DA8FFFFFFA8FF7D7D -%FD09FF7DFFFFFFA8A8FFFF7EFD07FF7DFD06A8FD047DA87EFFA8A8A87DA8 -%7DFFA8A8FFFFFF59A8FD04FF7DA97DA8FFA87DFF7DFFA8847EFFFFFFA8FF -%FFA87DFFA8A8FFFFFF7DFFFF7DFFFFFFA8A9A9FFFFFFA9A8FFFFA8A87DA8 -%FFFFFFA8A8A87DFFFFFF7D7EA8FFAFFD04FF7DFFFFA87DA8A8FD05FFA87D -%FD04FF7DFFFFA8A8FD05FFA87DFF7D7DFF7D7D7DFFA87D7DA8FFFF7D7DA8 -%FF7E7D7DA8FFFF7DA87DA8FFFF7DA8A853A8FF7D7DFF7DA8FF7D52A8FFA8 -%7DA8FFFF7DFFA87DFFFFFF7DFFFF7DA8FFFFA8A8FD05FF7DA8FFFF7D7D7D -%A8FFFF7DA87D84FFFF847E7DA8FD06FFA8FD04FFA87D7DFD04FFA8A8FD04 -%FFA87DFFA8FD07FF7DFF7DA8FFA87DFFFFFFA87DA8FFFFA87DA8FFFF7D7D -%7DA87DA8FFFF7DA87DA8FFFF53FFFFA87DFF7DFFFFFF53FFFFFFA87D7D7D -%A8FFA8A8FFFFFFA8FFFF7D7D7DA8FD047DA8FFFFFF7DA87D7D7DFF7DA87D -%A8AFA87D7E7D7DFFA87DA87DA8FFFFFF7DFD05FFA9A859A8FFA953FD05FF -%A87DFFA8A8FD05FFA8FFFFFFA8FFA8FD05FFA8FFFFFFA8FD05FFA8A8A8FD -%05FFA8A8FD0EFFA9FFFFFFA8A8A8FFFFFFA8FFFFFFA8FFFFFFA8A8A8FFA8 -%A8A8FD05FF7EA8FD04FF7EA8FD04FFA8AFFFFFA8A9A8A8A8FFFFFFA8FD08 -%FF84FFA8FD07FFA8FFA8FD6AFF7DFD14FFA8A8FD69FFA8FD14FF7DFD6AFF -%7DFD14FFA8A8FD69FFA8FD14FF7EFD6AFF7DFD14FFA8A8FFFFA87DA87DA8 -%7DA87DA87DA87DA87DA87DA87DA87DA87DA87DA87DA87DA87DA87DA87DA8 -%7DA87DA87DA87DA87DA87DA87DA87DA87DA87DA87DA87DA87DA87DA87DA8 -%7DA87DA87DA87DA87DA87DA87DA87DA87DA87DA87DA87DA87DA87DA87DA8 -%7DA87DA87DA87DA8A8FD14FFA8FD05FFA8FFA8FFA8FFA8FFA8FFA8FFA8FF -%A8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FF -%A8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FF -%A8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA852A87D -%7D7D7E7D7D7D7E7D7D7D7E7D7D7D7EFD047DA8FD68FFFF -%%EndData - -endstream endobj 133 0 obj <>stream -%!PS-Adobe-3.0 -%%Creator: Adobe Illustrator(R) 16.0 -%%AI8_CreatorVersion: 16.0.0 -%%For: (virtu-win7) () -%%Title: (repository-hero.ai) -%%CreationDate: 4/2/2021 2:40 PM -%%Canvassize: 16383 -%%BoundingBox: 85 -363 763 -246 -%%HiResBoundingBox: 85.1191 -362.7158 762.3418 -246.7407 -%%DocumentProcessColors: Cyan Magenta Yellow Black -%%DocumentFonts: HelveticaNeueLTStd-Th -%%DocumentNeededFonts: HelveticaNeueLTStd-Th -%AI5_FileFormat 12.0 -%AI12_BuildNumber: 682 -%AI3_ColorUsage: Color -%AI7_ImageSettings: 0 -%%RGBProcessColor: 0 0 0 ([Passermarken]) -%AI3_Cropmarks: -19.7695 -604.7275 868.2305 -4.72754 -%AI3_TemplateBox: 300.5 -300.5 300.5 -300.5 -%AI3_TileBox: 3.27051 -602.3877 845.1904 -7.06738 -%AI3_DocumentPreview: None -%AI5_ArtSize: 14400 14400 -%AI5_RulerUnits: 6 -%AI9_ColorModel: 1 -%AI5_ArtFlags: 0 0 0 1 0 0 1 0 0 -%AI5_TargetResolution: 800 -%AI5_NumLayers: 1 -%AI9_OpenToView: -1037 355 1 2938 1272 2 0 0 145 116 0 0 0 1 1 0 1 1 0 1 -%AI5_OpenViewLayers: 3 -%%PageOrigin:-100 -600 -%AI7_GridSettings: 72 8 72 8 1 0 0.8 0.8 0.8 0.9 0.9 0.9 -%AI9_Flatten: 1 -%AI12_CMSettings: 00.MS -%%EndComments -%%BeginProlog -%%EndProlog -%%BeginSetup -[ -39/quotesingle 96/grave 128/Euro 130/quotesinglbase/florin/quotedblbase/ellipsis -/dagger/daggerdbl/circumflex/perthousand/Scaron/guilsinglleft/OE 145/quoteleft -/quoteright/quotedblleft/quotedblright/bullet/endash/emdash/tilde/trademark -/scaron/guilsinglright/oe/dotlessi 159/Ydieresis /space 164/currency 166/brokenbar -168/dieresis/copyright/ordfeminine 172/logicalnot/hyphen/registered/macron/ring -/plusminus/twosuperior/threesuperior/acute/mu 183/periodcentered/cedilla -/onesuperior/ordmasculine 188/onequarter/onehalf/threequarters 192/Agrave -/Aacute/Acircumflex/Atilde/Adieresis/Aring/AE/Ccedilla/Egrave/Eacute -/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis/Eth/Ntilde -/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/multiply/Oslash/Ugrave -/Uacute/Ucircumflex/Udieresis/Yacute/Thorn/germandbls/agrave/aacute -/acircumflex/atilde/adieresis/aring/ae/ccedilla/egrave/eacute/ecircumflex -/edieresis/igrave/iacute/icircumflex/idieresis/eth/ntilde/ograve/oacute -/ocircumflex/otilde/odieresis/divide/oslash/ugrave/uacute/ucircumflex -/udieresis/yacute/thorn/ydieresis -TE -%AI55J_Tsume: None -%AI3_BeginEncoding: _HelveticaNeueLTStd-Th HelveticaNeueLTStd-Th -[/_HelveticaNeueLTStd-Th/HelveticaNeueLTStd-Th 0 0 1 TZ %AI3_EndEncoding AdobeType -%AI5_Begin_NonPrinting -Np -%AI8_PluginGroupInfo -(Adobe Vectorized Object) (Nachgezeichnetes Bild) (Vectorize.aip) -%AI8_PluginGroupInfo -(Adobe Flare Plugin) (Flare) (flare.aip) -%AI8_PluginGroupInfo -(Adobe Deform Plugin) (Adobe H\374llen-Zusatzmodul) (Envelope and Warp.aip) -%AI8_PluginGroupInfo -(Adobe Planar Group) (Adobe-Zusatzmodul Interaktiv malen) (Live Paint.aip) -%AI8_PluginGroupInfo -(Adobe Perspective Plugin Group) (Adobe Perspective Plugin Group) (Perspective.aip) -%AI8_PluginGroupInfo -(Adobe Path Blends) (Adobe Angleichungen-Zusatzmodul) (Live Blends.aip) -%AI8_PluginGroupInfo -(Adobe Symbolism) (Adobe Symbolism) (Symbolism.aip) -%AI8_PluginGroupInfo -(Adobe PatternOnPath Brush Tool) (Adobe Musterpinsel-Zusatzmodul) (ArtOnPath.aip) -%AI8_PluginGroupInfo -(Adobe PatternOnPath Brush Tool) (Adobe Musterpinsel-Zusatzmodul) (ArtOnPath.aip) -%AI8_PluginGroupInfo -(Adobe ArtOnPath Brush Tool) (Adobe Bildpinsel-Zusatzmodul) (ArtOnPath.aip) -%AI8_PluginGroupInfo -(Adobe ArtOnPath Brush Tool) (Adobe Bildpinsel-Zusatzmodul) (ArtOnPath.aip) -%AI8_PluginGroupInfo -(Adobe Calligraphic Brush Tool) (Adobe Kalligrafiepinsel-Zusatzmodul) (Calligraphic Brush Tool.aip) -%AI8_PluginGroupInfo -(Adobe Scatter Brush Tool) (Adobe Spezialpinsel-Zusatzmodul) (Scatter Brush Tool.aip) -%AI8_PluginGroupInfo -(Adobe Scatter Brush Tool) (Adobe Spezialpinsel-Zusatzmodul) (Scatter Brush Tool.aip) -%AI8_PluginGroupInfo -(Adobe Pattern Editor Plugin Group) (Adobe Pattern Editor Plugin Group) (Swatch Libraries.aip) -%AI8_PluginGroupInfo -(Pathfinder Suite) (Adobe Zusammengesetzte Form) (PathFinder Suite.aip) -%AI5_End_NonPrinting-- -%AI5_Begin_NonPrinting -Np -9 Bn -%AI5_BeginGradient: (Blauer Himmel) -(Blauer Himmel) 0 2 Bd -[ -0.591974 -0 -0.148531 -0 -0.239216 -0.870588 -0.929412 -4 %_Br -[ -0.591974 0 0.148531 0 0.239216 0.870588 0.929412 2 0 6 50 100 %_BS -%_0.591974 0 0.148531 0 0.239216 0.870588 0.929412 2 0 6 50 100 Bs -0.591974 0 0.148531 0 0.239216 0.870588 0.929412 2 1 6 50 0 %_BS -%_0.591974 0 0.148531 0 0.239216 0.870588 0.929412 2 1 6 50 0 Bs -BD -%AI5_EndGradient -%AI5_BeginGradient: (Goldstaub) -(Goldstaub) 0 4 Bd -[ -< -21202121222122222323222323242324242524242525252526262626272727272728282929292929 -2A2A2A2A2B2B2B2B2B2B2B2C2C2C2C2D2D2D2D2D2E2E2F2F30303030303131313132313232323232 -333333333434 -> -< -2D2F30313234343637393B3C3D3E4041434345464749494B4C4D4E4F50525354555658595B5C5D5E -5F616164656768696B6B6D6E6F70727374767778797A7B7D7E8081828384858688888A8B8D8E8F91 -919394959698 -> -< -F4F4F4F5F5F5F5F5F6F6F6F7F7F7F7F7F8F8F8F9F9F9FAFAFAFBFBFBFBFBFCFCFCFCFDFDFEFEFEFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFF -> -< -030404040404050506060606060707070708080808080808090909090A0A0A0B0B0B0B0C0C0D0D0D -0D0D0E0E0E0E0F0F0F0F0F1010101011111011111211121213131414141515161616161717171717 -181819191A19 -> -< -E5E5E4E4E3E3E2E2E1E1E1E0E0DFDFDEDEDDDDDDDCDCDBDBDADAD9D9D8D8D8D7D7D6D6D5D5D4D4D4 -D3D3D2D2D1D1D0D0D0CFCFCECECDCDCCCCCCCBCBCACAC9C9C8C8C7C7C7C6C6C5C5C4C4C3C3C3C2C2 -C1C1C0C0BFBF -> -< -C5C4C3C2C1C0BFBEBDBCBBBAB9B8B7B6B5B4B3B2B1B0AFAEADACABAAA9A8A7A6A5A4A3A2A1A09F9E -9D9C9B999897969594939291908F8E8D8C8B8A898887868584838281807F7E7D7C7B7A7978777675 -74737271706F -> -0 -4 %_Br -< -171717181818181818181919191A1A1A1A1B1B1B1B1B1C1C1D1D1D1D1D1D1E1E1E1F1F20202021 -> -< -69686765646261605E5D5B5A5856555352514F4C4B4948464543413F3E3C3A3837353332302F2D -> -< -FAFAFAFAFAFAF9FAFAFAFAF9F9F9F9F9F8F8F8F7F7F6F6F6F6F6F6F6F5F5F5F4F5F5F4F4F4F4F4 -> -< -030303030303030303030303030404040404040404040404040404040404040404040404040403 -> -0.898039 -< -9E9FA0A1A2A3A4A5A6A7A8A9AAABACADAEAFB0B2B3B4B5B6B7B8B9BABBBCBDBEBFC0C1C2C3C4C5 -> -< -030303030303030202020202020202020202020201010101010101010101010100000000000000 -> -4 %_Br -< -00000000000000000000000000000000000000000000000000000000000000000000000102040406 -060808090A0C0E0E0F0F1111131414151517 -> -< -A5A5A5A4A4A3A3A3A3A2A1A0A09F9E9E9D9B9B9A99989796959594939191908F8E8C8B8B89888685 -848281817F7D7C7A7978767472706F6D6B69 -> -< -F0F0F0F1F1F1F1F1F1F1F2F2F2F3F3F3F4F4F4F4F4F5F5F6F6F6F7F7F7F8F8F9F9FAFAFAFAFAFAFA -FAFBFBFBFBFCFCFCFCFCFCFBFBFBFBFBFAFA -> -< -00000000000000000000000000000000000000000000000000000000000000000000000000000000 -000000000000010101010101010102020203 -> -< -FFFFFFFEFEFEFEFDFDFDFCFCFCFBFBFBFAFAF9F9F9F8F8F7F7F6F6F5F5F4F4F3F3F2F2F1F1F0F0EF -EFEEEEEDEDECEBEBEAEAE9E9E8E7E7E6E6E5 -> -< -73737374747575767677777878797A7A7B7C7C7D7E7E7F808181828384848586878889898A8B8C8D -8E8F90909192939495969798999A9B9C9D9E -> -< -00000000000000000000000000000001010101010101010101010101010101010101020202020202 -020202020202020202020303030303030303 -> -4 %_Br -[ -0.202823 0.594781 1 0.099977 0.74902 0.435294 0 2 1 6 50 99.4382 %_BS -%_0.202823 0.594781 1 0.099977 0.74902 0.435294 0 2 1 6 50 99.4382 Bs -0.12842 0.177859 0.957183 0.013581 0.898039 0.772549 0 2 1 6 50 86.5168 %_BS -%_0.12842 0.177859 0.957183 0.013581 0.898039 0.772549 0 2 1 6 50 86.5168 Bs -0.090089 0.413703 0.981842 0.01062 0.898039 0.619608 0.011765 2 1 6 50 55.211 %_BS -%_0.090089 0.413703 0.981842 0.01062 0.898039 0.619608 0.011765 2 1 6 50 55.211 Bs -0 0.648035 0.942992 0 1 0.45098 0 2 1 6 59.5506 0 %_BS -%_0 0.648035 0.942992 0 1 0.45098 0 2 1 6 59.5506 0 Bs -BD -%AI5_EndGradient -%AI5_BeginGradient: (Unnamed gradient 1) -(Unnamed gradient 1) 0 2 Bd -[ -< -0000010304050608090B0C0D0F10111213141718191A1B1C1E1F21222324252728292A -> -< -00000102030405060708090A0A0B0C0C0D0E1011111213141516171819191A1B1B1C1D -> -< -000001020304050708090A0B0C0D0E0F101112131415161718191A1B1C1C1D1E1F2021 -> -< -0000000000000000000000000000000000000000000000000000000000000000000000 -> -< -FFFEFDFCFBFAF9F8F7F6F5F4F3F2F1F0EFEEECEBEAE9E8E7E6E5E4E3E2E1E0DFDEDDDC -> -< -FFFEFDFCFBFAF9F8F7F6F5F4F3F2F1F0EFEEECEBEAE9E8E7E6E5E4E3E2E1E0DFDEDDDC -> -< -FFFEFDFCFBFAF9F8F7F6F5F4F3F2F1F0EFEEECEBEAE9E8E7E6E5E4E3E2E1E0DFDEDDDC -> -4 %_Br -[ -0.81 0 1 6 50 100 %_BS -%_0.81 0 1 6 50 100 Bs -1 0 1 6 50 0 %_BS -%_1 0 1 6 50 0 Bs -BD -%AI5_EndGradient -%AI5_BeginGradient: (Unnamed gradient 17) -(Unnamed gradient 17) 1 2 Bd -[ -< -26252423222121201E1D1B1A191716151413131211100F0D0C0B09080605050403010000 -> -< -1F1E1D1D1C1B1A19181716151413131211100F0E0D0C0C0B0A0A09070605040302010000 -> -< -2120201F1E1D1C1C1B1A1817161615141312100F0F0E0D0C0B0A09080605040302010000 -> -< -000000000000000000000000000000000000000000000000000000000000000000000000 -> -< -DFE0E1E2E3E4E4E5E6E7E8E9EAEBECEDEEEFEFF0F1F2F3F4F5F6F7F8F9FAFAFBFCFDFEFF -> -< -DCDDDEDFE0E1E2E3E4E5E6E7E8E9EAEBECEDEEEFF0F1F2F3F4F5F6F7F8F9FAFBFCFDFEFF -> -< -DBDCDDDEDFE0E1E2E3E4E5E6E7E8E9EAEBECEEEFF0F1F2F3F4F5F6F7F8F9FAFBFCFDFEFF -> -4 %_Br -[ -0.150576 0.121614 0.130159 0.000183 0.87451 0.862745 0.858824 2 0.85 6 50 9.81595 %_BS -%_0.150576 0.121614 0.130159 0.000183 0.87451 0.862745 0.858824 2 0.85 6 50 9.81595 Bs -0 0 0 0 1 1 1 2 0 6 50 100 %_BS -%_0 0 0 0 1 1 1 2 0 6 50 100 Bs -BD -%AI5_EndGradient -%AI5_BeginGradient: (Unnamed gradient 2) -(Unnamed gradient 2) 0 2 Bd -[ -< -B7B8B8B9B9BABBBBBCBDBDBEBEBFC0C0C1C1C2C2C3C3C4C4C5C6C6C7C7C7C8C8C9CACACBCBCCCCCD -CDCECECFCFD0D1D1D2D2D3D3D4D4D5D5D6D6D7D7D8D8D9D9DA -> -< -515251535253555455575657575859595A5C5B5C5B5D5E5D5F605F61606163626364636564656766 -6869686A696B6C6B6D6E6D6F6E6F7170727373747475777678 -> -0 -0 -0 -< -9D9C9C9B9B9A999998979796969594949392929191908F8F8E8D8D8C8C8B8A8A8988888787868585 -84838382828180807F7E7E7D7D7C7B7B7A7979787877767675 -> -< -FFFEFDFCFBFAF9F8F7F6F5F4F3F2F1F0EFEEEDECEBEAE9E8E7E6E5E4E3E2E1E0DFDDDCDBDAD9D8D7 -D6D5D4D3D2D1D0CFCECDCCCBCAC9C8C7C6C5C4C3C2C1C0BFBE -> -4 %_Br -[ -0.854643 0.468879 0 0 0 0.458824 0.745098 2 1 6 50 100 %_BS -%_0.854643 0.468879 0 0 0 0.458824 0.745098 2 1 6 50 100 Bs -0.717464 0.316075 0 0 0 0.615686 1 2 1 6 50 0 %_BS -%_0.717464 0.316075 0 0 0 0.615686 1 2 1 6 50 0 Bs -BD -%AI5_EndGradient -%AI5_BeginGradient: (Unnamed gradient 28) -(Unnamed gradient 28) 1 2 Bd -[ -< -0000010304050608090A0C0D0F10111314151617181A1B1C1D1E1F20212324262728292A2B2D2E30 -31323335363738393A3C3D3E404142434445464748494A4B4C4D4E4F5051525354565758595A -> -< -00000100010203040504060708090908090A0B0C0C0C0D0D0E0F100F101112131413141516171816 -1718191A1B1A1B1C1D1E1F1E1F20212223222324252627262728292A2B2A2B2C2D2E2F2E2F30 -> -< -0000000103040304050707080909090B0C0B0C0D0E0E0F100F10111312131415151717171818191A -1B1B1C1C1C1E1D1E1F20202122232223242425252625262829282829282A2B2C2B2D2E2F2F2F -> -< -00000000000000000000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000001000101010101010202020202020203030303030404 -> -< -FFFEFDFCFBFAF9F8F7F6F5F4F3F2F1F0EFEEEDECEBEAE9E8E7E6E5E4E3E2E1E0DFDEDDDCDBDAD9D7 -D6D5D4D3D2D1D0CFCECDCCCBCAC9C8C7C6C5C4C3C2C1C0BFBEBDBCBBBAB9B8B7B6B5B4B3B2B1 -> -< -FFFEFDFDFCFBFAF9F8F8F7F6F5F4F3F3F2F1F0EFEEEEEDECEBEAE9E9E8E7E6E5E4E4E3E2E1E0DFDF -DEDDDCDBDADAD9D8D7D6D5D5D4D3D2D1D0D0CFCECDCCCBCBCAC9C8C7C6C6C5C4C3C2C1C1C0BF -> -< -FFFEFEFDFCFBFBFAF9F8F8F7F6F6F5F4F3F3F2F1F0F0EFEEEEEDECEBEBEAE9E8E8E7E6E6E5E4E3E3 -E2E1E0E0DFDEDEDDDCDBDBDAD9D8D8D7D6D6D5D4D3D3D2D1D0D0CFCECECDCCCBCBCAC9C8C8C7 -> -4 %_Br -[ -0 0 0 0 1 1 1 2 1 6 50 0 %_BS -%_0 0 0 0 1 1 1 2 1 6 50 0 Bs -0.35288 0.187259 0.186221 0.014984 0.694118 0.74902 0.780392 2 1 6 50 100 %_BS -%_0.35288 0.187259 0.186221 0.014984 0.694118 0.74902 0.780392 2 1 6 50 100 Bs -BD -%AI5_EndGradient -%AI5_BeginGradient: (Unnamed gradient 3) -(Unnamed gradient 3) 0 2 Bd -[ -< -2C2D2E2F303132333435363738393B3C3D3E3F4142434445464748494A4B4C4D4F50505152535454 -5556575858595A5B5C5D5E5F606162636364656667686969 -> -< -00000000000000000000000000000000000000000000000001000000000100000000000000010000 -010002010002010201000201020101030204040305040606 -> -0 -0 -< -DAD9D8D7D6D5D4D3D2D1D0CFCECDCCCBCAC9C8C7C6C5C4C3C2C1C0BFBEBDBCBBB9B8B7B6B5B4B3B2 -B1B0AFAEADACABAAA9A8A7A6A5A4A3A2A1A09F9E9D9C9B9A -> -< -F1F1F0F0EFEFEFEEEEEDEDEDECECEBEBEBEAEAE9E9E9E8E8E7E7E7E6E6E5E5E5E4E4E4E3E3E2E2E2 -E1E1E0E0E0DFDFDEDEDEDDDDDCDCDCDBDBDADADAD9D9D8D8 -> -1 -4 %_Br -[ -0.413245 0.021576 0 0 0.603922 0.847059 1 2 1 6 50 100 %_BS -%_0.413245 0.021576 0 0 0.603922 0.847059 1 2 1 6 50 100 Bs -0.17142 0 0 0 0.854902 0.945098 1 2 1 6 50 0 %_BS -%_0.17142 0 0 0 0.854902 0.945098 1 2 1 6 50 0 Bs -BD -%AI5_EndGradient -%AI5_BeginGradient: (Unnamed gradient 7) -(Unnamed gradient 7) 0 2 Bd -[ -< -0000010304050608090B0C0D0F1011121314151718191A1B1C1E1F21222324252728292A2B2C2D2E -2F3031323435363738393A3B3C3D3E3F404142434445464748494A4B4C4D4E4F5050515253545556 -5758595A5B5C5D5D5E5F5F6061626263646565666768696A6A6B6C6E6F7070717273747475767777 -78797A7A7B7C7D7E7E7F808181828383848585868687888889898A8B8B8C8D8D8E8F8F9090919292 -93949495959697979899999A9B9B9C9C9D9E9E9F9FA0A1A2A2A3A4A5A5A6A7A8A8A9AAAAABABACAD -ADAEAFB0B0B1B1B2B3B4B4B5B6B6B7B8B9B9BABBBCBDBDBEBFBFC0C1C1C2C3C4C5C6C7C8C9C9CACC -CED0D1D2D4D5D7D8DADCDEE0E3E5E7E9 -> -< -00000102030405060708090A0A0B0C0C0D0E0F1011111213141516171819191A1B1B1C1D1E1F2020 -2122232425262728292A2B2C2C2D2E2E2F303131323334353637373839393A3B3C3C3D3E3E3F4041 -424243444546474748494A4B4B4C4D4D4E4E4F4F505152525354555657575859595A5B5B5C5C5D5D -5E5F5F60616162636364656667676869696A6A6B6C6C6D6E6E6F6F70707172727374747576767778 -79797A7B7C7C7D7E7F7F80808182828384858586878888898A8A8B8C8C8D8E8E8F90919192939494 -959697979898999A9B9B9C9D9D9E9FA0A0A1A2A3A3A4A5A6A6A7A7A8A9AAABACADAEAFB0B1B1B2B3 -B5B6B7B8B9BABCBDBEC0C1C3C4C6C7C9 -> -< -000001020304050708090A0B0C0D0E0F10111112131415161718191A1B1C1C1D1E1F202121222323 -2425262728292A2B2C2D2D2E2F2F3031323233343536373738393A3B3B3C3D3D3E3F404041424243 -44444546464748494A4A4B4C4D4D4E4E4F505051515253535454555657575859595A5B5B5C5C5D5D -5E5F5F606161626263636465656667676869696A6A6B6C6C6D6D6E6F6F7070717272737474757676 -777778787879797A7B7B7C7D7D7E7E7F7F80808181828283838485858687878888898A8A8B8C8C8D -8D8E8E8E8F8F8F909091919293939494959596969798989999999A9A9B9B9B9B9C9C9C9C9C9D9D9D -9D9D9D9D9D9D9D9D9E9E9E9E9E9E9E9E -> -< -00000000000000000000000000000000000000000000000000000000000000000000000000000001 -01010101010101020202020202030303040404050506060607070808080909090A0A0A0B0B0C0C0D -0D0E0F0F1011121213131414151616171819191A1B1B1C1D1E1E1F202122232425262728292A2B2C -2D2E2E2F3031323435363738393A3B3D3E3F40414344454647494A4B4C4E4F505253555658595B5C -5E5F6162646567686A6B6D6F7072737577787A7B7D7F8082848688898B8D8F91939496989A9C9E9F -A1A3A5A6A7A9AAACAEB0B2B3B5B7B9BBBDBFC1C3C5C7C9CACBCDCED0D1D3D5D7D9DADCDEDFE1E2E4 -E5E7E8E9E9EBECEDEEF0F1F3F4F6F7F9 -> -< -FFFEFDFCFBFAF9F8F7F6F5F4F3F2F1F0EFEEEDECEBEAE9E8E7E6E5E4E3E2E1E0DFDEDDDCDBDAD9D8 -D7D6D5D4D3D2D1D0CFCECDCCCBCAC9C8C7C6C5C4C3C2C1C0BFBEBDBCBBBAB9B8B7B6B5B4B3B2B1B0 -AFAEADACABAAA9A8A7A6A5A4A3A2A1A09F9E9D9C9B9A999897969594939291908F8E8D8C8B8A8988 -87868584838281807F7E7D7C7B7A797877767574737271706F6E6D6C6B6A69686766656463626160 -5F5E5D5C5B5A595857565554535251504F4E4D4C4B4A494847464544434241403F3E3D3C3B3A3938 -37363534333231302F2E2D2C2B2A292827262524232221201F1E1D1C1B1A19181716151413121110 -0F0E0D0C0B0A09080706050403020100 -> -< -FFFEFDFCFBFAF9F8F7F6F5F4F3F2F1F0EFEEEDECEBEAE9E8E7E6E5E4E3E2E1E0DFDEDDDCDBDAD9D8 -D7D6D5D4D3D2D1D0CFCECDCCCBCAC9C8C7C6C5C4C3C2C1C0BFBEBDBCBBBAB9B8B7B6B5B4B3B2B1B0 -AFAEADACABAAA9A8A7A6A5A4A3A2A1A09F9E9D9C9B9A999897969594939291908F8E8D8C8B8A8988 -87868584838281807F7E7D7C7B7A797877767574737271706F6E6D6C6B6A69686766656463626160 -5F5E5D5C5B5A595857565554535251504F4E4D4C4B4A494847464544434241403F3E3D3C3B3A3938 -37363534333231302F2E2D2C2B2A292827262524232221201F1E1D1C1B1A19181716151413121110 -0F0E0D0C0B0A09080706050403020100 -> -< -FFFEFDFCFBFAF9F8F7F6F5F4F3F2F1F0EFEEEDECEBEAE9E8E7E6E5E4E3E2E1E0DFDEDDDCDBDAD9D8 -D7D6D5D4D3D2D1D0CFCECDCCCBCAC9C8C7C6C5C4C3C2C1C0BFBEBDBCBBBAB9B8B7B6B5B4B3B2B1B0 -AFAEADACABAAA9A8A7A6A5A4A3A2A1A09F9E9D9C9B9A999897969594939291908F8E8D8C8B8A8988 -87868584838281807F7E7D7C7B7A797877767574737271706F6E6D6C6B6A69686766656463626160 -5F5E5D5C5B5A595857565554535251504F4E4D4C4B4A494847464544434241403F3E3D3C3B3A3938 -37363534333231302F2E2D2C2B2A292827262524232221201F1E1D1C1B1A19181716151413121110 -0F0E0D0C0B0A09080706050403020100 -> -4 %_Br -[ -0.912474 0.787625 0.619837 0.97467 0 0 0 2 1 6 50 100 %_BS -%_0.912474 0.787625 0.619837 0.97467 0 0 0 2 1 6 50 100 Bs -0 0 0 0 1 1 1 2 1 6 50 0 %_BS -%_0 0 0 0 1 1 1 2 1 6 50 0 Bs -BD -%AI5_EndGradient -%AI5_BeginGradient: (Weiß, Schwarz) -(Weiß, Schwarz) 0 2 Bd -[ -< -0000010304050608090B0C0D0F1011121314151718191A1B1C1E1F21222324252728292A2B2C2D2E -2F3031323435363738393A3B3C3D3E3F404142434445464748494A4B4C4D4E4F5050515253545556 -5758595A5B5C5D5D5E5F5F6061626263646565666768696A6A6B6C6E6F7070717273747475767777 -78797A7A7B7C7D7E7E7F808181828383848585868687888889898A8B8B8C8D8D8E8F8F9090919292 -93949495959697979899999A9B9B9C9C9D9E9E9F9FA0A1A2A2A3A4A5A5A6A7A8A8A9AAAAABABACAD -ADAEAFB0B0B1B1B2B3B4B4B5B6B6B7B8B9B9BABBBCBDBDBEBFBFC0C1C1C2C3C4C5C6C7C8C9C9CACC -CED0D1D2D4D5D7D8DADCDEE0E3E5E7E9 -> -< -00000102030405060708090A0A0B0C0C0D0E0F1011111213141516171819191A1B1B1C1D1E1F2020 -2122232425262728292A2B2C2C2D2E2E2F303131323334353637373839393A3B3C3C3D3E3E3F4041 -424243444546474748494A4B4B4C4D4D4E4E4F4F505152525354555657575859595A5B5B5C5C5D5D -5E5F5F60616162636364656667676869696A6A6B6C6C6D6E6E6F6F70707172727374747576767778 -79797A7B7C7C7D7E7F7F80808182828384858586878888898A8A8B8C8C8D8E8E8F90919192939494 -959697979898999A9B9B9C9D9D9E9FA0A0A1A2A3A3A4A5A6A6A7A7A8A9AAABACADAEAFB0B1B1B2B3 -B5B6B7B8B9BABCBDBEC0C1C3C4C6C7C9 -> -< -000001020304050708090A0B0C0D0E0F10111112131415161718191A1B1C1C1D1E1F202121222323 -2425262728292A2B2C2D2D2E2F2F3031323233343536373738393A3B3B3C3D3D3E3F404041424243 -44444546464748494A4A4B4C4D4D4E4E4F505051515253535454555657575859595A5B5B5C5C5D5D -5E5F5F606161626263636465656667676869696A6A6B6C6C6D6D6E6F6F7070717272737474757676 -777778787879797A7B7B7C7D7D7E7E7F7F80808181828283838485858687878888898A8A8B8C8C8D -8D8E8E8E8F8F8F909091919293939494959596969798989999999A9A9B9B9B9B9C9C9C9C9C9D9D9D -9D9D9D9D9D9D9D9D9E9E9E9E9E9E9E9E -> -< -00000000000000000000000000000000000000000000000000000000000000000000000000000001 -01010101010101020202020202030303040404050506060607070808080909090A0A0A0B0B0C0C0D -0D0E0F0F1011121213131414151616171819191A1B1B1C1D1E1E1F202122232425262728292A2B2C -2D2E2E2F3031323435363738393A3B3D3E3F40414344454647494A4B4C4E4F505253555658595B5C -5E5F6162646567686A6B6D6F7072737577787A7B7D7F8082848688898B8D8F91939496989A9C9E9F -A1A3A5A6A7A9AAACAEB0B2B3B5B7B9BBBDBFC1C3C5C7C9CACBCDCED0D1D3D5D7D9DADCDEDFE1E2E4 -E5E7E8E9E9EBECEDEEF0F1F3F4F6F7F9 -> -< -FFFEFDFCFBFAF9F8F7F6F5F4F3F2F1F0EFEEEDECEBEAE9E8E7E6E5E4E3E2E1E0DFDEDDDCDBDAD9D8 -D7D6D5D4D3D2D1D0CFCECDCCCBCAC9C8C7C6C5C4C3C2C1C0BFBEBDBCBBBAB9B8B7B6B5B4B3B2B1B0 -AFAEADACABAAA9A8A7A6A5A4A3A2A1A09F9E9D9C9B9A999897969594939291908F8E8D8C8B8A8988 -87868584838281807F7E7D7C7B7A797877767574737271706F6E6D6C6B6A69686766656463626160 -5F5E5D5C5B5A595857565554535251504F4E4D4C4B4A494847464544434241403F3E3D3C3B3A3938 -37363534333231302F2E2D2C2B2A292827262524232221201F1E1D1C1B1A19181716151413121110 -0F0E0D0C0B0A09080706050403020100 -> -< -FFFEFDFCFBFAF9F8F7F6F5F4F3F2F1F0EFEEEDECEBEAE9E8E7E6E5E4E3E2E1E0DFDEDDDCDBDAD9D8 -D7D6D5D4D3D2D1D0CFCECDCCCBCAC9C8C7C6C5C4C3C2C1C0BFBEBDBCBBBAB9B8B7B6B5B4B3B2B1B0 -AFAEADACABAAA9A8A7A6A5A4A3A2A1A09F9E9D9C9B9A999897969594939291908F8E8D8C8B8A8988 -87868584838281807F7E7D7C7B7A797877767574737271706F6E6D6C6B6A69686766656463626160 -5F5E5D5C5B5A595857565554535251504F4E4D4C4B4A494847464544434241403F3E3D3C3B3A3938 -37363534333231302F2E2D2C2B2A292827262524232221201F1E1D1C1B1A19181716151413121110 -0F0E0D0C0B0A09080706050403020100 -> -< -FFFEFDFCFBFAF9F8F7F6F5F4F3F2F1F0EFEEEDECEBEAE9E8E7E6E5E4E3E2E1E0DFDEDDDCDBDAD9D8 -D7D6D5D4D3D2D1D0CFCECDCCCBCAC9C8C7C6C5C4C3C2C1C0BFBEBDBCBBBAB9B8B7B6B5B4B3B2B1B0 -AFAEADACABAAA9A8A7A6A5A4A3A2A1A09F9E9D9C9B9A999897969594939291908F8E8D8C8B8A8988 -87868584838281807F7E7D7C7B7A797877767574737271706F6E6D6C6B6A69686766656463626160 -5F5E5D5C5B5A595857565554535251504F4E4D4C4B4A494847464544434241403F3E3D3C3B3A3938 -37363534333231302F2E2D2C2B2A292827262524232221201F1E1D1C1B1A19181716151413121110 -0F0E0D0C0B0A09080706050403020100 -> -4 %_Br -[ -0.912474 0.787625 0.619837 0.97467 0 0 0 2 1 6 50 100 %_BS -%_0.912474 0.787625 0.619837 0.97467 0 0 0 2 1 6 50 100 Bs -0 0 0 0 1 1 1 2 1 6 50 0 %_BS -%_0 0 0 0 1 1 1 2 1 6 50 0 Bs -BD -%AI5_EndGradient -%AI5_End_NonPrinting-- -%AI5_Begin_NonPrinting -Np -%AI3_BeginPattern: (Jive) -(Jive) 47.5615 109.6396 155.9004 219.2813 -%_0 A -%_0 Xw -%_u -%_0 1 0 0 0 Xy -%_0 J 0 j 1 w 10 M []0 d %_0 XR -%_47.5615 219.2813 m -%_155.9004 219.2813 L -%_155.9004 109.6396 L -%_47.5615 109.6396 L -%_47.5615 219.2813 L -%_n -%_/ArtDictionary : -%_1 /Bool (AIPattern_Editor_Backing_Tile_Rect) , -%_; -%_ -%_u -%_*u -%_1 D -%_0 O -%_1 0.771237 0.226078 0.073854 0 0.258824 0.494118 Xa -%_135.0352 74.9453 m -%_135.0566 75.0645 135.1602 75.1504 135.2813 75.1523 c -%_148.1875 75.2871 160.0352 78.4199 169.2529 86.667 C -%_161.2227 81.1094 146.3105 79.1563 137.7256 83.0488 c -%_137.6152 83.0986 137.5566 83.2188 137.584 83.3369 c -%_137.6104 83.4551 137.7168 83.5371 137.8379 83.5332 c -%_148.5176 83.2441 157.1172 86.54 163.8223 92.498 C -%_156.9531 92.9199 151.248 97.2383 151.2656 102.3428 c -%_151.2656 102.4619 151.3496 102.5645 151.4668 102.5898 c -%_151.583 102.6152 151.7012 102.5547 151.75 102.4463 c -%_152.8711 99.957 156.498 98.666 160.333 99.5664 c -%_164.5127 100.5469 167.333 103.7559 166.6338 106.7314 c -%_166.1621 108.7461 164.1973 110.1348 161.6816 110.5186 c -%_161.5547 110.5371 161.4619 110.6484 161.4648 110.7764 c -%_161.4688 110.9043 161.5674 111.0098 161.6953 111.0215 c -%_162.7637 111.124 163.875 111.1279 165.0127 111.0195 c -%_171.5029 110.4023 176.5264 106.4238 176.9619 101.8418 C -%_181.6748 102.3887 185.8467 104.998 187.3408 108.6152 c -%_187.3857 108.7236 187.501 108.7871 187.6162 108.7695 c -%_187.7314 108.75 187.8193 108.6553 187.8291 108.5391 c -%_188.2061 103.7871 186.5713 100.7002 182.8584 97.6846 C -%_188.2432 99.7441 194.3027 99.8496 200.1133 97.1465 c -%_200.2188 97.0977 200.2773 96.9824 200.2559 96.8672 c -%_200.2324 96.752 200.1328 96.668 200.0156 96.6641 c -%_195.1367 96.4736 191.5996 94.9082 188.2861 91.5918 C -%_206.5391 96.7256 221.3711 85.3906 216.2383 68.5391 c -%_216.2031 68.4238 216.0918 68.3486 215.9707 68.3613 c -%_215.8496 68.373 215.7539 68.4688 215.7441 68.5898 c -%_214.8262 78.3037 208.041 84.7051 197.8828 85.666 C -%_203.2695 83.6055 208.8828 78.6895 209.4395 70.1318 c -%_209.4473 70.0098 209.3672 69.8984 209.248 69.8691 c -%_209.1289 69.8398 209.0059 69.8984 208.9551 70.0098 c -%_206.1563 76.1641 200.6582 79.2754 194.7949 79.8223 C -%_201.1289 77.2422 205.1914 71.2207 206.3652 63.4023 c -%_206.3848 63.2793 206.3105 63.1602 206.1914 63.123 c -%_206.0742 63.084 205.9453 63.1387 205.8887 63.248 c -%_202.0234 70.8311 193.7324 76.042 183.4424 72.0605 c -%_172.8252 67.9512 168.168 55.6738 167.1387 47.0195 c -%_167.124 46.8984 167.0234 46.8047 166.9004 46.7969 c -%_166.7783 46.7891 166.668 46.8711 166.6396 46.9922 c -%_162.9199 62.6797 170.2227 78.9414 183.2764 85.832 C -%_176.1807 83.8291 169.8369 79.5723 166.249 72.4775 C -%_157.9551 71.459 152.2451 68.6152 149.3916 63.2383 c -%_149.335 63.1309 149.2109 63.0781 149.0957 63.1133 c -%_148.9805 63.1465 148.9043 63.2578 148.9141 63.3789 c -%_149.0967 65.4883 149.8555 69.709 152.9883 71.6494 C -%_146.0234 71.6387 140.4824 72.543 135.1895 74.6621 c -%_135.0781 74.708 135.0127 74.8262 135.0352 74.9453 c -%_f -%_0 D -%_164.5215 21.4746 m -%_164.4229 21.541 164.293 21.5293 164.2061 21.4492 c -%_164.1201 21.3672 164.1016 21.2383 164.1602 21.1367 c -%_165.7803 18.3398 164.3008 14.3223 161.1094 14.3223 c -%_155.3887 14.3223 152.6387 25.0918 153.5137 34.916 C -%_155.6768 29.1602 157.5469 26.8613 160.8613 24.1211 c -%_160.9551 24.043 161.0898 24.043 161.1836 24.1191 c -%_161.2773 24.1973 161.3047 24.3281 161.2471 24.4355 c -%_156.3906 33.5156 155.3496 40.502 155.3496 48.5215 C -%_156.8125 42.5625 158.5449 39.1992 163.4766 34.1406 c -%_163.5625 34.0527 163.6992 34.0391 163.8018 34.1074 c -%_163.9033 34.1777 163.9404 34.3105 163.8887 34.4238 c -%_158.5908 46.0137 158.9951 58.8711 162.9414 68.6875 c -%_162.9805 68.7852 162.9561 68.8965 162.8789 68.9688 c -%_162.8018 69.0391 162.6895 69.0566 162.5938 69.0098 c -%_157.3887 66.459 154.3301 64.7832 149.8418 58.6211 C -%_151.1992 51.2227 150.0703 47.5723 146.6699 41.4258 C -%_150.6074 51.3438 148.5117 65.3203 138.4824 71.0176 c -%_138.373 71.0791 138.2344 71.0518 138.1582 70.9531 c -%_138.0801 70.8535 138.0869 70.7119 138.1738 70.6211 c -%_141.9551 66.666 144.7051 59.9863 142.3301 52.6934 C -%_143.8594 63.082 134.7344 71.8086 124.5508 71.8086 c -%_114.9512 71.8086 108.4004 64.2988 108.9414 56.8672 c -%_109.4785 49.502 114.3848 45.8984 118.6133 44.3691 c -%_118.7246 44.3301 118.8496 44.3711 118.9131 44.4707 c -%_118.9766 44.5723 118.9629 44.7012 118.8799 44.7871 c -%_113.2695 50.4785 112.502 61.2793 122.4629 64.5469 C -%_116.6035 59.4902 118.7734 47.7168 128.1523 46.8223 c -%_128.2695 46.8105 128.3789 46.8809 128.417 46.9922 c -%_128.4551 47.1035 128.4121 47.2266 128.3135 47.2891 c -%_126.3047 48.5664 124.6348 51.0605 124.6348 53.8633 c -%_124.6348 58.5371 128.0566 60.373 130.3105 60.373 c -%_133.7324 60.373 136.5703 57.1172 136.5703 52.1934 c -%_136.5703 46.3496 131.3105 41.5098 124.5508 40.7578 c -%_117.9248 40.0234 111.7686 42.9121 108.8008 47.2168 c -%_108.7314 47.3184 108.5996 47.3555 108.4873 47.3047 c -%_108.375 47.2539 108.3164 47.1289 108.3467 47.0098 c -%_111.3652 35.3066 125.1426 30.1328 135.2344 37.5039 C -%_128.6211 30.002 118.2285 29.8984 109.5127 37.5898 c -%_109.4219 37.6699 109.2871 37.6738 109.1904 37.5996 c -%_109.0938 37.5273 109.0635 37.3945 109.1172 37.2871 c -%_111.7842 31.8789 118.3701 25.4668 127.7227 26.4023 c -%_136.2793 27.2578 141.2441 35.416 142.2461 42.0938 C -%_142.8027 33.5723 140.8525 27.5566 133.4922 21.9473 c -%_133.3955 21.873 133.3652 21.7402 133.4199 21.6309 c -%_133.4746 21.5234 133.5996 21.4688 133.7168 21.502 c -%_140.502 23.4629 145.9473 26.9277 148.7656 34.0469 C -%_148.7656 27.8848 146.627 21.6738 141.2402 17.5352 c -%_141.1426 17.4609 141.1133 17.3301 141.168 17.2207 c -%_141.2227 17.1113 141.3467 17.0566 141.4639 17.0898 c -%_144.917 18.0742 147.6348 19.5781 149.6016 22.2754 C -%_150.9121 11.1758 156.123 4.58398 162.127 4.58398 c -%_166.252 4.58398 169.332 7.61719 169.332 12.4551 c -%_169.332 15.2852 167.8438 19.2578 164.5215 21.4746 c -%_f -%_263.748 113.0938 m -%_260.5859 116.998 254.209 118.4863 247.3164 117.082 C -%_247.8262 121.3828 246.9824 125.873 245.7051 128.5664 c -%_245.6523 128.6758 245.5313 128.7334 245.4141 128.7051 c -%_245.2969 128.6758 245.2168 128.5684 245.2207 128.4473 c -%_245.5957 119.6807 240.5977 112.6035 231.7715 109.5371 C -%_238.6777 114.293 240.6973 123.7305 237.4102 128.6035 c -%_237.3418 128.7021 237.2148 128.7412 237.1035 128.6953 c -%_236.9922 128.6504 236.9277 128.5332 236.9492 128.416 c -%_237.3223 126.3555 236.3438 123.7314 234.2363 121.6895 c -%_231.3301 118.875 227.3867 118.2363 225.4258 120.2598 c -%_223.4648 122.2852 224.2285 126.207 227.1328 129.0215 c -%_228.1934 130.0488 229.3926 130.7832 230.582 131.2061 c -%_230.6953 131.2461 230.7637 131.3594 230.748 131.4775 c -%_230.7344 131.5967 230.6387 131.6885 230.5195 131.6982 c -%_224.1309 132.2529 219.75 128.4463 217.0039 123.8203 c -%_214.209 119.1152 209.4336 115.4102 203.793 116.1504 c -%_203.6738 116.166 203.5605 116.0957 203.5195 115.9824 c -%_203.4805 115.8691 203.5254 115.7422 203.6289 115.6807 c -%_206.4258 113.9961 209.5 113.2969 213.4922 114.6289 C -%_207.6973 109.7197 199.4453 106.8867 191.6523 109.4014 c -%_191.543 109.4375 191.4238 109.3945 191.3613 109.2979 c -%_191.2988 109.2012 191.3105 109.0752 191.3867 108.9902 c -%_197.2949 102.4258 209.0762 102.2949 216.4961 107.6172 C -%_213.459 103.3008 209.4277 100.1328 202.2031 99.1387 c -%_202.0879 99.123 201.998 99.0313 201.9844 98.916 c -%_201.9727 98.7998 202.0391 98.6904 202.1484 98.6504 c -%_210.4395 95.5723 218.748 98.6953 225.5938 106.8652 C -%_222.6016 100.4883 217.6875 95.3809 210.8262 92.8535 c -%_210.7109 92.8115 210.6426 92.6934 210.6641 92.5742 c -%_210.6836 92.4531 210.7871 92.3643 210.9082 92.3613 c -%_214.8516 92.2803 218.3945 93.2188 223.1738 95.9316 C -%_219.666 90.2422 220.4336 80.293 225.543 73.6738 c -%_225.6133 73.582 225.7383 73.5498 225.8457 73.5957 c -%_225.9512 73.6426 226.0137 73.7549 225.9941 73.8691 c -%_224.8145 81.0703 227.293 89.1992 231.6035 93.5117 C -%_229.4512 85.8799 231.5977 78.9355 237.5 73.8672 c -%_237.5703 73.8066 237.6699 73.79 237.7559 73.8232 c -%_237.8438 73.8564 237.9043 73.9355 237.918 74.0273 c -%_239.1523 83.4453 249.6875 93.002 258.5195 93.8027 c -%_258.6445 93.8135 258.7422 93.9141 258.75 94.0381 c -%_258.7578 94.1621 258.6758 94.2754 258.5527 94.3027 c -%_254.2734 95.2715 249.8613 94.793 246.1641 93.2715 C -%_248.8242 96.2051 252.1035 98.3828 255.7188 99.5176 c -%_255.8359 99.5537 255.9082 99.668 255.8945 99.7891 c -%_255.8809 99.9102 255.7813 100.0039 255.6602 100.0127 c -%_251.1504 100.3242 246.7363 99.0068 242.9297 96.4746 C -%_247.291 103.0957 253.9102 108.0195 262.3574 109.9805 c -%_262.4785 110.0088 262.5605 110.1191 262.5547 110.2432 c -%_262.5469 110.3672 262.4512 110.4668 262.3281 110.4805 c -%_250.4102 111.7822 240.582 107.1621 234.1074 98.5625 C -%_235.7559 103.4629 240.4727 108.3184 247.0527 111.1816 c -%_252.8984 113.7266 258.9023 114.1279 263.4746 112.6914 c -%_263.5801 112.6582 263.6973 112.6982 263.7598 112.791 c -%_263.8223 112.8828 263.8184 113.0059 263.748 113.0938 c -%_f -%_210.8438 37.5215 m -%_215.6504 48.0078 215.3086 56.207 211.4375 66.5762 c -%_211.3926 66.6934 211.2715 66.7607 211.1484 66.7363 c -%_211.0254 66.7109 210.9395 66.5996 210.9453 66.4746 c -%_211.5664 53.8535 208.1191 44.8203 200.6465 38.668 C -%_208.8965 48.5195 205 68.2275 191.8242 68.2275 c -%_182.2393 68.2275 174.3086 60.252 172.3691 50.7031 c -%_172.3447 50.582 172.4111 50.459 172.5273 50.416 c -%_172.6426 50.3711 172.7734 50.416 172.8359 50.5215 c -%_175.6787 55.2832 180.2451 58.373 185.2939 58.373 c -%_193.4277 58.373 195.834 51.9063 195.834 47.375 c -%_195.834 41.1875 190.9082 36.0313 187.1279 36.0313 c -%_183.6904 36.0313 182.0869 38.8555 182.0869 40.959 c -%_182.0869 44.8574 185.085 48.125 188.4639 49.123 c -%_188.583 49.1582 188.6611 49.2773 188.6436 49.4023 c -%_188.624 49.5273 188.5186 49.6191 188.3936 49.6211 c -%_184.2861 49.6465 180.8154 47.7656 178.7627 44.0527 C -%_178.4932 46.9277 178.4902 48.7383 179.4033 51.7754 c -%_179.4385 51.8926 179.3848 52.0176 179.2773 52.0742 c -%_179.168 52.1309 179.0352 52.1016 178.9609 52.0059 c -%_171.6045 42.6133 175.125 26.3809 180.9404 19.6484 C -%_175.4082 23.6309 170.5234 32.2813 170.6006 44.041 c -%_170.6016 44.1641 170.5156 44.2676 170.3955 44.291 c -%_170.2754 44.3164 170.1563 44.25 170.1113 44.1367 c -%_166.0029 33.8848 168.1826 14.8887 179.3926 4.28516 C -%_176.5088 3.88867 173.5254 3.93945 170.2676 4.97852 c -%_170.1523 5.01367 170.0273 4.96484 169.9688 4.85938 c -%_169.9102 4.75195 169.9336 4.61914 170.0273 4.54102 c -%_174.1191 1.08594 179.8418 0 185.2939 0 C -%_180.5967 5.5 182.1572 16.5547 189.6494 16.5547 c -%_194.9961 16.5547 197.4238 8.25586 193.2949 3.77344 c -%_193.2168 3.6875 193.207 3.55859 193.2695 3.46289 c -%_193.334 3.36523 193.4551 3.32227 193.5664 3.36133 c -%_198.3457 5.01563 203.5117 9.15039 203.5117 14.377 c -%_203.5117 19.4199 198.6992 23.7715 191.7109 23.4277 C -%_200.5293 25.9336 209.7617 23.1602 214.5918 17.1758 c -%_214.666 17.082 214.7969 17.0547 214.9023 17.1074 c -%_215.0098 17.1621 215.0645 17.2832 215.0352 17.3984 c -%_212.2441 28.1152 203.0684 32.5977 191.5957 31.1055 C -%_200.877 34.8613 214.8457 31.5859 221.0195 23.7949 c -%_221.0918 23.7031 221.2188 23.6738 221.3262 23.7227 c -%_221.4316 23.7734 221.4902 23.8906 221.4668 24.0039 c -%_220.0957 30.6191 216.6035 35.5664 210.8438 37.5215 C -%_f -%_*U -%_*u -%_1 D -%_0.41001 0 0.011078 0 0.615686 0.862745 0.976471 Xa -%_0 0.4 0 0 0 Xy -%_237.2266 56.8086 m -%_237.2051 56.6895 237.1016 56.6016 236.9805 56.6016 c -%_224.0742 56.4648 212.2266 53.334 203.0098 45.0859 C -%_211.0391 50.6445 225.9512 52.5957 234.5371 48.7051 c -%_234.6465 48.6543 234.7051 48.5332 234.6777 48.416 c -%_234.6523 48.2988 234.5449 48.2168 234.4238 48.2188 c -%_223.7441 48.5098 215.1445 45.2129 208.4395 39.2559 C -%_215.3086 38.832 221.0137 34.5156 220.9961 29.4102 c -%_220.9961 29.291 220.9121 29.1875 220.7949 29.1621 c -%_220.6797 29.1387 220.5605 29.1973 220.5117 29.3066 c -%_219.3906 31.7949 215.7637 33.0879 211.9297 32.1875 c -%_207.75 31.2051 204.9297 27.998 205.6289 25.0215 c -%_206.0996 23.0078 208.0645 21.6191 210.5801 21.2344 c -%_210.707 21.2148 210.8008 21.1055 210.7969 20.9766 c -%_210.793 20.8496 210.6953 20.7441 210.5664 20.7305 c -%_209.498 20.6289 208.3867 20.625 207.25 20.7344 c -%_200.7598 21.3516 195.7363 25.3281 195.3008 29.9121 C -%_190.5889 29.3652 186.417 26.7539 184.9229 23.1387 c -%_184.8779 23.0293 184.7646 22.9668 184.6475 22.9844 c -%_184.5322 23.002 184.4443 23.0977 184.4346 23.2148 c -%_184.0576 27.9648 185.6924 31.0527 189.4053 34.0684 C -%_184.0205 32.0098 177.959 31.9043 172.1484 34.6055 c -%_172.043 34.6563 171.9844 34.7715 172.0059 34.8867 c -%_172.0293 35.002 172.1289 35.0859 172.2461 35.0898 c -%_177.125 35.2793 180.6631 36.8457 183.9795 40.1621 C -%_165.7227 35.0273 150.8906 46.3633 156.0234 63.2129 c -%_156.0586 63.3301 156.1699 63.4043 156.291 63.3926 c -%_156.4121 63.3809 156.5078 63.2852 156.5176 63.1641 c -%_157.4355 53.4492 164.2207 47.0469 174.3789 46.0879 C -%_168.9922 48.1465 163.3789 53.0625 162.8223 61.6211 c -%_162.8145 61.7441 162.8945 61.8535 163.0137 61.8848 c -%_163.1328 61.9141 163.2559 61.8535 163.3066 61.7422 c -%_166.1055 55.5879 171.6035 52.4785 177.4668 51.9297 C -%_171.1328 54.5117 167.0703 60.5332 165.8965 68.3516 c -%_165.877 68.4746 165.9512 68.5918 166.0703 68.6309 c -%_166.1875 68.668 166.3164 68.6152 166.373 68.5039 c -%_170.2383 60.9219 178.5293 55.7109 188.8213 59.6934 c -%_199.4375 63.8027 204.0938 76.0781 205.123 84.7324 c -%_205.1387 84.8555 205.2383 84.9492 205.3613 84.957 c -%_205.4844 84.9629 205.5938 84.8809 205.623 84.7617 c -%_209.3418 69.0723 202.0391 52.8125 188.9873 45.9219 C -%_196.082 47.9238 202.4258 52.1816 206.0137 59.2754 C -%_214.3066 60.293 220.0176 63.1387 222.8711 68.5156 c -%_222.9277 68.6211 223.0508 68.6738 223.166 68.6406 c -%_223.2813 68.6055 223.3574 68.4941 223.3477 68.375 c -%_223.166 66.2656 222.4063 62.0449 219.2734 60.1035 C -%_226.2383 60.1152 231.7793 59.2109 237.0723 57.0898 c -%_237.1836 57.0449 237.25 56.9277 237.2266 56.8086 c -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_0 D -%_207.7402 110.2773 m -%_207.8398 110.2129 207.9688 110.2227 208.0566 110.3047 c -%_208.1426 110.3848 208.1602 110.5137 208.1016 110.6172 c -%_206.4824 113.4141 207.9609 117.4297 211.1523 117.4297 c -%_216.873 117.4297 219.623 106.6602 218.748 96.8379 C -%_216.5859 102.5918 214.7148 104.8926 211.4004 107.6328 c -%_211.3066 107.709 211.1719 107.7109 211.0781 107.6328 c -%_210.9844 107.5566 210.957 107.4238 211.0156 107.3164 c -%_215.8711 98.2383 216.9121 91.252 216.9121 83.2324 C -%_215.4492 89.1895 213.7168 92.5527 208.7852 97.6133 c -%_208.6992 97.7012 208.5625 97.7148 208.4609 97.6445 c -%_208.3594 97.5742 208.3223 97.4414 208.373 97.3301 c -%_213.6719 85.7383 213.2676 72.8828 209.3203 63.0664 c -%_209.2813 62.9688 209.3066 62.8574 209.3828 62.7852 c -%_209.4609 62.7129 209.5723 62.6973 209.668 62.7422 c -%_214.873 65.293 217.9316 66.9688 222.4199 73.1328 C -%_221.0625 80.5313 222.1914 84.1797 225.5918 90.3262 C -%_221.6543 80.4102 223.75 66.4336 233.7793 60.7363 c -%_233.8887 60.6738 234.0273 60.7012 234.1035 60.8008 c -%_234.1816 60.9004 234.1758 61.041 234.0879 61.1328 c -%_230.3066 65.0879 227.5566 71.7676 229.9316 79.0586 C -%_228.4023 68.6699 237.5273 59.9453 247.7109 59.9453 c -%_257.3105 59.9453 263.8613 67.4531 263.3203 74.8848 c -%_262.7832 82.25 257.877 85.8555 253.6484 87.3828 c -%_253.5371 87.4238 253.4121 87.3809 253.3496 87.2813 c -%_253.2852 87.1816 253.2988 87.0508 253.3828 86.9668 c -%_258.9922 81.2734 259.7598 70.4746 249.7988 67.207 C -%_255.6582 72.2637 253.4883 84.0352 244.1094 84.9316 c -%_243.9922 84.9414 243.8828 84.8711 243.8457 84.7598 c -%_243.8066 84.6504 243.8496 84.5273 243.9492 84.4648 c -%_245.957 83.1855 247.627 80.6934 247.627 77.8906 c -%_247.627 73.2168 244.2051 71.3789 241.9512 71.3789 c -%_238.5293 71.3789 235.6914 74.6348 235.6914 79.5605 c -%_235.6914 85.4023 240.9512 90.2441 247.7109 90.9941 c -%_254.3379 91.7305 260.4941 88.8398 263.4609 84.5352 c -%_263.5313 84.4336 263.6621 84.3984 263.7754 84.4492 c -%_263.8867 84.5 263.9453 84.623 263.916 84.7422 c -%_260.8965 96.4453 247.1191 101.6191 237.0273 94.25 C -%_243.6406 101.75 254.0332 101.8555 262.75 94.1641 c -%_262.8398 94.084 262.9746 94.0781 263.0723 94.1523 c -%_263.168 94.2266 263.1992 94.3574 263.1445 94.4668 c -%_260.4785 99.873 253.8926 106.2852 244.5391 105.3516 c -%_235.9824 104.4961 231.0176 96.3359 230.0156 89.6602 C -%_229.459 98.1816 231.4102 104.1953 238.7695 109.8047 c -%_238.8672 109.8789 238.8965 110.0117 238.8418 110.1211 c -%_238.7871 110.2305 238.6621 110.2852 238.5449 110.25 c -%_231.7598 108.291 226.3145 104.8262 223.4961 97.707 C -%_223.4961 103.8672 225.6348 110.0781 231.0215 114.2168 c -%_231.1191 114.291 231.1484 114.4238 231.0938 114.5332 c -%_231.0391 114.6406 230.916 114.6953 230.7988 114.6621 c -%_227.3457 113.6797 224.627 112.1738 222.6602 109.4785 C -%_221.3496 120.5781 216.1387 127.168 210.1348 127.168 c -%_206.0098 127.168 202.9297 124.1348 202.9297 119.2988 c -%_202.9297 116.4688 204.418 112.4961 207.7402 110.2773 c -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_108.5137 18.6602 m -%_111.6758 14.7559 118.0527 13.2676 124.9453 14.6719 C -%_124.4355 10.3691 125.2793 5.88086 126.5566 3.18555 c -%_126.6094 3.07813 126.7305 3.01953 126.8477 3.04883 c -%_126.9648 3.07813 127.0449 3.18555 127.041 3.30664 c -%_126.666 12.0723 131.6641 19.1484 140.4902 22.2148 C -%_133.584 17.459 131.5645 8.02148 134.8516 3.15039 c -%_134.9199 3.05078 135.0469 3.01172 135.1582 3.05664 c -%_135.2695 3.10156 135.334 3.21875 135.3125 3.33789 c -%_134.9395 5.39844 135.918 8.02148 138.0254 10.0625 c -%_140.9316 12.877 144.875 13.5156 146.8359 11.4922 c -%_148.7969 9.4668 148.0332 5.54492 145.1289 2.73242 c -%_144.0684 1.70508 142.8691 0.96875 141.6797 0.546875 c -%_141.5664 0.505859 141.498 0.392578 141.5137 0.275391 c -%_141.5273 0.15625 141.623 0.064453 141.7422 0.054688 c -%_148.1309 -0.5 152.5117 3.30664 155.2578 7.93164 c -%_158.0527 12.6367 162.8281 16.3438 168.4688 15.6035 c -%_168.5879 15.5879 168.7012 15.6582 168.7422 15.7715 c -%_168.7813 15.8848 168.7363 16.0098 168.6328 16.0723 c -%_165.8359 17.7559 162.7617 18.4551 158.7695 17.125 C -%_164.5645 22.0332 172.8164 24.8652 180.6104 22.3516 c -%_180.7197 22.3164 180.8389 22.3594 180.9014 22.4551 c -%_180.9639 22.5508 180.9541 22.6777 180.876 22.7637 c -%_174.9668 29.3281 163.1855 29.459 155.7656 24.1348 C -%_158.8027 28.4512 162.834 31.6211 170.0586 32.6133 c -%_170.1738 32.6289 170.2637 32.7227 170.2773 32.8379 c -%_170.2891 32.9531 170.2227 33.0625 170.1133 33.1035 c -%_161.8223 36.1797 153.5137 33.0586 146.668 24.8867 C -%_149.6602 31.2656 154.5742 36.373 161.4355 38.9004 c -%_161.5508 38.9414 161.6191 39.0586 161.5977 39.1797 c -%_161.5781 39.3008 161.4746 39.3887 161.3535 39.3906 c -%_157.4102 39.4727 153.8672 38.5332 149.0879 35.8203 C -%_152.5957 41.5117 151.8281 51.459 146.7188 58.0801 c -%_146.6484 58.1719 146.5234 58.2031 146.416 58.1582 c -%_146.3105 58.1113 146.248 57.998 146.2676 57.8828 c -%_147.4473 50.6836 144.9688 42.5547 140.6582 38.2422 C -%_142.8105 45.873 140.6641 52.8184 134.7617 57.8848 c -%_134.6914 57.9453 134.5918 57.9629 134.5059 57.9297 c -%_134.418 57.8965 134.3574 57.8184 134.3438 57.7266 c -%_133.1094 48.3086 122.5742 38.752 113.7422 37.9512 c -%_113.6172 37.9395 113.5195 37.8398 113.5117 37.7148 c -%_113.5039 37.5898 113.5859 37.4785 113.709 37.4512 c -%_117.9883 36.4824 122.4004 36.9609 126.0977 38.4805 C -%_123.4375 35.5488 120.1582 33.3711 116.543 32.2363 c -%_116.4258 32.1992 116.3535 32.0859 116.3672 31.9648 c -%_116.3809 31.8438 116.4805 31.748 116.6016 31.7402 c -%_121.1113 31.4297 125.5254 32.7461 129.332 35.2793 C -%_124.9707 28.6582 118.3516 23.7344 109.9043 21.7715 c -%_109.7832 21.7441 109.7012 21.6328 109.707 21.5098 c -%_109.7148 21.3867 109.8105 21.2871 109.9336 21.2734 c -%_121.8516 19.9707 131.6797 24.5918 138.1543 33.1914 C -%_136.5059 28.2891 131.7891 23.4355 125.209 20.5723 c -%_119.3633 18.0273 113.3594 17.625 108.7871 19.0625 c -%_108.6816 19.0957 108.5645 19.0547 108.502 18.9629 c -%_108.4395 18.8691 108.4434 18.7461 108.5137 18.6602 c -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_161.418 94.2324 m -%_156.6113 83.7461 156.9531 75.5469 160.8242 65.1777 c -%_160.8691 65.0605 160.9902 64.9922 161.1133 65.0176 c -%_161.2363 65.043 161.3223 65.1543 161.3164 65.2773 c -%_160.6953 77.9004 164.1426 86.9316 171.6152 93.0859 C -%_163.3652 83.2324 167.2617 63.5254 180.4385 63.5254 c -%_190.0244 63.5254 197.9531 71.502 199.8926 81.0508 c -%_199.918 81.1719 199.8516 81.293 199.7344 81.3379 c -%_199.6191 81.3828 199.4883 81.3379 199.4258 81.2305 c -%_196.584 76.4688 192.0176 73.3789 186.9697 73.3789 c -%_178.834 73.3789 176.4277 79.8457 176.4277 84.3789 c -%_176.4277 90.5645 181.3545 95.7207 185.1357 95.7207 c -%_188.5732 95.7207 190.1768 92.8984 190.1768 90.7949 c -%_190.1768 86.8965 187.1787 83.6289 183.8018 82.6309 c -%_183.6807 82.5938 183.6045 82.4766 183.6221 82.3516 c -%_183.6396 82.2266 183.7451 82.1328 183.8721 82.1328 c -%_187.9775 82.1074 191.4473 83.9863 193.5 87.7012 C -%_193.7695 84.8262 193.7715 83.0156 192.8594 79.9766 c -%_192.8242 79.8594 192.877 79.7344 192.9844 79.6777 c -%_193.0938 79.623 193.2266 79.6504 193.3008 79.748 c -%_200.6582 89.1406 197.1367 105.3711 191.3223 112.1055 C -%_196.8535 108.123 201.7383 99.4707 201.6621 87.7109 c -%_201.6602 87.5898 201.7461 87.4844 201.8672 87.4609 c -%_201.9863 87.4375 202.1055 87.502 202.1504 87.6152 c -%_206.2598 97.8691 204.0801 116.8633 192.8691 127.4668 C -%_195.7539 127.8652 198.7363 127.8145 201.9941 126.7754 c -%_202.1094 126.7383 202.2344 126.7891 202.293 126.8945 c -%_202.3516 127 202.3281 127.1328 202.2344 127.2109 c -%_198.1426 130.666 192.4199 131.752 186.9697 131.752 C -%_191.666 126.252 190.1064 115.1992 182.6162 115.1992 c -%_177.2656 115.1992 174.8379 123.498 178.9668 127.9805 c -%_179.0449 128.0664 179.0547 128.1934 178.9922 128.291 c -%_178.9277 128.3887 178.8066 128.4297 178.6953 128.3926 c -%_173.916 126.7363 168.75 122.6035 168.75 117.375 c -%_168.75 112.334 173.5625 107.9805 180.5537 108.3242 C -%_171.7324 105.8203 162.5 108.5918 157.6699 114.5781 c -%_157.5957 114.6699 157.4648 114.6992 157.3594 114.6445 c -%_157.252 114.5918 157.1973 114.4707 157.2266 114.3535 c -%_160.0176 103.6387 169.1934 99.1543 180.667 100.6484 C -%_171.3848 96.8906 157.416 100.166 151.2422 107.957 c -%_151.1699 108.0488 151.043 108.0801 150.9355 108.0293 c -%_150.8301 107.9805 150.7715 107.8633 150.7949 107.748 c -%_152.166 101.1328 155.6582 96.1875 161.418 94.2324 C -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_*U -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_U -%_/ArtDictionary : -%_1 /Bool (AIPattern_Is_Main_Copy_of_EditGroup) , -%_1 /Bool (AIPattern_Is_Repeated_Art) , -%_; -%_ -%_9 () XW -%_u -%_*u -%_1 D -%_1 0.771237 0.226078 0.073854 0 0.258824 0.494118 Xa -%_0 1 0 0 0 Xy -%_26.6963 74.9453 m -%_26.7178 75.0645 26.8213 75.1504 26.9424 75.1523 c -%_39.8486 75.2871 51.6963 78.4199 60.9141 86.667 C -%_52.8838 81.1094 37.9717 79.1563 29.3867 83.0488 c -%_29.2764 83.0986 29.2178 83.2188 29.2451 83.3369 c -%_29.2715 83.4551 29.3779 83.5371 29.499 83.5332 c -%_40.1787 83.2441 48.7783 86.54 55.4834 92.498 C -%_48.6143 92.9199 42.9092 97.2383 42.9268 102.3428 c -%_42.9268 102.4619 43.0107 102.5645 43.1279 102.5898 c -%_43.2441 102.6152 43.3623 102.5547 43.4111 102.4463 c -%_44.5322 99.957 48.1592 98.666 51.9941 99.5664 c -%_56.1738 100.5469 58.9941 103.7559 58.2949 106.7314 c -%_57.8232 108.7461 55.8584 110.1348 53.3428 110.5186 c -%_53.2158 110.5371 53.123 110.6484 53.126 110.7764 c -%_53.1299 110.9043 53.2285 111.0098 53.3564 111.0215 c -%_54.4248 111.124 55.5361 111.1279 56.6738 111.0195 c -%_63.1641 110.4023 68.1875 106.4238 68.623 101.8418 C -%_73.3359 102.3887 77.5078 104.998 79.002 108.6152 c -%_79.0469 108.7236 79.1621 108.7871 79.2773 108.7695 c -%_79.3926 108.75 79.4805 108.6553 79.4902 108.5391 c -%_79.8672 103.7871 78.2324 100.7002 74.5195 97.6846 C -%_79.9043 99.7441 85.9648 99.8496 91.7754 97.1465 c -%_91.8809 97.0977 91.9395 96.9824 91.918 96.8672 c -%_91.8945 96.752 91.7949 96.668 91.6777 96.6641 c -%_86.7988 96.4736 83.2617 94.9082 79.9473 91.5918 C -%_98.2012 96.7256 113.0332 85.3906 107.9004 68.5391 c -%_107.8652 68.4238 107.7539 68.3486 107.6328 68.3613 c -%_107.5117 68.373 107.416 68.4688 107.4063 68.5898 c -%_106.4883 78.3037 99.7031 84.7051 89.5449 85.666 C -%_94.9316 83.6055 100.5449 78.6895 101.1016 70.1318 c -%_101.1094 70.0098 101.0293 69.8984 100.9102 69.8691 c -%_100.791 69.8398 100.668 69.8984 100.6172 70.0098 c -%_97.8184 76.1641 92.3203 79.2754 86.457 79.8223 C -%_92.791 77.2422 96.8535 71.2207 98.0273 63.4023 c -%_98.0469 63.2793 97.9727 63.1602 97.8535 63.123 c -%_97.7363 63.084 97.6074 63.1387 97.5508 63.248 c -%_93.6855 70.8311 85.3945 76.042 75.1035 72.0605 c -%_64.4863 67.9512 59.8291 55.6738 58.7998 47.0195 c -%_58.7852 46.8984 58.6846 46.8047 58.5615 46.7969 c -%_58.4395 46.7891 58.3291 46.8711 58.3008 46.9922 c -%_54.5811 62.6797 61.8838 78.9414 74.9375 85.832 C -%_67.8418 83.8291 61.498 79.5723 57.9102 72.4775 C -%_49.6162 71.459 43.9063 68.6152 41.0527 63.2383 c -%_40.9961 63.1309 40.8721 63.0781 40.7568 63.1133 c -%_40.6416 63.1465 40.5654 63.2578 40.5752 63.3789 c -%_40.7578 65.4883 41.5166 69.709 44.6494 71.6494 C -%_37.6846 71.6387 32.1436 72.543 26.8506 74.6621 c -%_26.7393 74.708 26.6738 74.8262 26.6963 74.9453 c -%_f -%_0 D -%_56.1826 21.4746 m -%_56.084 21.541 55.9541 21.5293 55.8672 21.4492 c -%_55.7813 21.3672 55.7627 21.2383 55.8213 21.1367 c -%_57.4414 18.3398 55.9619 14.3223 52.7705 14.3223 c -%_47.0498 14.3223 44.2998 25.0918 45.1748 34.916 C -%_47.3379 29.1602 49.208 26.8613 52.5225 24.1211 c -%_52.6162 24.043 52.751 24.043 52.8447 24.1191 c -%_52.9385 24.1973 52.9658 24.3281 52.9082 24.4355 c -%_48.0518 33.5156 47.0107 40.502 47.0107 48.5215 C -%_48.4736 42.5625 50.2061 39.1992 55.1377 34.1406 c -%_55.2236 34.0527 55.3604 34.0391 55.4629 34.1074 c -%_55.5645 34.1777 55.6016 34.3105 55.5498 34.4238 c -%_50.252 46.0137 50.6563 58.8711 54.6025 68.6875 c -%_54.6416 68.7852 54.6172 68.8965 54.54 68.9688 c -%_54.4629 69.0391 54.3506 69.0566 54.2549 69.0098 c -%_49.0498 66.459 45.9912 64.7832 41.5029 58.6211 C -%_42.8604 51.2227 41.7314 47.5723 38.3311 41.4258 C -%_42.2686 51.3438 40.1729 65.3203 30.1436 71.0176 c -%_30.0342 71.0791 29.8955 71.0518 29.8193 70.9531 c -%_29.7412 70.8535 29.748 70.7119 29.835 70.6211 c -%_33.6162 66.666 36.3662 59.9863 33.9912 52.6934 C -%_35.5205 63.082 26.3955 71.8086 16.2119 71.8086 c -%_6.6123 71.8086 0.061523 64.2988 0.602539 56.8672 c -%_1.13965 49.502 6.0459 45.8984 10.2744 44.3691 c -%_10.3857 44.3301 10.5107 44.3711 10.5742 44.4707 c -%_10.6377 44.5723 10.624 44.7012 10.541 44.7871 c -%_4.93066 50.4785 4.16309 61.2793 14.124 64.5469 C -%_8.26465 59.4902 10.4346 47.7168 19.8135 46.8223 c -%_19.9307 46.8105 20.04 46.8809 20.0781 46.9922 c -%_20.1162 47.1035 20.0732 47.2266 19.9746 47.2891 c -%_17.9658 48.5664 16.2959 51.0605 16.2959 53.8633 c -%_16.2959 58.5371 19.7178 60.373 21.9717 60.373 c -%_25.3936 60.373 28.2314 57.1172 28.2314 52.1934 c -%_28.2314 46.3496 22.9717 41.5098 16.2119 40.7578 c -%_9.58594 40.0234 3.42969 42.9121 0.461914 47.2168 c -%_0.392578 47.3184 0.260742 47.3555 0.148438 47.3047 c -%_0.036133 47.2539 -0.022461 47.1289 0.007813 47.0098 c -%_3.02637 35.3066 16.8037 30.1328 26.8955 37.5039 C -%_20.2822 30.002 9.88965 29.8984 1.17383 37.5898 c -%_1.08301 37.6699 0.948242 37.6738 0.851563 37.5996 c -%_0.754883 37.5273 0.724609 37.3945 0.77832 37.2871 c -%_3.44531 31.8789 10.0313 25.4668 19.3838 26.4023 c -%_27.9404 27.2578 32.9053 35.416 33.9072 42.0938 C -%_34.4639 33.5723 32.5137 27.5566 25.1533 21.9473 c -%_25.0566 21.873 25.0264 21.7402 25.0811 21.6309 c -%_25.1357 21.5234 25.2607 21.4688 25.3779 21.502 c -%_32.1631 23.4629 37.6084 26.9277 40.4268 34.0469 C -%_40.4268 27.8848 38.2881 21.6738 32.9014 17.5352 c -%_32.8037 17.4609 32.7744 17.3301 32.8291 17.2207 c -%_32.8838 17.1113 33.0078 17.0566 33.125 17.0898 c -%_36.5781 18.0742 39.2959 19.5781 41.2627 22.2754 C -%_42.5732 11.1758 47.7842 4.58398 53.7881 4.58398 c -%_57.9131 4.58398 60.9932 7.61719 60.9932 12.4551 c -%_60.9932 15.2852 59.5049 19.2578 56.1826 21.4746 c -%_f -%_155.4102 113.0938 m -%_152.248 116.998 145.8711 118.4863 138.9785 117.082 C -%_139.4883 121.3828 138.6445 125.873 137.3672 128.5664 c -%_137.3145 128.6758 137.1934 128.7334 137.0762 128.7051 c -%_136.959 128.6758 136.8789 128.5684 136.8828 128.4473 c -%_137.2578 119.6807 132.2598 112.6035 123.4336 109.5371 C -%_130.3398 114.293 132.3594 123.7305 129.0723 128.6035 c -%_129.0039 128.7021 128.877 128.7412 128.7656 128.6953 c -%_128.6543 128.6504 128.5898 128.5332 128.6113 128.416 c -%_128.9844 126.3555 128.0059 123.7314 125.8984 121.6895 c -%_122.9922 118.875 119.0488 118.2363 117.0879 120.2598 c -%_115.127 122.2852 115.8906 126.207 118.7949 129.0215 c -%_119.8555 130.0488 121.0547 130.7832 122.2441 131.2061 c -%_122.3574 131.2461 122.4258 131.3594 122.4102 131.4775 c -%_122.3965 131.5967 122.3008 131.6885 122.1816 131.6982 c -%_115.793 132.2529 111.4121 128.4463 108.666 123.8203 c -%_105.8711 119.1152 101.0957 115.4102 95.4551 116.1504 c -%_95.3359 116.166 95.2227 116.0957 95.1816 115.9824 c -%_95.1426 115.8691 95.1875 115.7422 95.291 115.6807 c -%_98.0879 113.9961 101.1621 113.2969 105.1543 114.6289 C -%_99.3594 109.7197 91.1074 106.8867 83.3145 109.4014 c -%_83.2051 109.4375 83.0859 109.3945 83.0234 109.2979 c -%_82.9609 109.2012 82.9727 109.0752 83.0488 108.9902 c -%_88.957 102.4258 100.7383 102.2949 108.1582 107.6172 C -%_105.1211 103.3008 101.0898 100.1328 93.8652 99.1387 c -%_93.75 99.123 93.6602 99.0313 93.6465 98.916 c -%_93.6348 98.7998 93.7012 98.6904 93.8105 98.6504 c -%_102.1016 95.5723 110.4102 98.6953 117.2559 106.8652 C -%_114.2637 100.4883 109.3496 95.3809 102.4883 92.8535 c -%_102.373 92.8115 102.3047 92.6934 102.3262 92.5742 c -%_102.3457 92.4531 102.4492 92.3643 102.5703 92.3613 c -%_106.5137 92.2803 110.0566 93.2188 114.8359 95.9316 C -%_111.3281 90.2422 112.0957 80.293 117.2051 73.6738 c -%_117.2754 73.582 117.4004 73.5498 117.5078 73.5957 c -%_117.6133 73.6426 117.6758 73.7549 117.6563 73.8691 c -%_116.4766 81.0703 118.9551 89.1992 123.2656 93.5117 C -%_121.1133 85.8799 123.2598 78.9355 129.1621 73.8672 c -%_129.2324 73.8066 129.332 73.79 129.418 73.8232 c -%_129.5059 73.8564 129.5664 73.9355 129.5801 74.0273 c -%_130.8145 83.4453 141.3496 93.002 150.1816 93.8027 c -%_150.3066 93.8135 150.4043 93.9141 150.4121 94.0381 c -%_150.4199 94.1621 150.3379 94.2754 150.2148 94.3027 c -%_145.9355 95.2715 141.5234 94.793 137.8262 93.2715 C -%_140.4863 96.2051 143.7656 98.3828 147.3809 99.5176 c -%_147.498 99.5537 147.5703 99.668 147.5566 99.7891 c -%_147.543 99.9102 147.4434 100.0039 147.3223 100.0127 c -%_142.8125 100.3242 138.3984 99.0068 134.5918 96.4746 C -%_138.9531 103.0957 145.5723 108.0195 154.0195 109.9805 c -%_154.1406 110.0088 154.2227 110.1191 154.2168 110.2432 c -%_154.209 110.3672 154.1133 110.4668 153.9902 110.4805 c -%_142.0723 111.7822 132.2441 107.1621 125.7695 98.5625 C -%_127.418 103.4629 132.1348 108.3184 138.7148 111.1816 c -%_144.5605 113.7266 150.5645 114.1279 155.1367 112.6914 c -%_155.2422 112.6582 155.3594 112.6982 155.4219 112.791 c -%_155.4844 112.8828 155.4805 113.0059 155.4102 113.0938 c -%_f -%_102.5059 37.5215 m -%_107.3125 48.0078 106.9707 56.207 103.0996 66.5762 c -%_103.0547 66.6934 102.9336 66.7607 102.8105 66.7363 c -%_102.6875 66.7109 102.6016 66.5996 102.6074 66.4746 c -%_103.2285 53.8535 99.7813 44.8203 92.3086 38.668 C -%_100.5586 48.5195 96.6621 68.2275 83.4863 68.2275 c -%_73.9004 68.2275 65.9697 60.252 64.0303 50.7031 c -%_64.0059 50.582 64.0723 50.459 64.1885 50.416 c -%_64.3037 50.3711 64.4346 50.416 64.4971 50.5215 c -%_67.3398 55.2832 71.9063 58.373 76.9551 58.373 c -%_85.0898 58.373 87.4961 51.9063 87.4961 47.375 c -%_87.4961 41.1875 82.5703 36.0313 78.7891 36.0313 c -%_75.3516 36.0313 73.748 38.8555 73.748 40.959 c -%_73.748 44.8574 76.7461 48.125 80.125 49.123 c -%_80.2441 49.1582 80.3223 49.2773 80.3047 49.4023 c -%_80.2852 49.5273 80.1797 49.6191 80.0547 49.6211 c -%_75.9473 49.6465 72.4766 47.7656 70.4238 44.0527 C -%_70.1543 46.9277 70.1514 48.7383 71.0645 51.7754 c -%_71.0996 51.8926 71.0459 52.0176 70.9385 52.0742 c -%_70.8291 52.1309 70.6963 52.1016 70.6221 52.0059 c -%_63.2656 42.6133 66.7861 26.3809 72.6016 19.6484 C -%_67.0693 23.6309 62.1846 32.2813 62.2617 44.041 c -%_62.2627 44.1641 62.1768 44.2676 62.0566 44.291 c -%_61.9365 44.3164 61.8174 44.25 61.7725 44.1367 c -%_57.6641 33.8848 59.8438 14.8887 71.0537 4.28516 C -%_68.1699 3.88867 65.1865 3.93945 61.9287 4.97852 c -%_61.8135 5.01367 61.6885 4.96484 61.6299 4.85938 c -%_61.5713 4.75195 61.5947 4.61914 61.6885 4.54102 c -%_65.7803 1.08594 71.5029 0 76.9551 0 C -%_72.2578 5.5 73.8184 16.5547 81.3105 16.5547 c -%_86.6582 16.5547 89.0859 8.25586 84.957 3.77344 c -%_84.8789 3.6875 84.8691 3.55859 84.9316 3.46289 c -%_84.9961 3.36523 85.1172 3.32227 85.2285 3.36133 c -%_90.0078 5.01563 95.1738 9.15039 95.1738 14.377 c -%_95.1738 19.4199 90.3613 23.7715 83.373 23.4277 C -%_92.1914 25.9336 101.4238 23.1602 106.2539 17.1758 c -%_106.3281 17.082 106.459 17.0547 106.5645 17.1074 c -%_106.6719 17.1621 106.7266 17.2832 106.6973 17.3984 c -%_103.9063 28.1152 94.7305 32.5977 83.2578 31.1055 C -%_92.5391 34.8613 106.5078 31.5859 112.6816 23.7949 c -%_112.7539 23.7031 112.8809 23.6738 112.9883 23.7227 c -%_113.0938 23.7734 113.1523 23.8906 113.1289 24.0039 c -%_111.7578 30.6191 108.2656 35.5664 102.5059 37.5215 C -%_f -%_*U -%_*u -%_1 D -%_0.41001 0 0.011078 0 0.615686 0.862745 0.976471 Xa -%_0 0.4 0 0 0 Xy -%_128.8887 56.8086 m -%_128.8672 56.6895 128.7637 56.6016 128.6426 56.6016 c -%_115.7363 56.4648 103.8887 53.334 94.6719 45.0859 C -%_102.7012 50.6445 117.6133 52.5957 126.1992 48.7051 c -%_126.3086 48.6543 126.3672 48.5332 126.3398 48.416 c -%_126.3145 48.2988 126.207 48.2168 126.0859 48.2188 c -%_115.4063 48.5098 106.8066 45.2129 100.1016 39.2559 C -%_106.9707 38.832 112.6758 34.5156 112.6582 29.4102 c -%_112.6582 29.291 112.5742 29.1875 112.457 29.1621 c -%_112.3418 29.1387 112.2227 29.1973 112.1738 29.3066 c -%_111.0527 31.7949 107.4258 33.0879 103.5918 32.1875 c -%_99.4121 31.2051 96.5918 27.998 97.291 25.0215 c -%_97.7617 23.0078 99.7266 21.6191 102.2422 21.2344 c -%_102.3691 21.2148 102.4629 21.1055 102.459 20.9766 c -%_102.4551 20.8496 102.3574 20.7441 102.2285 20.7305 c -%_101.1602 20.6289 100.0488 20.625 98.9121 20.7344 c -%_92.4219 21.3516 87.3984 25.3281 86.9629 29.9121 C -%_82.25 29.3652 78.0781 26.7539 76.584 23.1387 c -%_76.5391 23.0293 76.4258 22.9668 76.3086 22.9844 c -%_76.1934 23.002 76.1055 23.0977 76.0957 23.2148 c -%_75.7188 27.9648 77.3535 31.0527 81.0664 34.0684 C -%_75.6816 32.0098 69.6201 31.9043 63.8096 34.6055 c -%_63.7041 34.6563 63.6455 34.7715 63.667 34.8867 c -%_63.6904 35.002 63.79 35.0859 63.9072 35.0898 c -%_68.7861 35.2793 72.3242 36.8457 75.6406 40.1621 C -%_57.3838 35.0273 42.5518 46.3633 47.6846 63.2129 c -%_47.7197 63.3301 47.8311 63.4043 47.9521 63.3926 c -%_48.0732 63.3809 48.1689 63.2852 48.1787 63.1641 c -%_49.0967 53.4492 55.8818 47.0469 66.04 46.0879 C -%_60.6533 48.1465 55.04 53.0625 54.4834 61.6211 c -%_54.4756 61.7441 54.5557 61.8535 54.6748 61.8848 c -%_54.7939 61.9141 54.917 61.8535 54.9678 61.7422 c -%_57.7666 55.5879 63.2646 52.4785 69.1279 51.9297 C -%_62.7939 54.5117 58.7314 60.5332 57.5576 68.3516 c -%_57.5381 68.4746 57.6123 68.5918 57.7314 68.6309 c -%_57.8486 68.668 57.9775 68.6152 58.0342 68.5039 c -%_61.8994 60.9219 70.1904 55.7109 80.4824 59.6934 c -%_91.0996 63.8027 95.7559 76.0781 96.7852 84.7324 c -%_96.8008 84.8555 96.9004 84.9492 97.0234 84.957 c -%_97.1465 84.9629 97.2559 84.8809 97.2852 84.7617 c -%_101.0039 69.0723 93.7012 52.8125 80.6484 45.9219 C -%_87.7441 47.9238 94.0879 52.1816 97.6758 59.2754 C -%_105.9688 60.293 111.6797 63.1387 114.5332 68.5156 c -%_114.5898 68.6211 114.7129 68.6738 114.8281 68.6406 c -%_114.9434 68.6055 115.0195 68.4941 115.0098 68.375 c -%_114.8281 66.2656 114.0684 62.0449 110.9355 60.1035 C -%_117.9004 60.1152 123.4414 59.2109 128.7344 57.0898 c -%_128.8457 57.0449 128.9121 56.9277 128.8887 56.8086 c -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_0 D -%_99.4023 110.2773 m -%_99.502 110.2129 99.6309 110.2227 99.7188 110.3047 c -%_99.8047 110.3848 99.8223 110.5137 99.7637 110.6172 c -%_98.1445 113.4141 99.623 117.4297 102.8145 117.4297 c -%_108.5352 117.4297 111.2852 106.6602 110.4102 96.8379 C -%_108.248 102.5918 106.377 104.8926 103.0625 107.6328 c -%_102.9688 107.709 102.834 107.7109 102.7402 107.6328 c -%_102.6465 107.5566 102.6191 107.4238 102.6777 107.3164 c -%_107.5332 98.2383 108.5742 91.252 108.5742 83.2324 C -%_107.1113 89.1895 105.3789 92.5527 100.4473 97.6133 c -%_100.3613 97.7012 100.2246 97.7148 100.123 97.6445 c -%_100.0215 97.5742 99.9844 97.4414 100.0352 97.3301 c -%_105.334 85.7383 104.9297 72.8828 100.9824 63.0664 c -%_100.9434 62.9688 100.9688 62.8574 101.0449 62.7852 c -%_101.123 62.7129 101.2344 62.6973 101.3301 62.7422 c -%_106.5352 65.293 109.5938 66.9688 114.082 73.1328 C -%_112.7246 80.5313 113.8535 84.1797 117.2539 90.3262 C -%_113.3164 80.4102 115.4121 66.4336 125.4414 60.7363 c -%_125.5508 60.6738 125.6895 60.7012 125.7656 60.8008 c -%_125.8438 60.9004 125.8379 61.041 125.75 61.1328 c -%_121.9688 65.0879 119.2188 71.7676 121.5938 79.0586 C -%_120.0645 68.6699 129.1895 59.9453 139.373 59.9453 c -%_148.9727 59.9453 155.5234 67.4531 154.9824 74.8848 c -%_154.4453 82.25 149.5391 85.8555 145.3105 87.3828 c -%_145.1992 87.4238 145.0742 87.3809 145.0117 87.2813 c -%_144.9473 87.1816 144.9609 87.0508 145.0449 86.9668 c -%_150.6543 81.2734 151.4219 70.4746 141.4609 67.207 C -%_147.3203 72.2637 145.1504 84.0352 135.7715 84.9316 c -%_135.6543 84.9414 135.5449 84.8711 135.5078 84.7598 c -%_135.4688 84.6504 135.5117 84.5273 135.6113 84.4648 c -%_137.6191 83.1855 139.2891 80.6934 139.2891 77.8906 c -%_139.2891 73.2168 135.8672 71.3789 133.6133 71.3789 c -%_130.1914 71.3789 127.3535 74.6348 127.3535 79.5605 c -%_127.3535 85.4023 132.6133 90.2441 139.373 90.9941 c -%_146 91.7305 152.1563 88.8398 155.123 84.5352 c -%_155.1934 84.4336 155.3242 84.3984 155.4375 84.4492 c -%_155.5488 84.5 155.6074 84.623 155.5781 84.7422 c -%_152.5586 96.4453 138.7813 101.6191 128.6895 94.25 C -%_135.3027 101.75 145.6953 101.8555 154.4121 94.1641 c -%_154.502 94.084 154.6367 94.0781 154.7344 94.1523 c -%_154.8301 94.2266 154.8613 94.3574 154.8066 94.4668 c -%_152.1406 99.873 145.5547 106.2852 136.2012 105.3516 c -%_127.6445 104.4961 122.6797 96.3359 121.6777 89.6602 C -%_121.1211 98.1816 123.0723 104.1953 130.4316 109.8047 c -%_130.5293 109.8789 130.5586 110.0117 130.5039 110.1211 c -%_130.4492 110.2305 130.3242 110.2852 130.207 110.25 c -%_123.4219 108.291 117.9766 104.8262 115.1582 97.707 C -%_115.1582 103.8672 117.2969 110.0781 122.6836 114.2168 c -%_122.7813 114.291 122.8105 114.4238 122.7559 114.5332 c -%_122.7012 114.6406 122.5781 114.6953 122.4609 114.6621 c -%_119.0078 113.6797 116.2891 112.1738 114.3223 109.4785 C -%_113.0117 120.5781 107.8008 127.168 101.7969 127.168 c -%_97.6719 127.168 94.5918 124.1348 94.5918 119.2988 c -%_94.5918 116.4688 96.0801 112.4961 99.4023 110.2773 c -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_0.174805 18.6602 m -%_3.33691 14.7559 9.71387 13.2676 16.6064 14.6719 C -%_16.0967 10.3691 16.9404 5.88086 18.2178 3.18555 c -%_18.2705 3.07813 18.3916 3.01953 18.5088 3.04883 c -%_18.626 3.07813 18.7061 3.18555 18.7021 3.30664 c -%_18.3271 12.0723 23.3252 19.1484 32.1514 22.2148 C -%_25.2451 17.459 23.2256 8.02148 26.5127 3.15039 c -%_26.5811 3.05078 26.708 3.01172 26.8193 3.05664 c -%_26.9307 3.10156 26.9951 3.21875 26.9736 3.33789 c -%_26.6006 5.39844 27.5791 8.02148 29.6865 10.0625 c -%_32.5928 12.877 36.5361 13.5156 38.4971 11.4922 c -%_40.458 9.4668 39.6943 5.54492 36.79 2.73242 c -%_35.7295 1.70508 34.5303 0.96875 33.3408 0.546875 c -%_33.2275 0.505859 33.1592 0.392578 33.1748 0.275391 c -%_33.1885 0.15625 33.2842 0.064453 33.4033 0.054688 c -%_39.792 -0.5 44.1729 3.30664 46.9189 7.93164 c -%_49.7139 12.6367 54.4893 16.3438 60.1299 15.6035 c -%_60.249 15.5879 60.3623 15.6582 60.4033 15.7715 c -%_60.4424 15.8848 60.3975 16.0098 60.2939 16.0723 c -%_57.4971 17.7559 54.4229 18.4551 50.4307 17.125 C -%_56.2256 22.0332 64.4775 24.8652 72.2715 22.3516 c -%_72.3809 22.3164 72.5 22.3594 72.5625 22.4551 c -%_72.625 22.5508 72.6152 22.6777 72.5371 22.7637 c -%_66.6279 29.3281 54.8467 29.459 47.4268 24.1348 C -%_50.4639 28.4512 54.4951 31.6211 61.7197 32.6133 c -%_61.835 32.6289 61.9248 32.7227 61.9385 32.8379 c -%_61.9502 32.9531 61.8838 33.0625 61.7744 33.1035 c -%_53.4834 36.1797 45.1748 33.0586 38.3291 24.8867 C -%_41.3213 31.2656 46.2354 36.373 53.0967 38.9004 c -%_53.2119 38.9414 53.2803 39.0586 53.2588 39.1797 c -%_53.2393 39.3008 53.1357 39.3887 53.0146 39.3906 c -%_49.0713 39.4727 45.5283 38.5332 40.749 35.8203 C -%_44.2568 41.5117 43.4893 51.459 38.3799 58.0801 c -%_38.3096 58.1719 38.1846 58.2031 38.0771 58.1582 c -%_37.9717 58.1113 37.9092 57.998 37.9287 57.8828 c -%_39.1084 50.6836 36.6299 42.5547 32.3193 38.2422 C -%_34.4717 45.873 32.3252 52.8184 26.4229 57.8848 c -%_26.3525 57.9453 26.2529 57.9629 26.167 57.9297 c -%_26.0791 57.8965 26.0186 57.8184 26.0049 57.7266 c -%_24.7705 48.3086 14.2354 38.752 5.40332 37.9512 c -%_5.27832 37.9395 5.18066 37.8398 5.17285 37.7148 c -%_5.16504 37.5898 5.24707 37.4785 5.37012 37.4512 c -%_9.64941 36.4824 14.0615 36.9609 17.7588 38.4805 C -%_15.0986 35.5488 11.8193 33.3711 8.2041 32.2363 c -%_8.08691 32.1992 8.01465 32.0859 8.02832 31.9648 c -%_8.04199 31.8438 8.1416 31.748 8.2627 31.7402 c -%_12.7725 31.4297 17.1865 32.7461 20.9932 35.2793 C -%_16.6318 28.6582 10.0127 23.7344 1.56543 21.7715 c -%_1.44434 21.7441 1.3623 21.6328 1.36816 21.5098 c -%_1.37598 21.3867 1.47168 21.2871 1.59473 21.2734 c -%_13.5127 19.9707 23.3408 24.5918 29.8154 33.1914 C -%_28.167 28.2891 23.4502 23.4355 16.8701 20.5723 c -%_11.0244 18.0273 5.02051 17.625 0.448242 19.0625 c -%_0.342773 19.0957 0.225586 19.0547 0.163086 18.9629 c -%_0.100586 18.8691 0.104492 18.7461 0.174805 18.6602 c -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_53.0791 94.2324 m -%_48.2725 83.7461 48.6143 75.5469 52.4854 65.1777 c -%_52.5303 65.0605 52.6514 64.9922 52.7744 65.0176 c -%_52.8975 65.043 52.9834 65.1543 52.9775 65.2773 c -%_52.3564 77.9004 55.8037 86.9316 63.2764 93.0859 C -%_55.0264 83.2324 58.9229 63.5254 72.0996 63.5254 c -%_81.6855 63.5254 89.6152 71.502 91.5547 81.0508 c -%_91.5801 81.1719 91.5137 81.293 91.3965 81.3379 c -%_91.2813 81.3828 91.1504 81.3379 91.0879 81.2305 c -%_88.2461 76.4688 83.6797 73.3789 78.6309 73.3789 c -%_70.4951 73.3789 68.0889 79.8457 68.0889 84.3789 c -%_68.0889 90.5645 73.0156 95.7207 76.7969 95.7207 c -%_80.2344 95.7207 81.8379 92.8984 81.8379 90.7949 c -%_81.8379 86.8965 78.8398 83.6289 75.4629 82.6309 c -%_75.3418 82.5938 75.2656 82.4766 75.2832 82.3516 c -%_75.3008 82.2266 75.4063 82.1328 75.5332 82.1328 c -%_79.6387 82.1074 83.1094 83.9863 85.1621 87.7012 C -%_85.4316 84.8262 85.4336 83.0156 84.5215 79.9766 c -%_84.4863 79.8594 84.5391 79.7344 84.6465 79.6777 c -%_84.7559 79.623 84.8887 79.6504 84.9629 79.748 c -%_92.3203 89.1406 88.7988 105.3711 82.9844 112.1055 C -%_88.5156 108.123 93.4004 99.4707 93.3242 87.7109 c -%_93.3223 87.5898 93.4082 87.4844 93.5293 87.4609 c -%_93.6484 87.4375 93.7676 87.502 93.8125 87.6152 c -%_97.9219 97.8691 95.7422 116.8633 84.5313 127.4668 C -%_87.416 127.8652 90.3984 127.8145 93.6563 126.7754 c -%_93.7715 126.7383 93.8965 126.7891 93.9551 126.8945 c -%_94.0137 127 93.9902 127.1328 93.8965 127.2109 c -%_89.8047 130.666 84.082 131.752 78.6309 131.752 C -%_83.3281 126.252 81.7676 115.1992 74.2773 115.1992 c -%_68.9268 115.1992 66.499 123.498 70.6279 127.9805 c -%_70.7061 128.0664 70.7158 128.1934 70.6533 128.291 c -%_70.5889 128.3887 70.4678 128.4297 70.3564 128.3926 c -%_65.5771 126.7363 60.4111 122.6035 60.4111 117.375 c -%_60.4111 112.334 65.2236 107.9805 72.2148 108.3242 C -%_63.3936 105.8203 54.1611 108.5918 49.3311 114.5781 c -%_49.2568 114.6699 49.126 114.6992 49.0205 114.6445 c -%_48.9131 114.5918 48.8584 114.4707 48.8877 114.3535 c -%_51.6787 103.6387 60.8545 99.1543 72.3281 100.6484 C -%_63.0459 96.8906 49.0771 100.166 42.9033 107.957 c -%_42.8311 108.0488 42.7041 108.0801 42.5967 108.0293 c -%_42.4912 107.9805 42.4326 107 -endstream endobj 134 0 obj <>stream -.8633 42.4561 107.748 c -%_43.8271 101.1328 47.3193 96.1875 53.0791 94.2324 C -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_*U -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_U -%_/ArtDictionary : -%_1 /Bool (AIPattern_Is_Main_Copy_of_EditGroup) , -%_1 /Bool (AIPattern_Is_Repeated_Art) , -%_; -%_ -%_9 () XW -%_u -%_*u -%_1 D -%_1 0.771237 0.226078 0.073854 0 0.258824 0.494118 Xa -%_0 1 0 0 0 Xy -%_135.0352 184.5869 m -%_135.0566 184.7061 135.1602 184.792 135.2813 184.7939 c -%_148.1875 184.9287 160.0352 188.0615 169.2529 196.3086 C -%_161.2227 190.751 146.3105 188.7979 137.7256 192.6904 c -%_137.6152 192.7402 137.5566 192.8604 137.584 192.9785 c -%_137.6104 193.0967 137.7168 193.1787 137.8379 193.1748 c -%_148.5176 192.8857 157.1172 196.1816 163.8223 202.1396 C -%_156.9531 202.5615 151.248 206.8799 151.2656 211.9844 c -%_151.2656 212.1035 151.3496 212.2061 151.4668 212.2314 c -%_151.583 212.2568 151.7012 212.1963 151.75 212.0879 c -%_152.8711 209.5986 156.498 208.3076 160.333 209.208 c -%_164.5127 210.1885 167.333 213.3975 166.6338 216.373 c -%_166.1621 218.3877 164.1973 219.7764 161.6816 220.1602 c -%_161.5547 220.1787 161.4619 220.29 161.4648 220.418 c -%_161.4688 220.5459 161.5674 220.6514 161.6953 220.6631 c -%_162.7637 220.7656 163.875 220.7695 165.0127 220.6611 c -%_171.5029 220.0439 176.5264 216.0654 176.9619 211.4834 C -%_181.6748 212.0303 185.8467 214.6396 187.3408 218.2568 c -%_187.3857 218.3652 187.501 218.4287 187.6162 218.4111 c -%_187.7314 218.3916 187.8193 218.2969 187.8291 218.1807 c -%_188.2061 213.4287 186.5713 210.3418 182.8584 207.3262 C -%_188.2432 209.3857 194.3027 209.4912 200.1133 206.7881 c -%_200.2188 206.7393 200.2773 206.624 200.2559 206.5088 c -%_200.2324 206.3936 200.1328 206.3096 200.0156 206.3057 c -%_195.1367 206.1152 191.5996 204.5498 188.2861 201.2334 C -%_206.5391 206.3672 221.3711 195.0322 216.2383 178.1807 c -%_216.2031 178.0654 216.0918 177.9902 215.9707 178.0029 c -%_215.8496 178.0146 215.7539 178.1104 215.7441 178.2314 c -%_214.8262 187.9453 208.041 194.3467 197.8828 195.3076 C -%_203.2695 193.2471 208.8828 188.3311 209.4395 179.7734 c -%_209.4473 179.6514 209.3672 179.54 209.248 179.5107 c -%_209.1289 179.4814 209.0059 179.54 208.9551 179.6514 c -%_206.1563 185.8057 200.6582 188.917 194.7949 189.4639 C -%_201.1289 186.8838 205.1914 180.8623 206.3652 173.0439 c -%_206.3848 172.9209 206.3105 172.8018 206.1914 172.7646 c -%_206.0742 172.7256 205.9453 172.7803 205.8887 172.8896 c -%_202.0234 180.4727 193.7324 185.6836 183.4424 181.7021 c -%_172.8252 177.5928 168.168 165.3154 167.1387 156.6611 c -%_167.124 156.54 167.0234 156.4463 166.9004 156.4385 c -%_166.7783 156.4307 166.668 156.5127 166.6396 156.6338 c -%_162.9199 172.3213 170.2227 188.583 183.2764 195.4736 C -%_176.1807 193.4707 169.8369 189.2139 166.249 182.1191 C -%_157.9551 181.1006 152.2451 178.2568 149.3916 172.8799 c -%_149.335 172.7725 149.2109 172.7197 149.0957 172.7549 c -%_148.9805 172.7881 148.9043 172.8994 148.9141 173.0205 c -%_149.0967 175.1299 149.8555 179.3506 152.9883 181.291 C -%_146.0234 181.2803 140.4824 182.1846 135.1895 184.3037 c -%_135.0781 184.3496 135.0127 184.4678 135.0352 184.5869 c -%_f -%_0 D -%_164.5215 131.1162 m -%_164.4229 131.1826 164.293 131.1709 164.2061 131.0908 c -%_164.1201 131.0088 164.1016 130.8799 164.1602 130.7783 c -%_165.7803 127.9814 164.3008 123.9639 161.1094 123.9639 c -%_155.3887 123.9639 152.6387 134.7334 153.5137 144.5576 C -%_155.6768 138.8018 157.5469 136.5029 160.8613 133.7627 c -%_160.9551 133.6846 161.0898 133.6846 161.1836 133.7607 c -%_161.2773 133.8389 161.3047 133.9697 161.2471 134.0771 c -%_156.3906 143.1572 155.3496 150.1436 155.3496 158.1631 C -%_156.8125 152.2041 158.5449 148.8408 163.4766 143.7822 c -%_163.5625 143.6943 163.6992 143.6807 163.8018 143.749 c -%_163.9033 143.8193 163.9404 143.9521 163.8887 144.0654 c -%_158.5908 155.6553 158.9951 168.5127 162.9414 178.3291 c -%_162.9805 178.4268 162.9561 178.5381 162.8789 178.6104 c -%_162.8018 178.6807 162.6895 178.6982 162.5938 178.6514 c -%_157.3887 176.1006 154.3301 174.4248 149.8418 168.2627 C -%_151.1992 160.8643 150.0703 157.2139 146.6699 151.0674 C -%_150.6074 160.9854 148.5117 174.9619 138.4824 180.6592 c -%_138.373 180.7207 138.2344 180.6934 138.1582 180.5947 c -%_138.0801 180.4951 138.0869 180.3535 138.1738 180.2627 c -%_141.9551 176.3076 144.7051 169.6279 142.3301 162.335 C -%_143.8594 172.7236 134.7344 181.4502 124.5508 181.4502 c -%_114.9512 181.4502 108.4004 173.9404 108.9414 166.5088 c -%_109.4785 159.1436 114.3848 155.54 118.6133 154.0107 c -%_118.7246 153.9717 118.8496 154.0127 118.9131 154.1123 c -%_118.9766 154.2139 118.9629 154.3428 118.8799 154.4287 c -%_113.2695 160.1201 112.502 170.9209 122.4629 174.1885 C -%_116.6035 169.1318 118.7734 157.3584 128.1523 156.4639 c -%_128.2695 156.4521 128.3789 156.5225 128.417 156.6338 c -%_128.4551 156.7451 128.4121 156.8682 128.3135 156.9307 c -%_126.3047 158.208 124.6348 160.7021 124.6348 163.5049 c -%_124.6348 168.1787 128.0566 170.0146 130.3105 170.0146 c -%_133.7324 170.0146 136.5703 166.7588 136.5703 161.835 c -%_136.5703 155.9912 131.3105 151.1514 124.5508 150.3994 c -%_117.9248 149.665 111.7686 152.5537 108.8008 156.8584 c -%_108.7314 156.96 108.5996 156.9971 108.4873 156.9463 c -%_108.375 156.8955 108.3164 156.7705 108.3467 156.6514 c -%_111.3652 144.9482 125.1426 139.7744 135.2344 147.1455 C -%_128.6211 139.6436 118.2285 139.54 109.5127 147.2314 c -%_109.4219 147.3115 109.2871 147.3154 109.1904 147.2412 c -%_109.0938 147.1689 109.0635 147.0361 109.1172 146.9287 c -%_111.7842 141.5205 118.3701 135.1084 127.7227 136.0439 c -%_136.2793 136.8994 141.2441 145.0576 142.2461 151.7354 C -%_142.8027 143.2139 140.8525 137.1982 133.4922 131.5889 c -%_133.3955 131.5146 133.3652 131.3818 133.4199 131.2725 c -%_133.4746 131.165 133.5996 131.1104 133.7168 131.1436 c -%_140.502 133.1045 145.9473 136.5693 148.7656 143.6885 C -%_148.7656 137.5264 146.627 131.3154 141.2402 127.1768 c -%_141.1426 127.1025 141.1133 126.9717 141.168 126.8623 c -%_141.2227 126.7529 141.3467 126.6982 141.4639 126.7314 c -%_144.917 127.7158 147.6348 129.2197 149.6016 131.917 C -%_150.9121 120.8174 156.123 114.2256 162.127 114.2256 c -%_166.252 114.2256 169.332 117.2588 169.332 122.0967 c -%_169.332 124.9268 167.8438 128.8994 164.5215 131.1162 c -%_f -%_263.748 222.7354 m -%_260.5859 226.6396 254.209 228.1279 247.3164 226.7236 C -%_247.8262 231.0244 246.9824 235.5146 245.7051 238.208 c -%_245.6523 238.3174 245.5313 238.375 245.4141 238.3467 c -%_245.2969 238.3174 245.2168 238.21 245.2207 238.0889 c -%_245.5957 229.3223 240.5977 222.2451 231.7715 219.1787 C -%_238.6777 223.9346 240.6973 233.3721 237.4102 238.2451 c -%_237.3418 238.3438 237.2148 238.3828 237.1035 238.3369 c -%_236.9922 238.292 236.9277 238.1748 236.9492 238.0576 c -%_237.3223 235.9971 236.3438 233.373 234.2363 231.3311 c -%_231.3301 228.5166 227.3867 227.8779 225.4258 229.9014 c -%_223.4648 231.9268 224.2285 235.8486 227.1328 238.6631 c -%_228.1934 239.6904 229.3926 240.4248 230.582 240.8477 c -%_230.6953 240.8877 230.7637 241.001 230.748 241.1191 c -%_230.7344 241.2383 230.6387 241.3301 230.5195 241.3398 c -%_224.1309 241.8945 219.75 238.0879 217.0039 233.4619 c -%_214.209 228.7568 209.4336 225.0518 203.793 225.792 c -%_203.6738 225.8076 203.5605 225.7373 203.5195 225.624 c -%_203.4805 225.5107 203.5254 225.3838 203.6289 225.3223 c -%_206.4258 223.6377 209.5 222.9385 213.4922 224.2705 C -%_207.6973 219.3613 199.4453 216.5283 191.6523 219.043 c -%_191.543 219.0791 191.4238 219.0361 191.3613 218.9395 c -%_191.2988 218.8428 191.3105 218.7168 191.3867 218.6318 c -%_197.2949 212.0674 209.0762 211.9365 216.4961 217.2588 C -%_213.459 212.9424 209.4277 209.7744 202.2031 208.7803 c -%_202.0879 208.7646 201.998 208.6729 201.9844 208.5576 c -%_201.9727 208.4414 202.0391 208.332 202.1484 208.292 c -%_210.4395 205.2139 218.748 208.3369 225.5938 216.5068 C -%_222.6016 210.1299 217.6875 205.0225 210.8262 202.4951 c -%_210.7109 202.4531 210.6426 202.335 210.6641 202.2158 c -%_210.6836 202.0947 210.7871 202.0059 210.9082 202.0029 c -%_214.8516 201.9219 218.3945 202.8604 223.1738 205.5732 C -%_219.666 199.8838 220.4336 189.9346 225.543 183.3154 c -%_225.6133 183.2236 225.7383 183.1914 225.8457 183.2373 c -%_225.9512 183.2842 226.0137 183.3965 225.9941 183.5107 c -%_224.8145 190.7119 227.293 198.8408 231.6035 203.1533 C -%_229.4512 195.5215 231.5977 188.5771 237.5 183.5088 c -%_237.5703 183.4482 237.6699 183.4316 237.7559 183.4648 c -%_237.8438 183.498 237.9043 183.5771 237.918 183.6689 c -%_239.1523 193.0869 249.6875 202.6436 258.5195 203.4443 c -%_258.6445 203.4551 258.7422 203.5557 258.75 203.6797 c -%_258.7578 203.8037 258.6758 203.917 258.5527 203.9443 c -%_254.2734 204.9131 249.8613 204.4346 246.1641 202.9131 C -%_248.8242 205.8467 252.1035 208.0244 255.7188 209.1592 c -%_255.8359 209.1953 255.9082 209.3096 255.8945 209.4307 c -%_255.8809 209.5518 255.7813 209.6455 255.6602 209.6543 c -%_251.1504 209.9658 246.7363 208.6484 242.9297 206.1162 C -%_247.291 212.7373 253.9102 217.6611 262.3574 219.6221 c -%_262.4785 219.6504 262.5605 219.7607 262.5547 219.8848 c -%_262.5469 220.0088 262.4512 220.1084 262.3281 220.1221 c -%_250.4102 221.4238 240.582 216.8037 234.1074 208.2041 C -%_235.7559 213.1045 240.4727 217.96 247.0527 220.8232 c -%_252.8984 223.3682 258.9023 223.7695 263.4746 222.333 c -%_263.5801 222.2998 263.6973 222.3398 263.7598 222.4326 c -%_263.8223 222.5244 263.8184 222.6475 263.748 222.7354 c -%_f -%_210.8438 147.1631 m -%_215.6504 157.6494 215.3086 165.8486 211.4375 176.2178 c -%_211.3926 176.335 211.2715 176.4023 211.1484 176.3779 c -%_211.0254 176.3525 210.9395 176.2412 210.9453 176.1162 c -%_211.5664 163.4951 208.1191 154.4619 200.6465 148.3096 C -%_208.8965 158.1611 205 177.8691 191.8242 177.8691 c -%_182.2393 177.8691 174.3086 169.8936 172.3691 160.3447 c -%_172.3447 160.2236 172.4111 160.1006 172.5273 160.0576 c -%_172.6426 160.0127 172.7734 160.0576 172.8359 160.1631 c -%_175.6787 164.9248 180.2451 168.0146 185.2939 168.0146 c -%_193.4277 168.0146 195.834 161.5479 195.834 157.0166 c -%_195.834 150.8291 190.9082 145.6729 187.1279 145.6729 c -%_183.6904 145.6729 182.0869 148.4971 182.0869 150.6006 c -%_182.0869 154.499 185.085 157.7666 188.4639 158.7646 c -%_188.583 158.7998 188.6611 158.9189 188.6436 159.0439 c -%_188.624 159.1689 188.5186 159.2607 188.3936 159.2627 c -%_184.2861 159.2881 180.8154 157.4072 178.7627 153.6943 C -%_178.4932 156.5693 178.4902 158.3799 179.4033 161.417 c -%_179.4385 161.5342 179.3848 161.6592 179.2773 161.7158 c -%_179.168 161.7725 179.0352 161.7432 178.9609 161.6475 c -%_171.6045 152.2549 175.125 136.0225 180.9404 129.29 C -%_175.4082 133.2725 170.5234 141.9229 170.6006 153.6826 c -%_170.6016 153.8057 170.5156 153.9092 170.3955 153.9326 c -%_170.2754 153.958 170.1563 153.8916 170.1113 153.7783 c -%_166.0029 143.5264 168.1826 124.5303 179.3926 113.9268 C -%_176.5088 113.5303 173.5254 113.5811 170.2676 114.6201 c -%_170.1523 114.6553 170.0273 114.6064 169.9688 114.501 c -%_169.9102 114.3936 169.9336 114.2607 170.0273 114.1826 c -%_174.1191 110.7275 179.8418 109.6416 185.2939 109.6416 C -%_180.5967 115.1416 182.1572 126.1963 189.6494 126.1963 c -%_194.9961 126.1963 197.4238 117.8975 193.2949 113.415 c -%_193.2168 113.3291 193.207 113.2002 193.2695 113.1045 c -%_193.334 113.0068 193.4551 112.9639 193.5664 113.0029 c -%_198.3457 114.6572 203.5117 118.792 203.5117 124.0186 c -%_203.5117 129.0615 198.6992 133.4131 191.7109 133.0693 C -%_200.5293 135.5752 209.7617 132.8018 214.5918 126.8174 c -%_214.666 126.7236 214.7969 126.6963 214.9023 126.749 c -%_215.0098 126.8037 215.0645 126.9248 215.0352 127.04 c -%_212.2441 137.7568 203.0684 142.2393 191.5957 140.7471 C -%_200.877 144.5029 214.8457 141.2275 221.0195 133.4365 c -%_221.0918 133.3447 221.2188 133.3154 221.3262 133.3643 c -%_221.4316 133.415 221.4902 133.5322 221.4668 133.6455 c -%_220.0957 140.2607 216.6035 145.208 210.8438 147.1631 C -%_f -%_*U -%_*u -%_1 D -%_0.41001 0 0.011078 0 0.615686 0.862745 0.976471 Xa -%_0 0.4 0 0 0 Xy -%_237.2266 166.4502 m -%_237.2051 166.3311 237.1016 166.2432 236.9805 166.2432 c -%_224.0742 166.1064 212.2266 162.9756 203.0098 154.7275 C -%_211.0391 160.2861 225.9512 162.2373 234.5371 158.3467 c -%_234.6465 158.2959 234.7051 158.1748 234.6777 158.0576 c -%_234.6523 157.9404 234.5449 157.8584 234.4238 157.8604 c -%_223.7441 158.1514 215.1445 154.8545 208.4395 148.8975 C -%_215.3086 148.4736 221.0137 144.1572 220.9961 139.0518 c -%_220.9961 138.9326 220.9121 138.8291 220.7949 138.8037 c -%_220.6797 138.7803 220.5605 138.8389 220.5117 138.9482 c -%_219.3906 141.4365 215.7637 142.7295 211.9297 141.8291 c -%_207.75 140.8467 204.9297 137.6396 205.6289 134.6631 c -%_206.0996 132.6494 208.0645 131.2607 210.5801 130.876 c -%_210.707 130.8564 210.8008 130.7471 210.7969 130.6182 c -%_210.793 130.4912 210.6953 130.3857 210.5664 130.3721 c -%_209.498 130.2705 208.3867 130.2666 207.25 130.376 c -%_200.7598 130.9932 195.7363 134.9697 195.3008 139.5537 C -%_190.5889 139.0068 186.417 136.3955 184.9229 132.7803 c -%_184.8779 132.6709 184.7646 132.6084 184.6475 132.626 c -%_184.5322 132.6436 184.4443 132.7393 184.4346 132.8564 c -%_184.0576 137.6064 185.6924 140.6943 189.4053 143.71 C -%_184.0205 141.6514 177.959 141.5459 172.1484 144.2471 c -%_172.043 144.2979 171.9844 144.4131 172.0059 144.5283 c -%_172.0293 144.6436 172.1289 144.7275 172.2461 144.7314 c -%_177.125 144.9209 180.6631 146.4873 183.9795 149.8037 C -%_165.7227 144.6689 150.8906 156.0049 156.0234 172.8545 c -%_156.0586 172.9717 156.1699 173.0459 156.291 173.0342 c -%_156.4121 173.0225 156.5078 172.9268 156.5176 172.8057 c -%_157.4355 163.0908 164.2207 156.6885 174.3789 155.7295 C -%_168.9922 157.7881 163.3789 162.7041 162.8223 171.2627 c -%_162.8145 171.3857 162.8945 171.4951 163.0137 171.5264 c -%_163.1328 171.5557 163.2559 171.4951 163.3066 171.3838 c -%_166.1055 165.2295 171.6035 162.1201 177.4668 161.5713 C -%_171.1328 164.1533 167.0703 170.1748 165.8965 177.9932 c -%_165.877 178.1162 165.9512 178.2334 166.0703 178.2725 c -%_166.1875 178.3096 166.3164 178.2568 166.373 178.1455 c -%_170.2383 170.5635 178.5293 165.3525 188.8213 169.335 c -%_199.4375 173.4443 204.0938 185.7197 205.123 194.374 c -%_205.1387 194.4971 205.2383 194.5908 205.3613 194.5986 c -%_205.4844 194.6045 205.5938 194.5225 205.623 194.4033 c -%_209.3418 178.7139 202.0391 162.4541 188.9873 155.5635 C -%_196.082 157.5654 202.4258 161.8232 206.0137 168.917 C -%_214.3066 169.9346 220.0176 172.7803 222.8711 178.1572 c -%_222.9277 178.2627 223.0508 178.3154 223.166 178.2822 c -%_223.2813 178.2471 223.3574 178.1357 223.3477 178.0166 c -%_223.166 175.9072 222.4063 171.6865 219.2734 169.7451 C -%_226.2383 169.7568 231.7793 168.8525 237.0723 166.7314 c -%_237.1836 166.6865 237.25 166.5693 237.2266 166.4502 c -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_0 D -%_207.7402 219.9189 m -%_207.8398 219.8545 207.9688 219.8643 208.0566 219.9463 c -%_208.1426 220.0264 208.1602 220.1553 208.1016 220.2588 c -%_206.4824 223.0557 207.9609 227.0713 211.1523 227.0713 c -%_216.873 227.0713 219.623 216.3018 218.748 206.4795 C -%_216.5859 212.2334 214.7148 214.5342 211.4004 217.2744 c -%_211.3066 217.3506 211.1719 217.3525 211.0781 217.2744 c -%_210.9844 217.1982 210.957 217.0654 211.0156 216.958 c -%_215.8711 207.8799 216.9121 200.8936 216.9121 192.874 C -%_215.4492 198.8311 213.7168 202.1943 208.7852 207.2549 c -%_208.6992 207.3428 208.5625 207.3564 208.4609 207.2861 c -%_208.3594 207.2158 208.3223 207.083 208.373 206.9717 c -%_213.6719 195.3799 213.2676 182.5244 209.3203 172.708 c -%_209.2813 172.6104 209.3066 172.499 209.3828 172.4268 c -%_209.4609 172.3545 209.5723 172.3389 209.668 172.3838 c -%_214.873 174.9346 217.9316 176.6104 222.4199 182.7744 C -%_221.0625 190.1729 222.1914 193.8213 225.5918 199.9678 C -%_221.6543 190.0518 223.75 176.0752 233.7793 170.3779 c -%_233.8887 170.3154 234.0273 170.3428 234.1035 170.4424 c -%_234.1816 170.542 234.1758 170.6826 234.0879 170.7744 c -%_230.3066 174.7295 227.5566 181.4092 229.9316 188.7002 C -%_228.4023 178.3115 237.5273 169.5869 247.7109 169.5869 c -%_257.3105 169.5869 263.8613 177.0947 263.3203 184.5264 c -%_262.7832 191.8916 257.877 195.4971 253.6484 197.0244 c -%_253.5371 197.0654 253.4121 197.0225 253.3496 196.9229 c -%_253.2852 196.8232 253.2988 196.6924 253.3828 196.6084 c -%_258.9922 190.915 259.7598 180.1162 249.7988 176.8486 C -%_255.6582 181.9053 253.4883 193.6768 244.1094 194.5732 c -%_243.9922 194.583 243.8828 194.5127 243.8457 194.4014 c -%_243.8066 194.292 243.8496 194.1689 243.9492 194.1064 c -%_245.957 192.8271 247.627 190.335 247.627 187.5322 c -%_247.627 182.8584 244.2051 181.0205 241.9512 181.0205 c -%_238.5293 181.0205 235.6914 184.2764 235.6914 189.2021 c -%_235.6914 195.0439 240.9512 199.8857 247.7109 200.6357 c -%_254.3379 201.3721 260.4941 198.4814 263.4609 194.1768 c -%_263.5313 194.0752 263.6621 194.04 263.7754 194.0908 c -%_263.8867 194.1416 263.9453 194.2646 263.916 194.3838 c -%_260.8965 206.0869 247.1191 211.2607 237.0273 203.8916 C -%_243.6406 211.3916 254.0332 211.4971 262.75 203.8057 c -%_262.8398 203.7256 262.9746 203.7197 263.0723 203.7939 c -%_263.168 203.8682 263.1992 203.999 263.1445 204.1084 c -%_260.4785 209.5146 253.8926 215.9268 244.5391 214.9932 c -%_235.9824 214.1377 231.0176 205.9775 230.0156 199.3018 C -%_229.459 207.8232 231.4102 213.8369 238.7695 219.4463 c -%_238.8672 219.5205 238.8965 219.6533 238.8418 219.7627 c -%_238.7871 219.8721 238.6621 219.9268 238.5449 219.8916 c -%_231.7598 217.9326 226.3145 214.4678 223.4961 207.3486 C -%_223.4961 213.5088 225.6348 219.7197 231.0215 223.8584 c -%_231.1191 223.9326 231.1484 224.0654 231.0938 224.1748 c -%_231.0391 224.2822 230.916 224.3369 230.7988 224.3037 c -%_227.3457 223.3213 224.627 221.8154 222.6602 219.1201 C -%_221.3496 230.2197 216.1387 236.8096 210.1348 236.8096 c -%_206.0098 236.8096 202.9297 233.7764 202.9297 228.9404 c -%_202.9297 226.1104 204.418 222.1377 207.7402 219.9189 c -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_108.5137 128.3018 m -%_111.6758 124.3975 118.0527 122.9092 124.9453 124.3135 C -%_124.4355 120.0107 125.2793 115.5225 126.5566 112.8271 c -%_126.6094 112.7197 126.7305 112.6611 126.8477 112.6904 c -%_126.9648 112.7197 127.0449 112.8271 127.041 112.9482 c -%_126.666 121.7139 131.6641 128.79 140.4902 131.8564 C -%_133.584 127.1006 131.5645 117.6631 134.8516 112.792 c -%_134.9199 112.6924 135.0469 112.6533 135.1582 112.6982 c -%_135.2695 112.7432 135.334 112.8604 135.3125 112.9795 c -%_134.9395 115.04 135.918 117.6631 138.0254 119.7041 c -%_140.9316 122.5186 144.875 123.1572 146.8359 121.1338 c -%_148.7969 119.1084 148.0332 115.1865 145.1289 112.374 c -%_144.0684 111.3467 142.8691 110.6104 141.6797 110.1885 c -%_141.5664 110.1475 141.498 110.0342 141.5137 109.917 c -%_141.5273 109.7979 141.623 109.7061 141.7422 109.6963 c -%_148.1309 109.1416 152.5117 112.9482 155.2578 117.5732 c -%_158.0527 122.2783 162.8281 125.9854 168.4688 125.2451 c -%_168.5879 125.2295 168.7012 125.2998 168.7422 125.4131 c -%_168.7813 125.5264 168.7363 125.6514 168.6328 125.7139 c -%_165.8359 127.3975 162.7617 128.0967 158.7695 126.7666 C -%_164.5645 131.6748 172.8164 134.5068 180.6104 131.9932 c -%_180.7197 131.958 180.8389 132.001 180.9014 132.0967 c -%_180.9639 132.1924 180.9541 132.3193 180.876 132.4053 c -%_174.9668 138.9697 163.1855 139.1006 155.7656 133.7764 C -%_158.8027 138.0928 162.834 141.2627 170.0586 142.2549 c -%_170.1738 142.2705 170.2637 142.3643 170.2773 142.4795 c -%_170.2891 142.5947 170.2227 142.7041 170.1133 142.7451 c -%_161.8223 145.8213 153.5137 142.7002 146.668 134.5283 C -%_149.6602 140.9072 154.5742 146.0146 161.4355 148.542 c -%_161.5508 148.583 161.6191 148.7002 161.5977 148.8213 c -%_161.5781 148.9424 161.4746 149.0303 161.3535 149.0322 c -%_157.4102 149.1143 153.8672 148.1748 149.0879 145.4619 C -%_152.5957 151.1533 151.8281 161.1006 146.7188 167.7217 c -%_146.6484 167.8135 146.5234 167.8447 146.416 167.7998 c -%_146.3105 167.7529 146.248 167.6396 146.2676 167.5244 c -%_147.4473 160.3252 144.9688 152.1963 140.6582 147.8838 C -%_142.8105 155.5146 140.6641 162.46 134.7617 167.5264 c -%_134.6914 167.5869 134.5918 167.6045 134.5059 167.5713 c -%_134.418 167.5381 134.3574 167.46 134.3438 167.3682 c -%_133.1094 157.9502 122.5742 148.3936 113.7422 147.5928 c -%_113.6172 147.5811 113.5195 147.4814 113.5117 147.3564 c -%_113.5039 147.2314 113.5859 147.1201 113.709 147.0928 c -%_117.9883 146.124 122.4004 146.6025 126.0977 148.1221 C -%_123.4375 145.1904 120.1582 143.0127 116.543 141.8779 c -%_116.4258 141.8408 116.3535 141.7275 116.3672 141.6064 c -%_116.3809 141.4854 116.4805 141.3896 116.6016 141.3818 c -%_121.1113 141.0713 125.5254 142.3877 129.332 144.9209 C -%_124.9707 138.2998 118.3516 133.376 109.9043 131.4131 c -%_109.7832 131.3857 109.7012 131.2744 109.707 131.1514 c -%_109.7148 131.0283 109.8105 130.9287 109.9336 130.915 c -%_121.8516 129.6123 131.6797 134.2334 138.1543 142.833 C -%_136.5059 137.9307 131.7891 133.0771 125.209 130.2139 c -%_119.3633 127.6689 113.3594 127.2666 108.7871 128.7041 c -%_108.6816 128.7373 108.5645 128.6963 108.502 128.6045 c -%_108.4395 128.5107 108.4434 128.3877 108.5137 128.3018 c -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_161.418 203.874 m -%_156.6113 193.3877 156.9531 185.1885 160.8242 174.8193 c -%_160.8691 174.7021 160.9902 174.6338 161.1133 174.6592 c -%_161.2363 174.6846 161.3223 174.7959 161.3164 174.9189 c -%_160.6953 187.542 164.1426 196.5732 171.6152 202.7275 C -%_163.3652 192.874 167.2617 173.167 180.4385 173.167 c -%_190.0244 173.167 197.9531 181.1436 199.8926 190.6924 c -%_199.918 190.8135 199.8516 190.9346 199.7344 190.9795 c -%_199.6191 191.0244 199.4883 190.9795 199.4258 190.8721 c -%_196.584 186.1104 192.0176 183.0205 186.9697 183.0205 c -%_178.834 183.0205 176.4277 189.4873 176.4277 194.0205 c -%_176.4277 200.2061 181.3545 205.3623 185.1357 205.3623 c -%_188.5732 205.3623 190.1768 202.54 190.1768 200.4365 c -%_190.1768 196.5381 187.1787 193.2705 183.8018 192.2725 c -%_183.6807 192.2354 183.6045 192.1182 183.6221 191.9932 c -%_183.6396 191.8682 183.7451 191.7744 183.8721 191.7744 c -%_187.9775 191.749 191.4473 193.6279 193.5 197.3428 C -%_193.7695 194.4678 193.7715 192.6572 192.8594 189.6182 c -%_192.8242 189.501 192.877 189.376 192.9844 189.3193 c -%_193.0938 189.2646 193.2266 189.292 193.3008 189.3896 c -%_200.6582 198.7822 197.1367 215.0127 191.3223 221.7471 C -%_196.8535 217.7646 201.7383 209.1123 201.6621 197.3525 c -%_201.6602 197.2314 201.7461 197.126 201.8672 197.1025 c -%_201.9863 197.0791 202.1055 197.1436 202.1504 197.2568 c -%_206.2598 207.5107 204.0801 226.5049 192.8691 237.1084 C -%_195.7539 237.5068 198.7363 237.4561 201.9941 236.417 c -%_202.1094 236.3799 202.2344 236.4307 202.293 236.5361 c -%_202.3516 236.6416 202.3281 236.7744 202.2344 236.8525 c -%_198.1426 240.3076 192.4199 241.3936 186.9697 241.3936 C -%_191.666 235.8936 190.1064 224.8408 182.6162 224.8408 c -%_177.2656 224.8408 174.8379 233.1396 178.9668 237.6221 c -%_179.0449 237.708 179.0547 237.835 178.9922 237.9326 c -%_178.9277 238.0303 178.8066 238.0713 178.6953 238.0342 c -%_173.916 236.3779 168.75 232.2451 168.75 227.0166 c -%_168.75 221.9756 173.5625 217.6221 180.5537 217.9658 C -%_171.7324 215.4619 162.5 218.2334 157.6699 224.2197 c -%_157.5957 224.3115 157.4648 224.3408 157.3594 224.2861 c -%_157.252 224.2334 157.1973 224.1123 157.2266 223.9951 c -%_160.0176 213.2803 169.1934 208.7959 180.667 210.29 C -%_171.3848 206.5322 157.416 209.8076 151.2422 217.5986 c -%_151.1699 217.6904 151.043 217.7217 150.9355 217.6709 c -%_150.8301 217.6221 150.7715 217.5049 150.7949 217.3896 c -%_152.166 210.7744 155.6582 205.8291 161.418 203.874 C -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_*U -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_U -%_/ArtDictionary : -%_1 /Bool (AIPattern_Is_Main_Copy_of_EditGroup) , -%_1 /Bool (AIPattern_Is_Repeated_Art) , -%_; -%_ -%_9 () XW -%_u -%_*u -%_1 D -%_1 0.771237 0.226078 0.073854 0 0.258824 0.494118 Xa -%_0 1 0 0 0 Xy -%_26.6963 184.5869 m -%_26.7178 184.7061 26.8213 184.792 26.9424 184.7939 c -%_39.8486 184.9287 51.6963 188.0615 60.9141 196.3086 C -%_52.8838 190.751 37.9717 188.7979 29.3867 192.6904 c -%_29.2764 192.7402 29.2178 192.8604 29.2451 192.9785 c -%_29.2715 193.0967 29.3779 193.1787 29.499 193.1748 c -%_40.1787 192.8857 48.7783 196.1816 55.4834 202.1396 C -%_48.6143 202.5615 42.9092 206.8799 42.9268 211.9844 c -%_42.9268 212.1035 43.0107 212.2061 43.1279 212.2314 c -%_43.2441 212.2568 43.3623 212.1963 43.4111 212.0879 c -%_44.5322 209.5986 48.1592 208.3076 51.9941 209.208 c -%_56.1738 210.1885 58.9941 213.3975 58.2949 216.373 c -%_57.8232 218.3877 55.8584 219.7764 53.3428 220.1602 c -%_53.2158 220.1787 53.123 220.29 53.126 220.418 c -%_53.1299 220.5459 53.2285 220.6514 53.3564 220.6631 c -%_54.4248 220.7656 55.5361 220.7695 56.6738 220.6611 c -%_63.1641 220.0439 68.1875 216.0654 68.623 211.4834 C -%_73.3359 212.0303 77.5078 214.6396 79.002 218.2568 c -%_79.0469 218.3652 79.1621 218.4287 79.2773 218.4111 c -%_79.3926 218.3916 79.4805 218.2969 79.4902 218.1807 c -%_79.8672 213.4287 78.2324 210.3418 74.5195 207.3262 C -%_79.9043 209.3857 85.9648 209.4912 91.7754 206.7881 c -%_91.8809 206.7393 91.9395 206.624 91.918 206.5088 c -%_91.8945 206.3936 91.7949 206.3096 91.6777 206.3057 c -%_86.7988 206.1152 83.2617 204.5498 79.9473 201.2334 C -%_98.2012 206.3672 113.0332 195.0322 107.9004 178.1807 c -%_107.8652 178.0654 107.7539 177.9902 107.6328 178.0029 c -%_107.5117 178.0146 107.416 178.1104 107.4063 178.2314 c -%_106.4883 187.9453 99.7031 194.3467 89.5449 195.3076 C -%_94.9316 193.2471 100.5449 188.3311 101.1016 179.7734 c -%_101.1094 179.6514 101.0293 179.54 100.9102 179.5107 c -%_100.791 179.4814 100.668 179.54 100.6172 179.6514 c -%_97.8184 185.8057 92.3203 188.917 86.457 189.4639 C -%_92.791 186.8838 96.8535 180.8623 98.0273 173.0439 c -%_98.0469 172.9209 97.9727 172.8018 97.8535 172.7646 c -%_97.7363 172.7256 97.6074 172.7803 97.5508 172.8896 c -%_93.6855 180.4727 85.3945 185.6836 75.1035 181.7021 c -%_64.4863 177.5928 59.8291 165.3154 58.7998 156.6611 c -%_58.7852 156.54 58.6846 156.4463 58.5615 156.4385 c -%_58.4395 156.4307 58.3291 156.5127 58.3008 156.6338 c -%_54.5811 172.3213 61.8838 188.583 74.9375 195.4736 C -%_67.8418 193.4707 61.498 189.2139 57.9102 182.1191 C -%_49.6162 181.1006 43.9063 178.2568 41.0527 172.8799 c -%_40.9961 172.7725 40.8721 172.7197 40.7568 172.7549 c -%_40.6416 172.7881 40.5654 172.8994 40.5752 173.0205 c -%_40.7578 175.1299 41.5166 179.3506 44.6494 181.291 C -%_37.6846 181.2803 32.1436 182.1846 26.8506 184.3037 c -%_26.7393 184.3496 26.6738 184.4678 26.6963 184.5869 c -%_f -%_0 D -%_56.1826 131.1162 m -%_56.084 131.1826 55.9541 131.1709 55.8672 131.0908 c -%_55.7813 131.0088 55.7627 130.8799 55.8213 130.7783 c -%_57.4414 127.9814 55.9619 123.9639 52.7705 123.9639 c -%_47.0498 123.9639 44.2998 134.7334 45.1748 144.5576 C -%_47.3379 138.8018 49.208 136.5029 52.5225 133.7627 c -%_52.6162 133.6846 52.751 133.6846 52.8447 133.7607 c -%_52.9385 133.8389 52.9658 133.9697 52.9082 134.0771 c -%_48.0518 143.1572 47.0107 150.1436 47.0107 158.1631 C -%_48.4736 152.2041 50.2061 148.8408 55.1377 143.7822 c -%_55.2236 143.6943 55.3604 143.6807 55.4629 143.749 c -%_55.5645 143.8193 55.6016 143.9521 55.5498 144.0654 c -%_50.252 155.6553 50.6563 168.5127 54.6025 178.3291 c -%_54.6416 178.4268 54.6172 178.5381 54.54 178.6104 c -%_54.4629 178.6807 54.3506 178.6982 54.2549 178.6514 c -%_49.0498 176.1006 45.9912 174.4248 41.5029 168.2627 C -%_42.8604 160.8643 41.7314 157.2139 38.3311 151.0674 C -%_42.2686 160.9854 40.1729 174.9619 30.1436 180.6592 c -%_30.0342 180.7207 29.8955 180.6934 29.8193 180.5947 c -%_29.7412 180.4951 29.748 180.3535 29.835 180.2627 c -%_33.6162 176.3076 36.3662 169.6279 33.9912 162.335 C -%_35.5205 172.7236 26.3955 181.4502 16.2119 181.4502 c -%_6.6123 181.4502 0.061523 173.9404 0.602539 166.5088 c -%_1.13965 159.1436 6.0459 155.54 10.2744 154.0107 c -%_10.3857 153.9717 10.5107 154.0127 10.5742 154.1123 c -%_10.6377 154.2139 10.624 154.3428 10.541 154.4287 c -%_4.93066 160.1201 4.16309 170.9209 14.124 174.1885 C -%_8.26465 169.1318 10.4346 157.3584 19.8135 156.4639 c -%_19.9307 156.4521 20.04 156.5225 20.0781 156.6338 c -%_20.1162 156.7451 20.0732 156.8682 19.9746 156.9307 c -%_17.9658 158.208 16.2959 160.7021 16.2959 163.5049 c -%_16.2959 168.1787 19.7178 170.0146 21.9717 170.0146 c -%_25.3936 170.0146 28.2314 166.7588 28.2314 161.835 c -%_28.2314 155.9912 22.9717 151.1514 16.2119 150.3994 c -%_9.58594 149.665 3.42969 152.5537 0.461914 156.8584 c -%_0.392578 156.96 0.260742 156.9971 0.148438 156.9463 c -%_0.036133 156.8955 -0.022461 156.7705 0.007813 156.6514 c -%_3.02637 144.9482 16.8037 139.7744 26.8955 147.1455 C -%_20.2822 139.6436 9.88965 139.54 1.17383 147.2314 c -%_1.08301 147.3115 0.948242 147.3154 0.851563 147.2412 c -%_0.754883 147.1689 0.724609 147.0361 0.77832 146.9287 c -%_3.44531 141.5205 10.0313 135.1084 19.3838 136.0439 c -%_27.9404 136.8994 32.9053 145.0576 33.9072 151.7354 C -%_34.4639 143.2139 32.5137 137.1982 25.1533 131.5889 c -%_25.0566 131.5146 25.0264 131.3818 25.0811 131.2725 c -%_25.1357 131.165 25.2607 131.1104 25.3779 131.1436 c -%_32.1631 133.1045 37.6084 136.5693 40.4268 143.6885 C -%_40.4268 137.5264 38.2881 131.3154 32.9014 127.1768 c -%_32.8037 127.1025 32.7744 126.9717 32.8291 126.8623 c -%_32.8838 126.7529 33.0078 126.6982 33.125 126.7314 c -%_36.5781 127.7158 39.2959 129.2197 41.2627 131.917 C -%_42.5732 120.8174 47.7842 114.2256 53.7881 114.2256 c -%_57.9131 114.2256 60.9932 117.2588 60.9932 122.0967 c -%_60.9932 124.9268 59.5049 128.8994 56.1826 131.1162 c -%_f -%_155.4102 222.7354 m -%_152.248 226.6396 145.8711 228.1279 138.9785 226.7236 C -%_139.4883 231.0244 138.6445 235.5146 137.3672 238.208 c -%_137.3145 238.3174 137.1934 238.375 137.0762 238.3467 c -%_136.959 238.3174 136.8789 238.21 136.8828 238.0889 c -%_137.2578 229.3223 132.2598 222.2451 123.4336 219.1787 C -%_130.3398 223.9346 132.3594 233.3721 129.0723 238.2451 c -%_129.0039 238.3438 128.877 238.3828 128.7656 238.3369 c -%_128.6543 238.292 128.5898 238.1748 128.6113 238.0576 c -%_128.9844 235.9971 128.0059 233.373 125.8984 231.3311 c -%_122.9922 228.5166 119.0488 227.8779 117.0879 229.9014 c -%_115.127 231.9268 115.8906 235.8486 118.7949 238.6631 c -%_119.8555 239.6904 121.0547 240.4248 122.2441 240.8477 c -%_122.3574 240.8877 122.4258 241.001 122.4102 241.1191 c -%_122.3965 241.2383 122.3008 241.3301 122.1816 241.3398 c -%_115.793 241.8945 111.4121 238.0879 108.666 233.4619 c -%_105.8711 228.7568 101.0957 225.0518 95.4551 225.792 c -%_95.3359 225.8076 95.2227 225.7373 95.1816 225.624 c -%_95.1426 225.5107 95.1875 225.3838 95.291 225.3223 c -%_98.0879 223.6377 101.1621 222.9385 105.1543 224.2705 C -%_99.3594 219.3613 91.1074 216.5283 83.3145 219.043 c -%_83.2051 219.0791 83.0859 219.0361 83.0234 218.9395 c -%_82.9609 218.8428 82.9727 218.7168 83.0488 218.6318 c -%_88.957 212.0674 100.7383 211.9365 108.1582 217.2588 C -%_105.1211 212.9424 101.0898 209.7744 93.8652 208.7803 c -%_93.75 208.7646 93.6602 208.6729 93.6465 208.5576 c -%_93.6348 208.4414 93.7012 208.332 93.8105 208.292 c -%_102.1016 205.2139 110.4102 208.3369 117.2559 216.5068 C -%_114.2637 210.1299 109.3496 205.0225 102.4883 202.4951 c -%_102.373 202.4531 102.3047 202.335 102.3262 202.2158 c -%_102.3457 202.0947 102.4492 202.0059 102.5703 202.0029 c -%_106.5137 201.9219 110.0566 202.8604 114.8359 205.5732 C -%_111.3281 199.8838 112.0957 189.9346 117.2051 183.3154 c -%_117.2754 183.2236 117.4004 183.1914 117.5078 183.2373 c -%_117.6133 183.2842 117.6758 183.3965 117.6563 183.5107 c -%_116.4766 190.7119 118.9551 198.8408 123.2656 203.1533 C -%_121.1133 195.5215 123.2598 188.5771 129.1621 183.5088 c -%_129.2324 183.4482 129.332 183.4316 129.418 183.4648 c -%_129.5059 183.498 129.5664 183.5771 129.5801 183.6689 c -%_130.8145 193.0869 141.3496 202.6436 150.1816 203.4443 c -%_150.3066 203.4551 150.4043 203.5557 150.4121 203.6797 c -%_150.4199 203.8037 150.3379 203.917 150.2148 203.9443 c -%_145.9355 204.9131 141.5234 204.4346 137.8262 202.9131 C -%_140.4863 205.8467 143.7656 208.0244 147.3809 209.1592 c -%_147.498 209.1953 147.5703 209.3096 147.5566 209.4307 c -%_147.543 209.5518 147.4434 209.6455 147.3223 209.6543 c -%_142.8125 209.9658 138.3984 208.6484 134.5918 206.1162 C -%_138.9531 212.7373 145.5723 217.6611 154.0195 219.6221 c -%_154.1406 219.6504 154.2227 219.7607 154.2168 219.8848 c -%_154.209 220.0088 154.1133 220.1084 153.9902 220.1221 c -%_142.0723 221.4238 132.2441 216.8037 125.7695 208.2041 C -%_127.418 213.1045 132.1348 217.96 138.7148 220.8232 c -%_144.5605 223.3682 150.5645 223.7695 155.1367 222.333 c -%_155.2422 222.2998 155.3594 222.3398 155.4219 222.4326 c -%_155.4844 222.5244 155.4805 222.6475 155.4102 222.7354 c -%_f -%_102.5059 147.1631 m -%_107.3125 157.6494 106.9707 165.8486 103.0996 176.2178 c -%_103.0547 176.335 102.9336 176.4023 102.8105 176.3779 c -%_102.6875 176.3525 102.6016 176.2412 102.6074 176.1162 c -%_103.2285 163.4951 99.7813 154.4619 92.3086 148.3096 C -%_100.5586 158.1611 96.6621 177.8691 83.4863 177.8691 c -%_73.9004 177.8691 65.9697 169.8936 64.0303 160.3447 c -%_64.0059 160.2236 64.0723 160.1006 64.1885 160.0576 c -%_64.3037 160.0127 64.4346 160.0576 64.4971 160.1631 c -%_67.3398 164.9248 71.9063 168.0146 76.9551 168.0146 c -%_85.0898 168.0146 87.4961 161.5479 87.4961 157.0166 c -%_87.4961 150.8291 82.5703 145.6729 78.7891 145.6729 c -%_75.3516 145.6729 73.748 148.4971 73.748 150.6006 c -%_73.748 154.499 76.7461 157.7666 80.125 158.7646 c -%_80.2441 158.7998 80.3223 158.9189 80.3047 159.0439 c -%_80.2852 159.1689 80.1797 159.2607 80.0547 159.2627 c -%_75.9473 159.2881 72.4766 157.4072 70.4238 153.6943 C -%_70.1543 156.5693 70.1514 158.3799 71.0645 161.417 c -%_71.0996 161.5342 71.0459 161.6592 70.9385 161.7158 c -%_70.8291 161.7725 70.6963 161.7432 70.6221 161.6475 c -%_63.2656 152.2549 66.7861 136.0225 72.6016 129.29 C -%_67.0693 133.2725 62.1846 141.9229 62.2617 153.6826 c -%_62.2627 153.8057 62.1768 153.9092 62.0566 153.9326 c -%_61.9365 153.958 61.8174 153.8916 61.7725 153.7783 c -%_57.6641 143.5264 59.8438 124.5303 71.0537 113.9268 C -%_68.1699 113.5303 65.1865 113.5811 61.9287 114.6201 c -%_61.8135 114.6553 61.6885 114.6064 61.6299 114.501 c -%_61.5713 114.3936 61.5947 114.2607 61.6885 114.1826 c -%_65.7803 110.7275 71.5029 109.6416 76.9551 109.6416 C -%_72.2578 115.1416 73.8184 126.1963 81.3105 126.1963 c -%_86.6582 126.1963 89.0859 117.8975 84.957 113.415 c -%_84.8789 113.3291 84.8691 113.2002 84.9316 113.1045 c -%_84.9961 113.0068 85.1172 112.9639 85.2285 113.0029 c -%_90.0078 114.6572 95.1738 118.792 95.1738 124.0186 c -%_95.1738 129.0615 90.3613 133.4131 83.373 133.0693 C -%_92.1914 135.5752 101.4238 132.8018 106.2539 126.8174 c -%_106.3281 126.7236 106.459 126.6963 106.5645 126.749 c -%_106.6719 126.8037 106.7266 126.9248 106.6973 127.04 c -%_103.9063 137.7568 94.7305 142.2393 83.2578 140.7471 C -%_92.5391 144.5029 106.5078 141.2275 112.6816 133.4365 c -%_112.7539 133.3447 112.8809 133.3154 112.9883 133.3643 c -%_113.0938 133.415 113.1523 133.5322 113.1289 133.6455 c -%_111.7578 140.2607 108.2656 145.208 102.5059 147.1631 C -%_f -%_*U -%_*u -%_1 D -%_0.41001 0 0.011078 0 0.615686 0.862745 0.976471 Xa -%_0 0.4 0 0 0 Xy -%_128.8887 166.4502 m -%_128.8672 166.3311 128.7637 166.2432 128.6426 166.2432 c -%_115.7363 166.1064 103.8887 162.9756 94.6719 154.7275 C -%_102.7012 160.2861 117.6133 162.2373 126.1992 158.3467 c -%_126.3086 158.2959 126.3672 158.1748 126.3398 158.0576 c -%_126.3145 157.9404 126.207 157.8584 126.0859 157.8604 c -%_115.4063 158.1514 106.8066 154.8545 100.1016 148.8975 C -%_106.9707 148.4736 112.6758 144.1572 112.6582 139.0518 c -%_112.6582 138.9326 112.5742 138.8291 112.457 138.8037 c -%_112.3418 138.7803 112.2227 138.8389 112.1738 138.9482 c -%_111.0527 141.4365 107.4258 142.7295 103.5918 141.8291 c -%_99.4121 140.8467 96.5918 137.6396 97.291 134.6631 c -%_97.7617 132.6494 99.7266 131.2607 102.2422 130.876 c -%_102.3691 130.8564 102.4629 130.7471 102.459 130.6182 c -%_102.4551 130.4912 102.3574 130.3857 102.2285 130.3721 c -%_101.1602 130.2705 100.0488 130.2666 98.9121 130.376 c -%_92.4219 130.9932 87.3984 134.9697 86.9629 139.5537 C -%_82.25 139.0068 78.0781 136.3955 76.584 132.7803 c -%_76.5391 132.6709 76.4258 132.6084 76.3086 132.626 c -%_76.1934 132.6436 76.1055 132.7393 76.0957 132.8564 c -%_75.7188 137.6064 77.3535 140.6943 81.0664 143.71 C -%_75.6816 141.6514 69.6201 141.5459 63.8096 144.2471 c -%_63.7041 144.2979 63.6455 144.4131 63.667 144.5283 c -%_63.6904 144.6436 63.79 144.7275 63.9072 144.7314 c -%_68.7861 144.9209 72.3242 146.4873 75.6406 149.8037 C -%_57.3838 144.6689 42.5518 156.0049 47.6846 172.8545 c -%_47.7197 172.9717 47.8311 173.0459 47.9521 173.0342 c -%_48.0732 173.0225 48.1689 172.9268 48.1787 172.8057 c -%_49.0967 163.0908 55.8818 156.6885 66.04 155.7295 C -%_60.6533 157.7881 55.04 162.7041 54.4834 171.2627 c -%_54.4756 171.3857 54.5557 171.4951 54.6748 171.5264 c -%_54.7939 171.5557 54.917 171.4951 54.9678 171.3838 c -%_57.7666 165.2295 63.2646 162.1201 69.1279 161.5713 C -%_62.7939 164.1533 58.7314 170.1748 57.5576 177.9932 c -%_57.5381 178.1162 57.6123 178.2334 57.7314 178.2725 c -%_57.8486 178.3096 57.9775 178.2568 58.0342 178.1455 c -%_61.8994 170.5635 70.1904 165.3525 80.4824 169.335 c -%_91.0996 173.4443 95.7559 185.7197 96.7852 194.374 c -%_96.8008 194.4971 96.9004 194.5908 97.0234 194.5986 c -%_97.1465 194.6045 97.2559 194.5225 97.2852 194.4033 c -%_101.0039 178.7139 93.7012 162.4541 80.6484 155.5635 C -%_87.7441 157.5654 94.0879 161.8232 97.6758 168.917 C -%_105.9688 169.9346 111.6797 172.7803 114.5332 178.1572 c -%_114.5898 178.2627 114.7129 178.3154 114.8281 178.2822 c -%_114.9434 178.2471 115.0195 178.1357 115.0098 178.0166 c -%_114.8281 175.9072 114.0684 171.6865 110.9355 169.7451 C -%_117.9004 169.7568 123.4414 168.8525 128.7344 166.7314 c -%_128.8457 166.6865 128.9121 166.5693 128.8887 166.4502 c -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_0 D -%_99.4023 219.9189 m -%_99.502 219.8545 99.6309 219.8643 99.7188 219.9463 c -%_99.8047 220.0264 99.8223 220.1553 99.7637 220.2588 c -%_98.1445 223.0557 99.623 227.0713 102.8145 227.0713 c -%_108.5352 227.0713 111.2852 216.3018 110.4102 206.4795 C -%_108.248 212.2334 106.377 214.5342 103.0625 217.2744 c -%_102.9688 217.3506 102.834 217.3525 102.7402 217.2744 c -%_102.6465 217.1982 102.6191 217.0654 102.6777 216.958 c -%_107.5332 207.8799 108.5742 200.8936 108.5742 192.874 C -%_107.1113 198.8311 105.3789 202.1943 100.4473 207.2549 c -%_100.3613 207.3428 100.2246 207.3564 100.123 207.2861 c -%_100.0215 207.2158 99.9844 207.083 100.0352 206.9717 c -%_105.334 195.3799 104.9297 182.5244 100.9824 172.708 c -%_100.9434 172.6104 100.9688 172.499 101.0449 172.4268 c -%_101.123 172.3545 101.2344 172.3389 101.3301 172.3838 c -%_106.5352 174.9346 109.5938 176.6104 114.082 182.7744 C -%_112.7246 190.1729 113.8535 193.8213 117.2539 199.9678 C -%_113.3164 190.0518 115.4121 176.0752 125.4414 170.3779 c -%_125.5508 170.3154 125.6895 170.3428 125.7656 170.4424 c -%_125.8438 170.542 125.8379 170.6826 125.75 170.7744 c -%_121.9688 174.7295 119.2188 181.4092 121.5938 188.7002 C -%_120.0645 178.3115 129.1895 169.5869 139.373 169.5869 c -%_148.9727 169.5869 155.5234 177.0947 154.9824 184.5264 c -%_154.4453 191.8916 149.5391 195.4971 145.3105 197.0244 c -%_145.1992 197.0654 145.0742 197.0225 145.0117 196.9229 c -%_144.9473 196.8232 144.9609 196.6924 145.0449 196.6084 c -%_150.6543 190.915 151.4219 180.1162 141.4609 176.8486 C -%_147.3203 181.9053 145.1504 193.6768 135.7715 194.5732 c -%_135.6543 194.583 135.5449 194.5127 135.5078 194.4014 c -%_135.4688 194.292 135.5117 194.1689 135.6113 194.1064 c -%_137.6191 192.8271 139.2891 190.335 139.2891 187.5322 c -%_139.2891 182.8584 135.8672 181.0205 133.6133 181.0205 c -%_130.1914 181.0205 127.3535 184.2764 127.3535 189.2021 c -%_127.3535 195.0439 132.6133 199.8857 139.373 200.6357 c -%_146 201.3721 152.1563 198.4814 155.123 194.1768 c -%_155.1934 194.0752 155.3242 194.04 155.4375 194.0908 c -%_155.5488 194.1416 155.6074 194.2646 155.5781 194.3838 c -%_152.5586 206.0869 138.7813 211.2607 128.6895 203.8916 C -%_135.3027 211.3916 145.6953 211.4971 154.4121 203.8057 c -%_154.502 203.7256 154.6367 203.7197 154.7344 203.7939 c -%_154.8301 203.8682 154.8613 203.999 154.8066 204.1084 c -%_152.1406 209.5146 145.5547 215.9268 136.2012 214.9932 c -%_127.6445 214.1377 122.6797 205.9775 121.6777 199.3018 C -%_121.1211 207.8232 123.0723 213.8369 130.4316 219.4463 c -%_130.5293 219.5205 130.5586 219.6533 130.5039 219.7627 c -%_130.4492 219.8721 130.3242 219.9268 130.207 219.8916 c -%_123.4219 217.9326 117.9766 214.4678 115.1582 207.3486 C -%_115.1582 213.5088 117.2969 219.7197 122.6836 223.8584 c -%_122.7813 223.9326 122.8105 224.0654 122.7559 224.1748 c -%_122.7012 224.2822 122.5781 224.3369 122.4609 224.3037 c -%_119.0078 223.3213 116.2891 221.8154 114.3223 219.1201 C -%_113.0117 230.2197 107.8008 236.8096 101.7969 236.8096 c -%_97.6719 236.8096 94.5918 233.7764 94.5918 228.9404 c -%_94.5918 226.1104 96.0801 222.1377 99.4023 219.9189 c -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_0.174805 128.3018 m -%_3.33691 124.3975 9.71387 122.9092 16.6064 124.3135 C -%_16.0967 120.0107 16.9404 115.5225 18.2178 112.8271 c -%_18.2705 112.7197 18.3916 112.6611 18.5088 112.6904 c -%_18.626 112.7197 18.7061 112.8271 18.7021 112.9482 c -%_18.3271 121.7139 23.3252 128.79 32.1514 131.8564 C -%_25.2451 127.1006 23.2256 117.6631 26.5127 112.792 c -%_26.5811 112.6924 26.708 112.6533 26.8193 112.6982 c -%_26.9307 112.7432 26.9951 112.8604 26.9736 112.9795 c -%_26.6006 115.04 27.5791 117.6631 29.6865 119.7041 c -%_32.5928 122.5186 36.5361 123.1572 38.4971 121.1338 c -%_40.458 119.1084 39.6943 115.1865 36.79 112.374 c -%_35.7295 111.3467 34.5303 110.6104 33.3408 110.1885 c -%_33.2275 110.1475 33.1592 110.0342 33.1748 109.917 c -%_33.1885 109.7979 33.2842 109.7061 33.4033 109.6963 c -%_39.792 109.1416 44.1729 112.9482 46.9189 117.5732 c -%_49.7139 122.2783 54.4893 125.9854 60.1299 125.2451 c -%_60.249 125.2295 60.3623 125.2998 60.4033 125.4131 c -%_60.4424 125.5264 60.3975 125.6514 60.2939 125.7139 c -%_57.4971 127.3975 54.4229 128.0967 50.4307 126.7666 C -%_56.2256 131.6748 64.4775 134.5068 72.2715 131.9932 c -%_72.3809 131.958 72.5 132.001 72.5625 132.0967 c -%_72.625 132.1924 72.6152 132.3193 72.5371 132.4053 c -%_66.6279 138.9697 54.8467 139.1006 47.4268 133.7764 C -%_50.4639 138.0928 54.4951 141.2627 61.7197 142.2549 c -%_61.835 142.2705 61.9248 142.3643 61.9385 142.4795 c -%_61.9502 142.5947 61.8838 142.7041 61.7744 142.7451 c -%_53.4834 145.8213 45.1748 142.7002 38.3291 134.5283 C -%_41.3213 140.9072 46.2354 146.0146 53.0967 148.542 c -%_53.2119 148.583 53.2803 148.7002 53.2588 148.8213 c -%_53.2393 148.9424 53.1357 149.0303 53.0146 149.0322 c -%_49.0713 149.1143 45.5283 148.1748 40.749 145.4619 C -%_44.2568 151.1533 43.4893 161.1006 38.3799 167.7217 c -%_38.3096 167.8135 38.1846 167.8447 38.0771 167.7998 c -%_37.9717 167.7529 37.9092 167.6396 37.9287 167.5244 c -%_39.1084 160.3252 36.6299 152.1963 32.3193 147.8838 C -%_34.4717 155.5146 32.3252 162.46 26.4229 167.5264 c -%_26.3525 167.5869 26.2529 167.6045 26.167 167.5713 c -%_26.0791 167.5381 26.0186 167.46 26.0049 167.3682 c -%_24.7705 157.9502 14.2354 148.3936 5.40332 147.5928 c -%_5.27832 147.5811 5.18066 147.4814 5.17285 147.3564 c -%_5.16504 147.2314 5.24707 147.1201 5.37012 147.0928 c -%_9.64941 146.124 14.0615 146.6025 17.7588 148.1221 C -%_15.0986 145.1904 11.8193 143.0127 8.2041 141.8779 c -%_8.08691 141.8408 8.01465 141.7275 8.02832 141.6064 c -%_8.04199 141.4854 8.1416 141.3896 8.2627 141.3818 c -%_12.7725 141.0713 17.1865 142.3877 20.9932 144.9209 C -%_16.6318 138.2998 10.0127 133.376 1.56543 131.4131 c -%_1.44434 131.3857 1.3623 131.2744 1.36816 131.1514 c -%_1.37598 131.0283 1.47168 130.9287 1.59473 130.915 c -%_13.5127 129.6123 23.3408 134.2334 29.8154 142.833 C -%_28.167 137.9307 23.4502 133.0771 16.8701 130.2139 c -%_11.0244 127.6689 5.02051 127.2666 0.448242 128.7041 c -%_0.342773 128.7373 0.225586 128.6963 0.163086 128.6045 c -%_0.100586 128.5107 0.104492 128.3877 0.174805 128.3018 c -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_53.0791 203.874 m -%_48.2725 193.3877 48.6143 185.1885 52.4854 174.8193 c -%_52.5303 174.7021 52.6514 174.6338 52.7744 174.6592 c -%_52.8975 174.6846 52.9834 174.7959 52.9775 174.9189 c -%_52.3564 187.542 55.8037 196.5732 63.2764 202.7275 C -%_55.0264 192.874 58.9229 173.167 72.0996 173.167 c -%_81.6855 173.167 89.6152 181.1436 91.5547 190.6924 c -%_91.5801 190.8135 91.5137 190.9346 91.3965 190.9795 c -%_91.2813 191.0244 91.1504 190.9795 91.0879 190.8721 c -%_88.2461 186.1104 83.6797 183.0205 78.6309 183.0205 c -%_70.4951 183.0205 68.0889 189.4873 68.0889 194.0205 c -%_68.0889 200.2061 73.0156 205.3623 76.7969 205.3623 c -%_80.2344 205.3623 81.8379 202.54 81.8379 200.4365 c -%_81.8379 196.5381 78.8398 193.2705 75.4629 192.2725 c -%_75.3418 192.2354 75.2656 192.1182 75.2832 191.9932 c -%_75.3008 191.8682 75.4063 191.7744 75.5332 191.7744 c -%_79.6387 191.749 83.1094 193.6279 85.1621 197.3428 C -%_85.4316 194.4678 85.4336 192.6572 84.5215 189.6182 c -%_84.4863 189.501 84.5391 189.376 84.6465 189.3193 c -%_84.7559 189.2646 84.8887 189.292 84.9629 189.3896 c -%_92.3203 198.7822 88.7988 215.0127 82.9844 221.7471 C -%_88.5156 217.7646 93.4004 209.1123 93.3242 197.3525 c -%_93.3223 197.2314 93.4082 197.126 93.5293 197.1025 c -%_93.6484 197.0791 93.7676 197.1436 93.8125 197.2568 c -%_97.9219 207.5107 95.7422 226.5049 84.5313 237.1084 C -%_87.416 237.5068 90.3984 237.4561 93.6563 236.417 c -%_93.7715 236.3799 93.8965 236.4307 93.9551 236.5361 c -%_94.0137 236.6416 93.9902 236.7744 93.8965 236.8525 c -%_89.8047 240.3076 84.082 241.3936 78.6309 241.3936 C -%_83.3281 235.8936 81.7676 224.8408 74.2773 224.8408 c -%_68.9268 224.8408 66.499 233.1396 70.6279 237.6221 c -%_70.7061 237.708 70.7158 237.835 70.6533 237.9326 c -%_70.5889 238.0303 70.4678 238.0713 70.3564 238.0342 c -%_65.5771 236.3779 60.4111 232.2451 60.4111 227.0166 c -%_60.4111 221.9756 65.2236 217.6221 72.2148 217.9658 C -%_63.3936 215.4619 54.1611 218.2334 49.3311 224.2197 c -%_49.2568 224.3115 49.126 224.3408 49.0205 224.2861 c -%_48.9131 224.2334 48.8584 224.1123 48.8877 223.9951 c -%_51.6787 213.2803 60.8545 208.7959 72.3281 210.29 C -%_63.0459 206.5322 49.0771 209.8076 42.9033 217.5986 c -%_42.8311 217.6904 42.7041 217.7217 42.5967 217.6709 c -%_42.4912 217.6221 42.4326 217.5049 42.4561 217.3896 c -%_43.8271 210.7744 47.3193 205.8291 53.0791 203.874 C -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_*U -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_U -%_/ArtDictionary : -%_1 /Bool (AIPattern_Is_Main_Copy_of_EditGroup) , -%_; -%_ -%_9 () XW -%_U -%_/ArtDictionary : -%_5 /Int (AIPattern_Editor_Preview_Rows) , -%_109.6416 /Real (AIPattern_Editor_Tile_Height) , -%_1 /Bool (AIPattern_Editor_Top_in_Front) , -%_1 /Bool (AIPattern_Editor_Left_in_Front) , -%_1 /Bool (AIPattern_Editor_Dim_Copies_Key) , -%_5 /Int (AIPattern_Editor_Preview_Cols) , -%_108.3384 /Real (AIPattern_Editor_Tile_Width) , -%_4 /Int (AIPattern_Editor_Editable_Copy_Loc_Key) , -%_50 /Real (AIPattern_Editor_Dim_Percent_Key) , -%_; -%_ -%_9 () XW -E -%AI3_EndPattern -%AI5_End_NonPrinting-- -%AI5_Begin_NonPrinting -Np -%AI8_BeginBrushPattern -(Unnamed 6) 0 A -0 Xw -u -u -0 1 0 0 0 Xy -0 J 0 j 1 w 4 M []0 d 0 XR --4018.5 4018.5 m --3917.1816 4018.5 L --3917.1816 4010.7832 L --4018.5 4010.7832 L --4018.5 4018.5 L -n -u -0 O -0.720851 0.673426 0.586358 0.790768 0.137255 0.121569 0.12549 Xa --3917.3 4012.207 m --3917.1504 4012.2439 -3917.2041 4011.8247 -3917.1816 4011.7495 C --3917.4319 4011.8423 -3917.2937 4012.3159 -3917.3 4012.207 C -f --3919.7693 4013.1582 m --3919.7256 4012.9871 L --3920.0896 4013.4063 L --3919.7693 4013.1582 L -f --3922.0784 4013.1504 m --3921.8601 4013.8643 -3921.2417 4013.0352 -3920.8303 4013.2888 C --3920.7625 4013.4524 L --3920.5769 4012.8772 L --3921.0769 4012.9683 -3921.7263 4013.3499 -3922.0784 4013.1504 C -f --3923.3096 4011.6072 m --3923.2336 4011.8843 -3923.5759 4011.8455 -3923.0225 4011.6936 C --3923.0503 4011.6631 -3923.0583 4011.6455 -3923.0745 4011.623 C --3923.1243 4011.6272 -3923.1929 4011.6262 -3923.3096 4011.6072 C -f --3923.0745 4011.623 m --3922.8313 4011.603 -3923.2336 4011.3904 -3923.0745 4011.623 C --3923.0745 4011.623 L -f --3924.1975 4011.7822 m --3923.8772 4011.5342 L --3923.9441 4011.3704 -3924.2292 4011.333 -3924.1233 4011.2134 C --3924.4519 4011.3496 -3924.3843 4011.5127 -3924.1975 4011.7822 C -f --3924.5012 4012.303 m --3924.3352 4012.1982 L --3924.3643 4012.1294 -3924.4082 4012.105 -3924.5012 4012.303 C -f --3923.9832 4011.9768 m --3924.3352 4012.1982 L --3924.2888 4012.313 -3924.2839 4012.5447 -3924.1736 4012.1184 C --3924.2024 4012.3296 -3924.1328 4012.1262 -3923.9832 4011.9768 C -f --3923.7839 4012.0852 m --3923.6042 4012.24 -3923.3721 4012.3384 -3923.6936 4012.5852 C --3923.0808 4012.4871 -3923.1711 4011.9856 -3923.7839 4012.0852 C -f --3922.1963 4013.8887 m --3921.9561 4014.0984 L --3921.7483 4013.8584 L --3921.8521 4013.9771 -3922.2112 4013.665 -3922.1963 4013.8887 C -f --3926.1929 4011.4126 m --3926.2129 4011.5647 -3926.0852 4011.8174 -3926.0613 4012.012 C --3925.8247 4011.8374 L --3925.9463 4011.7334 -3926.1768 4011.6375 -3926.1929 4011.4126 C -f --3926.0613 4012.012 m --3926.4153 4012.2727 L --3926.0991 4012.303 -3926.0413 4012.1792 -3926.0613 4012.012 C -f --3924.5583 4013.0955 m --3923.9768 4012.5479 L --3924.6704 4013.103 L --3924.5583 4013.0955 L -f --3927.5449 4011.3936 m --3927.3442 4011.0422 L --3927.7017 4011.5735 L --3927.5449 4011.3936 L -f --3928.4417 4011.4551 m --3928.2932 4011.1638 -3928.6453 4010.9624 -3928.4883 4010.7832 C --3928.7319 4010.8352 -3928.9399 4011.0852 -3929.1272 4011.3103 C --3928.9282 4011.1848 -3928.7161 4011.2168 -3928.4417 4011.4551 C -f --3929.4417 4011.6375 m --3929.3423 4011.5679 -3929.2393 4011.4431 -3929.1272 4011.3103 C --3929.2329 4011.3772 -3929.3369 4011.4744 -3929.4417 4011.6375 C -f --3927.0183 4012.1975 m --3927.0457 4012.1055 -3927.0984 4011.8655 -3927.2969 4011.7639 C --3927.1577 4012.1912 L --3927.1152 4012.1936 -3927.0671 4012.1951 -3927.0183 4012.1975 C -f --3927.1528 4012.2046 m --3927.1577 4012.1912 L --3927.3088 4012.1814 -3927.4136 4012.1719 -3927.4585 4012.167 c --3927.4199 4012.1707 -3927.3279 4012.1824 -3927.1528 4012.2046 C -f --3926.9832 4012.1992 m --3926.9961 4012.1982 -3927.0056 4012.1975 -3927.0183 4012.1975 C --3927.0049 4012.24 -3926.9968 4012.2534 -3926.9832 4012.1992 C -f --3925.4863 4012.709 m --3925.6943 4012.948 -3926.1279 4013.2039 -3925.7083 4013.5686 C --3925.5591 4013.2759 -3925.7993 4013.0686 -3925.4863 4012.709 c -f --3926.8103 4012.7334 m --3926.4343 4012.8311 L --3926.4417 4012.7183 -3926.5095 4012.5535 -3926.4065 4012.4351 C --3926.8103 4012.7334 L -f --3926.9944 4012.8694 m --3926.8103 4012.7334 L --3926.9497 4012.6975 L --3926.9944 4012.8694 L -f --3928.7976 4012.0376 m --3928.96 4012.2239 -3929.1377 4012.239 -3929.3384 4012.269 C --3929.1233 4012.353 -3928.9009 4012.3992 -3928.6897 4012.3972 C --3928.6599 4012.2632 -3928.5671 4012.0222 -3928.7976 4012.0376 C -f --3927.9983 4012.1563 m --3928.0095 4012.1663 -3928.0239 4012.1707 -3928.0344 4012.1807 C --3928.0122 4012.217 -3927.9944 4012.2283 -3927.9983 4012.1563 C -f --3931.3142 4012.2664 m --3931.3032 4012.2896 -3931.2937 4012.3196 -3931.2825 4012.344 C --3931.28 4012.3196 -3931.2783 4012.2952 -3931.2751 4012.27 C --3931.3142 4012.2664 L -f --3928.6536 4012.4771 m --3928.4919 4012.5598 -3928.3953 4012.4551 -3928.3032 4012.324 C --3928.4241 4012.3662 -3928.5522 4012.3943 -3928.6897 4012.3972 C --3928.7031 4012.4583 -3928.7056 4012.4983 -3928.6536 4012.4771 C -f --3929.9929 4011.8374 m --3929.9087 4011.9272 -3929.8132 4012.0032 -3929.7129 4012.0723 C --3929.7952 4011.937 -3929.9631 4011.7263 -3929.9929 4011.8374 C -f --3928.0889 4012.0623 m --3928.0808 4012.0559 -3928.0735 4012.0479 -3928.0647 4012.0432 C --3928.1177 4011.9524 -3928.1111 4011.9966 -3928.0889 4012.0623 C -f --3928.0889 4012.0623 m --3928.1721 4012.1243 -3928.2375 4012.2295 -3928.3032 4012.324 C --3928.2048 4012.2896 -3928.1135 4012.2439 -3928.0344 4012.1807 C --3928.0544 4012.1504 -3928.0745 4012.104 -3928.0889 4012.0623 C -f --3931.9128 4015.009 m --3931.8843 4014.613 -3931.4592 4014.2471 -3931.0923 4014.6719 C --3930.7312 4014.375 -3930.9673 4013.0723 -3931.2825 4012.344 C --3931.2937 4012.5166 -3931.2937 4012.6763 -3931.6653 4012.9104 C --3931.5352 4013.1262 -3930.8408 4013.4163 -3931.1543 4013.7747 C --3931.6465 4013.9783 -3931.5576 4013.6343 -3931.7969 4013.425 C --3931.5935 4013.9182 -3932.4231 4014.1431 -3932.3159 4014.8687 C --3931.8843 4014.613 L --3931.8762 4014.7263 -3932.0327 4014.9063 -3931.9128 4015.009 C -f --3930.5745 4012.3843 m --3930.4216 4012.3352 L --3930.5959 4012.2664 -3930.7207 4012.1079 -3930.9504 4011.7976 C --3931.2048 4011.9915 -3931.2576 4012.1382 -3931.2751 4012.27 C --3930.5222 4012.3252 L --3930.5745 4012.3843 L -f --3929.7351 4012.3335 m --3929.8545 4012.7644 -3930.2217 4012.948 -3929.9968 4013.4143 C --3929.5481 4013.3843 -3929.6824 4013.0542 -3929.4143 4012.8672 C --3930.1384 4012.9744 -3929.2063 4012.6272 -3929.7295 4012.3831 C --3929.5872 4012.3096 -3929.4592 4012.2871 -3929.3384 4012.269 C --3929.4688 4012.217 -3929.5945 4012.1519 -3929.7129 4012.0723 C --3929.7063 4012.0823 -3929.7017 4012.0896 -3929.6963 4012.0984 C --3929.6929 4012.0984 L --3929.6929 4012.1006 -3929.6936 4012.1016 -3929.6936 4012.104 C --3929.6624 4012.1582 -3929.6521 4012.1912 -3929.6873 4012.1604 C --3929.6897 4012.165 -3929.6985 4012.167 -3929.7024 4012.1692 C --3929.7073 4012.2283 -3929.7207 4012.2808 -3929.7351 4012.3311 C --3929.9448 4012.2422 -3929.7681 4012.22 -3929.7024 4012.1692 C --3929.7 4012.1472 -3929.6943 4012.1272 -3929.6936 4012.104 C --3929.6943 4012.1023 -3929.6953 4012.1006 -3929.6963 4012.0984 C --3930.4216 4012.3352 L --3930.2681 4012.395 -3930.0759 4012.3831 -3929.7351 4012.3335 C -f --3926.0952 4014.4951 m --3926.1177 4014.457 -3926.1167 4014.4263 -3926.1184 4014.395 C --3926.1653 4014.448 -3926.1831 4014.4839 -3926.0952 4014.4951 C -f --3926.3936 4014.2351 m --3926.3408 4014.175 -3926.2969 4014.0032 -3926.1255 4014.0471 C --3925.9768 4014.1763 -3926.1262 4014.2534 -3926.1184 4014.395 C --3926.0151 4014.2808 -3925.7568 4014.0862 -3926.0808 4013.8762 C --3926.1321 4013.9351 L --3926.4241 4013.7871 -3926.7993 4013.2495 -3926.7483 4013.1902 C --3926.6631 4013.5784 -3926.5879 4013.8542 -3926.3936 4014.2351 C -f --3928.0852 4013.3943 m --3928.6892 4013.6055 L --3928.3816 4013.9783 L --3928.3972 4013.7544 L --3928.0537 4013.8423 -3928.1279 4013.5667 -3928.0852 4013.3943 C -f --3931.3833 4012.052 m --3931.3032 4011.5967 L --3931.6521 4012.24 L --3931.3833 4012.052 L -f --3932.1682 4012.1062 m --3932.1392 4011.7112 L --3932.3464 4011.9495 L --3932.1682 4012.1062 L -f --3976.4617 4017.0166 m --3976.6392 4017.1287 L --3976.5552 4017.0942 -3976.5012 4017.0564 -3976.4617 4017.0166 C -f --3975.1768 4017.0435 m --3975.1453 4016.8484 L --3975.2048 4016.9558 -3975.2292 4017.0352 -3975.1768 4017.0435 C -f --3951.4456 4012.1504 m --3951.7041 4011.7815 -3951.9929 4011.2083 -3951.9617 4011.6536 C --3951.8823 4012.0872 L --3951.7017 4012.009 -3951.5632 4012.0576 -3951.4456 4012.1504 C -f --3964.6479 4014.7415 m --3964.6233 4014.7832 -3964.5977 4014.8286 -3964.5723 4014.8728 C --3964.5095 4014.7246 -3964.4504 4014.5872 -3964.3977 4014.4583 C --3964.4729 4014.5471 -3964.5583 4014.6416 -3964.6479 4014.7415 C -f --3964.8303 4016.5364 m --3965.1711 4016.2566 L --3965.0945 4016.3542 -3964.9849 4016.448 -3964.8303 4016.5364 C -f --3983.4792 4017.4768 m --3983.6863 4017.9182 L --3983.3623 4017.9163 -3983.5049 4017.6936 -3983.4792 4017.4768 C -f --3940.2073 4012.2664 m --3940.4304 4012.0967 -3940.6079 4012.0254 -3940.7639 4012.0044 C --3940.4951 4012.2534 -3940.2783 4012.6272 -3940.2073 4012.2664 C -f --3975.9561 4012.4126 m --3976.0647 4012.4912 -3976.1111 4012.5796 -3976.1079 4012.6763 C --3975.9961 4012.6023 -3975.9329 4012.519 -3975.9561 4012.4126 C -f --3941.4082 4012.0059 m --3941.3689 4012.0496 -3941.3303 4012.071 -3941.2903 4012.1079 C --3941.1272 4012.0352 -3940.9631 4011.9768 -3940.7639 4012.0044 C --3940.9624 4011.8196 -3941.1897 4011.7046 -3941.4082 4012.0059 C -f --4008.9297 4017.1172 m --4008.9482 4017.0984 -4008.9705 4017.0884 -4008.9873 4017.0652 C --4008.9929 4017.1243 -4008.9673 4017.1272 -4008.9297 4017.1172 C -f --4016.3442 4012.74 m --4016.2712 4012.7124 -4016.1521 4012.7119 -4016.0398 4012.7063 C --4016.0945 4012.6763 -4016.1863 4012.6792 -4016.3442 4012.74 c -f --3935.3264 4011.917 m --3935.1599 4011.8887 -3935.3 4011.8694 -3935.3264 4011.917 C --3935.3264 4011.917 L -f --3934.5168 4013.6331 m --3934.5522 4013.6814 -3934.5791 4013.7439 -3934.5833 4013.844 C --3934.5696 4013.74 -3934.5464 4013.6736 -3934.5168 4013.6331 c -f --3943.0664 4014.7063 m --3943.0713 4014.7063 -3943.0752 4014.7046 -3943.0808 4014.7046 C --3943.0313 4014.7896 -3943.0398 4014.7732 -3943.0664 4014.7063 C -f --3935.0759 4012.1143 m --3935.1384 4012.061 -3935.2104 4012.0166 -3935.2888 4011.9856 C --3935.2544 4012.019 -3935.1897 4012.061 -3935.0759 4012.1143 C -f --3935.1096 4011.9092 m --3935.0522 4011.9287 -3935.0071 4011.9395 -3934.9641 4011.9512 C --3934.9431 4011.8792 -3934.9617 4011.8335 -3935.1096 4011.9092 C -f --3935.5583 4011.9407 m --3935.4631 4011.9336 -3935.3743 4011.9539 -3935.2888 4011.9856 C --3935.3215 4011.9558 -3935.3352 4011.9319 -3935.3264 4011.917 C --3935.3752 4011.9236 -3935.4441 4011.9326 -3935.5583 4011.9407 c -f --3995.2932 4015.9558 m --3995.3042 4015.9424 -3995.3169 4015.9336 -3995.3289 4015.915 C --3995.4968 4016.0952 -3995.4231 4016.0667 -3995.2932 4015.9558 C -f --3955.7783 4016.6563 m --3955.7705 4016.6519 -3955.7664 4016.6404 -3955.7593 4016.636 C --3955.7671 4016.6311 -3955.7769 4016.625 -3955.7839 4016.6199 C --3955.7783 4016.6563 L -f --3956.3762 4016.979 m --3956.1216 4016.4392 -3955.9768 4016.5056 -3955.7839 4016.6199 C --3955.9817 4015.3694 L --3956.3762 4016.979 L -f -*u --3979.5383 4017.1416 m --3979.1184 4017.532 L --3979.6252 4018.1736 -3979.9919 4017.9524 -3979.5977 4018.5 C --3979.5383 4017.1416 -3977.9656 4018.3616 -3977.9072 4017.0039 C --3977.6304 4017.2896 L --3977.7097 4017.2766 -3977.7224 4017.356 -3977.8008 4017.343 C --3977.2625 4017.9934 -3977.4009 4016.3616 -3976.7073 4016.5542 C --3976.4656 4016.6582 -3976.2969 4016.855 -3976.4617 4017.0166 C --3975.9231 4016.6807 L --3975.7664 4016.707 -3975.8047 4016.9431 -3975.9607 4016.917 C --3975.1392 4016.8086 L --3975.1453 4016.8484 L --3975.0281 4016.636 -3974.7625 4016.3064 -3974.6328 4016.1663 C --3974.4241 4016.3616 -3974.7375 4016.3103 -3974.6841 4016.479 C --3974.2292 4016.1504 L --3974.0439 4016.5032 -3974.4209 4016.844 -3974.7351 4016.7935 C --3974.3103 4018.1494 -3974.3577 4016.4524 -3973.4409 4017.2444 C --3973.8704 4017.4163 L --3973.5935 4018.1863 -3973.2583 4017.9072 -3972.7727 4018.3875 C --3972.8879 4018.1367 -3973.7449 4017.1775 -3973.2512 4016.8391 C --3973.1121 4016.9414 -3972.9287 4016.99 -3972.6624 4016.7168 C --3972.6599 4017.2 -3972.3999 4017.0811 -3972.0745 4017.0535 C --3972.0967 4017.6936 L --3971.7449 4017.5088 -3971.7727 4017.1831 -3971.5657 4016.895 C --3971.1736 4016.9583 -3971.0923 4017.4536 -3971 4017.8711 C --3970.3721 4017.9727 -3971.4336 4017.0767 -3970.6904 4016.9558 C --3970.1682 4017.2007 -3969.8015 4016.9392 -3969.1768 4016.5564 C --3968.8113 4016.7776 -3969.2407 4016.948 -3969.1096 4017.1311 C --3968.7856 4016.6206 L --3968.7063 4016.6331 -3968.7319 4016.7896 -3968.7449 4016.8687 C --3968.4719 4016.6707 -3968.7224 4016.229 -3968.2932 4016.0559 C --3968.1775 4015.3511 -3967.4121 4017.0852 -3966.8809 4016.2854 C --3966.75 4016.467 -3966.9441 4016.6775 -3966.9041 4016.925 C --3966.1753 4016.3999 -3966.2793 4016.5435 -3965.6809 4015.8367 C --3965.1711 4016.2566 L --3965.5457 4015.7766 -3965.0671 4015.2083 -3964.6479 4014.7415 C --3964.7808 4014.509 -3964.8943 4014.3064 -3964.9705 4014.2095 C --3964.3015 4013.8662 L --3964.2207 4013.9712 -3964.2881 4014.1912 -3964.3977 4014.4583 C --3964.3521 4014.4055 -3964.3088 4014.353 -3964.2751 4014.3047 C --3964.0359 4014.541 -3964.1599 4014.9104 -3964.3313 4015.2676 C --3964.4128 4015.1416 -3964.4937 4015.0071 -3964.5723 4014.8728 C --3964.7375 4015.2615 -3964.8921 4015.6919 -3964.8577 4016.0667 C --3964.8142 4015.9927 -3964.7305 4015.9292 -3964.6384 4015.8936 C --3964.6816 4015.999 -3964.7092 4016.0935 -3964.6892 4016.1575 c --3964.6665 4016.2246 -3964.5967 4016.083 -3964.4873 4015.9192 C --3964.3352 4016.6331 L --3964.2983 4016.3499 L --3963.4231 4016.7959 L --3962.7969 4016.0784 -3962.2522 4015.021 -3961.2583 4014.7271 C --3961.5049 4015.25 -3961.3113 4015.5811 -3961.3247 4016.2007 C --3961.5959 4015.5447 -3962.0945 4016.479 -3962.6096 4016.3462 c --3962.3408 4016.415 -3962.3999 4016.7112 -3962.4683 4016.813 C --3961.5496 4016.2168 L --3961.5703 4016.7239 -3961.3545 4016.5967 -3961.1145 4016.8064 C --3961.2959 4015.8047 -3960.4297 4016.1392 -3960.0559 4015.8323 C --3960.0327 4016.168 -3960.1223 4016.512 -3960.5784 4016.4304 C --3960.0752 4017.1848 -3959.9282 4015.2544 -3959.4343 4015.895 C --3959.5457 4015.9031 -3959.6057 4015.8518 -3959.6497 4016.0232 C --3959.3896 4015.7239 -3958.7537 4015.9612 -3958.9033 4016.2534 C --3959.0144 4016.2603 L --3958.2751 4016.3792 -3956.7639 4016.2676 -3956.6536 4015.417 C --3956.6462 4015.5276 -3956.7505 4016.4424 -3956.7952 4016.6143 C --3955.4761 4013.7527 L --3955.5923 4014.4832 -3955.1462 4016.2224 -3955.7593 4016.636 C --3955.5833 4016.74 -3955.3655 4016.8616 -3954.9944 4016.603 C --3955.1145 4016.499 -3955.2937 4015.5471 -3955.1296 4015.48 C --3954.6792 4016.2932 -3954.8169 4015.915 -3954.2617 4016.6084 C --3954.4417 4016.4524 -3954.2417 4015.3064 -3953.9573 4015.343 C --3954.0017 4015.5144 -3953.9336 4016.4734 -3954.0376 4016.5928 C --3953.3296 4015.4683 L --3953.5063 4015.6707 -3953.3608 4016.4214 -3953.2024 4016.74 C --3953.2759 4016.519 -3952.5903 4016.76 -3952.4016 4016.6487 C --3952.7017 4016.3875 L --3951.9023 4016.5579 -3951.9121 4014.8064 -3951.1191 4014.8655 C --3951.2151 4015.0974 -3951.3562 4016.2952 -3950.9529 4016.4363 C --3950.7681 4015.8606 -3950.1345 4013.6663 -3949.4329 4013.2227 C --3949.2983 4013.552 L --3948.76 4013.1768 L --3949.0952 4014.0435 -3950.0359 4015.8672 -3950.5496 4016.5767 C --3950.2505 4016.8374 -3950.4663 4016.9656 -3950.0183 4016.9351 C --3949.8601 4017.2439 -3950.2625 4017.4031 -3950.3943 4017.4214 C --3949.3513 4017.6206 L --3949.3977 4016.948 -3948.5537 4016.9463 -3948.5935 4016.3862 C --3949.7263 4017.083 L --3949.7722 4016.4119 -3949.0713 4015.175 -3948.3323 4015.2932 C --3948.1443 4015.561 -3948.4729 4016.49 -3948.4575 4016.7144 C --3948.3616 4016.4832 -3947.7561 4016.272 -3947.6882 4016.4363 C --3948.0017 4016.7959 L --3947.5903 4017.0486 -3947.3303 4015.9048 -3946.8359 4016.5464 C --3946.6653 4016.5896 -3946.3264 4017.4119 -3946.2969 4017.0144 C --3946.5752 4016.2471 -3946.6296 4013.8743 -3946.4441 4013.2979 C --3946.3843 4013.3499 -3945.5481 4014.031 -3945.3533 4014.4104 C --3945.0723 4015.012 -3945.7751 4015.844 -3945.5359 4016.3606 C --3945.5256 4016.1768 -3945.3704 4015.9502 -3945.3057 4015.8772 C --3945.1265 4016.0342 -3945.3799 4016.4463 -3944.9905 4016.363 C --3944.9255 4015.6824 -3944.1985 4016.4207 -3944.8064 4015.7871 C --3944.4255 4015.5923 -3944.4016 4015.9282 -3943.9543 4015.8975 C --3944.0967 4015.457 -3943.5527 4014.3992 -3943.1711 4014.2039 C --3943.1936 4014.3772 -3943.1079 4014.603 -3943.0664 4014.7063 C --3942.2856 4014.7676 -3941.8665 4015.0774 -3941.1384 4015.083 C --3941.0713 4015.2483 -3940.72 4015.448 -3940.8696 4015.7415 C --3940.7649 4015.6206 -3940.6687 4015.3894 -3940.4441 4015.373 C --3940.0095 4015.9624 -3940.9448 4015.4646 -3940.6135 4016.1736 C --3940.5852 4015.7776 -3940.0327 4015.6262 -3939.7129 4015.3792 C --3939.8113 4014.7671 -3940.4519 4015.2615 -3940.7722 4015.5088 C --3940.7737 4014.665 -3940.2161 4013.7815 -3939.4551 4013.3911 C --3938.8503 4013.1814 -3939.1929 4013.9363 -3939.0879 4013.8167 C --3937.9519 4013.9639 -3938.1201 4012.343 -3937.1768 4012.9524 C --3936.8025 4013.4895 -3937.1599 4014.021 -3937.0769 4014.4092 C --3937.5696 4014.6128 -3937.8333 4014.0679 -3938.1672 4014.0896 C --3937.7561 4014.344 L --3937.9128 4014.5232 -3938.2417 4014.6582 -3938.4209 4014.5032 C --3938.1072 4014.9856 -3936.5017 4014.5952 -3935.6252 4015.041 C --3935.4695 4014.8616 -3935.2007 4014.6743 -3935.3279 4014.4583 C --3935.6052 4014.5332 L --3935.8601 4014.0999 -3935.0833 4013.9336 -3935.4343 4013.7312 C --3935.0623 4013.4263 -3934.6453 4012.947 -3934.1216 4013.1924 C --3934.0232 4013.8054 L --3934.0344 4013.6262 -3934.3655 4013.4407 -3934.5127 4013.6272 c --3934.2944 4013.355 -3933.7097 4014.457 -3933.4705 4013.6543 C --3933.8376 4013.2295 L --3933.4641 4012.9214 -3933.0024 4012.2703 -3932.5383 4012.4639 C --3932.7495 4011.8584 -3932.6453 4012.5332 -3932.9751 4011.8247 C --3932.6892 4012.7063 -3934.1624 4011.7876 -3933.7031 4012.7134 C --3934.0415 4011.8916 -3934.2888 4012.3655 -3934.7312 4011.6638 C --3934.7175 4011.8662 -3934.5745 4012.051 -3934.9641 4011.9512 C --3934.9817 4012.0103 -3935.0 -endstream endobj 135 0 obj <>stream -232 4012.0852 -3935.0496 4012.1294 C --3935.0615 4012.1243 -3935.0657 4012.1206 -3935.0759 4012.1143 C --3935.0681 4012.1223 -3935.0623 4012.1311 -3935.0544 4012.1382 C --3935.0713 4012.1687 -3935.0728 4012.175 -3935.0464 4012.1462 C --3934.9536 4012.2356 -3934.8784 4012.3416 -3934.8479 4012.4539 C --3935.0413 4012.9182 -3935.6609 4012.9038 -3935.8704 4013.1443 C --3936.1016 4013.0479 -3935.7737 4012.9119 -3935.8999 4012.6963 C --3936.2129 4013.0559 L --3936.2439 4012.6072 -3936.8271 4012.3096 -3936.2825 4012.0464 C --3936.7727 4012.0264 L --3937.0613 4011.7747 -3937.4583 4011.6743 -3937.7031 4011.863 C --3937.9343 4011.7664 -3938.2871 4012.3606 -3938.0857 4012.0088 C --3938.8545 4012.2871 L --3938.8616 4012.175 L --3939.6201 4012.1184 -3940.4231 4012.9192 -3941.2903 4012.1079 C --3941.5457 4012.2212 -3941.8096 4012.3599 -3942.2368 4012.2327 C --3942.3201 4011.844 L --3942.6479 4011.979 -3943.3047 4011.4551 -3943.4456 4011.8599 C --3943.7993 4010.8142 -3945.0369 4011.6316 -3945.6135 4011.4463 C --3945.6353 4011.9536 L --3946.0322 4011.925 -3946.4128 4012.0696 -3946.9055 4012.2727 C --3946.8752 4012.7207 L --3947.3 4013.0884 -3947.9673 4012.4019 -3948.6392 4012.448 C --3948.5935 4012.2766 -3948.4231 4012.321 -3948.3025 4012.425 C --3949.1052 4011.4119 -3949.9961 4013.1614 -3950.7241 4012.4236 C --3950.9055 4012.5872 -3951.0369 4012.531 -3951.1641 4012.4192 C --3951.1472 4012.4175 -3951.1321 4012.4092 -3951.1191 4012.395 C --3951.1377 4012.3904 -3951.1653 4012.3887 -3951.1936 4012.3894 C --3951.2737 4012.3123 -3951.3562 4012.2227 -3951.4456 4012.1504 C --3951.3696 4012.26 -3951.2969 4012.3496 -3951.2336 4012.3911 C --3951.3735 4012.4004 -3951.5857 4012.4558 -3951.7937 4012.5686 C --3951.8823 4012.0872 L --3951.8992 4012.0935 -3951.9128 4012.0923 -3951.9304 4012.1006 C --3952.1345 4011.9231 -3952.0945 4012.3286 -3951.9856 4012.6912 C --3952.0903 4012.77 -3952.1863 4012.8655 -3952.2607 4012.9812 C --3952.4265 4012.2039 -3952.8064 4013.2432 -3953.0327 4012.4143 C --3953.1729 4012.8184 -3954.0784 4012.7183 -3954.1892 4013.5696 C --3954.1963 4013.4583 -3954.2576 4013.4055 -3954.1453 4013.3982 C --3954.3772 4013.3015 -3954.6089 4013.2046 -3954.8169 4013.4446 C --3954.9153 4012.8323 L --3955.4216 4013.655 L --3955.7292 4013.2822 -3955.8567 4013.0652 -3955.5513 4012.5942 C --3956.2888 4013.3196 -3956.1497 4012.8672 -3956.7769 4013.5852 C --3956.7463 4013.1895 L --3956.9705 4013.2046 -3957.3289 4013.7356 -3957.4641 4013.408 C --3957.9656 4012.655 -3959.9456 4013.304 -3961.2329 4012.604 C --3960.9832 4013.77 -3961.8313 4012.0823 -3961.8823 4012.9856 C --3961.9573 4012.7102 -3962.1367 4012.5542 -3961.9282 4012.3152 C --3962.5852 4012.5852 -3962.9153 4011.8772 -3963.3689 4012.6392 C --3963.4441 4012.3623 -3963.2283 4012.2356 -3963.2952 4012.071 C --3963.3479 4012.1311 -3963.5039 4012.311 -3963.5723 4012.1462 c --3963.6392 4011.9822 -3963.4761 4011.915 -3963.3721 4011.7952 C --3964.0432 4011.8416 -3964.1111 4012.6912 -3964.1599 4013.4883 C --3964.5 4013.1111 -3964.6697 4013.1638 -3964.9153 4013.687 C --3965.0337 4013.4263 -3965.2312 4013.1536 -3964.8142 4013.0598 C --3965.0488 4013.0215 -3966.2473 4012.6775 -3966.2712 4013.3167 C --3966.3447 4013.1543 -3966.5991 4013.269 -3966.6609 4013.343 C --3967.1873 4013.3047 -3967.2336 4013.2471 -3967.7505 4013.3079 C --3967.6072 4013.4119 L --3967.8113 4014.1831 -3968.0369 4013.584 -3968.4536 4013.6768 C --3968.4417 4013.5984 L --3969.3972 4013.0415 -3968.8542 4013.8643 -3969.7969 4013.229 C --3969.7456 4013.709 L --3969.8335 4014.74 -3970.5808 4013.1006 -3971.1279 4013.4951 C --3970.9304 4013.769 L --3971.2292 4014.1223 -3971.7656 4012.3662 -3972.0657 4012.2371 C --3972.1311 4012.1472 -3971.9624 4012.0935 -3971.8711 4012.0276 C --3972.6567 4011.4182 -3971.9729 4012.655 -3972.5583 4012.8015 C --3972.6663 4012.4624 -3972.4192 4011.9392 -3972.8132 4011.876 C --3973.0095 4011.6023 -3973.9561 4012.9768 -3974.4937 4012.3267 C --3974.3752 4012.5879 -3974.2576 4012.8484 -3974.5295 4013.0447 C --3974.9463 4013.1382 -3975.6563 4012.0579 -3976.0327 4012.8816 C --3976.0857 4012.8096 -3976.1057 4012.7415 -3976.1079 4012.6763 C --3976.4265 4012.8887 -3977.1433 4013.0291 -3977.3352 4013.4756 C --3977.6296 4011.8191 -3979.3159 4014.2815 -3979.3088 4012.7534 C --3980.2888 4012.8352 L --3980.2632 4012.6792 L --3980.8896 4012.5784 -3981.1111 4012.9446 -3981.3313 4013.311 C --3981.4761 4013.207 -3981.3704 4013.064 -3981.3584 4012.9846 C --3982.2737 4012.6763 -3982.3647 4012.7415 -3983.1321 4013.5032 C --3983.2119 4013.0071 L --3983.4199 4013.2952 -3984.5352 4012.2295 -3985.4329 4012.8079 C --3985.4241 4012.751 -3985.4055 4012.655 -3985.3342 4012.5852 C --3986.3442 4013.167 -3987.7522 4011.2112 -3988.1223 4013.0159 C --3988.7888 4013.4607 L --3987.9265 4013.6006 -3988.9172 4014.2444 -3988.5625 4014.5435 C --3988.9016 4014.6494 -3989.4392 4013.999 -3989.0225 4013.9063 C --3988.9573 4013.9966 L --3988.8042 4013.0559 -3990.0288 4013.6631 -3990.0056 4013.0222 C --3991.7024 4013.0696 -3993.3562 4012.5479 -3994.9456 4012.5078 C --3994.7625 4013.239 L --3995.3169 4013.1975 L --3995.4624 4013.0276 -3995.5122 4012.625 -3995.1167 4012.655 C --3995.3247 4012.24 -3995.78 4013.0032 -3995.7913 4013.1614 C --3996.5657 4012.8655 -3995.4888 4012.3086 -3995.7263 4012.291 C --3996.0488 4012.3455 L --3995.9761 4012.4312 L --3996.2375 4012.73 -3996.2607 4013.0471 -3996.7361 4013.0112 C --3997.0369 4012.8643 -3996.8904 4012.5598 -3997.0088 4012.532 C --3997.0081 4012.479 -3997.0481 4012.4551 -3997.1904 4012.5103 C --3997.8889 4012.448 L --3997.6096 4013.0254 L --3997.9192 4013.3103 -3998.2664 4012.9951 -3997.9441 4013.6494 c --3998.4172 4012.6404 -4000.5496 4013.2871 -4000.8401 4012.9744 C --4001.2737 4013.395 -4001.7017 4013.3875 -4002.2319 4013.3367 C --4002.1001 4013.457 -4002.0212 4014.1062 -4002.4785 4014.0271 C --4002.3113 4012.687 -4003.3159 4013.4456 -4003.6855 4012.4812 C --4003.3552 4013.1206 -4004.9856 4012.6392 -4004.4673 4013.5471 C --4004.8489 4013.4382 -4004.4905 4013.0454 -4004.78 4012.73 C --4005.6882 4013.249 -4006.7815 4012.3926 -4007.9041 4012.5679 C --4007.9216 4012.7444 -4007.7336 4013.0127 -4007.9744 4013.2747 C --4008.5671 4012.395 L --4008.7888 4012.4812 -4008.7712 4013.4104 -4009.1763 4012.8 C --4009.1191 4012.948 -4009.0337 4013.1707 -4009.1824 4013.2271 C --4011.3816 4012.3704 -4013.6763 4013.9292 -4015.9097 4012.3191 C --4015.6072 4012.6604 -4015.8088 4012.6936 -4016.0398 4012.7063 C --4015.8896 4012.7876 -4016.0432 4013.1404 -4016.0137 4013.3792 C --4016.9487 4012.7168 L --4017.1191 4013.3784 -4017.9512 4012.7615 -4018.0488 4013.3943 C --4017.7527 4013.28 L --4018.1465 4014.0271 -4017.2017 4014.9395 -4017.2593 4015.8975 C --4016.8184 4015.0486 -4016.0967 4017.1543 -4015.3733 4015.9395 C --4015.2136 4016.135 -4015.5095 4016.2483 -4015.4241 4016.4702 C --4015.2407 4016.0598 -4015.0193 4015.9744 -4014.6089 4016.1582 C --4014.6553 4016.26 L --4013.5024 4016.1599 -4013.0081 4016.5647 -4011.7129 4016.8342 C --4011.8088 4016.3606 L --4011.5305 4016.4236 -4011.4719 4016.5723 -4011.3416 4016.6912 C --4011.0222 4015.9727 -4012.1233 4016.6504 -4011.8323 4015.8584 C --4011.4631 4016.8223 -4009.8696 4015.8728 -4009.6201 4016.9683 C --4009.1919 4016.9744 -4009.7456 4016.4192 -4009.3176 4016.4263 C --4009.2041 4016.7227 L --4009.0959 4016.3408 L --4008.8152 4016.4038 -4008.6736 4016.7747 -4008.6631 4017.0254 C --4008.7312 4016.9956 -4008.8567 4017.0955 -4008.9297 4017.1172 C --4008.5657 4017.4663 -4007.9033 4016.9983 -4007.7783 4017.1118 C --4008.1897 4016.9292 L --4007.0212 4016.6519 -4005.5945 4017.041 -4004.4656 4016.4382 C --4004.5513 4016.2151 L --4003.6892 4015.8015 -4003.8608 4016.4607 -4002.9143 4016.269 C --4002.9487 4016.3223 L --4002.7593 4016.0999 -4002.5063 4015.9871 -4002.2473 4016.0127 C --4002.4863 4016.2747 -4001.7976 4016.521 -4002.1111 4016.811 C --4001.1763 4016.3672 -4001.6487 4016.4624 -4001.0313 4015.6316 C --4000.8889 4016.0032 L --4000.6785 4015.667 -4000.6609 4015.49 -4000.1882 4015.3943 C --4000.5759 4015.7124 -3999.8865 4015.959 -4000.3208 4016.3799 C --3999.3289 4017.1912 -3998.8479 4015.561 -3998.3928 4016.7471 C --3997.9373 4015.7207 -3999.2512 4016.1775 -3998.9961 4015.9575 C --3999.2097 4015.6223 -3998.6201 4015.1902 -3998.3088 4015.2932 C --3997.9919 4015.3167 -3997.77 4016.6072 -3996.9729 4016.5872 C --3997.0522 4016.5823 -3997.0576 4016.6604 -3997.1367 4016.655 C --3996.8384 4016.917 -3996.5522 4016.3008 -3996.1863 4016.7263 C --3995.9812 4016.105 -3995.7112 4016.7615 -3995.6521 4015.9702 C --3996.3833 4016.1536 L --3995.9688 4015.9463 -3995.5801 4015.02 -3994.8972 4015.4695 C --3994.9504 4015.6287 -3995.1536 4015.8391 -3995.2932 4015.9558 C --3995.0935 4016.1895 -3994.9087 4015.8015 -3994.7017 4016.041 C --3994.7607 4016.8335 -3995.5903 4016.2134 -3996.0344 4016.8174 C --3995.8201 4017.1519 -3995.1943 4016.2439 -3995.4175 4017.1016 c --3995.0967 4016.0112 -3994.6321 4017.24 -3994.0923 4016.4063 C --3994.1279 4016.8806 L --3994.0425 4016.8064 -3993.8655 4016.5823 -3993.7083 4016.5942 C --3993.9929 4017.2095 L --3993.5559 4016.6848 -3993.1504 4017.6692 -3992.7312 4017.3831 C --3993.6089 4017.3975 -3992.9282 4016.811 -3993.2993 4016.4646 C --3992.2168 4015.8296 -3992.6768 4017.7063 -3991.4648 4017.4783 C --3991.6289 4017.5454 -3992.0808 4017.1936 -3991.8242 4016.9734 C --3991.5935 4017.071 -3991.2888 4017.2534 -3991.1472 4017.5032 C --3990.3442 4017.4038 -3991.2705 4017.0144 -3990.9287 4016.7224 C --3990.6553 4017.3008 -3990.5344 4016.4871 -3990.1824 4016.3022 C --3990.1799 4016.7847 L --3989.2649 4017.0942 -3989.9373 4015.7791 -3989.1135 4016.1536 C --3989.4617 4016.8223 L --3989.0322 4016.6494 L --3989.1208 4017.1982 L --3988.6536 4016.791 -3988.5081 4016.896 -3988.0503 4017.0503 C --3988.1567 4016.7112 -3987.9905 4016.175 -3987.5852 4016.1599 C --3987.3088 4016.4463 -3987.74 4016.6184 -3987.1655 4016.5496 C --3987.2952 4016.8511 -3987.4373 4017.23 -3987.6873 4016.7864 C --3987.7129 4016.9436 -3987.8152 4017.0884 -3987.8416 4017.2444 C --3987.5439 4017.5735 -3987.0935 4017.3191 -3986.8855 4017.3142 C --3986.9656 4017.2964 -3987.0613 4017.2703 -3987.1104 4017.2024 C --3986.2776 4016.5332 L --3986.1465 4016.7144 -3986.2505 4016.8599 -3986.3535 4017.0032 C --3986.1848 4016.9502 -3986.0681 4016.7283 -3985.8201 4016.687 C --3985.8843 4017.0791 -3985.8689 4017.4839 -3986.22 4017.6687 C --3985.4265 4017.2334 L --3985.3735 4017.4038 -3985.0193 4017.7024 -3985.1223 4017.8462 C --3984.6824 4018.0767 -3984.0432 4017.0852 -3983.46 4017.3894 C --3983.4297 4017.3135 -3983.3689 4017.24 -3983.2449 4017.1848 C --3982.6968 4017.2732 -3982.2112 4017.7544 -3981.5615 4017.217 C --3981.1929 4017.9192 L --3980.6841 4017.7603 -3981.6919 4017.0342 -3980.8447 4016.769 C --3980.2449 4016.5447 -3980.6208 4017.3687 -3980.4104 4017.564 C --3980.1121 4017.2102 -3979.5935 4016.4888 -3979.0425 4017.061 C --3979.2249 4017.1936 -3979.3679 4017.0896 -3979.5383 4017.1416 C -f -1 D --3973.2632 4016.8296 m --3973.3848 4016.9312 -3973.6272 4017.2439 -3973.7161 4016.959 C --3973.5776 4016.4063 -3973.4705 4016.6707 -3973.2632 4016.8296 C -f --3963.7241 4015.6692 m --3963.8145 4015.8279 -3963.9543 4015.749 -3964.1121 4015.5667 C --3963.9976 4015.5271 -3963.8679 4015.5447 -3963.7241 4015.6692 C -f --3937.1511 4012.3096 m --3937.1563 4012.3174 -3937.1599 4012.3232 -3937.1641 4012.333 C --3937.4353 4012.145 -3937.3391 4012.22 -3937.1511 4012.3096 C -f -0 D --3936.5879 4012.519 m --3936.5313 4012.4524 -3936.5352 4012.3848 -3936.5591 4012.3174 C --3936.5984 4012.4392 -3936.7249 4012.448 -3936.8689 4012.4136 C --3936.8289 4012.5398 -3936.7561 4012.6272 -3936.5879 4012.519 C -f -1 D --3997.0713 4012.709 m --3996.9617 4012.8352 L --3997.2092 4012.9744 -3997.1399 4012.8484 -3997.0713 4012.709 C -f -*U -0 D --3964.8057 4016.3286 m --3964.8401 4016.2471 -3964.8496 4016.1575 -3964.8577 4016.0667 C --3964.9055 4016.1475 -3964.9065 4016.2415 -3964.8057 4016.3286 C -f --3983.4409 4017.395 m --3983.4473 4017.3911 -3983.4536 4017.3926 -3983.46 4017.3894 C --3983.4705 4017.4182 -3983.4761 4017.448 -3983.4792 4017.4768 C --3983.4409 4017.395 L -f --3945.3123 4016.6096 m --3945.4282 4016.5398 -3945.4929 4016.4524 -3945.5359 4016.3606 C --3945.5422 4016.4783 -3945.4895 4016.5784 -3945.3123 4016.6096 C -f --3933.6033 4011.6992 m --3933.9641 4011.8247 L --3933.7896 4011.8008 -3933.7273 4011.9063 -3933.6392 4011.9832 C --3933.6472 4011.8704 -3933.7161 4011.707 -3933.6033 4011.6992 C -f --3930.4719 4014.6848 m --3930.4192 4014.6255 -3930.3601 4014.6782 -3930.3081 4014.6184 C --3930.3225 4014.3943 L --3930.5471 4014.4087 -3930.7041 4014.5896 -3930.4719 4014.6848 C -f --3933.2693 4013.3022 m --3933.2407 4013.7083 -3933.0144 4013.5703 -3932.7617 4013.4951 C --3932.7769 4013.4966 -3932.7913 4013.5 -3932.8064 4013.4951 C --3932.7319 4012.9282 -3933.0012 4013.1152 -3933.2693 4013.3022 C -f --3932.7031 4013.4812 m --3932.6252 4013.4624 -3932.5457 4013.4524 -3932.4695 4013.4712 C --3932.4399 4013.2439 -3932.5642 4013.4236 -3932.7031 4013.4812 C -f --3935.8735 4012.25 m --3935.7537 4012.3542 -3935.7983 4011.7312 -3935.7305 4011.896 C --3935.5967 4011.3799 -3936.5295 4012.521 -3935.8735 4012.25 C -f --3933.0647 4014.6392 m --3933.1553 4014.1382 L --3933.2969 4014.5422 L --3933.0647 4014.6392 L -f --3935.0601 4014.271 m --3934.6563 4014.4104 L --3934.6624 4014.3264 -3934.6111 4014.2776 -3934.5481 4014.24 C --3934.7969 4014.2224 -3935.0696 4014.123 -3935.0601 4014.271 C -f --3934.5481 4014.24 m --3934.4185 4014.249 -3934.2952 4014.2383 -3934.2231 4014.1563 C --3934.2932 4014.1614 -3934.4441 4014.1782 -3934.5481 4014.24 C -f --3933.6167 4014.7896 m --3933.7361 4014.6851 L --3934.0212 4014.6487 L --3933.6167 4014.7896 L -f --3939.4009 4014.175 m --3939.8416 4014.3184 L --3939.8865 4014.49 -3939.7664 4014.5952 -3939.6023 4014.5271 C --3939.4968 4014.4072 -3939.3333 4014.3408 -3939.4009 4014.175 C -f --3938.0681 4015.5471 m --3938.1873 4015.4431 -3938.1953 4015.3311 -3938.2625 4015.1663 C --3938.2759 4015.7871 L --3938.0681 4015.5471 L -f --3939.3533 4015.6919 m --3939.3972 4015.8643 -3939.9929 4016.1863 -3939.4343 4016.1475 C --3939.3896 4015.9768 -3938.9482 4015.8335 -3939.3533 4015.6919 C -f --3945.9937 4014.9063 m --3945.8816 4014.8982 L --3945.8977 4013.8799 L --3945.9937 4014.9063 L -f --3951.8464 4017.343 m --3951.3242 4017.5872 -3951.7224 4016.7144 -3951.2505 4017.019 C --3951.1279 4016.7783 -3951.6362 4016.7703 -3951.5105 4016.5623 C --3951.8257 4016.8167 -3951.9912 4016.6736 -3951.8464 4017.343 C -f --3951.5105 4016.5623 m --3951.46 4016.5222 -3951.4065 4016.4734 -3951.3496 4016.408 C --3951.4409 4016.4712 -3951.4839 4016.52 -3951.5105 4016.5623 C -f --4017.5745 4012.1924 m --4017.9104 4011.98 L --4017.6936 4012.3223 L --4017.5745 4012.1924 L -f --4018.2192 4012.948 m --4018.2983 4012.2991 L --4018.5 4012.8862 L --4018.4241 4012.8572 -4018.2769 4012.8015 -4018.2192 4012.948 C -f --3972.3303 4018.1375 m --3972.3047 4017.9812 L --3972.3567 4017.8123 -3972.4353 4017.8 -3972.5928 4017.7732 C --3972.3303 4018.1375 L -f --3976.8848 4017.6519 m --3976.8064 4017.665 L --3976.9529 4017.0784 L --3976.8848 4017.6519 L -f --3980.7073 4018.4004 m --3980.5513 4018.425 -3980.3679 4018.2942 -3980.2112 4018.3196 C --3980.5513 4018.425 -3980.7495 4017.6692 -3980.7073 4018.4004 C -f -U -9 () XW -U -9 () XW -U -%AI8_EndBrushPattern -%AI8_BeginBrushPattern -(Unnamed Brush Pattern 45) 0 A -0 Xw -u -u -0 1 0 0 0 Xy -0 J 0 j 1 w 4 M []0 d 0 XR --7890 7890 m --7890 7859.3877 L --7865.1748 7859.3877 L --7865.1748 7890 L --7890 7890 L -n -0 O -0.258488 0.130922 0.134035 0.001434 0.784314 0.823529 0.847059 Xa --7890 7881.498 m --7865.1738 7881.498 L --7865.1738 7880.5142 L --7890 7880.5142 L --7890 7881.498 L -f -0.531884 0.324193 0.203311 0.042145 0.513726 0.6 0.694118 Xa --7890 7880.5176 m --7865.1738 7880.5176 L --7865.1738 7873.7935 L --7890 7873.7935 L --7890 7880.5176 L -f -0.258488 0.130922 0.134035 0.001434 0.784314 0.823529 0.847059 Xa --7890 7873.7959 m --7865.1738 7873.7959 L --7865.1738 7872.6367 L --7890 7872.6367 L --7890 7873.7959 L -f -0.420172 0.234684 0.133211 0.010101 0.627451 0.701961 0.792157 Xa --7865.1738 7872.6367 m --7865.1738 7860.5278 L --7890 7860.5278 L --7890 7872.6367 L --7865.1738 7872.6367 L -f -U -9 () XW -U -%AI8_EndBrushPattern -%AI8_BeginBrushPattern -(Unnamed Brush Pattern 47) 0 A -0 Xw -u -u -u -0 1 0 0 0 Xy -0 J 0 j 1 w 4 M []0 d 0 XR --7890 7890 m --7890 7859.3877 L --7859.3848 7859.3877 L --7859.3848 7890 L --7890 7890 L -n -0 O -0.258488 0.130922 0.134035 0.001434 0.784314 0.823529 0.847059 Xa --7859.3848 7880.5142 m --7868.8672 7880.5142 L --7868.8711 7889.998 L --7867.8896 7889.998 L --7867.8896 7881.4951 L --7859.3848 7881.4951 L --7859.3848 7880.5142 L -f -0.531884 0.324193 0.203311 0.042145 0.513726 0.6 0.694118 Xa --7859.3848 7873.7935 m --7875.5928 7873.791 L --7875.5928 7890 L --7868.8672 7890 L --7868.8672 7880.5132 L --7859.3848 7880.5132 L --7859.3848 7873.7935 L -f -0.258488 0.130922 0.134035 0.001434 0.784314 0.823529 0.847059 Xa --7859.3848 7872.6357 m --7876.7485 7872.6357 L --7876.7485 7889.999 L --7875.5957 7889.999 L --7875.5957 7873.791 L --7859.3848 7873.791 L --7859.3848 7872.6357 L -f -0.420172 0.234684 0.133211 0.010101 0.627451 0.701961 0.792157 Xa --7859.3848 7860.5244 m --7888.8594 7860.5244 L --7888.8594 7889.998 L --7876.7495 7890 L --7876.7495 7872.6357 L --7859.3848 7872.6357 L --7859.3848 7860.5244 L -f -0 0 0 0 1 1 1 Xa --7875.5918 7874.1533 m --7876.7207 7872.6733 l --7875.5918 7873.7959 l --7875.5918 7874.1533 l -f --7867.8896 7881.8096 m --7868.8232 7880.5615 l --7867.8896 7881.4951 l --7867.8896 7881.8096 l -f -U -9 () XW -U -9 () XW -U -%AI8_EndBrushPattern -%AI8_BeginBrushPattern -(Unnamed Brush Pattern 49) 0 A -0 Xw -u -u -u -0 1 0 0 0 Xy -0 J 0 j 1 w 4 M []0 d 0 XR --7890 7890 m --7859.3335 7890 L --7859.3335 7859.334 L --7890 7859.334 L --7890 7890 L -n -u -u -u -0 O -0.258488 0.130922 0.134035 0.001434 0.784314 0.823529 0.847059 Xa -1 XR --7881.4219 7889.9688 m --7880.5039 7889.9688 L --7880.5039 7868.8013 L --7859.3389 7868.8013 L --7859.3389 7867.8853 L --7881.4219 7867.8853 L --7881.4219 7889.9688 L -f -0.531884 0.324193 0.203311 0.042145 0.513726 0.6 0.694118 Xa -0 XR --7880.5039 7889.9688 m --7873.7539 7889.9688 L --7873.7539 7875.5527 L --7859.3389 7875.5527 L --7859.3389 7876.7173 L --7859.3389 7876.7173 L --7859.3389 7868.8013 L --7880.5039 7868.8013 L --7880.5039 7889.9688 L -f -0.258488 0.130922 0.134035 0.001434 0.784314 0.823529 0.847059 Xa -1 XR --7859.3389 7876.7173 m --7859.3389 7875.5527 L --7873.7539 7875.5527 L --7873.7539 7889.9688 L --7872.5889 7889.9688 L --7872.5889 7876.7173 L --7859.3389 7876.7173 L -f -0.420172 0.234684 0.133211 0.010101 0.627451 0.701961 0.792157 Xa -0 XR --7872.5889 7876.7173 m --7872.5889 7889.9688 L --7860.5039 7889.9688 L --7860.5352 7888.8135 L --7859.3389 7888.8135 L --7859.3389 7876.7173 L --7872.5889 7876.7173 L -f -U -9 () XW -1 Ap -1 XR --7890 7890 m --7890 7859.334 L --7859.3335 7859.334 L --7859.3335 7890 L --7890 7890 L -n -U -9 () XW -0 Ap -0 O -0 0 0 0 1 1 1 Xa -0 XR --7872.5986 7877.0796 m --7873.7285 7875.6016 l --7872.5986 7876.7212 L --7872.5986 7877.0796 l -f -%_/ArtDictionary : -%_(12.566368) /String (BBAccumRotation) , -%_; -%_ --7880.5 7869.1255 m --7881.3848 7867.9287 l --7880.5 7868.8101 L --7880.5 7869.1255 l -f -%_/ArtDictionary : -%_(12.566368) /String (BBAccumRotation) , -%_; -%_ -U -9 () XW -U -9 () XW -U -9 () XW -U -%AI8_EndBrushPattern -%AI5_End_NonPrinting-- -%AI5_Begin_NonPrinting -Np -%AI10_BeginSVGFilter -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(140%) /UnicodeString (xmlnode-nodevalue) , -(width) /UnicodeString (xmlnode-nodename) , -; (width) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(140%) /UnicodeString (xmlnode-nodevalue) , -(height) /UnicodeString (xmlnode-nodename) , -; (height) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(-20%) /UnicodeString (xmlnode-nodevalue) , -(x) /UnicodeString (xmlnode-nodename) , -; (x) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_AbgeflachteKanteMitSchatten_1) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(-20%) /UnicodeString (xmlnode-nodevalue) , -(y) /UnicodeString (xmlnode-nodename) , -; (y) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(4) /UnicodeString (xmlnode-nodevalue) , -(stdDeviation) /UnicodeString (xmlnode-nodename) , -; (stdDeviation) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feGaussianBlur) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(4) /UnicodeString (xmlnode-nodevalue) , -(dy) /UnicodeString (xmlnode-nodename) , -; (dy) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(4) /UnicodeString (xmlnode-nodevalue) , -(dx) /UnicodeString (xmlnode-nodename) , -; (dx) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(offsetBlur) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feOffset) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(lighting-color:white) /UnicodeString (xmlnode-nodevalue) , -(style) /UnicodeString (xmlnode-nodename) , -; (style) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(specularConstant) /UnicodeString (xmlnode-nodename) , -; (specularConstant) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(10) /UnicodeString (xmlnode-nodevalue) , -(specularExponent) /UnicodeString (xmlnode-nodename) , -; (specularExponent) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(5) /UnicodeString (xmlnode-nodevalue) , -(surfaceScale) /UnicodeString (xmlnode-nodename) , -; (surfaceScale) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(specOut) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(-20000) /UnicodeString (xmlnode-nodevalue) , -(z) /UnicodeString (xmlnode-nodename) , -; (z) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(-5000) /UnicodeString (xmlnode-nodevalue) , -(x) /UnicodeString (xmlnode-nodename) , -; (x) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(-10000) /UnicodeString (xmlnode-nodevalue) , -(y) /UnicodeString (xmlnode-nodename) , -; (y) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(fePointLight) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feSpecularLighting) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(in) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(specOut) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(specOut) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(k3) /UnicodeString (xmlnode-nodename) , -; (k3) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0) /UnicodeString (xmlnode-nodevalue) , -(k4) /UnicodeString (xmlnode-nodename) , -; (k4) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0) /UnicodeString (xmlnode-nodevalue) , -(k1) /UnicodeString (xmlnode-nodename) , -; (k1) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(k2) /UnicodeString (xmlnode-nodename) , -; (k2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(arithmetic) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(specOut) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(litPaint) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(offsetBlur) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMergeNode) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(litPaint) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMergeNode) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMerge) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(100%) /UnicodeString (xmlnode-nodevalue) , -(width) /UnicodeString (xmlnode-nodename) , -; (width) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(100%) /UnicodeString (xmlnode-nodevalue) , -(height) /UnicodeString (xmlnode-nodename) , -; (height) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(objectBoundingBox) /UnicodeString (xmlnode-nodevalue) , -(filterUnits) /UnicodeString (xmlnode-nodename) , -; (filterUnits) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0%) /UnicodeString (xmlnode-nodevalue) , -(x) /UnicodeString (xmlnode-nodename) , -; (x) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_Alpha_1) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0%) /UnicodeString (xmlnode-nodevalue) , -(y) /UnicodeString (xmlnode-nodename) , -; (y) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(turbulence) /UnicodeString (xmlnode-nodevalue) , -(type) /UnicodeString (xmlnode-nodename) , -; (type) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(2) /UnicodeString (xmlnode-nodevalue) , -(numOctaves) /UnicodeString (xmlnode-nodename) , -; (numOctaves) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0.05) /UnicodeString (xmlnode-nodevalue) , -(baseFrequency) /UnicodeString (xmlnode-nodename) , -; (baseFrequency) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(noStitch) /UnicodeString (xmlnode-nodevalue) , -(stitchTiles) /UnicodeString (xmlnode-nodename) , -; (stitchTiles) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(turb) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feTurbulence) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(in) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(turb) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(100%) /UnicodeString (xmlnode-nodevalue) , -(width) /UnicodeString (xmlnode-nodename) , -; (width) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(100%) /UnicodeString (xmlnode-nodevalue) , -(height) /UnicodeString (xmlnode-nodename) , -; (height) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(objectBoundingBox) /UnicodeString (xmlnode-nodevalue) , -(filterUnits) /UnicodeString (xmlnode-nodename) , -; (filterUnits) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0%) /UnicodeString (xmlnode-nodevalue) , -(x) /UnicodeString (xmlnode-nodename) , -; (x) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_Alpha_4) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0%) /UnicodeString (xmlnode-nodevalue) , -(y) /UnicodeString (xmlnode-nodename) , -; (y) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(fractalNoise) /UnicodeString (xmlnode-nodevalue) , -(type) /UnicodeString (xmlnode-nodename) , -; (type) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(4) /UnicodeString (xmlnode-nodevalue) , -(numOctaves) /UnicodeString (xmlnode-nodename) , -; (numOctaves) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0.1) /UnicodeString (xmlnode-nodevalue) , -(baseFrequency) /UnicodeString (xmlnode-nodename) , -; (baseFrequency) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(noStitch) /UnicodeString (xmlnode-nodevalue) , -(stitchTiles) /UnicodeString (xmlnode-nodename) , -; (stitchTiles) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(turb) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feTurbulence) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(in) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(turb) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_Dehnen_3) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(3) /UnicodeString (xmlnode-nodevalue) , -(radius) /UnicodeString (xmlnode-nodename) , -; (radius) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(dilate) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMorphology) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_Dehnen_6) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(6) /UnicodeString (xmlnode-nodevalue) , -(radius) /UnicodeString (xmlnode-nodename) , -; (radius) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(dilate) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMorphology) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_Erodieren_3) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(3) /UnicodeString (xmlnode-nodevalue) , -(radius) /UnicodeString (xmlnode-nodename) , -; (radius) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(erode) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMorphology) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_Erodieren_6) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(6) /UnicodeString (xmlnode-nodevalue) , -(radius) /UnicodeString (xmlnode-nodename) , -; (radius) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(erode) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMorphology) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_GaußscherWeichzeichner_4) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(4) /UnicodeString (xmlnode-nodevalue) , -(stdDeviation) /UnicodeString (xmlnode-nodename) , -; (stdDeviation) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feGaussianBlur) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_GaußscherWeichzeichner_7) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(7) /UnicodeString (xmlnode-nodevalue) , -(stdDeviation) /UnicodeString (xmlnode-nodename) , -; (stdDeviation) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feGaussianBlur) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(150%) /UnicodeString (xmlnode-nodevalue) , -(width) /UnicodeString (xmlnode-nodename) , -; (width) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(150%) /UnicodeString (xmlnode-nodevalue) , -(height) /UnicodeString (xmlnode-nodename) , -; (height) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(objectBoundingBox) /UnicodeString (xmlnode-nodevalue) , -(filterUnits) /UnicodeString (xmlnode-nodename) , -; (filterUnits) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(-10%) /UnicodeString (xmlnode-nodevalue) , -(x) /UnicodeString (xmlnode-nodename) , -; (x) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_Holzmaserung) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(-10%) /UnicodeString (xmlnode-nodevalue) , -(y) /UnicodeString (xmlnode-nodename) , -; (y) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(4) /UnicodeString (xmlnode-nodevalue) , -(stdDeviation) /UnicodeString (xmlnode-nodename) , -; (stdDeviation) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feGaussianBlur) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(4) /UnicodeString (xmlnode-nodevalue) , -(dy) /UnicodeString (xmlnode-nodename) , -; (dy) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(4) /UnicodeString (xmlnode-nodevalue) , -(dx) /UnicodeString (xmlnode-nodename) , -; (dx) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(offsetBlurredAlpha) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(offset) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feOffset) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(flood-color:black; flood-opacity:0.4) /UnicodeString (xmlnode-nodevalue) , -(style) /UnicodeString (xmlnode-nodename) , -; (style) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(color) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(color) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feFlood) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(in) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(offsetBlurredAlpha) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(offsetBlurredAlpha) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(color) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(shadowColor) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(white) /UnicodeString (xmlnode-nodevalue) , -(lighting-color) /UnicodeString (xmlnode-nodename) , -; (lighting-color) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(diffuseConstant) /UnicodeString (xmlnode-nodename) , -; (diffuseConstant) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(resultScale) /UnicodeString (xmlnode-nodename) , -; (resultScale) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(5) /UnicodeString (xmlnode-nodevalue) , -(surfaceScale) /UnicodeString (xmlnode-nodename) , -; (surfaceScale) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(diffuse) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(diffuse) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(60) /UnicodeString (xmlnode-nodevalue) , -(elevation) /UnicodeString (xmlnode-nodename) , -; (elevation) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(135) /UnicodeString (xmlnode-nodevalue) , -(azimuth) /UnicodeString (xmlnode-nodename) , -; (azimuth) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(light2) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feDistantLight) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feDiffuseLighting) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(specularConstant) /UnicodeString (xmlnode-nodename) , -; (specularConstant) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(10) /UnicodeString (xmlnode-nodevalue) , -(specularExponent) /UnicodeString (xmlnode-nodename) , -; (specularExponent) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(white) /UnicodeString (xmlnode-nodevalue) , -(lighting-color) /UnicodeString (xmlnode-nodename) , -; (lighting-color) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(5) /UnicodeString (xmlnode-nodevalue) , -(surfaceScale) /UnicodeString (xmlnode-nodename) , -; (surfaceScale) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(specularOut) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(60) /UnicodeString (xmlnode-nodevalue) , -(elevation) /UnicodeString (xmlnode-nodename) , -; (elevation) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(135) /UnicodeString (xmlnode-nodevalue) , -(azimuth) /UnicodeString (xmlnode-nodename) , -; (azimuth) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(light) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feDistantLight) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feSpecularLighting) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(in) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(specularOut) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(specularOut) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0) /UnicodeString (xmlnode-nodevalue) , -(k3) /UnicodeString (xmlnode-nodename) , -; (k3) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0) /UnicodeString (xmlnode-nodevalue) , -(k4) /UnicodeString (xmlnode-nodename) , -; (k4) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(k1) /UnicodeString (xmlnode-nodename) , -; (k1) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0) /UnicodeString (xmlnode-nodevalue) , -(k2) /UnicodeString (xmlnode-nodename) , -; (k2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(arithmetic) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(diffuse) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(litPaint) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(k3) /UnicodeString (xmlnode-nodename) , -; (k3) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0) /UnicodeString (xmlnode-nodevalue) , -(k4) /UnicodeString (xmlnode-nodename) , -; (k4) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0) /UnicodeString (xmlnode-nodevalue) , -(k1) /UnicodeString (xmlnode-nodename) , -; (k1) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(k2) /UnicodeString (xmlnode-nodename) , -; (k2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(arithmetic) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(specularOut) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(litPaint) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(litPaint) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(offsetBlurredAlpha) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMergeNode) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(litPaint) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMergeNode) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMerge) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(fractalNoise) /UnicodeString (xmlnode-nodevalue) , -(type) /UnicodeString (xmlnode-nodename) , -; (type) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(10) /UnicodeString (xmlnode-nodevalue) , -(numOctaves) /UnicodeString (xmlnode-nodename) , -; (numOctaves) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(.05) /UnicodeString (xmlnode-nodevalue) , -(baseFrequency) /UnicodeString (xmlnode-nodename) , -; (baseFrequency) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(noStitch) /UnicodeString (xmlnode-nodevalue) , -(stitchTiles) /UnicodeString (xmlnode-nodename) , -; (stitchTiles) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(Turbulence) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feTurbulence) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(matrix) /UnicodeString (xmlnode-nodevalue) , -(type) /UnicodeString (xmlnode-nodename) , -; (type) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1) /UnicodeString (xmlnode-nodevalue) , -(values) /UnicodeString (xmlnode-nodename) , -; (values) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(Grayscale) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(Turbulence) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feColorMatrix) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(4) /UnicodeString (xmlnode-nodevalue) , -(stdDeviation) /UnicodeString (xmlnode-nodename) , -; (stdDeviation) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(BlurredAlpha) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feGaussianBlur) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(-5) /UnicodeString (xmlnode-nodevalue) , -(dy) /UnicodeString (xmlnode-nodename) , -; (dy) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(-4) /UnicodeString (xmlnode-nodevalue) , -(dx) /UnicodeString (xmlnode-nodename) , -; (dx) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(OffsetBlurredAlpha) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(BlurredAlpha) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feOffset) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictio -endstream endobj 136 0 obj <>stream -nary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(in) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(OffsetBlurredAlpha) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(CompBlurTurb) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(Grayscale) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1.5) /UnicodeString (xmlnode-nodevalue) , -(stdDeviation) /UnicodeString (xmlnode-nodename) , -; (stdDeviation) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(CompBlurTurb2) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(CompBlurTurb) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feGaussianBlur) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(CompXferFire) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(Grayscale) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(table) /UnicodeString (xmlnode-nodevalue) , -(type) /UnicodeString (xmlnode-nodename) , -; (type) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(2 0) /UnicodeString (xmlnode-nodevalue) , -(tableValues) /UnicodeString (xmlnode-nodename) , -; (tableValues) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feFuncR) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(table) /UnicodeString (xmlnode-nodevalue) , -(type) /UnicodeString (xmlnode-nodename) , -; (type) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(.7 0 ) /UnicodeString (xmlnode-nodevalue) , -(tableValues) /UnicodeString (xmlnode-nodename) , -; (tableValues) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feFuncG) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(table) /UnicodeString (xmlnode-nodevalue) , -(type) /UnicodeString (xmlnode-nodename) , -; (type) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(.1 0) /UnicodeString (xmlnode-nodevalue) , -(tableValues) /UnicodeString (xmlnode-nodename) , -; (tableValues) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feFuncB) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComponentTransfer) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(in) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(CompSourceFire) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(CompXferFire) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(MergeAll) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(CompSourceFire) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMergeNode) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMerge) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(110%) /UnicodeString (xmlnode-nodevalue) , -(width) /UnicodeString (xmlnode-nodename) , -; (width) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(140%) /UnicodeString (xmlnode-nodevalue) , -(height) /UnicodeString (xmlnode-nodename) , -; (height) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(objectBoundingBox) /UnicodeString (xmlnode-nodevalue) , -(filterUnits) /UnicodeString (xmlnode-nodename) , -; (filterUnits) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(-5%) /UnicodeString (xmlnode-nodevalue) , -(x) /UnicodeString (xmlnode-nodename) , -; (x) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_KühleBrise) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(-40%) /UnicodeString (xmlnode-nodevalue) , -(y) /UnicodeString (xmlnode-nodename) , -; (y) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1.2) /UnicodeString (xmlnode-nodevalue) , -(radius) /UnicodeString (xmlnode-nodename) , -; (radius) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(dilate) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(a) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(a) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMorphology) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1.2) /UnicodeString (xmlnode-nodevalue) , -(radius) /UnicodeString (xmlnode-nodename) , -; (radius) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(dilate) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(a) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMorphology) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(-4) /UnicodeString (xmlnode-nodevalue) , -(dy) /UnicodeString (xmlnode-nodename) , -; (dy) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b1) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b1) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feOffset) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(fractalNoise) /UnicodeString (xmlnode-nodevalue) , -(type) /UnicodeString (xmlnode-nodename) , -; (type) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(5) /UnicodeString (xmlnode-nodevalue) , -(numOctaves) /UnicodeString (xmlnode-nodename) , -; (numOctaves) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0.2) /UnicodeString (xmlnode-nodevalue) , -(baseFrequency) /UnicodeString (xmlnode-nodename) , -; (baseFrequency) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(noStitch) /UnicodeString (xmlnode-nodevalue) , -(stitchTiles) /UnicodeString (xmlnode-nodename) , -; (stitchTiles) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b2) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b1) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b2) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feTurbulence) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(3) /UnicodeString (xmlnode-nodevalue) , -(scale) /UnicodeString (xmlnode-nodename) , -; (scale) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b2) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b3) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b1) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b3) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(A) /UnicodeString (xmlnode-nodevalue) , -(yChannelSelector) /UnicodeString (xmlnode-nodename) , -; (yChannelSelector) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(R) /UnicodeString (xmlnode-nodevalue) , -(xChannelSelector) /UnicodeString (xmlnode-nodename) , -; (xChannelSelector) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feDisplacementMap) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(matrix) /UnicodeString (xmlnode-nodevalue) , -(type) /UnicodeString (xmlnode-nodename) , -; (type) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0) /UnicodeString (xmlnode-nodevalue) , -(values) /UnicodeString (xmlnode-nodename) , -; (values) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b4) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b3) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b4) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feColorMatrix) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(stdDeviation) /UnicodeString (xmlnode-nodename) , -; (stdDeviation) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b5) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b4) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b5) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(freeze) /UnicodeString (xmlnode-nodevalue) , -(fill) /UnicodeString (xmlnode-nodename) , -; (fill) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(none) /UnicodeString (xmlnode-nodevalue) , -(accumulate) /UnicodeString (xmlnode-nodename) , -; (accumulate) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(replace) /UnicodeString (xmlnode-nodevalue) , -(additive) /UnicodeString (xmlnode-nodename) , -; (additive) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(linear) /UnicodeString (xmlnode-nodevalue) , -(calcMode) /UnicodeString (xmlnode-nodename) , -; (calcMode) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(stdDeviation) /UnicodeString (xmlnode-nodevalue) , -(attributeName) /UnicodeString (xmlnode-nodename) , -; (attributeName) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(5s) /UnicodeString (xmlnode-nodevalue) , -(dur) /UnicodeString (xmlnode-nodename) , -; (dur) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(always) /UnicodeString (xmlnode-nodevalue) , -(restart) /UnicodeString (xmlnode-nodename) , -; (restart) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0s) /UnicodeString (xmlnode-nodevalue) , -(begin) /UnicodeString (xmlnode-nodename) , -; (begin) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(5) /UnicodeString (xmlnode-nodevalue) , -(to) /UnicodeString (xmlnode-nodename) , -; (to) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(from) /UnicodeString (xmlnode-nodename) , -; (from) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(animate) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feGaussianBlur) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(-8) /UnicodeString (xmlnode-nodevalue) , -(dy) /UnicodeString (xmlnode-nodename) , -; (dy) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c1) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c1) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feOffset) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(fractalNoise) /UnicodeString (xmlnode-nodevalue) , -(type) /UnicodeString (xmlnode-nodename) , -; (type) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(10) /UnicodeString (xmlnode-nodevalue) , -(numOctaves) /UnicodeString (xmlnode-nodename) , -; (numOctaves) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0.05) /UnicodeString (xmlnode-nodevalue) , -(baseFrequency) /UnicodeString (xmlnode-nodename) , -; (baseFrequency) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(noStitch) /UnicodeString (xmlnode-nodevalue) , -(stitchTiles) /UnicodeString (xmlnode-nodename) , -; (stitchTiles) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c2) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c1) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c2) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feTurbulence) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(8) /UnicodeString (xmlnode-nodevalue) , -(scale) /UnicodeString (xmlnode-nodename) , -; (scale) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c2) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c3) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c1) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c3) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(A) /UnicodeString (xmlnode-nodevalue) , -(yChannelSelector) /UnicodeString (xmlnode-nodename) , -; (yChannelSelector) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(R) /UnicodeString (xmlnode-nodevalue) , -(xChannelSelector) /UnicodeString (xmlnode-nodename) , -; (xChannelSelector) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feDisplacementMap) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(matrix) /UnicodeString (xmlnode-nodevalue) , -(type) /UnicodeString (xmlnode-nodename) , -; (type) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0) /UnicodeString (xmlnode-nodevalue) , -(values) /UnicodeString (xmlnode-nodename) , -; (values) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c4) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c3) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c4) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feColorMatrix) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(stdDeviation) /UnicodeString (xmlnode-nodename) , -; (stdDeviation) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c5) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c4) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c5) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feGaussianBlur) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c5) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMergeNode) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b5) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMergeNode) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(a) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMergeNode) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMerge) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(50 50) /UnicodeString (xmlnode-nodevalue) , -(filterRes) /UnicodeString (xmlnode-nodename) , -; (filterRes) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(objectBoundingBox) /UnicodeString (xmlnode-nodevalue) , -(filterUnits) /UnicodeString (xmlnode-nodename) , -; (filterUnits) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_Pixelspiel_1) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(remove) /UnicodeString (xmlnode-nodevalue) , -(fill) /UnicodeString (xmlnode-nodename) , -; (fill) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(indefinite) /UnicodeString (xmlnode-nodevalue) , -(repeatDur) /UnicodeString (xmlnode-nodename) , -; (repeatDur) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(none) /UnicodeString (xmlnode-nodevalue) , -(accumulate) /UnicodeString (xmlnode-nodename) , -; (accumulate) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(replace) /UnicodeString (xmlnode-nodevalue) , -(additive) /UnicodeString (xmlnode-nodename) , -; (additive) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(spline) /UnicodeString (xmlnode-nodevalue) , -(calcMode) /UnicodeString (xmlnode-nodename) , -; (calcMode) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(filterRes) /UnicodeString (xmlnode-nodevalue) , -(attributeName) /UnicodeString (xmlnode-nodename) , -; (attributeName) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(10s) /UnicodeString (xmlnode-nodevalue) , -(dur) /UnicodeString (xmlnode-nodename) , -; (dur) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(always) /UnicodeString (xmlnode-nodevalue) , -(restart) /UnicodeString (xmlnode-nodename) , -; (restart) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0s) /UnicodeString (xmlnode-nodevalue) , -(begin) /UnicodeString (xmlnode-nodename) , -; (begin) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1 1;20 15;200 200; 15 20;1 1 ) /UnicodeString (xmlnode-nodevalue) , -(values) /UnicodeString (xmlnode-nodename) , -; (values) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(animate) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(7) /UnicodeString (xmlnode-nodevalue) , -(stdDeviation) /UnicodeString (xmlnode-nodename) , -; (stdDeviation) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feGaussianBlur) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(in) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(compositeOut) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(k3) /UnicodeString (xmlnode-nodename) , -; (k3) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0) /UnicodeString (xmlnode-nodevalue) , -(k4) /UnicodeString (xmlnode-nodename) , -; (k4) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0) /UnicodeString (xmlnode-nodevalue) , -(k1) /UnicodeString (xmlnode-nodename) , -; (k1) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(k2) /UnicodeString (xmlnode-nodename) , -; (k2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(arithmetic) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(compositeOut1) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(compositeOut) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(compositeOut1) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMergeNode) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMerge) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(50 50) /UnicodeString (xmlnode-nodevalue) , -(filterRes) /UnicodeString (xmlnode-nodename) , -; (filterRes) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(objectBoundingBox) /UnicodeString (xmlnode-nodevalue) , -(filterUnits) /UnicodeString (xmlnode-nodename) , -; (filterUnits) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_Pixelspiel_2) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(remove) /UnicodeString (xmlnode-nodevalue) , -(fill) /UnicodeString (xmlnode-nodename) , -; (fill) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(indefinite) /UnicodeString (xmlnode-nodevalue) , -(repeatDur) /UnicodeString (xmlnode-nodename) , -; (repeatDur) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(none) /UnicodeString (xmlnode-nodevalue) , -(accumulate) /UnicodeString (xmlnode-nodename) , -; (accumulate) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(replace) /UnicodeString (xmlnode-nodevalue) , -(additive) /UnicodeString (xmlnode-nodename) , -; (additive) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(linear) /UnicodeString (xmlnode-nodevalue) , -(calcMode) /UnicodeString (xmlnode-nodename) , -; (calcMode) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(filterRes) /UnicodeString (xmlnode-nodevalue) , -(attributeName) /UnicodeString (xmlnode-nodename) , -; (attributeName) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(10s) /UnicodeString (xmlnode-nodevalue) , -(dur) /UnicodeString (xmlnode-nodename) , -; (dur) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(always) /UnicodeString (xmlnode-nodevalue) , -(restart) /UnicodeString (xmlnode-nodename) , -; (restart) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0s) /UnicodeString (xmlnode-nodevalue) , -(begin) /UnicodeString (xmlnode-nodename) , -; (begin) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(50 50;20 20;50 50) /UnicodeString (xmlnode-nodevalue) , -(values) /UnicodeString (xmlnode-nodename) , -; (values) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(animate) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(7) /UnicodeString (xmlnode-nodevalue) , -(stdDeviation) /UnicodeString (xmlnode-nodename) , -; (stdDeviation) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feGaussianBlur) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(yellow) /UnicodeString (xmlnode-nodevalue) , -(lighting-color) /UnicodeString (xmlnode-nodename) , -; (lighting-color) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(diffuseConstant) /UnicodeString (xmlnode-nodename) , -; (diffuseConstant) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(resultScale) /UnicodeString (xmlnode-nodename) , -; (resultScale) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(5) /UnicodeString (xmlnode-nodevalue) , -(surfaceScale) /UnicodeString (xmlnode-nodename) , -; (surfaceScale) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(diffuse) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(diffuse) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(remove) /UnicodeString (xmlnode-nodevalue) , -(fill) /UnicodeString (xmlnode-nodename) , -; (fill) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(indefinite) /UnicodeString (xmlnode-nodevalue) , -(repeatDur) /UnicodeString (xmlnode-nodename) , -; (repeatDur) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(none) /UnicodeString (xmlnode-nodevalue) , -(accumulate) /UnicodeString (xmlnode-nodename) , -; (accumulate) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(replace) /UnicodeString (xmlnode-nodevalue) , -(additive) /UnicodeString (xmlnode-nodename) , -; (additive) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(linear) /UnicodeString (xmlnode-nodevalue) , -(calcMode) /UnicodeString (xmlnode-nodename) , -; (calcMode) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(lighting-color) /UnicodeString (xmlnode-nodevalue) , -(attributeName) /UnicodeString (xmlnode-nodename) , -; (attributeName) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(15s) /UnicodeString (xmlnode-nodevalue) , -(dur) /UnicodeString (xmlnode-nodename) , -; (dur) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(always) /UnicodeString (xmlnode-nodevalue) , -(restart) /UnicodeString (xmlnode-nodename) , -; (restart) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0s) /UnicodeString (xmlnode-nodevalue) , -(begin) /UnicodeString (xmlnode-nodename) , -; (begin) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(yellow;green;blue;indigo;violet;red;orange) /UnicodeString (xmlnode-nodevalue) , -(values) /UnicodeString (xmlnode-nodename) , -; (values) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(animate) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(60) /UnicodeString (xmlnode-nodevalue) , -(elevation) /UnicodeString (xmlnode-nodename) , -; (elevation) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(180) /UnicodeString (xmlnode-nodevalue) , -(azimuth) /UnicodeString (xmlnode-nodename) , -; (azimuth) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feDistantLight) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feDiffuseLighting) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(10) /UnicodeString (xmlnode-nodevalue) , -(specularConstant) /UnicodeString (xmlnode-nodename) , -; (specularConstant) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(15) /UnicodeString (xmlnode-nodevalue) , -(specularExponent) /UnicodeString (xmlnode-nodename) , -; (specularExponent) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(red) /UnicodeString (xmlnode-nodevalue) , -(lighting-color) /UnicodeString (xmlnode-nodename) , -; (lighting-color) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(15) /UnicodeString (xmlnode-nodevalue) , -(surfaceScale) /UnicodeString (xmlnode-nodename) , -; (surfaceScale) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(specularOut) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(remove) /UnicodeString (xmlnode-nodevalue) , -(fill) /UnicodeString (xmlnode-nodename) , -; (fill) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(indefinite) /UnicodeString (xmlnode-nodevalue) , -(repeatDur) /UnicodeString (xmlnode-nodename) , -; (repeatDur) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(none) /UnicodeString (xmlnode-nodevalue) , -(accumulate) /UnicodeString (xmlnode-nodename) , -; (accumulate) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(replace) /UnicodeString (xmlnode-nodevalue) , -(additive) /UnicodeString (xmlnode-nodename) , -; (additive) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(linear) /UnicodeString (xmlnode-nodevalue) , -(calcMode) /UnicodeString (xmlnode-nodename) , -; (calcMode) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(lighting-color) /UnicodeString (xmlnode-nodevalue) , -(attributeName) /UnicodeString (xmlnode-nodename) , -; (attributeName) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(15s) /UnicodeString (xmlnode-nodevalue) , -(dur) /UnicodeString (xmlnode-nodename) , -; (dur) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(always) /UnicodeString (xmlnode-nodevalue) , -(restart) /UnicodeString (xmlnode-nodename) , -; (restart) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0s) /UnicodeString (xmlnode-nodevalue) , -(begin) /UnicodeString (xmlnode-nodename) , -; (begin) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(indigo;green;yellow;blue;violet;red;orange) /UnicodeString (xmlnode-nodevalue) , -(values) /UnicodeString (xmlnode-nodename) , -; (values) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(animate) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(60) /UnicodeString (xmlnode-nodevalue) , -(elevation) /UnicodeString (xmlnode-nodename) , -; (elevation) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(180) /UnicodeString (xmlnode-nodevalue) , -(azimuth) /UnicodeString (xmlnode-nodename) , -; (azimuth) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(light) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feDistantLight) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feSpecularLighting) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(in) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(specularOut) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(specularOut) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0) /UnicodeString (xmlnode-nodevalue) , -(k3) /UnicodeString (xmlnode-nodename) , -; (k3) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0) /UnicodeString (xmlnode-nodevalue) , -(k4) /UnicodeString (xmlnode-nodename) , -; (k4) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(k1) /UnicodeString (xmlnode-nodename) , -; (k1) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0) /UnicodeString (xmlnode-nodevalue) , -(k2) /UnicodeString (xmlnode-nodename) , -; (k2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(arithmetic) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(diffuse) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(litPaint) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(k3) /UnicodeString (xmlnode-nodename) , -; (k3) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0) /UnicodeString (xmlnode-nodevalue) , -(k4) /UnicodeString (xmlnode-nodename) , -; (k4) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0) /UnicodeString (xmlnode-nodevalue) , -(k1) /UnicodeString (xmlnode-nodename) , -; (k1) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(k2) /UnicodeString (xmlnode-nodename) , -; (k2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(arithmetic) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(specularOut) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(litPaint1) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(litPaint) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(litPaint1) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMergeNode) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMerge) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(objectBoundingBox) /UnicodeString (xmlnode-nodevalue) , -(filterUnits) /UnicodeString (xmlnode-nodename) , -; (filterUnits) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_Schatten_1) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(2) /UnicodeString (xmlnode-nodevalue) , -(stdDeviation) /UnicodeString (xmlnode-nodename) , -; (stdDeviation) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feGaussianBlur) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(4) /UnicodeString (xmlnode-nodevalue) , -(dy) /UnicodeString (xmlnode-nodename) , -; (dy) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(4) /UnicodeString (xmlnode-nodevalue) , -(dx) /UnicodeString (xmlnode-nodename) , -; (dx) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(offsetBlurredAlpha) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feOffset) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(offsetBlurredAlpha) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMergeNode) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMergeNode) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMerge) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(140%) /UnicodeString (xmlnode-nodevalue) , -(width) /UnicodeString (xmlnode-nodename) , -; (width) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(130%) /UnicodeString (xmlnode-nodevalue) , -(height) /UnicodeString (xmlnode-nodename) , -; (height) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(objectBoundingBox) /UnicodeString (xmlnode-nodevalue) , -(filterUnits) /UnicodeString (xmlnode-nodename) , -; (filterUnits) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(-15%) /UnicodeString (xmlnode-nodevalue) , -(x) /UnicodeString (xmlnode-nodename) , -; (x) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_Schatten_2) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(-15%) /UnicodeString (xmlnode-nodevalue) , -(y) /UnicodeString (xmlnode-nodename) , -; (y) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(6) /UnicodeString (xmlnode-nodevalue) , -(stdDeviation) /UnicodeString (xmlnode-nodename) , -; (stdDeviation) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feGaussianBlur) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(8) /UnicodeString (xmlnode-nodevalue) , -(dy) /UnicodeString (xmlnode-nodename) , -; (dy) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(8) /UnicodeString (xmlnode-nodevalue) , -(dx) /UnicodeString (xmlnode-nodename) , -; (dx) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(offsetBlurredAlpha) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feOffset) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(offsetBlurredAlpha) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMergeNode) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMergeNode) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMerge) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(objectBoundingBox) /UnicodeString (xmlnode-nodevalue) , -(filterUnits) /UnicodeString (xmlnode-nodename) , -; (filterUnits) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_Statisch) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode -endstream endobj 137 0 obj <>stream - : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(fractalNoise) /UnicodeString (xmlnode-nodevalue) , -(type) /UnicodeString (xmlnode-nodename) , -; (type) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(10) /UnicodeString (xmlnode-nodevalue) , -(numOctaves) /UnicodeString (xmlnode-nodename) , -; (numOctaves) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0.5) /UnicodeString (xmlnode-nodevalue) , -(baseFrequency) /UnicodeString (xmlnode-nodename) , -; (baseFrequency) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(noStitch) /UnicodeString (xmlnode-nodevalue) , -(stitchTiles) /UnicodeString (xmlnode-nodename) , -; (stitchTiles) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c2) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c1) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c2) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(remove) /UnicodeString (xmlnode-nodevalue) , -(fill) /UnicodeString (xmlnode-nodename) , -; (fill) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(indefinite) /UnicodeString (xmlnode-nodevalue) , -(repeatDur) /UnicodeString (xmlnode-nodename) , -; (repeatDur) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(none) /UnicodeString (xmlnode-nodevalue) , -(accumulate) /UnicodeString (xmlnode-nodename) , -; (accumulate) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(replace) /UnicodeString (xmlnode-nodevalue) , -(additive) /UnicodeString (xmlnode-nodename) , -; (additive) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(linear) /UnicodeString (xmlnode-nodevalue) , -(calcMode) /UnicodeString (xmlnode-nodename) , -; (calcMode) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(baseFrequency) /UnicodeString (xmlnode-nodevalue) , -(attributeName) /UnicodeString (xmlnode-nodename) , -; (attributeName) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(5s) /UnicodeString (xmlnode-nodevalue) , -(dur) /UnicodeString (xmlnode-nodename) , -; (dur) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(always) /UnicodeString (xmlnode-nodevalue) , -(restart) /UnicodeString (xmlnode-nodename) , -; (restart) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0.7) /UnicodeString (xmlnode-nodevalue) , -(to) /UnicodeString (xmlnode-nodename) , -; (to) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0.5) /UnicodeString (xmlnode-nodevalue) , -(from) /UnicodeString (xmlnode-nodename) , -; (from) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(animate) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feTurbulence) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(in) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c2) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(100%) /UnicodeString (xmlnode-nodevalue) , -(width) /UnicodeString (xmlnode-nodename) , -; (width) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(100%) /UnicodeString (xmlnode-nodevalue) , -(height) /UnicodeString (xmlnode-nodename) , -; (height) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(objectBoundingBox) /UnicodeString (xmlnode-nodevalue) , -(filterUnits) /UnicodeString (xmlnode-nodename) , -; (filterUnits) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0%) /UnicodeString (xmlnode-nodevalue) , -(x) /UnicodeString (xmlnode-nodename) , -; (x) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_Verwirbelung_3) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0%) /UnicodeString (xmlnode-nodevalue) , -(y) /UnicodeString (xmlnode-nodename) , -; (y) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(turbulence) /UnicodeString (xmlnode-nodevalue) , -(type) /UnicodeString (xmlnode-nodename) , -; (type) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(8) /UnicodeString (xmlnode-nodevalue) , -(numOctaves) /UnicodeString (xmlnode-nodename) , -; (numOctaves) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0.05) /UnicodeString (xmlnode-nodevalue) , -(baseFrequency) /UnicodeString (xmlnode-nodename) , -; (baseFrequency) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(noStitch) /UnicodeString (xmlnode-nodevalue) , -(stitchTiles) /UnicodeString (xmlnode-nodename) , -; (stitchTiles) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(turb) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feTurbulence) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(in) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(turb) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(100%) /UnicodeString (xmlnode-nodevalue) , -(width) /UnicodeString (xmlnode-nodename) , -; (width) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(100%) /UnicodeString (xmlnode-nodevalue) , -(height) /UnicodeString (xmlnode-nodename) , -; (height) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(objectBoundingBox) /UnicodeString (xmlnode-nodevalue) , -(filterUnits) /UnicodeString (xmlnode-nodename) , -; (filterUnits) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0%) /UnicodeString (xmlnode-nodevalue) , -(x) /UnicodeString (xmlnode-nodename) , -; (x) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_Verwirbelung_5) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0%) /UnicodeString (xmlnode-nodevalue) , -(y) /UnicodeString (xmlnode-nodename) , -; (y) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(fractalNoise) /UnicodeString (xmlnode-nodevalue) , -(type) /UnicodeString (xmlnode-nodename) , -; (type) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(4) /UnicodeString (xmlnode-nodevalue) , -(numOctaves) /UnicodeString (xmlnode-nodename) , -; (numOctaves) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0.4) /UnicodeString (xmlnode-nodevalue) , -(baseFrequency) /UnicodeString (xmlnode-nodename) , -; (baseFrequency) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(noStitch) /UnicodeString (xmlnode-nodevalue) , -(stitchTiles) /UnicodeString (xmlnode-nodename) , -; (stitchTiles) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(turb) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feTurbulence) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(in) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(turb) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -%AI10_EndSVGFilter -%AI5_End_NonPrinting-- -%AI5_Begin_NonPrinting -Np -%AI14_BeginSymbol -(Kombinationsfeld) 0 A -0 Xw -u -u -0 O -9 0.7 0 0 0 Xy -0 J 0 j 1 w 4 M []0 d 0 XR -6.5 -10 m -6.5 -10 L --10.5 -10 L --10.5 10 L -6.5 10 L -6.5 10 L -8.15625 10 9.5 8.6582 9.5 7 C -9.5 -7 L -9.5 -8.65625 8.15625 -10 6.5 -10 C -Bb -1 (Unnamed gradient 1) 0 0 -90 1 1 0 0 1 0 0 1 Bg --0.000001 -20 -24 0.000001 -7879.5 7901 Xm --0.000001 -23.5 -24 0.000001 -7879.5 7924.5 Bc --0.000001 -20 -24 0.000001 -7879.5 7901 Bm --0.000001 -23.5 -24 0.000001 -7879.5 7881 Bc -f -0 BB -0 1 0 0 0 Xy -6.5 -11 m -6.5 -11 L --10.5 -11 L --10.5 -10 L -6.5 -10 L -6.5 -10 L -8.15625 -10 9.5 -8.65625 9.5 -7 C -9.5 7 L -9.5 8.6582 8.15625 10 6.5 10 C -6.5 10 L --9.5 10 L --10.5 10 L --10.5 11 L -6.5 11 L -6.5 11 L -8.70898 11 10.5 9.20898 10.5 7 C -10.5 -7 L -10.5 -9.20898 8.70898 -11 6.5 -11 C -Bb -1 (Unnamed gradient 2) 0 0 -90 1 1 0 0 1 0 0 1 Bg --0.000001 -22 -25 0.000001 -7878.5 7902 Xm --0.000001 -25 -25 0.000001 -7878.5 7927 Bc --0.000001 -22 -25 0.000001 -7878.5 7902 Bm --0.000001 -25 -25 0.000001 -7878.5 7880 Bc -f -0 BB -U -9 () XW -0.690608 0.595209 0.559747 0.655817 0.2 0.2 0.2 Xa --3.5 -2 m -2.5 -2 L --0.5 2 l --3.5 -2 L -f -U -%_/ArtDictionary : -%_0 17 18 4 0 0 /RealMatrix -%_ (AI13Pattern9SliceScalingGridKey) , -%_5 /Int (AI13PatternRegistrationType) , -%_0 /Bool (AI15PixelPerfectSymbolEnablekey) , -%_1 /Bool (AI13PatternEnableGuides) , -%_2 /Int (AI13PatternExportType) , -%_; -%_ -9 () XW -%AI10_EndSymbol -%AI14_BeginSymbol -(Schaltfläche) 0 A -0 Xw -u -*u -1 D -0 O -0 1 0 0 0 Xy -0 J 0 j 1 w 4 M []0 d 0 XR -0 g -28.0005 -11 m -28 -11 L --28 -11 L --30.21 -11 -32 -9.20898 -32 -7 C --32 7 L --32 9.20801 -30.21 10.999 -28 11 C -28 11 L -28.0005 11 L -30.2085 11 32 9.20898 32 7 C -32 -7 L -32 -9.20898 30.2085 -11 28.0005 -11 C -f -0 D -31 7 m -31 8.6582 29.6563 10 28.0005 10 C -28 10 L --28 10 L --29.6572 9.99902 -31 8.65625 -31 7 C --31 -7 L --31 -8.65527 -29.6572 -10 -28 -10 C -28 -10 L -28.0005 -10 L -29.6563 -10 31 -8.65625 31 -7 C -31 7 L -Bb -1 (Unnamed gradient 2) 0 0 -90 1 1 0 0 1 0 0 1 Bg --0.000001 -22 -68 0.000003 -7857 7902 Xm --0.000001 -25 -68 0.000003 -7857 7927 Bc --0.000001 -22 -68 0.000003 -7857 7902 Bm --0.000001 -25 -68 0.000003 -7857 7880 Bc -f -0 BB -*U -9 0.85 0 0 0 Xy -28.0005 -10 m -28 -10 L -28 -10 L --28 -10 L --28 -10 L --29.6572 -10 -31 -8.65527 -31 -7 C --31 7 L --31 8.65625 -29.6572 9.99902 -28 10 C --28 10 L -28 10 L -28 10 L -28.0005 10 l -29.6563 10 31 8.6582 31 7 C -31 -7 L -31 -8.65625 29.6563 -10 28.0005 -10 c -Bb -1 (Unnamed gradient 3) 0 0 -90 1 1 0 0 1 0 0 1 Bg --0.000001 -20 -66 0.000003 -7858 7901 Xm --0.000001 -23 -66 0.000003 -7858 7924 Bc --0.000001 -20 -66 0.000003 -7858 7901 Bm --0.000001 -23 -66 0.000003 -7858 7881 Bc -f -0 BB -U -%_/ArtDictionary : -%_4 60 18 4 0 0 /RealMatrix -%_ (AI13Pattern9SliceScalingGridKey) , -%_5 /Int (AI13PatternRegistrationType) , -%_0 /Bool (AI15PixelPerfectSymbolEnablekey) , -%_1 /Bool (AI13PatternEnableGuides) , -%_2 /Int (AI13PatternExportType) , -%_; -%_ -9 () XW -%AI10_EndSymbol -%AI14_BeginSymbol -(Suchen) 0 A -0 Xw -u -1 Ap -0 O -1 1 0 0 0 Xy -0 J 0 j 1 w 4 M []0 d 0 XR -31 21.5322 m -31 24.0166 17.1211 26.0303 0 26.0303 c --17.1191 26.0303 -31 24.0166 -31 21.5322 c --31 19.0459 -17.1191 17.0303 0 17.0303 c -17.1211 17.0303 31 19.0459 31 21.5322 c -Bb -0 0 0 0 Bh -1 (Unnamed gradient 17) 0 0 0 1 1.4762 0 0 0.2143 -3789.1475 6144.7451 1 Bg -30.9986 0 0 -4.50006 -7891 7869.4692 Bm -f -0 BB -%_/ArtDictionary : -%_/Dictionary : /NotRecorded , -%_1.4762 0 0 0.2143 -3789.1475 6144.7451 /RealMatrix -%_ (CAIGradientTformMatrix) , -%_; (Adobe_AI9_ArtStyle_Dictionary) , -%_; -%_ -0 1 Xd -Bb -0 0 0 0 Bh -2 (Unnamed gradient 17) 0 0 0 1 1 0 0 1 0 0 1 Bg -0 BB -6 () XW -u -0 Ap -0 1 0 0 0 Xy -10 M -18.4502 21.9706 m --18.7514 21.9706 -19.0387 21.8438 -19.2384 21.6228 C --23.965 16.396 L --24.1564 16.1854 -24.2537 15.9123 -24.2398 15.6264 c --24.2259 15.3403 -24.1025 15.0776 -23.8923 14.8867 C --10.655 2.8613 L --10.4594 2.68388 -10.205 2.58601 -9.93892 2.58601 c --9.63749 2.58601 -9.35004 2.7128 -9.15027 2.93386 C --4.42351 8.15868 L --4.23263 8.36885 -4.13573 8.64198 -4.15001 8.92848 c --4.16429 9.21497 -4.28761 9.47757 -4.49724 9.66792 C --17.7366 21.6953 L --17.9317 21.873 -18.1849 21.9706 -18.4502 21.9706 C -Bb -0 0 0 0 Bh -1 (Unnamed gradient 28) -0.15047 0.64736 0 1.9211 1 0 0 1 0 0 1 Bg -18.1731 0 0 -18.1731 -7908.2183 7866.1729 Bm -f -0 BB -u -*u -0.478614 0.312474 0.290532 0.089723 0.54902 0.596078 0.627451 Xa --9.93896 3.08594 m --9.84473 3.08594 -9.66504 3.10986 -9.521 3.26953 C --4.79297 8.49561 L --4.65771 8.64453 -4.64502 8.81494 -4.64941 8.90381 C --4.65723 9.05713 -4.72217 9.19678 -4.8335 9.29785 C --18.0737 21.3262 L --18.1763 21.4194 -18.3096 21.4707 -18.4502 21.4707 C --18.5444 21.4707 -18.7236 21.4468 -18.8677 21.2871 C --23.5957 16.0591 L --23.8022 15.8315 -23.7842 15.4639 -23.5562 15.2568 C --10.3193 3.23193 L --10.2158 3.1377 -10.0806 3.08594 -9.93896 3.08594 C -F -1 D --9.93896 2.08594 m --10.3145 2.08594 -10.6919 2.21973 -10.9912 2.49121 C --24.2285 14.5166 L --24.8672 15.0967 -24.916 16.0928 -24.3359 16.7314 C --19.6094 21.958 L --19.3022 22.2979 -18.877 22.4707 -18.4502 22.4707 C --18.0747 22.4707 -17.6982 22.3369 -17.4004 22.0654 C --4.16113 10.0381 L --3.52441 9.45996 -3.47266 8.46191 -4.05273 7.82324 C --8.7793 2.59863 L --9.08643 2.25879 -9.51172 2.08594 -9.93896 2.08594 C --9.93896 2.08594 L -f -*U -U -0 0 Xd -6 () XW -U -0 0 Xd -6 () XW -%_0 D -%_-24.3359 16.7314 m -%_-24.916 16.0928 -24.8672 15.0967 -24.2285 14.5166 c -%_-10.9912 2.49121 l -%_-10.3516 1.91113 -9.35645 1.95996 -8.7793 2.59863 c -%_-4.05273 7.82324 l -%_-3.47266 8.46191 -3.52441 9.45996 -4.16113 10.0381 c -%_-17.4004 22.0654 l -%_-18.0371 22.6455 -19.0322 22.5967 -19.6094 21.958 c -%_-24.3359 16.7314 l -%_n -1 (Anon) XW -*u -0 O -0 R -0.478614 0.312474 0.290532 0.089723 0.54902 0.596078 0.627451 XA -4 M 0 g -7.40234 -25.5303 m -9.28125 -25.5303 11.1943 -25.2197 13.0703 -24.5713 C -22.1172 -21.4404 26.9102 -11.5713 23.7832 -2.52441 C -21.3018 4.64551 14.5879 9.14551 7.40234 9.14551 C -5.52344 9.14551 3.61328 8.83496 1.73438 8.18652 C --7.3125 5.05762 -12.1084 -4.81348 -8.97852 -13.8584 C --6.49707 -21.0283 0.219727 -25.5303 7.40234 -25.5303 C -B -1 D -7.40234 -20.374 m -2.21582 -20.374 -2.40918 -17.0791 -4.1084 -12.1729 C --5.1709 -9.09863 -4.97363 -5.7959 -3.55176 -2.86816 C --2.12988 0.055664 0.34668 2.25293 3.42188 3.31738 C -4.71191 3.76465 6.05176 3.99121 7.40234 3.99121 C -12.5889 3.99121 17.2139 0.696289 18.9131 -4.20801 C -19.9756 -7.28223 19.7783 -10.5869 18.3564 -13.5127 C -16.9346 -16.4404 14.458 -18.6377 11.3857 -19.7002 C -11.3857 -19.7002 L -10.0898 -20.1475 8.75 -20.374 7.40234 -20.374 C -7.40234 -20.374 L -Bb -0 0 0 0 Bh -1 (Unnamed gradient 28) 0.007548 0.433959 0 1.40083 1 0 0 1 0 0 1 Bg -17.0658 0 0 -17.0658 -7883.3364 7884.1445 Bm -b -2 BB -*U -u -0 D -10 M -8.90137 7.71973 m --8.35059 7.21973 -7.53711 7.19043 -6.95215 7.59863 C --9.96973 4.26465 L --22.5664 15.708 L --20.3691 18.1377 L --8.90137 7.71973 L -Bb -1 (Unnamed gradient 7) -3.81729 0 -49.4846 6.03541 1 0 0 1 0 0 1 Bg -17.6244 -20.6243 -16.0703 -13.7328 -7910.499 7901.1626 Xm -33.9039 -39.6748 -16.0703 -13.7328 -7944.4028 7940.8374 Bc -17.6244 -20.6243 -16.0703 -13.7328 -7910.499 7901.1626 Bm -33.9039 -39.6748 -16.0703 -13.7328 -7892.8745 7880.5381 Bc -f -0 BB -U -%_/ArtDictionary : -%_0 /Int (AI10 compound shape mode) , -%_; -%_ -2 1 0 0 0 Xy -0 0 Xd -6 () XW -%_-8.90137 7.71973 m -%_-8.35059 7.21973 -7.53711 7.19043 -6.95215 7.59863 C -%_-9.96973 4.26465 L -%_-22.5664 15.708 L -%_-20.3691 18.1377 L -%_-8.90137 7.71973 L -%_n -%_/ArtDictionary : -%_0 /Int (AI10 compound shape mode) , -%_; -%_ -1 (Anon 437) XW -0 O -4 M 12.5801 -23.1553 m -10.9014 -23.7354 9.16016 -24.0283 7.40234 -24.0283 c -0.65918 -24.0283 -5.35449 -19.7451 -7.56152 -13.3682 c --9.3125 -8.30762 -8.32813 -2.95605 -5.40723 1.08691 C --5.00293 -0.069336 -4.43066 -1.18066 -3.72559 -2.23926 C --3.80273 -2.38379 -3.88965 -2.52051 -3.96191 -2.66895 c --5.43652 -5.70605 -5.6416 -9.13379 -4.53906 -12.3232 c --2.77637 -17.4111 2.02148 -20.8291 7.40234 -20.8291 c -8.80078 -20.8291 10.1904 -20.5947 11.5352 -20.1299 c -14.7217 -19.0283 17.291 -16.749 18.7666 -13.7119 c -19.0146 -13.2021 19.2129 -12.6787 19.3887 -12.1494 C -19.7041 -12.1279 20.0215 -12.1143 20.3359 -12.0811 c -21.1885 -11.9932 22.0146 -11.8623 22.8184 -11.7021 C -21.6367 -16.8506 17.9277 -21.3037 12.5801 -23.1553 c -Bb -1 (Unnamed gradient 7) -0.837511 0 -63.554 2.1927 1 0 0 1 0 0 1 Bg -19.0977 -38.3947 -33.1435 -16.4857 -7881.2896 7936.3179 Xm -20.434 -41.0812 -33.1435 -16.4857 -7901.7231 7977.3994 Bc -19.0977 -38.3947 -33.1435 -16.4857 -7881.2896 7936.3179 Bm -20.434 -41.0812 -33.1435 -16.4857 -7862.1919 7897.9233 Bc -f -0 BB --6.4707 -11.915 m --4.26367 -18.292 1.75 -22.5752 8.49316 -22.5752 c -10.251 -22.5752 11.9922 -22.2822 13.6709 -21.7021 c -16.4521 -20.7393 18.7813 -19.0635 20.5557 -16.9619 C -18.7041 -19.7471 15.9766 -21.9795 12.5801 -23.1553 c -10.9014 -23.7354 9.16016 -24.0283 7.40234 -24.0283 c -0.65918 -24.0283 -5.35449 -19.7451 -7.56152 -13.3682 c --9.45313 -7.90137 -8.14941 -2.10254 -4.66309 2.02637 C --7.30762 -1.9502 -8.14941 -7.06348 -6.4707 -11.915 c -Bb -1 (Unnamed gradient 7) -0.284451 0 -62.8867 1.31311 1 0 0 1 0 0 1 Bg -11.6282 -22.7105 -32.3312 -16.5542 -7877.5737 7926.2744 Xm -13.8263 -27.0035 -32.3312 -16.5542 -7891.3999 7953.2778 Bc -11.6282 -22.7105 -32.3312 -16.5542 -7877.5737 7926.2744 Bm -13.8263 -27.0035 -32.3312 -16.5542 -7865.9453 7903.564 Bc -f -0 BB -u -0 1 0 0 0 Xy -10 M -9.12402 5.19824 m --9.96973 4.26465 L --22.5664 15.708 L --21.7207 16.6436 L --9.12402 5.19824 L -Bb -1 (Unnamed gradient 7) -0.125225 0 -65.913 1.33255 1 0 0 1 0 0 1 Bg -3.53784 -7.91375 -18.7709 -8.3915 -7899.1191 7888.4551 Xm -11.3559 -25.4018 -18.7709 -8.3915 -7910.4751 7913.8569 Bc -3.53784 -7.91375 -18.7709 -8.3915 -7899.1191 7888.4551 Bm -11.3559 -25.4018 -18.7709 -8.3915 -7895.5815 7880.541 Bc -f -0 BB -U -2 1 0 0 0 Xy -0 0 Xd -6 () XW -%_-9.12402 5.19824 m -%_-9.96973 4.26465 L -%_-22.5664 15.708 L -%_-21.7207 16.6436 L -%_-9.12402 5.19824 L -%_n -1 (Anon 438) XW -U -%_/ArtDictionary : -%_15.5 46.5 39.0454 13.0151 0 0 /RealMatrix -%_ (AI13Pattern9SliceScalingGridKey) , -%_5 /Int (AI13PatternRegistrationType) , -%_0 /Bool (AI15PixelPerfectSymbolEnablekey) , -%_0 /Bool (AI13PatternEnableGuides) , -%_2 /Int (AI13PatternExportType) , -%_; -%_ -9 () XW -%AI10_EndSymbol -%AI14_BeginSymbol -(Textbereich) 0 A -0 Xw -u -1 Ap -0 R -0.702296 0.157443 0 0 0.2 0.662745 0.882353 XA -0 1 0 0 0 Xy -0 J 0 j 0.991358 w 4 M []0 d 0 XR -77.5 45.5 m --77.5 45.5 L --77.5 -45.5 L -77.5 -45.5 L -77.5 45.5 L -s -0 0.6 0 0 0 Xy -1.00864 w 78.5 46.5 m --78.5 46.5 L --78.5 -46.5 L -78.5 -46.5 L -78.5 46.5 L -s -U -%_/ArtDictionary : -%_2.0811 156.0811 91.4609 2.4609 0 0 /RealMatrix -%_ (AI13Pattern9SliceScalingGridKey) , -%_5 /Int (AI13PatternRegistrationType) , -%_0 /Bool (AI15PixelPerfectSymbolEnablekey) , -%_1 /Bool (AI13PatternEnableGuides) , -%_2 /Int (AI13PatternExportType) , -%_; -%_ -9 () XW -%AI10_EndSymbol -%AI14_BeginSymbol -(Texteingabe) 0 A -0 Xw -u -0 Ap -0 R -0.702296 0.157443 0 0 0.2 0.662745 0.882353 XA -0 1 0 0 0 Xy -0 J 0 j 1 w 4 M []0 d 0 XR -77.5 11.5 m --77.5 11.5 L --77.5 -11.5 L -77.5 -11.5 L -77.5 11.5 L -s -0 0.6 0 0 0 Xy -78.5 12.5 m --78.5 12.5 L --78.5 -12.5 L -78.5 -12.5 L -78.5 12.5 L -s -U -%_/ArtDictionary : -%_1.7002 155.7002 24 2 0 0 /RealMatrix -%_ (AI13Pattern9SliceScalingGridKey) , -%_5 /Int (AI13PatternRegistrationType) , -%_0 /Bool (AI15PixelPerfectSymbolEnablekey) , -%_1 /Bool (AI13PatternEnableGuides) , -%_2 /Int (AI13PatternExportType) , -%_; -%_ -9 () XW -%AI10_EndSymbol -%AI5_End_NonPrinting-- -%AI5_Begin_NonPrinting -Np -%AI8_BeginPluginObject -(Adobe Brush Manager Order) -(Adobe Brush Manager Order) -( Adobe Calligraphic Brush Tool/ Rund - 3 Pt./ Adobe Calligraph) - -(ic Brush Tool/ Rund - 10 Pt./ Adobe Calligraphic Brush Tool/ O) - -(val - 3 Pt./ Adobe ArtOnPath Brush Tool/ Kohle - Feder/ Adobe ) - -(dBrush Brush Tool/ Stupfpinsel/ Adobe PatternOnPath Brush Tool) - -(/ Silber/) . -%AI8_EndPluginObject -%AI5_End_NonPrinting-- -%AI5_Begin_NonPrinting -Np -%AI8_BeginPluginObject -(Adobe dBrush Brush Tool) -(Stupfpinsel) -(0 4 0.75 0.75 0.33 0.75 1 3 AI_BristleBrushLibary_CS5 02_Round) - -(_Blunt) . -%AI8_EndPluginObject -%AI5_End_NonPrinting-- -%AI5_Begin_NonPrinting -Np -%AI8_BeginPluginObject -(Adobe Calligraphic Brush Tool) -(Oval - 3 Pt.) -(1 3 3 26 74 15 15 0 1 0 0) . -%AI8_EndPluginObject -%AI8_BeginPluginObject -(Adobe Calligraphic Brush Tool) -(Rund - 10 Pt.) -(1 10 10 100 100 0 0 1 0 0 0) . -%AI8_EndPluginObject -%AI8_BeginPluginObject -(Adobe Calligraphic Brush Tool) -(Rund - 3 Pt.) -(1 3 3 100 100 0 0 0 0 0 0) . -%AI8_EndPluginObject -%AI5_End_NonPrinting-- -%AI5_Begin_NonPrinting -Np -%AI8_BeginPluginObject -(Adobe ArtOnPath Brush Tool) -(Kohle - Feder) -(2 / Unnamed 6/ / / / / 0 1 / 1 1 1 0 1 0 0 0 1 1 0 0 0 0 1) . -%AI8_EndPluginObject -%AI5_End_NonPrinting-- -%AI5_Begin_NonPrinting -Np -%AI8_BeginPluginObject -(Adobe PatternOnPath Brush Tool) -(Silber) -(2 / Unnamed Brush Pattern 45/ Unnamed Brush Pattern 49/ Unname) - -(d Brush Pattern 47/ / / 5 0.623529 0.67451 0.737255 / 1 0 1 0) - -( 1 0 0 0 1 1 0 0 0 0 0) . -%AI8_EndPluginObject -%AI5_End_NonPrinting-- -%AI5_Begin_NonPrinting -Np -%AI9_BeginArtStyles -/KnownStyle : -(Anon) /Name , -/ActiveStyle : -/CompoundFilter : -(Chain Style Filter) 0 0 /Filter , -1 /Visible , -/CompoundFilter : -(Stack Style Filter) 0 0 /Filter , -1 /Visible , -/CompoundFilter : -(Chain Style Filter) 0 0 /Filter , -1 /Visible , -/BasicFilter : -(Adobe Stroke Offset) 1 0 /Filter , -1 /Visible , -(Illustrator.exe) /PluginFileName , -(Konturverschiebung: Live-Effekt) /Title , -2 /FillOrStroke , -/Dictionary : /NotRecorded , -(Inside) /String (DisplayString) , -/StrokeStyle : 0 R -0.478614 0.312474 0.290532 0.089723 0.54902 0.596078 0.627451 XA -0 1 0 0 0 Xy -0 J 0 j 1 w 4 M []0 d 0 XR -1 0 Xd -/Def ; - (StrokeStyle) , -1 /Bool (StrokeOffsetInside) , -; /Dict ; - /Part , -/BasicFilter : -(Blend Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -/BlendStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -/Def ; - (BlendStyle) , -; /Dict ; - /Part , -; - /Part , -/BasicFilter : -(Conduit Filter) 0 0 /Filter , -1 /Visible , -; - /Part , -/CompoundFilter : -(Chain Style Filter) 0 0 /Filter , -1 /Visible , -/BasicFilter : -(Fill Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -0 /Bool (UseEvenOdd) , -/FillStyle : 0 O -0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -0 1 Xd -Bb -0 0 0 0 Bh -2 (Unnamed gradient 28) -0.15047 0.64736 0 1.9211 1 0 0 1 0 0 1 Bg -0 BB -/Def ; - (FillStyle) , -; /Dict ; - /Part , -/BasicFilter : -(Blend Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -/BlendStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -/Def ; - (BlendStyle) , -; /Dict ; - /Part , -; - /Part , -; - /Part , -/BasicFilter : -(Blend Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -/BlendStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -/Def ; - (BlendStyle) , -; /Dict ; - /Part , -; - -/Execution ; - /Def ; -/KnownStyle : -(Anon 437) /Name , -/ActiveStyle : -/CompoundFilter : -(Chain Style Filter) 0 0 /Filter , -1 /Visible , -/CompoundFilter : -(Stack Style Filter) 0 0 /Filter , -1 /Visible , -/CompoundFilter : -(Chain Style Filter) 0 0 /Filter , -1 /Visible , -/BasicFilter : -(Adobe Stroke Offset) 1 0 /Filter , -1 /Visible , -(Illustrator.exe) /PluginFileName , -(Konturverschiebung: Live-Effekt) /Title , -2 /FillOrStroke , -/Dictionary : /NotRecorded , -(Inside) /String (DisplayString) , -/StrokeStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -0 0 Xd -/Def ; - (StrokeStyle) , -1 /Bool (StrokeOffsetInside) , -; /Dict ; - /Part , -/BasicFilter : -(Blend Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -/BlendStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -/Def ; - (BlendStyle) , -; /Dict ; - /Part , -; - /Part , -/BasicFilter : -(Conduit Filter) 0 0 /Filter , -1 /Visible , -; - /Part , -/CompoundFilter : -(Chain Style Filter) 0 0 /Filter , -1 /Visible , -/BasicFilter : -(Fill Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -0 /Bool (UseEvenOdd) , -/FillStyle : 0 O -0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -0 1 Xd -Bb -2 (Unnamed gradient 7) -3.81729 0 -49.4846 6.03541 1 0 0 1 0 0 1 Bg -0 BB -/Def ; - (FillStyle) , -; /Dict ; - /Part , -/BasicFilter : -(Blend Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -/BlendStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -/Def ; - (BlendStyle) , -; /Dict ; - /Part , -; - /Part , -; - /Part , -/BasicFilter : -(Blend Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -/BlendStyle : 2 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -/Def ; - (BlendStyle) , -; /Dict ; - /Part , -; - -/Execution ; - /Def ; -/KnownStyle : -(Anon 438) /Name , -/ActiveStyle : -/CompoundFilter : -(Chain Style Filter) 0 0 /Filter , -1 /Visible , -/CompoundFilter : -(Stack Style Filter) 0 0 /Filter , -1 /Visible , -/CompoundFilter : -(Chain Style Filter) 0 0 /Filter , -1 /Visible , -/BasicFilter : -(Adobe Stroke Offset) 1 0 /Filter , -1 /Visible , -(Illustrator.exe) /PluginFileName , -(Konturverschiebung: Live-Effekt) /Title , -2 /FillOrStroke , -/Dictionary : /NotRecorded , -(Inside) /String (DisplayString) , -/StrokeStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -0 0 Xd -/Def ; - (StrokeStyle) , -1 /Bool (StrokeOffsetInside) , -; /Dict ; - /Part , -/BasicFilter : -(Blend Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -/BlendStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -/Def ; - (BlendStyle) , -; /Dict ; - /Part , -; - /Part , -/BasicFilter : -(Conduit Filter) 0 0 /Filter , -1 /Visible , -; - /Part , -/CompoundFilter : -(Chain Style Filter) 0 0 /Filter , -1 /Visible , -/BasicFilter : -(Fill Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -0 /Bool (UseEvenOdd) , -/FillStyle : 0 O -0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -0 1 Xd -Bb -2 (Unnamed gradient 7) -0.125225 0 -65.913 1.33255 1 0 0 1 0 0 1 Bg -0 BB -/Def ; - (FillStyle) , -; /Dict ; - /Part , -/BasicFilter : -(Blend Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -/BlendStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -/Def ; - (BlendStyle) , -; /Dict ; - /Part , -; - /Part , -; - /Part , -/BasicFilter : -(Blend Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -/BlendStyle : 2 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -/Def ; - (BlendStyle) , -; /Dict ; - /Part , -; - -/Execution ; - /Def ; -/KnownStyle : -(Anon 458) /Name , -/SimpleStyle : -0 O -0.808438 0.673884 0.495369 0.548699 0.180392 0.203922 0.25098 Xa -0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -0 1 Xd -/Paint ; - /Def ; -/KnownStyle : -(Jive_GS) /Name , -/ActiveStyle : -/CompoundFilter : -(Chain Style Filter) 0 0 /Filter , -1 /Visible , -/CompoundFilter : -(Stack Style Filter) 0 0 /Filter , -1 /Visible , -/BasicFilter : -(Stroke Style Filter) 0 0 /Filter , -1 /Visible , -2 /FillOrStroke , -/Dictionary : /NotRecorded , -/StrokeStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -0 0 Xd -/Def ; - (StrokeStyle) , -; /Dict ; - /Part , -/BasicFilter : -(Conduit Filter) 0 0 /Filter , -1 /Visible , -; - /Part , -/BasicFilter : -(Fill Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -0 /Bool (UseEvenOdd) , -/FillStyle : 0 O -(Jive) 0 0 1 1 0 0 0 0 0 [0 1.47 -1.47 0 3405.7441 19244.7109] p -0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -0 1 Xd -/Def ; - (FillStyle) , -; /Dict ; - /Part , -/BasicFilter : -(Fill Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -0 /Bool (UseEvenOdd) , -/FillStyle : 0 O -0.389013 0.068635 0.08426 0 0.65098 0.815686 0.894118 Xa -0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -0 1 Xd -/Def ; - (FillStyle) , -; /Dict ; - /Part , -; - /Part , -/BasicFilter : -(Blend Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -/BlendStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -/Def ; - (BlendStyle) , -; /Dict ; - /Part , -; - -/Execution ; - /Def ; -/KnownStyle : -(Schein nach außen - 5 Pt.) /Name , -/ActiveStyle : -/CompoundFilter : -(Chain Style Filter) 0 0 /Filter , -1 /Visible , -/CompoundFilter : -(Stack Style Filter) 0 0 /Filter , -1 /Visible , -/BasicFilter : -(Stroke Style Filter) 0 0 /Filter , -1 /Visible , -2 /FillOrStroke , -/Dictionary : /NotRecorded , -/StrokeStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -0 0 Xd -/Def ; - (StrokeStyle) , -; /Dict ; - /Part , -/BasicFilter : -(Conduit Filter) 0 0 /Filter , -1 /Visible , -; - /Part , -/BasicFilter : -(Fill Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -0 /Bool (UseEvenOdd) , -/FillStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -0 0 Xd -/Def ; - (FillStyle) , -; /Dict ; - /Part , -; - /Part , -/BasicFilter : -(Adobe Outer Glow) 1 0 /Filter , -1 /Visible , -(Drop Shadow.aip) /PluginFileName , -(Schein nach au\337en) /Title , -/Dictionary : /NotRecorded , -1 /Bool (usePSLBlur) , -/FillStyle : 0 O -0.912474 0.787625 0.619837 0.97467 0 0 0 Xa -0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -0 1 Xd -/Def ; - (sclr) , -0.75 /Real (opac) , -5 /Real (blur) , -2 /Int (blnd) , -16 /Int (Adobe Effect Expand Before Version) , -; /Dict ; - /Part , -/BasicFilter : -(Blend Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -/BlendStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -/Def ; - (BlendStyle) , -; /Dict ; - /Part , -; - -/Execution ; - /Def ; -/KnownStyle : -(Schlagschatten) /Name , -/ActiveStyle : -/CompoundFilter : -(Chain Style Filter) 0 0 /Filter , -1 /Visible , -/CompoundFilter : -(Stack Style Filter) 0 0 /Filter , -1 /Visible , -/BasicFilter : -(Stroke Style Filter) 0 0 /Filter , -1 /Visible , -2 /FillOrStroke , -/Dictionary : /NotRecorded , -/StrokeStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -0 0 Xd -/Def ; - (StrokeStyle) , -; /Dict ; - /Part , -/BasicFilter : -(Conduit Filter) 0 0 /Filter , -1 /Visible , -; - /Part , -/BasicFilter : -(Fill Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -0 /Bool (UseEvenOdd) , -/FillStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -0 0 Xd -/Def ; - (FillStyle) , -; /Dict ; - /Part , -; - /Part , -/BasicFilter : -(Adobe Drop Shadow) 1 0 /Filter , -1 /Visible , -(Drop Shadow.aip) /PluginFileName , -(Schlagschatten) /Title , -/Dictionary : /NotRecorded , -1 /Bool (pair) , -7 /Real (vert) , -50 /Real (dark) , -7 /Real (horz) , -1 /Int (csrc) , -1 /Bool (usePSLBlur) , -/FillStyle : 0 O -0.912474 0.787625 0.619837 0.97467 0 0 0 Xa -0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -0 1 Xd -/Def ; - (sclr) , -0.75 /Real (opac) , -5 /Real (blur) , -1 /Int (blnd) , -16 /Int (Adobe Effect Expand Before Version) , -; /Dict ; - /Part , -/BasicFilter : -(Blend Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -/BlendStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -/Def ; - (BlendStyle) , -; /Dict ; - /Part , -; - -/Execution ; - /Def ; -/KnownStyle : -([Standard]) /Name , -/SimpleStyle : -0 O -0 0 0 0 1 1 1 Xa -0 R -0.912474 0.787625 0.619837 0.97467 0 0 0 XA -0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -1 1 Xd -/Paint ; - /Def ; -%AI9_EndArtStyles -%AI5_End_NonPrinting-- -%AI5_BeginPalette -0 0 Pb -0.912474 0.787625 0.619837 0.97467 0 0 0 ([Passermarken]) 0 1 Xz -([Passermarken]) -Pc -0 0 0 0 1 1 1 Xa -(Weiß) -Pc -0.912474 0.787625 0.619837 0.97467 0 0 0 Xa -(Schwarz) -Pc -0 0.94641 0.916289 0 1 0 0 Xa -(RGB Rot) -Pc -0.096254 0 0.951965 0 1 1 0 Xa -(RGB Gelb) -Pc -0.647547 0 1 0 0 1 0 Xa -(RGB Grün) -Pc -0.570733 0 0.153567 0 0 1 1 Xa -(RGB Cyan) -Pc -0.934081 0.745846 0 0 0 0 1 Xa -(RGB Blau) -Pc -0.409979 0.77676 0 0 1 0 1 Xa -(RGB Magenta) -Pc -0.168978 0.950286 0.823636 0.068666 0.756863 0.152941 0.176471 Xa -(R=193 G=39 B=45) -Pc -0 0.946624 0.85211 0 0.929412 0.109804 0.141176 Xa -(R=237 G=28 B=36) -Pc -0 0.752956 0.887388 0 0.945098 0.352941 0.141176 Xa -(R=241 G=90 B=36) -Pc -0 0.501823 0.907988 0 0.968627 0.576471 0.117647 Xa -(R=247 G=147 B=30) -Pc -0 0.365637 0.819852 0 0.984314 0.690196 0.231373 Xa -(R=251 G=176 B=59) -Pc -0.065736 0 0.852628 0 0.988235 0.933333 0.129412 Xa -(R=252 G=238 B=33) -Pc -0.231907 0 0.892332 0 0.85098 0.878431 0.129412 Xa -(R=217 G=224 B=33) -Pc -0.524254 0 0.880919 0 0.54902 0.776471 0.247059 Xa -(R=140 G=198 B=63) -Pc -0.718288 0 0.876951 0 0.223529 0.709804 0.290196 Xa -(R=57 G=181 B=74) -Pc -0.842954 0.14374 0.926757 0.021576 0 0.572549 0.270588 Xa -(R=0 G=146 B=69) -Pc -0.899077 0.322972 0.925994 0.247654 0 0.407843 0.215686 Xa -(R=0 G=104 B=55) -Pc -0.735958 0 0.689784 0 0.133333 0.709804 0.45098 Xa -(R=34 G=181 B=115) -Pc -0.766171 0.045533 0.450782 0 0 0.662745 0.615686 Xa -(R=0 G=169 B=157) -Pc -0.709987 0.132143 0.001953 0 0.160784 0.670588 0.886275 Xa -(R=41 G=171 B=226) -Pc -0.866178 0.492958 0 0 0 0.443137 0.737255 Xa -(R=0 G=113 B=188) -Pc -0.975586 0.89572 0 0.000824 0.180392 0.192157 0.572549 Xa -(R=46 G=49 B=146) -Pc -1 0.970001 0.322484 0.218753 0.105882 0.078431 0.392157 Xa -(R=27 G=20 B=100) -Pc -0.755703 0.923125 0 0.000031 0.4 0.176471 0.568627 Xa -(R=102 G=45 B=145) -Pc -0.5393 0.930297 0 0 0.576471 0.152941 0.560784 Xa -(R=147 G=39 B=143) -Pc -0.323583 1 0.236301 0.1673 0.619608 0 0.364706 Xa -(R=158 G=0 B=93) -Pc -0.097993 0.983551 0.407263 0.020691 0.831373 0.078431 0.352941 Xa -(R=212 G=20 B=90) -Pc -0 0.935058 0.142763 0 0.929412 0.117647 0.47451 Xa -(R=237 G=30 B=121) -Pc -0.220859 0.272648 0.389227 0.061189 0.780392 0.698039 0.6 Xa -(R=199 G=178 B=153) -Pc -0.354864 0.386694 0.466072 0.211734 0.6 0.52549 0.458824 Xa -(R=153 G=134 B=117) -Pc -0.446387 0.47068 0.52636 0.380346 0.45098 0.388235 0.341176 Xa -(R=115 G=99 B=87) -Pc -0.535302 0.542443 0.552728 0.542199 0.32549 0.278431 0.254902 Xa -(R=83 G=71 B=65) -Pc -0.204685 0.376715 0.593042 0.084871 0.776471 0.611765 0.427451 Xa -(R=198 G=156 B=109) -Pc -0.280308 0.462287 0.671046 0.207126 0.65098 0.486275 0.321569 Xa -(R=166 G=124 B=82) -Pc -0.324376 0.536675 0.760494 0.329229 0.54902 0.384314 0.223529 Xa -(R=140 G=98 B=57) -Pc -0.359228 0.605188 0.857359 0.451545 0.458824 0.298039 0.141176 Xa -(R=117 G=76 B=36) -Pc -0.391424 0.683131 0.943023 0.57116 0.376471 0.219608 0.07451 Xa -(R=96 G=56 B=19) -Pc -0.474617 0.7467 0.825315 0.730831 0.258824 0.129412 0.043137 Xa -(R=66 G=33 B=11) -Pc -Bb -2 (Weiß, Schwarz) 0 0 0 1 1 0 0 1 0 0 1 Bg -0 BB -(Weiß, Schwarz) -Pc -Bb -2 (Goldstaub) 0 0 0 1 1 0 0 1 0 0 1 Bg -0 BB -(Goldstaub) -Pc -Bb -2 (Blauer Himmel) 0 0 0 1 1 0 0 1 0 0 1 Bg -0 BB -(Blauer Himmel) -Pc -(Jive) 0 0 1 1 0 0 0 0 0 [1 0 0 1 0 0] p -(Jive) -Pc -1 (Kalt) 1 Pg -0.584497 0 0.222965 0 0.396078 0.784314 0.815686 Xa -(C=56 M=0 Y=20 K=0) -Pc -0.55404 0.445533 0 0 0.513726 0.545098 0.772549 Xa -(C=51 M=43 Y=0 K=0) -Pc -0.313512 0.439063 0.001465 0 0.729412 0.607843 0.788235 Xa -(C=26 M=41 Y=0 K=0) -Pc -1 (Graustufen) 1 Pg -0.912474 0.787625 0.619837 0.97467 0 0 0 Xa -(R=0 G=0 B=0) -Pc -0.762295 0.667414 0.60705 0.828763 0.101961 0.101961 0.101961 Xa -(R=26 G=26 B=26) -Pc -0.690608 0.595209 0.559747 0.655817 0.2 0.2 0.2 Xa -(R=51 G=51 B=51) -Pc -0.620386 0.5234 0.503532 0.47776 0.301961 0.301961 0.301961 Xa -(R=77 G=77 B=77) -Pc -0.559442 0.453803 0.448554 0.326848 0.4 0.4 0.4 Xa -(R=102 G=102 B=102) -Pc -0.492378 0.386633 0.38529 0.202182 0.501961 0.501961 0.501961 Xa -(R=128 G=128 B=128) -Pc -0.410864 0.319738 0.323857 0.110109 0.6 0.6 0.6 Xa -(R=153 G=153 B=153) -Pc -0.32575 0.244968 0.255344 0.043549 0.701961 0.701961 0.701961 Xa -(R=179 G=179 B=179) -Pc -0.231479 0.170962 0.180972 0.008301 0.8 0.8 0.8 Xa -(R=204 G=204 B=204) -Pc -0.11664 0.082246 0.092653 0 0.901961 0.901961 0.901961 Xa -(R=230 G=230 B=230) -Pc -0.062196 0.043153 0.05127 0 0.94902 0.94902 0.94902 Xa -(R=242 G=242 B=242) -Pc -PB -%AI5_EndPalette -%AI5_Begin_NonPrinting -Np -%AI9_BeginArtStyleList -([Standard]) -(Schlagschatten) -(Schein nach außen - 5 Pt.) -(Jive_GS) -%AI9_EndArtStyleList -%AI5_End_NonPrinting-- -%AI5_Begin_NonPrinting -Np -%AI10_BeginSymbolList -(Textbereich) -(Schaltfläche) -(Kombinationsfeld) -(Texteingabe) -(Suchen) -%AI10_EndSymbolList -%AI5_End_NonPrinting-- -%AI9_BeginDocumentData -%_/Document : -%_/Dictionary : -%_/XMLNode : -%_/Dictionary : -%_; (xmlnode-attributes) , -%_/Array : -%_/XMLNode : -%_/Dictionary : -%_; (xmlnode-attributes) , -%_/Array : -%_/XMLNode : -%_/Dictionary : -%_/XMLNode : -%_/Dictionary : -%_; (xmlnode-attributes) , -%_/Array : -%_; (xmlnode-children) , -%_2 /Int (xmlnode-nodetype) , -%_(&ns_vars;) /String (xmlnode-nodevalue) , -%_(xmlns) /String (xmlnode-nodename) , -%_; (xmlns) , -%_; (xmlnode-attributes) , -%_/Array : -%_/XMLNode : -%_/Dictionary : -%_/XMLNode : -%_/Dictionary : -%_; (xmlnode-attributes) , -%_/Array : -%_; (xmlnode-children) , -%_2 /Int (xmlnode-nodetype) , -%_(binding1) /String (xmlnode-nodevalue) , -%_(varSetName) /String (xmlnode-nodename) , -%_; (varSetName) , -%_/XMLNode : -%_/Dictionary : -%_; (xmlnode-attributes) , -%_/Array : -%_; (xmlnode-children) , -%_2 /Int (xmlnode-nodetype) , -%_(none) /String (xmlnode-nodevalue) , -%_(locked) /String (xmlnode-nodename) , -%_; (locked) , -%_; (xmlnode-attributes) , -%_/Array : -%_/XMLNode : -%_/Dictionary : -%_; (xmlnode-attributes) , -%_/Array : -%_; (xmlnode-children) , -%_1 /Int (xmlnode-nodetype) , -%_ /String (xmlnode-nodevalue) , -%_(variables) /String (xmlnode-nodename) , -%_; , -%_/XMLNode : -%_/Dictionary : -%_/XMLNode : -%_/Dictionary : -%_; (xmlnode-attributes) , -%_/Array : -%_; (xmlnode-children) , -%_2 /Int (xmlnode-nodetype) , -%_(&ns_vars;) /String (xmlnode-nodevalue) , -%_(xmlns:v) /String (xmlnode-nodename) , -%_; (xmlns:v) , -%_/XMLNode : -%_/Dictionary : -%_; (xmlnode-attributes) , -%_/Array : -%_; (xmlnode-children) , -%_2 /Int (xmlnode-nodetype) , -%_(&ns_custom;) /String (xmlnode-nodevalue) , -%_(xmlns) /String (xmlnode-nodename) , -%_; (xmlns) , -%_; (xmlnode-attributes) , -%_/Array : -%_; (xmlnode-children) , -%_1 /Int (xmlnode-nodetype) , -%_ /String (xmlnode-nodevalue) , -%_(v:sampleDataSets) /String (xmlnode-nodename) , -%_; , -%_; (xmlnode-children) , -%_1 /Int (xmlnode-nodetype) , -%_ /String (xmlnode-nodevalue) , -%_(variableSet) /String (xmlnode-nodename) , -%_; , -%_; (xmlnode-children) , -%_1 /Int (xmlnode-nodetype) , -%_ /String (xmlnode-nodevalue) , -%_(variableSets) /String (xmlnode-nodename) , -%_; , -%_/XMLNode : -%_/Dictionary : -%_/XMLNode : -%_/Dictionary : -%_; (xmlnode-attributes) , -%_/Array : -%_; (xmlnode-children) , -%_2 /Int (xmlnode-nodetype) , -%_(&ns_sfw;) /String (xmlnode-nodevalue) , -%_(xmlns) /String (xmlnode-nodename) , -%_; (xmlns) , -%_; (xmlnode-attributes) , -%_/Array : -%_/XMLNode : -%_/Dictionary : -%_; (xmlnode-attributes) , -%_/Array : -%_; (xmlnode-children) , -%_1 /Int (xmlnode-nodetype) , -%_ /String (xmlnode-nodevalue) , -%_(slices) /String (xmlnode-nodename) , -%_; , -%_/XMLNode : -%_/Dictionary : -%_/XMLNode : -%_/Dictionary : -%_; (xmlnode-attributes) , -%_/Array : -%_; (xmlnode-children) , -%_2 /Int (xmlnode-nodetype) , -%_677.2227 /Real (xmlnode-nodevalue) , -%_(width) /String (xmlnode-nodename) , -%_; (width) , -%_/XMLNode : -%_/Dictionary : -%_; (xmlnode-attributes) , -%_/Array : -%_; (xmlnode-children) , -%_2 /Int (xmlnode-nodetype) , -%_115.9751 /Real (xmlnode-nodevalue) , -%_(height) /String (xmlnode-nodename) , -%_; (height) , -%_/XMLNode : -%_/Dictionary : -%_; (xmlnode-attributes) , -%_/Array : -%_; (xmlnode-children) , -%_2 /Int (xmlnode-nodetype) , -%_85.1191 /Real (xmlnode-nodevalue) , -%_(x) /String (xmlnode-nodename) , -%_; (x) , -%_/XMLNode : -%_/Dictionary : -%_; (xmlnode-attributes) , -%_/Array : -%_; (xmlnode-children) , -%_2 /Int (xmlnode-nodetype) , -%_-362.7158 /Real (xmlnode-nodevalue) , -%_(y) /String (xmlnode-nodename) , -%_; (y) , -%_/XMLNode : -%_/Dictionary : -%_; (xmlnode-attributes) , -%_/Array : -%_; (xmlnode-children) , -%_2 /Int (xmlnode-nodetype) , -%_1 /Bool (xmlnode-nodevalue) , -%_(bottomLeftOrigin) /String (xmlnode-nodename) , -%_; (bottomLeftOrigin) , -%_; (xmlnode-attributes) , -%_/Array : -%_; (xmlnode-children) , -%_1 /Int (xmlnode-nodetype) , -%_ /String (xmlnode-nodevalue) , -%_(sliceSourceBounds) /String (xmlnode-nodename) , -%_; , -%_; (xmlnode-children) , -%_1 /Int (xmlnode-nodetype) , -%_ /String (xmlnode-nodevalue) , -%_(sfw) /String (xmlnode-nodename) , -%_; , -%_; (xmlnode-children) , -%_1 /Int (xmlnode-nodetype) , -%_ /String (xmlnode-nodevalue) , -%_(metadata) /String (xmlnode-nodename) , -%_; , -%_; (xmlnode-children) , -%_9 /Int (xmlnode-nodetype) , -%_ /String (xmlnode-nodevalue) , -%_(#document) /String (xmlnode-nodename) , -%_; (#document) , -%_0 /Bool (AI11 document knockout group) , -%_0 /Bool (AI11 document isolate blending) , -%_0 /Bool (AI9 paper simulation) , -%_2 /Int (AI9 transparency grid size) , -%_1 /Int (AI9 artboard color) , -%_52428 /Int (AI9 artboard color 2 blue) , -%_52428 /Int (AI9 artboard color 2 green) , -%_52428 /Int (AI9 artboard color 2 red) , -%_65535 /Int (AI9 artboard color 1 blue) , -%_65535 /Int (AI9 artboard color 1 green) , -%_65535 /Int (AI9 artboard color 1 red) , -%_16383 /Int (AIDocumentCanvasSize) , -%_1 /Bool (AI11 Preserve Text Editability) , -%_0 /Real (BleedLeftValue) , -%_0 /Int (CropAreaActive) , -%_/Array : -%_/Dictionary : -%_1 /Bool (IsArtboardDefaultName) , -%_7871.23 7895.7271 /RealPoint -%_ (RulerOrigin) , -%_0 /Int (DisplayMark) , -%_(Zeichenfläche 1) /UnicodeString (Name) , -%_1 /Real (PAR) , -%_868.2305 -604.7275 /RealPointRelToROrigin -%_ (PositionPoint2) , -%_-19.7695 -4.7275 /RealPointRelToROrigin -%_ (PositionPoint1) , -%_; , -%_; (ArtboardArray) , -%_([Mittlere Auflösung]) /UnicodeString (AI11 Document Setup Flattener Preset Name) , -%_150 /Real (AI9 Mesh Rasterization Resolution) , -%_300 /Real (AI9 Output Rasterization Resolution) , -%_42 /Int (AI11 Document Setup Language Popup) , -%_/Dictionary : -%_36 /Real (padd) , -%_0 /Bool (mask) , -%_1 /Bool (spot) , -%_0 /Bool (alis) , -%_72 /Int (dpi.) , -%_4 /Int (colr) , -%_; (AI Auto Rasterize) , -%_5 /Real (GlobalRepulsion) , -%_0 /Real (BleedRightValue) , -%_0 /Real (BleedTopValue) , -%_0 /Int (PerspectiveGrid_RightBlue) , -%_65535 /Int (PerspectiveGrid_RightRed) , -%_50 /Real (PerspectiveGrid_RightOpacity) , -%_45 /Real (PerspectiveGrid_RightFaceAngle) , -%_45 /Real (PerspectiveGrid_LeftFaceAngle) , -%_480 /Real (PerspectiveGrid_ViewingDistance) , -%_8191 8441 /RealPoint -%_ (PerspectiveGrid_StationPoint) , -%_26214 /Int (PerspectiveGrid_LeftGreen) , -%_58981 /Int (PerspectiveGrid_LeftBlue) , -%_6553 /Int (PerspectiveGrid_LeftRed) , -%_50 /Real (PerspectiveGrid_LeftOpacity) , -%_0 /Real (PerspectiveGrid_FloorOffset) , -%_0 /Bool (AI16 flattener anti alias) , -%_1 /Bool (AI10 flattener outline strokes) , -%_1 1 /RealPoint -%_ (PerspectiveGrid_Scale) , -%_0 /Bool (AI10 flattener outline text) , -%_0 /Int (PerspectiveGrid_Unit) , -%_15 /Real (PerspectiveGrid_CellCount) , -%_4 /Int (AI9 Flattening Quality Level) , -%_1 /Int (AI12_SpotColorMode) , -%_580 /Real (PerspectiveGrid_RightExtent) , -%_30 /Real (PerspectiveGrid_CellSize) , -%_250 /Real (PerspectiveGrid_HorizonHeight) , -%_580 /Real (PerspectiveGrid_LeftExtent) , -%_45874 /Int (PerspectiveGrid_FloorGreen) , -%_2 /Int (PerspectiveGrid_Type) , -%_32767 /Int (PerspectiveGrid_FloorBlue) , -%_32767 /Int (PerspectiveGrid_FloorRed) , -%_50 /Real (PerspectiveGrid_FloorOpacity) , -%_(14.0.0) /String (kAIFullDocumentVersionStr) , -%_32767 /Int (PerspectiveGrid_RightGreen) , -%_0 /Real (BleedBottomValue) , -%_/Dictionary : -%_/Array : -%_; (SelHatDocInterIDsArray) , -%_/Array : -%_; (SelHatDocLocalNamesArray) , -%_; (SelHatDocTableDict) , -%_1 /Int (kAIParametersWhichProfileKey) , -%_0 /Bool (kAIParametersCompression) , -%_0 /Int (kAIParametersEmbedProfileKey) , -%_1 /Bool (kAIParametersPDFCompatibility) , -%_0 -500 /RealPoint -%_ (PerspectiveGrid_RelativeFloorVanishingPoint) , -%_8431 8316 /RealPoint -%_ (PerspectiveGrid_RightPlaneCellExtent) , -%_0 /Int (PerspectiveGrid_RightPlaneVisibilityState) , -%_8191 7941 /RealPoint -%_ (PerspectiveGrid_RightPlaneTopPoint) , -%_8191 8441 /RealPoint -%_ (PerspectiveGrid_RightPlaneBottomPoint) , -%_8671 8191 /RealPoint -%_ (PerspectiveGrid_RightVanishingPoint) , -%_7951 8316 /RealPoint -%_ (PerspectiveGrid_LeftPlaneCellExtent) , -%_0 /Int (PerspectiveGrid_RulerOriginIndexSecond) , -%_0 /Int (PerspectiveGrid_RulerOriginIndexFirst) , -%_0 /Int (PerspectiveGrid_FloorPlaneVisibilityState) , -%_0 /Int (PerspectiveGrid_LeftPlaneVisibilityState) , -%_8191 7941 /RealPoint -%_ (PerspectiveGrid_LeftPlaneTopPoint) , -%_8191 8441 /RealPoint -%_ (PerspectiveGrid_LeftPlaneBottomPoint) , -%_7711 8191 /RealPoint -%_ (PerspectiveGrid_LeftVanishingPoint) , -%_1 /Bool (AI10 flattener preserve overprints) , -%_1 /Bool (AI10 flattener clip complex regions) , -%_75 /Int (AI10 flattener raster-vector balance) , -%_100 /Real (kAIParametersSubsetFontsRatioKey) , -%_; /Recorded , -%_/Dictionary : /NotRecorded , -%_1 /Int (AI11 EPS Overprints) , -%_75 /Int (AI12 AI Raster/Vector Balance) , -%_0 /Bool (AI16 EPS Anti Aliasing) , -%_0 /Bool (AI12 AI Outline Text) , -%_([Medium Resolution]) /String (AI11 EPS Flattener Preset Name) , -%_0 /Bool (AI11 EPS Outline Text) , -%_75 /Int (AI11 EPS Raster/Vector Balance) , -%_/Dictionary : /NotRecorded , -%_ /String (/attributes/job.pagerange) , -%_1 /Int (/attributes/job.printall) , -%_1 /Int (/attributes/job.skipblank) , -%_0 /Int (/attributes/job.reverseorder) , -%_0 /Int (/attributes/job.collate) , -%_() /UnicodeString (/attributes/job.artboardrange) , -%_1 /Int (/attributes/job.printallartboards) , -%_; (AI11 Print JobInfo Dict) , -%_1 /Int (AI12 AI Overprints) , -%_1 /Bool (AI11 EPS Outline Strokes) , -%_1 /Bool (AI11 EPS Clip Complex Regions) , -%_/Dictionary : /NotRecorded , -%_0 /Int (/attributes/job.bitmapresolution) , -%_0 /Real (/attributes/pgmk.bleedoff.bottom) , -%_6 /Real (/attributes/pgmk.marksoff.bottom) , -%_1 /Int (/attributes/pgmk.bleedoff.useDocBleeds) , -%_([Standard]) /UnicodeString (/attributes/collectionName) , -%_1 /Int (/attributes/stl.defaultprinter) , -%_() /UnicodeString (/attributes/stl.printername) , -%_() /UnicodeString (/attributes/stl.ppdmodelname) , -%_1 /Int (/attributes/stl.defaultppd) , -%_() /UnicodeString (/attributes/stl.customppd) , -%_0 /Int (/attributes/ppr.custom) , -%_1 /Int (/attributes/ppr.default) , -%_595.32 /Real (/attributes/ppr.width) , -%_841.92 /Real (/attributes/ppr.height) , -%_0 /Real (/attributes/ppr.image.left) , -%_0 /Real (/attributes/ppr.image.top) , -%_595.32 /Real (/attributes/ppr.image.right) , -%_841.92 /Real (/attributes/ppr.image.bottom) , -%_(Durch Treiber definiert) /UnicodeString (/attributes/ppr.name) , -%_0 /Real (/attributes/cppr.width) , -%_0 /Real (/attributes/cppr.height) , -%_0 /Real (/attributes/cppr.woffset) , -%_0 /Real (/attributes/cppr.hoffset) , -%_0 /Int (/attributes/cppr.trans) , -%_0 /Int (/attributes/job.designation) , -%_2 /Int (/attributes/job.printbounds) , -%_0 /Int (/attributes/job.printofile) , -%_0 /Int (/attributes/job.printasbitmap) , -%_() /UnicodeString (/attributes/job.name) , -%_0 /Int (/attributes/clr.mode) , -%_0 /Int (/attributes/clr.convertspots) , -%_0 /Int (/attributes/clr.overprintblack) , -%_720 /Int (/attributes/crd.orientation) , -%_0 /Int (/attributes/crd.fliphorz) , -%_5 /Int (/attributes/crd.position) , -%_0 /Real (/attributes/crd.org.h) , -%_0 /Real (/attributes/crd.org.v) , -%_100 /Real (/attributes/crd.scale.h) , -%_100 /Real (/attributes/crd.scale.v) , -%_0 /Int (/attributes/crd.scplcy) , -%_1 /Int (/attributes/crd.sccnst) , -%_0 /Int (/attributes/crd.tiling) , -%_0 /Real (/attributes/crd.overlap.h) , -%_0 /Real (/attributes/crd.overlap.v) , -%_0 /Int (/attributes/pgmk.enabled) , -%_0 /Int (/attributes/pgmk.style) , -%_() /UnicodeString (/attributes/pgmk.customfile) , -%_() /UnicodeString (/attributes/pgmk.jobtitle) , -%_0.25 /Real (/attributes/pgmk.deflinewidth) , -%_0 /Int (/attributes/pgmk.bleed) , -%_0 /Int (/attributes/pgmk.crop) , -%_0 /Int (/attributes/pgmk.pageinfo) , -%_0 /Int (/attributes/pgmk.registration) , -%_0 /Int (/attributes/pgmk.colorbars) , -%_0 /Real (/attributes/pgmk.bleedoff.left) , -%_0 /Real (/attributes/pgmk.bleedoff.top) , -%_0 /Real (/attributes/pgmk.bleedoff.right) , -%_6 /Real (/attributes/pgmk.marksoff.left) , -%_6 /Real (/attributes/pgmk.marksoff.top) , -%_6 /Real (/attributes/pgmk.marksoff.right) , -%_1 /Int (/attributes/fnt.dlmode) , -%_0 /Int (/attributes/fnt.dlprfonts) , -%_0 /Int (/attributes/fnt.subst) , -%_3 /Int (/attributes/ps.level) , -%_1 /Int (/attributes/ps.binary) , -%_0 /Int (/attributes/ps.negative) , -%_0 /Int (/attributes/ps.compression) , -%_0 /Int (/attributes/ps.contone) , -%_0 /Int (/attributes/ps.l1compat) , -%_300 /Real (/attributes/ps.shaderes) , -%_0 /Int (/attributes/ps.setflatness) , -%_1 /Real (/attributes/ps.flatness) , -%_75 /Int (/attributes/xp.balance) , -%_300 /Int (/attributes/xp.rresolution) , -%_150 /Int (/attributes/xp.gresolution) , -%_0 /Int (/attributes/xp.converttext) , -%_1 /Int (/attributes/xp.convertstroke) , -%_1 /Int (/attributes/xp.clip) , -%_0 /Int (/attributes/xp.antialiasing) , -%_0 /Int (/attributes/xp.opco) , -%_0 /Int (/attributes/xp.opse) , -%_0 /Int (/attributes/xp.opdu) , -%_([Mittlere Auflösung]) /UnicodeString (/attributes/xp.name) , -%_0 /Int (/attributes/rdrs.enabled) , -%_0 /Int (/attributes/rdrs.func) , -%_1 /Real (/attributes/rdrs.flatteness) , -%_() /UnicodeString (/attributes/rdrs.annot) , -%_ /String (/attributes/rdrs.custom) , -%_1 /Int (/attributes/cm.mode) , -%_(Coated FOGRA39 \(ISO 12647-2:2004\)) /UnicodeString (/attributes/cm.profile) , -%_2 /Int (/attributes/cm.inteint) , -%_1 /Int (/attributes/cm.preservecmyk) , -%_0 /Int (/attributes/cm.preserveother) , -%_; (AI11 Print Attribute Dict) , -%_0 /Bool (AI15 Document PixelPerfect) , -%_1 /Int (LastArtboardID) , -%_150 /Real (AI12 AI Gradient and Mesh Resolution) , -%_300 /Real (AI12 AI Line Art and Text Resolution) , -%_150 /Real (AI11 EPS Gradient and Mesh Resolution) , -%_300 /Real (AI11 EPS Line Art and Text Resolution) , -%_42 /Int (AI11 Document Setup Language Popup) , -%_1 /Bool (AI9 no overprint in composite) , -%_([Medium Resolution]) /String (AI12 AI Flattener Preset Name) , -%_0 /Bool (AI16 AI Anti Aliasing) , -%_1 /Bool (AI12 AI Clip Complex Regions) , -%_1 /Bool (AI12 AI Outline Strokes) , -%_0 /Bool (SVGTextOnPath) , -%_1 /Bool (SVGAutoKern) , -%_0 /Int (SVGFontType) , -%_0 /Bool (SVGXap) , -%_0 /Bool (SVGPgf) , -%_0 /Bool (SVGTemplate) , -%_0 /Int (SVGDTD) , -%_2 /Int (SVGEncoding) , -%_4 /Int (SVGStyleType) , -%_2 /Int (SVGEmbedRaster) , -%_3 /Int (SVGPrecision) , -%_1 /Int (SVGFontLocation) , -%_1 /Int (SVGFontSubsetting) , -%_0 /Bool (SVGAdobeNamespace) , -%_1 /Bool (PerspectiveGrid_Snap) , -%_0 /Bool (PerspectiveGrid_ShowHide) , -%_/Dictionary : /NotRecorded , -%_([Illustrator-Standard]) /UnicodeString (/attributes/collectionName) , -%_0 /Int (/attributes/AI11PDF_PageInfo) , -%_0 /Real (/attributes/AI11PDF_BleedTop) , -%_0 /Real (/attributes/AI11PDF_BleedBottom) , -%_0 /Int (/attributes/AI11PDF_RegMarks) , -%_1 /Int (/attributes/AI11PDF_CompressArt) , -%_0 /Real (/attributes/AI11PDF_BleedRight) , -%_(Dies sind die Standardeinstellungen beim Speichern einer Illustrator-Datei als PDF-Dokument. Verwenden Sie diese Einstellungen, wenn Sie die Datei später in Illustrator oder in einem Layoutprogramm wie z. B. InDesign bearbeiten möchten oder der endgültige Verwendungszweck der Datei unbekannt ist.) /UnicodeString (/attributes/AI12PDF_Description) , -%_0 /Int (/attributes/AI11PDF_FastWebView) , -%_1 /Int (/attributes/AI11PDF_BleedLink) , -%_1 /Int (/attributes/AI11PDF_Overprint) , -%_0 /Int (/attributes/AI11PDF_ColorBars) , -%_0 /Int (/attributes/AI12PDF_Trapped) , -%_1 /Int (/attributes/AI14PDF_DocBleed) , -%_0 /Real (/attributes/AI11PDF_BleedLeft) , -%_1 /Int (/attributes/AI12PDF_Standard) , -%_0 /Int (/attributes/AI11PDF_TrimMarks) , -%_1 /Int (/attributes/AI11PDF_PreserveIllustratorEditingCapabilities) , -%_300 /Int (/attributes/AI11PDF_MonochromeDownsampleResolution) , -%_1 /Int (/attributes/AI12PDF_OutputIntentProfileNamePolicy) , -%_75 /Int (/attributes/AI10 flattener raster-vector balance) , -%_1 /Int (/attributes/AI11PDF_ColorDownsampleKind) , -%_0.25 /Real (/attributes/AI11PDF_TrimMarkWeight) , -%_() /UnicodeString (/attributes/AI12PDF_OutputCondition) , -%_1 /Int (/attributes/AI12PDF_DestinationPolicy) , -%_() /UnicodeString (/attributes/AI12PDF_DestinationName) , -%_() /UnicodeString (/attributes/AI12PDF_RegistryName) , -%_0 /Int (/attributes/AI11PDF_PrinterMarkType) , -%_0 /Int (/attributes/AI16 flattener anti alias) , -%_6 /Int (/attributes/AI11PDF_GrayCompressionKind) , -%_1 /Int (/attributes/AI11PDF_GenerateThumbnails) , -%_0 /Int (/attributes/AI11PDF_FlattenTransparency) , -%_0 /Int (/attributes/AI12PDF_UsePrintTiling) , -%_256 /Int (/attributes/AI11PDF_GrayTileSize) , -%_100 /Int (/attributes/AI11PDF_SubsetFontRatio) , -%_1 /Int (/attributes/AI11PDF_GrayDownsampleKind) , -%_3 /Int (/attributes/AI11PDF_Compatibility) , -%_0 /Int (/attributes/AI10 flattener outline text) , -%_256 /Int (/attributes/AI11PDF_ColorTileSize) , -%_() /UnicodeString (/attributes/AI12PDF_OutputIntentProfileName) , -%_225 /Int (/attributes/AI11PDF_ColorDownsampleImageAbove) , -%_6 /Real (/attributes/AI11PDF_OffsetFromArtworkTop) , -%_1 /Int (/attributes/AI11PDF_PreserveAcrobatLayers) , -%_4 /Int (/attributes/AI11PDF_MonochromeCompressionKind) , -%_225 /Int (/attributes/AI11PDF_GrayDownsampleImageAbove) , -%_1 /Int (/attributes/AI11PDF_ColorCompressionQuality) , -%_6 /Real (/attributes/AI11PDF_OffsetFromArtworkRight) , -%_() /UnicodeString (/attributes/AI12PDF_OutputConditionIdentifier) , -%_1 /Int (/attributes/AI10 flattener clip complex regions) , -%_150 /Int (/attributes/AI11PDF_GrayDownsampleResolution) , -%_6 /Int (/attributes/AI11PDF_ColorCompressionKind) , -%_([Mittlere Auflösung]) /UnicodeString (/attributes/AI11PDF_FlatteningPresetName) , -%_150 /Real (/attributes/AI9 Mesh Rasterization Resolution) , -%_450 /Int (/attributes/AI11PDF_MonoDownsampleImageAbove) , -%_6 /Real (/attributes/AI11PDF_OffsetFromArtworkLeft) , -%_1 /Int (/attributes/AI12PDF_ColorConversionPolicy) , -%_1 /Int (/attributes/AI11PDF_MonochromeDownsampleKind) , -%_150 /Int (/attributes/AI11PDF_ColorDownsampleResolution) , -%_300 /Real (/attributes/AI9 Output Rasterization Resolution) , -%_1 /Int (/attributes/AI11PDF_GrayCompressionQuality) , -%_6 /Real (/attributes/AI11PDF_OffsetFromArtworkBottom) , -%_1 /Int (/attributes/AI10 flattener outline strokes) , -%_1 /Int (/attributes/AI12PDF_ProfileInclusionPolicy) , -%_; (PDFPresetCollection) , -%_1 /Int (AI9 Document Setup panel) , -%_0 /Bool (AISaveMultipleArtboards) , -%_/Dictionary : /NotRecorded , -%_0 /Int (/attributes/inklst.count) , -%_; (AI11 Ink List Dict) , -%_(Adobe PDF-Vorgabe.joboptions) /String (AI12 Job Options Name) , -%_7842 /Int (AI12 Job Options Size) , -%_/Binary : /ASCII85Decode , -%4?O&[+M4?:L\'M@ruc7FE2M8%144#00sDjDg,0$@;^.*@<,ps@sK2/ -%@;L!r%144#00sJtBgHQL@<4eSCi=>cD..'gF!,('Cia.s$6UHE6#LdY6#:7DF%:7ZGtDj]B4Z-,AmoLsAISth+>6#uFD4$WBjl'W -%Df0JbD..'gF!,('Cia.s$6UHE6$79f7VQ[\ATC.VCi=>cD..'gF!,('Cia.s$6UHE6$79f7VQ[\ATC:]@6#sC^g^o+>6&qDIdI!B-8j$AS-#n$6UHE6Xadu -%9j(+cEc5Q(Ch4_;VJ#h;ccak>VJ#i+EfLh%144#010/a7ri$`:i^JdBl%?'-r+\uALS&q+7Co^+n%,`+>6*#Ci=>[6W6Qn@:s.>Bk)6-4?O&[+F<4+>E,2D?g=%144#+7Co^+OB5+6>`77Rdo+6*#Ci=>cD..'g -%6tp.Q+?Vaq$6UH6+>68a@;Tt"ATJtu%144#+F<4+6S]@:OCt -%EZd%g2`OB5+n%,`+?hsu$6UHE -%6Z6dZE_1+VB4XJLGA_J1D/a<&<+p;`F(fK.A06*#Ci=>cD..'g6uR9eF(&p)Ch6RkE+L.F:2b#]%144#010Yo -%DfSEd@:s.@Bl%m&EZd#)CghEs7;cURA7Z2W+6*#Ci=>cD..'g9keKC -%ATMd+F`_>9DBLYk0F\@3+>6*#Ci=>cD..'g9keKCATMd+F`_>9DGY7fBk)E202G4M$6UHE6Z6dZE_1+VB4XtPF)Pl;FD5Z2+>G`- -%%144#010YoDfScfFED57B6-OVCh4_;.1HV,+>6*#D/`p*BjtdmBlnVoAThX$+>GK+%144#010YpE,oN2F&-7[ARfh'+>6N&Ado(i -%+>6*#D/aN,F)t/dB4Z-,FE2M8%144#010YqG%G]98SqmKATLgh8T&'MG\(D.FE2M8%144#010bk@2FT;R2Dd*A2DHm>2_m'@2Dd*A2Dm0B2E2Dm0B2E2`*3B2F]AS2_m'@1.3fM1c-m?2DHm>2`*3B -%2Dm0B2E2FB/P2`!-A1,(C92)$^<1c-m?1c@$A1.3fM1c-m?2F]AS2F9)O2`39C2FK5Q2Dm0B2FT;R2`*3B1.2`*3B2Dm0B2E75Q\P2`*3B2Dm0B -%2_m'@1,(C92E2`*3B2F]AS2_m'@1,(C92F]AS2Dd*A2Dm0B -%2_m'@1,(C92E2`WQG2F]AS2`39C2`*3B2_Zp>2_m'@2F]AS -%2E*2FK5Q2FK5Q1,(C92`EEE2E2_m'@2DQs?2Dm0B2E2`*3B2Dm0B2E2FT;R2FT;R2`*3B -%1,(C92E6,oFCes(6>U4NA9/l8Eckq&$6UHE6tLIO@rt(\Ecu#8+>>E&0JG17%144#019_X -%BQ\0$DII6qF!,RFF_)!h+6-$GA_J1D/a<&9lFof8SqmKATJu+@;L!r%144#01B_eARn)CCdr>\FE8RHEckq&$6UHE7;ZLFA4gcL:N1DiDf0V=AmoLsAISth -%+>60#@V'(GE+NodH#R=;AmoLsAISth+>60#BllaA6W[]:DJ=!$F!,('Cia.s$6UHE7;cURA7\,HCi=>cD..'gF!,RFF_)!h+66*@OB5+n%,`+6bo@;Tt"ATJtu%144#+F<4+66* -%@66*@Bk)6-4?O&[+F<4+>E,2D?g=%144# -%+7Co^+OB5+66*@6M`%144#01U%kGtDj]B4XtPF)Pl;FD5Z2+>G`-%144#01g"hB4XeKD/XH?+>GQ, -%3&NWQ%144#01o&07kubP0LKbpDfS-2;b:h7B4XJF@rrhU4:MW?+6].Ch6[^A9;K-1,Us!$6UHT4q.iA+>6>`77T*e0JGk4Ci=>cD..'g6tp.Q+?Vaq$6UH6+>6T7@;KY"Gp"h!%144#+6T7@;KY" -%Gp"h!%144#+6GtGZ/`oF(KGi@rrhJ0JEqC+f@%144#5!BD_+6H-DJr*`@:s.@Bl%m&EZd#)CghEs7;cURA7Z2W+>stream -f0JbD..'g9keKCATMd+F`_>9DBL_h0F\@3+>6H- -%DJr*`@:s.GBl6g[F)Pl;FD5Z2:iC/a@sK1M:J2-(+n%,`+>6Me9cu/"$6UHE:N1DiD/"<-+D,%uF(Gdf+6<(@r-9uAOglWA7]gPEbT'*+D,%uF(Gdf+6JuD.Rd-@:Njk>7Co^+6E"B45:q%144#+&S=r<,Y<,9h\#pDKJfkH=\42@;L!r%144#+\ASuTuFD5Z2+>6Q0 -%Ecc>1Bljdk+6Z,EbTE,6Z6jaASuT4FE2M8%144#+6`9AOUHFARo=_A5I;bAnc'mF!,('Cia.s$6UH6+6<(@r-9uAOq)cATDU$DJO;9AmoLsAISth+6<(@r-9uAP$c]ATD3hFD5o0+D,%uF(Gdf+6<(@r-9uAPdDcAnc'mF!,('Cia.s$6UH6+6GtEbf_tASGdjF0F\@3+6H3CijB.ARoL`87?CHCh[d"+>6`9APZcMARfg\ATW$.DJ+#"$6UH6+n%,`+6PZ7T`H/FDuAE8T&W] -%DKJ]qDe<^"AQ*/VARfh#EZd#15n+/D+6Q"B4XeGEbf_cBl%?'02c_*@;\JEAmoguF:AR"+6Q3ATMF'G%F*QBln', -%B-;;:F_)!h+6`9AOLHHF_t]-F@'eTARlp*Eckq&$6UH6+?hsu$6UHs%144#02P&+=@-h8ARn,GGZ8T\EbTAW -%Dg5&iAohO*+Bo9^+=63+6PZ7T`H/FDuAE6Z6jQBln'-DFnAMDKKT) -%Bk;<--n,T4+6PZ7T`Q"B5)F/Ed:DgD.Oh<.1HV,+>6PZ7T`T#F@'eTARn,G -%GZ8TUARoL`6>q)kFE2M8%144#02P&+=B'62mCia.s$6UHE:ddcT<,u\i6>q*JDbXeRBjj>HGY_p`F(KG9>7Co^+=63+6Q3ATMF'G%FHmATDa1Bl8#kATW$.DJ+#5FE2M8%144#02lt$Ecb,dB4W2?%144#02m"&F(KG_Df0Z<+EVXHAISth -%+>6]7@;^-uATC7_DI[d&Df/-aAoAeF:i^,gATDs*%144#03(A;@;]UB7nIT1D]g]2ASl@/AISth+>6`9APdDcCi -%_; (AI12 Job Options Data) , -%_1 /Bool (AISaveMultipleArtboardsAllSelected) , -%_; /NotRecorded , -%_; -%AI9_EndDocumentData -%AI11_BeginTextDocument -/AI11TextDocument : /ASCII85Decode , -%+>5`7+?Vb/0/+M-+?ht30/+M240/+M24k&!+c.Q!+c.(!)rqs!-A3O!%e1M!,*f(0/=Y(+?ht35!C)Q4s2sM+>5Dk4?O`>3B8386Z6mZ<-`Fo7W30d+>5Dk -%4?O`>0H_eCrr>anGlVjbB`MQAA,oF+EWC"X/HAZKAH6?CFT?4X@/t5Jm0H`PC+?ht35!C)O4!(d0.!-S?V!-8-0!,hjT!-BY40/=Y(+?ht35!C)Q4s4,R5!C)B1*A\A+>5Dk>9H$j -%+>5Dk4?O`>0H_eCs!]'D2'>"D+>5Dk>9H$j+>5Dk./s8G2?#H^+>5Gl0d&YD+?Vb/0/+Lsrr;sVr\l8K0/4S(+?ht34?O`>0H_eC -%s8G%X3@Q((0d&1n5!C)O4G!&4s2sM+>5Dk./s8G4oRSn+>5Gl0d&YD+?Vb/0/+Lsrr;s^r]_hS0/4S( -%+?ht34?O`>0H_eCs8G=`5q*p00d&1n5!C)O4G!&4s2sM+>5Dk./s8H#lb/Z+>5Gl0d&YD+?Vb/0/+Ls -%rr0H_eCs8Q='>:C[J0d&1n5!C)O4G!&4s2sM+>5Dk./s5h*$?4M+>5Gl -%0d&YD+?Vb/0/+Lsrr4YX0F0*M0/4S(+?ht34?O`>0H_eCs"Fd6$7R)N0d&1n5!C)O4G!&4s2sM+>5Dk -%./s6#%PSAA+>5Gl0d&YD+?Vb/0/+Lsrr4Y`0G#ZU0/4S(+?ht34?O`>0H_eCs"G-@'Ib.X0d&1n5!C)O4P''4s2sM+>5Dk./s8G3;tld+>5Gl1*AbE+?Vb/0/+Lsrr;sYr]2JN0/4S)+?ht34?O`>0H_eCs8G.[4=MC+0d&4o5!C)O4P''4s2sM+>5Dk./s8G5lO"t+>5Gl1*AbE+?Vb/0/+Lsrr;sar^&%V0/4S)+?ht34?O`>0H_eCs8GFc6n'63 -%0d&4o5!C)O4P''4s2sM+>5Dk./s8H4o[Yo+>5Gl1*AbE+?Vb/0/+Lsrr<"(s'7&r0/4S)+?ht34?O`> -%0H_eCru`1%)(?[]0d&4o5!C)O4P''4s2sM+>5Dk./s6##quZ7+>5Gl1*AbE+?Vb/0/+Lsrr4Y[0FK

0H_eCs"Fm9%4NDQ0d&4o5!C)O4P''4s2sM+>5Dk./s6#&MOeG+>5Gl1*AbE+?Vb/ -%0/+Lsrr4Ye0GQ#Z0/4S)+?ht34?O`>0H_eCs8NW0%k/VS0d&7p5!C)O4Y-(4s2sM+>5Dk./s6#5qkSR -%+>5Gl1E\kF+?Vb/0/+Lsrr4Z>0LI930/4S*+?ht34?O`>0H_eCs"Hkq74B?40d&7p5!C)O4Y-(4s2sM -%+>5Dk./s6#8ME^b+>5Gl1E\kF+?Vb/0/+Lsrr4Z^0OlOS0/4S*+?ht34?O`>0H_eCs"K'ZK..or0d&7p5!C)O4Y-(4s2sM+>5Dk./s6#LG4K4+>5Gl1E\kF+?Vb/0/+Lsrr4[40TIS)0/4S*+?ht34?O`>0H_eCs"KutSLG[70d&7p5!C)O -%4Y-(4s2sM+>5Dk./s6#TeN/h+>5Gl1E\kF+?Vb/0/+Lsrr4[I0V^'>0/4S*+?ht34?O`>0H_eCs"L9' -%V(!N?0d&7p5!C)O4Y-(4s2sM+>5Dk./s6#WA(;#+>5Gl1E\kF+?Vb/0/+Lsrr4[i0Z,=^0/4S*+?ht3 -%4?O`>0H_eCs"NIej!c*(0d&7p5!C)O4Y-(4s2sM+>5Dk./s6#k:l'J+>5Gl1E\kF+?Vb/0/+Lsrr4\? -%0^^A40/4S*+?ht34?O`>0H_eCs"O+"p*h+;0d&7p5!C)O4Y-(4s2sM+>5Dk./s6#"Y^*/+>5Gl1E\kF -%+?Vb/0/+Lsrr0H_eCs8O2@+"8k9*4s2sM+>5Dk./s6# -%q_7mr+>5Gl2'>(H+?Vb/0/+Lsrr4)P+:otE0/4S,+?ht34?O`>0H_eCs8NT/%OiMR0d&@s5!C)O4t?+ -%4s2sM+>5Dk./s8H%0$_b+>5Gl2]t:J+?Vb/0/+Lsrr4YQ0EEUF0/4S.+?ht34?O`>0H_eCru`%!'e(7Y0d&Fu5!C)O45Dk./s8H"TJTR+>5Gl3?ULL+?Vb/0/+Lsrr2tn!2Ctc0/4S0+?ht34?O`>0H_eCs8V3\jXD<*0d&J! -%5!C)O4GPm5!C)O4GPm5!C)O4GPm5!C)O4=ol.3L8u+>GPm5!C)O4P&r.3L8u+>GPm5!C)O4GSn5!C)O4GVo5!C)O4GVo5!C)O4GVo5!C)O4GVo -%5!C)O4GVo5!C)O4GVo5!C)O4GVo5!C)O4GVo5!C)O4GVo5!C)O4GYp5!C)O4G\q5!C)O4G\q5!C)O4G\q5!C)O4G\q -%5!C)O4G\q5!C)O4G\q5!C)O4G\q5!C)O4G\q5!C)O4G\q5!C)O4>.3L8u+>G\q5!C)O4G\q5!C)O4G\q5!C)O4G\q5!C)O43o.3L8u+>G\q -%5!C)O4G\q5!C)O4G\q5!C)O4G_r5!C)O4k.3L8u+>Gbs5!C)O4Gbs5!C)p+?ht35!C)Q4s4,R0/4SR+?Vb/0/+M&+?ht3>p)5Mn -%4?O`>0HaRB4?O`>0H`J?+>5Dk./s5H=TDk1CB/JWD#eJSD?+ST8-!&uD?+GP@/t'CFX\Fd2'>"D+>5Dk0H`#'+?Vb/0/+MQ+?Vb/ -%0/+M#/i=b)1*A"Es8N?R+?ht34?O`>0H_r"2'=P-+=R6hs#VYP5!C)O4#3'+>5Jm./s8H>:C[Y4s2sM+>5Dk/M8n'0/=Xu -%rr4)X.3Lf<+?Vb/0/+M#/i=b)1*A"Eru`:1+?ht34?O`>0H_r"2'=P-+=R6h0F0*M5!C)O4#3'+>5Jm./s6#$7R)]4s2sM -%+>5Dk/M8n'0/=Xurr4Y\.3Lf<+?Vb/0/+M#/i=b)1*A"Es"Fp3+?ht34?O`>0H_r"2'=P-+=R6h0G#ZU5!C)O4#3'+>5Jm -%./s6#'Ib.g4s2sM+>5Gl/M8n'0/=Xurr0d&'=P-+=R6hs'7&r5!C)O -%4#3'+>5Jm./s5h)(?[l4s2sM+>5Gl/M8n'0/=Xurr4)].3Lf<+?Vb/0/4S$/i=b)1*A"Es"Fa.+?ht34?O`>0d&'=P- -%+=R6h0FK#3'+>5Jm./s6#%4ND`4s2sM+>5Gl/M8n'0/=Xurr4Y_.3Lf<+?Vb/0/4S$/i=b)1*A"Es"G$6+?ht3 -%4?O`>0d&'=P-+=R6h0GQ#Z5!C)O4#3'+>5Jm./s8H%OiMa4s2sM+>5Gl/M8n'0/=Xurr4YR.3Lf<+?Vb/0/4S$/i=b) -%1*A"Es8NKV+?ht34?O`>0d&'=P-+=R6h0EEUF5!C)O4#3$2'=P,+>#3$2'=P-+=R6hru*=/5!C)O4#3$2'=P, -%+>#3$2'=P-+=R6hru3C05!C)O4#3$2'=P,+>#3$2'=P-+=R6h0`*:A5!C)O4#3$2'=P,+>#3$2'=P-+=R6h+:otE -%5!C)p+?ht30/=Y445Gl>9H$j+>5Dk>9GXC2'?0I0/4S34,E,+>,E,+>,E, -%+C-*C0d&1n5!C)Q4s3$Q+C-*R4s2sM+>5Dk1*A5)+BosN4G!E+>5Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H_u*+C-*C -%0d&7p5!C)Q4s3$Q+?Vb/0/+MQ+>P&p+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB -%1*A@q>p(dT+?Vb/0/+M245Dk>9G[D1a$'H0/4S34>E%+>>E%+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB1*AFs>p(dT+?Vb/0/+M245Gl0d&YD -%+?ht35!C)O45Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S)+?ht35!C)Q4s2sM+>5Dk>9G[D3$;KL -%0/4S34>E%+>>E%+>>E%+C-*C0d&7p5!C)Q4s3$Q+?Vb/0/+MQ+>P'"+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%% -%0J5%%/i=bW+>5Gl1E\kF+?ht35!C)O4GPm>p(dT+?Vb/0/+M245Dk>9G[D0ejeV+>5Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S*+?ht35!C)Q4s2sM+>5Dk>9G[D0eskW+>5Gl -%4?O`>0H`J?+>5Dk>9GUP0H`&%0H_u*+C-*C0d&7p5!C)Q4s3$Q+?Vb/0/+MQ+>P&o1E]sG0/4S34>E%+>>E% -%+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB1*A;.+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1E\kF+?ht35!C)O -%4G_r>p(dT+?Vb/0/+M245Dk>9G[D0fC.[+>5Gl4?O`> -%0H`J?+>5Dk>9GUP0H`&%0H_u*+C-*C0d&7p5!C)Q4s3$Q+C-*R4s2sM+>5Dk1E\>*+BosN4G!E+>5Gl4?O`>0d&S@ -%+>5Dk>9GUP0H`&%0H_u*+C-*C0d&7p5!C)Q4s3$Q+?Vb/0/+MQ+>Y,r+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)

k9I+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9G^E2]uBK -%0/4S34>E%+>>E%+>>E%+C-*C0d&4o5!C)Q4s3$Q+?Vb/0/+MQ+>Y-"+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%% -%0J5%%0eP.&>p)5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ -%+>Y,p0HaXD0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB1E\D-+C-*C0d&S@+>5Gl4?O`>0HaRB -%0J5%%0J5%%0eP.&>p)GYp>p(dT+?Vb/0/4S345Dk>9G^E0f1"Y+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>Y,p2'?0I0/4S34,B(2'=M,2'=M/+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+>Y,p2BZ9J0/4S34,B(2'=M,2'=M/+C-*C -%0d&:q5!C)Q4s3$Q+C-*R4s2sM+>5Dk1a"G++BosN4G!E+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H_u*+C-*C0d&7p -%5!C)Q4s3$Q+?Vb/0/+MQ+>b2u+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB1a"_" -%>p(dT+?Vb/0/4S345Gl1*AbE+?ht35!C)O4G_r>p(dT+?Vb/0/4S34p(dT+>b3)4s3$Q+?ht34?O`>0HaRB1a"M2+C-*C0d&S@+>5Gl4?O`>0HaRB/ho+=+>,E,+>,E,+C-*C0d&:q -%5!C)Q4s3$Q+C-*R4s2sM+>5Dk2'=P,+BosN4G!E+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht3 -%5!C)Q4s2sM+>5Dk>9GdG1*BjF0/4S34,E,+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>k8t+C-*C -%0d&S@+>5Dk4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB2'=^u>p(dT+?Vb/0/+M245Gl0d&YD+?ht35!C)O4k9I+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT+>G!&4s3$Q+?ht3 -%4?O`>0HaRB2'=e">p(dT+?Vb/0/+M245Gl0d&YD+?ht35!C)O45Gl4?O`> -%0H`J?+>5Dk>9GOR2'=M,2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GdG3$;KL0/4S34>E%+>,E,+>,E, -%+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>k9%+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`> -%0HaRB2'=V-+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB2'=V.+C-*C0d&S@+>5Dk -%4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB2'=V/+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i#:,/i#:, -%>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB2'=V0+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`> -%0HaRB2'=V1+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB2'=V2+C-*C0d&S@+>5Dk -%4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB2'=V3+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i#:,/i#:, -%>p(dT+>G!&4s3$Q+?ht3>p)5Gl>9H$j+>5Dk>9GgH0d'aE0/4S34>E%+>>E%+>,Mo>p(dT -%+>Y-(4s3$Q+?ht34?O`>0HaRB2BXdu>p(dT+?Vb/0/+M24t?!+C-*C -%0d&S@+>5Dk4?O`>0HaRB0J5%%0J5%%/i=bW+?ht35!C)Q4s2sM+>5Dk>9GgH2'?0I0/4S34>E%+>,E,+>,E, -%+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>t?$+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT+>P''4s3$Q+?ht34?O`> -%0HaRB2BXt%>p(dT+?Vb/0/+M24t?&+C-*C0d&S@+>5Dk4?O`>0HaRB -%0J5%%0J5%%/i=bW+?ht35!C)Q4s2sM+>5Dk>9GgH0ea_U+>5Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H_u*+C-*R4s3$Q+?ht34?O`> -%0HaRB2BX_/+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%0J5%%/i=bW+?ht35!C)Q4s2sM+>5Dk>9GgH0eskW+>5Gl4?O`>0H`J?+>5Dk -%>9GUP0H`&%0H_u*+C-*R4s3$Q+?ht34?O`>0HaRB2BX_1+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%0J5%%/i=bW+?ht35!C)Q4s2sM -%+>5Dk>9GgH0f1"Y+>5Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H_u*+C-*R4s3$Q+?ht34?O`>0HaRB2BX_3+C-*C0d&S@+>5Dk4?O`> -%0HaRB0J5%%0J5%%/i=bW+>5Gl1a"tG+?ht35!C)O4Gbs>p(dT+?Vb/0/+M240HaRB2]sgt>p(dT+?Vb/0/+M245Dk>9GjI1E]sG0/4S34>E%+>>E%+>,Mo>p(dT+>P''4s3$Q+?ht34?O`>0HaRB2]sq">p(dT -%+?Vb/0/+M245Dk>9GjI2'?0I0/4S34>E%+>,E, -%+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+?(E%+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT+>P''4s3$Q+?ht3 -%4?O`>0HaRB2]t(&>p(dT+?Vb/0/+M245Dk>9GjI3?VTM0/4S34>E%+>>E%+>,Mo>p(dT+>P''4s3$Q+?ht34?O`>0HaRB2]sh/+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%0J5%%/i=bW -%+>5Gl1*AbE+?ht35!C)O4GVo>p(dT+?Vb/0/+M245Dk -%>9GjI0f'qX+>5Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H_u*+C-*C0d&4o5!C)Q4s3$Q+?Vb/0/+MQ+?(Dt1a$'H0/4S34>E%+>>E%+>,Mo>p(dT+>P''4s3$Q+?ht34?O`>0HaRB2]sh4+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl -%1*AbE+?ht35!C)O4Gbs>p(dT+?Vb/0/+M240HaRB3$9pu>p(dT+?Vb/0/4S345Dk>9GmJ1E]sG -%0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB3$:($>p(dT+?Vb/0/4S345Gl0d&YD+?ht35!C)O45Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S)+?ht35!C)Q4s2sM -%+>5Dk>9GmJ3$;KL0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB3$:4(>p(dT+?Vb/0/4S345Dk>9GmJ0ea_U+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q -%+?Vb/0/+MQ+?1Ju1*BjF0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB3$9q3+C-*C0d&S@+>5Gl -%4?O`>0HaRB0J5%%0J5%%0eP.&>p)G\q>p(dT+?Vb/0/4S345Dk>9GmJ0f:(Z+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H_u*+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+?1Ju2BZ9J -%0/4S34>E%+>>E%+>,Mo>p(dT+>b3)4s3$Q+?ht3>p)5Gl>9H$j+>5Dk>9GpK0d'aE0/4S3 -%4>E%+>>E%+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB3?U+#>p(dT+?Vb/0/4S345Dk>9GpK2'?0I0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ -%+?:Q'+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT+>P''4s3$Q+?ht34?O`>0HaRB3?U:(>p(dT+?Vb/0/4S345Dk>9GpK3?VTM0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht3 -%4?O`>0HaRB3?U%1+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)GVo>p(dT+?Vb/0/4S3 -%45Dk>9GpK0f'qX+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q -%4s3$Q+?Vb/0/+MQ+?:Q!1a$'H0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB3?U%6+C-*C0d&S@ -%+>5Gl4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1a"tG+?ht35!C)O4Gbs>p(dT+?Vb/0/4S34GPm0/4SR+?Vb/0/+MQ+>GPm0d'aE0/4S34>E%+>>E%+>,Mo -%>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB0ea_++C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)p(dT+?Vb/0/4S345Gl0d&YD+?ht35!C)O4p(dT+?Vb/0/4S345Gl1*AbE+?ht35!C)O4p(dT+?Vb/0/4S345Dk>9GXS+?:QM+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GPm0ea_U+>5Gl -%4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GPm0eskW+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)& -%0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GPm0f'qX+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GPm -%0f1"Y+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GPm0f:(Z+>5Gl4?O`>0d&S@+>5Dk>9GUP -%0H`&%0H_u*+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+>GPm0fC.[+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H_u*+C-*C0d&:q5!C)Q -%4s3$Q+C-*R4s2sM+>5Dk0eje(0d'[C4?O`>0HaRB0eje.+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q -%+?ht34?O`>0HaRB0eje0+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT+>P''4s3$Q+?ht34?O`>0HaRB0eje*2'?0I -%0/4S34>E%+>>E%+>>E%+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+>GSn0fC.[+>5Gl4?O`>0d&S@+>5Dk>9GUP -%0H`&%0H`&%0HaXD0/4S++?ht35!C)Q4s4,R5!C)O4GVo0/4SR+?Vb/0/+MQ+>GVo0d'aE0/4S34>E% -%+>>E%+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB0esk-+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)p(dT+?Vb/0/4S345Gl0d&YD+?ht35!C)O4p(dT+?Vb/ -%0/4S345Gl1*AbE+?ht35!C)O4p(dT+?Vb/0/4S345Dk>9GXU+?:QM+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GVo -%0ea_U+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GVo0eskW+>5Gl4?O`>0d&S@+>5Dk>9GUP -%0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GVo0f'qX+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/ -%0/+MQ+>GVo0f1"Y+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GVo0f:(Z+>5Gl4?O`>0H`J? -%+>5Dk>9GOQ1,U1,1,U1,2'?0I0/4S++?ht35!C)Q4s2sM+>5Dk>9GXU+>Gbs>p(dT+?Vb/0/+M245Gl1a"tG+?ht35!C)p+?ht34?O`>0H`)++>5Gl>9H$j+>5Dk>9GXV+>G!E+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H_u*+C-*C -%0d&7p5!C)Q4s3$Q+?Vb/0/+MQ+>GYp1E]sG0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0f'q0 -%+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB0f'q2+C-*C0d&S@+>5Gl4?O`>0HaRB -%0J5%%0J5%%0J5%%>p(dT+>P''4s3$Q+?ht34?O`>0HaRB0f'q3+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)p(dT+?Vb/0/4S345Dk>9GXV+>GPm>p(dT+?Vb/ -%0/4S345Dk>9GXV+>GVo>p(dT+?Vb/0/4S345Dk>9GXV+>GYp>p(dT+?Vb/0/4S345Dk>9GXV+>G\q -%>p(dT+?Vb/0/4S345Dk>9GXV+>G_r>p(dT+?Vb/0/+M245Dk>9GXV+>Gbs>p(dT+?Vb/0/+M24G\q0/4SR+?Vb/0/+MQ+>G\q0d'aE0/4S34>E%+>>E%+>,Mo>p(dT+>Y-(4s3$Q+?ht3 -%4?O`>0HaRB0f1"/+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)p(dT+?Vb/0/4S3 -%45Gl0d&YD+?ht35!C)O4p(dT+?Vb/0/4S345Gl1*AbE+?ht35!C)O4p(dT+?Vb/0/4S345Dk>9GXW -%+?:QM+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>G\q0ea_U+>5Gl4?O`>0d&S@+>5Dk>9GUP -%0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>G\q0eskW+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/ -%0/+MQ+>G\q0f'qX+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>G\q0f1"Y+>5Gl4?O`>0d&S@ -%+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>G\q0f:(Z+>5Gl4?O`>0H`J?+>5Dk>9GOQ1,U1,1,U1,2'?0I0/4S+ -%+?ht35!C)Q4s2sM+>5Dk>9GXW+>Gbs>p(dT+?Vb/0/+M245Gl1a"tG+?ht35!C)p+?ht34?O`> -%0H`)-+>5Gl>9H$j+>5Dk>9GXX+>G!E+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H_u*+C-*C0d&7p5!C)Q4s3$Q+?Vb/0/+MQ+>G_r -%1E]sG0/4S34,B(2'=M,2'=M,2'?0I0/4S++?ht35!C)Q4s2sM+>5Dk>9GXX+>b3H+>5Gl4?O`>0d&S@+>5Dk -%>9GOQ1,U1,1,U1,1,U1[+>5Gl1a"tG+?ht35!C)O4p(dT+?Vb/0/4S345Gl -%0d&YD+?ht35!C)O4p(dT+?Vb/0/4S345Gl1*AbE+?ht35!C)O4p(dT+?Vb/0/4S345Dk>9GXX+?:QM+>5Gl4?O`>0d&S@+>5Dk -%>9GUP0H`&%0H_u*+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+>G_r0ea_U+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H_u*+C-*R4s3$Q -%+?ht34?O`>0HaRB0f:(.1*BjF0/4S34,B(2'=M,2'=M/+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+>G_r0f1"Y -%+>5Gl4?O`>0d&S@+>5Dk>9GOQ1,U1,1,U1,2'?0I0/4S++?ht35!C)Q4s4,R5!C)O4Gbs0/4SR+?Vb/0/+MQ+>Gbs0d'aE -%0/4S34>E%+>>E%+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB0fC.1+C-*C0d&S@+>5Gl4?O`>0HaRB/ho+= -%+>,E,+>,E,+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+>Gbs1a$'H0/4S34,B(2'=M,2'=M,2'?0I0/4S++?ht3 -%5!C)Q4s2sM+>5Dk>9GXY+>k9I+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GXY+?(EK -%+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S)+?ht35!C)Q4s2sM+>5Dk>9GXY+?1KL+>5Gl4?O`>0d&S@+>5Dk>9GUP -%0H`&%0H_u*+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+>Gbs3?VTM0/4S34>E%+>>E%+>,Mo>p(dT+>b3)4s3$Q -%+?ht34?O`>0HaRB0fC./0HaXD0/4S34>E%+>>E%+>,Mo>p)5Gl4?O`>0HaRB/ho+=+>,E,+>,Mo>p(dT+>b3)4s3$Q+?ht34?O`>0HaRB0fC./1a$'H0/4S34,B(2'=M, -%2'=M/+C-*C0d&:q5!C)Q4s3$Q+C-*R4s4,R5!C)Q4s2L7+>G!&4s3$Q+?ht34?O`>0H`J?+>5Dk./s5H7f[f7DZFVS@/tBLEr^=_ -%=TDk1CB/JWD#eJSD?+ST8-!&uD?+GP@/t'CFX\Fd2'>"D+>5Dk0H`#'+?Vb/0/+MQ+?Vb/0/+M#/i=b)1*A"Es8N?R+?ht34?O`> -%0H_r"2'=P-+=R6hs#VYP5!C)O4#3'+>5Jm./s8H>:C[Y4s2sM+>5Dk/M8n'0/=Xurr4)X.3Lf<+?Vb/0/+M#/i=b)1*A"E -%ru`:1+?ht34?O`>0H_r"2'=P-+=R6h0F0*M5!C)O4#3'+>5Jm./s6#$7R)]4s2sM+>5Dk/M8n'0/=Xurr4Y\.3Lf<+?Vb/ -%0/+M#/i=b)1*A"Es"Fp3+?ht34?O`>0H_r"2'=P-+=R6h0G#ZU5!C)O4#3'+>5Jm./s6#'Ib.g4s2sM+>5Gl/M8n'0/=Xu -%rr0d&'=P-+=R6hs'7&r5!C)O4#3'+>5Jm./s5h)(?[l4s2sM -%+>5Gl/M8n'0/=Xurr4)].3Lf<+?Vb/0/4S$/i=b)1*A"Es"Fa.+?ht34?O`>0d&'=P-+=R6h0FK#3'+>5Jm -%./s6#%4ND`4s2sM+>5Gl/M8n'0/=Xurr4Y_.3Lf<+?Vb/0/4S$/i=b)1*A"Es"G$6+?ht34?O`>0d&'=P-+=R6h0GQ#Z5!C)O -%4#3'+>5Jm./s8H%OiMa4s2sM+>5Gl/M8n'0/=Xurr4YR.3Lf<+?Vb/0/4S$/i=b)1*A"Es8NKV+?ht34?O`>0d&'=P- -%+=R6h0EEUF5!C)O4#3$2'=P,+>#3$2'=P-+=R6hru*=/5!C)O4#3$2'=P,+>#3$2'=P-+=R6hru3C05!C)O4#3$2'=P,+>#3$2'=P-+=R6h0`*:A5!C)O4#3$2'=P,+>#3$2'=P-+=R6h+:otE5!C)p+?ht30/=Y445Gl>9H$j+>5Dk>9GXC2'?0I0/4S34,E,+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+C-*R4s2sM -%+>5Dk1*A5)+BosN4G!E+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB1*A=p -%>p(dT+?Vb/0/+M245Gl1E\kF+?ht35!C)O4Y-G+>5Gl4?O`>0H`J?+>5Dk>9GUP -%0H_u*+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB1*ACr>p(dT+?Vb/0/+M24P&s+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB1*ALu>p(dT+?Vb/ -%0/+M245Gl1*AbE+?ht35!C)O45Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo -%>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB1*AS">p(dT+?Vb/0/+M24P&o0HaXD0/4S34>E%+>,Mo/i=bW+>5Gl1E\kF+?ht35!C)O4GSn>p(dT+?Vb/0/+M245Gl1E\kF+?ht35!C)O4GVo>p(dT+?Vb/0/+M24P&o1E]sG0/4S34>E%+>,Mo/i=bW+>5Gl1E\kF+?ht35!C)O4G\q -%>p(dT+?Vb/0/+M24P&o2'?0I0/4S34>E% -%+>,Mo/i=bW+>5Gl1E\kF+?ht35!C)O4Gbs>p(dT+?Vb/0/+M245Dk1E\>*+BosN4G!E+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`> -%0HaRB1E\Ir>p(dT+?Vb/0/4S345Dk>9G^E2'?0I0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>Y-!+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT+>P'' -%4s3$Q+?ht34?O`>0HaRB1E\Y">p(dT+?Vb/0/4S345Dk>9G^E3?VTM0/4S3 -%4>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB1E\D++C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.& -%>p)GVo>p(dT+?Vb/0/4S345Dk>9G^E0f'qX -%+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>Y,p1a$'H0/4S34>E%+>>E% -%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB1E\D0+C-*C0d&S@+>5Gl4?O`>0HaRB/ho+=+>,E,+>,Mo>p(dT+>b3)4s3$Q+?ht34?O`> -%0HaRB1E\D1+C-*C0d&S@+>5Gl4?O`>0HaRB/ho+=+>,E,+>,Mo>p(dT+>b3)4s3$Q+?ht3>p)5Gl>9H$j+>5Dk -%>9GaF0d'aE0/4S34>E%+>,Mo/i=bW+>5Gl1E\kF+?ht35!C)O4k9I+>5Gl4?O`>0d&S@+>5Dk -%>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GaF2]uBK0/4S34>E%+>>E%+>>E%+C-*C0d&4o -%5!C)Q4s3$Q+?Vb/0/+MQ+>b2q2'?0I0/4S34,B(2'=M,2'=M,2'?0I0/4S++?ht35!C)Q4s2sM+>5Dk>9GaF -%0fC.[+>5Gl4?O`>0d&S@+>5Dk>9GOQ1,U1,1,U1,1,U1[+>5Gl1a"tG+?ht35!C)p+?ht34?O`>0H`4q0/4SR+?Vb/0/+MQ+>k8r -%+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB2'=Xs>p(dT+?Vb/0/+M245Gl0d&YD+?ht35!C)O4Y-G+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht3 -%5!C)Q4s2sM+>5Dk>9GdG1a$'H0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>k9!+C-*C -%0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GdG2BZ9J0/4S34,E,+>,E, -%+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>k9#+C-*C0d&S@+>5Dk4?O`>0HaRB/i#:,/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht3 -%4?O`>0HaRB2'=k$>p(dT+?Vb/0/+M245Gl0d&YD+?ht35!C)O45Gl4?O`> -%0H`J?+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GdG0ea_U+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u'2'=M, -%2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GdG0ejeV+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM -%+>5Dk>9GdG0eskW+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GdG0f'qX+>5Gl4?O`> -%0H`J?+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GdG0f1"Y+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u'2'=M, -%2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GdG0f:(Z+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM -%+>5Dk>9GdG0fC.[+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s4,R5!C)O4t>q0d'[C4?O`> -%0HaRB2BX^s>p(dT+?Vb/0/+M24t>u+C-*C0d&S@+>5Dk4?O`> -%0HaRB0J5%%/i=b(2'?0I5!C)Q4s3$Q+?Vb/0/+MQ+>t?!+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I5!C)Q4s3$Q+?Vb/ -%0/+MQ+>t?"+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/iPX1/iPX1>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB2BXq$>p(dT+?Vb/0/+M2 -%45Gl1*AbE+?ht35!C)O45Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p)

5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p)GPm>p(dT+?Vb/ -%0/+M240HaRB2BX_/+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I5!C)Q -%4s3$Q+?Vb/0/+MQ+>t>s1*BjF0/4S34>E%+>,Mo/i=bW+?ht35!C)Q4s2sM+>5Dk>9GgH0f'qX+>5Gl4?O`> -%0H`J?+>5Dk>9GUP0H_u*+>,Mo>p)G\q>p(dT+?Vb/0/+M240HaRB2BX_3+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I0/4S++?ht35!C)Q4s2sM+>5Dk>9GgH0fC.[+>5Gl -%4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT+>b3)4s3$Q+?ht3>p)5Gl>9H$j+>5Dk>9GjI0d'aE0/4S34>E%+>,Mo/i=bW+>5Gl1*AbE+?ht35!C)O4Y-G+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT -%+>P''4s3$Q+?ht34?O`>0HaRB2]sq">p(dT+?Vb/0/+M245Dk4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB2]t%%>p(dT+?Vb/0/+M245Gl1*AbE+?ht35!C)O45Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT+>P''4s3$Q -%+?ht34?O`>0HaRB2]t+'>p(dT+?Vb/0/+M24>E%+>,Mo/i=bW+>5Gl1*AbE+?ht35!C)O4GVo>p(dT+?Vb/0/+M24>E%+>,Mo/i=bW+>5Gl1*AbE+?ht35!C)O4G\q>p(dT+?Vb/0/+M24>E%+>,Mo/i=bW+>5Gl1*AbE+?ht35!C)O4Gbs>p(dT+?Vb/0/+M245Dk3$9k/+BosN4G!E+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q -%+?ht34?O`>0HaRB3$:"">p(dT+?Vb/0/4S345Dk>9GmJ2'?0I0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+?1K&+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0J5%% -%>p(dT+>P''4s3$Q+?ht34?O`>0HaRB3$:1'>p(dT+?Vb/0/4S345Dk>9GmJ -%3?VTM0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB3$9q0+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%% -%0J5%%0eP.&>p)GVo>p(dT+?Vb/0/4S345Dk -%>9GmJ0f'qX+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+?1Ju1a$'H0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB3$9q5+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1a"tG+?ht3 -%5!C)O4Gbs>p(dT+?Vb/0/4S340HaRB3?U%!>p(dT+?Vb/0/4S345Gl -%4?O`>0HaRB0J5%%0J5%%0eP.&>p)k9I+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S( -%+?ht35!C)Q4s2sM+>5Dk>9GpK2]uBK0/4S34>E%+>>E%+>>E%+C-*C0d&4o5!C)Q4s3$Q+?Vb/0/+MQ+?:Q( -%+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)5Gl4?O`>0d&S@+>5Dk>9GUP0H`&% -%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+?:Q!0HaXD0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB -%3?U%3+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)GYp>p(dT+?Vb/0/4S345Dk>9GpK0f1"Y+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/ -%0/+MQ+?:Q!2'?0I0/4S34>E%+>>E%+>,Mo>p(dT+>b3)4s3$Q+?ht34?O`>0HaRB3?U%7+C-*C0d&S@+>5Gl -%4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1a"tG+?ht35!C)p+?ht34?O`>0H`)(+>5Gl>9H$j+>5Dk>9GXS+>G!E+>5Gl4?O`>0d&S@ -%+>5Dk>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB0ea_++C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)

p(dT+?Vb/0/4S345Gl0d&YD+?ht35!C)O4p(dT+?Vb/0/4S345Gl1*AbE+?ht35!C)O4p(dT+?Vb/0/4S345Dk>9GXS+?:QM+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/ -%0/+MQ+>GPm0ea_U+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GPm0eskW+>5Gl4?O`>0d&S@ -%+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GPm0f'qX+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q -%4s3$Q+?Vb/0/+MQ+>GPm0f1"Y+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GPm0f:(Z+>5Gl -%4?O`>0d&S@+>5Dk>9GUP0H`&%0H_u*+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+>GPm0fC.[+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&% -%0H_u*+C-*C0d&:q5!C)Q4s3$Q+C-*R4s2sM+>5Dk0eje(0d'[C4?O`>0HaRB0eje.+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%/i#:, -%/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB0eje0+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT+>P''4s3$Q+?ht3 -%4?O`>0HaRB0eje*2'?0I0/4S34>E%+>>E%+>>E%+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+>GSn0fC.[+>5Gl -%4?O`>0d&S@+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S++?ht35!C)Q4s4,R5!C)O4GVo0/4SR+?Vb/0/+MQ+>GVo0d'aE0/4S3 -%4>E%+>,Mo/i=bW+>5Gl1E\kF+?ht35!C)O4p(dT+?Vb/0/4S345Dk>9GXU+>k9I+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk -%>9GXU+?(EK+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S)+?ht35!C)Q4s2sM+>5Dk>9GXU+?1KL+>5Gl4?O`>0d&S@ -%+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GVo3?VTM0/4S34>E%+>>E%+>GK&+C-*R4s3$Q -%+?ht34?O`>0HaRB0esk+0HaXD0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0esk+1*BjF0/4S3 -%4>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0esk+1E]sG0/4S34>E%+>>E%+>GK& -%+C-*R4s3$Q+?ht34?O`>0HaRB0esk+1a$'H0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0esk+ -%2'?0I0/4S34,B(2'=M,2'=M/+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+>GVo0fC.[+>5Gl4?O`>0H`J?+>5Dk -%>9GOQ1,U1,1,U1,2'?0I0/4S++?ht35!C)Q4s4,R5!C)O4GYp0/4SR+?Vb/0/+MQ+>GYp0d'aE0/4S34>E%+>,Mo/i=bW+>5Gl1E\kF+?ht35!C)O4p(dT+?Vb/0/4S345Dk>9GXV+>k9I+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GXV+?(EK+>5Gl -%4?O`>0d&S@+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S)+?ht35!C)Q4s2sM+>5Dk>9GXV+?1KL+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&% -%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GYp3?VTM0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB -%0f'q,0HaXD0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0f'q,1*BjF0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0f'q,1E]sG0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht3 -%4?O`>0HaRB0f'q,1a$'H0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0f'q,2'?0I0/4S34>E%+>>E%+>,Mo>p(dT+>b3)4s3$Q+?ht34?O`>0HaRB0f'q,2BZ9J0/4S34>E%+>>E%+>,Mo -%>p(dT+>b3)4s3$Q+?ht3>p)p(dT+?Vb/0/4S34G\q1E]sG0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0f1"1 -%+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB0f1"3+C-*C0d&S@+>5Gl4?O`>0HaRB -%0J5%%0J5%%0J5%%>p(dT+>P''4s3$Q+?ht34?O`>0HaRB0f1"4+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)p(dT+?Vb/0/4S345Dk>9GXW+>GPm>p(dT+?Vb/ -%0/4S345Dk>9GXW+>GVo>p(dT+?Vb/0/4S345Dk>9GXW+>GYp>p(dT+?Vb/0/4S345Dk>9GXW+>G\q -%>p(dT+?Vb/0/4S345Dk>9GXW+>G_r>p(dT+?Vb/0/4S345Gl1a"tG+?ht35!C)O45Dk4?O`>0HaRB/ho+=+>,E,+>,Mo>p(dT+>b3)4s3$Q -%+?ht3>p)p(dT+?Vb/0/4S34G_r1E]sG0/4S34,B(2'=M,2'=M,2'?0I0/4S++?ht35!C)Q4s2sM+>5Dk>9GXX+>b3H+>5Gl -%4?O`>0d&S@+>5Dk>9GOQ1,U1,1,U1,1,U1[+>5Gl1a"tG+?ht35!C)O4p(dT+?Vb/0/4S345Gl0d&YD+?ht35!C)O4p(dT+?Vb/0/4S345Gl1*AbE+?ht3 -%5!C)O4p(dT+?Vb/0/4S345Dk>9GXX+?:QM+>5Gl -%4?O`>0d&S@+>5Dk>9GUP0H`&%0H_u*+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+>G_r0ea_U+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&% -%0H_u*+C-*R4s3$Q+?ht34?O`>0HaRB0f:(.1*BjF0/4S34,B(2'=M,2'=M/+C-*C0d&:q5!C)Q4s3$Q+?Vb/ -%0/+MQ+>G_r0f1"Y+>5Gl4?O`>0d&S@+>5Dk>9GOQ1,U1,1,U1,2'?0I0/4S++?ht35!C)Q4s4,R5!C)O4Gbs0/4SR+?Vb/ -%0/+MQ+>Gbs0d'aE0/4S34>E%+>,Mo/i=bW+>5Gl1E\kF+?ht35!C)O4p(dT+?Vb/0/4S3 -%4p(dT+>b3)4s3$Q+?ht34?O`>0HaRB0fC.2+C-*C0d&S@+>5Gl4?O`>0HaRB/ho+=+>,E,+>,E, -%+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+>Gbs2'?0I0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/ -%0/+MQ+>Gbs2]uBK0/4S34>E%+>>E%+>>E%+C-*C0d&4o5!C)Q4s3$Q+?Vb/0/+MQ+>Gbs3$;KL0/4S34>E%+>>E%+>,Mo>p(dT+>b3)4s3$Q+?ht34?O`>0HaRB0fC.7+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%/i=bW -%+>5Gl1a"tG+?ht35!C)O45Gl4?O`>0HaRB0J5%%0J5%%/i=bW+?ht35!C)Q4s2sM+>5Dk>9GXY -%+>GVo>p(dT+?Vb/0/4S345Gl1a"tG+?ht35!C)O45Gl4?O`> -%0HaRB/ho+=+>,E,+>,Mo>p(dT+>b3)4s3$Q+?ht3>p)5Mn1E\kF+?ht35!C)O4kC!-J9Y!,hjT!,hj@!+c.J!,DRC!,DRW.3L9$+?Vb/0/+M&+>5Gl4?O`>0HaRB4?O`>0H_r"2'=P-+=R6h -%rs1%r5!C)O4#3'+>5Jm./s8H4"2:94s2sM+>5Dk/M8n'0/=Xurr<"&.3Lf<+?Vb/0/+M#/i=b)1*A"Eru`.-+?ht34?O`> -%0H_r"2'=P-+=R6h+<2gQ5!C)O4#3'+>5Jm./s6##Upl[4s2sM+>5Dk/M8n'0/=Xurr4YZ.3Lf<+?Vb/0/+M#/i=b)1*A"E -%s"Fj1+?ht34?O`>0H_r"2'=P-+=R6h0FfNS5!C)O4#3'+>5Jm./s6#&1J_c4s2sM+>5Dk/M8n'0/=Xurr4Yd.3Lf<+?Vb/ -%0/4S$/i=b)1*A"Es8NBS+?ht34?O`>0d&'=P-+=R6hs#heR5!C)O4#3'+>5Jm./s8H>q$m[4s2sM+>5Gl/M8n'0/=Xu -%rr4)Y.3Lf<+?Vb/0/4S$/i=b)1*A"Eru`=2+?ht34?O`>0d&'=P-+=R6h0F90N5!C)O4#3'+>5Jm./s6#$Rm2^4s2sM -%+>5Gl/M8n'0/=Xurr4Y].3Lf<+?Vb/0/4S$/i=b)1*A"Es"Fs4+?ht34?O`>0d&'=P-+=R6h0G,`V5!C)O4#3'+>5Jm -%./s6#'e(7h4s2sM+>5Gl/M8n'0/=Xurr0d&'=P-+=R6hrsU>!5!C)O -%4#3'+>5Jm./s6#!@]-T4s2sM+>5Dk/M8e9+>5Gl/M8e9+>5Jm./s8H)CZdm4s2sM+>5Dk/M8e9+>5Gl/M8e9+>5Jm./s8H -%)^umn4s2sM+>5Dk/M8e9+>5Gl/M8e9+>5Jm./s6#q^EXO4s2sM+>5Dk/M8e9+>5Gl/M8e9+>5Jm./s5h&1J_c4s4,R5!C)B1*A\A -%+>5Dk4?O`>0HaRB4?O`>0H`(m0/4SR+?Vb/0/+MQ+>Fur+C-*C0d&S@+>5Gl4?O`>0HaRB/i#:,/i#:,/i#:,>p(dT+>G!&4s3$Q -%+?ht3>p)5Gl>9H$j+>5Dk>9G[D0d'aE0/4S34>E%+>,Mo/i=bW+>5Gl1E\kF+?ht35!C)O -%4P'F+>5Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S*+?ht35!C)Q4s2sM+>5Dk>9G[D1E]sG0/4S34>E%+>,Mo/i=bW+>5Gl1E\kF+?ht35!C)O4b3H+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT -%+>Y-(4s3$Q+?ht34?O`>0HaRB1*AFs>p(dT+?Vb/0/+M245Gl0d&YD+?ht35!C)O45Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S)+?ht35!C)Q4s2sM+>5Dk>9G[D3$;KL0/4S34>E%+>,Mo/i=bW+>5Gl1E\kF+?ht35!C)O45Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q -%+?ht34?O`>0HaRB1*A;*+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I0/4S*+?ht35!C)Q4s2sM+>5Dk>9G[D0ejeV+>5Gl -%4?O`>0H`J?+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S*+?ht35!C)Q4s2sM+>5Dk>9G[D0eskW+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u* -%+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB1*A;-+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I0/4S*+?ht35!C)Q4s2sM -%+>5Dk>9G[D0f1"Y+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB1*A;/+C-*C0d&S@+>5Dk -%4?O`>0HaRB0J5%%/i=b(2'?0I0/4S*+?ht35!C)Q4s2sM+>5Dk>9G[D0fC.[+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT -%+>Y-(4s3$Q+?ht34?O`>0HaRB1*A;1+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I5!C)Q4s3$Q+C-*R4s2sM+>5Dk1E\>* -%+BosN4G!E+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB1E\Ir>p(dT+?Vb/ -%0/4S345Dk>9G^E2'?0I0/4S34>E%+>,E,+>,E,+C-*C -%0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>Y-!+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT+>P''4s3$Q+?ht34?O`>0HaRB -%1E\Y">p(dT+?Vb/0/4S345Dk>9G^E3?VTM0/4S34>E% -%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB1E\D++C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)GVo>p(dT+?Vb/0/4S345Dk>9G^E0f'qX+>5Gl4?O`>0d&S@+>5Dk -%>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>Y,p1a$'H0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht3 -%4?O`>0HaRB1E\D0+C-*C0d&S@+>5Gl4?O`>0HaRB/ho+=+>,E,+>,Mo>p(dT+>b3)4s3$Q+?ht34?O`>0HaRB1E\D1+C-*C0d&S@ -%+>5Gl4?O`>0HaRB/ho+=+>,E,+>,Mo>p(dT+>b3)4s3$Q+?ht3>p)5Gl>9H$j+>5Dk>9GaF0d'aE0/4S34>E%+>,Mo/i=bW+>5Gl1E\kF+?ht35!C)O4k9I+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u'2'=M,2'?0I -%0/4S(+?ht35!C)Q4s2sM+>5Dk>9GaF2]uBK0/4S34>E%+>>E%+>>E%+C-*C0d&4o5!C)Q4s3$Q+?Vb/0/+MQ -%+>b2q2'?0I0/4S34,B(2'=M,2'=M,2'?0I0/4S++?ht35!C)Q4s2sM+>5Dk>9GaF0fC.[+>5Gl4?O`>0d&S@ -%+>5Dk>9GOQ1,U1,1,U1,1,U1[+>5Gl1a"tG+?ht35!C)p+?ht34?O`>0H`4q0/4SR+?Vb/0/+MQ+>k8r+C-*C0d&S@+>5Dk4?O`> -%0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB2'=Xs>p(dT+?Vb/0/+M245Gl -%0d&YD+?ht35!C)O4Y-G+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GdG -%1a$'H0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>k9!+C-*C0d&S@+>5Dk4?O`>0HaRB -%0J5%%/i=b(2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GdG2BZ9J0/4S34,E,+>,E,+>,E,+C-*C0d&1n5!C)Q -%4s3$Q+?Vb/0/+MQ+>k9#+C-*C0d&S@+>5Dk4?O`>0HaRB/i#:,/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB2'=k$>p(dT -%+?Vb/0/+M245Gl0d&YD+?ht35!C)O45Gl4?O`>0H`J?+>5Dk>9GUP0H_u' -%2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GdG0ea_U+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q -%4s2sM+>5Dk>9GdG0ejeV+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GdG0eskW+>5Gl -%4?O`>0H`J?+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GdG0f'qX+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u' -%2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GdG0f1"Y+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q -%4s2sM+>5Dk>9GdG0f:(Z+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GdG0fC.[+>5Gl -%4?O`>0H`J?+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s4,R5!C)O4t>q0d'[C4?O`>0HaRB2BX^s>p(dT+?Vb/ -%0/+M24t>u+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I -%5!C)Q4s3$Q+?Vb/0/+MQ+>t?!+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I5!C)Q4s3$Q+?Vb/0/+MQ+>t?"+C-*C0d&S@ -%+>5Dk4?O`>0HaRB0J5%%/iPX1/iPX1>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB2BXq$>p(dT+?Vb/0/+M245Gl1*AbE+?ht35!C)O45Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p)5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p)GPm>p(dT+?Vb/0/+M240HaRB2BX_/+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I5!C)Q4s3$Q+?Vb/0/+MQ+>t>s -%1*BjF0/4S34>E%+>,Mo/i=bW+?ht35!C)Q4s2sM+>5Dk>9GgH0f'qX+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u* -%+>,Mo>p)G\q>p(dT+?Vb/0/+M240HaRB2BX_3 -%+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I0/4S++?ht35!C)Q4s2sM+>5Dk>9GgH0fC.[+>5Gl4?O`>0H`J?+>5Dk>9GUP -%0H_u*+>,Mo>p(dT+>b3)4s3$Q+?ht34?O`>0HaRB2BX_5+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I5!C)Q4s3$Q+C-*R -%4s2sM+>5Dk2]sb.+BosN4G!E+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT+>P''4s3$Q+?ht34?O`>0HaRB -%2]sn!>p(dT+?Vb/0/+M245Dk4?O`>0HaRB -%0J5%%/i=b(2'?0I0/4S)+?ht35!C)Q4s2sM+>5Dk>9GjI2'?0I0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q -%4s3$Q+?Vb/0/+MQ+?(E%+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT+>P''4s3$Q+?ht34?O`>0HaRB2]t(&>p(dT -%+?Vb/0/+M245Dk4?O`>0HaRB0J5%%/i=b( -%2'?0I0/4S)+?ht35!C)Q4s2sM+>5Dk>9GjI0ea_U+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT+>P''4s3$Q+?ht34?O`> -%0HaRB2]sh1+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I0/4S)+?ht35!C)Q4s2sM+>5Dk>9GjI0f'qX+>5Gl4?O`>0H`J? -%+>5Dk>9GUP0H_u*+>,Mo>p(dT+>P''4s3$Q+?ht34?O`>0HaRB2]sh3+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I0/4S) -%+?ht35!C)Q4s2sM+>5Dk>9GjI0f:(Z+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT+>P''4s3$Q+?ht34?O`>0HaRB2]sh5 -%+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I0/4S)+?ht35!C)Q4s2sM+>5Dk>9GjI0fL4\+>5Gl4?O`>0H`J?+>5Dk>9GUP -%0H_u*+>,Mo>p)0H`=t0/4SR+?Vb/0/+MQ+?1Ju+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%/i=b(2'?0I -%0/4S*+?ht35!C)Q4s2sM+>5Dk>9GmJ1E]sG0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB3$:($ -%>p(dT+?Vb/0/4S345Gl0d&YD+?ht35!C)O45Gl4?O`>0d&S@+>5Dk>9GUP -%0H`&%0H`&%0HaXD0/4S)+?ht35!C)Q4s2sM+>5Dk>9GmJ3$;KL0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht3 -%4?O`>0HaRB3$:4(>p(dT+?Vb/0/4S345Dk>9GmJ0ea_U+>5Gl4?O`>0d&S@ -%+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+?1Ju1*BjF0/4S34>E%+>>E%+>GK&+C-*R4s3$Q -%+?ht34?O`>0HaRB3$9q3+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)G\q>p(dT+?Vb/ -%0/4S345Dk>9GmJ0f:(Z+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H_u*+C-*C -%0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+?1Ju2BZ9J0/4S34>E%+>>E%+>,Mo>p(dT+>b3)4s3$Q+?ht3>p)5Gl>9H$j+>5Dk>9GpK0d'aE0/4S34>E%+>,Mo/i=bW+>5Gl1E\kF+?ht35!C)O4Y-G -%+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+?:Q%+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%/i#:, -%/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB3?U7'>p(dT+?Vb/0/4S345Gl1*AbE+?ht35!C)O -%45Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+?:Q)+C-*C0d&S@+>5Gl4?O`> -%0HaRB0J5%%0J5%%0eP.&>p)GPm>p(dT+?Vb/0/4S345Dk>9GpK0eskW+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+?:Q!1E]sG0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB3?U%5+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)

G_r>p(dT+?Vb/0/4S345Dk>9GpK0fC.[ -%+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H_u*+C-*C0d&:q5!C)Q4s3$Q+C-*R4s2sM+>5Dk0ea_'0d'[C4?O`>0HaRB0ea_)+C-*C -%0d&S@+>5Gl4?O`>0HaRB0J5%%/i=b(2'?0I0/4S*+?ht35!C)Q4s2sM+>5Dk>9GXS+>Y-G+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&% -%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GPm2'?0I0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/ -%0/+MQ+>GPm2]uBK0/4S34>E%+>>E%+>>E%+C-*C0d&4o5!C)Q4s3$Q+?Vb/0/+MQ+>GPm3$;KL0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0ea_1+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)

5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)5Gl4?O`>0HaRB0J5%%0J5%% -%0eP.&>p)5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)5Gl4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1a"tG+?ht35!C)O45Gl4?O`> -%0HaRB0J5%%0J5%%/i=bW+>5Gl1a"tG+?ht35!C)p+?ht34?O`>0H`))+>5Gl>9H$j+>5Dk>9GXT+>k9I+>5Gl4?O`>0d&S@+>5Dk -%>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GXT+?(EK+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S) -%+?ht35!C)Q4s2sM+>5Dk>9GXT+>G_r>p(dT+?Vb/0/4S345Gl1a"tG+?ht35!C)O45Gl4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT+>b3)4s3$Q+?ht3>p)p(dT+?Vb/0/4S34GVo1E]sG0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0esk/+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q -%+?ht34?O`>0HaRB0esk1+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT+>P''4s3$Q+?ht34?O`>0HaRB0esk2+C-*C -%0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)p(dT+?Vb/0/4S345Dk>9GXU+>GPm>p(dT+?Vb/0/4S345Dk>9GXU -%+>GVo>p(dT+?Vb/0/4S345Dk>9GXU+>GYp>p(dT+?Vb/0/4S345Dk>9GXU+>G\q>p(dT+?Vb/0/4S345Dk>9GXU+>G_r>p(dT+?Vb/0/+M245Gl1a"tG+?ht35!C)O45Dk4?O`>0HaRB/ho+=+>,E,+>,Mo>p(dT+>b3)4s3$Q+?ht3>p)*+BosN4p(dT+?Vb/ -%0/4S34GYp1E]sG0/4S34>E%+>>E%+>GK& -%+C-*R4s3$Q+?ht34?O`>0HaRB0f'q0+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB -%0f'q2+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT+>P''4s3$Q+?ht34?O`>0HaRB0f'q3+C-*C0d&S@+>5Gl4?O`> -%0HaRB0J5%%0J5%%0eP.&>p)p(dT+?Vb/0/4S345Dk>9GXV+>GPm>p(dT+?Vb/0/4S345Dk>9GXV+>GVo>p(dT+?Vb/ -%0/4S345Dk>9GXV+>GYp>p(dT+?Vb/0/4S345Dk>9GXV+>G\q>p(dT+?Vb/0/4S345Dk>9GXV+>G_r -%>p(dT+?Vb/0/+M245Dk>9GXV+>Gbs>p(dT+?Vb/0/+M24G\q0/4SR+?Vb/0/+MQ+>G\q0d'aE0/4S34>E% -%+>,Mo/i=bW+>5Gl1E\kF+?ht35!C)O4p(dT+?Vb/0/4S345Dk>9GXW+>k9I+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GXW+?(EK+>5Gl4?O`> -%0d&S@+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S)+?ht35!C)Q4s2sM+>5Dk>9GXW+?1KL+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)& -%0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>G\q3?VTM0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0f1"- -%0HaXD0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0f1"-1*BjF0/4S34>E% -%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0f1"-1E]sG0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`> -%0HaRB0f1"-1a$'H0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0f1"-2'?0I0/4S34,B(2'=M,2'=M/+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+>G\q0fC.[+>5Gl4?O`>0H`J?+>5Dk>9GOQ1,U1,1,U1,2'?0I -%0/4S++?ht35!C)Q4s4,R5!C)O4G_r0/4SR+?Vb/0/+MQ+>G_r0d'aE0/4S34>E%+>,Mo/i=bW+>5Gl -%1E\kF+?ht35!C)O4p(dT+?Vb/0/4S34p(dT+>b3)4s3$Q+?ht34?O`>0HaRB -%0f:(1+C-*C0d&S@+>5Gl4?O`>0HaRB/ho+=+>,E,+>,E,+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+>G_r2'?0I0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>G_r2]uBK0/4S34>E%+>>E%+>>E%+C-*C -%0d&4o5!C)Q4s3$Q+?Vb/0/+MQ+>G_r3$;KL0/4S34>E%+>>E%+>,Mo>p(dT+>b3)4s3$Q+?ht34?O`>0HaRB -%0f:(6+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1a"tG+?ht35!C)O45Gl4?O`> -%0HaRB0J5%%0J5%%/i=bW+?ht35!C)Q4s2sM+>5Dk>9GXX+>GVo>p(dT+?Vb/0/4S345Gl1a"tG -%+?ht35!C)O45Gl4?O`>0HaRB/ho+=+>,E,+>,Mo>p(dT+>b3)4s3$Q+?ht3>p)p(dT+?Vb/0/4S34Gbs1E]sG -%0/4S34,B(2'=M,2'=M,2'?0I0/4S++?ht35!C)Q4s2sM+>5Dk>9GXY+>b3H+>5Gl4?O`>0d&S@+>5Dk>9GOQ -%1,U1,1,U1,1,U1[+>5Gl1a"tG+?ht35!C)O4p(dT+?Vb/0/4S345Gl0d&YD -%+?ht35!C)O4p(dT+?Vb/0/4S345Gl1*AbE+?ht35!C)O4p(dT+?Vb/0/4S345Dk>9GXY+?:QM+>5Gl4?O`>0d&S@+>5Dk>9GUP -%0H`&%0H_u*+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+>Gbs0ea_U+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H_u*+C-*R4s3$Q+?ht3 -%4?O`>0HaRB0fC./1*BjF0/4S34,B(2'=M,2'=M/+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+>Gbs0f1"Y+>5Gl -%4?O`>0d&S@+>5Dk>9GOQ1,U1,1,U1,2'?0I0/4S++?ht35!C)Q4s4,R5!C)p+?ht35!C)B1E\Ls5!C)Q4s3$Q+?Vb/0/+M24kC!-K_50/Xk74=ok0d&S@+>5Dk>9H$j+>5Dk/M8n'0/=Xurr0H_r"2'=P-+=R6hs'$op5!C)O4#3'+>5Jm./s5h(b$Rk4s2sM+>5Dk/M8n' -%0/=Xurr4)\.3Lf<+?Vb/0/+M#/i=b)1*A"Es"F^-+?ht34?O`>0H_r"2'=P-+=R6h0FB6O5!C)O4#3'+>5Jm./s6#$n3;_ -%4s2sM+>5Dk/M8n'0/=Xurr4Y^.3Lf<+?Vb/0/+M#/i=b)1*A"Es"G!5+?ht34?O`>0H_r"2'=P-+=R6h0GGrY5!C)O4#3' -%+>5Jm./s8H#q6u\4s2sM+>5Gl/M8n'0/=Xurr0d&'=P-+=R6h+;lUN -%5!C)O4#3'+>5Jm./s5h*@W*p4s2sM+>5Gl/M8n'0/=Xurr4YY.3Lf<+?Vb/0/4S$/i=b)1*A"Es"Fg0+?ht34?O`>0d&&# -%2'=P-+=R6h0F]HR5!C)O4#3'+>5Jm./s6#%k/Vb4s2sM+>5Gl/M8n'0/=Xurr4Ya.3Lf<+?Vb/0/4S$/i=b)1*A"Es"G0: -%+?ht34?O`>0d&'=P-+=R6hrsgJ#5!C)O4#3'+>5Jm./s6#!\#6U4s2sM+>5Gl/M8n'0/=Xurr0H_r"1,U1-0d&,U1-1*A"Es8Nud+?ht34?O`>0H_r"1,U1-0d&,U1-1*A"Es8O#e+?ht3 -%4?O`>0H_r"1,U1-0d&,U1-1*A"Es"O=!+?ht34?O`>0H_r"1,U1-0d&,U1-1*A"Eru_k%+?ht3>p)5Jm4?O`>0H`J? -%+>5Dk>9H$j+>5Dk0d&,(+BosN4k9I+>5Gl4?O`>0d&S@+>5Dk>9GOR2'=M,2'=M,2'?0I0/4S(+?ht35!C)Q4s4,R -%5!C)O4P&m0d'[C4?O`>0HaRB1*A:o>p(dT+?Vb/0/+M24P&p+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB1*A@q>p(dT+?Vb/0/+M24P&r+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I0/4S*+?ht3 -%5!C)Q4s2sM+>5Dk>9G[D2'?0I0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>P&u+C-*C -%0d&S@+>5Dk4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT+>P''4s3$Q+?ht34?O`>0HaRB1*AP!>p(dT+?Vb/0/+M24P'"+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I0/4S*+?ht35!C)Q4s2sM -%+>5Dk>9G[D0ea_U+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB1*A;++C-*C0d&S@+>5Dk -%4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB1*A;,+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I -%0/4S*+?ht35!C)Q4s2sM+>5Dk>9G[D0f'qX+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB -%1*A;.+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I0/4S*+?ht35!C)Q4s2sM+>5Dk>9G[D0f:(Z+>5Gl4?O`>0H`J?+>5Dk -%>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB1*A;0+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I0/4S*+?ht3 -%5!C)Q4s2sM+>5Dk>9G[D0fL4\+>5Gl4?O`>0H`J?+>5Dk>9GOU+>,Mo/i=bW+?ht35!C)Q4s4,R5!C)O4Y,n0d'[C4?O`> -%0HaRB1E\Cp>p(dT+?Vb/0/4S34Y,r+C-*C0d&S@+>5Gl4?O`> -%0HaRB0J5%%0J5%%0eP.&>p)k9I+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht3 -%5!C)Q4s2sM+>5Dk>9G^E2]uBK0/4S34>E%+>>E%+>>E%+C-*C0d&4o5!C)Q4s3$Q+?Vb/0/+MQ+>Y-"+C-*C -%0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)& -%0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>Y,p0HaXD0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB1E\D- -%+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)GYp>p(dT+?Vb/0/4S345Dk>9G^E0f1"Y+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ -%+>Y,p2'?0I0/4S34,B(2'=M,2'=M/+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+>Y,p2BZ9J0/4S34,B(2'=M,2'=M/+C-*C0d&:q5!C)Q4s3$Q+C-*R4s2sM+>5Dk1a"G++BosN4G!E+>5Gl4?O`>0d&S@+>5Dk -%>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB1a"Xu>p(dT+?Vb/0/4S345Gl0d&YD -%+?ht35!C)O45Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S)+?ht35!C)Q4s2sM+>5Dk>9GaF0f:(Z -%+>5Gl4?O`>0d&S@+>5Dk>9GOQ1,U1,1,U1,1,U1[+>5Gl1a"tG+?ht35!C)O4Gbs>p(dT+?Vb/0/4S34p(dT+>b3)4s3$Q+?ht3>p)5Gl>9H$j+>5Dk>9GdG0d'aE0/4S34>E% -%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>k8s+C-*C0d&S@+>5Dk4?O`>0HaRB/i#:,/i#:,/i#:,>p(dT+>G!&4s3$Q -%+?ht34?O`>0HaRB2'=[t>p(dT+?Vb/0/+M245Gl0d&YD+?ht35!C)O4b3H+>5Gl -%4?O`>0H`J?+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GdG2'?0I0/4S34>E%+>,Mo -%/i=bW+>5Gl0d&YD+?ht35!C)O4t?J+>5Gl4?O`>0H`J?+>5Dk>9GOR2'=M,2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM -%+>5Dk>9GdG2]uBK0/4S34,E,+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>k9$+C-*C0d&S@+>5Dk -%4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB2'=n%>p(dT+?Vb/0/+M245Gl0d&YD+?ht35!C)O4GPm>p(dT+?Vb/0/+M245Gl0d&YD+?ht35!C)O4GSn>p(dT+?Vb/0/+M245Gl0d&YD+?ht35!C)O4GVo>p(dT+?Vb/0/+M2 -%45Gl0d&YD+?ht35!C)O4GYp>p(dT+?Vb/0/+M245Gl0d&YD+?ht35!C)O4G\q>p(dT+?Vb/0/+M245Gl0d&YD+?ht35!C)O4G_r>p(dT+?Vb/0/+M245Gl0d&YD+?ht35!C)O4Gbs>p(dT+?Vb/0/+M2 -%45Gl0d&YD+?ht35!C)O4Get>p(dT+?Vb/0/+M24t>q0d'[C4?O`>0HaRB2BX^s>p(dT+?Vb/0/+M24t>u+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I5!C)Q4s3$Q+?Vb/0/+MQ+>t?!+C-*C0d&S@+>5Dk -%4?O`>0HaRB0J5%%/i=b(2'?0I5!C)Q4s3$Q+?Vb/0/+MQ+>t?"+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/iPX1/iPX1>p(dT+>G!& -%4s3$Q+?ht34?O`>0HaRB2BXq$>p(dT+?Vb/0/+M245Gl1*AbE+?ht35!C)O45Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p)5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo -%>p)GPm>p(dT+?Vb/0/+M240HaRB2BX_/+C-*C -%0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I5!C)Q4s3$Q+?Vb/0/+MQ+>t>s1*BjF0/4S34>E%+>,Mo/i=bW -%+?ht35!C)Q4s2sM+>5Dk>9GgH0f'qX+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p)G\q>p(dT -%+?Vb/0/+M240HaRB2BX_3+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I -%0/4S++?ht35!C)Q4s2sM+>5Dk>9GgH0fC.[+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT+>b3)4s3$Q+?ht34?O`>0HaRB -%2BX_5+C-*C0d&S@+>5Dk4?O`>0HaRB/i=b(2'=M/+C-*R4s3$Q+?ht3>p)5Gl>9H$j+>5Dk>9GjI0d'aE0/4S3 -%4>E%+>,Mo/i=bW+>5Gl1*AbE+?ht35!C)O4Y-G+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo -%>p(dT+>P''4s3$Q+?ht34?O`>0HaRB2]sq">p(dT+?Vb/0/+M245Dk4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB2]t%%>p(dT+?Vb/0/+M245Gl1*AbE+?ht35!C)O45Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT+>P'' -%4s3$Q+?ht34?O`>0HaRB2]t+'>p(dT+?Vb/0/+M24>E%+>,Mo/i=bW+>5Gl1*AbE+?ht35!C)O4GVo>p(dT+?Vb/0/+M24>E%+>,Mo/i=bW+>5Gl1*AbE+?ht35!C)O -%4G\q>p(dT+?Vb/0/+M24>E%+>,Mo/i=bW+>5Gl1*AbE+?ht35!C)O4Gbs>p(dT+?Vb/0/+M24,Mo/i=b(2'?0I5!C)Q4s3$Q+C-*R4s2sM+>5Dk3$9k/ -%+BosN4G!E+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB3$:"">p(dT+?Vb/ -%0/4S345Dk>9GmJ2'?0I0/4S34>E%+>,E,+>,E,+C-*C -%0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+?1K&+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT+>P''4s3$Q+?ht34?O`>0HaRB -%3$:1'>p(dT+?Vb/0/4S345Dk>9GmJ3?VTM0/4S34>E% -%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB3$9q0+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)GVo>p(dT+?Vb/0/4S345Dk>9GmJ0f'qX+>5Gl4?O`>0d&S@+>5Dk -%>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+?1Ju1a$'H0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht3 -%4?O`>0HaRB3$9q5+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1a"tG+?ht35!C)O4Gbs>p(dT+?Vb/ -%0/4S340HaRB3?U%!>p(dT+?Vb/0/4S3 -%45Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)

k9I+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GpK2]uBK -%0/4S34>E%+>>E%+>>E%+C-*C0d&4o5!C)Q4s3$Q+?Vb/0/+MQ+?:Q(+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%% -%0J5%%0eP.&>p)5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ -%+?:Q!0HaXD0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB3?U%3+C-*C0d&S@+>5Gl4?O`>0HaRB -%0J5%%0J5%%0eP.&>p)GYp>p(dT+?Vb/0/4S345Dk>9GpK0f1"Y+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+?:Q!2'?0I0/4S34>E%+>>E%+>,Mo>p(dT+>b3)4s3$Q+?ht34?O`>0HaRB3?U%7+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl -%1a"tG+?ht35!C)p+?ht34?O`>0H`)(+>5Gl>9H$j+>5Dk>9GXS+>G!E+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u*+>,Mo>p(dT+>Y-( -%4s3$Q+?ht34?O`>0HaRB0ea_++C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)p(dT -%+?Vb/0/4S345Gl0d&YD+?ht35!C)O4p(dT+?Vb/0/4S345Gl1*AbE+?ht35!C)O4p(dT+?Vb/0/4S345Dk>9GXS+?:QM+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GPm0ea_U+>5Gl4?O`>0d&S@ -%+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GPm0eskW+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q -%4s3$Q+?Vb/0/+MQ+>GPm0f'qX+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GPm0f1"Y+>5Gl -%4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GPm0f:(Z+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H_u* -%+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+>GPm0fC.[+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H_u*+C-*C0d&:q5!C)Q4s3$Q+C-*R -%4s2sM+>5Dk0eje(0d'[C4?O`>0HaRB0eje.+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`> -%0HaRB0eje0+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT+>P''4s3$Q+?ht34?O`>0HaRB0eje*2'?0I0/4S34>E%+>>E%+>>E%+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+>GSn0fC.[+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`&% -%0HaXD0/4S++?ht35!C)Q4s4,R5!C)O4GVo0/4SR+?Vb/0/+MQ+>GVo0d'aE0/4S34>E%+>,Mo/i=bW -%+>5Gl1E\kF+?ht35!C)O4p(dT+?Vb/0/4S345Dk>9GXU -%+>k9I+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GXU+?(EK+>5Gl4?O`>0d&S@+>5Dk -%>9GUP0H`&%0H`&%0HaXD0/4S)+?ht35!C)Q4s2sM+>5Dk>9GXU+?1KL+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q -%4s3$Q+?Vb/0/+MQ+>GVo3?VTM0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0esk+0HaXD0/4S3 -%4>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0esk+1*BjF0/4S34>E%+>>E%+>GK& -%+C-*R4s3$Q+?ht34?O`>0HaRB0esk+1E]sG0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0esk+ -%1a$'H0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0esk+2'?0I0/4S34,B( -%2'=M,2'=M/+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+>GVo0fC.[+>5Gl4?O`>0H`J?+>5Dk>9GOQ1,U1,1,U1,2'?0I0/4S++?ht3 -%5!C)Q4s4,R5!C)O4GYp0/4SR+?Vb/0/+MQ+>GYp0d'aE0/4S34>E%+>,Mo/i=bW+>5Gl1E\kF+?ht3 -%5!C)O4p(dT+?Vb/0/4S345Dk>9GXV+>k9I+>5Gl4?O`> -%0d&S@+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GXV+?(EK+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`&% -%0HaXD0/4S)+?ht35!C)Q4s2sM+>5Dk>9GXV+?1KL+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ -%+>GYp3?VTM0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0f'q,0HaXD0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0f'q,1*BjF0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht3 -%4?O`>0HaRB0f'q,1E]sG0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0f'q,1a$'H0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0f'q,2'?0I0/4S34>E%+>>E%+>,Mo>p(dT -%+>b3)4s3$Q+?ht34?O`>0HaRB0f'q,2BZ9J0/4S34>E%+>>E%+>,Mo>p(dT+>b3)4s3$Q+?ht3>p)p(dT+?Vb/0/4S34G\q -%1E]sG0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0f1"1+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%% -%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB0f1"3+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT+>P''4s3$Q -%+?ht34?O`>0HaRB0f1"4+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)p(dT+?Vb/ -%0/4S345Dk>9GXW+>GPm>p(dT+?Vb/0/4S345Dk>9GXW+>GVo>p(dT+?Vb/0/4S345Dk>9GXW+>GYp -%>p(dT+?Vb/0/4S345Dk>9GXW+>G\q>p(dT+?Vb/0/4S345Dk>9GXW+>G_r>p(dT+?Vb/0/+M245Gl1a"tG+?ht35!C)O -%45Dk4?O`>0HaRB/ho+=+>,E,+>,Mo>p(dT+>b3)4s3$Q+?ht3>p)p(dT+?Vb/0/4S34G_r1E]sG0/4S34,B(2'=M,2'=M,2'?0I0/4S++?ht35!C)Q4s2sM+>5Dk>9GXX+>b3H+>5Gl4?O`>0d&S@+>5Dk>9GOQ1,U1,1,U1, -%1,U1[+>5Gl1a"tG+?ht35!C)O4p(dT+?Vb/0/4S345Gl0d&YD+?ht35!C)O -%4p(dT+?Vb/0/4S345Gl1*AbE+?ht35!C)O4p(dT+?Vb/ -%0/4S345Dk>9GXX+?:QM+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H_u* -%+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+>G_r0ea_U+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H_u*+C-*R4s3$Q+?ht34?O`>0HaRB -%0f:(.1*BjF0/4S34,B(2'=M,2'=M/+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+>G_r0f1"Y+>5Gl4?O`>0d&S@ -%+>5Dk>9GOQ1,U1,1,U1,2'?0I0/4S++?ht35!C)Q4s4,R5!C)O4Gbs0/4SR+?Vb/0/+MQ+>Gbs0d'aE0/4S34>E%+>,Mo/i=bW+>5Gl1E\kF+?ht35!C)O4p(dT+?Vb/0/4S34p(dT -%+>b3)4s3$Q+?ht34?O`>0HaRB0fC.2+C-*C0d&S@+>5Gl4?O`>0HaRB/ho+=+>,E,+>,E,+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ -%+>Gbs2'?0I0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>Gbs2]uBK0/4S34>stream -/ -%0/+MQ+>>E%+>>E%+>>E%+C-*C0d&4o5!C)Q4s3$Q+?Vb/0/+MQ+>Gbs3$;KL0/4S34>E%+>>E%+>,Mo>p(dT -%+>b3)4s3$Q+?ht34?O`>0HaRB0fC.7+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1a"tG+?ht35!C)O45Gl4?O`>0HaRB0J5%%0J5%%/i=bW+?ht35!C)Q4s2sM+>5Dk>9GXY+>GVo>p(dT+?Vb/0/4S345Gl1a"tG+?ht35!C)O45Gl4?O`>0HaRB/ho+=+>,E,+>,Mo>p(dT+>b3) -%4s3$Q+?ht3>p)p(dT+?Vb/0/4S34,Mo>p)0H`)0+>5Gl>9H$j+>5Dk>9GX[+>G!E+>5Gl4?O`>0d&S@+>5Dk>9GOU+>,Mo/i=bW+?ht35!C)Q4s4,R5!C)p+?ht3 -%5!C)B1E\Fq5!C)Q4s3$Q+C-*C0d'[C4?O`>0H`%l5!C)O4G!&4s2sM+>5Dk1*AbE+?Vb/0/+M)+?ht3>p)5Po4?O`> -%0HaRB4?O`>0H`J?+>5Dk./s5H8-!&uEWBW!+>5Sp4?O`>0H_eCrr=2B>U]Y(!%n74!':0F!*oSQ!2:SM+;l:B+>=r@+UKh'0ENp3 -%0F9E@0F]]H0G,uR0L7B[0L[Zc0M*s.0S;'50S_?B0Ujbd0V'nh0VL1q0VpJ$0W?bD0]OkK0]t.X0_I-n0`*R%0`<^)rrN-'rsA]6 -%rso&Iru:t[s#pBf.3L8u+=R6h!*goP>6'!MUB%27(a'eP#VZT>$nr/F&24_N'`S:8"TJc-+TFP'>Q5Jm./s5h'He\E-7L&j -%1E\+Fs"FI-!ri]/%OiMR1a"Lq5!C)Q4s3$Q+?Vb/0/+M240FTWF0G#oPrs8Wds'$op0/=Xurr4)T+=/-W -%.3L9"+=R6h0EEj/rs\o;.3L9#+>P''4s3$Q+?ht3>p(dT+BosN4=p%4s2sM+>5Dk0d&YD+C-*R4s2L9+?Vb/0/+MQ+?Vb/ -%0/+M245Gl0et@8 -%+>5JmAmoLsAKWW^+D,%uF(HII1a$m\F_)[K2'=Y5/heD$2BX_,0H`#-+>GK&+>5\s0H`#/+>>E%+>5H'+>>E%+>5H(+>Ful0esk* -%+>5H*+>=ok0f1",+>5H,+>=ok0fC..+>5H.+>>E%+>5H/+EVXHAKWW\3?VpBCia/10/>4(FE2M8+>5K)+D,%uF(HII1,9ta@;L!r -%+>5K++D,%uF(HII1,L+c@;L!r+>5K-+D,%uF(HII1,^7e@;L!r+>5K/+EVXHAKWW]3$;gACia/10/>O1AmoLsAKWW^0H`%l0/G=* -%AmoLsAKWW^1*C1;Cia/10/GC,AmoLsAKWW^1a$C=Cia/10/GI.0d&,*2BX\+0H`#)2]sju0/GR11bp1,1H?R3+>5Q*+D,%uF(HII -%1bg+.+>5Q,+>=ok1c$7:4,Mo5!C)B1c-=1+>5Q/+>P&m1c?I8+>5Q1+>=ok1cQU3+>5Q3+>#<#0H`#+0H_r%/heD$2)-4- -%+>5T-+D,%uF(HII2)?@;45Dk0d&,(+BosC/heD%/heD%/heD%/heDR+?ht35!C)B2)HF< -%45Dk0d&,(+BosC/heD%/heD%/heD%/heDR+?ht35!C)B2)QL=45T1+EVXHAKWW`2]u^@Cia/10/Y^3FE2M8+>5T4+D,%uF(HII2D?7c@;L!r+>5W-+>=ok2DQC/+>5W/+>GK&+>5W0 -%+>b])+>5W1+>>E%+>5W2+Boso+>5W3+Boso+>5W4+>=ok2E;m6+>5Z-+>=ok2_cF3+>5Z/+>>E%+>5Z0+>>E%+>5Z1+D,%uF(HII -%2`2^i@;L!r+>5Z3+D,%uF(HII2`Dk$Eckq90/kj5FE2M8+>5Z6+?Vb/00)$802lS%E,9)^@;0V$+>5Dk4?O`>0H`(m0/4SR+>GK& -%+>GK&+>GK&+>>E%+C-*R4s3$Q+>5].+D,%uF(HII3&)O0+>5]0+>YW(+>5]1+>YW(+>5]2+D,%uF(HII3&Mg4+>5]4+?Vb/00)$8 -%02lS%E,9)QF`VYCD+8)FFEMV8+?ht30/tm50eb:60H`#.3$<<`F_)[Z4s3$Q+?ht3>p(dT+BosN4=p%4s4,R5!C)B2BY+E -%+>5Dk>9H$j+>5Dk4?O`>0H_eCrr?7':&o24EWBqV@/t*DAH6cO+94\-@K:HL@/tBLH2qOWDZFeXD#duEF9#Sq+>5Sp4?O`>0H`%l -%0/4S'/heD$1*A8'0H`#)+>>E%+>5Po0J5%%0/Xk+/heD$2BX^s0/k"./i"P&3$9mt00(.sEckq90/5.'2BXY-0d&4o0/54)1*A5) -%1E\@o0/5:+1H$j>+>5H,+EVXHAKWW\2BXV0+>5H.+Bos@3$9q.0H`)&1G^.Z+>5H/+BosB/heD%/heD%/heDR+>5H0+BosC/heD& -%/heD&/heDR+>5K(+>t>q1,0n`@;L!r+>5K*+>=ok1,C%b@;L!r+>5K,+>=ok1,U1.+>5K/+>7VHC`kAd2BZU?Cia/10/>L005bK? -%+>5K1+D,%uF(HII1GBq645N*+>Yo.0H`#)1*A\A+?ht30/GC,0H`#)1a"Ip0/GI.0H`#)2BXYjBl"nF1H-F1+>5N1+D,%u -%F(HII1H?R3+>5Q*+>P''4s3$Q+?ht3>p(dT+BosN4=p%4s4,R5!C)B3$:=G+>5Dk>9H$j+>5Dk4?O`>0d&S@+>5Dk>9Gm` -%1H$jF3AEE73&33I/hf.>2E;m>2D[6D3&r]O+?2,22_HdA1c@?:3&*0J/i,@B1cHO:1,1^?0Jt[F3?U:91,pmB2)R3L+?2,22_HdA -%1c@?:3&*0J/i,@B1cHO:1,1^?0Jt[F3?U:91,pmB2)R3L+?2,22_HdA1c@?:3&*0J/i,@B1cHO:0fUsA3&NNL3?U:91,pmB2)R3L -%+?2)81G1XE1c.383&*0J/i,@B1cHO:0fUsA3&NNL3?U:91,pmB2)R3L+?2)81G1XE1c.383&WQN/iYjG2BXt63&<0H2)I-M+?288 -%2D-sL0fC.60fUsA3&NNL3?U:>1H$jF3AEE73&*BK/iY^F1cZ[<2D[6D3&r]O+?2)81G1XE1c.383&WQN/iYjG2BXt70fL^=2)I3O -%+?2882D-sL0fC.61,1^?0Jt[F3?VTM5!C)B1*A\A+>5Dk0d&,)+BosC/heD%/heD%/heD&/heD"/i=b'1bL^B2DmB8>p(dZ+>Gi. -%0H`#.+>Gi.0H`PC+?ht35!C)p+?ht35!C)B0d&S@+>5Dk4?O`>0H`J?+>5Dk1*A5)+BosN40H_eCrr<-M+>5Gl./s5H2(9Y34s2sM+>5Dk./s6#!%B$D0d%nDrr=c&+?ht34?O`>0H_eCrrB/M+>5Gl./s5H1FXG14s4,R -%5!C)B0d&.m0/=Y(+>5Mn/i>UE+>5Po/i,:>+>5Sp/i>UE+>5Vq/i,:>+>5Yr/iOn+3$<<`F_)[K3?VNK4?O`>0H`%l0/4Rtrr4)\ -%.3L9!+=R6h+<;mR0/F_!rr4)X.3L9#+=R6h+;lUN5!C)O4Ful0d%nDru`=2+>5Jm./s5h*@W*a1E\+Fru`1.+>5Po./s5h -%)(?[l4s2sM+>5Dk1*A5)+=R6h!37Ok0/=Xurr2u1.3L9"+=R6h+;cOM0/Oe"rr4)Y.3Lf<+?Vb/0/+M)+>5Gl./s5HX!o/E1*A"E -%rrBY[+>5Mn./s5h(b$R\1a"4Gru`1.+?ht34?O`>0H`1p0/4Rtrr4)^.3L9!+=R6h+<2gQ0/F_!rr4)Z.3L9#+=R6h+;cOM5!C)O -%4k8p0d%nDru`@3+>5Jm./s5h*%5Po./s5h(b$Rk4s2sM+>5Dk2BXY-+=R6h!37Ok0/=Xurr2u1.3L9" -%+=R6h+?:kn0/Oe"rr4*%.3Lf<+?Vb/0/+M-+>5Gl./s5h*%5Mn./s5h(b$R\1a"4Gru`1.+?ht34?O`>0H`=t -%0/4Rtrr2u!.3L9!+=R6h!4s[&0/F_!rr4)X.3L9#+=R6h+;lUN5!C)O45Jm./s5H]."jU1E\+Fru`.- -%+>5Po./s5h)(?[l4s2sM+>5Dk0esk)0d%nDru`:1+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk0f'q*0d%nD -%ru`=2+>5Jm./s5h*@W*a1E\+Fru`1.+>5Po./s5h)(?[l4s2sM+>5Dk0f1"+0d%nDru`:1+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po -%./s5h)(?[l4s2sM+>5Dk0f:(,0d%nDru`:1+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk0fC.-0d%nDru`=2 -%+>5Jm./s5h*@W*a1E\+Fru`1.+>5Po./s5h)(?[l4s2sM+>5Dk0fU:/0d%nDrrB)K+>5Jm./s5H]."jU1E\+Fru`.-+>5Po./s5h -%)(?[l4s2sM+>5Dk1,9t*0d%nDru`@3+>5Jm./s5h*%5Po./s5h(b$Rk4s2sM+>5Dk1,C%+0d%nDru`@3+>5Jm -%./s5h*@W*a1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk1,U1-0d%nDrrB)K+>5Jm./s5H]."jU1E\+Frua5Po./s5h3[l18 -%4s2sM+>5Dk1,pC00d%nDru`@3+>5Jm./s5h*@W*a1E\+Fru`1.+>5Po./s5h)(?[l4s2sM+>5Dk1-$I10d%nDs"GHB+>5Jm./s6# -%*[r3q4s2sM+>5Dk1GBq)0d%nDs"Fj1+>5Jm./s6#%4ND`4s2sM+>5Dk0ea_'0d%nDru`:1+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po -%./s5h)(?[l4s2sM+>5Dk0eje(0d%nDru`:1+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk0fL4.0d%nDru`:1 -%+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk0f^@00d%nDrrB)K+>5Jm./s5H]."jU1E\+Fru`.-+>5Po./s5h -%)(?[l4s2sM+>5Dk1,'h(0d%nDru`@3+>5Jm./s5h*%5Po./s5h(b$Rk4s2sM+>5Dk1,0n)0d%nDru`@3+>5Jm -%./s5h*%5Po./s5h(b$Rk4s2sM+>5Dk1,L+,0d%nDru`@3+>5Jm./s5h*@W*a1E\+Fru`4/+>5Po./s5h)(?[l -%4s2sM+>5Dk1,^7.0d%nDru`:1+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk1,g=/0d%nDru`:1+>5Jm./s5h -%*@W*a1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk1GL"*0d%nDru`@3+>5Jm./s5h*%5Po./s5h)(?[l4s2sM -%+>5Dk1GU(+0d%nDru`:1+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk1G^.,0d%nDru`@3+>5Jm./s5h*%5Po./s5h(b$Rk4s2sM+>5Dk1Gg4-0d%nDrrB)K+>5Jm./s5H]."jU1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk -%1Gp:.0d%nDru`:1+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk1H$@/0d%nDru`@3+>5Jm./s5h*%5Po./s5h(b$Rk4s2sM+>5Dk1H-F00d%nDrrB)K+>5Jm./s5H]."jU1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk1H6L1 -%0d%nDru`@3+>5Jm./s5h*%5Po./s5h(b$Rk4s2sM+>5Dk1H?R20d%nDrrB)K+>5Jm./s5H]."jU1E\+Frr>/1 -%+>5Po./s5H4t.U<4s2sM+>5Dk1b^%*0d%nDru`@3+>5Jm./s5h*%5Po./s5h(b$Rk4s2sM+>5Dk1bg++0d%nD -%rrB)K+>5Jm./s5H]."jU1E\+Frr>/1+>5Po./s5H4t.U<4s2sM+>5Dk1bp1,0d%nDru`@3+>5Jm./s5h*%5Po -%./s5h(b$Rk4s2sM+>5Dk1c$7-0d%nDru`:1+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk1c-=.0d%nDrrB)K -%+>5Jm./s5H]."jU1E\+Frua5Po./s5h3[l184s2sM+>5Dk1c6C/0d%nDru`:1+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po./s5h -%)(?[l4s2sM+>5Dk1c?I?4s2sM+>5Dk1cHO@4s2sM+>5Dk1cQUA4s4,R0/51(2BXY-2'>"D+>5Dk./s5H8-!c4D?+_XDuaGLC]J9# -%+?ht30/5@-AmoLsAKX0#+>5Gl>9H$j+>5Dk4?O`>0H_eCrr>an5lad_9)q?[:B4Gr:&lC:;ZKbs=TD+q70"G17fZNh8H;-Y70!cG -%+>5Sp4?O`>0HaRB4?O`>0H`J?+>5Dk4?O`>0H_eCs!]'D2'>"D+>5Gl0J5%%0/=Y(/heD$1E\A(0H`#*+>>E%+>5Sp0J5%%0/G:) -%4?O`M4s2L70d&5+/iFh*1G^.-+>5N.+>=p%4s2L:+>=p%4s3$Q+>5Gl1,0n84s4,R5!C)B2BY+E+>5Dk>9H$j+>5Dk4?O`>0H`J? -%+>5Dk./s5q+>5Sp0H`#,+?Vb/0/+M&+>5Gl1c$a>+>5Vq0eP.&00(.//heD$2)?@;4Ful0d'[C0eP.&/ho=>1H?R11,(LE1*A2)2)%$M+C-*R4s3$Q+>5T1+EVXHAKWWa1a"M, -%/heD34s3$Q+?ht30/4S)0d&YD+C-*R4s2L50H`J?+>5Dk1a"G,+EVXHAKX0#+?ht30/4S34=p%4s4,R0/=YS -%+?Vb/00)$802P"Y0/Xk++>5Vq>9H$j+>5`8+>62,0/5.'0H`#&+?Vb/0/+MQ+?2)23%d!E2)I673&*BK/iY^F1cZ[a+?ht30/4SR -%+>>E%+>>E%+>ki4/i>FC0f'q.1G1F:0JXbV+>5Sp1*A5.+BosN45Gl>9GUP0H`&%0H`5,3%d'E2DI!11G^X=0JG7) -%>p(dY+BosN45Gl>9GUP0H`&%0H`5,3%d'E2DI!11G^X=0JG7)>p(dX+>P&m2BZ3H4?O`>3B8389HYuC0H`/*/iY[E -%1Gg4-0f1")1GpdE2)[-J+>5H,+?;&01c7!C+>5Dk4?O`>0HaRB0J5%%1GCF@1c.!F+C-*R4s2L5+BosB/heD"1GpdE2)[-J+>ki4 -%/i>FC0f'q4/i#7@+C-*C2BZ3H4?O`>3B838;]m_J2'>"D+>5Dk1,0n)1*A7n0/Xka@;L!r+?ht30/aqW+?Vb/00)$801R-<0d'[C -%0J5%%/Mf7:3&NTJ3$:(43%d$B2)$j03A*'D2'?0I0/XkV+>bu!1Gg430d&;0+>Yr!1cQU82BXh8+>Fur1*AG1+>l,$1c6C33$9pu -%1b^%01a"V1+>Yr!1H6L3+C-*C3$;EJ3&*0J/i,@B1cHO:0fM'E3&EEH2BXt;1H$jE2_[*D+?2,31G1[E1c$s2>p(d\+BosJ0et^@ -%1Gq$H2]t(72`NEL1c$mF+?28:1bLIB1,h-73&36F/ibaF1Gg4[+>5H(+EVXHAKWW\1*A/)2(gjG2D@*50/57*3A*'D2'=P-0H`%l -%5!C)p+?ht3>p)p)5Dk0d&,(+>GW(0H`#(+D,%uF(HII1E^:=ok3?U".0H`#'0H`&%0H`#'0d&1n0/54)0H`#'1E\@o0/5:+0H`#'2'=Rq -%0/5@-0H`#'2]se,0H`#'3$<<`F_)[K0f^@g@;L!r+>5K(+EVXHAKWW]0d((:Cia/10/>:*AmoLsAKWW]1E^:@,AmoLs -%AKWW]2'?L>Cia/10/>F.AmoLsAKWW]2^!3_F_)[K1,pCg@;L!r+>5K1+D,%uF(HII1GBq*+>5N*+D,%uF(HII1GU(b@;L!r+>5N, -%+D,%uF(HII1Gg4d@;L!r+>5N.+>Ful1H$@0/heD$1H-F3+>5N1+>bhr0/GU20H`#*0Hat9Cia/10/PC+1*A5,1*A7n0/PI-4?O`> -%0H_u*+?ht30/PL.1*A5,2'=Xs0/PR02]sb12]sds0/PX20H`#*3?Tn./heD$2)$.)0eP.&0/YI,0H`#+1*C1;Cia/10/YO.4?O`> -%3B838;e^)fCh6FOBl8#80/+M24Ful0d'[C0eP.&0J5%%0J5%%0J5%%>p)3B838;e^)fCh6FOBl8#8 -%0/+M24Ful0d'[C0eP.&0J5%%0J5%%0J5%%>p)3B8386U=:CAU&;`Ch7KpATAnW4s2L92B[*^F_)[K -%2)cXi@;L!r+>5T3+EVXHAKWW`3?VpBCia/10/bL,AmoLsAKWWa0d&.m0/bR.0H`#,1E\D)0H`#,1a"V-0H`#,2'=S*0H`#,2BZ3H -%>p(dY2]up(dY3$9mt0/bg50H`#-0H`%l0/kU.1a"G11*A8'0H`#-1E\A(0H`#-1a$C=Cia/10/ka2AmoLsAKWWb2BZU?Cia/1 -%0/kg4FE2M8+>5Z5+EVXHAKWWb3?UFH+>5`8+>6Z-D/a<&:gn'UF5Gl>9GXQ0H`)&0H`)&0H`&%0HaXD5!C)Q -%4s2L<0Hat9Cia/10/t[/0H`#.1*AA*0H`#.1E\J+0H`#.1a$C=Cia/10/tg30H`#.2BY+E+>5`8+>6Z-D/a<&6ZmHlDf%sT@5]5+>GQ(/heD$3&i%&Eckq95!C)B1E\eB+>5Dk0H`#'+>>E%+>5Jm0J5%%0/F_)/heD$1a"J)0H`#++>>E%+>5Vq0d&,. -%+>GK(+>5\s0H`#/+EVXHAKWW\0H`7r0/51(1*A5)1*A=p0/57*0H`#'1a"S4/heD$0f:(qEckq90/5@-/i=b)0fL4Z+>,Vr0eP.& -%0eP7<+C-*C0fU:[+>>E%+>>E%+>>E%+C-*C0f^@\+>GK&+>GK&+>GK&+C-*C1,'h/+>5K)+D,%uF(HII1,9t++>5K++D,%uF(HII -%1,L+-+>5K-+>=ok1,g=/DJF.AmoLsAKWW]3$9klBl"nF1-$Ih@;L!r+>5N)+?Vb/5!C)B1GL".2D-[+0/G@+4?O`M4s2L7 -%1E\@o0/GF-0H`#)2'=Rq0/GL/05bK?+>5N0+>=ok1H6Lh@;L!r+>5N2+>=ok1b^%-+?ht35!A~> -7891 7891 /RulerOrigin , -; -/AI11UndoFreeTextDocument : /ASCII85Decode , -%+>5`7+?Vb/0/+M-+?ht30/+M240/+M24=p%4s3$Q+?ht34?O`>0H`J?+>5`8+>6*#DerBuE+MLWDKI!S0H`J?+>5Dk./s5H9`TG= -%EWBeR@/sg5Jm0H`PC+?ht35!C)p+?ht30/Xk74kD -%!$D8/!,)@@!-/'J!+Q"N!+c.N!$D8?!-A3d!,MXH!*q#r0/aq84Ful0d&2+/heD$1*C1;Cia/10/F__@;L!r+>5PoFE2M8 -%+>5Sp1,gg>+>5Vq0eP.&0/k"./heD$3$9mt00(.//heD$0ea_(/heD$0eje*+>5H)+>=ok0f'q++>5H++>=ok0f:(-+>5H-+>=ok -%0fL4//heD$0fU:tEckq90/5I0AmoLsAKWW]0Hat9Cia/10/>7)AmoLsAKWW]1*C1;Cia/10/>=+AmoLsAKWW]1a$C=Cia/10/>C- -%AmoLsAKWW]2BZU?Cia/10/>I/AmoLsAKWW]3$;gACia/10/>O1AmoLsAKWW^0H`%l0/G=*AmoLsAKWW^1*C1;Cia/10/GC,AmoLs -%AKWW^1a$C=Cia/10/GI.0d&,*2BX\+0H`#)2]sju0/GR10H`#)3?U!u0/P@*AmoLsAKWW_0d&4o0/PF,0H`#*1E\eB+>5Dk/i=b8 -%4s2L81a"Or0/PO/1*A5,2BXq$0/PU10H`#*3$9mt0/P[3/MSk3+>5T++>#<#0H`#+0d&.m0/YL-AmoLsAKWW`1E\eB+>5`8+>6Z- -%D/a<&:gn'UF5Gl>9GXQ0H`&%0H`&%0H`&%0HaXD5!C)Q4s2L91a"nC+>5`8+>6Z-D/a<&:gn'UF5Gl>9GXQ0H`&%0H`&%0H`&%0HaXD5!C)Q4s2L92'>"D+>5`8+>6)J8Q98GF@'eTDId=!+?ht30/YX1FE2M8+>5T2+D,%u -%F(HII2)l_#Eckq90/Ya4AmoLsAKWWa0Hat9Cia/10/bO-0H`#,1*A7n0/bU/0eP.&0/bX01bLI)0/b[10J5%%0/b^2>9I2o0/ba3 -%>9I2o0/bd40H`#,3?U!u0/kR-0H`#-0d&:q0/kX/0J5%%0/k[00J5%%0/k^1AmoLsAKWWb2'?L>Cia/10/kd3AmoLsAKWWb2^!3_ -%F_)[K2`Mq%Eckq90/km64?O`>3B838;e^)fCh6FOBl8#80/+M24Ful0d'[C0eP.&0eP.&0eP.&0J5%%>p)3B838;e^)fCh5tVF*)>;7V-"MF`M%95!C)B -%3&_s70JG+5+>5]6+EVXHAKX0#+?ht35!C)p+>5Gl>9H$j+>5Dk0H`PC+C-*R4s2L:+?Vb/0/+MQ+?Vb/0/+M24kH!,)?T!)il>!-nQ\!+c.9.3L9$+?Vb/0/+M&+>5Gl0J5%%0/=Y(/heD$1E\A(0H`#* -%+>>E%+>5Sp0J5%%0/aq-+>5Yr0eP4(0/t(.+>5_tFE2M8+>5H'+>t>q0eje++>5H)+>P&m0f'q++>5H++>Yo.0H`#'2'@!]F_)[K -%0fC.,2'=P,2]up(dT3$;EJ0J5%%0J5%%0J5%%>p(dT3?VNK0eP.&0eP.&0eP.&>p(dU0H`7r0/>7)AmoLs -%AKWW]1*A7n0/>=+AmoLsAKWW]1a"Ip0/>C-0H`#(2]sbkBl"nF1,^7e@;L!r+>5K0+>7VHC`kAd3?VpBCia/10/G:)4?O`M4s2L7 -%0d&81/heD$1GU(845N,+>=ok1Gg4.+>5N.+>=ok1H$@/DJ0H`%l5!C)p+?ht35!C)B0d&S@+>5Dk4?O`>0H`J?+>5Dk0H`#'+BosN40H_eCrr<-M+>5Gl./s5H2(9Y34s2sM+>5Dk./s6#!%B$D0d%nDrr=c&+?ht34?O`>0H_eCrrB/M+>5Gl./s5H1FXG14s4,R -%5!C)B0d&.m0/=Y(+>5Mn/i>UE+>5Po/i,:>+>5Sp/i>UE+>5Vq/i,:>+>5Yr/iOn+3$<<`F_)[K3?VNK4?O`>0H`%l0/4Rtrr4)\ -%.3L9!+=R6h+<;mR0/F_!rr4)X.3L9#+=R6h+;lUN5!C)O4Ful0d%nDru`=2+>5Jm./s5h*@W*a1E\+Fru`1.+>5Po./s5h -%)(?[l4s2sM+>5Dk1*A5)+=R6h!37Ok0/=Xurr2u1.3L9"+=R6h+;cOM0/Oe"rr4)Y.3Lf<+?Vb/0/+M)+>5Gl./s5HX!o/E1*A"E -%rrBY[+>5Mn./s5h(b$R\1a"4Gru`1.+?ht34?O`>0H`1p0/4Rtrr4)^.3L9!+=R6h+<2gQ0/F_!rr4)Z.3L9#+=R6h+;cOM5!C)O -%4k8p0d%nDru`@3+>5Jm./s5h*%5Po./s5h(b$Rk4s2sM+>5Dk2BXY-+=R6h!37Ok0/=Xurr2u1.3L9" -%+=R6h+?:kn0/Oe"rr4*%.3Lf<+?Vb/0/+M-+>5Gl./s5h*%5Mn./s5h(b$R\1a"4Gru`1.+?ht34?O`>0H`=t -%0/4Rtrr2u!.3L9!+=R6h!4s[&0/F_!rr4)X.3L9#+=R6h+;lUN5!C)O45Jm./s5H]."jU1E\+Fru`.- -%+>5Po./s5h)(?[l4s2sM+>5Dk0esk)0d%nDru`:1+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk0f'q*0d%nD -%ru`=2+>5Jm./s5h*@W*a1E\+Fru`1.+>5Po./s5h)(?[l4s2sM+>5Dk0f1"+0d%nDru`:1+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po -%./s5h)(?[l4s2sM+>5Dk0f:(,0d%nDru`:1+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk0fC.-0d%nDru`=2 -%+>5Jm./s5h*@W*a1E\+Fru`1.+>5Po./s5h)(?[l4s2sM+>5Dk0fU:/0d%nDrrB)K+>5Jm./s5H]."jU1E\+Fru`.-+>5Po./s5h -%)(?[l4s2sM+>5Dk1,9t*0d%nDru`@3+>5Jm./s5h*%5Po./s5h(b$Rk4s2sM+>5Dk1,C%+0d%nDru`@3+>5Jm -%./s5h*@W*a1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk1,U1-0d%nDrrB)K+>5Jm./s5H]."jU1E\+Frua5Po./s5h3[l18 -%4s2sM+>5Dk1,pC00d%nDru`@3+>5Jm./s5h*@W*a1E\+Fru`1.+>5Po./s5h)(?[l4s2sM+>5Dk1-$I10d%nDs"GHB+>5Jm./s6# -%*[r3q4s2sM+>5Dk1GBq)0d%nDs"Fj1+>5Jm./s6#%4ND`4s2sM+>5Dk0ea_'0d%nDru`:1+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po -%./s5h)(?[l4s2sM+>5Dk0eje(0d%nDru`:1+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk0fL4.0d%nDru`:1 -%+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk0f^@00d%nDrrB)K+>5Jm./s5H]."jU1E\+Fru`.-+>5Po./s5h -%)(?[l4s2sM+>5Dk1,'h(0d%nDru`@3+>5Jm./s5h*%5Po./s5h(b$Rk4s2sM+>5Dk1,0n)0d%nDru`@3+>5Jm -%./s5h*%5Po./s5h(b$Rk4s2sM+>5Dk1,L+,0d%nDru`@3+>5Jm./s5h*@W*a1E\+Fru`4/+>5Po./s5h)(?[l -%4s2sM+>5Dk1,^7.0d%nDru`:1+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk1,g=/0d%nDru`:1+>5Jm./s5h -%*@W*a1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk1GL"*0d%nDru`@3+>5Jm./s5h*%5Po./s5h)(?[l4s2sM -%+>5Dk1GU(+0d%nDru`:1+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk1G^.,0d%nDru`@3+>5Jm./s5h*%5Po./s5h(b$Rk4s2sM+>5Dk1Gg4-0d%nDrrB)K+>5Jm./s5H]."jU1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk -%1Gp:.0d%nDru`:1+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk1H$@/0d%nDru`@3+>5Jm./s5h*%5Po./s5h(b$Rk4s2sM+>5Dk1H-F00d%nDrrB)K+>5Jm./s5H]."jU1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk1H6L1 -%0d%nDru`@3+>5Jm./s5h*%5Po./s5h(b$Rk4s2sM+>5Dk1H?R20d%nDrrB)K+>5Jm./s5H]."jU1E\+Frr>/1 -%+>5Po./s5H4t.U<4s2sM+>5Dk1b^%*0d%nDru`@3+>5Jm./s5h*%5Po./s5h(b$Rk4s2sM+>5Dk1bg++0d%nD -%rrB)K+>5Jm./s5H]."jU1E\+Frr>/1+>5Po./s5H4t.U<4s2sM+>5Dk1bp1,0d%nDru`@3+>5Jm./s5h*%5Po -%./s5h(b$Rk4s2sM+>5Dk1c$7-0d%nDru`:1+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk1c-=.0d%nDrrB)K -%+>5Jm./s5H]."jU1E\+Frua5Po./s5h3[l184s2sM+>5Dk1c6C/0d%nDru`:1+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po./s5h -%)(?[l4s2sM+>5Dk1c?I?4s2sM+>5Dk1cHO@4s2sM+>5Dk1cQUA4s4,R0/51(2BXY-2'>"D+>5Dk./s5H8-!c4D?+_XDuaGLC]J9# -%+?ht30/5@-AmoLsAKX0#+>5Jm4?O`>0H`(m0/4S(1+k7'0/=Y^@;L!r+>5MnAmoLsAKWW_+EVXHAKWW`+>Pl.0H`#,+>GK&+>5Yr -%0eP.&0/t(.+>5_t0J5%%0/5.'0J5%%0/51(0d&,(1*A7n0/57*0H`#'1a"Ip0/5=,0H`#'2BX[r0/5C.0J5%%0/5F/FE2M8+>5H0 -%+D,%uF(HII1,'h_@;L!r+>5K)+D,%uF(HII1,9ta@;L!r+>5K++D,%uF(HII1,L+c@;L!r+>5K-+D,%uF(HII1,^7e@;L!r+>5K/ -%+D,%uF(HII1,pCg@;L!r+>5K1+D,%uF(HII1GBq*+>5N*+D,%uF(HII1GU(b@;L!r+>5N,+D,%uF(HII1Gg4d@;L!r+>5N.+>Ful -%1H$@0/heD$1H-F3+>5N1+>=ok1H?R3+>5Q*+D,%uF(HII1bg+.+>5Q,+>=ok1c$7:4,Mo5!C)B1c-=1+>5Q/+>P&m1c?I8 -%+>5Q1+>=ok1cQU3+>5Q3+>#<#0H`#+0H_r%/heD$2)-4-+>5T-+D,%uF(HII2)?@;45Dk -%0d&,(+BosC/heD%/heD%/heD%/heDR+?ht35!C)B2)HF<45Dk0d&,(+BosC/heD%/heD% -%/heD%/heDR+?ht35!C)B2)QL=45T1+EVXHAKWW`2]u^@Cia/10/Y^3FE2M8+>5T4+D,%u -%F(HII2D?7c@;L!r+>5W-+>=ok2DQC/+>5W/+>GK&+>5W0+>b])+>5W1+>>E%+>5W2+Boso+>5W3+Boso+>5W4+>=ok2E;m6+>5Z- -%+>=ok2_cF3+>5Z/+>>E%+>5Z0+>>E%+>5Z1+D,%uF(HII2`2^i@;L!r+>5Z3+D,%uF(HII2`Dk$Eckq90/kj5FE2M8+>5Z6+?Vb/ -%00)$802lS%E,9)^@;0V$+>5Dk4?O`>0H`(m0/4SR+>GK&+>GK&+>GK&+>>E%+C-*R4s3$Q+>5].+D,%uF(HII3&)O0+>5]0+>YW( -%+>5]1+>YW(+>5]2+D,%uF(HII3&Mg4+>5]4+?Vb/00)$802lS%E,9)QF`VYCD+8)FFEMV8+?ht30/tm50eb:60H`#.3$<<`F_)[Z -%4s2L7+?Vb/0/+M&+>5Gl0J5%%0/=Y(/heD$1E\A(0H`#*+>>E%+>5Sp0J5%%0/aq-+>5Yr0eP4(0/t(.+>5_tFE2M8+>5H'+>t>q -%0eje++>5H)+>P&m0f'q++>5H++>Yo.0H`#'2'@!]F_)[K0fC.,2'=P,2]up(dT3$;EJ0J5%%0J5%%0J5%% -%>p(dT3?VNK0eP.&0eP.&0eP.&>p(dU0H`7r0/>7)AmoLsAKWW]1*A7n0/>=+AmoLsAKWW]1a"Ip0/>C-0H`#(2]sbkBl"nF1,^7e -%@;L!r+>5K0+>7VHC`kAd3?VpBCia/10/G:)4?O`M4s2L70d&81/heD$1GU(845N,+>=ok1Gg4.+>5N.+>=ok1H$@/DJ -; -%AI11_EndTextDocument -%%EndSetup -%AI5_BeginLayer -1 1 0 1 0 0 1 -1 136 192 208 0 50 0 Lb -(repository-hero) Ln -%_/ArtDictionary : -%_/XMLUID : (repository-hero) ; (AI10_ArtUID) , -%_; -%_ -1 A -0 Xw -0 A -u -1 A -1 Xw -/AI11Text : -0 /FreeUndo , -0 /FrameIndex , -0 /StoryIndex , -/Art : -X= -0 A -0 Xw -1 Ap -0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -745.3926 -321.3281 m -236.8555 -321.3281 L -236.8555 -288.1279 L -745.3926 -288.1279 L -745.3926 -321.3281 L -n -X+ -; /ConfiningPath , -2 /TextAntialiasing , -; - -%_/ArtDictionary : -%_/XMLUID : (headline-src_1_) ; (AI10_ArtUID) , -%_; -%_ -0 0 Xd -6 () XW -u -*u -0 Ap -0 O -0.808438 0.673884 0.495369 0.548699 0.180392 0.203922 0.25098 Xa -239.5776 -288.125 m -242.2993 -288.125 L -254.353 -316.8555 L -254.4395 -316.8555 L -266.3638 -288.125 L -269.0854 -288.125 L -269.0854 -318.9727 L -267.1846 -318.9727 L -267.1846 -290.458 L -267.0981 -290.458 L -255.3467 -318.9727 L -253.4458 -318.9727 L -241.5649 -290.458 L -241.4785 -290.458 L -241.4785 -318.9727 L -239.5776 -318.9727 L -239.5776 -288.125 l -f -*U -*u -285.7583 -288.125 m -297.9424 -318.9727 L -295.9116 -318.9727 L -292.0229 -309.0791 L -277.2476 -309.0791 L -273.3159 -318.9727 L -271.2852 -318.9727 L -283.6851 -288.125 L -285.7583 -288.125 l -f -1 D -291.4185 -307.4375 m -284.8081 -289.9824 L -284.7217 -289.9824 L -277.8525 -307.4375 L -291.4185 -307.4375 l -f -*U -*u -0 D -300.1431 -288.125 m -313.0176 -288.125 L -318.418 -288.125 322.7813 -290.1123 322.7813 -296.0742 c -322.7813 -300.2217 320.2754 -303.2891 316.1719 -303.9805 c -316.1719 -304.0674 L -320.752 -304.5859 321.875 -307.4805 322.1768 -310.6777 c -322.4785 -313.874 321.9609 -317.3301 323.2129 -318.9727 c -321.0957 -318.9727 L -319.9297 -316.8555 320.6211 -313.3125 320.2754 -310.332 c -319.8867 -307.3506 318.418 -304.9316 313.0176 -304.9316 c -302.0439 -304.9316 L -302.0439 -318.9727 L -300.1431 -318.9727 L -300.1431 -288.125 l -f -1 D -313.0176 -303.2891 m -317.5098 -303.2891 320.8809 -301.1719 320.8809 -296.2041 c -320.8809 -291.5381 317.166 -289.7676 313.0176 -289.7676 c -302.0439 -289.7676 L -302.0439 -303.2891 L -313.0176 -303.2891 l -f -*U -*u -0 D -327.3584 -288.125 m -329.2598 -288.125 L -329.2598 -305.8809 L -348.6582 -288.125 L -351.1211 -288.125 L -337.0361 -300.957 L -351.9844 -318.9727 L -349.6074 -318.9727 L -335.6533 -302.2529 L -329.2598 -308.085 L -329.2598 -318.9727 L -327.3584 -318.9727 L -327.3584 -288.125 l -f -*U -*u -353.8398 -288.125 m -363.9492 -288.125 L -374.9658 -288.125 378.2061 -295.6855 378.2061 -303.5059 c -378.2061 -312.2324 373.7568 -318.9727 363.8633 -318.9727 c -353.8398 -318.9727 L -353.8398 -288.125 l -f -1 D -355.7412 -317.3301 m -364.0361 -317.3301 L -369.7813 -317.3301 376.3057 -314.1768 376.3057 -303.5059 c -376.3057 -290.8906 368.2266 -289.7676 363.6465 -289.7676 c -355.7412 -289.7676 L -355.7412 -317.3301 l -f -*U -*u -0 D -395.96 -319.707 m -386.7148 -319.707 381.2715 -312.5781 381.2715 -303.5488 c -381.2715 -294.5195 386.7148 -287.3906 395.96 -287.3906 c -405.1631 -287.3906 410.6064 -294.5195 410.6064 -303.5488 c -410.6064 -312.5781 405.1631 -319.707 395.96 -319.707 c -f -1 D -395.96 -318.0654 m -403.9971 -318.0654 408.7051 -311.4551 408.7051 -303.5488 c -408.7051 -295.6426 403.9971 -289.0322 395.96 -289.0322 c -387.8809 -289.0322 383.1729 -295.6426 383.1729 -303.5488 c -383.1729 -311.4551 387.8809 -318.0654 395.96 -318.0654 c -f -*U -*u -0 D -411.6846 -288.125 m -413.6289 -288.125 L -421.6641 -316.9414 L -421.751 -316.9414 L -429.916 -288.125 L -432.292 -288.125 L -440.5879 -316.9414 L -440.6729 -316.9414 L -448.5801 -288.125 L -450.6104 -288.125 L -441.7539 -318.9727 L -439.5938 -318.9727 L -431.126 -289.7676 L -431.0391 -289.7676 L -422.7012 -318.9727 L -420.584 -318.9727 L -411.6846 -288.125 l -f -*U -*u -453.0693 -288.125 m -455.4453 -288.125 L -474.9307 -316.4238 L -475.0176 -316.4238 L -475.0176 -288.125 L -476.918 -288.125 L -476.918 -318.9727 L -474.6719 -318.9727 L -455.0566 -290.458 L -454.9707 -290.458 L -454.9707 -318.9727 L -453.0693 -318.9727 L -453.0693 -288.125 l -f -*U -*u -514.501 -296.9385 m -514.2852 -291.668 510.3105 -289.0322 504.6074 -289.0322 c -501.1074 -289.0322 496.1387 -290.501 496.1387 -295.5996 c -496.1387 -300.5674 501.4102 -301.3887 506.6377 -302.4688 c -511.9092 -303.5488 517.1797 -304.8887 517.1797 -311.0234 c -517.1797 -317.418 511.0449 -319.707 506.3359 -319.707 c -499.1201 -319.707 493.2441 -316.7266 493.3311 -308.7764 c -495.2324 -308.7764 L -494.8428 -315.5156 500.2441 -318.0654 506.3359 -318.0654 c -510.0518 -318.0654 515.2793 -316.3809 515.2793 -311.0234 c -515.2793 -305.7949 510.0078 -304.8887 504.7373 -303.8076 c -499.5098 -302.7285 494.2383 -301.4746 494.2383 -295.5996 c -494.2383 -289.6797 499.7246 -287.3906 504.6074 -287.3906 c -511.0449 -287.3906 516.0996 -290.1553 516.4023 -296.9385 C -514.501 -296.9385 l -f -*U -*u -518.2568 -289.7676 m -518.2568 -288.125 L -541.8887 -288.125 L -541.8887 -289.7676 L -531.002 -289.7676 L -531.002 -318.9727 L -529.1016 -318.9727 L -529.1016 -289.7676 L -518.2568 -289.7676 l -f -*U -*u -564.8721 -288.125 m -566.9893 -288.125 L -554.5898 -306.0547 L -554.5898 -318.9727 L -552.6895 -318.9727 L -552.6895 -306.0547 L -540.376 -288.125 L -542.5361 -288.125 L -553.6826 -304.4561 L -564.8721 -288.125 l -f -*U -*u -568.8008 -288.125 m -570.7021 -288.125 L -570.7021 -317.3301 L -588.1992 -317.3301 L -588.1992 -318.9727 L -568.8008 -318.9727 L -568.8008 -288.125 l -f -*U -*u -611.3545 -317.3301 m -611.3545 -318.9727 L -590.4014 -318.9727 L -590.4014 -288.125 L -611.1387 -288.125 L -611.1387 -289.7676 L -592.3018 -289.7676 L -592.3018 -302.123 L -610.0156 -302.123 L -610.0156 -303.7646 L -592.3018 -303.7646 L -592.3018 -317.3301 L -611.3545 -317.3301 l -f -*U -*u -653.3887 -303.8516 m -653.3887 -318.9727 L -651.7461 -318.9727 L -651.7461 -312.4053 L -651.6602 -312.4053 L -650.1484 -316.8984 645.4385 -319.707 639.9951 -319.707 c -630.6631 -319.707 625.4785 -312.5781 625.4785 -303.7217 c -625.4785 -294.9941 630.75 -287.3906 640.0381 -287.3906 c -646.3896 -287.3906 651.79 -291.2363 652.8701 -297.6729 c -651.0547 -297.6729 L -649.6299 -292.3594 645.6982 -289.0322 640.082 -289.0322 c -631.7441 -289.0322 627.3799 -296.0313 627.3799 -303.7217 c -627.3799 -311.584 631.6133 -318.0654 640.082 -318.0654 c -647.4258 -318.0654 652.0488 -313.0527 651.7461 -305.4932 c -640.3838 -305.4932 L -640.3838 -303.8516 L -653.3887 -303.8516 l -f -*U -*u -660.5146 -288.125 m -660.5146 -306.6162 L -660.5146 -310.332 661.291 -318.0654 670.1914 -318.0654 c -677.7529 -318.0654 680.3018 -313.6152 680.3018 -306.6162 c -680.3018 -288.125 L -682.2021 -288.125 L -682.2021 -306.6162 L -682.2021 -313.9609 679.4365 -319.707 670.1914 -319.707 c -659.2188 -319.707 658.6123 -310.7207 658.6123 -306.6162 c -658.6123 -288.125 L -660.5146 -288.125 l -f -*U -*u -687.6436 -288.125 m -689.5439 -288.125 L -689.5439 -318.9727 L -687.6436 -318.9727 L -687.6436 -288.125 l -f -*U -*u -694.9873 -288.125 m -705.0977 -288.125 L -716.1143 -288.125 719.3545 -295.6855 719.3545 -303.5059 c -719.3545 -312.2324 714.9043 -318.9727 705.0107 -318.9727 c -694.9873 -318.9727 L -694.9873 -288.125 l -f -1 D -696.8887 -317.3301 m -705.1836 -317.3301 L -710.9297 -317.3301 717.4531 -314.1768 717.4531 -303.5059 c -717.4531 -290.8906 709.375 -289.7676 704.7949 -289.7676 c -696.8887 -289.7676 L -696.8887 -317.3301 l -f -*U -*u -0 D -744.7549 -317.3301 m -744.7549 -318.9727 L -723.8018 -318.9727 L -723.8018 -288.125 L -744.5391 -288.125 L -744.5391 -289.7676 L -725.7021 -289.7676 L -725.7021 -302.123 L -743.416 -302.123 L -743.416 -303.7646 L -725.7021 -303.7646 L -725.7021 -317.3301 L -744.7549 -317.3301 l -f -*U -U -%_/ArtDictionary : -%_/XMLUID : (headline) ; (AI10_ArtUID) , -%_; -%_ -0 0 Xd -6 () XW -u -0 R -0.808438 0.673884 0.495369 0.548699 0.180392 0.203922 0.25098 XA -2 w 219.8647 -351.9219 m -762.3418 -351.9219 L -S -%_/ArtDictionary : -%_/XMLUID : (bottom) ; (AI10_ArtUID) , -%_; -%_ -219.8647 -257.5352 m -762.3418 -257.5352 L -S -%_/ArtDictionary : -%_/XMLUID : (top) ; (AI10_ArtUID) , -%_; -%_ -U -%_/ArtDictionary : -%_/XMLUID : (lines) ; (AI10_ArtUID) , -%_; -%_ -9 () XW -U -%_/ArtDictionary : -%_/XMLUID : (title) ; (AI10_ArtUID) , -%_; -%_ -9 () XW -u -1 Ap -200.0952 -361.7158 m -86.1191 -361.7158 L -86.1191 -247.7402 L -200.0952 -247.7402 L -200.0952 -361.7158 L -s -%_/ArtDictionary : -%_/XMLUID : (frame) ; (AI10_ArtUID) , -%_; -%_ -u -*u -0 Ap -0 O -0.808438 0.673884 0.495369 0.548699 0.180392 0.203922 0.25098 Xa -1 w 147.3188 -326.6514 m -168.2349 -283.9805 L -170.252 -283.9805 L -191.1675 -326.6514 L -189.4038 -326.6514 L -169.2441 -285.4922 L -149.0835 -326.6514 L -147.3188 -326.6514 l -f -%_/ArtDictionary : -%_(-1.570796) /String (BBAccumRotation) , -%_; -%_ -*U -%_/ArtDictionary : -%_/XMLUID : (character) ; (AI10_ArtUID) , -%_; -%_ -*u -137.7192 -326.6514 m -95.0474 -305.7354 L -95.0474 -303.7197 L -137.7192 -282.8047 L -137.7192 -284.5684 L -96.5591 -304.7275 L -137.7192 -324.8877 L -137.7192 -326.6514 l -f -*U -%_/ArtDictionary : -%_/XMLUID : (code) ; (AI10_ArtUID) , -%_; -%_ -U -%_/ArtDictionary : -%_/XMLUID : (sticker) ; (AI10_ArtUID) , -%_; -%_ -9 () XW -U -%_/ArtDictionary : -%_/XMLUID : (box) ; (AI10_ArtUID) , -%_; -%_ -9 () XW -LB -%AI5_EndLayer-- -%%PageTrailer -gsave annotatepage grestore showpage -%%Trailer -%%EOF - -endstream endobj 5 0 obj <> endobj 6 0 obj <> endobj 30 0 obj <> endobj 31 0 obj <> endobj 54 0 obj <> endobj 55 0 obj <> endobj 78 0 obj <> endobj 99 0 obj <> endobj 107 0 obj [/View/Design] endobj 108 0 obj <>>> endobj 86 0 obj [/View/Design] endobj 87 0 obj <>>> endobj 65 0 obj [/View/Design] endobj 66 0 obj <>>> endobj 63 0 obj [/View/Design] endobj 64 0 obj <>>> endobj 41 0 obj [/View/Design] endobj 42 0 obj <>>> endobj 39 0 obj [/View/Design] endobj 40 0 obj <>>> endobj 17 0 obj [/View/Design] endobj 18 0 obj <>>> endobj 15 0 obj [/View/Design] endobj 16 0 obj <>>> endobj 121 0 obj [120 0 R] endobj 140 0 obj <> endobj xref -0 141 -0000000004 65535 f -0000000016 00000 n -0000000263 00000 n -0000040036 00000 n -0000000007 00000 f -0000474386 00000 n -0000474495 00000 n -0000000009 00000 f -0000040087 00000 n -0000000010 00000 f -0000000011 00000 f -0000000012 00000 f -0000000013 00000 f -0000000014 00000 f -0000000019 00000 f -0000475988 00000 n -0000476019 00000 n -0000475872 00000 n -0000475903 00000 n -0000000020 00000 f -0000000021 00000 f -0000000022 00000 f -0000000023 00000 f -0000000024 00000 f -0000000025 00000 f -0000000026 00000 f -0000000027 00000 f -0000000028 00000 f -0000000029 00000 f -0000000032 00000 f -0000474598 00000 n -0000474705 00000 n -0000000033 00000 f -0000000034 00000 f -0000000035 00000 f -0000000036 00000 f -0000000037 00000 f -0000000038 00000 f -0000000043 00000 f -0000475756 00000 n -0000475787 00000 n -0000475640 00000 n -0000475671 00000 n -0000000044 00000 f -0000000045 00000 f -0000000046 00000 f -0000000047 00000 f -0000000048 00000 f -0000000049 00000 f -0000000050 00000 f -0000000051 00000 f -0000000052 00000 f -0000000053 00000 f -0000000056 00000 f -0000474806 00000 n -0000474913 00000 n -0000000057 00000 f -0000000058 00000 f -0000000059 00000 f -0000000060 00000 f -0000000061 00000 f -0000000062 00000 f -0000000067 00000 f -0000475524 00000 n -0000475555 00000 n -0000475408 00000 n -0000475439 00000 n -0000000068 00000 f -0000000069 00000 f -0000000070 00000 f -0000000071 00000 f -0000000072 00000 f -0000000073 00000 f -0000000074 00000 f -0000000075 00000 f -0000000076 00000 f -0000000077 00000 f -0000000079 00000 f -0000475014 00000 n -0000000080 00000 f -0000000081 00000 f -0000000082 00000 f -0000000083 00000 f -0000000084 00000 f -0000000085 00000 f -0000000088 00000 f -0000475292 00000 n -0000475323 00000 n -0000000089 00000 f -0000000090 00000 f -0000000091 00000 f -0000000092 00000 f -0000000093 00000 f -0000000094 00000 f -0000000095 00000 f -0000000096 00000 f -0000000097 00000 f -0000000098 00000 f -0000000000 00000 f -0000475093 00000 n -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000475174 00000 n -0000475206 00000 n -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000046742 00000 n -0000476104 00000 n -0000040429 00000 n -0000047056 00000 n -0000046942 00000 n -0000045778 00000 n -0000046177 00000 n -0000046227 00000 n -0000046824 00000 n -0000046856 00000 n -0000047132 00000 n -0000047426 00000 n -0000048516 00000 n -0000053539 00000 n -0000119129 00000 n -0000184719 00000 n -0000250309 00000 n -0000315899 00000 n -0000381489 00000 n -0000447079 00000 n -0000476131 00000 n -trailer -<<153CEA2003ABA948BDC366F15031E9E3>]>> -startxref -476373 -%%EOF diff --git a/assets/images/repository-hero.svg b/assets/images/repository-hero.svg deleted file mode 100644 index 38ae18a..0000000 --- a/assets/images/repository-hero.svg +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/changelog.md b/changelog.md new file mode 100644 index 0000000..aa7f3cc --- /dev/null +++ b/changelog.md @@ -0,0 +1,302 @@ +

+ + + + + +

+ +

+ + + + + + +

+ +

+ + + +

+ + + +# 0.4.0 + +![Release Date: 2021-04-06](https://img.shields.io/static/v1?style=flat-square&label=Release%20Date&message=2021-04-06&colorA=4c566a&colorB=88c0d0) [![Project Board](https://img.shields.io/static/v1?style=flat-square&label=Project%20Board&message=0.4.0&logo=github&logoColor=eceff4&colorA=4c566a&colorB=88c0d0)](https://github.com/users/svengreb/projects/10) [![Milestone](https://img.shields.io/static/v1?style=flat-square&label=Milestone&message=0.4.0&logo=github&logoColor=eceff4&colorA=4c566a&colorB=88c0d0)](https://github.com/svengreb/styleguide-markdown/milestones/3) + +⇅ [Show all commits][9] + +This version changes this repository into a [monorepo][32] [^1], deprecates the [remark-preset-lint-arcticicestudio][8] package in favour of the new [@arcticicestudio/remark-preset-lint][25] package and adds support for [remark `13.0.0`][23]. + +## Feature + +
+Monorepo with remark packages — #10 ⇄ #12 (⊶ 0c21fabc) + +↠ Before this change this repository only contained the actual style guide documentation while specific projects that implement the guidelines for linters and code style analyzer lived in separate repositories. This was the best approach for modularity and a small and clear code base, but it increased the maintenance overhead by `1(n)` since changes to the development workflow or toolbox, general project documentations as well as dependency management required changes in every repository with dedicated tickets/issues and PRs. In particular, Node packages require frequent dependency management due to their fast development cycles to keep up-to-date with the latest package changes like (security) bug fixes. + +This style guide was implemented by the [remark-preset-lint-arcticicestudio][8] Node package that lived in its own repository. The development workflow was clean using most of GitHub's awesome features like project boards, _codeowner_ assignments, issue & PR automation and so on, but changes often required multiple actions when packages depend on each other or they use the same development tooling and documentation standards. + +### Monorepo Comparison + +[Monorepos][32] [^1] are a fantastic way to manage such a project structure, but there are also some points that must be taken into account: + +- **No more scoped code** — the developer experience with Git is slightly worse because commits can contains changes to multiple scopes of the code. Since there is only a “transparent separation” of code, that was previously located in a dedicated repository but is not aggregated into a parent (e.g. `packages`) with other modules, commits can now contain changes to multiple code scopes spread over the entire code base. +- **No more assignment of commits to single modules** — like described in the bullet point above, commit can contain changes to multiple modules, it is harder to detect which commit targeted a specific module. +- **Steeper learning curve for new contributors** — in a dedicated repository that only hosts a specific module it is easier for new developers to contribute to the project, but in a monorepo they might need to change code in multiple places within other modules or the root code/documentation of the entire project. +- **Uniform version number** — in order to keep conform to [SemVer][29], the entire project must use a uniform version number. This means that a module that has not been changed since the last version must also be incremented in order to keep compatible with the other modules. + Using different version numbers prefixed/suffixed with an individual version number **is a not an option**, **increases the maintenance overhead** and **and drastically reduces the project overview and quality**! This would result in multiple Git tags on the `main` branch as well as “empty” changelogs and release notes with placeholder logs that only refer to changes of other modules. + +### Project Future + +Even though a _monorepo_ required some special thoughts, it also comes with a lot of benefits and makes sense **for specific project modules that are slightly coupled** and where using dedicated repositories only increases the maintenance overhead **when changes must be reflected in multiple modules anyway**. + +In order to reduce the maintenance overhead, the [remark-preset-lint-arcticicestudio][8] Node package has been migrated into this repository by adapting to [Yarn workspaces][33]. This simplifies the development tooling setup and allows to use a unified documentation base as well as a smoother development and testing workflow. + +This change also implies that the root of the repository is the main package for the entire project setup including shared development dependencies, tools and documentations while the packages only contain specific configurations and (dev)dependencies. + +### Scoped Packages + +Before [remark-preset-lint-arcticicestudio][8] was not a [scoped package][27] but suffixed with `-arcticicestudio`. To simplify the naming and improving the usage of user/organization specific packages, it is now scoped to `@arcticicestudio` resulting in the new name `@arcticicestudio/remark-preset-lint`. +The currently released public version has been deprecated using the [`npm deprecate` command][26] where the provided message points out to migrate to the new scoped packages. + +### Versioning + +The style guide itself and all packages use a shared/fixed/locked version. This helps all packages to keep in sync and ensure the compatibility with the latest style guide version. + +
+ +
+Update to remark 13.0.0 (micromark) — #28 ⇄ #29 (⊶ 9ff968f6) + +

+ + + + +

+ +↠ [remark 13.0.0][23] is a giant change for remark that replaced the 5+ year old internals with a new low-level parser called [micromark][12]. It comes with 100% CommonMark (and GFM as an extension) compliance and is a good base for the future of remark and Markdown. + +### Migration + +This projects uses remark through the [remark-lint][21] plugin, which introduced support for remark `13.0.0` in its [package version `8.0.0`][17], and the [remark-cli][24] package, which comes with support for remark `13.0.0` in its [package version `9.0.0`][22]. + +- **Updated `remark-cli`** — bumped minimum version from [`5.0.0` to `9.0.0`][13] +- **Updated `remark-lint`** — bumped minimum version from [`6.0.1` to `8.0.0`][16] +- **Updated all `remark-lint-*` packages** — the [`@arcticicestudio/remark-preset-lint`][25] packages supports all `remark-lint-*` core rule packages whose minimum versions are now bumped to the major version that introduced support for remark `13.0.0`. +- **Added [`remark-gfm` plugin][15]** — the support for [GitHub Flavored Markdown][1] has been moved into the `remark-gfm` plugin. +- **Added [`remark-footnotes` plugin][14]** — adds support for [Pandoc][28] footnotes. +- **Validated the code base with new linter rules** — Run checks with updated packages afterwards to fix and improve results found by linters. + +### Features + +Because most package versions that are currently used were not up-to-date before, support for new features like core rules has also been added: + +- **Support for [`remark-lint-no-duplicate-defined-urls`][18]** — the core rule warns when definitions define the same URL. +- **Support for [`remark-lint-no-unneeded-full-reference-image`][19]** — the core rule warns when full reference images are used that could be collapsed. +- **Support for [`remark-lint-no-unneeded-full-reference-link`][20]** — the core rule warns when full reference links are used that could be collapsed. + +
+ +## Improvements + +
+Plain text format for license file — #6 (⊶ a6f53c13) by @amayer5125 + +↠ Refactored the `LICENSE.md` file to use plain text instead of Markdown syntax and removed the `.md` file extension leaving the file named as `LICENSE`. +Therefore the linting ignore statements have also been removed as well as adjusting the actual text to match exactly the one of the [MIT license][7]. +This allows GitHub to display “MIT“ as the license instead of just showing a “View license“ placeholder text. + +
+ +
+“tmpl“ template repository migration — #11 ⇄ #13 (⊶ 47660393) + +

+ + + + + +

+ +↠ Migrated the project setup, structure and development workflow [from version 0.9.0][30] of the [“tmpl“ template repository][31]. +Additionally specific assets like the repository hero image have been replaced and documentations like the _README_ and GitHub issue/PR templates adjusted. + +
+ +## Bug Fixes + +
+Invalid list entry character in documentation summary — #5 (⊶ 2fe4ad65) by @amayer5125 + +↠ Changed the invalid list entry character from `*` to `-` in the summary of the documentation to adhere to the style guide and fix failing CI builds. + +
+ +## Tasks + +
+Update remark URLs to reflect mastermain branch renaming — #7 (⊶ 23130286) by @outloudvi + +↠ Updated the default branch name from `master` to `main` which is a global change due to recent humanity movements. Also see #21 (or the entry in this version changelog) for more details about how this projects also adapted this change. + +
+ +
+GitHub Flow migration — #19 ⇄ #20 (⊶ cf6f3fa2) + +

+ + + +

+ +> Subtask of svengreb/styleguide-git#9 + +↠ Adapted to [GitHub Flow][11] like documented in detail in the main task issue svengreb/styleguide-git#9. + +
+ +
+From master to main — #21 ⇄ #22 (⊶ c7946f2e) + +

+ + + +

+ +> Subtask of svengreb/styleguide-git#11 + +↠ Adapted to the [default branch renaming from `master` to `main`][10] like documented in detail in the main task issue svengreb/styleguide-git#11. + +
+ +# 0.2.0 + +![Release Date: 2018-11-15](https://img.shields.io/static/v1?style=flat-square&label=Release%20Date&message=2018-11-15&colorA=4c566a&colorB=88c0d0) [![Project Board](https://img.shields.io/static/v1?style=flat-square&label=Project%20Board&message=0.2.0&logo=github&logoColor=eceff4&colorA=4c566a&colorB=88c0d0)](https://github.com/users/svengreb/projects/10) [![Milestone](https://img.shields.io/static/v1?style=flat-square&label=Milestone&message=0.2.0&logo=github&logoColor=eceff4&colorA=4c566a&colorB=88c0d0)](https://github.com/svengreb/styleguide-markdown/milestones/2) + +⇅ [Show all commits][6] + +## Improvements + +### Rules + +
+Change unordered marker from asterisk to dash — #3 ⇄ #4 (⊶ fea20a63) + +↠ Changed [unordered list marker][5] from asterisk `*` to dash `-` because asterisks can be confused for bold/italic markers. This also aligns with the default format of Prettier. + +
+ +# 0.1.0 + +![Release Date: 2018-02-15](https://img.shields.io/static/v1?style=flat-square&label=Release%20Date&message=2018-02-15&colorA=4c566a&colorB=88c0d0) [![Project Board](https://img.shields.io/static/v1?style=flat-square&label=Project%20Board&message=0.1.0&logo=github&logoColor=eceff4&colorA=4c566a&colorB=88c0d0)](https://github.com/users/svengreb/projects/10) [![Milestone](https://img.shields.io/static/v1?style=flat-square&label=Milestone&message=0.1.0&logo=github&logoColor=eceff4&colorA=4c566a&colorB=88c0d0)](https://github.com/svengreb/styleguide-markdown/milestones/1) + +⇅ [Show all commits][4] + +## Features + +### Rules + +
+Change unordered marker from asterisk to dash — #1 ⇄ #2 (⊶ 261fe4cb) + +↠ Added the initial style guide with the [comprehensive base rule set][3] with support for [GitHub Flavored Markdown][1] which is based on the [CommonMark][2] specification. + +
+ +

+ + + + + +

+ +

+ Copyright © 2016-present Sven Greb +

+ +

+ + + + + + +

+ + + + + + + +[1]: https://github.github.com/gfm +[2]: http://commonmark.org +[3]: https://github.com/svengreb/styleguide-markdown/blob/main/rules/index.md + + + +[4]: https://github.com/svengreb/styleguide-markdown/compare/e894a349...v0.1.0 + + + +[5]: https://github.com/svengreb/styleguide-markdown/blob/main/rules/lists.md#unordered-marker +[6]: https://github.com/svengreb/styleguide-markdown/compare/v0.1.0...v0.2.0 + + + +[7]: https://choosealicense.com/licenses/mit +[8]: https://www.npmjs.com/package/remark-preset-lint-arcticicestudio +[9]: https://github.com/svengreb/styleguide-markdown/compare/v0.2.0...v0.4.0 +[10]: https://github.com/github/renaming +[11]: https://guides.github.com/introduction/flow +[12]: https://github.com/micromark/micromark +[13]: https://github.com/remarkjs/remark/compare/remark-cli@5.0.0...remark-cli@9.0.0 +[14]: https://github.com/remarkjs/remark-footnotes +[15]: https://github.com/remarkjs/remark-gfm +[16]: https://github.com/remarkjs/remark-lint/compare/6.0.0...8.0.0 +[17]: https://github.com/remarkjs/remark-lint/releases/tag/8.0.0 +[18]: https://github.com/remarkjs/remark-lint/tree/main/packages/remark-lint-no-duplicate-defined-urls +[19]: https://github.com/remarkjs/remark-lint/tree/main/packages/remark-lint-no-unneeded-full-reference-image +[20]: https://github.com/remarkjs/remark-lint/tree/main/packages/remark-lint-no-unneeded-full-reference-link +[21]: https://github.com/remarkjs/remark-lint +[22]: https://github.com/remarkjs/remark/releases/tag/remark-cli%409.0.0 +[23]: https://github.com/remarkjs/remark/releases/tag/13.0.0 +[24]: https://github.com/remarkjs/remark +[25]: https://www.npmjs.com/package/@arcticicestudio/remark-preset-lint +[26]: https://docs.npmjs.com/cli/deprecate +[27]: https://docs.npmjs.com/about-scopes +[28]: https://pandoc.org +[29]: https://semver.org +[30]: https://github.com/svengreb/tmpl/releases/tag/v0.9.0 +[32]: https://monorepo.tools +[31]: https://github.com/svengreb/tmpl +[33]: https://yarnpkg.com/en/docs/workspaces + + + +[^1]: https://trunkbaseddevelopment.com/monorepos diff --git a/LICENSE b/license similarity index 84% rename from LICENSE rename to license index a9aae83..996f8fb 100644 --- a/LICENSE +++ b/license @@ -1,7 +1,6 @@ -MIT License +MIT License (MIT) -Copyright (c) 2018-present Arctic Ice Studio (https://www.arcticicestudio.com) -Copyright (c) 2018-present Sven Greb (https://www.svengreb.de) +Copyright (c) 2016-present Sven Greb (https://www.svengreb.de) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/lint-staged.config.js b/lint-staged.config.js index 7ffb8a0..005de26 100644 --- a/lint-staged.config.js +++ b/lint-staged.config.js @@ -1,16 +1,15 @@ /* - * Copyright (c) 2018-present Arctic Ice Studio - * Copyright (c) 2018-present Sven Greb - * This source code is licensed under the MIT license found in the LICENSE file. + * Copyright (c) 2016-present Sven Greb + * This source code is licensed under the MIT license found in the license file. */ /** * Configurations for lint-staged. - * * @see https://github.com/okonet/lint-staged#configuration */ module.exports = { - "*.{css,html,js,json,yaml,yml}": "prettier --check", - "*.js": ["eslint", "prettier --check"], - "*.md": ["remark --no-stdout", "prettier --check"], + "*.json": "prettier --check --ignore-unknown --no-editorconfig", + "*.js": ["eslint", "prettier --check --ignore-unknown --no-editorconfig"], + "*.md": ["remark --no-stdout", "prettier --check --ignore-unknown --no-editorconfig"], + ".husky/pre-*": "prettier --check --ignore-unknown --no-editorconfig", }; diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 0000000..4109f84 --- /dev/null +++ b/package-lock.json @@ -0,0 +1,9313 @@ +{ + "name": "@svengreb/styleguide-markdown", + "version": "0.4.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "@svengreb/styleguide-markdown", + "version": "0.4.0", + "license": "MIT", + "workspaces": [ + "packages/@svengreb/*" + ], + "devDependencies": { + "@arcticicestudio/eslint-config-base": ">=0.11.0 <1.0.0", + "eslint": "8.39.0", + "eslint-config-prettier": "8.8.0", + "eslint-plugin-import": "2.27.5", + "eslint-plugin-prettier": "4.2.1", + "husky": "8.0.3", + "lint-staged": "13.2.1", + "npm-run-all": "4.1.5", + "prettier": "2.8.7", + "prettier-plugin-sh": "0.12.8", + "remark-cli": "10.0.1" + }, + "engines": { + "node": ">=15.13", + "npm": ">=7.7" + } + }, + "node_modules/@arcticicestudio/eslint-config-base": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/@arcticicestudio/eslint-config-base/-/eslint-config-base-0.11.0.tgz", + "integrity": "sha512-wt2a0xbxKZ7T500bmWBHN1JHy3xMSBbpf8CLxMB3yfD25zWRmpDo5sWYMNP7XY7+aCamWJ/xg+/d8b/ue9b7iA==", + "dev": true, + "dependencies": { + "confusing-browser-globals": "^1.0.10" + }, + "peerDependencies": { + "eslint": "^7.23.0", + "eslint-config-prettier": "^8.1.0", + "eslint-plugin-import": "^2.22.1", + "eslint-plugin-prettier": "^3.3.1" + } + }, + "node_modules/@babel/code-frame": { + "version": "7.21.4", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.21.4.tgz", + "integrity": "sha512-LYvhNKfwWSPpocw8GI7gpK2nq3HSDuEPC/uSYaALSJu9xjsalaaYFOq0Pwt5KmVqwEbZlDu81aLXwBOmD/Fv9g==", + "dev": true, + "dependencies": { + "@babel/highlight": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.19.1", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz", + "integrity": "sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/highlight": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz", + "integrity": "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==", + "dev": true, + "dependencies": { + "@babel/helper-validator-identifier": "^7.18.6", + "chalk": "^2.0.0", + "js-tokens": "^4.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/highlight/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/highlight/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/highlight/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/@babel/highlight/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "dev": true + }, + "node_modules/@babel/highlight/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "dev": true, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/@babel/highlight/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/highlight/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@eslint-community/eslint-utils": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", + "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", + "dev": true, + "dependencies": { + "eslint-visitor-keys": "^3.3.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" + } + }, + "node_modules/@eslint-community/regexpp": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.5.0.tgz", + "integrity": "sha512-vITaYzIcNmjn5tF5uxcZ/ft7/RXGrMUIS9HalWckEOF6ESiwXKoMzAQf2UW0aVd6rnOeExTJVd5hmWXucBKGXQ==", + "dev": true, + "engines": { + "node": "^12.0.0 || ^14.0.0 || >=16.0.0" + } + }, + "node_modules/@eslint/eslintrc": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.0.2.tgz", + "integrity": "sha512-3W4f5tDUra+pA+FzgugqL2pRimUTDJWKr7BINqOpkZrC0uYI0NIc0/JFgBROCU07HR6GieA5m3/rsPIhDmCXTQ==", + "dev": true, + "dependencies": { + "ajv": "^6.12.4", + "debug": "^4.3.2", + "espree": "^9.5.1", + "globals": "^13.19.0", + "ignore": "^5.2.0", + "import-fresh": "^3.2.1", + "js-yaml": "^4.1.0", + "minimatch": "^3.1.2", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/@eslint/js": { + "version": "8.39.0", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.39.0.tgz", + "integrity": "sha512-kf9RB0Fg7NZfap83B3QOqOGg9QmD9yBudqQXzzOtn3i4y7ZUXe5ONeW34Gwi+TxhH4mvj72R1Zc300KUMa9Bng==", + "dev": true, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, + "node_modules/@humanwhocodes/config-array": { + "version": "0.11.8", + "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.8.tgz", + "integrity": "sha512-UybHIJzJnR5Qc/MsD9Kr+RpO2h+/P1GhOwdiLPXK5TWk5sgTdu88bTD9UP+CKbPPh5Rni1u0GjAdYQLemG8g+g==", + "dev": true, + "dependencies": { + "@humanwhocodes/object-schema": "^1.2.1", + "debug": "^4.1.1", + "minimatch": "^3.0.5" + }, + "engines": { + "node": ">=10.10.0" + } + }, + "node_modules/@humanwhocodes/module-importer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", + "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", + "dev": true, + "engines": { + "node": ">=12.22" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" + } + }, + "node_modules/@humanwhocodes/object-schema": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz", + "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==", + "dev": true + }, + "node_modules/@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "dev": true, + "dependencies": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "dev": true, + "dependencies": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@pkgr/utils": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/@pkgr/utils/-/utils-2.3.1.tgz", + "integrity": "sha512-wfzX8kc1PMyUILA+1Z/EqoE4UCXGy0iRGMhPwdfae1+f0OXlLqCk+By+aMzgJBzR9AzS4CDizioG6Ss1gvAFJw==", + "dev": true, + "dependencies": { + "cross-spawn": "^7.0.3", + "is-glob": "^4.0.3", + "open": "^8.4.0", + "picocolors": "^1.0.0", + "tiny-glob": "^0.2.9", + "tslib": "^2.4.0" + }, + "engines": { + "node": "^12.20.0 || ^14.18.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/unts" + } + }, + "node_modules/@svengreb/remark-preset-lint": { + "resolved": "packages/@svengreb/remark-preset-lint", + "link": true + }, + "node_modules/@types/concat-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@types/concat-stream/-/concat-stream-2.0.0.tgz", + "integrity": "sha512-t3YCerNM7NTVjLuICZo5gYAXYoDvpuuTceCcFQWcDQz26kxUR5uIWolxbIR5jRNIXpMqhOpW/b8imCR1LEmuJw==", + "dev": true, + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/debug": { + "version": "4.1.7", + "resolved": "https://registry.npmjs.org/@types/debug/-/debug-4.1.7.tgz", + "integrity": "sha512-9AonUzyTjXXhEOa0DnqpzZi6VHlqKMswga9EXjpXnnqxwLtdvPPtlO8evrI5D9S6asFRCQ6v+wpiUKbw+vKqyg==", + "dev": true, + "dependencies": { + "@types/ms": "*" + } + }, + "node_modules/@types/is-empty": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@types/is-empty/-/is-empty-1.2.1.tgz", + "integrity": "sha512-a3xgqnFTuNJDm1fjsTjHocYJ40Cz3t8utYpi5GNaxzrJC2HSD08ym+whIL7fNqiqBCdM9bcqD1H/tORWAFXoZw==", + "dev": true + }, + "node_modules/@types/js-yaml": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/@types/js-yaml/-/js-yaml-4.0.5.tgz", + "integrity": "sha512-FhpRzf927MNQdRZP0J5DLIdTXhjLYzeUTmLAu69mnVksLH9CJY3IuSeEgbKUki7GQZm0WqDkGzyxju2EZGD2wA==", + "dev": true + }, + "node_modules/@types/json5": { + "version": "0.0.29", + "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", + "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==", + "dev": true + }, + "node_modules/@types/mdast": { + "version": "3.0.11", + "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.11.tgz", + "integrity": "sha512-Y/uImid8aAwrEA24/1tcRZwpxX3pIFTSilcNDKSPn+Y2iDywSEachzRuvgAYYLR3wpGXAsMbv5lvKLDZLeYPAw==", + "dev": true, + "dependencies": { + "@types/unist": "*" + } + }, + "node_modules/@types/ms": { + "version": "0.7.31", + "resolved": "https://registry.npmjs.org/@types/ms/-/ms-0.7.31.tgz", + "integrity": "sha512-iiUgKzV9AuaEkZqkOLDIvlQiL6ltuZd9tGcW3gwpnX8JbuiuhFlEGmmFXEXkN50Cvq7Os88IY2v0dkDqXYWVgA==", + "dev": true + }, + "node_modules/@types/node": { + "version": "17.0.45", + "resolved": "https://registry.npmjs.org/@types/node/-/node-17.0.45.tgz", + "integrity": "sha512-w+tIMs3rq2afQdsPJlODhoUEKzFP1ayaoyl1CcnwtIlsVe7K7bA1NGm4s3PraqTLlXnbIN84zuBlxBWo1u9BLw==", + "dev": true + }, + "node_modules/@types/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/@types/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-dPWnWsf+kzIG140B8z2w3fr5D03TLWbOAFQl45xUpI3vcizeXriNR5VYkWZ+WTMsUHqZ9Xlt3hrxGNANFyNQfw==", + "dev": true + }, + "node_modules/@types/text-table": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/@types/text-table/-/text-table-0.2.2.tgz", + "integrity": "sha512-dGoI5Af7To0R2XE8wJuc6vwlavWARsCh3UKJPjWs1YEqGUqfgBI/j/4GX0yf19/DsDPPf0YAXWAp8psNeIehLg==", + "dev": true + }, + "node_modules/@types/unist": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.6.tgz", + "integrity": "sha512-PBjIUxZHOuj0R15/xuwJYjFi+KZdNFrehocChv4g5hu6aFroHue8m0lBP0POdK2nKzbw0cgV1mws8+V/JAcEkQ==" + }, + "node_modules/acorn": { + "version": "8.8.2", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.2.tgz", + "integrity": "sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==", + "dev": true, + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "dev": true, + "peerDependencies": { + "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/aggregate-error": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", + "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", + "dev": true, + "dependencies": { + "clean-stack": "^2.0.0", + "indent-string": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/ansi-escapes": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", + "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", + "dev": true, + "dependencies": { + "type-fest": "^0.21.3" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ansi-escapes/node_modules/type-fest": { + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", + "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "dev": true, + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true + }, + "node_modules/array-buffer-byte-length": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.0.tgz", + "integrity": "sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "is-array-buffer": "^3.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array-includes": { + "version": "3.1.6", + "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.6.tgz", + "integrity": "sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4", + "get-intrinsic": "^1.1.3", + "is-string": "^1.0.7" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.flat": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.1.tgz", + "integrity": "sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4", + "es-shim-unscopables": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.flatmap": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.1.tgz", + "integrity": "sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4", + "es-shim-unscopables": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/astral-regex": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz", + "integrity": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/available-typed-arrays": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz", + "integrity": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/bail": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/bail/-/bail-2.0.2.tgz", + "integrity": "sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==", + "dev": true, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true + }, + "node_modules/binary-extensions": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", + "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/buffer-from": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", + "dev": true + }, + "node_modules/builtins": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/builtins/-/builtins-4.1.0.tgz", + "integrity": "sha512-1bPRZQtmKaO6h7qV1YHXNtr6nCK28k0Zo95KM4dXfILcZZwoHJBN1m3lfLv9LPkcOZlrSr+J1bzMaZFO98Yq0w==", + "dev": true, + "dependencies": { + "semver": "^7.0.0" + } + }, + "node_modules/builtins/node_modules/semver": { + "version": "7.5.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.0.tgz", + "integrity": "sha512-+XC0AD/R7Q2mPSRuy2Id0+CGTZ98+8f+KvwirxOKIEyid+XSx6HbC63p+O4IndTHuX5Z+JxQ0TghCkO5Cg/2HA==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/call-bind": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", + "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", + "dev": true, + "dependencies": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ccount": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/ccount/-/ccount-1.1.0.tgz", + "integrity": "sha512-vlNK021QdI7PNeiUh/lKkC/mNHHfV0m/Ad5JoI0TYtlBnJAslM/JIkm/tGC88bkLIwO6OQ5uV6ztS6kVAtCDlg==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/character-entities": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/character-entities/-/character-entities-2.0.2.tgz", + "integrity": "sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==", + "dev": true, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/character-entities-legacy": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-1.1.4.tgz", + "integrity": "sha512-3Xnr+7ZFS1uxeiUDvV02wQ+QDbc55o97tIV5zHScSPJpcLm/r0DFPcoY3tYRp+VZukxuMeKgXYmsXQHO05zQeA==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/character-reference-invalid": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/character-reference-invalid/-/character-reference-invalid-1.1.4.tgz", + "integrity": "sha512-mKKUkUbhPpQlCOfIuZkvSEgktjPFIsZKRRbC6KWVEMvlzblj3i3asQv5ODsrwt0N3pHAEvjP8KTQPHkp0+6jOg==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/chokidar": { + "version": "3.5.3", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", + "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", + "dev": true, + "funding": [ + { + "type": "individual", + "url": "https://paulmillr.com/funding/" + } + ], + "dependencies": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, + "engines": { + "node": ">= 8.10.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/chokidar/node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/clean-stack": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", + "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/cli-cursor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz", + "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==", + "dev": true, + "dependencies": { + "restore-cursor": "^3.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/cli-truncate": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/cli-truncate/-/cli-truncate-3.1.0.tgz", + "integrity": "sha512-wfOBkjXteqSnI59oPcJkcPl/ZmwvMMOj340qUIY1SKZCv0B9Cf4D4fAucRkIKQmsIuYK3x1rrgU7MeGRruiuiA==", + "dev": true, + "dependencies": { + "slice-ansi": "^5.0.0", + "string-width": "^5.0.0" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/co": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/co/-/co-3.1.0.tgz", + "integrity": "sha512-CQsjCRiNObI8AtTsNIBDRMQ4oMR83CzEswHYahClvul7gKk+lDQiOKv+5qh7LQWf5sh6jkZNispz/QlsZxyNgA==" + }, + "node_modules/collapse-white-space": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/collapse-white-space/-/collapse-white-space-1.0.6.tgz", + "integrity": "sha512-jEovNnrhMuqyCcjfEJA56v0Xq8SkIoPKDyaHahwo3POf4qcSXqMYuwNcOTzp74vTsR9Tn08z4MxWqAhcekogkQ==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/colorette": { + "version": "2.0.20", + "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.20.tgz", + "integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==", + "dev": true + }, + "node_modules/commander": { + "version": "10.0.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-10.0.1.tgz", + "integrity": "sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==", + "dev": true, + "engines": { + "node": ">=14" + } + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "dev": true + }, + "node_modules/concat-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-2.0.0.tgz", + "integrity": "sha512-MWufYdFw53ccGjCA+Ol7XJYpAlW6/prSMzuPOTRnJGcGzuhLn4Scrz7qf6o8bROZ514ltazcIFJZevcfbo0x7A==", + "dev": true, + "engines": [ + "node >= 6.0" + ], + "dependencies": { + "buffer-from": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^3.0.2", + "typedarray": "^0.0.6" + } + }, + "node_modules/confusing-browser-globals": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/confusing-browser-globals/-/confusing-browser-globals-1.0.11.tgz", + "integrity": "sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==", + "dev": true + }, + "node_modules/cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dev": true, + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/decode-named-character-reference": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/decode-named-character-reference/-/decode-named-character-reference-1.0.2.tgz", + "integrity": "sha512-O8x12RzrUF8xyVcY0KJowWsmaJxQbmy0/EtnNtHRpsOcT7dFk5W598coHqBVpmWo1oQQfsCqfCmkZN5DJrZVdg==", + "dev": true, + "dependencies": { + "character-entities": "^2.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/deep-is": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", + "dev": true + }, + "node_modules/define-lazy-prop": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz", + "integrity": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/define-properties": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.0.tgz", + "integrity": "sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA==", + "dev": true, + "dependencies": { + "has-property-descriptors": "^1.0.0", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/dequal": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz", + "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/diff": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/diff/-/diff-5.1.0.tgz", + "integrity": "sha512-D+mk+qE8VC/PAUrlAU34N+VfXev0ghe5ywmpqrawphmVZc1bEfn56uo9qpyGp1p4xpzOHkSW4ztBd6L7Xx4ACw==", + "dev": true, + "engines": { + "node": ">=0.3.1" + } + }, + "node_modules/doctrine": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", + "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", + "dev": true, + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/eastasianwidth": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", + "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", + "dev": true + }, + "node_modules/emoji-regex": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", + "dev": true + }, + "node_modules/error-ex": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "dev": true, + "dependencies": { + "is-arrayish": "^0.2.1" + } + }, + "node_modules/es-abstract": { + "version": "1.21.2", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.21.2.tgz", + "integrity": "sha512-y/B5POM2iBnIxCiernH1G7rC9qQoM77lLIMQLuob0zhp8C56Po81+2Nj0WFKnd0pNReDTnkYryc+zhOzpEIROg==", + "dev": true, + "dependencies": { + "array-buffer-byte-length": "^1.0.0", + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.2", + "es-set-tostringtag": "^2.0.1", + "es-to-primitive": "^1.2.1", + "function.prototype.name": "^1.1.5", + "get-intrinsic": "^1.2.0", + "get-symbol-description": "^1.0.0", + "globalthis": "^1.0.3", + "gopd": "^1.0.1", + "has": "^1.0.3", + "has-property-descriptors": "^1.0.0", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3", + "internal-slot": "^1.0.5", + "is-array-buffer": "^3.0.2", + "is-callable": "^1.2.7", + "is-negative-zero": "^2.0.2", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.2", + "is-string": "^1.0.7", + "is-typed-array": "^1.1.10", + "is-weakref": "^1.0.2", + "object-inspect": "^1.12.3", + "object-keys": "^1.1.1", + "object.assign": "^4.1.4", + "regexp.prototype.flags": "^1.4.3", + "safe-regex-test": "^1.0.0", + "string.prototype.trim": "^1.2.7", + "string.prototype.trimend": "^1.0.6", + "string.prototype.trimstart": "^1.0.6", + "typed-array-length": "^1.0.4", + "unbox-primitive": "^1.0.2", + "which-typed-array": "^1.1.9" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/es-set-tostringtag": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.1.tgz", + "integrity": "sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==", + "dev": true, + "dependencies": { + "get-intrinsic": "^1.1.3", + "has": "^1.0.3", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-shim-unscopables": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz", + "integrity": "sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==", + "dev": true, + "dependencies": { + "has": "^1.0.3" + } + }, + "node_modules/es-to-primitive": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", + "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", + "dev": true, + "dependencies": { + "is-callable": "^1.1.4", + "is-date-object": "^1.0.1", + "is-symbol": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint": { + "version": "8.39.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.39.0.tgz", + "integrity": "sha512-mwiok6cy7KTW7rBpo05k6+p4YVZByLNjAZ/ACB9DRCu4YDRwjXI01tWHp6KAUWelsBetTxKK/2sHB0vdS8Z2Og==", + "dev": true, + "dependencies": { + "@eslint-community/eslint-utils": "^4.2.0", + "@eslint-community/regexpp": "^4.4.0", + "@eslint/eslintrc": "^2.0.2", + "@eslint/js": "8.39.0", + "@humanwhocodes/config-array": "^0.11.8", + "@humanwhocodes/module-importer": "^1.0.1", + "@nodelib/fs.walk": "^1.2.8", + "ajv": "^6.10.0", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.2", + "debug": "^4.3.2", + "doctrine": "^3.0.0", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^7.2.0", + "eslint-visitor-keys": "^3.4.0", + "espree": "^9.5.1", + "esquery": "^1.4.2", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^6.0.1", + "find-up": "^5.0.0", + "glob-parent": "^6.0.2", + "globals": "^13.19.0", + "grapheme-splitter": "^1.0.4", + "ignore": "^5.2.0", + "import-fresh": "^3.0.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "is-path-inside": "^3.0.3", + "js-sdsl": "^4.1.4", + "js-yaml": "^4.1.0", + "json-stable-stringify-without-jsonify": "^1.0.1", + "levn": "^0.4.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.1.2", + "natural-compare": "^1.4.0", + "optionator": "^0.9.1", + "strip-ansi": "^6.0.1", + "strip-json-comments": "^3.1.0", + "text-table": "^0.2.0" + }, + "bin": { + "eslint": "bin/eslint.js" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint-config-prettier": { + "version": "8.8.0", + "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-8.8.0.tgz", + "integrity": "sha512-wLbQiFre3tdGgpDv67NQKnJuTlcUVYHas3k+DZCc2U2BadthoEY4B7hLPvAxaqdyOGCzuLfii2fqGph10va7oA==", + "dev": true, + "bin": { + "eslint-config-prettier": "bin/cli.js" + }, + "peerDependencies": { + "eslint": ">=7.0.0" + } + }, + "node_modules/eslint-import-resolver-node": { + "version": "0.3.7", + "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.7.tgz", + "integrity": "sha512-gozW2blMLJCeFpBwugLTGyvVjNoeo1knonXAcatC6bjPBZitotxdWf7Gimr25N4c0AAOo4eOUfaG82IJPDpqCA==", + "dev": true, + "dependencies": { + "debug": "^3.2.7", + "is-core-module": "^2.11.0", + "resolve": "^1.22.1" + } + }, + "node_modules/eslint-import-resolver-node/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/eslint-module-utils": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.8.0.tgz", + "integrity": "sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==", + "dev": true, + "dependencies": { + "debug": "^3.2.7" + }, + "engines": { + "node": ">=4" + }, + "peerDependenciesMeta": { + "eslint": { + "optional": true + } + } + }, + "node_modules/eslint-module-utils/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/eslint-plugin-import": { + "version": "2.27.5", + "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.27.5.tgz", + "integrity": "sha512-LmEt3GVofgiGuiE+ORpnvP+kAm3h6MLZJ4Q5HCyHADofsb4VzXFsRiWj3c0OFiV+3DWFh0qg3v9gcPlfc3zRow==", + "dev": true, + "dependencies": { + "array-includes": "^3.1.6", + "array.prototype.flat": "^1.3.1", + "array.prototype.flatmap": "^1.3.1", + "debug": "^3.2.7", + "doctrine": "^2.1.0", + "eslint-import-resolver-node": "^0.3.7", + "eslint-module-utils": "^2.7.4", + "has": "^1.0.3", + "is-core-module": "^2.11.0", + "is-glob": "^4.0.3", + "minimatch": "^3.1.2", + "object.values": "^1.1.6", + "resolve": "^1.22.1", + "semver": "^6.3.0", + "tsconfig-paths": "^3.14.1" + }, + "engines": { + "node": ">=4" + }, + "peerDependencies": { + "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8" + } + }, + "node_modules/eslint-plugin-import/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/eslint-plugin-import/node_modules/doctrine": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "dev": true, + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/eslint-plugin-prettier": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-4.2.1.tgz", + "integrity": "sha512-f/0rXLXUt0oFYs8ra4w49wYZBG5GKZpAYsJSm6rnYL5uVDjd+zowwMwVZHnAjf4edNrKpCDYfXDgmRE/Ak7QyQ==", + "dev": true, + "dependencies": { + "prettier-linter-helpers": "^1.0.0" + }, + "engines": { + "node": ">=12.0.0" + }, + "peerDependencies": { + "eslint": ">=7.28.0", + "prettier": ">=2.0.0" + }, + "peerDependenciesMeta": { + "eslint-config-prettier": { + "optional": true + } + } + }, + "node_modules/eslint-scope": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.0.tgz", + "integrity": "sha512-DYj5deGlHBfMt15J7rdtyKNq/Nqlv5KfU4iodrQ019XESsRnwXH9KAE0y3cwtUHDo2ob7CypAnCqefh6vioWRw==", + "dev": true, + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint-visitor-keys": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.0.tgz", + "integrity": "sha512-HPpKPUBQcAsZOsHAFwTtIKcYlCje62XB7SEAcxjtmW6TD1WVpkS6i6/hOVtTZIl4zGj/mBqpFVGvaDneik+VoQ==", + "dev": true, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/espree": { + "version": "9.5.1", + "resolved": "https://registry.npmjs.org/espree/-/espree-9.5.1.tgz", + "integrity": "sha512-5yxtHSZXRSW5pvv3hAlXM5+/Oswi1AUFqBmbibKb5s6bp3rGIDkyXU6xCoyuuLhijr4SFwPrXRoZjz0AZDN9tg==", + "dev": true, + "dependencies": { + "acorn": "^8.8.0", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^3.4.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/esquery": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", + "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", + "dev": true, + "dependencies": { + "estraverse": "^5.1.0" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "dev": true, + "dependencies": { + "estraverse": "^5.2.0" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/execa": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-7.1.1.tgz", + "integrity": "sha512-wH0eMf/UXckdUYnO21+HDztteVv05rq2GXksxT4fCGeHkBhw1DROXh40wcjMcRqDOWE7iPJ4n3M7e2+YFP+76Q==", + "dev": true, + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.1", + "human-signals": "^4.3.0", + "is-stream": "^3.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^5.1.0", + "onetime": "^6.0.0", + "signal-exit": "^3.0.7", + "strip-final-newline": "^3.0.0" + }, + "engines": { + "node": "^14.18.0 || ^16.14.0 || >=18.0.0" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } + }, + "node_modules/extend": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", + "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==", + "dev": true + }, + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "dev": true + }, + "node_modules/fast-diff": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/fast-diff/-/fast-diff-1.2.0.tgz", + "integrity": "sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w==", + "dev": true + }, + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "dev": true + }, + "node_modules/fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", + "dev": true + }, + "node_modules/fastq": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz", + "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", + "dev": true, + "dependencies": { + "reusify": "^1.0.4" + } + }, + "node_modules/fault": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/fault/-/fault-2.0.1.tgz", + "integrity": "sha512-WtySTkS4OKev5JtpHXnib4Gxiurzh5NCGvWrFaZ34m6JehfTUhKZvn9njTfw48t6JumVQOmrKqpmGcdwxnhqBQ==", + "dev": true, + "dependencies": { + "format": "^0.2.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/figgy-pudding": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/figgy-pudding/-/figgy-pudding-3.5.2.tgz", + "integrity": "sha512-0btnI/H8f2pavGMN8w40mlSKOfTK2SVJmBfBeVIj3kNw0swwgzyRq0d5TJVOwodFmtvpPeWPN/MCcfuWF0Ezbw==", + "dev": true + }, + "node_modules/file-entry-cache": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", + "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", + "dev": true, + "dependencies": { + "flat-cache": "^3.0.4" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "dev": true, + "dependencies": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/flat-cache": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz", + "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==", + "dev": true, + "dependencies": { + "flatted": "^3.1.0", + "rimraf": "^3.0.2" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/flatted": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.7.tgz", + "integrity": "sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==", + "dev": true + }, + "node_modules/for-each": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", + "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", + "dev": true, + "dependencies": { + "is-callable": "^1.1.3" + } + }, + "node_modules/format": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/format/-/format-0.2.2.tgz", + "integrity": "sha512-wzsgA6WOq+09wrU1tsJ09udeR/YZRaeArL9e1wPbFg3GG2yDnC2ldKpxs4xunpFF9DgqCqOIra3bc1HWrJ37Ww==", + "engines": { + "node": ">=0.4.x" + } + }, + "node_modules/fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", + "dev": true + }, + "node_modules/fsevents": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", + "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", + "dev": true, + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", + "dev": true + }, + "node_modules/function.prototype.name": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.5.tgz", + "integrity": "sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.0", + "functions-have-names": "^1.2.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/functions-have-names": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", + "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-intrinsic": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.0.tgz", + "integrity": "sha512-L049y6nFOuom5wGyRc3/gdTLO94dySVKRACj1RmJZBQXlbTMhtNIgkWkUHq+jYmZvKf14EW1EoJnnjbmoHij0Q==", + "dev": true, + "dependencies": { + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/get-symbol-description": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz", + "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "dev": true, + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "dev": true, + "dependencies": { + "is-glob": "^4.0.3" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/globals": { + "version": "13.20.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.20.0.tgz", + "integrity": "sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==", + "dev": true, + "dependencies": { + "type-fest": "^0.20.2" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/globalthis": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz", + "integrity": "sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==", + "dev": true, + "dependencies": { + "define-properties": "^1.1.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/globalyzer": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/globalyzer/-/globalyzer-0.1.0.tgz", + "integrity": "sha512-40oNTM9UfG6aBmuKxk/giHn5nQ8RVz/SS4Ir6zgzOv9/qC3kKZ9v4etGTcJbEl/NyVQH7FGU7d+X1egr57Md2Q==", + "dev": true + }, + "node_modules/globrex": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/globrex/-/globrex-0.1.2.tgz", + "integrity": "sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==", + "dev": true + }, + "node_modules/gopd": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", + "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", + "dev": true, + "dependencies": { + "get-intrinsic": "^1.1.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", + "dev": true + }, + "node_modules/grapheme-splitter": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz", + "integrity": "sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==", + "dev": true + }, + "node_modules/has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "dev": true, + "dependencies": { + "function-bind": "^1.1.1" + }, + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/has-bigints": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", + "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/has-property-descriptors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz", + "integrity": "sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==", + "dev": true, + "dependencies": { + "get-intrinsic": "^1.1.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz", + "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-symbols": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-tostringtag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", + "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", + "dev": true, + "dependencies": { + "has-symbols": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/hosted-git-info": { + "version": "2.8.9", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", + "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", + "dev": true + }, + "node_modules/human-signals": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-4.3.1.tgz", + "integrity": "sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ==", + "dev": true, + "engines": { + "node": ">=14.18.0" + } + }, + "node_modules/husky": { + "version": "8.0.3", + "resolved": "https://registry.npmjs.org/husky/-/husky-8.0.3.tgz", + "integrity": "sha512-+dQSyqPh4x1hlO1swXBiNb2HzTDN1I2IGLQx1GrBuiqFJfoMrnZWwVmatvSiO+Iz8fBUnf+lekwNo4c2LlXItg==", + "dev": true, + "bin": { + "husky": "lib/bin.js" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/typicode" + } + }, + "node_modules/ignore": { + "version": "5.2.4", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz", + "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==", + "dev": true, + "engines": { + "node": ">= 4" + } + }, + "node_modules/import-fresh": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", + "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", + "dev": true, + "dependencies": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/import-meta-resolve": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/import-meta-resolve/-/import-meta-resolve-1.1.1.tgz", + "integrity": "sha512-JiTuIvVyPaUg11eTrNDx5bgQ/yMKMZffc7YSjvQeSMXy58DO2SQ8BtAf3xteZvmzvjYh14wnqNjL8XVeDy2o9A==", + "dev": true, + "dependencies": { + "builtins": "^4.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "dev": true, + "engines": { + "node": ">=0.8.19" + } + }, + "node_modules/indent-string": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", + "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "dev": true, + "dependencies": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true + }, + "node_modules/ini": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", + "dev": true + }, + "node_modules/internal-slot": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.5.tgz", + "integrity": "sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==", + "dev": true, + "dependencies": { + "get-intrinsic": "^1.2.0", + "has": "^1.0.3", + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/is-alphabetical": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-alphabetical/-/is-alphabetical-1.0.4.tgz", + "integrity": "sha512-DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/is-alphanumerical": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-alphanumerical/-/is-alphanumerical-1.0.4.tgz", + "integrity": "sha512-UzoZUr+XfVz3t3v4KyGEniVL9BDRoQtY7tOyrRybkVNjDFWyo1yhXNGrrBTQxp3ib9BLAWs7k2YKBQsFRkZG9A==", + "dependencies": { + "is-alphabetical": "^1.0.0", + "is-decimal": "^1.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/is-array-buffer": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.2.tgz", + "integrity": "sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.2.0", + "is-typed-array": "^1.1.10" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", + "dev": true + }, + "node_modules/is-bigint": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", + "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", + "dev": true, + "dependencies": { + "has-bigints": "^1.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dev": true, + "dependencies": { + "binary-extensions": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-boolean-object": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", + "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-buffer": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-2.0.5.tgz", + "integrity": "sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "engines": { + "node": ">=4" + } + }, + "node_modules/is-callable": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", + "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-core-module": { + "version": "2.12.0", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.12.0.tgz", + "integrity": "sha512-RECHCBCd/viahWmwj6enj19sKbHfJrddi/6cBDsNTKbNq0f7VeaUkBo60BqzvPqo/W54ChS62Z5qyun7cfOMqQ==", + "dev": true, + "dependencies": { + "has": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-date-object": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", + "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", + "dev": true, + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-decimal": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-decimal/-/is-decimal-1.0.4.tgz", + "integrity": "sha512-RGdriMmQQvZ2aqaQq3awNA6dCGtKpiDFcOzrTWrDAT2MiWrKQVPmxLGHl7Y2nNu6led0kEyoX0enY0qXYsv9zw==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/is-docker": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", + "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", + "dev": true, + "bin": { + "is-docker": "cli.js" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-empty": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/is-empty/-/is-empty-1.2.0.tgz", + "integrity": "sha512-F2FnH/otLNJv0J6wc73A5Xo7oHLNnqplYqZhUu01tD54DIPvxIRSTSLkrUB/M0nHO4vo1O9PDfN4KoTxCzLh/w==", + "dev": true + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-fullwidth-code-point": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-4.0.0.tgz", + "integrity": "sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-hexadecimal": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-hexadecimal/-/is-hexadecimal-1.0.4.tgz", + "integrity": "sha512-gyPJuv83bHMpocVYoqof5VDiZveEoGoFL8m3BXNb2VW8Xs+rz9kqO8LOQ5DH6EsuvilT1ApazU0pyl+ytbPtlw==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/is-negative-zero": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz", + "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/is-number-object": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", + "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", + "dev": true, + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-path-inside": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", + "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-plain-obj": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-4.1.0.tgz", + "integrity": "sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-regex": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", + "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-shared-array-buffer": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz", + "integrity": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-stream": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz", + "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==", + "dev": true, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-string": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", + "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", + "dev": true, + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-symbol": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", + "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", + "dev": true, + "dependencies": { + "has-symbols": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-typed-array": { + "version": "1.1.10", + "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.10.tgz", + "integrity": "sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A==", + "dev": true, + "dependencies": { + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-weakref": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", + "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-wsl": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", + "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", + "dev": true, + "dependencies": { + "is-docker": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true + }, + "node_modules/js-sdsl": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/js-sdsl/-/js-sdsl-4.4.0.tgz", + "integrity": "sha512-FfVSdx6pJ41Oa+CF7RDaFmTnCaFhua+SNYQX74riGOpl96x+2jQCqEfQ2bnXu/5DPCqlRuiqyvTJM0Qjz26IVg==", + "dev": true, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/js-sdsl" + } + }, + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "dev": true + }, + "node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dev": true, + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/json-parse-better-errors": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", + "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==", + "dev": true + }, + "node_modules/json-parse-even-better-errors": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", + "dev": true + }, + "node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true + }, + "node_modules/json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", + "dev": true + }, + "node_modules/json5": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", + "dev": true, + "dependencies": { + "minimist": "^1.2.0" + }, + "bin": { + "json5": "lib/cli.js" + } + }, + "node_modules/kleur": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/kleur/-/kleur-4.1.5.tgz", + "integrity": "sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/levn": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "dev": true, + "dependencies": { + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/libnpmconfig": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/libnpmconfig/-/libnpmconfig-1.2.1.tgz", + "integrity": "sha512-9esX8rTQAHqarx6qeZqmGQKBNZR5OIbl/Ayr0qQDy3oXja2iFVQQI81R6GZ2a02bSNZ9p3YOGX1O6HHCb1X7kA==", + "deprecated": "This module is not used anymore. npm config is parsed by npm itself and by @npmcli/config", + "dev": true, + "dependencies": { + "figgy-pudding": "^3.5.1", + "find-up": "^3.0.0", + "ini": "^1.3.5" + } + }, + "node_modules/libnpmconfig/node_modules/find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "dev": true, + "dependencies": { + "locate-path": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/libnpmconfig/node_modules/locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "dev": true, + "dependencies": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/libnpmconfig/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/libnpmconfig/node_modules/p-locate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "dev": true, + "dependencies": { + "p-limit": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/libnpmconfig/node_modules/path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/lilconfig": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz", + "integrity": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/lines-and-columns": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-2.0.3.tgz", + "integrity": "sha512-cNOjgCnLB+FnvWWtyRTzmB3POJ+cXxTA81LoW7u8JdmhfXzriropYwpjShnz1QLLWsQwY7nIxoDmcPTwphDK9w==", + "dev": true, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + } + }, + "node_modules/lint-staged": { + "version": "13.2.1", + "resolved": "https://registry.npmjs.org/lint-staged/-/lint-staged-13.2.1.tgz", + "integrity": "sha512-8gfzinVXoPfga5Dz/ZOn8I2GOhf81Wvs+KwbEXQn/oWZAvCVS2PivrXfVbFJc93zD16uC0neS47RXHIjXKYZQw==", + "dev": true, + "dependencies": { + "chalk": "5.2.0", + "cli-truncate": "^3.1.0", + "commander": "^10.0.0", + "debug": "^4.3.4", + "execa": "^7.0.0", + "lilconfig": "2.1.0", + "listr2": "^5.0.7", + "micromatch": "^4.0.5", + "normalize-path": "^3.0.0", + "object-inspect": "^1.12.3", + "pidtree": "^0.6.0", + "string-argv": "^0.3.1", + "yaml": "^2.2.1" + }, + "bin": { + "lint-staged": "bin/lint-staged.js" + }, + "engines": { + "node": "^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/lint-staged" + } + }, + "node_modules/lint-staged/node_modules/chalk": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.2.0.tgz", + "integrity": "sha512-ree3Gqw/nazQAPuJJEy+avdl7QfZMcUvmHIKgEZkGL+xOBzRvup5Hxo6LHuMceSxOabuJLJm5Yp/92R9eMmMvA==", + "dev": true, + "engines": { + "node": "^12.17.0 || ^14.13 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/listr2": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/listr2/-/listr2-5.0.8.tgz", + "integrity": "sha512-mC73LitKHj9w6v30nLNGPetZIlfpUniNSsxxrbaPcWOjDb92SHPzJPi/t+v1YC/lxKz/AJ9egOjww0qUuFxBpA==", + "dev": true, + "dependencies": { + "cli-truncate": "^2.1.0", + "colorette": "^2.0.19", + "log-update": "^4.0.0", + "p-map": "^4.0.0", + "rfdc": "^1.3.0", + "rxjs": "^7.8.0", + "through": "^2.3.8", + "wrap-ansi": "^7.0.0" + }, + "engines": { + "node": "^14.13.1 || >=16.0.0" + }, + "peerDependencies": { + "enquirer": ">= 2.3.0 < 3" + }, + "peerDependenciesMeta": { + "enquirer": { + "optional": true + } + } + }, + "node_modules/listr2/node_modules/cli-truncate": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/cli-truncate/-/cli-truncate-2.1.0.tgz", + "integrity": "sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==", + "dev": true, + "dependencies": { + "slice-ansi": "^3.0.0", + "string-width": "^4.2.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/listr2/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "node_modules/listr2/node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/listr2/node_modules/slice-ansi": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-3.0.0.tgz", + "integrity": "sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.0.0", + "astral-regex": "^2.0.0", + "is-fullwidth-code-point": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/listr2/node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/load-json-file": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz", + "integrity": "sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.1.2", + "parse-json": "^4.0.0", + "pify": "^3.0.0", + "strip-bom": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/load-plugin": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/load-plugin/-/load-plugin-4.0.1.tgz", + "integrity": "sha512-4kMi+mOSn/TR51pDo4tgxROHfBHXsrcyEYSGHcJ1o6TtRaP2PsRM5EwmYbj1uiLDvbfA/ohwuSWZJzqGiai8Dw==", + "dev": true, + "dependencies": { + "import-meta-resolve": "^1.0.0", + "libnpmconfig": "^1.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "dev": true, + "dependencies": { + "p-locate": "^5.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/lodash.merge": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", + "dev": true + }, + "node_modules/log-update": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/log-update/-/log-update-4.0.0.tgz", + "integrity": "sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg==", + "dev": true, + "dependencies": { + "ansi-escapes": "^4.3.0", + "cli-cursor": "^3.1.0", + "slice-ansi": "^4.0.0", + "wrap-ansi": "^6.2.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/log-update/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "node_modules/log-update/node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/log-update/node_modules/slice-ansi": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz", + "integrity": "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.0.0", + "astral-regex": "^2.0.0", + "is-fullwidth-code-point": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/slice-ansi?sponsor=1" + } + }, + "node_modules/log-update/node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/log-update/node_modules/wrap-ansi": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz", + "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/longest-streak": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/longest-streak/-/longest-streak-3.1.0.tgz", + "integrity": "sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==", + "dev": true, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/markdown-table": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/markdown-table/-/markdown-table-2.0.0.tgz", + "integrity": "sha512-Ezda85ToJUBhM6WGaG6veasyym+Tbs3cMAw/ZhOPqXiYsr0jgocBV3j3nx+4lk47plLlIqjwuTm/ywVI+zjJ/A==", + "dependencies": { + "repeat-string": "^1.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/mdast-comment-marker": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/mdast-comment-marker/-/mdast-comment-marker-1.1.2.tgz", + "integrity": "sha512-vTFXtmbbF3rgnTh3Zl3irso4LtvwUq/jaDvT2D1JqTGAwaipcS7RpTxzi6KjoRqI9n2yuAhzLDAC8xVTF3XYVQ==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-find-and-replace": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/mdast-util-find-and-replace/-/mdast-util-find-and-replace-1.1.1.tgz", + "integrity": "sha512-9cKl33Y21lyckGzpSmEQnIDjEfeeWelN5s1kUW1LwdB0Fkuq2u+4GdqcGEygYxJE8GVqCl0741bYXHgamfWAZA==", + "dependencies": { + "escape-string-regexp": "^4.0.0", + "unist-util-is": "^4.0.0", + "unist-util-visit-parents": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-find-and-replace/node_modules/unist-util-is": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-4.1.0.tgz", + "integrity": "sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-find-and-replace/node_modules/unist-util-visit-parents": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz", + "integrity": "sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-footnote": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/mdast-util-footnote/-/mdast-util-footnote-0.1.7.tgz", + "integrity": "sha512-QxNdO8qSxqbO2e3m09KwDKfWiLgqyCurdWTQ198NpbZ2hxntdc+VKS4fDJCmNWbAroUdYnSthu+XbZ8ovh8C3w==", + "dependencies": { + "mdast-util-to-markdown": "^0.6.0", + "micromark": "~2.11.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-footnote/node_modules/longest-streak": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/longest-streak/-/longest-streak-2.0.4.tgz", + "integrity": "sha512-vM6rUVCVUJJt33bnmHiZEvr7wPT78ztX7rojL+LW51bHtLh6HTjx84LA5W4+oa6aKEJA7jJu5LR6vQRBpA5DVg==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/mdast-util-footnote/node_modules/mdast-util-to-markdown": { + "version": "0.6.5", + "resolved": "https://registry.npmjs.org/mdast-util-to-markdown/-/mdast-util-to-markdown-0.6.5.tgz", + "integrity": "sha512-XeV9sDE7ZlOQvs45C9UKMtfTcctcaj/pGwH8YLbMHoMOXNNCn2LsqVQOqrF1+/NU8lKDAqozme9SCXWyo9oAcQ==", + "dependencies": { + "@types/unist": "^2.0.0", + "longest-streak": "^2.0.0", + "mdast-util-to-string": "^2.0.0", + "parse-entities": "^2.0.0", + "repeat-string": "^1.0.0", + "zwitch": "^1.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-footnote/node_modules/mdast-util-to-string": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-2.0.0.tgz", + "integrity": "sha512-AW4DRS3QbBayY/jJmD8437V1Gombjf8RSOUCMFBuo5iHi58AGEgVCKQ+ezHkZZDpAQS75hcBMpLqjpJTjtUL7w==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-footnote/node_modules/micromark": { + "version": "2.11.4", + "resolved": "https://registry.npmjs.org/micromark/-/micromark-2.11.4.tgz", + "integrity": "sha512-+WoovN/ppKolQOFIAajxi7Lu9kInbPxFuTBVEavFcL8eAfVstoc5MocPmqBeAdBOJV00uaVjegzH4+MA0DN/uA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "debug": "^4.0.0", + "parse-entities": "^2.0.0" + } + }, + "node_modules/mdast-util-footnote/node_modules/zwitch": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/zwitch/-/zwitch-1.0.5.tgz", + "integrity": "sha512-V50KMwwzqJV0NpZIZFwfOD5/lyny3WlSzRiXgA0G7VUnRlqttta1L6UQIHzd6EuBY/cHGfwTIck7w1yH6Q5zUw==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/mdast-util-from-markdown": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/mdast-util-from-markdown/-/mdast-util-from-markdown-1.3.0.tgz", + "integrity": "sha512-HN3W1gRIuN/ZW295c7zi7g9lVBllMgZE40RxCX37wrTPWXCWtpvOZdfnuK+1WNpvZje6XuJeI3Wnb4TJEUem+g==", + "dev": true, + "dependencies": { + "@types/mdast": "^3.0.0", + "@types/unist": "^2.0.0", + "decode-named-character-reference": "^1.0.0", + "mdast-util-to-string": "^3.1.0", + "micromark": "^3.0.0", + "micromark-util-decode-numeric-character-reference": "^1.0.0", + "micromark-util-decode-string": "^1.0.0", + "micromark-util-normalize-identifier": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0", + "unist-util-stringify-position": "^3.0.0", + "uvu": "^0.5.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-frontmatter": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/mdast-util-frontmatter/-/mdast-util-frontmatter-0.2.0.tgz", + "integrity": "sha512-FHKL4w4S5fdt1KjJCwB0178WJ0evnyyQr5kXTM3wrOVpytD0hrkvd+AOOjU9Td8onOejCkmZ+HQRT3CZ3coHHQ==", + "dependencies": { + "micromark-extension-frontmatter": "^0.2.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-gfm": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/mdast-util-gfm/-/mdast-util-gfm-0.1.2.tgz", + "integrity": "sha512-NNkhDx/qYcuOWB7xHUGWZYVXvjPFFd6afg6/e2g+SV4r9q5XUcCbV4Wfa3DLYIiD+xAEZc6K4MGaE/m0KDcPwQ==", + "dependencies": { + "mdast-util-gfm-autolink-literal": "^0.1.0", + "mdast-util-gfm-strikethrough": "^0.2.0", + "mdast-util-gfm-table": "^0.1.0", + "mdast-util-gfm-task-list-item": "^0.1.0", + "mdast-util-to-markdown": "^0.6.1" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-gfm-autolink-literal": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/mdast-util-gfm-autolink-literal/-/mdast-util-gfm-autolink-literal-0.1.3.tgz", + "integrity": "sha512-GjmLjWrXg1wqMIO9+ZsRik/s7PLwTaeCHVB7vRxUwLntZc8mzmTsLVr6HW1yLokcnhfURsn5zmSVdi3/xWWu1A==", + "dependencies": { + "ccount": "^1.0.0", + "mdast-util-find-and-replace": "^1.1.0", + "micromark": "^2.11.3" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-gfm-autolink-literal/node_modules/micromark": { + "version": "2.11.4", + "resolved": "https://registry.npmjs.org/micromark/-/micromark-2.11.4.tgz", + "integrity": "sha512-+WoovN/ppKolQOFIAajxi7Lu9kInbPxFuTBVEavFcL8eAfVstoc5MocPmqBeAdBOJV00uaVjegzH4+MA0DN/uA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "debug": "^4.0.0", + "parse-entities": "^2.0.0" + } + }, + "node_modules/mdast-util-gfm-strikethrough": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/mdast-util-gfm-strikethrough/-/mdast-util-gfm-strikethrough-0.2.3.tgz", + "integrity": "sha512-5OQLXpt6qdbttcDG/UxYY7Yjj3e8P7X16LzvpX8pIQPYJ/C2Z1qFGMmcw+1PZMUM3Z8wt8NRfYTvCni93mgsgA==", + "dependencies": { + "mdast-util-to-markdown": "^0.6.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-gfm-strikethrough/node_modules/longest-streak": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/longest-streak/-/longest-streak-2.0.4.tgz", + "integrity": "sha512-vM6rUVCVUJJt33bnmHiZEvr7wPT78ztX7rojL+LW51bHtLh6HTjx84LA5W4+oa6aKEJA7jJu5LR6vQRBpA5DVg==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/mdast-util-gfm-strikethrough/node_modules/mdast-util-to-markdown": { + "version": "0.6.5", + "resolved": "https://registry.npmjs.org/mdast-util-to-markdown/-/mdast-util-to-markdown-0.6.5.tgz", + "integrity": "sha512-XeV9sDE7ZlOQvs45C9UKMtfTcctcaj/pGwH8YLbMHoMOXNNCn2LsqVQOqrF1+/NU8lKDAqozme9SCXWyo9oAcQ==", + "dependencies": { + "@types/unist": "^2.0.0", + "longest-streak": "^2.0.0", + "mdast-util-to-string": "^2.0.0", + "parse-entities": "^2.0.0", + "repeat-string": "^1.0.0", + "zwitch": "^1.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-gfm-strikethrough/node_modules/mdast-util-to-string": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-2.0.0.tgz", + "integrity": "sha512-AW4DRS3QbBayY/jJmD8437V1Gombjf8RSOUCMFBuo5iHi58AGEgVCKQ+ezHkZZDpAQS75hcBMpLqjpJTjtUL7w==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-gfm-strikethrough/node_modules/zwitch": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/zwitch/-/zwitch-1.0.5.tgz", + "integrity": "sha512-V50KMwwzqJV0NpZIZFwfOD5/lyny3WlSzRiXgA0G7VUnRlqttta1L6UQIHzd6EuBY/cHGfwTIck7w1yH6Q5zUw==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/mdast-util-gfm-table": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/mdast-util-gfm-table/-/mdast-util-gfm-table-0.1.6.tgz", + "integrity": "sha512-j4yDxQ66AJSBwGkbpFEp9uG/LS1tZV3P33fN1gkyRB2LoRL+RR3f76m0HPHaby6F4Z5xr9Fv1URmATlRRUIpRQ==", + "dependencies": { + "markdown-table": "^2.0.0", + "mdast-util-to-markdown": "~0.6.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-gfm-table/node_modules/longest-streak": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/longest-streak/-/longest-streak-2.0.4.tgz", + "integrity": "sha512-vM6rUVCVUJJt33bnmHiZEvr7wPT78ztX7rojL+LW51bHtLh6HTjx84LA5W4+oa6aKEJA7jJu5LR6vQRBpA5DVg==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/mdast-util-gfm-table/node_modules/mdast-util-to-markdown": { + "version": "0.6.5", + "resolved": "https://registry.npmjs.org/mdast-util-to-markdown/-/mdast-util-to-markdown-0.6.5.tgz", + "integrity": "sha512-XeV9sDE7ZlOQvs45C9UKMtfTcctcaj/pGwH8YLbMHoMOXNNCn2LsqVQOqrF1+/NU8lKDAqozme9SCXWyo9oAcQ==", + "dependencies": { + "@types/unist": "^2.0.0", + "longest-streak": "^2.0.0", + "mdast-util-to-string": "^2.0.0", + "parse-entities": "^2.0.0", + "repeat-string": "^1.0.0", + "zwitch": "^1.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-gfm-table/node_modules/mdast-util-to-string": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-2.0.0.tgz", + "integrity": "sha512-AW4DRS3QbBayY/jJmD8437V1Gombjf8RSOUCMFBuo5iHi58AGEgVCKQ+ezHkZZDpAQS75hcBMpLqjpJTjtUL7w==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-gfm-table/node_modules/zwitch": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/zwitch/-/zwitch-1.0.5.tgz", + "integrity": "sha512-V50KMwwzqJV0NpZIZFwfOD5/lyny3WlSzRiXgA0G7VUnRlqttta1L6UQIHzd6EuBY/cHGfwTIck7w1yH6Q5zUw==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/mdast-util-gfm-task-list-item": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/mdast-util-gfm-task-list-item/-/mdast-util-gfm-task-list-item-0.1.6.tgz", + "integrity": "sha512-/d51FFIfPsSmCIRNp7E6pozM9z1GYPIkSy1urQ8s/o4TC22BZ7DqfHFWiqBD23bc7J3vV1Fc9O4QIHBlfuit8A==", + "dependencies": { + "mdast-util-to-markdown": "~0.6.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-gfm-task-list-item/node_modules/longest-streak": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/longest-streak/-/longest-streak-2.0.4.tgz", + "integrity": "sha512-vM6rUVCVUJJt33bnmHiZEvr7wPT78ztX7rojL+LW51bHtLh6HTjx84LA5W4+oa6aKEJA7jJu5LR6vQRBpA5DVg==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/mdast-util-gfm-task-list-item/node_modules/mdast-util-to-markdown": { + "version": "0.6.5", + "resolved": "https://registry.npmjs.org/mdast-util-to-markdown/-/mdast-util-to-markdown-0.6.5.tgz", + "integrity": "sha512-XeV9sDE7ZlOQvs45C9UKMtfTcctcaj/pGwH8YLbMHoMOXNNCn2LsqVQOqrF1+/NU8lKDAqozme9SCXWyo9oAcQ==", + "dependencies": { + "@types/unist": "^2.0.0", + "longest-streak": "^2.0.0", + "mdast-util-to-string": "^2.0.0", + "parse-entities": "^2.0.0", + "repeat-string": "^1.0.0", + "zwitch": "^1.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-gfm-task-list-item/node_modules/mdast-util-to-string": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-2.0.0.tgz", + "integrity": "sha512-AW4DRS3QbBayY/jJmD8437V1Gombjf8RSOUCMFBuo5iHi58AGEgVCKQ+ezHkZZDpAQS75hcBMpLqjpJTjtUL7w==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-gfm-task-list-item/node_modules/zwitch": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/zwitch/-/zwitch-1.0.5.tgz", + "integrity": "sha512-V50KMwwzqJV0NpZIZFwfOD5/lyny3WlSzRiXgA0G7VUnRlqttta1L6UQIHzd6EuBY/cHGfwTIck7w1yH6Q5zUw==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/mdast-util-gfm/node_modules/longest-streak": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/longest-streak/-/longest-streak-2.0.4.tgz", + "integrity": "sha512-vM6rUVCVUJJt33bnmHiZEvr7wPT78ztX7rojL+LW51bHtLh6HTjx84LA5W4+oa6aKEJA7jJu5LR6vQRBpA5DVg==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/mdast-util-gfm/node_modules/mdast-util-to-markdown": { + "version": "0.6.5", + "resolved": "https://registry.npmjs.org/mdast-util-to-markdown/-/mdast-util-to-markdown-0.6.5.tgz", + "integrity": "sha512-XeV9sDE7ZlOQvs45C9UKMtfTcctcaj/pGwH8YLbMHoMOXNNCn2LsqVQOqrF1+/NU8lKDAqozme9SCXWyo9oAcQ==", + "dependencies": { + "@types/unist": "^2.0.0", + "longest-streak": "^2.0.0", + "mdast-util-to-string": "^2.0.0", + "parse-entities": "^2.0.0", + "repeat-string": "^1.0.0", + "zwitch": "^1.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-gfm/node_modules/mdast-util-to-string": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-2.0.0.tgz", + "integrity": "sha512-AW4DRS3QbBayY/jJmD8437V1Gombjf8RSOUCMFBuo5iHi58AGEgVCKQ+ezHkZZDpAQS75hcBMpLqjpJTjtUL7w==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-gfm/node_modules/zwitch": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/zwitch/-/zwitch-1.0.5.tgz", + "integrity": "sha512-V50KMwwzqJV0NpZIZFwfOD5/lyny3WlSzRiXgA0G7VUnRlqttta1L6UQIHzd6EuBY/cHGfwTIck7w1yH6Q5zUw==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/mdast-util-heading-style": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/mdast-util-heading-style/-/mdast-util-heading-style-1.0.6.tgz", + "integrity": "sha512-8ZuuegRqS0KESgjAGW8zTx4tJ3VNIiIaGFNEzFpRSAQBavVc7AvOo9I4g3crcZBfYisHs4seYh0rAVimO6HyOw==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-phrasing": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/mdast-util-phrasing/-/mdast-util-phrasing-3.0.1.tgz", + "integrity": "sha512-WmI1gTXUBJo4/ZmSk79Wcb2HcjPJBzM1nlI/OUWA8yk2X9ik3ffNbBGsU+09BFmXaL1IBb9fiuvq6/KMiNycSg==", + "dev": true, + "dependencies": { + "@types/mdast": "^3.0.0", + "unist-util-is": "^5.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-to-markdown": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/mdast-util-to-markdown/-/mdast-util-to-markdown-1.5.0.tgz", + "integrity": "sha512-bbv7TPv/WC49thZPg3jXuqzuvI45IL2EVAr/KxF0BSdHsU0ceFHOmwQn6evxAh1GaoK/6GQ1wp4R4oW2+LFL/A==", + "dev": true, + "dependencies": { + "@types/mdast": "^3.0.0", + "@types/unist": "^2.0.0", + "longest-streak": "^3.0.0", + "mdast-util-phrasing": "^3.0.0", + "mdast-util-to-string": "^3.0.0", + "micromark-util-decode-string": "^1.0.0", + "unist-util-visit": "^4.0.0", + "zwitch": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-to-string": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-3.2.0.tgz", + "integrity": "sha512-V4Zn/ncyN1QNSqSBxTrMOLpjr+IKdHl2v3KVLoWmDPscP4r9GcCi71gjgvUV1SFSKh92AjAG4peFuBl2/YgCJg==", + "dev": true, + "dependencies": { + "@types/mdast": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/memorystream": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/memorystream/-/memorystream-0.3.1.tgz", + "integrity": "sha512-S3UwM3yj5mtUSEfP41UZmt/0SCoVYUcU1rkXv+BQ5Ig8ndL4sPoJNBUJERafdPb5jjHJGuMgytgKvKIf58XNBw==", + "dev": true, + "engines": { + "node": ">= 0.10.0" + } + }, + "node_modules/merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", + "dev": true + }, + "node_modules/micromark": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/micromark/-/micromark-3.1.0.tgz", + "integrity": "sha512-6Mj0yHLdUZjHnOPgr5xfWIMqMWS12zDN6iws9SLuSz76W8jTtAv24MN4/CL7gJrl5vtxGInkkqDv/JIoRsQOvA==", + "dev": true, + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "@types/debug": "^4.0.0", + "debug": "^4.0.0", + "decode-named-character-reference": "^1.0.0", + "micromark-core-commonmark": "^1.0.1", + "micromark-factory-space": "^1.0.0", + "micromark-util-character": "^1.0.0", + "micromark-util-chunked": "^1.0.0", + "micromark-util-combine-extensions": "^1.0.0", + "micromark-util-decode-numeric-character-reference": "^1.0.0", + "micromark-util-encode": "^1.0.0", + "micromark-util-normalize-identifier": "^1.0.0", + "micromark-util-resolve-all": "^1.0.0", + "micromark-util-sanitize-uri": "^1.0.0", + "micromark-util-subtokenize": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.1", + "uvu": "^0.5.0" + } + }, + "node_modules/micromark-core-commonmark": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/micromark-core-commonmark/-/micromark-core-commonmark-1.0.6.tgz", + "integrity": "sha512-K+PkJTxqjFfSNkfAhp4GB+cZPfQd6dxtTXnf+RjZOV7T4EEXnvgzOcnp+eSTmpGk9d1S9sL6/lqrgSNn/s0HZA==", + "dev": true, + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "decode-named-character-reference": "^1.0.0", + "micromark-factory-destination": "^1.0.0", + "micromark-factory-label": "^1.0.0", + "micromark-factory-space": "^1.0.0", + "micromark-factory-title": "^1.0.0", + "micromark-factory-whitespace": "^1.0.0", + "micromark-util-character": "^1.0.0", + "micromark-util-chunked": "^1.0.0", + "micromark-util-classify-character": "^1.0.0", + "micromark-util-html-tag-name": "^1.0.0", + "micromark-util-normalize-identifier": "^1.0.0", + "micromark-util-resolve-all": "^1.0.0", + "micromark-util-subtokenize": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.1", + "uvu": "^0.5.0" + } + }, + "node_modules/micromark-extension-footnote": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/micromark-extension-footnote/-/micromark-extension-footnote-0.3.2.tgz", + "integrity": "sha512-gr/BeIxbIWQoUm02cIfK7mdMZ/fbroRpLsck4kvFtjbzP4yi+OPVbnukTc/zy0i7spC2xYE/dbX1Sur8BEDJsQ==", + "dependencies": { + "micromark": "~2.11.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-extension-footnote/node_modules/micromark": { + "version": "2.11.4", + "resolved": "https://registry.npmjs.org/micromark/-/micromark-2.11.4.tgz", + "integrity": "sha512-+WoovN/ppKolQOFIAajxi7Lu9kInbPxFuTBVEavFcL8eAfVstoc5MocPmqBeAdBOJV00uaVjegzH4+MA0DN/uA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "debug": "^4.0.0", + "parse-entities": "^2.0.0" + } + }, + "node_modules/micromark-extension-frontmatter": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/micromark-extension-frontmatter/-/micromark-extension-frontmatter-0.2.2.tgz", + "integrity": "sha512-q6nPLFCMTLtfsctAuS0Xh4vaolxSFUWUWR6PZSrXXiRy+SANGllpcqdXFv2z07l0Xz/6Hl40hK0ffNCJPH2n1A==", + "dependencies": { + "fault": "^1.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-extension-frontmatter/node_modules/fault": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/fault/-/fault-1.0.4.tgz", + "integrity": "sha512-CJ0HCB5tL5fYTEA7ToAq5+kTwd++Borf1/bifxd9iT70QcXr4MRrO3Llf8Ifs70q+SJcGHFtnIE/Nw6giCtECA==", + "dependencies": { + "format": "^0.2.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/micromark-extension-gfm": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/micromark-extension-gfm/-/micromark-extension-gfm-0.3.3.tgz", + "integrity": "sha512-oVN4zv5/tAIA+l3GbMi7lWeYpJ14oQyJ3uEim20ktYFAcfX1x3LNlFGGlmrZHt7u9YlKExmyJdDGaTt6cMSR/A==", + "dependencies": { + "micromark": "~2.11.0", + "micromark-extension-gfm-autolink-literal": "~0.5.0", + "micromark-extension-gfm-strikethrough": "~0.6.5", + "micromark-extension-gfm-table": "~0.4.0", + "micromark-extension-gfm-tagfilter": "~0.3.0", + "micromark-extension-gfm-task-list-item": "~0.3.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-extension-gfm-autolink-literal": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/micromark-extension-gfm-autolink-literal/-/micromark-extension-gfm-autolink-literal-0.5.7.tgz", + "integrity": "sha512-ePiDGH0/lhcngCe8FtH4ARFoxKTUelMp4L7Gg2pujYD5CSMb9PbblnyL+AAMud/SNMyusbS2XDSiPIRcQoNFAw==", + "dependencies": { + "micromark": "~2.11.3" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-extension-gfm-autolink-literal/node_modules/micromark": { + "version": "2.11.4", + "resolved": "https://registry.npmjs.org/micromark/-/micromark-2.11.4.tgz", + "integrity": "sha512-+WoovN/ppKolQOFIAajxi7Lu9kInbPxFuTBVEavFcL8eAfVstoc5MocPmqBeAdBOJV00uaVjegzH4+MA0DN/uA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "debug": "^4.0.0", + "parse-entities": "^2.0.0" + } + }, + "node_modules/micromark-extension-gfm-strikethrough": { + "version": "0.6.5", + "resolved": "https://registry.npmjs.org/micromark-extension-gfm-strikethrough/-/micromark-extension-gfm-strikethrough-0.6.5.tgz", + "integrity": "sha512-PpOKlgokpQRwUesRwWEp+fHjGGkZEejj83k9gU5iXCbDG+XBA92BqnRKYJdfqfkrRcZRgGuPuXb7DaK/DmxOhw==", + "dependencies": { + "micromark": "~2.11.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-extension-gfm-strikethrough/node_modules/micromark": { + "version": "2.11.4", + "resolved": "https://registry.npmjs.org/micromark/-/micromark-2.11.4.tgz", + "integrity": "sha512-+WoovN/ppKolQOFIAajxi7Lu9kInbPxFuTBVEavFcL8eAfVstoc5MocPmqBeAdBOJV00uaVjegzH4+MA0DN/uA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "debug": "^4.0.0", + "parse-entities": "^2.0.0" + } + }, + "node_modules/micromark-extension-gfm-table": { + "version": "0.4.3", + "resolved": "https://registry.npmjs.org/micromark-extension-gfm-table/-/micromark-extension-gfm-table-0.4.3.tgz", + "integrity": "sha512-hVGvESPq0fk6ALWtomcwmgLvH8ZSVpcPjzi0AjPclB9FsVRgMtGZkUcpE0zgjOCFAznKepF4z3hX8z6e3HODdA==", + "dependencies": { + "micromark": "~2.11.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-extension-gfm-table/node_modules/micromark": { + "version": "2.11.4", + "resolved": "https://registry.npmjs.org/micromark/-/micromark-2.11.4.tgz", + "integrity": "sha512-+WoovN/ppKolQOFIAajxi7Lu9kInbPxFuTBVEavFcL8eAfVstoc5MocPmqBeAdBOJV00uaVjegzH4+MA0DN/uA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "debug": "^4.0.0", + "parse-entities": "^2.0.0" + } + }, + "node_modules/micromark-extension-gfm-tagfilter": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/micromark-extension-gfm-tagfilter/-/micromark-extension-gfm-tagfilter-0.3.0.tgz", + "integrity": "sha512-9GU0xBatryXifL//FJH+tAZ6i240xQuFrSL7mYi8f4oZSbc+NvXjkrHemeYP0+L4ZUT+Ptz3b95zhUZnMtoi/Q==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-extension-gfm-task-list-item": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/micromark-extension-gfm-task-list-item/-/micromark-extension-gfm-task-list-item-0.3.3.tgz", + "integrity": "sha512-0zvM5iSLKrc/NQl84pZSjGo66aTGd57C1idmlWmE87lkMcXrTxg1uXa/nXomxJytoje9trP0NDLvw4bZ/Z/XCQ==", + "dependencies": { + "micromark": "~2.11.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-extension-gfm-task-list-item/node_modules/micromark": { + "version": "2.11.4", + "resolved": "https://registry.npmjs.org/micromark/-/micromark-2.11.4.tgz", + "integrity": "sha512-+WoovN/ppKolQOFIAajxi7Lu9kInbPxFuTBVEavFcL8eAfVstoc5MocPmqBeAdBOJV00uaVjegzH4+MA0DN/uA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "debug": "^4.0.0", + "parse-entities": "^2.0.0" + } + }, + "node_modules/micromark-extension-gfm/node_modules/micromark": { + "version": "2.11.4", + "resolved": "https://registry.npmjs.org/micromark/-/micromark-2.11.4.tgz", + "integrity": "sha512-+WoovN/ppKolQOFIAajxi7Lu9kInbPxFuTBVEavFcL8eAfVstoc5MocPmqBeAdBOJV00uaVjegzH4+MA0DN/uA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "debug": "^4.0.0", + "parse-entities": "^2.0.0" + } + }, + "node_modules/micromark-factory-destination": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/micromark-factory-destination/-/micromark-factory-destination-1.0.0.tgz", + "integrity": "sha512-eUBA7Rs1/xtTVun9TmV3gjfPz2wEwgK5R5xcbIM5ZYAtvGF6JkyaDsj0agx8urXnO31tEO6Ug83iVH3tdedLnw==", + "dev": true, + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "micromark-util-character": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0" + } + }, + "node_modules/micromark-factory-label": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/micromark-factory-label/-/micromark-factory-label-1.0.2.tgz", + "integrity": "sha512-CTIwxlOnU7dEshXDQ+dsr2n+yxpP0+fn271pu0bwDIS8uqfFcumXpj5mLn3hSC8iw2MUr6Gx8EcKng1dD7i6hg==", + "dev": true, + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "micromark-util-character": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0", + "uvu": "^0.5.0" + } + }, + "node_modules/micromark-factory-space": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-1.0.0.tgz", + "integrity": "sha512-qUmqs4kj9a5yBnk3JMLyjtWYN6Mzfcx8uJfi5XAveBniDevmZasdGBba5b4QsvRcAkmvGo5ACmSUmyGiKTLZew==", + "dev": true, + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "micromark-util-character": "^1.0.0", + "micromark-util-types": "^1.0.0" + } + }, + "node_modules/micromark-factory-title": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/micromark-factory-title/-/micromark-factory-title-1.0.2.tgz", + "integrity": "sha512-zily+Nr4yFqgMGRKLpTVsNl5L4PMu485fGFDOQJQBl2NFpjGte1e86zC0da93wf97jrc4+2G2GQudFMHn3IX+A==", + "dev": true, + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "micromark-factory-space": "^1.0.0", + "micromark-util-character": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0", + "uvu": "^0.5.0" + } + }, + "node_modules/micromark-factory-whitespace": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/micromark-factory-whitespace/-/micromark-factory-whitespace-1.0.0.tgz", + "integrity": "sha512-Qx7uEyahU1lt1RnsECBiuEbfr9INjQTGa6Err+gF3g0Tx4YEviPbqqGKNv/NrBaE7dVHdn1bVZKM/n5I/Bak7A==", + "dev": true, + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "micromark-factory-space": "^1.0.0", + "micromark-util-character": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0" + } + }, + "node_modules/micromark-util-character": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-1.1.0.tgz", + "integrity": "sha512-agJ5B3unGNJ9rJvADMJ5ZiYjBRyDpzKAOk01Kpi1TKhlT1APx3XZk6eN7RtSz1erbWHC2L8T3xLZ81wdtGRZzg==", + "dev": true, + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0" + } + }, + "node_modules/micromark-util-chunked": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-chunked/-/micromark-util-chunked-1.0.0.tgz", + "integrity": "sha512-5e8xTis5tEZKgesfbQMKRCyzvffRRUX+lK/y+DvsMFdabAicPkkZV6gO+FEWi9RfuKKoxxPwNL+dFF0SMImc1g==", + "dev": true, + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "micromark-util-symbol": "^1.0.0" + } + }, + "node_modules/micromark-util-classify-character": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-classify-character/-/micromark-util-classify-character-1.0.0.tgz", + "integrity": "sha512-F8oW2KKrQRb3vS5ud5HIqBVkCqQi224Nm55o5wYLzY/9PwHGXC01tr3d7+TqHHz6zrKQ72Okwtvm/xQm6OVNZA==", + "dev": true, + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "micromark-util-character": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0" + } + }, + "node_modules/micromark-util-combine-extensions": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-combine-extensions/-/micromark-util-combine-extensions-1.0.0.tgz", + "integrity": "sha512-J8H058vFBdo/6+AsjHp2NF7AJ02SZtWaVUjsayNFeAiydTxUwViQPxN0Hf8dp4FmCQi0UUFovFsEyRSUmFH3MA==", + "dev": true, + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "micromark-util-chunked": "^1.0.0", + "micromark-util-types": "^1.0.0" + } + }, + "node_modules/micromark-util-decode-numeric-character-reference": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-decode-numeric-character-reference/-/micromark-util-decode-numeric-character-reference-1.0.0.tgz", + "integrity": "sha512-OzO9AI5VUtrTD7KSdagf4MWgHMtET17Ua1fIpXTpuhclCqD8egFWo85GxSGvxgkGS74bEahvtM0WP0HjvV0e4w==", + "dev": true, + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "micromark-util-symbol": "^1.0.0" + } + }, + "node_modules/micromark-util-decode-string": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/micromark-util-decode-string/-/micromark-util-decode-string-1.0.2.tgz", + "integrity": "sha512-DLT5Ho02qr6QWVNYbRZ3RYOSSWWFuH3tJexd3dgN1odEuPNxCngTCXJum7+ViRAd9BbdxCvMToPOD/IvVhzG6Q==", + "dev": true, + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "decode-named-character-reference": "^1.0.0", + "micromark-util-character": "^1.0.0", + "micromark-util-decode-numeric-character-reference": "^1.0.0", + "micromark-util-symbol": "^1.0.0" + } + }, + "node_modules/micromark-util-encode": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-encode/-/micromark-util-encode-1.0.1.tgz", + "integrity": "sha512-U2s5YdnAYexjKDel31SVMPbfi+eF8y1U4pfiRW/Y8EFVCy/vgxk/2wWTxzcqE71LHtCuCzlBDRU2a5CQ5j+mQA==", + "dev": true, + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ] + }, + "node_modules/micromark-util-html-tag-name": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-html-tag-name/-/micromark-util-html-tag-name-1.1.0.tgz", + "integrity": "sha512-BKlClMmYROy9UiV03SwNmckkjn8QHVaWkqoAqzivabvdGcwNGMMMH/5szAnywmsTBUzDsU57/mFi0sp4BQO6dA==", + "dev": true, + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ] + }, + "node_modules/micromark-util-normalize-identifier": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-normalize-identifier/-/micromark-util-normalize-identifier-1.0.0.tgz", + "integrity": "sha512-yg+zrL14bBTFrQ7n35CmByWUTFsgst5JhA4gJYoty4Dqzj4Z4Fr/DHekSS5aLfH9bdlfnSvKAWsAgJhIbogyBg==", + "dev": true, + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "micromark-util-symbol": "^1.0.0" + } + }, + "node_modules/micromark-util-resolve-all": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-resolve-all/-/micromark-util-resolve-all-1.0.0.tgz", + "integrity": "sha512-CB/AGk98u50k42kvgaMM94wzBqozSzDDaonKU7P7jwQIuH2RU0TeBqGYJz2WY1UdihhjweivStrJ2JdkdEmcfw==", + "dev": true, + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "micromark-util-types": "^1.0.0" + } + }, + "node_modules/micromark-util-sanitize-uri": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-1.1.0.tgz", + "integrity": "sha512-RoxtuSCX6sUNtxhbmsEFQfWzs8VN7cTctmBPvYivo98xb/kDEoTCtJQX5wyzIYEmk/lvNFTat4hL8oW0KndFpg==", + "dev": true, + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "micromark-util-character": "^1.0.0", + "micromark-util-encode": "^1.0.0", + "micromark-util-symbol": "^1.0.0" + } + }, + "node_modules/micromark-util-subtokenize": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/micromark-util-subtokenize/-/micromark-util-subtokenize-1.0.2.tgz", + "integrity": "sha512-d90uqCnXp/cy4G881Ub4psE57Sf8YD0pim9QdjCRNjfas2M1u6Lbt+XZK9gnHL2XFhnozZiEdCa9CNfXSfQ6xA==", + "dev": true, + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "micromark-util-chunked": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0", + "uvu": "^0.5.0" + } + }, + "node_modules/micromark-util-symbol": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-1.0.1.tgz", + "integrity": "sha512-oKDEMK2u5qqAptasDAwWDXq0tG9AssVwAx3E9bBF3t/shRIGsWIRG+cGafs2p/SnDSOecnt6hZPCE2o6lHfFmQ==", + "dev": true, + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ] + }, + "node_modules/micromark-util-types": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-1.0.2.tgz", + "integrity": "sha512-DCfg/T8fcrhrRKTPjRrw/5LLvdGV7BHySf/1LOZx7TzWZdYRjogNtyNq885z3nNallwr3QUKARjqvHqX1/7t+w==", + "dev": true, + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ] + }, + "node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dev": true, + "dependencies": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/mimic-fn": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz", + "integrity": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/mri": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/mri/-/mri-1.2.0.tgz", + "integrity": "sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + }, + "node_modules/mvdan-sh": { + "version": "0.10.1", + "resolved": "https://registry.npmjs.org/mvdan-sh/-/mvdan-sh-0.10.1.tgz", + "integrity": "sha512-kMbrH0EObaKmK3nVRKUIIya1dpASHIEusM13S4V1ViHFuxuNxCo+arxoa6j/dbV22YBGjl7UKJm9QQKJ2Crzhg==", + "dev": true + }, + "node_modules/natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", + "dev": true + }, + "node_modules/nice-try": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", + "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==", + "dev": true + }, + "node_modules/normalize-package-data": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", + "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", + "dev": true, + "dependencies": { + "hosted-git-info": "^2.1.4", + "resolve": "^1.10.0", + "semver": "2 || 3 || 4 || 5", + "validate-npm-package-license": "^3.0.1" + } + }, + "node_modules/normalize-package-data/node_modules/semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true, + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/npm-run-all": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/npm-run-all/-/npm-run-all-4.1.5.tgz", + "integrity": "sha512-Oo82gJDAVcaMdi3nuoKFavkIHBRVqQ1qvMb+9LHk/cF4P6B2m8aP04hGf7oL6wZ9BuGwX1onlLhpuoofSyoQDQ==", + "dev": true, + "dependencies": { + "ansi-styles": "^3.2.1", + "chalk": "^2.4.1", + "cross-spawn": "^6.0.5", + "memorystream": "^0.3.1", + "minimatch": "^3.0.4", + "pidtree": "^0.3.0", + "read-pkg": "^3.0.0", + "shell-quote": "^1.6.1", + "string.prototype.padend": "^3.0.0" + }, + "bin": { + "npm-run-all": "bin/npm-run-all/index.js", + "run-p": "bin/run-p/index.js", + "run-s": "bin/run-s/index.js" + }, + "engines": { + "node": ">= 4" + } + }, + "node_modules/npm-run-all/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/npm-run-all/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/npm-run-all/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/npm-run-all/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "dev": true + }, + "node_modules/npm-run-all/node_modules/cross-spawn": { + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", + "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "dev": true, + "dependencies": { + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + }, + "engines": { + "node": ">=4.8" + } + }, + "node_modules/npm-run-all/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "dev": true, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/npm-run-all/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/npm-run-all/node_modules/path-key": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", + "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/npm-run-all/node_modules/pidtree": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/pidtree/-/pidtree-0.3.1.tgz", + "integrity": "sha512-qQbW94hLHEqCg7nhby4yRC7G2+jYHY4Rguc2bjw7Uug4GIJuu1tvf2uHaZv5Q8zdt+WKJ6qK1FOI6amaWUo5FA==", + "dev": true, + "bin": { + "pidtree": "bin/pidtree.js" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/npm-run-all/node_modules/semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true, + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/npm-run-all/node_modules/shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", + "dev": true, + "dependencies": { + "shebang-regex": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/npm-run-all/node_modules/shebang-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", + "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/npm-run-all/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/npm-run-all/node_modules/which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dev": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "which": "bin/which" + } + }, + "node_modules/npm-run-path": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.1.0.tgz", + "integrity": "sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==", + "dev": true, + "dependencies": { + "path-key": "^4.0.0" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/npm-run-path/node_modules/path-key": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz", + "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/object-inspect": { + "version": "1.12.3", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.3.tgz", + "integrity": "sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "dev": true, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object.assign": { + "version": "4.1.4", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz", + "integrity": "sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "has-symbols": "^1.0.3", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.values": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.6.tgz", + "integrity": "sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "dev": true, + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/onetime": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-6.0.0.tgz", + "integrity": "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==", + "dev": true, + "dependencies": { + "mimic-fn": "^4.0.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/open": { + "version": "8.4.2", + "resolved": "https://registry.npmjs.org/open/-/open-8.4.2.tgz", + "integrity": "sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==", + "dev": true, + "dependencies": { + "define-lazy-prop": "^2.0.0", + "is-docker": "^2.1.1", + "is-wsl": "^2.2.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/optionator": { + "version": "0.9.1", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz", + "integrity": "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==", + "dev": true, + "dependencies": { + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0", + "word-wrap": "^1.2.3" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dev": true, + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "dev": true, + "dependencies": { + "p-limit": "^3.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-map": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz", + "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==", + "dev": true, + "dependencies": { + "aggregate-error": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "dev": true, + "dependencies": { + "callsites": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/parse-entities": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/parse-entities/-/parse-entities-2.0.0.tgz", + "integrity": "sha512-kkywGpCcRYhqQIchaWqZ875wzpS/bMKhz5HnN3p7wveJTkTtyAB/AlnS0f8DFSqYW1T82t6yEAkEcB+A1I3MbQ==", + "dependencies": { + "character-entities": "^1.0.0", + "character-entities-legacy": "^1.0.0", + "character-reference-invalid": "^1.0.0", + "is-alphanumerical": "^1.0.0", + "is-decimal": "^1.0.0", + "is-hexadecimal": "^1.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/parse-entities/node_modules/character-entities": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/character-entities/-/character-entities-1.2.4.tgz", + "integrity": "sha512-iBMyeEHxfVnIakwOuDXpVkc54HijNgCyQB2w0VfGQThle6NXn50zU6V/u+LDhxHcDUPojn6Kpga3PTAD8W1bQw==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/parse-json": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==", + "dev": true, + "dependencies": { + "error-ex": "^1.3.1", + "json-parse-better-errors": "^1.0.1" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "dev": true + }, + "node_modules/path-type": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz", + "integrity": "sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==", + "dev": true, + "dependencies": { + "pify": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/picocolors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", + "dev": true + }, + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true, + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/pidtree": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/pidtree/-/pidtree-0.6.0.tgz", + "integrity": "sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==", + "dev": true, + "bin": { + "pidtree": "bin/pidtree.js" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/pluralize": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/pluralize/-/pluralize-8.0.0.tgz", + "integrity": "sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==", + "engines": { + "node": ">=4" + } + }, + "node_modules/prelude-ls": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", + "dev": true, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/prettier": { + "version": "2.8.7", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.8.7.tgz", + "integrity": "sha512-yPngTo3aXUUmyuTjeTUT75txrf+aMh9FiD7q9ZE/i6r0bPb22g4FsE6Y338PQX1bmfy08i9QQCB7/rcUAVntfw==", + "dev": true, + "bin": { + "prettier": "bin-prettier.js" + }, + "engines": { + "node": ">=10.13.0" + }, + "funding": { + "url": "https://github.com/prettier/prettier?sponsor=1" + } + }, + "node_modules/prettier-linter-helpers": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz", + "integrity": "sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==", + "dev": true, + "dependencies": { + "fast-diff": "^1.1.2" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/prettier-plugin-sh": { + "version": "0.12.8", + "resolved": "https://registry.npmjs.org/prettier-plugin-sh/-/prettier-plugin-sh-0.12.8.tgz", + "integrity": "sha512-VOq8h2Gn5UzrCIKm4p/nAScXJbN09HdyFDknAcxt6Qu/tv/juu9bahxSrcnM9XWYA+Spz1F1ANJ4LhfwB7+Q1Q==", + "dev": true, + "dependencies": { + "mvdan-sh": "^0.10.1", + "sh-syntax": "^0.3.6", + "synckit": "^0.8.1" + }, + "engines": { + "node": "^12.20.0 || ^14.18.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/unts" + }, + "peerDependencies": { + "prettier": "^2.0.0" + } + }, + "node_modules/punycode": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz", + "integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/read-pkg": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-3.0.0.tgz", + "integrity": "sha512-BLq/cCO9two+lBgiTYNqD6GdtK8s4NpaWrl6/rCO9w0TUS8oJl7cmToOZfRYllKTISY6nt1U7jQ53brmKqY6BA==", + "dev": true, + "dependencies": { + "load-json-file": "^4.0.0", + "normalize-package-data": "^2.3.2", + "path-type": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "dev": true, + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dev": true, + "dependencies": { + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" + } + }, + "node_modules/regexp.prototype.flags": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.0.tgz", + "integrity": "sha512-0SutC3pNudRKgquxGoRGIz946MZVHqbNfPjBdxeOhBrdgDKlRoXmYLQN9xRbrR09ZXWeGAdPuif7egofn6v5LA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "functions-have-names": "^1.2.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/remark": { + "version": "14.0.2", + "resolved": "https://registry.npmjs.org/remark/-/remark-14.0.2.tgz", + "integrity": "sha512-A3ARm2V4BgiRXaUo5K0dRvJ1lbogrbXnhkJRmD0yw092/Yl0kOCZt1k9ZeElEwkZsWGsMumz6qL5MfNJH9nOBA==", + "dev": true, + "dependencies": { + "@types/mdast": "^3.0.0", + "remark-parse": "^10.0.0", + "remark-stringify": "^10.0.0", + "unified": "^10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-cli": { + "version": "10.0.1", + "resolved": "https://registry.npmjs.org/remark-cli/-/remark-cli-10.0.1.tgz", + "integrity": "sha512-+eln31zLE69JwBMoa8nd2sPC0DFZyiWgBrshL8aKb3L2XXTRMuEKWE/IAtNPYEtcktceAQw+OpmqVy8pAmGOwQ==", + "dev": true, + "dependencies": { + "remark": "^14.0.0", + "unified-args": "^9.0.0" + }, + "bin": { + "remark": "cli.js" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-footnotes": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/remark-footnotes/-/remark-footnotes-3.0.0.tgz", + "integrity": "sha512-ZssAvH9FjGYlJ/PBVKdSmfyPc3Cz4rTWgZLI4iE/SX8Nt5l3o3oEjv3wwG5VD7xOjktzdwp5coac+kJV9l4jgg==", + "dependencies": { + "mdast-util-footnote": "^0.1.0", + "micromark-extension-footnote": "^0.3.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-frontmatter": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/remark-frontmatter/-/remark-frontmatter-3.0.0.tgz", + "integrity": "sha512-mSuDd3svCHs+2PyO29h7iijIZx4plX0fheacJcAoYAASfgzgVIcXGYSq9GFyYocFLftQs8IOmmkgtOovs6d4oA==", + "dependencies": { + "mdast-util-frontmatter": "^0.2.0", + "micromark-extension-frontmatter": "^0.2.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-gfm": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/remark-gfm/-/remark-gfm-1.0.0.tgz", + "integrity": "sha512-KfexHJCiqvrdBZVbQ6RopMZGwaXz6wFJEfByIuEwGf0arvITHjiKKZ1dpXujjH9KZdm1//XJQwgfnJ3lmXaDPA==", + "dependencies": { + "mdast-util-gfm": "^0.1.0", + "micromark-extension-gfm": "^0.3.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/remark-lint/-/remark-lint-8.0.0.tgz", + "integrity": "sha512-ESI8qJQ/TIRjABDnqoFsTiZntu+FRifZ5fJ77yX63eIDijl/arvmDvT+tAf75/Nm5BFL4R2JFUtkHRGVjzYUsg==", + "dependencies": { + "remark-message-control": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-blockquote-indentation": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/remark-lint-blockquote-indentation/-/remark-lint-blockquote-indentation-2.0.1.tgz", + "integrity": "sha512-uJ9az/Ms9AapnkWpLSCJfawBfnBI2Tn1yUsPNqIFv6YM98ymetItUMyP6ng9NFPqDvTQBbiarulkgoEo0wcafQ==", + "dependencies": { + "mdast-util-to-string": "^1.0.2", + "pluralize": "^8.0.0", + "unified-lint-rule": "^1.0.0", + "unist-util-generated": "^1.1.0", + "unist-util-position": "^3.0.0", + "unist-util-visit": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-blockquote-indentation/node_modules/mdast-util-to-string": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-1.1.0.tgz", + "integrity": "sha512-jVU0Nr2B9X3MU4tSK7JP1CMkSvOj7X5l/GboG1tKRw52lLF1x2Ju92Ms9tNetCcbfX3hzlM73zYo2NKkWSfF/A==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-blockquote-indentation/node_modules/unist-util-is": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-4.1.0.tgz", + "integrity": "sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-blockquote-indentation/node_modules/unist-util-visit": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-2.0.3.tgz", + "integrity": "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0", + "unist-util-visit-parents": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-blockquote-indentation/node_modules/unist-util-visit-parents": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz", + "integrity": "sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-checkbox-character-style": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/remark-lint-checkbox-character-style/-/remark-lint-checkbox-character-style-3.0.0.tgz", + "integrity": "sha512-691OJ5RdBRXVpvnOEiBhMB4uhHJSHVttw83O4qyAkNBiqxa1Axqhsz8FgmzYgRLQbOGd2ncVUcXG1LOJt6C0DQ==", + "dependencies": { + "unified-lint-rule": "^1.0.0", + "unist-util-generated": "^1.1.0", + "unist-util-position": "^3.0.0", + "unist-util-visit": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-checkbox-character-style/node_modules/unist-util-is": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-4.1.0.tgz", + "integrity": "sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-checkbox-character-style/node_modules/unist-util-visit": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-2.0.3.tgz", + "integrity": "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0", + "unist-util-visit-parents": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-checkbox-character-style/node_modules/unist-util-visit-parents": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz", + "integrity": "sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-checkbox-content-indent": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/remark-lint-checkbox-content-indent/-/remark-lint-checkbox-content-indent-3.0.0.tgz", + "integrity": "sha512-+T4+hoY85qZE2drD2rCe14vF7fAgD3Kv2fkFd1HRvv3M5Riy148w/4YeoBI5U5BpybGTVUeEUYLCeJ8zbJLjkw==", + "dependencies": { + "unified-lint-rule": "^1.0.0", + "unist-util-generated": "^1.1.0", + "unist-util-position": "^3.0.0", + "unist-util-visit": "^2.0.0", + "vfile-location": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-checkbox-content-indent/node_modules/unist-util-is": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-4.1.0.tgz", + "integrity": "sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-checkbox-content-indent/node_modules/unist-util-visit": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-2.0.3.tgz", + "integrity": "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0", + "unist-util-visit-parents": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-checkbox-content-indent/node_modules/unist-util-visit-parents": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz", + "integrity": "sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-code-block-style": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/remark-lint-code-block-style/-/remark-lint-code-block-style-2.0.1.tgz", + "integrity": "sha512-eRhmnColmSxJhO61GHZkvO67SpHDshVxs2j3+Zoc5Y1a4zQT2133ZAij04XKaBFfsVLjhbY/+YOWxgvtjx2nmA==", + "dependencies": { + "unified-lint-rule": "^1.0.0", + "unist-util-generated": "^1.1.0", + "unist-util-position": "^3.0.0", + "unist-util-visit": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-code-block-style/node_modules/unist-util-is": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-4.1.0.tgz", + "integrity": "sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-code-block-style/node_modules/unist-util-visit": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-2.0.3.tgz", + "integrity": "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0", + "unist-util-visit-parents": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-code-block-style/node_modules/unist-util-visit-parents": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz", + "integrity": "sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-definition-case": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/remark-lint-definition-case/-/remark-lint-definition-case-2.0.1.tgz", + "integrity": "sha512-M+XlThtQwEJLQnQb5Gi6xZdkw92rGp7m2ux58WMw/Qlcg02WgHR/O0OcHPe5VO5hMJrtI+cGG5T0svsCgRZd3w==", + "dependencies": { + "unified-lint-rule": "^1.0.0", + "unist-util-generated": "^1.1.0", + "unist-util-position": "^3.0.0", + "unist-util-visit": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-definition-case/node_modules/unist-util-is": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-4.1.0.tgz", + "integrity": "sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-definition-case/node_modules/unist-util-visit": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-2.0.3.tgz", + "integrity": "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0", + "unist-util-visit-parents": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-definition-case/node_modules/unist-util-visit-parents": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz", + "integrity": "sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-definition-spacing": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/remark-lint-definition-spacing/-/remark-lint-definition-spacing-2.0.1.tgz", + "integrity": "sha512-xK9DOQO5MudITD189VyUiMHBIKltW1oc55L7Fti3i9DedXoBG7Phm+V9Mm7IdWzCVkquZVgVk63xQdqzSQRrSQ==", + "dependencies": { + "unified-lint-rule": "^1.0.0", + "unist-util-generated": "^1.1.0", + "unist-util-position": "^3.0.0", + "unist-util-visit": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-definition-spacing/node_modules/unist-util-is": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-4.1.0.tgz", + "integrity": "sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-definition-spacing/node_modules/unist-util-visit": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-2.0.3.tgz", + "integrity": "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0", + "unist-util-visit-parents": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-definition-spacing/node_modules/unist-util-visit-parents": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz", + "integrity": "sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-emphasis-marker": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/remark-lint-emphasis-marker/-/remark-lint-emphasis-marker-2.0.1.tgz", + "integrity": "sha512-7mpbAUrSnHiWRyGkbXRL5kfSKY9Cs8cdob7Fw+Z02/pufXMF4yRWaegJ5NTUu1RE+SKlF44wtWWjvcIoyY6/aw==", + "dependencies": { + "unified-lint-rule": "^1.0.0", + "unist-util-generated": "^1.1.0", + "unist-util-position": "^3.0.0", + "unist-util-visit": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-emphasis-marker/node_modules/unist-util-is": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-4.1.0.tgz", + "integrity": "sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-emphasis-marker/node_modules/unist-util-visit": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-2.0.3.tgz", + "integrity": "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0", + "unist-util-visit-parents": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-emphasis-marker/node_modules/unist-util-visit-parents": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz", + "integrity": "sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-fenced-code-flag": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/remark-lint-fenced-code-flag/-/remark-lint-fenced-code-flag-2.0.1.tgz", + "integrity": "sha512-+COnWHlS/h02FMxoZWxNlZW3Y8M0cQQpmx3aNCbG7xkyMyCKsMLg9EmRvYHHIbxQCuF3JT0WWx5AySqlc7d+NA==", + "dependencies": { + "unified-lint-rule": "^1.0.0", + "unist-util-generated": "^1.1.0", + "unist-util-position": "^3.0.0", + "unist-util-visit": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-fenced-code-flag/node_modules/unist-util-is": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-4.1.0.tgz", + "integrity": "sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-fenced-code-flag/node_modules/unist-util-visit": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-2.0.3.tgz", + "integrity": "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0", + "unist-util-visit-parents": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-fenced-code-flag/node_modules/unist-util-visit-parents": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz", + "integrity": "sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-fenced-code-marker": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/remark-lint-fenced-code-marker/-/remark-lint-fenced-code-marker-2.0.1.tgz", + "integrity": "sha512-lujpjm04enn3ma6lITlttadld6eQ1OWAEcT3qZzvFHp+zPraC0yr0eXlvtDN/0UH8mrln/QmGiZp3i8IdbucZg==", + "dependencies": { + "unified-lint-rule": "^1.0.0", + "unist-util-generated": "^1.1.0", + "unist-util-position": "^3.0.0", + "unist-util-visit": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-fenced-code-marker/node_modules/unist-util-is": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-4.1.0.tgz", + "integrity": "sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-fenced-code-marker/node_modules/unist-util-visit": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-2.0.3.tgz", + "integrity": "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0", + "unist-util-visit-parents": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-fenced-code-marker/node_modules/unist-util-visit-parents": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz", + "integrity": "sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-file-extension": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/remark-lint-file-extension/-/remark-lint-file-extension-1.0.5.tgz", + "integrity": "sha512-oVQdf5vEomwHkfQ7R/mgmsWW2H/t9kSvnrxtVoNOHr+qnOEafKKDn+AFhioN2kqtjCZBAjSSrePs6xGKmXKDTw==", + "dependencies": { + "unified-lint-rule": "^1.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-final-definition": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/remark-lint-final-definition/-/remark-lint-final-definition-2.1.0.tgz", + "integrity": "sha512-83K7n2icOHPfBzbR5Mr1o7cu8gOjD8FwJkFx/ly+rW+8SHfjCj4D3WOFGQ1xVdmHjfomBDXXDSNo2oiacADVXQ==", + "dependencies": { + "unified-lint-rule": "^1.0.0", + "unist-util-generated": "^1.1.0", + "unist-util-position": "^3.0.0", + "unist-util-visit": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-final-definition/node_modules/unist-util-is": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-4.1.0.tgz", + "integrity": "sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-final-definition/node_modules/unist-util-visit": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-2.0.3.tgz", + "integrity": "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0", + "unist-util-visit-parents": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-final-definition/node_modules/unist-util-visit-parents": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz", + "integrity": "sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-final-newline": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/remark-lint-final-newline/-/remark-lint-final-newline-1.0.5.tgz", + "integrity": "sha512-rfLlW8+Fz2dqnaEgU4JwLA55CQF1T4mfSs/GwkkeUCGPenvEYwSkCN2KO2Gr1dy8qPoOdTFE1rSufLjmeTW5HA==", + "dependencies": { + "unified-lint-rule": "^1.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-first-heading-level": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/remark-lint-first-heading-level/-/remark-lint-first-heading-level-2.0.1.tgz", + "integrity": "sha512-XoK/eLfnz1VSA8QkfMbdbvlCqOwgw29MAWEGC4Cv0666nTcY9uWHlZ/SV/20YNmuEVdfCA+92v92mM486qcASQ==", + "dependencies": { + "unified-lint-rule": "^1.0.0", + "unist-util-generated": "^1.1.0", + "unist-util-visit": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-first-heading-level/node_modules/unist-util-is": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-4.1.0.tgz", + "integrity": "sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-first-heading-level/node_modules/unist-util-visit": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-2.0.3.tgz", + "integrity": "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0", + "unist-util-visit-parents": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-first-heading-level/node_modules/unist-util-visit-parents": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz", + "integrity": "sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-hard-break-spaces": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/remark-lint-hard-break-spaces/-/remark-lint-hard-break-spaces-2.0.1.tgz", + "integrity": "sha512-Qfn/BMQFamHhtbfLrL8Co/dbYJFLRL4PGVXZ5wumkUO5f9FkZC2RsV+MD9lisvGTkJK0ZEJrVVeaPbUIFM0OAw==", + "dependencies": { + "unified-lint-rule": "^1.0.0", + "unist-util-generated": "^1.1.0", + "unist-util-position": "^3.0.0", + "unist-util-visit": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-hard-break-spaces/node_modules/unist-util-is": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-4.1.0.tgz", + "integrity": "sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-hard-break-spaces/node_modules/unist-util-visit": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-2.0.3.tgz", + "integrity": "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0", + "unist-util-visit-parents": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-hard-break-spaces/node_modules/unist-util-visit-parents": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz", + "integrity": "sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-heading-increment": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/remark-lint-heading-increment/-/remark-lint-heading-increment-2.0.1.tgz", + "integrity": "sha512-bYDRmv/lk3nuWXs2VSD1B4FneGT6v7a74FuVmb305hyEMmFSnneJvVgnOJxyKlbNlz12pq1IQ6MhlJBda/SFtQ==", + "dependencies": { + "unified-lint-rule": "^1.0.0", + "unist-util-generated": "^1.1.0", + "unist-util-visit": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-heading-increment/node_modules/unist-util-is": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-4.1.0.tgz", + "integrity": "sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-heading-increment/node_modules/unist-util-visit": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-2.0.3.tgz", + "integrity": "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0", + "unist-util-visit-parents": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-heading-increment/node_modules/unist-util-visit-parents": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz", + "integrity": "sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-heading-style": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/remark-lint-heading-style/-/remark-lint-heading-style-2.0.1.tgz", + "integrity": "sha512-IrFLNs0M5Vbn9qg51AYhGUfzgLAcDOjh2hFGMz3mx664dV6zLcNZOPSdJBBJq3JQR4gKpoXcNwN1+FFaIATj+A==", + "dependencies": { + "mdast-util-heading-style": "^1.0.2", + "unified-lint-rule": "^1.0.0", + "unist-util-generated": "^1.1.0", + "unist-util-visit": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-heading-style/node_modules/unist-util-is": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-4.1.0.tgz", + "integrity": "sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-heading-style/node_modules/unist-util-visit": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-2.0.3.tgz", + "integrity": "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0", + "unist-util-visit-parents": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-heading-style/node_modules/unist-util-visit-parents": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz", + "integrity": "sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-linebreak-style": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/remark-lint-linebreak-style/-/remark-lint-linebreak-style-2.0.1.tgz", + "integrity": "sha512-4xp3uqJVGvIjCxM3xrTuLRZ8xYM0PZGsvRTCU10t5HYNljPCRSdtY/x98qohEAwS0uleINXz5zpZZT4FGktQnQ==", + "dependencies": { + "unified-lint-rule": "^1.0.0", + "vfile-location": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-link-title-style": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/remark-lint-link-title-style/-/remark-lint-link-title-style-2.0.1.tgz", + "integrity": "sha512-+Q7Ew8qpOQzjqbDF6sUHmn9mKgje+m2Ho8Xz7cEnGIRaKJgtJzkn/dZqQM/az0gn3zaN6rOuwTwqw4EsT5EsIg==", + "dependencies": { + "unified-lint-rule": "^1.0.0", + "unist-util-generated": "^1.1.0", + "unist-util-position": "^3.0.0", + "unist-util-visit": "^2.0.0", + "vfile-location": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-link-title-style/node_modules/unist-util-is": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-4.1.0.tgz", + "integrity": "sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-link-title-style/node_modules/unist-util-visit": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-2.0.3.tgz", + "integrity": "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0", + "unist-util-visit-parents": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-link-title-style/node_modules/unist-util-visit-parents": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz", + "integrity": "sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-list-item-bullet-indent": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/remark-lint-list-item-bullet-indent/-/remark-lint-list-item-bullet-indent-3.0.0.tgz", + "integrity": "sha512-X2rleWP8XReC4LXKF7Qi5vYiPJkA4Grx5zxsjHofFrVRz6j0PYOCuz7vsO+ZzMunFMfom6FODnscSWz4zouDVw==", + "dependencies": { + "pluralize": "^8.0.0", + "unified-lint-rule": "^1.0.0", + "unist-util-generated": "^1.1.0", + "unist-util-visit": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-list-item-bullet-indent/node_modules/unist-util-is": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-4.1.0.tgz", + "integrity": "sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-list-item-bullet-indent/node_modules/unist-util-visit": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-2.0.3.tgz", + "integrity": "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0", + "unist-util-visit-parents": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-list-item-bullet-indent/node_modules/unist-util-visit-parents": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz", + "integrity": "sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-list-item-content-indent": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/remark-lint-list-item-content-indent/-/remark-lint-list-item-content-indent-2.0.1.tgz", + "integrity": "sha512-OzUMqavxyptAdG7vWvBSMc9mLW9ZlTjbW4XGayzczd3KIr6Uwp3NEFXKx6MLtYIM/vwBqMrPQUrObOC7A2uBpQ==", + "dependencies": { + "pluralize": "^8.0.0", + "unified-lint-rule": "^1.0.0", + "unist-util-generated": "^1.1.0", + "unist-util-position": "^3.0.0", + "unist-util-visit": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-list-item-content-indent/node_modules/unist-util-is": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-4.1.0.tgz", + "integrity": "sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-list-item-content-indent/node_modules/unist-util-visit": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-2.0.3.tgz", + "integrity": "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0", + "unist-util-visit-parents": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-list-item-content-indent/node_modules/unist-util-visit-parents": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz", + "integrity": "sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-list-item-indent": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/remark-lint-list-item-indent/-/remark-lint-list-item-indent-2.0.1.tgz", + "integrity": "sha512-4IKbA9GA14Q9PzKSQI6KEHU/UGO36CSQEjaDIhmb9UOhyhuzz4vWhnSIsxyI73n9nl9GGRAMNUSGzr4pQUFwTA==", + "dependencies": { + "pluralize": "^8.0.0", + "unified-lint-rule": "^1.0.0", + "unist-util-generated": "^1.1.0", + "unist-util-position": "^3.0.0", + "unist-util-visit": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-list-item-indent/node_modules/unist-util-is": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-4.1.0.tgz", + "integrity": "sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-list-item-indent/node_modules/unist-util-visit": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-2.0.3.tgz", + "integrity": "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0", + "unist-util-visit-parents": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-list-item-indent/node_modules/unist-util-visit-parents": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz", + "integrity": "sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-list-item-spacing": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/remark-lint-list-item-spacing/-/remark-lint-list-item-spacing-3.0.0.tgz", + "integrity": "sha512-SRUVonwdN3GOSFb6oIYs4IfJxIVR+rD0nynkX66qEO49/qDDT1PPvkndis6Nyew5+t+2V/Db9vqllL6SWbnEtw==", + "dependencies": { + "unified-lint-rule": "^1.0.0", + "unist-util-generated": "^1.1.0", + "unist-util-position": "^3.0.0", + "unist-util-visit": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-list-item-spacing/node_modules/unist-util-is": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-4.1.0.tgz", + "integrity": "sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-list-item-spacing/node_modules/unist-util-visit": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-2.0.3.tgz", + "integrity": "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0", + "unist-util-visit-parents": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-list-item-spacing/node_modules/unist-util-visit-parents": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz", + "integrity": "sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-maximum-heading-length": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/remark-lint-maximum-heading-length/-/remark-lint-maximum-heading-length-2.0.1.tgz", + "integrity": "sha512-1CjJ71YDqEpoOjUnc4wrwZV8ZGXWUIYRYeGoarAy3QKHepJL9M+zkdbOxZDfhc3tjVoDW/LWcgsW+DEpczgiMA==", + "dependencies": { + "mdast-util-to-string": "^1.0.2", + "unified-lint-rule": "^1.0.0", + "unist-util-generated": "^1.1.0", + "unist-util-visit": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-maximum-heading-length/node_modules/mdast-util-to-string": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-1.1.0.tgz", + "integrity": "sha512-jVU0Nr2B9X3MU4tSK7JP1CMkSvOj7X5l/GboG1tKRw52lLF1x2Ju92Ms9tNetCcbfX3hzlM73zYo2NKkWSfF/A==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-maximum-heading-length/node_modules/unist-util-is": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-4.1.0.tgz", + "integrity": "sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-maximum-heading-length/node_modules/unist-util-visit": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-2.0.3.tgz", + "integrity": "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0", + "unist-util-visit-parents": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-maximum-heading-length/node_modules/unist-util-visit-parents": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz", + "integrity": "sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-maximum-line-length": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/remark-lint-maximum-line-length/-/remark-lint-maximum-line-length-2.0.3.tgz", + "integrity": "sha512-zyWHBFh1oPAy+gkaVFXiTHYP2WwriIeBtaarDqkweytw0+qmuikjVMJTWbQ3+XfYBreD7KKDM9SI79nkp0/IZQ==", + "dependencies": { + "unified-lint-rule": "^1.0.0", + "unist-util-generated": "^1.1.0", + "unist-util-position": "^3.0.0", + "unist-util-visit": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-maximum-line-length/node_modules/unist-util-is": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-4.1.0.tgz", + "integrity": "sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-maximum-line-length/node_modules/unist-util-visit": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-2.0.3.tgz", + "integrity": "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0", + "unist-util-visit-parents": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-maximum-line-length/node_modules/unist-util-visit-parents": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz", + "integrity": "sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-auto-link-without-protocol": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/remark-lint-no-auto-link-without-protocol/-/remark-lint-no-auto-link-without-protocol-2.0.1.tgz", + "integrity": "sha512-TFcXxzucsfBb/5uMqGF1rQA+WJJqm1ZlYQXyvJEXigEZ8EAxsxZGPb/gOQARHl/y0vymAuYxMTaChavPKaBqpQ==", + "dependencies": { + "mdast-util-to-string": "^1.0.2", + "unified-lint-rule": "^1.0.0", + "unist-util-generated": "^1.1.0", + "unist-util-position": "^3.0.0", + "unist-util-visit": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-auto-link-without-protocol/node_modules/mdast-util-to-string": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-1.1.0.tgz", + "integrity": "sha512-jVU0Nr2B9X3MU4tSK7JP1CMkSvOj7X5l/GboG1tKRw52lLF1x2Ju92Ms9tNetCcbfX3hzlM73zYo2NKkWSfF/A==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-auto-link-without-protocol/node_modules/unist-util-is": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-4.1.0.tgz", + "integrity": "sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-auto-link-without-protocol/node_modules/unist-util-visit": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-2.0.3.tgz", + "integrity": "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0", + "unist-util-visit-parents": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-auto-link-without-protocol/node_modules/unist-util-visit-parents": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz", + "integrity": "sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-blockquote-without-marker": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/remark-lint-no-blockquote-without-marker/-/remark-lint-no-blockquote-without-marker-4.0.0.tgz", + "integrity": "sha512-Y59fMqdygRVFLk1gpx2Qhhaw5IKOR9T38Wf7pjR07bEFBGUNfcoNVIFMd1TCJfCPQxUyJzzSqfZz/KT7KdUuiQ==", + "dependencies": { + "unified-lint-rule": "^1.0.0", + "unist-util-generated": "^1.0.0", + "unist-util-position": "^3.0.0", + "unist-util-visit": "^2.0.0", + "vfile-location": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-blockquote-without-marker/node_modules/unist-util-is": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-4.1.0.tgz", + "integrity": "sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-blockquote-without-marker/node_modules/unist-util-visit": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-2.0.3.tgz", + "integrity": "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0", + "unist-util-visit-parents": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-blockquote-without-marker/node_modules/unist-util-visit-parents": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz", + "integrity": "sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-consecutive-blank-lines": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/remark-lint-no-consecutive-blank-lines/-/remark-lint-no-consecutive-blank-lines-3.0.0.tgz", + "integrity": "sha512-kmzLlOLrapBKEngwYFTdCZDmeOaze6adFPB7G0EdymD9V1mpAlnneINuOshRLEDKK5fAhXKiZXxdGIaMPkiXrA==", + "dependencies": { + "pluralize": "^8.0.0", + "unified-lint-rule": "^1.0.0", + "unist-util-generated": "^1.1.0", + "unist-util-position": "^3.0.0", + "unist-util-visit": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-consecutive-blank-lines/node_modules/unist-util-is": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-4.1.0.tgz", + "integrity": "sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-consecutive-blank-lines/node_modules/unist-util-visit": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-2.0.3.tgz", + "integrity": "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0", + "unist-util-visit-parents": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-consecutive-blank-lines/node_modules/unist-util-visit-parents": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz", + "integrity": "sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-duplicate-defined-urls": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/remark-lint-no-duplicate-defined-urls/-/remark-lint-no-duplicate-defined-urls-1.0.1.tgz", + "integrity": "sha512-fUx4grm0oboxl+uwsHsRQGp3A929ujORrFoB/5eIyMDslxrgMTHKYf9ylxcC5yBRypkZi9AhFWBJ/wtVrxYEAg==", + "dependencies": { + "unified-lint-rule": "^1.0.0", + "unist-util-generated": "^1.0.0", + "unist-util-position": "^3.0.0", + "unist-util-stringify-position": "^2.0.0", + "unist-util-visit": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-duplicate-defined-urls/node_modules/unist-util-is": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-4.1.0.tgz", + "integrity": "sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-duplicate-defined-urls/node_modules/unist-util-stringify-position": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-2.0.3.tgz", + "integrity": "sha512-3faScn5I+hy9VleOq/qNbAd6pAx7iH5jYBMS9I1HgQVijz/4mv5Bvw5iw1sC/90CODiKo81G/ps8AJrISn687g==", + "dependencies": { + "@types/unist": "^2.0.2" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-duplicate-defined-urls/node_modules/unist-util-visit": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-2.0.3.tgz", + "integrity": "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0", + "unist-util-visit-parents": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-duplicate-defined-urls/node_modules/unist-util-visit-parents": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz", + "integrity": "sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-duplicate-definitions": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/remark-lint-no-duplicate-definitions/-/remark-lint-no-duplicate-definitions-2.0.1.tgz", + "integrity": "sha512-XL22benJZB01m+aOse91nsu1IMFqeWJWme9QvoJuxIcBROO1BG1VoqLOkwNcawE/M/0CkvTo5rfx0eMlcnXOIw==", + "dependencies": { + "unified-lint-rule": "^1.0.0", + "unist-util-generated": "^1.1.0", + "unist-util-position": "^3.0.0", + "unist-util-stringify-position": "^2.0.0", + "unist-util-visit": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-duplicate-definitions/node_modules/unist-util-is": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-4.1.0.tgz", + "integrity": "sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-duplicate-definitions/node_modules/unist-util-stringify-position": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-2.0.3.tgz", + "integrity": "sha512-3faScn5I+hy9VleOq/qNbAd6pAx7iH5jYBMS9I1HgQVijz/4mv5Bvw5iw1sC/90CODiKo81G/ps8AJrISn687g==", + "dependencies": { + "@types/unist": "^2.0.2" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-duplicate-definitions/node_modules/unist-util-visit": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-2.0.3.tgz", + "integrity": "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0", + "unist-util-visit-parents": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-duplicate-definitions/node_modules/unist-util-visit-parents": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz", + "integrity": "sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-duplicate-headings": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/remark-lint-no-duplicate-headings/-/remark-lint-no-duplicate-headings-2.0.1.tgz", + "integrity": "sha512-F6AP0FJcHIlkmq0pHX0J5EGvLA9LfhuYTvnNO8y3kvflHeRjFkDyt2foz/taXR8OcLQR51n/jIJiwrrSMbiauw==", + "dependencies": { + "mdast-util-to-string": "^1.0.2", + "unified-lint-rule": "^1.0.0", + "unist-util-generated": "^1.1.0", + "unist-util-position": "^3.0.0", + "unist-util-stringify-position": "^2.0.0", + "unist-util-visit": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-duplicate-headings-in-section": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/remark-lint-no-duplicate-headings-in-section/-/remark-lint-no-duplicate-headings-in-section-2.0.2.tgz", + "integrity": "sha512-qtpTAvXgKkzDas7z3H3tzf/SDQIZ6zPEc9CaGZS/qMA2b5ORfQv+EC8NueK4x6+el19kbS6tX23iEnPXVYq1VQ==", + "dependencies": { + "mdast-util-to-string": "^1.0.2", + "unified-lint-rule": "^1.0.0", + "unist-util-generated": "^1.1.0", + "unist-util-position": "^3.0.0", + "unist-util-stringify-position": "^2.0.0", + "unist-util-visit": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-duplicate-headings-in-section/node_modules/mdast-util-to-string": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-1.1.0.tgz", + "integrity": "sha512-jVU0Nr2B9X3MU4tSK7JP1CMkSvOj7X5l/GboG1tKRw52lLF1x2Ju92Ms9tNetCcbfX3hzlM73zYo2NKkWSfF/A==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-duplicate-headings-in-section/node_modules/unist-util-is": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-4.1.0.tgz", + "integrity": "sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-duplicate-headings-in-section/node_modules/unist-util-stringify-position": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-2.0.3.tgz", + "integrity": "sha512-3faScn5I+hy9VleOq/qNbAd6pAx7iH5jYBMS9I1HgQVijz/4mv5Bvw5iw1sC/90CODiKo81G/ps8AJrISn687g==", + "dependencies": { + "@types/unist": "^2.0.2" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-duplicate-headings-in-section/node_modules/unist-util-visit": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-2.0.3.tgz", + "integrity": "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0", + "unist-util-visit-parents": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-duplicate-headings-in-section/node_modules/unist-util-visit-parents": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz", + "integrity": "sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-duplicate-headings/node_modules/mdast-util-to-string": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-1.1.0.tgz", + "integrity": "sha512-jVU0Nr2B9X3MU4tSK7JP1CMkSvOj7X5l/GboG1tKRw52lLF1x2Ju92Ms9tNetCcbfX3hzlM73zYo2NKkWSfF/A==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-duplicate-headings/node_modules/unist-util-is": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-4.1.0.tgz", + "integrity": "sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-duplicate-headings/node_modules/unist-util-stringify-position": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-2.0.3.tgz", + "integrity": "sha512-3faScn5I+hy9VleOq/qNbAd6pAx7iH5jYBMS9I1HgQVijz/4mv5Bvw5iw1sC/90CODiKo81G/ps8AJrISn687g==", + "dependencies": { + "@types/unist": "^2.0.2" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-duplicate-headings/node_modules/unist-util-visit": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-2.0.3.tgz", + "integrity": "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0", + "unist-util-visit-parents": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-duplicate-headings/node_modules/unist-util-visit-parents": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz", + "integrity": "sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-emphasis-as-heading": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/remark-lint-no-emphasis-as-heading/-/remark-lint-no-emphasis-as-heading-2.0.1.tgz", + "integrity": "sha512-z86+yWtVivtuGIxIC4g9RuATbgZgOgyLcnaleonJ7/HdGTYssjJNyqCJweaWSLoaI0akBQdDwmtJahW5iuX3/g==", + "dependencies": { + "unified-lint-rule": "^1.0.0", + "unist-util-generated": "^1.1.0", + "unist-util-visit": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-emphasis-as-heading/node_modules/unist-util-is": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-4.1.0.tgz", + "integrity": "sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-emphasis-as-heading/node_modules/unist-util-visit": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-2.0.3.tgz", + "integrity": "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0", + "unist-util-visit-parents": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-emphasis-as-heading/node_modules/unist-util-visit-parents": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz", + "integrity": "sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-empty-url": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/remark-lint-no-empty-url/-/remark-lint-no-empty-url-2.0.1.tgz", + "integrity": "sha512-CBO5hgxlHWrnBPex0GfKZy6ORe2wkLrrHODVPUpLplDA72cQbDzQKedHGgh76euGDs+jvP7RO+IljozdLLfSTw==", + "dependencies": { + "unified-lint-rule": "^1.0.0", + "unist-util-generated": "^1.1.0", + "unist-util-visit": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-empty-url/node_modules/unist-util-is": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-4.1.0.tgz", + "integrity": "sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-empty-url/node_modules/unist-util-visit": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-2.0.3.tgz", + "integrity": "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0", + "unist-util-visit-parents": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-empty-url/node_modules/unist-util-visit-parents": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz", + "integrity": "sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-file-name-articles": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/remark-lint-no-file-name-articles/-/remark-lint-no-file-name-articles-1.0.5.tgz", + "integrity": "sha512-AQk5eTb3s3TAPPjiglZgqlQj4ycao+gPs8/XkdN1VCPUtewW0GgwoQe7YEuBKayJ6ioN8dGP37Kg/P/PlKaRQA==", + "dependencies": { + "unified-lint-rule": "^1.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-file-name-consecutive-dashes": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/remark-lint-no-file-name-consecutive-dashes/-/remark-lint-no-file-name-consecutive-dashes-1.0.5.tgz", + "integrity": "sha512-Mg2IDsi790/dSdAzwnBnsMYdZm3qC2QgGwqOWcr0TPABJhhjC3p8r5fX4MNMTXI5It7B7bW9+ImmCeLOZiXkLg==", + "dependencies": { + "unified-lint-rule": "^1.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-file-name-irregular-characters": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/remark-lint-no-file-name-irregular-characters/-/remark-lint-no-file-name-irregular-characters-1.0.5.tgz", + "integrity": "sha512-Oe5i99qNUKc2bxmiH421o5B/kqlf1dfjAxpHNLhi2X2dXE91zRGavrlRM/4f4oR0N9Bqb3qB9JZPyMPWrzu9XA==", + "dependencies": { + "unified-lint-rule": "^1.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-file-name-mixed-case": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/remark-lint-no-file-name-mixed-case/-/remark-lint-no-file-name-mixed-case-1.0.5.tgz", + "integrity": "sha512-ilrUCbHZin/ENwr8c3SC2chgkFsizXjBQIB/oZ7gnm1IkCkZPiMyXZAHdpwC/DjbrpGxfMYh9JmIHao4giS5+A==", + "dependencies": { + "unified-lint-rule": "^1.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-file-name-outer-dashes": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/remark-lint-no-file-name-outer-dashes/-/remark-lint-no-file-name-outer-dashes-1.0.6.tgz", + "integrity": "sha512-rT8CmcIlenegS0Yst4maYXdZfqIjBOiRUY8j/KJkORF5tKH+3O1/S07025qPGmcRihzK3w4yO0K8rgkKQw0b9w==", + "dependencies": { + "unified-lint-rule": "^1.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-heading-content-indent": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/remark-lint-no-heading-content-indent/-/remark-lint-no-heading-content-indent-3.0.0.tgz", + "integrity": "sha512-yULDoVSIqKylLDfW6mVUbrHlyEWUSFtVFiKc+/BA412xDIhm8HZLUnP+FsuBC0OzbIZ+bO9Txy52WtO3LGnK1A==", + "dependencies": { + "mdast-util-heading-style": "^1.0.2", + "pluralize": "^8.0.0", + "unified-lint-rule": "^1.0.0", + "unist-util-generated": "^1.1.0", + "unist-util-position": "^3.0.0", + "unist-util-visit": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-heading-content-indent/node_modules/unist-util-is": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-4.1.0.tgz", + "integrity": "sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-heading-content-indent/node_modules/unist-util-visit": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-2.0.3.tgz", + "integrity": "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0", + "unist-util-visit-parents": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-heading-content-indent/node_modules/unist-util-visit-parents": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz", + "integrity": "sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-heading-indent": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/remark-lint-no-heading-indent/-/remark-lint-no-heading-indent-3.0.0.tgz", + "integrity": "sha512-b8ImhLv2AnRDxtYUODplzsl/7IwQ+lqRmD1bwbZgSerEP9MLaULW3SjH37EyA6z+8rCDjvEyppKKU6zec0TCjg==", + "dependencies": { + "pluralize": "^8.0.0", + "unified-lint-rule": "^1.0.0", + "unist-util-generated": "^1.1.0", + "unist-util-position": "^3.0.0", + "unist-util-visit": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-heading-indent/node_modules/unist-util-is": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-4.1.0.tgz", + "integrity": "sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-heading-indent/node_modules/unist-util-visit": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-2.0.3.tgz", + "integrity": "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0", + "unist-util-visit-parents": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-heading-indent/node_modules/unist-util-visit-parents": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz", + "integrity": "sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-heading-like-paragraph": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/remark-lint-no-heading-like-paragraph/-/remark-lint-no-heading-like-paragraph-2.0.1.tgz", + "integrity": "sha512-9JDhpIvs4996PnHF5KUnx8/YN39MvZR0uf+EeVILdJbJ2IUL8BOlGNhMFc0CSmxajtIxobjiS+yzAvLG57pUFw==", + "dependencies": { + "unified-lint-rule": "^1.0.0", + "unist-util-generated": "^1.1.0", + "unist-util-visit": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-heading-like-paragraph/node_modules/unist-util-is": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-4.1.0.tgz", + "integrity": "sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-heading-like-paragraph/node_modules/unist-util-visit": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-2.0.3.tgz", + "integrity": "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0", + "unist-util-visit-parents": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-heading-like-paragraph/node_modules/unist-util-visit-parents": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz", + "integrity": "sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-heading-punctuation": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/remark-lint-no-heading-punctuation/-/remark-lint-no-heading-punctuation-2.0.1.tgz", + "integrity": "sha512-lY/eF6GbMeGu4cSuxfGHyvaQQBIq/6T/o+HvAR5UfxSTxmxZFwbZneAI2lbeR1zPcqOU87NsZ5ZZzWVwdLpPBw==", + "dependencies": { + "mdast-util-to-string": "^1.0.2", + "unified-lint-rule": "^1.0.0", + "unist-util-generated": "^1.1.0", + "unist-util-visit": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-heading-punctuation/node_modules/mdast-util-to-string": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-1.1.0.tgz", + "integrity": "sha512-jVU0Nr2B9X3MU4tSK7JP1CMkSvOj7X5l/GboG1tKRw52lLF1x2Ju92Ms9tNetCcbfX3hzlM73zYo2NKkWSfF/A==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-heading-punctuation/node_modules/unist-util-is": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-4.1.0.tgz", + "integrity": "sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-heading-punctuation/node_modules/unist-util-visit": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-2.0.3.tgz", + "integrity": "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0", + "unist-util-visit-parents": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-heading-punctuation/node_modules/unist-util-visit-parents": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz", + "integrity": "sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-html": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/remark-lint-no-html/-/remark-lint-no-html-2.0.1.tgz", + "integrity": "sha512-fDISacCkZCRgl1MeCx5Fx+eWL0iS2GK1EOETR1yAA0av7LYiF8tUwsP4/iRqcxIT30YoDlYoiNRyprD2eyWsUg==", + "dependencies": { + "unified-lint-rule": "^1.0.0", + "unist-util-generated": "^1.1.0", + "unist-util-visit": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-html/node_modules/unist-util-is": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-4.1.0.tgz", + "integrity": "sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-html/node_modules/unist-util-visit": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-2.0.3.tgz", + "integrity": "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0", + "unist-util-visit-parents": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-html/node_modules/unist-util-visit-parents": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz", + "integrity": "sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-inline-padding": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/remark-lint-no-inline-padding/-/remark-lint-no-inline-padding-3.0.0.tgz", + "integrity": "sha512-3s9uW3Yux9RFC0xV81MQX3bsYs+UY7nPnRuMxeIxgcVwxQ4E/mTJd9QjXUwBhU9kdPtJ5AalngdmOW2Tgar8Cg==", + "dependencies": { + "mdast-util-to-string": "^1.0.2", + "unified-lint-rule": "^1.0.0", + "unist-util-generated": "^1.1.0", + "unist-util-visit": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-inline-padding/node_modules/mdast-util-to-string": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-1.1.0.tgz", + "integrity": "sha512-jVU0Nr2B9X3MU4tSK7JP1CMkSvOj7X5l/GboG1tKRw52lLF1x2Ju92Ms9tNetCcbfX3hzlM73zYo2NKkWSfF/A==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-inline-padding/node_modules/unist-util-is": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-4.1.0.tgz", + "integrity": "sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-inline-padding/node_modules/unist-util-visit": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-2.0.3.tgz", + "integrity": "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0", + "unist-util-visit-parents": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-inline-padding/node_modules/unist-util-visit-parents": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz", + "integrity": "sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-literal-urls": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/remark-lint-no-literal-urls/-/remark-lint-no-literal-urls-2.0.1.tgz", + "integrity": "sha512-IDdKtWOMuKVQIlb1CnsgBoyoTcXU3LppelDFAIZePbRPySVHklTtuK57kacgU5grc7gPM04bZV96eliGrRU7Iw==", + "dependencies": { + "mdast-util-to-string": "^1.0.2", + "unified-lint-rule": "^1.0.0", + "unist-util-generated": "^1.1.0", + "unist-util-position": "^3.0.0", + "unist-util-visit": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-literal-urls/node_modules/mdast-util-to-string": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-1.1.0.tgz", + "integrity": "sha512-jVU0Nr2B9X3MU4tSK7JP1CMkSvOj7X5l/GboG1tKRw52lLF1x2Ju92Ms9tNetCcbfX3hzlM73zYo2NKkWSfF/A==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-literal-urls/node_modules/unist-util-is": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-4.1.0.tgz", + "integrity": "sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-literal-urls/node_modules/unist-util-visit": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-2.0.3.tgz", + "integrity": "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0", + "unist-util-visit-parents": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-literal-urls/node_modules/unist-util-visit-parents": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz", + "integrity": "sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-missing-blank-lines": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/remark-lint-no-missing-blank-lines/-/remark-lint-no-missing-blank-lines-2.0.1.tgz", + "integrity": "sha512-gM46JM8NMFj5PG8pkxOQ0AvkRMEX1lD7UO9b/eqUgYQ6OiJaCG8dInogCd++MVSUDpMMf4FF9dksRM/AOiFgIQ==", + "dependencies": { + "unified-lint-rule": "^1.0.0", + "unist-util-generated": "^1.1.0", + "unist-util-position": "^3.0.0", + "unist-util-visit": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-missing-blank-lines/node_modules/unist-util-is": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-4.1.0.tgz", + "integrity": "sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-missing-blank-lines/node_modules/unist-util-visit": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-2.0.3.tgz", + "integrity": "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0", + "unist-util-visit-parents": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-missing-blank-lines/node_modules/unist-util-visit-parents": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz", + "integrity": "sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-multiple-toplevel-headings": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/remark-lint-no-multiple-toplevel-headings/-/remark-lint-no-multiple-toplevel-headings-2.0.1.tgz", + "integrity": "sha512-VKSItR6c+u3OsE5pUiSmNusERNyQS9Nnji26ezoQ1uvy06k3RypIjmzQqJ/hCkSiF+hoyC3ibtrrGT8gorzCmQ==", + "dependencies": { + "unified-lint-rule": "^1.0.0", + "unist-util-generated": "^1.1.0", + "unist-util-position": "^3.0.0", + "unist-util-stringify-position": "^2.0.0", + "unist-util-visit": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-multiple-toplevel-headings/node_modules/unist-util-is": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-4.1.0.tgz", + "integrity": "sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-multiple-toplevel-headings/node_modules/unist-util-stringify-position": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-2.0.3.tgz", + "integrity": "sha512-3faScn5I+hy9VleOq/qNbAd6pAx7iH5jYBMS9I1HgQVijz/4mv5Bvw5iw1sC/90CODiKo81G/ps8AJrISn687g==", + "dependencies": { + "@types/unist": "^2.0.2" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-multiple-toplevel-headings/node_modules/unist-util-visit": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-2.0.3.tgz", + "integrity": "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0", + "unist-util-visit-parents": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-multiple-toplevel-headings/node_modules/unist-util-visit-parents": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz", + "integrity": "sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-paragraph-content-indent": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/remark-lint-no-paragraph-content-indent/-/remark-lint-no-paragraph-content-indent-3.0.0.tgz", + "integrity": "sha512-breI0QSFAxvs2osc8yAzPqWoi4VfY9ccyV+/WQKOIIU8yTj8swN/kFFqnP7wdeY4O9BSmUJ7bPdWCsmrVworXA==", + "dependencies": { + "unified-lint-rule": "^1.0.0", + "unist-util-position": "^3.0.0", + "unist-util-visit": "^2.0.0", + "vfile-location": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-paragraph-content-indent/node_modules/unist-util-is": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-4.1.0.tgz", + "integrity": "sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-paragraph-content-indent/node_modules/unist-util-visit": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-2.0.3.tgz", + "integrity": "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0", + "unist-util-visit-parents": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-paragraph-content-indent/node_modules/unist-util-visit-parents": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz", + "integrity": "sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-reference-like-url": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/remark-lint-no-reference-like-url/-/remark-lint-no-reference-like-url-2.0.1.tgz", + "integrity": "sha512-MeZtlimw30Hd74tBQOe5xlKXU9K5EGF6q/rj/VU4vfdwmCWI9LBCarxPmqHYkm7sbD3P7k9g5oB4StmWZYr5pQ==", + "dependencies": { + "unified-lint-rule": "^1.0.0", + "unist-util-generated": "^1.1.0", + "unist-util-visit": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-reference-like-url/node_modules/unist-util-is": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-4.1.0.tgz", + "integrity": "sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-reference-like-url/node_modules/unist-util-visit": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-2.0.3.tgz", + "integrity": "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0", + "unist-util-visit-parents": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-reference-like-url/node_modules/unist-util-visit-parents": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz", + "integrity": "sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-shell-dollars": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/remark-lint-no-shell-dollars/-/remark-lint-no-shell-dollars-2.0.2.tgz", + "integrity": "sha512-zhkHZOuyaD3r/TUUkkVqW0OxsR9fnSrAnHIF63nfJoAAUezPOu8D1NBsni6rX8H2DqGbPYkoeWrNsTwiKP0yow==", + "dependencies": { + "unified-lint-rule": "^1.0.0", + "unist-util-generated": "^1.1.0", + "unist-util-visit": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-shell-dollars/node_modules/unist-util-is": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-4.1.0.tgz", + "integrity": "sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-shell-dollars/node_modules/unist-util-visit": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-2.0.3.tgz", + "integrity": "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0", + "unist-util-visit-parents": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-shell-dollars/node_modules/unist-util-visit-parents": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz", + "integrity": "sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-shortcut-reference-image": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/remark-lint-no-shortcut-reference-image/-/remark-lint-no-shortcut-reference-image-2.0.1.tgz", + "integrity": "sha512-2jcZBdnN6ecP7u87gkOVFrvICLXIU5OsdWbo160FvS/2v3qqqwF2e/n/e7D9Jd+KTq1mR1gEVVuTqkWWuh3cig==", + "dependencies": { + "unified-lint-rule": "^1.0.0", + "unist-util-generated": "^1.1.0", + "unist-util-visit": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-shortcut-reference-image/node_modules/unist-util-is": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-4.1.0.tgz", + "integrity": "sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-shortcut-reference-image/node_modules/unist-util-visit": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-2.0.3.tgz", + "integrity": "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0", + "unist-util-visit-parents": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-shortcut-reference-image/node_modules/unist-util-visit-parents": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz", + "integrity": "sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-shortcut-reference-link": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/remark-lint-no-shortcut-reference-link/-/remark-lint-no-shortcut-reference-link-2.0.1.tgz", + "integrity": "sha512-pTZbslG412rrwwGQkIboA8wpBvcjmGFmvugIA+UQR+GfFysKtJ5OZMPGJ98/9CYWjw9Z5m0/EktplZ5TjFjqwA==", + "dependencies": { + "unified-lint-rule": "^1.0.0", + "unist-util-generated": "^1.1.0", + "unist-util-visit": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-shortcut-reference-link/node_modules/unist-util-is": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-4.1.0.tgz", + "integrity": "sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-shortcut-reference-link/node_modules/unist-util-visit": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-2.0.3.tgz", + "integrity": "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0", + "unist-util-visit-parents": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-shortcut-reference-link/node_modules/unist-util-visit-parents": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz", + "integrity": "sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-table-indentation": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/remark-lint-no-table-indentation/-/remark-lint-no-table-indentation-3.0.0.tgz", + "integrity": "sha512-+l7GovI6T+3LhnTtz/SmSRyOb6Fxy6tmaObKHrwb/GAebI/4MhFS1LVo3vbiP/RpPYtyQoFbbuXI55hqBG4ibQ==", + "dependencies": { + "unified-lint-rule": "^1.0.0", + "unist-util-position": "^3.0.0", + "unist-util-visit": "^2.0.0", + "vfile-location": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-table-indentation/node_modules/unist-util-is": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-4.1.0.tgz", + "integrity": "sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-table-indentation/node_modules/unist-util-visit": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-2.0.3.tgz", + "integrity": "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0", + "unist-util-visit-parents": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-table-indentation/node_modules/unist-util-visit-parents": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz", + "integrity": "sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-tabs": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/remark-lint-no-tabs/-/remark-lint-no-tabs-2.0.1.tgz", + "integrity": "sha512-Fy5fMKNA8AsfhRtxyxBnHlGMpDDfns9VSSYv00RiC96qwRD82VhDRM3tYWZRBBxE+j71t6g47x9o/poGC7PThQ==", + "dependencies": { + "unified-lint-rule": "^1.0.0", + "vfile-location": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-undefined-references": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/remark-lint-no-undefined-references/-/remark-lint-no-undefined-references-3.0.0.tgz", + "integrity": "sha512-0hzaJS9GuzSQVOeeNdJr/s66LRQOzp618xuOQPYWHcJdd+SCaRTyWbjMrTM/cCI5L1sYjgurp410NkIBQ32Vqg==", + "dependencies": { + "collapse-white-space": "^1.0.4", + "unified-lint-rule": "^1.0.0", + "unist-util-generated": "^1.1.0", + "unist-util-position": "^3.1.0", + "unist-util-visit": "^2.0.0", + "vfile-location": "^3.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-undefined-references/node_modules/unist-util-is": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-4.1.0.tgz", + "integrity": "sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-undefined-references/node_modules/unist-util-visit": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-2.0.3.tgz", + "integrity": "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0", + "unist-util-visit-parents": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-undefined-references/node_modules/unist-util-visit-parents": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz", + "integrity": "sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-unneeded-full-reference-image": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/remark-lint-no-unneeded-full-reference-image/-/remark-lint-no-unneeded-full-reference-image-2.0.1.tgz", + "integrity": "sha512-ZqkrW6l/n1EmcGdtzBFoDygG2ehd/Wx46Id9Dagg15oLzwvbhp5mJIXArXU2qGrF82w1hfainCaZzyH/OBJtEg==", + "dependencies": { + "collapse-white-space": "^1.0.0", + "unified-lint-rule": "^1.0.0", + "unist-util-generated": "^1.1.0", + "unist-util-visit": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-unneeded-full-reference-image/node_modules/unist-util-is": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-4.1.0.tgz", + "integrity": "sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-unneeded-full-reference-image/node_modules/unist-util-visit": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-2.0.3.tgz", + "integrity": "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0", + "unist-util-visit-parents": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-unneeded-full-reference-image/node_modules/unist-util-visit-parents": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz", + "integrity": "sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-unneeded-full-reference-link": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/remark-lint-no-unneeded-full-reference-link/-/remark-lint-no-unneeded-full-reference-link-2.0.1.tgz", + "integrity": "sha512-OcPQiG6meVpvfydzxkxPdVc8jcXdklQW4gMjY2BevLtVoaIJ+dgNBPazyYHP/0EzpVY2RftD3CZ+5hiLW2rgpA==", + "dependencies": { + "collapse-white-space": "^1.0.0", + "unified-lint-rule": "^1.0.0", + "unist-util-generated": "^1.1.0", + "unist-util-visit": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-unneeded-full-reference-link/node_modules/unist-util-is": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-4.1.0.tgz", + "integrity": "sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-unneeded-full-reference-link/node_modules/unist-util-visit": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-2.0.3.tgz", + "integrity": "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0", + "unist-util-visit-parents": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-unneeded-full-reference-link/node_modules/unist-util-visit-parents": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz", + "integrity": "sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-unused-definitions": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/remark-lint-no-unused-definitions/-/remark-lint-no-unused-definitions-2.0.1.tgz", + "integrity": "sha512-+BMc0BOjc364SvKYLkspmxDch8OaKPbnUGgQBvK0Bmlwy42baR4C9zhwAWBxm0SBy5Z4AyM4G4jKpLXPH40Oxg==", + "dependencies": { + "unified-lint-rule": "^1.0.0", + "unist-util-generated": "^1.1.0", + "unist-util-visit": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-unused-definitions/node_modules/unist-util-is": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-4.1.0.tgz", + "integrity": "sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-unused-definitions/node_modules/unist-util-visit": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-2.0.3.tgz", + "integrity": "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0", + "unist-util-visit-parents": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-unused-definitions/node_modules/unist-util-visit-parents": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz", + "integrity": "sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-ordered-list-marker-style": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/remark-lint-ordered-list-marker-style/-/remark-lint-ordered-list-marker-style-2.0.1.tgz", + "integrity": "sha512-Cnpw1Dn9CHn+wBjlyf4qhPciiJroFOEGmyfX008sQ8uGoPZsoBVIJx76usnHklojSONbpjEDcJCjnOvfAcWW1A==", + "dependencies": { + "unified-lint-rule": "^1.0.0", + "unist-util-generated": "^1.1.0", + "unist-util-position": "^3.0.0", + "unist-util-visit": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-ordered-list-marker-style/node_modules/unist-util-is": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-4.1.0.tgz", + "integrity": "sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-ordered-list-marker-style/node_modules/unist-util-visit": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-2.0.3.tgz", + "integrity": "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0", + "unist-util-visit-parents": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-ordered-list-marker-style/node_modules/unist-util-visit-parents": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz", + "integrity": "sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-ordered-list-marker-value": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/remark-lint-ordered-list-marker-value/-/remark-lint-ordered-list-marker-value-2.0.1.tgz", + "integrity": "sha512-blt9rS7OKxZ2NW8tqojELeyNEwPhhTJGVa+YpUkdEH+KnrdcD7Nzhnj6zfLWOx6jFNZk3jpq5nvLFAPteHaNKg==", + "dependencies": { + "unified-lint-rule": "^1.0.0", + "unist-util-generated": "^1.1.0", + "unist-util-position": "^3.0.0", + "unist-util-visit": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-ordered-list-marker-value/node_modules/unist-util-is": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-4.1.0.tgz", + "integrity": "sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-ordered-list-marker-value/node_modules/unist-util-visit": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-2.0.3.tgz", + "integrity": "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0", + "unist-util-visit-parents": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-ordered-list-marker-value/node_modules/unist-util-visit-parents": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz", + "integrity": "sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-rule-style": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/remark-lint-rule-style/-/remark-lint-rule-style-2.0.1.tgz", + "integrity": "sha512-hz4Ff9UdlYmtO6Czz99WJavCjqCer7Cav4VopXt+yVIikObw96G5bAuLYcVS7hvMUGqC9ZuM02/Y/iq9n8pkAg==", + "dependencies": { + "unified-lint-rule": "^1.0.0", + "unist-util-generated": "^1.1.0", + "unist-util-position": "^3.0.0", + "unist-util-visit": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-rule-style/node_modules/unist-util-is": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-4.1.0.tgz", + "integrity": "sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-rule-style/node_modules/unist-util-visit": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-2.0.3.tgz", + "integrity": "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0", + "unist-util-visit-parents": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-rule-style/node_modules/unist-util-visit-parents": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz", + "integrity": "sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-strong-marker": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/remark-lint-strong-marker/-/remark-lint-strong-marker-2.0.1.tgz", + "integrity": "sha512-8X2IsW1jZ5FmW9PLfQjkL0OVy/J3xdXLcZrG1GTeQKQ91BrPFyEZqUM2oM6Y4S6LGtxWer+neZkPZNroZoRPBQ==", + "dependencies": { + "unified-lint-rule": "^1.0.0", + "unist-util-generated": "^1.1.0", + "unist-util-position": "^3.0.0", + "unist-util-visit": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-strong-marker/node_modules/unist-util-is": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-4.1.0.tgz", + "integrity": "sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-strong-marker/node_modules/unist-util-visit": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-2.0.3.tgz", + "integrity": "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0", + "unist-util-visit-parents": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-strong-marker/node_modules/unist-util-visit-parents": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz", + "integrity": "sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-table-cell-padding": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/remark-lint-table-cell-padding/-/remark-lint-table-cell-padding-3.0.0.tgz", + "integrity": "sha512-sEKrbyFZPZpxI39R8/r+CwUrin9YtyRwVn0SQkNQEZWZcIpylK+bvoKIldvLIXQPob+ZxklL0GPVRzotQMwuWQ==", + "dependencies": { + "unified-lint-rule": "^1.0.0", + "unist-util-generated": "^1.1.0", + "unist-util-position": "^3.0.0", + "unist-util-visit": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-table-cell-padding/node_modules/unist-util-is": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-4.1.0.tgz", + "integrity": "sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-table-cell-padding/node_modules/unist-util-visit": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-2.0.3.tgz", + "integrity": "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0", + "unist-util-visit-parents": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-table-cell-padding/node_modules/unist-util-visit-parents": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz", + "integrity": "sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-table-pipe-alignment": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/remark-lint-table-pipe-alignment/-/remark-lint-table-pipe-alignment-2.0.1.tgz", + "integrity": "sha512-O89U7bp0ja6uQkT2uQrNB76GaPvFabrHiUGhqEUnld21yEdyj7rgS57kn84lZNSuuvN1Oor6bDyCwWQGzzpoOQ==", + "dependencies": { + "unified-lint-rule": "^1.0.0", + "unist-util-generated": "^1.1.0", + "unist-util-position": "^3.0.0", + "unist-util-visit": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-table-pipe-alignment/node_modules/unist-util-is": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-4.1.0.tgz", + "integrity": "sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-table-pipe-alignment/node_modules/unist-util-visit": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-2.0.3.tgz", + "integrity": "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0", + "unist-util-visit-parents": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-table-pipe-alignment/node_modules/unist-util-visit-parents": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz", + "integrity": "sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-table-pipes": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/remark-lint-table-pipes/-/remark-lint-table-pipes-3.0.0.tgz", + "integrity": "sha512-QPokSazEdl0Y8ayUV9UB0Ggn3Jos/RAQwIo0z1KDGnJlGDiF80Jc6iU9RgDNUOjlpQffSLIfSVxH5VVYF/K3uQ==", + "dependencies": { + "unified-lint-rule": "^1.0.0", + "unist-util-generated": "^1.1.0", + "unist-util-position": "^3.0.0", + "unist-util-visit": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-table-pipes/node_modules/unist-util-is": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-4.1.0.tgz", + "integrity": "sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-table-pipes/node_modules/unist-util-visit": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-2.0.3.tgz", + "integrity": "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0", + "unist-util-visit-parents": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-table-pipes/node_modules/unist-util-visit-parents": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz", + "integrity": "sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-unordered-list-marker-style": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/remark-lint-unordered-list-marker-style/-/remark-lint-unordered-list-marker-style-2.0.1.tgz", + "integrity": "sha512-8KIDJNDtgbymEvl3LkrXgdxPMTOndcux3BHhNGB2lU4UnxSpYeHsxcDgirbgU6dqCAfQfvMjPvfYk19QTF9WZA==", + "dependencies": { + "unified-lint-rule": "^1.0.0", + "unist-util-generated": "^1.1.0", + "unist-util-position": "^3.0.0", + "unist-util-visit": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-unordered-list-marker-style/node_modules/unist-util-is": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-4.1.0.tgz", + "integrity": "sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-unordered-list-marker-style/node_modules/unist-util-visit": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-2.0.3.tgz", + "integrity": "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0", + "unist-util-visit-parents": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-unordered-list-marker-style/node_modules/unist-util-visit-parents": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz", + "integrity": "sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-message-control": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/remark-message-control/-/remark-message-control-6.0.0.tgz", + "integrity": "sha512-k9bt7BYc3G7YBdmeAhvd3VavrPa/XlKWR3CyHjr4sLO9xJyly8WHHT3Sp+8HPR8lEUv+/sZaffL7IjMLV0f6BA==", + "dependencies": { + "mdast-comment-marker": "^1.0.0", + "unified-message-control": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-parse": { + "version": "10.0.1", + "resolved": "https://registry.npmjs.org/remark-parse/-/remark-parse-10.0.1.tgz", + "integrity": "sha512-1fUyHr2jLsVOkhbvPRBJ5zTKZZyD6yZzYaWCS6BPBdQ8vEMBCH+9zNCDA6tET/zHCi/jLqjCWtlJZUPk+DbnFw==", + "dev": true, + "dependencies": { + "@types/mdast": "^3.0.0", + "mdast-util-from-markdown": "^1.0.0", + "unified": "^10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-stringify": { + "version": "10.0.2", + "resolved": "https://registry.npmjs.org/remark-stringify/-/remark-stringify-10.0.2.tgz", + "integrity": "sha512-6wV3pvbPvHkbNnWB0wdDvVFHOe1hBRAx1Q/5g/EpH4RppAII6J8Gnwe7VbHuXaoKIF6LAg6ExTel/+kNqSQ7lw==", + "dev": true, + "dependencies": { + "@types/mdast": "^3.0.0", + "mdast-util-to-markdown": "^1.0.0", + "unified": "^10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/repeat-string": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", + "integrity": "sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==", + "engines": { + "node": ">=0.10" + } + }, + "node_modules/resolve": { + "version": "1.22.2", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.2.tgz", + "integrity": "sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g==", + "dev": true, + "dependencies": { + "is-core-module": "^2.11.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/restore-cursor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz", + "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==", + "dev": true, + "dependencies": { + "onetime": "^5.1.0", + "signal-exit": "^3.0.2" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/restore-cursor/node_modules/mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/restore-cursor/node_modules/onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "dev": true, + "dependencies": { + "mimic-fn": "^2.1.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "dev": true, + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" + } + }, + "node_modules/rfdc": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/rfdc/-/rfdc-1.3.0.tgz", + "integrity": "sha512-V2hovdzFbOi77/WajaSMXk2OLm+xNIeQdMMuB7icj7bk6zi2F8GGAxigcnDFpJHbNyNcgyJDiP+8nOrY5cZGrA==", + "dev": true + }, + "node_modules/rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "dev": true, + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "dependencies": { + "queue-microtask": "^1.2.2" + } + }, + "node_modules/rxjs": { + "version": "7.8.0", + "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.8.0.tgz", + "integrity": "sha512-F2+gxDshqmIub1KdvZkaEfGDwLNpPvk9Fs6LD/MyQxNgMds/WH9OdDDXOmxUZpME+iSK3rQCctkL0DYyytUqMg==", + "dev": true, + "dependencies": { + "tslib": "^2.1.0" + } + }, + "node_modules/sade": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/sade/-/sade-1.8.1.tgz", + "integrity": "sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==", + "dev": true, + "dependencies": { + "mri": "^1.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/safe-regex-test": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.0.tgz", + "integrity": "sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.3", + "is-regex": "^1.1.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/sh-syntax": { + "version": "0.3.7", + "resolved": "https://registry.npmjs.org/sh-syntax/-/sh-syntax-0.3.7.tgz", + "integrity": "sha512-xIB/uRniZ9urxAuXp1Ouh/BKSI1VK8RSqfwGj7cV57HvGrFo3vHdJfv8Tdp/cVcxJgXQTkmHr5mG5rqJW8r4wQ==", + "dev": true, + "dependencies": { + "tslib": "^2.4.0" + }, + "engines": { + "node": "^12.20.0 || ^14.18.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/unts" + } + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/shell-quote": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.8.1.tgz", + "integrity": "sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/side-channel": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", + "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.0", + "get-intrinsic": "^1.0.2", + "object-inspect": "^1.9.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", + "dev": true + }, + "node_modules/slice-ansi": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-5.0.0.tgz", + "integrity": "sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ==", + "dev": true, + "dependencies": { + "ansi-styles": "^6.0.0", + "is-fullwidth-code-point": "^4.0.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/slice-ansi?sponsor=1" + } + }, + "node_modules/slice-ansi/node_modules/ansi-styles": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", + "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/sliced": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/sliced/-/sliced-1.0.1.tgz", + "integrity": "sha512-VZBmZP8WU3sMOZm1bdgTadsQbcscK0UM8oKxKVBs4XAhUo2Xxzm/OFMGBkPusxw9xL3Uy8LrzEqGqJhclsr0yA==" + }, + "node_modules/spdx-correct": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.2.0.tgz", + "integrity": "sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==", + "dev": true, + "dependencies": { + "spdx-expression-parse": "^3.0.0", + "spdx-license-ids": "^3.0.0" + } + }, + "node_modules/spdx-exceptions": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz", + "integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==", + "dev": true + }, + "node_modules/spdx-expression-parse": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", + "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", + "dev": true, + "dependencies": { + "spdx-exceptions": "^2.1.0", + "spdx-license-ids": "^3.0.0" + } + }, + "node_modules/spdx-license-ids": { + "version": "3.0.13", + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.13.tgz", + "integrity": "sha512-XkD+zwiqXHikFZm4AX/7JSCXA98U5Db4AFd5XUg/+9UNtnH75+Z9KxtpYiJZx36mUDVOwH83pl7yvCer6ewM3w==", + "dev": true + }, + "node_modules/string_decoder": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", + "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", + "dev": true, + "dependencies": { + "safe-buffer": "~5.2.0" + } + }, + "node_modules/string-argv": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/string-argv/-/string-argv-0.3.1.tgz", + "integrity": "sha512-a1uQGz7IyVy9YwhqjZIZu1c8JO8dNIe20xBmSS6qu9kv++k3JGzCVmprbNN5Kn+BgzD5E7YYwg1CcjuJMRNsvg==", + "dev": true, + "engines": { + "node": ">=0.6.19" + } + }, + "node_modules/string-width": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", + "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", + "dev": true, + "dependencies": { + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/string-width/node_modules/ansi-regex": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", + "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "node_modules/string-width/node_modules/strip-ansi": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.0.1.tgz", + "integrity": "sha512-cXNxvT8dFNRVfhVME3JAe98mkXDYN2O1l7jmcwMnOslDeESg1rF/OZMtK0nRAhiari1unG5cD4jG3rapUAkLbw==", + "dev": true, + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "node_modules/string.prototype.padend": { + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/string.prototype.padend/-/string.prototype.padend-3.1.4.tgz", + "integrity": "sha512-67otBXoksdjsnXXRUq+KMVTdlVRZ2af422Y0aTyTjVaoQkGr3mxl2Bc5emi7dOQ3OGVVQQskmLEWwFXwommpNw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trim": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.7.tgz", + "integrity": "sha512-p6TmeT1T3411M8Cgg9wBTMRtY2q9+PNy9EV1i2lIXUN/btt763oIfxwN3RR8VU6wHX8j/1CFy0L+YuThm6bgOg==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trimend": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.6.tgz", + "integrity": "sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trimstart": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.6.tgz", + "integrity": "sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/strip-final-newline": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-3.0.0.tgz", + "integrity": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/synckit": { + "version": "0.8.5", + "resolved": "https://registry.npmjs.org/synckit/-/synckit-0.8.5.tgz", + "integrity": "sha512-L1dapNV6vu2s/4Sputv8xGsCdAVlb5nRDMFU/E27D44l5U6cw1g0dGd45uLc+OXjNMmF4ntiMdCimzcjFKQI8Q==", + "dev": true, + "dependencies": { + "@pkgr/utils": "^2.3.1", + "tslib": "^2.5.0" + }, + "engines": { + "node": "^14.18.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/unts" + } + }, + "node_modules/text-table": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", + "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", + "dev": true + }, + "node_modules/through": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", + "integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==", + "dev": true + }, + "node_modules/tiny-glob": { + "version": "0.2.9", + "resolved": "https://registry.npmjs.org/tiny-glob/-/tiny-glob-0.2.9.tgz", + "integrity": "sha512-g/55ssRPUjShh+xkfx9UPDXqhckHEsHr4Vd9zX55oSdGZc/MD0m3sferOkwWtp98bv+kcVfEHtRJgBVJzelrzg==", + "dev": true, + "dependencies": { + "globalyzer": "0.1.0", + "globrex": "^0.1.2" + } + }, + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/to-vfile": { + "version": "7.2.4", + "resolved": "https://registry.npmjs.org/to-vfile/-/to-vfile-7.2.4.tgz", + "integrity": "sha512-2eQ+rJ2qGbyw3senPI0qjuM7aut8IYXK6AEoOWb+fJx/mQYzviTckm1wDjq91QYHAPBTYzmdJXxMFA6Mk14mdw==", + "dev": true, + "dependencies": { + "is-buffer": "^2.0.0", + "vfile": "^5.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/trough": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/trough/-/trough-2.1.0.tgz", + "integrity": "sha512-AqTiAOLcj85xS7vQ8QkAV41hPDIJ71XJB4RCUrzo/1GM2CQwhkJGaf9Hgr7BOugMRpgGUrqRg/DrBDl4H40+8g==", + "dev": true, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/tsconfig-paths": { + "version": "3.14.2", + "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.2.tgz", + "integrity": "sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==", + "dev": true, + "dependencies": { + "@types/json5": "^0.0.29", + "json5": "^1.0.2", + "minimist": "^1.2.6", + "strip-bom": "^3.0.0" + } + }, + "node_modules/tslib": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", + "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==", + "dev": true + }, + "node_modules/type-check": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", + "dev": true, + "dependencies": { + "prelude-ls": "^1.2.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/typed-array-length": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.4.tgz", + "integrity": "sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "is-typed-array": "^1.1.9" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typedarray": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", + "integrity": "sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==", + "dev": true + }, + "node_modules/unbox-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", + "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "has-bigints": "^1.0.2", + "has-symbols": "^1.0.3", + "which-boxed-primitive": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/unified": { + "version": "10.1.2", + "resolved": "https://registry.npmjs.org/unified/-/unified-10.1.2.tgz", + "integrity": "sha512-pUSWAi/RAnVy1Pif2kAoeWNBa3JVrx0MId2LASj8G+7AiHWoKZNTomq6LG326T68U7/e263X6fTdcXIy7XnF7Q==", + "dev": true, + "dependencies": { + "@types/unist": "^2.0.0", + "bail": "^2.0.0", + "extend": "^3.0.0", + "is-buffer": "^2.0.0", + "is-plain-obj": "^4.0.0", + "trough": "^2.0.0", + "vfile": "^5.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unified-args": { + "version": "9.0.2", + "resolved": "https://registry.npmjs.org/unified-args/-/unified-args-9.0.2.tgz", + "integrity": "sha512-qSqryjoqfJSII4E4Z2Jx7MhXX2MuUIn6DsrlmL8UnWFdGtrWvEtvm7Rx5fKT5TPUz7q/Fb4oxwIHLCttvAuRLQ==", + "dev": true, + "dependencies": { + "@types/text-table": "^0.2.0", + "camelcase": "^6.0.0", + "chalk": "^4.0.0", + "chokidar": "^3.0.0", + "fault": "^2.0.0", + "json5": "^2.0.0", + "minimist": "^1.0.0", + "text-table": "^0.2.0", + "unified-engine": "^9.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unified-args/node_modules/json5": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", + "dev": true, + "bin": { + "json5": "lib/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/unified-engine": { + "version": "9.1.1", + "resolved": "https://registry.npmjs.org/unified-engine/-/unified-engine-9.1.1.tgz", + "integrity": "sha512-yfXfc9zkoCileXE2lyj58AKQr6JK2HeBE8PxEG1U+P6opNSN4lAPPXEyBxL+ITyOQo0ZRDQmXQD04RwdwMovVg==", + "dev": true, + "dependencies": { + "@types/concat-stream": "^2.0.0", + "@types/debug": "^4.0.0", + "@types/is-empty": "^1.0.0", + "@types/js-yaml": "^4.0.0", + "@types/node": "^17.0.0", + "@types/unist": "^2.0.0", + "concat-stream": "^2.0.0", + "debug": "^4.0.0", + "fault": "^2.0.0", + "glob": "^7.0.0", + "ignore": "^5.0.0", + "is-buffer": "^2.0.0", + "is-empty": "^1.0.0", + "is-plain-obj": "^4.0.0", + "js-yaml": "^4.0.0", + "load-plugin": "^4.0.0", + "parse-json": "^6.0.0", + "to-vfile": "^7.0.0", + "trough": "^2.0.0", + "unist-util-inspect": "^7.0.0", + "vfile-message": "^3.0.0", + "vfile-reporter": "^7.0.0", + "vfile-statistics": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unified-engine/node_modules/parse-json": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-6.0.2.tgz", + "integrity": "sha512-SA5aMiaIjXkAiBrW/yPgLgQAQg42f7K3ACO+2l/zOvtQBwX58DMUsFJXelW2fx3yMBmWOVkR6j1MGsdSbCA4UA==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.16.0", + "error-ex": "^1.3.2", + "json-parse-even-better-errors": "^2.3.1", + "lines-and-columns": "^2.0.2" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/unified-lint-rule": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/unified-lint-rule/-/unified-lint-rule-1.0.6.tgz", + "integrity": "sha512-YPK15YBFwnsVorDFG/u0cVVQN5G2a3V8zv5/N6KN3TCG+ajKtaALcy7u14DCSrJI+gZeyYquFL9cioJXOGXSvg==", + "dependencies": { + "wrapped": "^1.0.1" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unified-message-control": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/unified-message-control/-/unified-message-control-3.0.3.tgz", + "integrity": "sha512-oY5z2n8ugjpNHXOmcgrw0pQeJzavHS0VjPBP21tOcm7rc2C+5Q+kW9j5+gqtf8vfW/8sabbsK5+P+9QPwwEHDA==", + "dependencies": { + "unist-util-visit": "^2.0.0", + "vfile-location": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unified-message-control/node_modules/unist-util-is": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-4.1.0.tgz", + "integrity": "sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unified-message-control/node_modules/unist-util-visit": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-2.0.3.tgz", + "integrity": "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0", + "unist-util-visit-parents": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unified-message-control/node_modules/unist-util-visit-parents": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz", + "integrity": "sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-generated": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/unist-util-generated/-/unist-util-generated-1.1.6.tgz", + "integrity": "sha512-cln2Mm1/CZzN5ttGK7vkoGw+RZ8VcUH6BtGbq98DDtRGquAAOXig1mrBQYelOwMXYS8rK+vZDyyojSjp7JX+Lg==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-inspect": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/unist-util-inspect/-/unist-util-inspect-7.0.2.tgz", + "integrity": "sha512-Op0XnmHUl6C2zo/yJCwhXQSm/SmW22eDZdWP2qdf4WpGrgO1ZxFodq+5zFyeRGasFjJotAnLgfuD1jkcKqiH1Q==", + "dev": true, + "dependencies": { + "@types/unist": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-is": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-5.2.1.tgz", + "integrity": "sha512-u9njyyfEh43npf1M+yGKDGVPbY/JWEemg5nH05ncKPfi+kBbKBJoTdsogMu33uhytuLlv9y0O7GH7fEdwLdLQw==", + "dev": true, + "dependencies": { + "@types/unist": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-position": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/unist-util-position/-/unist-util-position-3.1.0.tgz", + "integrity": "sha512-w+PkwCbYSFw8vpgWD0v7zRCl1FpY3fjDSQ3/N/wNd9Ffa4gPi8+4keqt99N3XW6F99t/mUzp2xAhNmfKWp95QA==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-stringify-position": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-3.0.3.tgz", + "integrity": "sha512-k5GzIBZ/QatR8N5X2y+drfpWG8IDBzdnVj6OInRNWm1oXrzydiaAT2OQiA8DPRRZyAKb9b6I2a6PxYklZD0gKg==", + "dev": true, + "dependencies": { + "@types/unist": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-visit": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-4.1.2.tgz", + "integrity": "sha512-MSd8OUGISqHdVvfY9TPhyK2VdUrPgxkUtWSuMHF6XAAFuL4LokseigBnZtPnJMu+FbynTkFNnFlyjxpVKujMRg==", + "dev": true, + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^5.0.0", + "unist-util-visit-parents": "^5.1.1" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-visit-parents": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-5.1.3.tgz", + "integrity": "sha512-x6+y8g7wWMyQhL1iZfhIPhDAs7Xwbn9nRosDXl7qoPTSCy0yNxnKc+hWokFifWQIDGi154rdUqKvbCa4+1kLhg==", + "dev": true, + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^5.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "dev": true, + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", + "dev": true + }, + "node_modules/uvu": { + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/uvu/-/uvu-0.5.6.tgz", + "integrity": "sha512-+g8ENReyr8YsOc6fv/NVJs2vFdHBnBNdfE49rshrTzDWOlUx4Gq7KOS2GD8eqhy2j+Ejq29+SbKH8yjkAqXqoA==", + "dev": true, + "dependencies": { + "dequal": "^2.0.0", + "diff": "^5.0.0", + "kleur": "^4.0.3", + "sade": "^1.7.3" + }, + "bin": { + "uvu": "bin.js" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/validate-npm-package-license": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", + "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", + "dev": true, + "dependencies": { + "spdx-correct": "^3.0.0", + "spdx-expression-parse": "^3.0.0" + } + }, + "node_modules/vfile": { + "version": "5.3.7", + "resolved": "https://registry.npmjs.org/vfile/-/vfile-5.3.7.tgz", + "integrity": "sha512-r7qlzkgErKjobAmyNIkkSpizsFPYiUPuJb5pNW1RB4JcYVZhs4lIbVqk8XPk033CV/1z8ss5pkax8SuhGpcG8g==", + "dev": true, + "dependencies": { + "@types/unist": "^2.0.0", + "is-buffer": "^2.0.0", + "unist-util-stringify-position": "^3.0.0", + "vfile-message": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/vfile-location": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/vfile-location/-/vfile-location-3.2.0.tgz", + "integrity": "sha512-aLEIZKv/oxuCDZ8lkJGhuhztf/BW4M+iHdCwglA/eWc+vtuRFJj8EtgceYFX4LRjOhCAAiNHsKGssC6onJ+jbA==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/vfile-message": { + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-3.1.4.tgz", + "integrity": "sha512-fa0Z6P8HUrQN4BZaX05SIVXic+7kE3b05PWAtPuYP9QLHsLKYR7/AlLW3NtOrpXRLeawpDLMsVkmk5DG0NXgWw==", + "dev": true, + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-stringify-position": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/vfile-reporter": { + "version": "7.0.5", + "resolved": "https://registry.npmjs.org/vfile-reporter/-/vfile-reporter-7.0.5.tgz", + "integrity": "sha512-NdWWXkv6gcd7AZMvDomlQbK3MqFWL1RlGzMn++/O2TI+68+nqxCPTvLugdOtfSzXmjh+xUyhp07HhlrbJjT+mw==", + "dev": true, + "dependencies": { + "@types/supports-color": "^8.0.0", + "string-width": "^5.0.0", + "supports-color": "^9.0.0", + "unist-util-stringify-position": "^3.0.0", + "vfile": "^5.0.0", + "vfile-message": "^3.0.0", + "vfile-sort": "^3.0.0", + "vfile-statistics": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/vfile-reporter/node_modules/supports-color": { + "version": "9.3.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-9.3.1.tgz", + "integrity": "sha512-knBY82pjmnIzK3NifMo3RxEIRD9E0kIzV4BKcyTZ9+9kWgLMxd4PrsTSMoFQUabgRBbF8KOLRDCyKgNV+iK44Q==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, + "node_modules/vfile-sort": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/vfile-sort/-/vfile-sort-3.0.1.tgz", + "integrity": "sha512-1os1733XY6y0D5x0ugqSeaVJm9lYgj0j5qdcZQFyxlZOSy1jYarL77lLyb5gK4Wqr1d5OxmuyflSO3zKyFnTFw==", + "dev": true, + "dependencies": { + "vfile": "^5.0.0", + "vfile-message": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/vfile-statistics": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/vfile-statistics/-/vfile-statistics-2.0.1.tgz", + "integrity": "sha512-W6dkECZmP32EG/l+dp2jCLdYzmnDBIw6jwiLZSER81oR5AHRcVqL+k3Z+pfH1R73le6ayDkJRMk0sutj1bMVeg==", + "dev": true, + "dependencies": { + "vfile": "^5.0.0", + "vfile-message": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/which-boxed-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", + "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", + "dev": true, + "dependencies": { + "is-bigint": "^1.0.1", + "is-boolean-object": "^1.1.0", + "is-number-object": "^1.0.4", + "is-string": "^1.0.5", + "is-symbol": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-typed-array": { + "version": "1.1.9", + "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.9.tgz", + "integrity": "sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA==", + "dev": true, + "dependencies": { + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-tostringtag": "^1.0.0", + "is-typed-array": "^1.1.10" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/word-wrap": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz", + "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrap-ansi/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "node_modules/wrap-ansi/node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/wrap-ansi/node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/wrapped": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/wrapped/-/wrapped-1.0.1.tgz", + "integrity": "sha512-ZTKuqiTu3WXtL72UKCCnQLRax2IScKH7oQ+mvjbpvNE+NJxIWIemDqqM2GxNr4N16NCjOYpIgpin5pStM7kM5g==", + "dependencies": { + "co": "3.1.0", + "sliced": "^1.0.1" + } + }, + "node_modules/wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", + "dev": true + }, + "node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/yaml": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.2.1.tgz", + "integrity": "sha512-e0WHiYql7+9wr4cWMx3TVQrNwejKaEe7/rHNmQmqRjazfOP5W8PB6Jpebb5o6fIapbz9o9+2ipcaTM2ZwDI6lw==", + "dev": true, + "engines": { + "node": ">= 14" + } + }, + "node_modules/yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/zwitch": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/zwitch/-/zwitch-2.0.4.tgz", + "integrity": "sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==", + "dev": true, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "packages/@svengreb/remark-preset-lint": { + "version": "0.4.0", + "license": "MIT", + "dependencies": { + "remark-footnotes": "^3.0.0", + "remark-frontmatter": "^3.0.0", + "remark-gfm": "^1.0.0", + "remark-lint": "^8.0.0", + "remark-lint-blockquote-indentation": "^2.0.1", + "remark-lint-checkbox-character-style": "^3.0.0", + "remark-lint-checkbox-content-indent": "^3.0.0", + "remark-lint-code-block-style": "^2.0.1", + "remark-lint-definition-case": "^2.0.1", + "remark-lint-definition-spacing": "^2.0.1", + "remark-lint-emphasis-marker": "^2.0.1", + "remark-lint-fenced-code-flag": "^2.0.1", + "remark-lint-fenced-code-marker": "^2.0.1", + "remark-lint-file-extension": "^1.0.5", + "remark-lint-final-definition": "^2.1.0", + "remark-lint-final-newline": "^1.0.5", + "remark-lint-first-heading-level": "^2.0.1", + "remark-lint-hard-break-spaces": "^2.0.1", + "remark-lint-heading-increment": "^2.0.1", + "remark-lint-heading-style": "^2.0.1", + "remark-lint-linebreak-style": "^2.0.1", + "remark-lint-link-title-style": "^2.0.1", + "remark-lint-list-item-bullet-indent": "^3.0.0", + "remark-lint-list-item-content-indent": "^2.0.1", + "remark-lint-list-item-indent": "^2.0.1", + "remark-lint-list-item-spacing": "^3.0.0", + "remark-lint-maximum-heading-length": "^2.0.1", + "remark-lint-maximum-line-length": "^2.0.3", + "remark-lint-no-auto-link-without-protocol": "^2.0.1", + "remark-lint-no-blockquote-without-marker": "^4.0.0", + "remark-lint-no-consecutive-blank-lines": "^3.0.0", + "remark-lint-no-duplicate-defined-urls": "^1.0.1", + "remark-lint-no-duplicate-definitions": "^2.0.1", + "remark-lint-no-duplicate-headings": "^2.0.1", + "remark-lint-no-duplicate-headings-in-section": "^2.0.2", + "remark-lint-no-emphasis-as-heading": "^2.0.1", + "remark-lint-no-empty-url": "^2.0.1", + "remark-lint-no-file-name-articles": "^1.0.5", + "remark-lint-no-file-name-consecutive-dashes": "^1.0.5", + "remark-lint-no-file-name-irregular-characters": "^1.0.5", + "remark-lint-no-file-name-mixed-case": "^1.0.5", + "remark-lint-no-file-name-outer-dashes": "^1.0.6", + "remark-lint-no-heading-content-indent": "^3.0.0", + "remark-lint-no-heading-indent": "^3.0.0", + "remark-lint-no-heading-like-paragraph": "^2.0.1", + "remark-lint-no-heading-punctuation": "^2.0.1", + "remark-lint-no-html": "^2.0.1", + "remark-lint-no-inline-padding": "^3.0.0", + "remark-lint-no-literal-urls": "^2.0.1", + "remark-lint-no-missing-blank-lines": "^2.0.1", + "remark-lint-no-multiple-toplevel-headings": "^2.0.1", + "remark-lint-no-paragraph-content-indent": "^3.0.0", + "remark-lint-no-reference-like-url": "^2.0.1", + "remark-lint-no-shell-dollars": "^2.0.2", + "remark-lint-no-shortcut-reference-image": "^2.0.1", + "remark-lint-no-shortcut-reference-link": "^2.0.1", + "remark-lint-no-table-indentation": "^3.0.0", + "remark-lint-no-tabs": "^2.0.1", + "remark-lint-no-undefined-references": "^3.0.0", + "remark-lint-no-unneeded-full-reference-image": "^2.0.1", + "remark-lint-no-unneeded-full-reference-link": "^2.0.1", + "remark-lint-no-unused-definitions": "^2.0.1", + "remark-lint-ordered-list-marker-style": "^2.0.1", + "remark-lint-ordered-list-marker-value": "^2.0.1", + "remark-lint-rule-style": "^2.0.1", + "remark-lint-strong-marker": "^2.0.1", + "remark-lint-table-cell-padding": "^3.0.0", + "remark-lint-table-pipe-alignment": "^2.0.1", + "remark-lint-table-pipes": "^3.0.0", + "remark-lint-unordered-list-marker-style": "^2.0.1" + }, + "devDependencies": { + "remark-cli": "^10.0.1" + }, + "engines": { + "node": ">=15.13", + "npm": ">=7.7" + }, + "peerDependencies": { + "remark-cli": "^10.0.1" + } + } + } +} diff --git a/package.json b/package.json index bf8da7a..e47c09c 100644 --- a/package.json +++ b/package.json @@ -1,22 +1,19 @@ { - "name": "styleguide-markdown", + "name": "@svengreb/styleguide-markdown", "version": "0.4.0", - "description": "Arctic Ice Studio Markdown code style", - "author": "Arctic Ice Studio (https://www.arcticicestudio.com)", - "contributors": [ - { - "name": "Sven Greb", - "email": "development@svengreb.de", - "url": "https://www.svengreb.de" - } - ], - "homepage": "https://arcticicestudio.github.io/styleguide-markdown", + "description": "An opinionated, yet universally applicable Markdown code style guide", + "author": { + "name": "Sven Greb", + "email": "development@svengreb.de", + "url": "https://www.svengreb.de" + }, + "homepage": "https://github.com/svengreb/styleguide-markdown", "repository": { "type": "git", - "url": "git+https://github.com/arcticicestudio/styleguide-markdown.git" + "url": "git+https://github.com/svengreb/styleguide-markdown.git" }, "bugs": { - "url": "https://github.com/arcticicestudio/styleguide-markdown/issues" + "url": "https://github.com/svengreb/styleguide-markdown/issues" }, "license": "MIT", "private": true, @@ -25,40 +22,33 @@ "npm": ">=7.7" }, "workspaces": [ - "packages/@arcticicestudio/*" + "packages/@svengreb/*" ], "scripts": { - "clean": "del build/", - "docs": "run-s docs:prepare docs:compile", - "docs:compile": "gitbook build src build/docs", - "docs:dev": "run-s docs:compile docs:serve", - "docs:prepare": "gitbook install src", - "docs:serve": "gitbook serve src build/docs", - "format": "run-s format:pretty format:fix", - "format:fix": "eslint --fix .", - "format:pretty": "prettier --write .", - "lint": "run-s lint:*", - "lint:ci": "run-s lint:md lint:ci:*", - "lint:ci:pretty": "prettier --loglevel silent --check .", + "format": "run-s format:*", + "format:js": "eslint --fix .", + "format:pretty": "prettier --ignore-unknown --no-editorconfig --write \"**\"", + "lint": "run-s lint:js lint:md lint:pretty", + "lint:ci": "run-s --continue-on-error lint:js lint:md lint:ci:pretty", + "lint:ci:pretty": "prettier --check --ignore-unknown --loglevel silent --no-editorconfig --no-error-on-unmatched-pattern \"**\"", "lint:js": "eslint .", - "lint:md": "remark --no-stdout . \".github/**/*.md\"", - "lint:pretty": "prettier --check .", + "lint:md": "remark --no-stdout . .github/", + "lint:pretty": "prettier --check --ignore-unknown --no-editorconfig \"**\"", "prepare": "run-s prepare:*", "prepare:husky": "husky install", "test": "npm --workspaces run test" }, "devDependencies": { "@arcticicestudio/eslint-config-base": ">=0.11.0 <1.0.0", - "del-cli": "^3.0.1", - "eslint": "^7.23.0", - "eslint-config-prettier": "^8.1.0", - "eslint-plugin-import": "^2.22.1", - "eslint-plugin-prettier": "^3.3.1", - "gitbook-cli": "2.3.2", - "husky": "^7.0.4", - "lint-staged": "^12.0.4", - "npm-run-all": "^4.1.5", - "prettier": "^2.4.1", - "remark-cli": "^10.0.1" + "eslint": "8.39.0", + "eslint-config-prettier": "8.8.0", + "eslint-plugin-import": "2.27.5", + "eslint-plugin-prettier": "4.2.1", + "husky": "8.0.3", + "lint-staged": "13.2.1", + "npm-run-all": "4.1.5", + "prettier": "2.8.7", + "prettier-plugin-sh": "0.12.8", + "remark-cli": "10.0.1" } } diff --git a/packages/@arcticicestudio/remark-preset-lint/README.md b/packages/@arcticicestudio/remark-preset-lint/README.md deleted file mode 100644 index 735eddb..0000000 --- a/packages/@arcticicestudio/remark-preset-lint/README.md +++ /dev/null @@ -1,124 +0,0 @@ -

- -

The Arctic Ice Studio Markdown code style guide rules as an extensible remark-lint rule preset.

- -

- -

- -

- -This package implements the rules of the [Arctic Ice Studio Markdown style guide][gh-arcticicestudio/styleguide-markdown] as an extensible [remark-lint][gh-remarkjs/remark-lint] rule preset. It supports all [official core rules][gh-remarkjs/remark-lint-blob-docs-rules] and [various plugins][gh-remarkjs/remark-blob-docs-plugins] like the [“frontmatter” Markdown extension][gh-remarkjs/remark-frontmatter] for [YAML][] and [TOML][gh-toml-lang/toml] and [“GitHub Flavoured” Markdown][gh-remarkjs/remark-gfm]. - -## Getting Started - -Note that this package uses [npm version 7.7.0 or higher][gh-blog-npm_v7] as the main package manager, but the documentations also include instructions to work with [Yarn][yarn-classic] (classic / `v1`). - -### Installation - -Add the package as development dependency to your project: - -```sh -# With npm... -npm install --save-dev @arcticicestudio/remark-preset-lint - -# or Yarn. -yarn add --dev @arcticicestudio/remark-preset-lint -``` - -Note that [peer dependencies][node-blog-peer_deps], like the [remark-lint][gh-remarkjs/remark-lint] package itself, are **only installed automatically when using a npm version equal or higher than `7.0.0`**, otherwise they must be installed separately like described in the [peer dependencies](#peer-dependencies) section below. -See the [Node distribution index][node-dist-index] for more information about which npm version is bundled with which Node version. - -#### Peer Dependencies - -This package depends on [various remark-lint rule packages][gh-remarkjs/remark-lint-tree-pkgs] that are defined as [peer dependencies][node-blog-peer_deps]. - -##### npm versions `>=7.0.0` - -As of **npm version `7.0.0`, peer dependencies are** [**installed automatically**][gh-npm/rfcs-blob-install_peer_deps] and does not require any additional steps. - -##### npm versions `>=5.0.0 <7.0.0` - -For **npm version equal to or higher than `5.0.0` (pre-bundled with [Node.js 8][node-dist-v8-latest]) but less than `7.0.0`**, all peer dependencies can be auto-installed using the pre-bundled [`npx`][npm-npx] package: - -```sh -npx install-peerdeps --dev @arcticicestudio/remark-preset-lint -``` - -##### npm versions `<5.0.0` - -If you’re using a **npm version less than `5.0.0`**, the `npx` package is not pre-bundled, but users can either simply install the [`npx`][npm-npx] package globally to run the above command or use the [install-peerdeps][npm-install-peerdeps] helper package locally/globally to let it handle the installation of all peer dependencies: - -```sh -# Install and use the "install-peerdeps" helper package locally... -npm install install-peerdeps -./node_modules/.bin/install-peerdeps --dev @arcticicestudio/remark-preset-lint - -# ...or globally. -npm install --global install-peerdeps -install-peerdeps --dev @arcticicestudio/remark-preset-lint -``` - -To install all peer dependencies manually without `npx` or any helper package, the npm `info` command can be used to get a list of all packages and their versions: - -```sh -# List the names and versions of all peer dependencies... -npm info "@arcticicestudio/remark-preset-lint" peerDependencies - -# ...and install each listed package manually. -npm install PACKAGE@VERSION -``` - -##### Using Yarn instead of npm - -If you’re not using npm but Yarn, peer dependencies can be installed by either adding them manually or using the [install-peerdeps][npm-install-peerdeps] helper package: - -```sh -# Either add all packages manually by listing all required names and their versions and install them manually... -yarn info @arcticicestudio/remark-preset-lint peerDependencies -yarn add --dev remark-lint #... - -# ...or use the "install-peerdeps" helper package. -yarn add --dev install-peerdeps -yarn run install-peerdeps --dev @arcticicestudio/remark-preset-lint -``` - -## Usage - -The package can be used as rule preset by adding it to the plugins within your `.remarkrc.js` or `.remarkrc` [configuration file][remark-lint-doc-conf]: - -```js -module.exports = { - plugins: ["@arcticicestudio/remark-preset-lint"], -}; -``` - -## Contributing - -Please read the [contribution guidelines][ghio-arcticicestudio/styleguide-markdown-dev-contributing] of the [Arctic Ice Studio Markdown style guide][gh-arcticicestudio/styleguide-markdown] for more details. - -

- -

Copyright © 2018-present Arctic Ice Studio and Sven Greb

- -

- -[gh-arcticicestudio/styleguide-markdown]: https://github.com/arcticicestudio/styleguide-markdown -[gh-blog-npm_v7]: https://github.blog/2020-10-13-presenting-v7-0-0-of-the-npm-cli -[gh-npm/rfcs-blob-install_peer_deps]: https://github.com/npm/rfcs/blob/latest/implemented/0025-install-peer-deps.md -[gh-remarkjs/remark-blob-docs-plugins]: https://github.com/remarkjs/remark/blob/main/doc/plugins.md -[gh-remarkjs/remark-frontmatter]: https://github.com/remarkjs/remark-frontmatter -[gh-remarkjs/remark-gfm]: https://github.com/remarkjs/remark-gfm -[gh-remarkjs/remark-lint-blob-docs-rules]: https://github.com/remarkjs/remark-lint/blob/main/doc/rules.md#list-of-rules -[gh-remarkjs/remark-lint-tree-pkgs]: https://github.com/remarkjs/remark-lint/tree/main/packages -[gh-remarkjs/remark-lint]: https://github.com/remarkjs/remark-lint -[gh-toml-lang/toml]: https://github.com/toml-lang/toml -[ghio-arcticicestudio/styleguide-markdown-dev-contributing]: https://arcticicestudio.github.io/remark-preset-lint-arcticicestudio/development/contributing.html -[node-blog-peer_deps]: https://nodejs.org/en/blog/npm/peer-dependencies -[node-dist-index]: https://nodejs.org/dist/index.json -[node-dist-v8-latest]: https://nodejs.org/dist/latest-v8.x -[npm-install-peerdeps]: https://www.npmjs.com/package/install-peerdeps -[npm-npx]: https://www.npmjs.com/package/npx -[remark-lint-doc-conf]: https://github.com/remarkjs/remark-lint#configuring-remark-lint -[yaml]: http://yaml.org -[yarn-classic]: https://classic.yarnpkg.com diff --git a/packages/@arcticicestudio/remark-preset-lint/index.js b/packages/@svengreb/remark-preset-lint/index.js similarity index 64% rename from packages/@arcticicestudio/remark-preset-lint/index.js rename to packages/@svengreb/remark-preset-lint/index.js index dccee77..56a90a1 100644 --- a/packages/@arcticicestudio/remark-preset-lint/index.js +++ b/packages/@svengreb/remark-preset-lint/index.js @@ -1,20 +1,16 @@ /* - * Copyright (c) 2018-present Arctic Ice Studio - * Copyright (c) 2018-present Sven Greb - * This source code is licensed under the MIT license found in the LICENSE file. + * Copyright (c) 2016-present Sven Greb + * This source code is licensed under the MIT license found in the license file. */ /** - * Arctic Ice Studio Markdown Style Guide rules as an extensible remark-lint rule preset. - * + * An opinionated, yet universally applicable Markdown code style guide rules as an extensible remark-lint rule preset. * @version 0.4.0 * @license MIT - * @author Arctic Ice Studio * @author Sven Greb - * @copyright 2018-present Arctic Ice Studio - * @copyright 2018-present Sven Greb - * @see https://github.com/remarkjs/remark-lint + * @copyright 2016-present Sven Greb * @see https://remark.js.org + * @see https://github.com/remarkjs/remark-lint * @see https://github.com/remarkjs/remark-lint/blob/main/doc/rules.md#list-of-rules * @see https://github.com/remarkjs/remark-lint#configuring-remark-lint */ diff --git a/packages/@arcticicestudio/remark-preset-lint/package.json b/packages/@svengreb/remark-preset-lint/package.json similarity index 84% rename from packages/@arcticicestudio/remark-preset-lint/package.json rename to packages/@svengreb/remark-preset-lint/package.json index 51302ff..9f28f68 100644 --- a/packages/@arcticicestudio/remark-preset-lint/package.json +++ b/packages/@svengreb/remark-preset-lint/package.json @@ -1,25 +1,30 @@ { - "name": "@arcticicestudio/remark-preset-lint", + "name": "@svengreb/remark-preset-lint", "version": "0.4.0", - "description": "Arctic Ice Studio Markdown code style guide rules as an extensible remark-lint rule preset", - "author": "Arctic Ice Studio (https://www.arcticicestudio.com)", - "contributors": [ - { - "name": "Sven Greb", - "email": "development@svengreb.de", - "url": "https://www.svengreb.de" - } - ], - "homepage": "https://github.com/arcticicestudio/styleguide-markdown", + "description": "The opinionated, yet universally applicable Markdown code style guide rules as an extensible remark-lint rule preset", + "author": { + "name": "Sven Greb", + "email": "development@svengreb.de", + "url": "https://www.svengreb.de" + }, + "homepage": "https://github.com/svengreb/styleguide-markdown", "repository": { "type": "git", - "url": "git+https://github.com/arcticicestudio/styleguide-markdown.git", - "directory": "packages/@arcticicestudio/remark-preset-lint" + "url": "git+https://github.com/svengreb/styleguide-markdown.git" }, "bugs": { - "url": "https://github.com/arcticicestudio/styleguide-markdown/issues" + "url": "https://github.com/svengreb/styleguide-markdown/issues" }, "license": "MIT", + "engines": { + "node": ">=15.13", + "npm": ">=7.7" + }, + "main": "index.js", + "files": [ + "rules", + "index.js" + ], "keywords": [ "style", "guide", @@ -29,11 +34,6 @@ "rule", "preset" ], - "main": "index.js", - "files": [ - "rules", - "index.js" - ], "publishConfig": { "access": "public" }, @@ -110,9 +110,9 @@ "remark-lint-unordered-list-marker-style": "^2.0.1" }, "devDependencies": { - "remark-cli": "^9.0.0" + "remark-cli": "^10.0.1" }, "peerDependencies": { - "remark-cli": "^9.0.0" + "remark-cli": "^10.0.1" } } diff --git a/packages/@svengreb/remark-preset-lint/readme.md b/packages/@svengreb/remark-preset-lint/readme.md new file mode 100644 index 0000000..001984b --- /dev/null +++ b/packages/@svengreb/remark-preset-lint/readme.md @@ -0,0 +1,175 @@ +

+ + + + + +

+ +

+ + + + + + +

+ +

+ + + + + + +

+ +

+ + + +

+ +

+ + + + + + + + + +

+ +

The opinionated, yet universally applicable Markdown code style guide rules as an extensible remark-lint rule preset.

+ +This package implements the rules of the [Sven Greb Markdown style guide][1] as an extensible [remark-lint][9] rule preset. It supports all [official core rules][7] and [various plugins][4] like the [“frontmatter” Markdown extension][5] for [YAML][18] and [TOML][10] and [“GitHub Flavoured” Markdown][6]. + +## Getting Started + +Note that this package uses [npm version 7.7.0 or higher][2] as the main package manager, but the documentations also include instructions to work with [Yarn][19] (classic / `v1`). + +### Installation + +Add the package as development dependency to your project: + +```sh +# With npm... +npm install --save-dev @svengreb/remark-preset-lint + +# or Yarn. +yarn add --dev @svengreb/remark-preset-lint +``` + +Note that [peer dependencies][12], like the [remark-lint][9] package itself, are **only installed automatically when using a npm version equal or higher than `7.0.0`**, otherwise they must be installed separately like described in the [peer dependencies](#peer-dependencies) section below. +See the [Node distribution index][13] for more information about which npm version is bundled with which Node version. + +#### Peer Dependencies + +This package depends on [various remark-lint rule packages][8] that are defined as [peer dependencies][12]. + +##### npm versions `>=7.0.0` + +As of **npm version `7.0.0`, peer dependencies are** [**installed automatically**][3] and does not require any additional steps. + +##### npm versions `>=5.0.0 <7.0.0` + +For **npm version equal to or higher than `5.0.0` (pre-bundled with [Node.js 8][14]) but less than `7.0.0`**, all peer dependencies can be auto-installed using the pre-bundled [`npx`][16] package: + +```sh +npx install-peerdeps --dev @svengreb/remark-preset-lint +``` + +##### npm versions `<5.0.0` + +If you’re using a **npm version less than `5.0.0`**, the `npx` package is not pre-bundled, but users can either simply install the [`npx`][16] package globally to run the above command or use the [install-peerdeps][15] helper package locally/globally to let it handle the installation of all peer dependencies: + +```sh +# Install and use the "install-peerdeps" helper package locally... +npm install install-peerdeps +./node_modules/.bin/install-peerdeps --dev @svengreb/remark-preset-lint + +# ...or globally. +npm install --global install-peerdeps +install-peerdeps --dev @svengreb/remark-preset-lint +``` + +To install all peer dependencies manually without `npx` or any helper package, the npm `info` command can be used to get a list of all packages and their versions: + +```sh +# List the names and versions of all peer dependencies... +npm info "@svengreb/remark-preset-lint" peerDependencies + +# ...and install each listed package manually. +npm install PACKAGE@VERSION +``` + +##### Using Yarn instead of npm + +If you’re not using npm but Yarn, peer dependencies can be installed by either adding them manually or using the [install-peerdeps][15] helper package: + +```sh +# Either add all packages manually by listing all required names and their versions and install them manually... +yarn info @svengreb/remark-preset-lint peerDependencies +yarn add --dev remark-lint #... + +# ...or use the "install-peerdeps" helper package. +yarn add --dev install-peerdeps +yarn run install-peerdeps --dev @svengreb/remark-preset-lint +``` + +## Usage + +The package can be used as rule preset by adding it to the plugins within your `.remarkrc.js` or `.remarkrc` [configuration file][17]: + +```js +module.exports = { + plugins: ["@svengreb/remark-preset-lint"], +}; +``` + +## Contributing + +Please read the [contribution guidelines][11] of the [Sven Greb Markdown style guide][1] for more details. + +

+ + + + + +

+ +

+ Copyright © 2016-present Sven Greb +

+ +

+ + + + + + +

+ +[1]: https://github.com/svengreb/styleguide-markdown +[2]: https://github.blog/2020-10-13-presenting-v7-0-0-of-the-npm-cli +[3]: https://github.com/npm/rfcs/blob/main/implemented/0025-install-peer-deps.md +[4]: https://github.com/remarkjs/remark/blob/main/doc/plugins.md +[5]: https://github.com/remarkjs/remark-frontmatter +[6]: https://github.com/remarkjs/remark-gfm +[7]: https://github.com/remarkjs/remark-lint/blob/main/doc/rules.md#list-of-rules +[8]: https://github.com/remarkjs/remark-lint/tree/main/packages +[9]: https://github.com/remarkjs/remark-lint +[10]: https://github.com/toml-lang/toml +[11]: https://github.com/svengreb/.github/blob/main/contributing.md +[12]: https://nodejs.org/en/blog/npm/peer-dependencies +[13]: https://nodejs.org/dist/index.json +[14]: https://nodejs.org/dist/latest-v8.x +[15]: https://www.npmjs.com/package/install-peerdeps +[16]: https://www.npmjs.com/package/npx +[17]: https://github.com/remarkjs/remark-lint#configuring-remark-lint +[18]: https://yaml.org +[19]: https://classic.yarnpkg.com diff --git a/packages/@arcticicestudio/remark-preset-lint/rules/blockquotes.js b/packages/@svengreb/remark-preset-lint/rules/blockquotes.js similarity index 70% rename from packages/@arcticicestudio/remark-preset-lint/rules/blockquotes.js rename to packages/@svengreb/remark-preset-lint/rules/blockquotes.js index c9c4da1..cb3c74c 100644 --- a/packages/@arcticicestudio/remark-preset-lint/rules/blockquotes.js +++ b/packages/@svengreb/remark-preset-lint/rules/blockquotes.js @@ -1,21 +1,20 @@ /* - * Copyright (c) 2018-present Arctic Ice Studio - * Copyright (c) 2018-present Sven Greb - * This source code is licensed under the MIT license found in the LICENSE file. + * Copyright (c) 2016-present Sven Greb + * This source code is licensed under the MIT license found in the license file. */ /** * Enforce correct indentation for blockquotes. * * @see https://github.com/remarkjs/remark-lint/tree/main/packages/remark-lint-blockquote-indentation - * @see https://arcticicestudio.github.io/styleguide-markdown/rules/blockquotes.html#indentation + * @see https://github.com/svengreb/styleguide-markdown/blob/main/rules/blockquotes.md#indentation */ const blockquoteIndentation = require("remark-lint-blockquote-indentation"); /** * Disallow blank lines without markers ('>') in blockquotes. * * @see https://github.com/remarkjs/remark-lint/tree/main/packages/remark-lint-no-blockquote-without-marker - * @see https://arcticicestudio.github.io/styleguide-markdown/rules/blockquotes.html#multi-line + * @see https://github.com/svengreb/styleguide-markdown/blob/main/rules/blockquotes.md#multi-line */ const noBlockquoteWithoutMarker = require("remark-lint-no-blockquote-without-marker"); diff --git a/packages/@arcticicestudio/remark-preset-lint/rules/code.js b/packages/@svengreb/remark-preset-lint/rules/code.js similarity index 70% rename from packages/@arcticicestudio/remark-preset-lint/rules/code.js rename to packages/@svengreb/remark-preset-lint/rules/code.js index 417dadc..cb443bb 100644 --- a/packages/@arcticicestudio/remark-preset-lint/rules/code.js +++ b/packages/@svengreb/remark-preset-lint/rules/code.js @@ -1,35 +1,34 @@ /* - * Copyright (c) 2018-present Arctic Ice Studio - * Copyright (c) 2018-present Sven Greb - * This source code is licensed under the MIT license found in the LICENSE file. + * Copyright (c) 2016-present Sven Greb + * This source code is licensed under the MIT license found in the license file. */ /** * Enforce fenced code blocks. * * @see https://github.com/remarkjs/remark-lint/tree/main/packages/remark-lint-code-block-style - * @see https://arcticicestudio.github.io/styleguide-markdown/rules/code.html#blocks + * @see https://github.com/svengreb/styleguide-markdown/blob/main/rules/code.md#blocks */ const codeBlockStyle = require("remark-lint-code-block-style"); /** * Enforce language syntax flags for fenced code blocks. * * @see https://github.com/remarkjs/remark-lint/tree/main/packages/remark-lint-fenced-code-flag - * @see https://arcticicestudio.github.io/styleguide-markdown/rules/code.html#syntax-highlighting + * @see https://github.com/svengreb/styleguide-markdown/blob/main/rules/code.md#syntax-highlighting */ const fencedCodeFlag = require("remark-lint-fenced-code-flag"); /** * Enforce language syntax flags for fenced code blocks. * * @see https://github.com/remarkjs/remark-lint/tree/main/packages/remark-lint-fenced-code-marker - * @see https://arcticicestudio.github.io/styleguide-markdown/rules/code.html#marker-character-style + * @see https://github.com/svengreb/styleguide-markdown/blob/main/rules/code.md#marker-character-style */ const fencedCodeMarker = require("remark-lint-fenced-code-marker"); /** * Warn when using a dollar sign ("$") in shell code. * * @see https://github.com/remarkjs/remark-lint/tree/main/packages/remark-lint-no-shell-dollars - * @see https://arcticicestudio.github.io/styleguide-markdown/rules/code.html#no-shell-code-dollar-sign + * @see https://github.com/svengreb/styleguide-markdown/blob/main/rules/code.md#no-shell-code-dollar-sign */ const noShellDollars = require("remark-lint-no-shell-dollars"); diff --git a/packages/@arcticicestudio/remark-preset-lint/rules/emphasis.js b/packages/@svengreb/remark-preset-lint/rules/emphasis.js similarity index 63% rename from packages/@arcticicestudio/remark-preset-lint/rules/emphasis.js rename to packages/@svengreb/remark-preset-lint/rules/emphasis.js index 8a522b1..12abb60 100644 --- a/packages/@arcticicestudio/remark-preset-lint/rules/emphasis.js +++ b/packages/@svengreb/remark-preset-lint/rules/emphasis.js @@ -1,38 +1,37 @@ /* - * Copyright (c) 2018-present Arctic Ice Studio - * Copyright (c) 2018-present Sven Greb - * This source code is licensed under the MIT license found in the LICENSE file. + * Copyright (c) 2016-present Sven Greb + * This source code is licensed under the MIT license found in the license file. */ /** * Enforce a consistent character style for emphasis marker. * * @see https://github.com/remarkjs/remark-lint/tree/main/packages/remark-lint-code-block-style - * @see https://arcticicestudio.github.io/styleguide-markdown/rules/emphasis.html#italic - * @see https://arcticicestudio.github.io/styleguide-markdown/rules/emphasis.html#bold - * @see https://arcticicestudio.github.io/styleguide-markdown/rules/emphasis.html#strikethrough + * @see https://github.com/svengreb/styleguide-markdown/blob/main/rules/emphasis.md#italic + * @see https://github.com/svengreb/styleguide-markdown/blob/main/rules/emphasis.md#bold + * @see https://github.com/svengreb/styleguide-markdown/blob/main/rules/emphasis.md#strikethrough */ const emphasisMarker = require("remark-lint-emphasis-marker"); /** * Warn when using emphasis elements (bold or italics) as replacement for headings. * * @see https://github.com/remarkjs/remark-lint/tree/main/packages/remark-lint-no-emphasis-as-heading - * @see https://arcticicestudio.github.io/styleguide-markdown/rules/emphasis.html#no-header-replacement + * @see https://github.com/svengreb/styleguide-markdown/blob/main/rules/emphasis.md#no-header-replacement */ const noEmphasisAsHeading = require("remark-lint-no-emphasis-as-heading"); /** * Disallow inner padding within emphasis marker, code marker and link IDs. * * @see https://github.com/remarkjs/remark-lint/tree/main/packages/remark-lint-no-inline-padding - * @see https://arcticicestudio.github.io/styleguide-markdown/rules/emphasis.html#no-inner-spacing - * @see https://arcticicestudio.github.io/styleguide-markdown/rules/links.html#no-id-inner-spacing + * @see https://github.com/svengreb/styleguide-markdown/blob/main/rules/emphasis.md#no-inner-spacing + * @see https://github.com/svengreb/styleguide-markdown/blob/main/rules/links.md#no-id-inner-spacing */ const noInlinePadding = require("remark-lint-no-inline-padding"); /** * Enforce the character style for strong (bold) emphasis markers. * * @see https://github.com/remarkjs/remark-lint/tree/main/packages/remark-lint-strong-marker - * @see https://arcticicestudio.github.io/styleguide-markdown/rules/emphasis.html#bold + * @see https://github.com/svengreb/styleguide-markdown/blob/main/rules/emphasis.md#bold */ const strongMarker = require("remark-lint-strong-marker"); diff --git a/packages/@arcticicestudio/remark-preset-lint/rules/headings.js b/packages/@svengreb/remark-preset-lint/rules/headings.js similarity index 80% rename from packages/@arcticicestudio/remark-preset-lint/rules/headings.js rename to packages/@svengreb/remark-preset-lint/rules/headings.js index 2c21ef3..006098a 100644 --- a/packages/@arcticicestudio/remark-preset-lint/rules/headings.js +++ b/packages/@svengreb/remark-preset-lint/rules/headings.js @@ -1,7 +1,6 @@ /* - * Copyright (c) 2018-present Arctic Ice Studio - * Copyright (c) 2018-present Sven Greb - * This source code is licensed under the MIT license found in the LICENSE file. + * Copyright (c) 2016-present Sven Greb + * This source code is licensed under the MIT license found in the license file. */ /** @@ -20,42 +19,42 @@ const headingIncrement = require("remark-lint-heading-increment"); * Enforce ATX style headings. * * @see https://github.com/remarkjs/remark-lint/tree/main/packages/remark-lint-heading-style - * @see https://arcticicestudio.github.io/styleguide-markdown/rules/headings.html#atx-style + * @see https://github.com/svengreb/styleguide-markdown/blob/main/rules/headings.md#atx-style */ const headingStyle = require("remark-lint-heading-style"); /** * Warn if a maximum length for headings is exceeded. * * @see https://github.com/remarkjs/remark-lint/tree/main/packages/remark-lint-maximum-heading-length - * @see https://arcticicestudio.github.io/styleguide-markdown/rules/headings.html#length + * @see https://github.com/svengreb/styleguide-markdown/blob/main/rules/headings.md#length */ const maximumHeadingLength = require("remark-lint-maximum-heading-length"); /** * Warn when using two or more headers with the same content in the same markdown file. * * @see https://github.com/remarkjs/remark-lint/tree/main/packages/remark-lint-no-duplicate-headings - * @see https://arcticicestudio.github.io/styleguide-markdown/rules/headings.html#no-duplicate + * @see https://github.com/svengreb/styleguide-markdown/blob/main/rules/headings.md#no-duplicate */ const noDuplicateHeadings = require("remark-lint-no-duplicate-headings"); /** * Warn when using two or more headers with the same content in the same section. * * @see https://github.com/remarkjs/remark-lint/tree/main/packages/remark-lint-no-duplicate-headings-in-section - * @see https://arcticicestudio.github.io/styleguide-markdown/rules/headings.html#no-duplicate + * @see https://github.com/svengreb/styleguide-markdown/blob/main/rules/headings.md#no-duplicate */ const noDuplicateHeadingsInSection = require("remark-lint-no-duplicate-headings-in-section"); /** * Disallow invalid indention of headings content. * * @see https://github.com/remarkjs/remark-lint/tree/main/packages/remark-lint-no-heading-content-indent - * @see https://arcticicestudio.github.io/styleguide-markdown/rules/headings.html#content-spacing + * @see https://github.com/svengreb/styleguide-markdown/blob/main/rules/headings.md#content-spacing */ const noHeadingContentIndent = require("remark-lint-no-heading-content-indent"); /** * Disallow indention and any content (including whitespaces) before headings. * * @see https://github.com/remarkjs/remark-lint/tree/main/packages/remark-lint-no-heading-indent - * @see https://arcticicestudio.github.io/styleguide-markdown/rules/headings.html#no-content-before + * @see https://github.com/svengreb/styleguide-markdown/blob/main/rules/headings.md#no-content-before */ const noHeadingIndent = require("remark-lint-no-heading-indent"); /** @@ -68,7 +67,7 @@ const noHeadingLikeParagraph = require("remark-lint-no-heading-like-paragraph"); * Warn when ending a heading content with a punctuation character. * * @see https://github.com/remarkjs/remark-lint/tree/main/packages/remark-lint-no-heading-punctuation - * @see https://arcticicestudio.github.io/styleguide-markdown/rules/headings.html#punctuation-after-content + * @see https://github.com/svengreb/styleguide-markdown/blob/main/rules/headings.md#punctuation-after-content */ const noHeadingPunctuation = require("remark-lint-no-heading-punctuation"); /** diff --git a/packages/@arcticicestudio/remark-preset-lint/rules/horizontal-rules.js b/packages/@svengreb/remark-preset-lint/rules/horizontal-rules.js similarity index 65% rename from packages/@arcticicestudio/remark-preset-lint/rules/horizontal-rules.js rename to packages/@svengreb/remark-preset-lint/rules/horizontal-rules.js index ad88762..bcdcf0b 100644 --- a/packages/@arcticicestudio/remark-preset-lint/rules/horizontal-rules.js +++ b/packages/@svengreb/remark-preset-lint/rules/horizontal-rules.js @@ -1,14 +1,13 @@ /* - * Copyright (c) 2018-present Arctic Ice Studio - * Copyright (c) 2018-present Sven Greb - * This source code is licensed under the MIT license found in the LICENSE file. + * Copyright (c) 2016-present Sven Greb + * This source code is licensed under the MIT license found in the license file. */ /** * Enforce the character style for horizontal rule markers. * * @see https://github.com/remarkjs/remark-lint/tree/main/packages/remark-lint-rule-style - * @see https://arcticicestudio.github.io/styleguide-markdown/rules/horizontal-rules.html#marker-character-style + * @see https://github.com/svengreb/styleguide-markdown/blob/main/rules/horizontal-rules.md#marker-character-style */ const ruleStyle = require("remark-lint-rule-style"); diff --git a/packages/@arcticicestudio/remark-preset-lint/rules/links.js b/packages/@svengreb/remark-preset-lint/rules/links.js similarity index 77% rename from packages/@arcticicestudio/remark-preset-lint/rules/links.js rename to packages/@svengreb/remark-preset-lint/rules/links.js index 1d1a69b..bbde83a 100644 --- a/packages/@arcticicestudio/remark-preset-lint/rules/links.js +++ b/packages/@svengreb/remark-preset-lint/rules/links.js @@ -1,56 +1,55 @@ /* - * Copyright (c) 2018-present Arctic Ice Studio - * Copyright (c) 2018-present Sven Greb - * This source code is licensed under the MIT license found in the LICENSE file. + * Copyright (c) 2016-present Sven Greb + * This source code is licensed under the MIT license found in the license file. */ /** * Enforce lower case letters for reference link IDs. * * @see https://github.com/remarkjs/remark-lint/tree/main/packages/remark-lint-definition-case - * @see https://arcticicestudio.github.io/styleguide-markdown/rules/links.html#letter-case + * @see https://github.com/svengreb/styleguide-markdown/blob/main/rules/links.md#letter-case */ const definitionCase = require("remark-lint-definition-case"); /** * Enforce a single space after the colon of reference links. * * @see https://github.com/remarkjs/remark-lint/tree/main/packages/remark-lint-definition-spacing - * @see https://arcticicestudio.github.io/styleguide-markdown/rules/links.html#spacing-after-colon + * @see https://github.com/svengreb/styleguide-markdown/blob/main/rules/links.md#spacing-after-colon */ const definitionSpacing = require("remark-lint-definition-spacing"); /** * Enforce reference links to be placed at the bottom of the document. * * @see https://github.com/remarkjs/remark-lint/tree/main/packages/remark-lint-final-definition - * @see https://arcticicestudio.github.io/styleguide-markdown/rules/links.html#definition-placement + * @see https://github.com/svengreb/styleguide-markdown/blob/main/rules/links.md#definition-placement */ const finalDefinition = require("remark-lint-final-definition"); /** * Disallow autolinks without a valid protocols. * * @see https://github.com/remarkjs/remark-lint/tree/main/packages/remark-lint-no-auto-link-without-protocol - * @see https://arcticicestudio.github.io/styleguide-markdown/rules/links.html#autolink-protocol + * @see https://github.com/svengreb/styleguide-markdown/blob/main/rules/links.md#autolink-protocol */ const noAutoLinkWithoutProtocol = require("remark-lint-no-auto-link-without-protocol"); /** * Disallow duplicate reference link IDs. * * @see https://github.com/remarkjs/remark-lint/tree/main/packages/remark-lint-no-duplicate-definitions - * @see https://arcticicestudio.github.io/styleguide-markdown/rules/links.html#unique-ids + * @see https://github.com/svengreb/styleguide-markdown/blob/main/rules/links.md#unique-ids */ const noDuplicateDefinitions = require("remark-lint-no-duplicate-definitions"); /** * Warn when definitions define the same URL. * * @see https://github.com/remarkjs/remark-lint/tree/main/packages/remark-lint-no-duplicate-defined-urls - * @see https://arcticicestudio.github.io/styleguide-markdown/rules/links.html#unique-ids + * @see https://github.com/svengreb/styleguide-markdown/blob/main/rules/links.md#unique-ids */ const noDuplicateDefinedURLs = require("remark-lint-no-duplicate-defined-urls"); /** * Disallow empty link and image URLs. * * @see https://github.com/remarkjs/remark-lint/tree/main/packages/remark-lint-no-empty-url - * @see https://arcticicestudio.github.io/styleguide-markdown/rules/links.html#no-empty-url + * @see https://github.com/svengreb/styleguide-markdown/blob/main/rules/links.md#no-empty-url */ const noEmptyUrl = require("remark-lint-no-empty-url"); /** @@ -63,7 +62,7 @@ const noLiteralUrls = require("remark-lint-no-literal-urls"); * Disallow URLs that are also defined identifiers. * * @see https://github.com/remarkjs/remark-lint/tree/main/packages/remark-lint-no-reference-like-url - * @see https://arcticicestudio.github.io/styleguide-markdown/rules/links.html#no-reference-like-url + * @see https://github.com/svengreb/styleguide-markdown/blob/main/rules/links.md#no-reference-like-url */ const noReferenceLikeUrl = require("remark-lint-no-reference-like-url"); /** @@ -82,14 +81,14 @@ const noShortcutReferenceLink = require("remark-lint-no-shortcut-reference-link" * Disallow the usage of references that are not defined. * * @see https://github.com/remarkjs/remark-lint/tree/main/packages/remark-lint-no-undefined-references - * @see https://arcticicestudio.github.io/styleguide-markdown/rules/links.html#no-undefined + * @see https://github.com/svengreb/styleguide-markdown/blob/main/rules/links.md#no-undefined */ const noUndefinedReferences = require("remark-lint-no-undefined-references"); /** * Warn when unused definitions are found. * * @see https://github.com/remarkjs/remark-lint/tree/main/packages/remark-lint-no-unused-definitions - * @see https://arcticicestudio.github.io/styleguide-markdown/rules/links.html#no-unused + * @see https://github.com/svengreb/styleguide-markdown/blob/main/rules/links.md#no-unused */ const noUnusedDefinitions = require("remark-lint-no-unused-definitions"); /** @@ -97,7 +96,7 @@ const noUnusedDefinitions = require("remark-lint-no-unused-definitions"); * * @since 0.4.0 * @see https://github.com/remarkjs/remark-lint/tree/main/packages/remark-lint-no-unneeded-full-reference-image - * @see https://arcticicestudio.github.io/styleguide-markdown/rules/images.html#collapsed-reference-links + * @see https://github.com/svengreb/styleguide-markdown/blob/main/rules/images.md#collapsed-reference-links */ const noUnneededFullReferenceImage = require("remark-lint-no-unneeded-full-reference-image"); /** @@ -105,7 +104,7 @@ const noUnneededFullReferenceImage = require("remark-lint-no-unneeded-full-refer * * @since 0.4.0 * @see https://github.com/remarkjs/remark-lint/tree/main/packages/remark-lint-no-unneeded-full-reference-link - * @see https://arcticicestudio.github.io/styleguide-markdown/rules/links.html#collapsed-references + * @see https://github.com/svengreb/styleguide-markdown/blob/main/rules/links.md#collapsed-references */ const noUnneededFullReferenceLink = require("remark-lint-no-unneeded-full-reference-link"); diff --git a/packages/@arcticicestudio/remark-preset-lint/rules/lists.js b/packages/@svengreb/remark-preset-lint/rules/lists.js similarity index 76% rename from packages/@arcticicestudio/remark-preset-lint/rules/lists.js rename to packages/@svengreb/remark-preset-lint/rules/lists.js index 2b9a2b3..9d408c6 100644 --- a/packages/@arcticicestudio/remark-preset-lint/rules/lists.js +++ b/packages/@svengreb/remark-preset-lint/rules/lists.js @@ -1,14 +1,13 @@ /* - * Copyright (c) 2018-present Arctic Ice Studio - * Copyright (c) 2018-present Sven Greb - * This source code is licensed under the MIT license found in the LICENSE file. + * Copyright (c) 2016-present Sven Greb + * This source code is licensed under the MIT license found in the license file. */ /** * Enforce a valid character style for ticked list item checkboxes. * * @see https://github.com/remarkjs/remark-lint/tree/main/packages/remark-lint-checkbox-character-style - * @see https://arcticicestudio.github.io/styleguide-markdown/rules/lists.html#checkbox-character-style + * @see https://github.com/svengreb/styleguide-markdown/blob/main/rules/lists.md#checkbox-character-style */ const checkboxCharacterStyle = require("remark-lint-checkbox-character-style"); /** @@ -21,49 +20,49 @@ const checkboxContentIndent = require("remark-lint-checkbox-content-indent"); * Disallow that list item bullets are indented. * * @see https://github.com/remarkjs/remark-lint/tree/main/packages/remark-lint-list-item-bullet-indent - * @see https://arcticicestudio.github.io/styleguide-markdown/rules/lists.html#no-content-before + * @see https://github.com/svengreb/styleguide-markdown/blob/main/rules/lists.md#no-content-before */ const listItemBulletIndent = require("remark-lint-list-item-bullet-indent"); /** * Enforce two (2) whitespaces for continuous content indentation of nested items. * * @see https://github.com/remarkjs/remark-lint/tree/main/packages/remark-lint-list-item-content-indent - * @see https://arcticicestudio.github.io/styleguide-markdown/rules/lists.html#continuous-indentation + * @see https://github.com/svengreb/styleguide-markdown/blob/main/rules/lists.md#continuous-indentation */ const listItemContentIndent = require("remark-lint-list-item-content-indent"); /** * Enforce two (2) whitespaces for continuous indentation of nested items. * * @see https://github.com/remarkjs/remark-lint/tree/main/packages/remark-lint-list-item-indent - * @see https://arcticicestudio.github.io/styleguide-markdown/rules/lists.html#continuous-indentation + * @see https://github.com/svengreb/styleguide-markdown/blob/main/rules/lists.md#continuous-indentation */ const listItemIndent = require("remark-lint-list-item-indent"); /** * Disallow blank lines between list items. * * @see https://github.com/remarkjs/remark-lint/tree/main/packages/remark-lint-list-item-spacing - * @see https://arcticicestudio.github.io/styleguide-markdown/rules/lists.html#empty-lines + * @see https://github.com/svengreb/styleguide-markdown/blob/main/rules/lists.md#empty-lines */ const listItemSpacing = require("remark-lint-list-item-spacing"); /** * Enforce the dot (".") marker character style for ordered list items. * * @see https://github.com/remarkjs/remark-lint/tree/main/packages/remark-lint-ordered-list-marker-style - * @see https://arcticicestudio.github.io/styleguide-markdown/rules/lists.html#ordered-marker + * @see https://github.com/svengreb/styleguide-markdown/blob/main/rules/lists.md#ordered-marker */ const orderedListMarkerStyle = require("remark-lint-ordered-list-marker-style"); /** * Enforce continuous numerating for markers of ordered list items. * * @see https://github.com/remarkjs/remark-lint/tree/main/packages/remark-lint-ordered-list-marker-value - * @see https://arcticicestudio.github.io/styleguide-markdown/rules/lists.html#ordered-marker + * @see https://github.com/svengreb/styleguide-markdown/blob/main/rules/lists.md#ordered-marker */ const orderedListMarkerValue = require("remark-lint-ordered-list-marker-value"); /** * Enforce dash (`-`) marker character style for unordered list items. * * @see https://github.com/remarkjs/remark-lint/tree/main/packages/remark-lint-unordered-list-marker-style - * @see https://arcticicestudio.github.io/styleguide-markdown/rules/lists.html#unordered-marker + * @see https://github.com/svengreb/styleguide-markdown/blob/main/rules/lists.md#unordered-marker */ const unorderedListMarkerStyle = require("remark-lint-unordered-list-marker-style"); diff --git a/packages/@arcticicestudio/remark-preset-lint/rules/naming-conventions.js b/packages/@svengreb/remark-preset-lint/rules/naming-conventions.js similarity index 84% rename from packages/@arcticicestudio/remark-preset-lint/rules/naming-conventions.js rename to packages/@svengreb/remark-preset-lint/rules/naming-conventions.js index aa4f6b4..0559807 100644 --- a/packages/@arcticicestudio/remark-preset-lint/rules/naming-conventions.js +++ b/packages/@svengreb/remark-preset-lint/rules/naming-conventions.js @@ -1,14 +1,13 @@ /* - * Copyright (c) 2018-present Arctic Ice Studio - * Copyright (c) 2018-present Sven Greb - * This source code is licensed under the MIT license found in the LICENSE file. + * Copyright (c) 2016-present Sven Greb + * This source code is licensed under the MIT license found in the license file. */ /** * Enforce a consistent file extension. * * @see https://github.com/remarkjs/remark-lint/tree/main/packages/remark-lint-file-extension - * @see https://arcticicestudio.github.io/styleguide-markdown/rules/naming-conventions.html#file-extension + * @see https://github.com/svengreb/styleguide-markdown/blob/main/rules/naming-conventions.md#file-extension */ const fileExtension = require("remark-lint-file-extension"); /** @@ -33,7 +32,7 @@ const noFileNameIrregularCharacters = require("remark-lint-no-file-name-irregula * Disallow file names with mixed letter case: both upper- and lower case characters. * * @see https://github.com/remarkjs/remark-lint/tree/main/packages/remark-lint-no-file-name-mixed-case - * @see https://arcticicestudio.github.io/styleguide-markdown/rules/naming-conventions.html#file-naming + * @see https://github.com/svengreb/styleguide-markdown/blob/main/rules/naming-conventions.md#file-naming */ const noFileNameMixedCase = require("remark-lint-no-file-name-mixed-case"); /** diff --git a/packages/@arcticicestudio/remark-preset-lint/rules/paragraphs.js b/packages/@svengreb/remark-preset-lint/rules/paragraphs.js similarity index 68% rename from packages/@arcticicestudio/remark-preset-lint/rules/paragraphs.js rename to packages/@svengreb/remark-preset-lint/rules/paragraphs.js index 6c35405..eefa390 100644 --- a/packages/@arcticicestudio/remark-preset-lint/rules/paragraphs.js +++ b/packages/@svengreb/remark-preset-lint/rules/paragraphs.js @@ -1,14 +1,13 @@ /* - * Copyright (c) 2018-present Arctic Ice Studio - * Copyright (c) 2018-present Sven Greb - * This source code is licensed under the MIT license found in the LICENSE file. + * Copyright (c) 2016-present Sven Greb + * This source code is licensed under the MIT license found in the license file. */ /** * Disallow the content of paragraphs to be indented. * * @see https://github.com/remarkjs/remark-lint/tree/main/packages/remark-lint-no-paragraph-content-indent - * @see https://arcticicestudio.github.io/styleguide-markdown/rules/paragraphs.html#no-indentation + * @see https://github.com/svengreb/styleguide-markdown/blob/main/rules/paragraphs.md#no-indentation */ const noParagraphContentIndent = require("remark-lint-no-paragraph-content-indent"); diff --git a/packages/@arcticicestudio/remark-preset-lint/rules/raw-html.js b/packages/@svengreb/remark-preset-lint/rules/raw-html.js similarity index 74% rename from packages/@arcticicestudio/remark-preset-lint/rules/raw-html.js rename to packages/@svengreb/remark-preset-lint/rules/raw-html.js index 5bd8582..3113a09 100644 --- a/packages/@arcticicestudio/remark-preset-lint/rules/raw-html.js +++ b/packages/@svengreb/remark-preset-lint/rules/raw-html.js @@ -1,7 +1,6 @@ /* - * Copyright (c) 2018-present Arctic Ice Studio - * Copyright (c) 2018-present Sven Greb - * This source code is licensed under the MIT license found in the LICENSE file. + * Copyright (c) 2016-present Sven Greb + * This source code is licensed under the MIT license found in the license file. */ /** diff --git a/packages/@arcticicestudio/remark-preset-lint/rules/strings.js b/packages/@svengreb/remark-preset-lint/rules/strings.js similarity index 67% rename from packages/@arcticicestudio/remark-preset-lint/rules/strings.js rename to packages/@svengreb/remark-preset-lint/rules/strings.js index 9be0ccb..e0f0fd8 100644 --- a/packages/@arcticicestudio/remark-preset-lint/rules/strings.js +++ b/packages/@svengreb/remark-preset-lint/rules/strings.js @@ -1,14 +1,13 @@ /* - * Copyright (c) 2018-present Arctic Ice Studio - * Copyright (c) 2018-present Sven Greb - * This source code is licensed under the MIT license found in the LICENSE file. + * Copyright (c) 2016-present Sven Greb + * This source code is licensed under the MIT license found in the license file. */ /** * Enforce double quotes for link titles. * * @see https://github.com/remarkjs/remark-lint/tree/main/packages/remark-lint-link-title-style - * @see https://arcticicestudio.github.io/styleguide-markdown/rules/strings.html#quotes + * @see https://github.com/svengreb/styleguide-markdown/blob/main/rules/strings.md#quotes */ const linkTitleStyle = require("remark-lint-link-title-style"); diff --git a/packages/@arcticicestudio/remark-preset-lint/rules/support.js b/packages/@svengreb/remark-preset-lint/rules/support.js similarity index 88% rename from packages/@arcticicestudio/remark-preset-lint/rules/support.js rename to packages/@svengreb/remark-preset-lint/rules/support.js index 0915201..edce463 100644 --- a/packages/@arcticicestudio/remark-preset-lint/rules/support.js +++ b/packages/@svengreb/remark-preset-lint/rules/support.js @@ -1,7 +1,6 @@ /* - * Copyright (c) 2018-present Arctic Ice Studio - * Copyright (c) 2018-present Sven Greb - * This source code is licensed under the MIT license found in the LICENSE file. + * Copyright (c) 2016-present Sven Greb + * This source code is licensed under the MIT license found in the license file. */ /** diff --git a/packages/@arcticicestudio/remark-preset-lint/rules/tables.js b/packages/@svengreb/remark-preset-lint/rules/tables.js similarity index 66% rename from packages/@arcticicestudio/remark-preset-lint/rules/tables.js rename to packages/@svengreb/remark-preset-lint/rules/tables.js index 4093988..6ebfdff 100644 --- a/packages/@arcticicestudio/remark-preset-lint/rules/tables.js +++ b/packages/@svengreb/remark-preset-lint/rules/tables.js @@ -1,36 +1,35 @@ /* - * Copyright (c) 2018-present Arctic Ice Studio - * Copyright (c) 2018-present Sven Greb - * This source code is licensed under the MIT license found in the LICENSE file. + * Copyright (c) 2016-present Sven Greb + * This source code is licensed under the MIT license found in the license file. */ /** * Disallow tables to be indented. * * @see https://github.com/remarkjs/remark-lint/tree/main/packages/remark-lint-no-table-indentation - * @see https://arcticicestudio.github.io/styleguide-markdown/rules/tables.html#no-indentation + * @see https://github.com/svengreb/styleguide-markdown/blob/main/rules/tables.md#no-indentation */ const noTableIndentation = require("remark-lint-no-table-indentation"); /** * Enforces table cells to be padded correctly. * * @see https://github.com/remarkjs/remark-lint/tree/main/packages/remark-lint-table-cell-padding - * @see https://arcticicestudio.github.io/styleguide-markdown/rules/tables.html#header-delimiter-row-spacing + * @see https://github.com/svengreb/styleguide-markdown/blob/main/rules/tables.md#header-delimiter-row-spacing */ const tableCellPadding = require("remark-lint-table-cell-padding"); /** * Enforces table cell header delimiter marker to be correctly aligned. * * @see https://github.com/remarkjs/remark-lint/tree/main/packages/remark-lint-table-pipe-alignment - * @see https://arcticicestudio.github.io/styleguide-markdown/rules/tables.html#header-delimiter-row-spacing - * @see https://arcticicestudio.github.io/styleguide-markdown/rules/tables.html#minimum-column-width + * @see https://github.com/svengreb/styleguide-markdown/blob/main/rules/tables.md#header-delimiter-row-spacing + * @see https://github.com/svengreb/styleguide-markdown/blob/main/rules/tables.md#minimum-column-width */ const tablePipeAlignment = require("remark-lint-table-pipe-alignment"); /** * Enforces table cell header delimiter marker to be correctly aligned. * * @see https://github.com/remarkjs/remark-lint/tree/main/packages/remark-lint-table-pipes - * @see https://arcticicestudio.github.io/styleguide-markdown/rules/tables.html#alignment + * @see https://github.com/svengreb/styleguide-markdown/blob/main/rules/tables.md#alignment */ const tablePipes = require("remark-lint-table-pipes"); diff --git a/packages/@arcticicestudio/remark-preset-lint/rules/whitespace.js b/packages/@svengreb/remark-preset-lint/rules/whitespace.js similarity index 71% rename from packages/@arcticicestudio/remark-preset-lint/rules/whitespace.js rename to packages/@svengreb/remark-preset-lint/rules/whitespace.js index 9a71619..999521c 100644 --- a/packages/@arcticicestudio/remark-preset-lint/rules/whitespace.js +++ b/packages/@svengreb/remark-preset-lint/rules/whitespace.js @@ -1,56 +1,55 @@ /* - * Copyright (c) 2018-present Arctic Ice Studio - * Copyright (c) 2018-present Sven Greb - * This source code is licensed under the MIT license found in the LICENSE file. + * Copyright (c) 2016-present Sven Greb + * This source code is licensed under the MIT license found in the license file. */ /** * Enforce a newline at the end of a file. Empty files are allowed. * * @see https://github.com/remarkjs/remark-lint/tree/main/packages/remark-lint-final-newline - * @see https://arcticicestudio.github.io/styleguide-markdown/rules/whitespace.html#newline + * @see https://github.com/svengreb/styleguide-markdown/blob/main/rules/whitespace.md#newline */ const finalNewline = require("remark-lint-final-newline"); /** * Enforce a consistent number of trailing whitespaces for line breaks. * * @see https://github.com/remarkjs/remark-lint/tree/main/packages/remark-lint-hard-break-spaces - * @see https://arcticicestudio.github.io/styleguide-markdown/rules/whitespace.html#trailing + * @see https://github.com/svengreb/styleguide-markdown/blob/main/rules/whitespace.md#trailing */ const hardBreakSpaces = require("remark-lint-hard-break-spaces"); /** * Enforce unix-style linebreaks. * * @see https://github.com/remarkjs/remark-lint/tree/main/packages/remark-lint-linebreak-style - * @see https://arcticicestudio.github.io/styleguide-markdown/rules/whitespace.html#newline + * @see https://github.com/svengreb/styleguide-markdown/blob/main/rules/whitespace.md#newline */ const linebreakStyle = require("remark-lint-linebreak-style"); /** * Enforce a maximum line length. * * @see https://github.com/remarkjs/remark-lint/tree/main/packages/remark-lint-maximum-line-length - * @see https://arcticicestudio.github.io/styleguide-markdown/rules/whitespace.html#maximum-line-length + * @see https://github.com/svengreb/styleguide-markdown/blob/main/rules/whitespace.md#maximum-line-length */ const maximumLineLength = require("remark-lint-maximum-line-length"); /** * Disallow more than one (1) blank line after and before each block. * * @see https://github.com/remarkjs/remark-lint/tree/main/packages/remark-lint-no-consecutive-blank-lines - * @see https://arcticicestudio.github.io/styleguide-markdown/rules/whitespace.html#after-blocks + * @see https://github.com/svengreb/styleguide-markdown/blob/main/rules/whitespace.md#after-blocks */ const noConsecutiveBlankLines = require("remark-lint-no-consecutive-blank-lines"); /** * Warn when missing blank line before a block node. * * @see https://github.com/remarkjs/remark-lint/tree/main/packages/remark-lint-no-missing-blank-lines - * @see https://arcticicestudio.github.io/styleguide-markdown/rules/whitespace.html#before-blocks + * @see https://github.com/svengreb/styleguide-markdown/blob/main/rules/whitespace.md#before-blocks */ const noMissingBlankLines = require("remark-lint-no-missing-blank-lines"); /** * Disallow tabs and enforce to use whitespaces. * * @see https://github.com/remarkjs/remark-lint/tree/main/packages/remark-lint-no-tabs - * @see https://arcticicestudio.github.io/styleguide-markdown/rules/whitespace.html#indentation-character + * @see https://github.com/svengreb/styleguide-markdown/blob/main/rules/whitespace.md#indentation-character */ const noTabs = require("remark-lint-no-tabs"); diff --git a/prettier.config.js b/prettier.config.js index 2e54022..dca03ad 100644 --- a/prettier.config.js +++ b/prettier.config.js @@ -1,15 +1,24 @@ /* - * Copyright (c) 2018-present Arctic Ice Studio - * Copyright (c) 2018-present Sven Greb - * This source code is licensed under the MIT license found in the LICENSE file. + * Copyright (c) 2016-present Sven Greb + * This source code is licensed under the MIT license found in the license file. */ /** * Configurations for Prettier. - * * @see https://prettier.io/docs/en/configuration.html * @see https://prettier.io/docs/en/options.html + * @see https://prettier.io/docs/en/options.html#parser + * @see https://prettier.io/docs/en/plugins.html + * @see https://github.com/un-ts/prettier/tree/master/packages/sh */ module.exports = { - printWidth: 120, + printWidth: 160, + overrides: [ + { + files: [".husky/*"], + options: { + parser: "sh", + }, + }, + ], }; diff --git a/readme.md b/readme.md new file mode 100644 index 0000000..8b1e6fd --- /dev/null +++ b/readme.md @@ -0,0 +1,89 @@ +

+ + + + + +

+ +

An opinionated, yet universally applicable Markdown code style guide.

+ +

+ + + + + + + + + +

+ +

+ + + +

+ +

+ + + +

+ +

+ + + + + + +

+ +Every major open source project has its own style guide, a set of standards and conventions for the writing and design of code, documentations and assets. It is much easier to understand a large codebase when all the code in it is in a consistent style. + +A style guide establishes and enforces style to improve the intelligibility and communication within the project community. It ensures consistency and enforces best practice in usage and language composition. + +### Getting Started + +Learn about the [comprehensive base rule set][9] with support for [GitHub Flavored Markdown][10] which is based on the [CommonMark][1] specification. It includes rules for all document elements like e.g. [code blocks][2], [headings][4] or [lists][5], defines [naming conventions][6] and best practices for [Raw HTML][7], [emphasizing][3] and [strings][8]. + +### Remark Configurations + +To follow the rules in a project and ensure that your code matches this style guide use the official extensible code linter rule preset [@svengreb/remark-preset-lint][12] for [remark-lint][11], a plugin for [remark][13]. + +

+ + + + + +

+ +

+ Copyright © 2016-present Sven Greb +

+ +

+ + + + + + +

+ +[1]: http://commonmark.org +[2]: https://github.com/svengreb/styleguide-markdown/blob/main/rules/code.md +[3]: https://github.com/svengreb/styleguide-markdown/blob/main/rules/emphasis.md +[4]: https://github.com/svengreb/styleguide-markdown/blob/main/rules/headings.md +[5]: https://github.com/svengreb/styleguide-markdown/blob/main/rules/lists.md +[6]: https://github.com/svengreb/styleguide-markdown/blob/main/rules/naming-conventions.md +[7]: https://github.com/svengreb/styleguide-markdown/blob/main/rules/raw-html.md +[8]: https://github.com/svengreb/styleguide-markdown/blob/main/rules/strings.md +[9]: https://github.com/svengreb/styleguide-markdown/blob/main/rules/index.md +[10]: https://github.github.com/gfm +[11]: https://github.com/remarkjs/remark-lint +[12]: https://github.com/svengreb/styleguide-markdown/tree/main/packages/@svengreb/remark-preset-lint +[13]: https://remark.js.org diff --git a/src/rules/accessibility-a11y.md b/rules/accessibility-a11y.md similarity index 53% rename from src/rules/accessibility-a11y.md rename to rules/accessibility-a11y.md index 1a6169a..cfe593a 100644 --- a/src/rules/accessibility-a11y.md +++ b/rules/accessibility-a11y.md @@ -11,9 +11,9 @@ Add an alternative text for images. ```markdown -![][snowflake] +![][snowflakes] -[snowflake]: https://raw.githubusercontent.com/arcticicestudio/styleguide-markdown/main/src/assets/snowflake.png +[snowflakes]: https://raw.githubusercontent.com/nordtheme/assets/main/static/images/artworks/arctic/nature/dark/snowfall.svg?sanitize=true ``` @@ -21,9 +21,9 @@ Add an alternative text for images. ⇡ **Correct** code for this rule: ```markdown -![snowflake icon][snowflake] +![falling snowflakes][snowflakes] -[snowflake]: https://raw.githubusercontent.com/arcticicestudio/styleguide-markdown/main/src/assets/snowflake.png +[snowflakes]: https://raw.githubusercontent.com/nordtheme/assets/main/static/images/artworks/arctic/nature/dark/snowfall.svg?sanitize=true ``` [a11y]: https://a11yproject.com diff --git a/src/rules/blockquotes.md b/rules/blockquotes.md similarity index 100% rename from src/rules/blockquotes.md rename to rules/blockquotes.md diff --git a/src/rules/code.md b/rules/code.md similarity index 96% rename from src/rules/code.md rename to rules/code.md index 2ee1e17..67499d3 100644 --- a/src/rules/code.md +++ b/rules/code.md @@ -99,7 +99,7 @@ npx run docs:generate -- --template=winter --description="Sparkling and frozen" ````markdown ```sh npx run docs:generate -- --template=winter --description="Sparkling and frozen" \ ---elements="snow,frost,ice" --snowflakes=20 + --elements="snow,frost,ice" --snowflakes=20 ``` ```` @@ -234,9 +234,9 @@ export default Snow; [Inline code spans](#inline) on the other hand should be used to highlight e.g. -- **executables** - `gcc`, `npm`, `go`, `python` -- **paths** - `/etc/hosts`, `src/main/java/com/arcticicestudio/icecore/hashids/Hashids.java` -- **version numbers** - `0.2.0`, `1.8.6-frost.2` +- **executables** - `go`, `npm`, `gcc` +- **paths** - `pkg/internal/transport/http/http.go`, `/etc/hosts` +- **version numbers** - `0.2.0`, `1.8.6-beta.2` - **code e.g. reserved keywords, builtins and operators** - `this`, `true`/`false`, `String`, `=>` Don't use it for diff --git a/src/rules/comments.md b/rules/comments.md similarity index 100% rename from src/rules/comments.md rename to rules/comments.md diff --git a/src/rules/emphasis.md b/rules/emphasis.md similarity index 100% rename from src/rules/emphasis.md rename to rules/emphasis.md diff --git a/src/rules/headings.md b/rules/headings.md similarity index 100% rename from src/rules/headings.md rename to rules/headings.md diff --git a/src/rules/horizontal-rules.md b/rules/horizontal-rules.md similarity index 100% rename from src/rules/horizontal-rules.md rename to rules/horizontal-rules.md diff --git a/src/rules/images.md b/rules/images.md similarity index 61% rename from src/rules/images.md rename to rules/images.md index 99f951d..22b6430 100644 --- a/src/rules/images.md +++ b/rules/images.md @@ -11,7 +11,7 @@ Prefer absolute URLs instead of relative ones to improve the portability of the ```markdown ![snowflake icon][snowflake] snowflakes falling down in the winter! -[snowflake]: ../assets/snowflake.png +[snowflake]: ../snowflake.svg ``` @@ -19,9 +19,9 @@ Prefer absolute URLs instead of relative ones to improve the portability of the ⇡ **Correct** code for this rule: ```markdown -![snowflake icon][snowflake] snowflakes falling down in the winter! +![falling snowflakes][snowflakes] snowflakes falling down in the winter! -[snowflake]: https://raw.githubusercontent.com/arcticicestudio/styleguide-markdown/main/src/assets/snowflake.png +[snowflakes]: https://raw.githubusercontent.com/nordtheme/assets/main/static/images/artworks/arctic/nature/dark/snowfall.svg?sanitize=true ``` ## Collapsed Reference Links @@ -38,11 +38,11 @@ Full references (such as `[Winter][winter]`) can also be written as a collapsed ```markdown ![arctic][arctic] -![snowflake][snowflake] +![snowflakes][snowflakes] ![winter][winter] [arctic]: https://arctic-is-beautiful.io/north-pole.png -[snowflake]: https://snow-is-falling-down.io/snowflake.png +[snowflakes]: https://raw.githubusercontent.com/nordtheme/assets/main/static/images/artworks/arctic/nature/dark/snowfall.svg?sanitize=true [winter]: https://the-winter-is-sparkling-and-frozen.io/winter.png ``` @@ -52,11 +52,11 @@ Full references (such as `[Winter][winter]`) can also be written as a collapsed ```markdown ![arctic][north-pole] -![snowflake][] +![snowflakes][] ![winter][] [north-pole]: https://arctic-is-beautiful.io/north-pole.png -[snowflake]: https://snow-is-falling-down.io/snowflake.png +[snowflakes]: https://raw.githubusercontent.com/nordtheme/assets/main/static/images/artworks/arctic/nature/dark/snowfall.svg?sanitize=true [winter]: https://the-winter-is-sparkling-and-frozen.io/winter.png ``` @@ -69,12 +69,12 @@ Use badges to represent simple information like latest version number and URL to ⇡ **Correct** code for this rule: ```markdown -[![Nord GitHub Shield Latest Release][shields-gh-releases-nord]][nord-gh-releases] [![Nord NPM Registry Shield Latest Release Version Number][shields-npm-version-nord]][npm-nord] +[![GitHub Shield Latest Release][shields-gh-releases]][gh-releases] [![NPM Registry Shield Latest Release Version Number][shields-npm-version]][npm] -[nord-gh-releases]: https://github.com/arcticicestudio/nord/releases/latest -[npm-nord]: https://www.npmjs.com/package/nord -[shields-npm-version-nord]: https://img.shields.io/npm/v/nord.svg?style=flat-square -[shields-gh-releases-nord]: https://img.shields.io/github/release/arcticicestudio/nord.svg?style=flat-square +[gh-releases]: https://github.com/svengreb/styleguide-markdown/releases/latest +[npm]: https://www.npmjs.com/package/@svengreb/remark-preset-lint +[shields-npm-version]: https://img.shields.io/npm/v/@svengreb/remark-preset-lint.svg?style=flat-square +[shields-gh-releases]: https://img.shields.io/github/release/svengreb/styleguide-markdown.svg?style=flat-square ``` [crates.io]: https://crates.io diff --git a/rules/index.md b/rules/index.md new file mode 100644 index 0000000..13a71c2 --- /dev/null +++ b/rules/index.md @@ -0,0 +1,115 @@ +

+ + + +

+ +

This section contains rules for Markdown with support for GitHub Flavored Markdown which is based on the CommonMark specification. + +Markdown is a [lightweight markup language][3] with plain text formatting syntax for writing structured documents. It is designed so that it can be converted to HTML and many other formats. + +As the initial specification of Markdown contained ambiguities and unanswered questions, many implementations and extensions of Markdown in many languages appeared over the years to answer these issues. Some extended the original Markdown syntax with conventions for footnotes, tables, and other document elements and allowed Markdown documents to be rendered in many formats other than HTML. + +Today the most used specifications are [CommonMark][1] and its superset [GitHub Flavored Markdown][2] which powers the content of many large websites like GitHub, StackOverflow, and Reddit used by millions of people. And Markdown started to be used beyond the web, to author books, articles, slide shows, letters, and lecture notes. + +## Rules + +- [Overview](https://github.com/svengreb/styleguide-markdown/blob/main/rules/index.md) +- [Accessibility A11Y](https://github.com/svengreb/styleguide-markdown/blob/main/rules/accessibility-a11y.md) + - [Alternative Text](https://github.com/svengreb/styleguide-markdown/blob/main/rules/accessibility-a11y.md#alternative-text) +- [Blockquotes](https://github.com/svengreb/styleguide-markdown/blob/main/rules/blockquotes.md) + - [Indentation](https://github.com/svengreb/styleguide-markdown/blob/main/rules/blockquotes.md#indentation) + - [Multi Line](https://github.com/svengreb/styleguide-markdown/blob/main/rules/blockquotes.md#multi-line) +- [Code](https://github.com/svengreb/styleguide-markdown/blob/main/rules/code.md) + - [Blocks](https://github.com/svengreb/styleguide-markdown/blob/main/rules/code.md#blocks) + - [Syntax Highlighting](https://github.com/svengreb/styleguide-markdown/blob/main/rules/code.md#syntax-highlighting) + - [Escape Newlines In Terminal Commands](https://github.com/svengreb/styleguide-markdown/blob/main/rules/code.md#blocks#escape-newlines-in-terminal-commands) + - [No Shell Code Dollar Sign](https://github.com/svengreb/styleguide-markdown/blob/main/rules/code.md#no-shell-code-dollar-sign) + - [Within Lists](https://github.com/svengreb/styleguide-markdown/blob/main/rules/code.md#within-lists) + - [Inline](https://github.com/svengreb/styleguide-markdown/blob/main/rules/code.md#inline) + - [Marker Character Style](https://github.com/svengreb/styleguide-markdown/blob/main/rules/code.md#marker-character-style) + - [Use Cases](https://github.com/svengreb/styleguide-markdown/blob/main/rules/code.md#use-cases) +- [Comments](https://github.com/svengreb/styleguide-markdown/blob/main/rules/comments.md) + - [HTML](https://github.com/svengreb/styleguide-markdown/blob/main/rules/comments.md#html) +- [Emphasis](https://github.com/svengreb/styleguide-markdown/blob/main/rules/emphasis.md) + - [Italic](https://github.com/svengreb/styleguide-markdown/blob/main/rules/emphasis.md#italic) + - [Bold](https://github.com/svengreb/styleguide-markdown/blob/main/rules/emphasis.md#bold) + - [Strikethrough](https://github.com/svengreb/styleguide-markdown/blob/main/rules/emphasis.md#strikethrough) + - [No Header Replacement](https://github.com/svengreb/styleguide-markdown/blob/main/rules/emphasis.md#no-header-replacement) + - [No Inner Spacing](https://github.com/svengreb/styleguide-markdown/blob/main/rules/emphasis.md#no-inner-spacing) +- [Headings](https://github.com/svengreb/styleguide-markdown/blob/main/rules/headings.md) + - [ATX Style](https://github.com/svengreb/styleguide-markdown/blob/main/rules/headings.md#atx-style) + - [Empty Lines Before And After](https://github.com/svengreb/styleguide-markdown/blob/main/rules/headings.md#empty-lines-before-and-after) + - [Content Spacing](https://github.com/svengreb/styleguide-markdown/blob/main/rules/headings.md#content-spacing) + - [No Content Before](https://github.com/svengreb/styleguide-markdown/blob/main/rules/headings.md#no-content-before) + - [No Duplicate](https://github.com/svengreb/styleguide-markdown/blob/main/rules/headings.md#no-duplicate) + - [Letter Case](https://github.com/svengreb/styleguide-markdown/blob/main/rules/headings.md#letter-case) + - [Length](https://github.com/svengreb/styleguide-markdown/blob/main/rules/headings.md#length) + - [Punctuation After Content](https://github.com/svengreb/styleguide-markdown/blob/main/rules/headings.md#punctuation-after-content) +- [Horizontal Rules](https://github.com/svengreb/styleguide-markdown/blob/main/rules/horizontal-rules.md) + - [Marker Character Style](https://github.com/svengreb/styleguide-markdown/blob/main/rules/horizontal-rules.md#marker-character-style) + - [No Prepended Or Appended Content](https://github.com/svengreb/styleguide-markdown/blob/main/rules/horizontal-rules.md#no-prepended-or-appended-content) + - [Empty Lines Before And After](https://github.com/svengreb/styleguide-markdown/blob/main/rules/horizontal-rules.md#empty-lines-before-and-after) + - [Use Cases](https://github.com/svengreb/styleguide-markdown/blob/main/rules/horizontal-rules.md#use-cases) +- [Images](https://github.com/svengreb/styleguide-markdown/blob/main/rules/images.md) + - [Absolute URLs](https://github.com/svengreb/styleguide-markdown/blob/main/rules/images.md#absolute-urls) + - [Badges](https://github.com/svengreb/styleguide-markdown/blob/main/rules/images.md#badges) +- [Links](https://github.com/svengreb/styleguide-markdown/blob/main/rules/links.md) + - [Prefer Reference Links](https://github.com/svengreb/styleguide-markdown/blob/main/rules/links.md#prefer-reference-links) + - [Inline](https://github.com/svengreb/styleguide-markdown/blob/main/rules/links.md#inline) + - [Definition Placement](https://github.com/svengreb/styleguide-markdown/blob/main/rules/links.md#definition-placement) + - [Empty Line Before](https://github.com/svengreb/styleguide-markdown/blob/main/rules/links.md#empty-line-before) + - [Letter Case](https://github.com/svengreb/styleguide-markdown/blob/main/rules/links.md#letter-case) + - [No ID Inner Spacing](https://github.com/svengreb/styleguide-markdown/blob/main/rules/links.md#no-id-inner-spacing) + - [No Trailing Or Leading Title Spaces](https://github.com/svengreb/styleguide-markdown/blob/main/rules/links.md#no-trailing-or-leading-title-spaces) + - [Spacing After Colon](https://github.com/svengreb/styleguide-markdown/blob/main/rules/links.md#spacing-after-colon) + - [Sorting](https://github.com/svengreb/styleguide-markdown/blob/main/rules/links.md#sorting) + - [Reference Link Groups](https://github.com/svengreb/styleguide-markdown/blob/main/rules/links.md#reference-link-groups) + - [Reference Link Group Ordering](https://github.com/svengreb/styleguide-markdown/blob/main/rules/links.md#reference-link-group-ordering) + - [No Unused](https://github.com/svengreb/styleguide-markdown/blob/main/rules/links.md#no-unused) + - [No Undefined](https://github.com/svengreb/styleguide-markdown/blob/main/rules/links.md#no-undefined) + - [Autolink Protocol](https://github.com/svengreb/styleguide-markdown/blob/main/rules/links.md#autolink-protocol) + - [Unique IDs](https://github.com/svengreb/styleguide-markdown/blob/main/rules/links.md#unique-ids) + - [No Empty URL](https://github.com/svengreb/styleguide-markdown/blob/main/rules/links.md#no-empty-url) + - [No Reference Like URL](https://github.com/svengreb/styleguide-markdown/blob/main/rules/links.md#no-reference-like-url) +- [Lists](https://github.com/svengreb/styleguide-markdown/blob/main/rules/lists.md) + - [Unordered Marker](https://github.com/svengreb/styleguide-markdown/blob/main/rules/lists.md#unordered-marker) + - [Ordered Marker](https://github.com/svengreb/styleguide-markdown/blob/main/rules/lists.md#ordered-marker) + - [No Content Before](https://github.com/svengreb/styleguide-markdown/blob/main/rules/lists.md#no-content-before) + - [Continuous Indentation](https://github.com/svengreb/styleguide-markdown/blob/main/rules/lists.md#continuous-indentation) + - [Empty Lines](https://github.com/svengreb/styleguide-markdown/blob/main/rules/lists.md#empty-lines) + - [Empty Lines Before And After](https://github.com/svengreb/styleguide-markdown/blob/main/rules/lists.md#empty-lines-before-and-after) + - [Letter Case](https://github.com/svengreb/styleguide-markdown/blob/main/rules/lists.md#letter-case) + - [Punctuation After Items](https://github.com/svengreb/styleguide-markdown/blob/main/rules/lists.md#punctuation-after-items) + - [Checkbox Character Style](https://github.com/svengreb/styleguide-markdown/blob/main/rules/lists.md#checkbox-character-style) +- [Naming Conventions](https://github.com/svengreb/styleguide-markdown/blob/main/rules/naming-conventions.md) + - [File Extension](https://github.com/svengreb/styleguide-markdown/blob/main/rules/naming-conventions.md#file-extension) + - [File Naming](https://github.com/svengreb/styleguide-markdown/blob/main/rules/naming-conventions.md#file-naming) +- [Paragraphs](https://github.com/svengreb/styleguide-markdown/blob/main/rules/paragraphs.md) + - [No Indentation](https://github.com/svengreb/styleguide-markdown/blob/main/rules/paragraphs.md#no-indentation) +- [Raw HTML](https://github.com/svengreb/styleguide-markdown/blob/main/rules/raw-html.md) + - [Aligned Content](https://github.com/svengreb/styleguide-markdown/blob/main/rules/raw-html.md#aligned-content) + - [Inline Content](https://github.com/svengreb/styleguide-markdown/blob/main/rules/raw-html.md#inline-content) + - [Collapsed Content](https://github.com/svengreb/styleguide-markdown/blob/main/rules/raw-html.md#collapsed-content) +- [Strings](https://github.com/svengreb/styleguide-markdown/blob/main/rules/strings.md) + - [Quotes](https://github.com/svengreb/styleguide-markdown/blob/main/rules/strings.md#quotes) + - [Line Length](https://github.com/svengreb/styleguide-markdown/blob/main/rules/strings.md#line-length) +- [Tables](https://github.com/svengreb/styleguide-markdown/blob/main/rules/tables.md) + - [Prefer Lists](https://github.com/svengreb/styleguide-markdown/blob/main/rules/tables.md#prefer-lists) + - [Empty Lines Before And After](https://github.com/svengreb/styleguide-markdown/blob/main/rules/tables.md#empty-lines-before-and-after) + - [Content Spacing](https://github.com/svengreb/styleguide-markdown/blob/main/rules/tables.md#content-spacing) + - [Header Delimiter Row Spacing](https://github.com/svengreb/styleguide-markdown/blob/main/rules/tables.md#header-delimiter-row-spacing) + - [Minimum Column Width](https://github.com/svengreb/styleguide-markdown/blob/main/rules/tables.md#minimum-column-width) + - [Alignment](https://github.com/svengreb/styleguide-markdown/blob/main/rules/tables.md#alignment) + - [No Indentation](https://github.com/svengreb/styleguide-markdown/blob/main/rules/tables.md#no-indentation) +- [Whitespace](https://github.com/svengreb/styleguide-markdown/blob/main/rules/whitespace.md) + - [Indentation Character](https://github.com/svengreb/styleguide-markdown/blob/main/rules/whitespace.md#indentation-character) + - [Newline](https://github.com/svengreb/styleguide-markdown/blob/main/rules/whitespace.md#newline) + - [Before Blocks](https://github.com/svengreb/styleguide-markdown/blob/main/rules/whitespace.md#before-blocks) + - [After Sentences](https://github.com/svengreb/styleguide-markdown/blob/main/rules/whitespace.md#after-sentences) + - [Maximum Line Length](https://github.com/svengreb/styleguide-markdown/blob/main/rules/whitespace.md#maximum-line-length) + - [Trailing](https://github.com/svengreb/styleguide-markdown/blob/main/rules/whitespace.md#trailing) + +[1]: https://commonmark.org +[2]: https://github.github.com/gfm +[3]: https://en.wikipedia.org/wiki/Lightweight_markup_language diff --git a/src/rules/links.md b/rules/links.md similarity index 97% rename from src/rules/links.md rename to rules/links.md index 98e8bd6..f5e37cd 100644 --- a/src/rules/links.md +++ b/rules/links.md @@ -512,9 +512,9 @@ Always add a valid protocol when using [autolinks][gfm-spec-links-autolinks]. ```markdown -www.arcticicestudio.com +www.svengreb.de -arcticicestudio.com +svengreb.de ``` @@ -522,17 +522,17 @@ arcticicestudio.com ⇡ **Correct** code for this rule: ```markdown -https://arcticicestudio.com +https://svengreb.de -https://www.arcticicestudio.com +https://www.svengreb.de -http://arcticicestudio.com +http://svengreb.de -http://www.arcticicestudio.com +http://www.svengreb.de ``` ```markdown -mailto:code@arcticicestudio.com +mailto:development@svengreb.de ``` ## Unique IDs @@ -595,16 +595,16 @@ The [winter]() is sparkling and frozen! ```markdown The [winter][winter] is sparkling and frozen! -![snowflake image][snowflake] +![falling snowflakes][snowflakes] -[snowflake]: https://snow-is-falling-down.io/snowflake.png +[snowflakes]: https://raw.githubusercontent.com/nordtheme/assets/main/static/images/artworks/arctic/nature/dark/snowfall.svg?sanitize=true [winter]: https://the-winter-is-sparkling-and-frozen.io ``` ```markdown The [winter](https://the-winter-is-sparkling-and-frozen.io) is sparkling and frozen! -![snowflake image](https://snow-is-falling-down.io/snowflake.png) +![falling snowflakes](https://raw.githubusercontent.com/nordtheme/assets/main/static/images/artworks/arctic/nature/dark/snowfall.svg?sanitize=true) ``` ## No Reference Like URL diff --git a/src/rules/lists.md b/rules/lists.md similarity index 99% rename from src/rules/lists.md rename to rules/lists.md index f173aca..8c785c7 100644 --- a/src/rules/lists.md +++ b/rules/lists.md @@ -177,7 +177,7 @@ Use two (2) whitespaces for continuous indentation of nested items and their con String[] flakes = Snow.getFlakes(); ``` - Frost - > Sparkling and frozen! + > Sparkling and frozen! ```` diff --git a/src/rules/naming-conventions.md b/rules/naming-conventions.md similarity index 100% rename from src/rules/naming-conventions.md rename to rules/naming-conventions.md diff --git a/src/rules/paragraphs.md b/rules/paragraphs.md similarity index 100% rename from src/rules/paragraphs.md rename to rules/paragraphs.md diff --git a/src/rules/raw-html.md b/rules/raw-html.md similarity index 84% rename from src/rules/raw-html.md rename to rules/raw-html.md index dc65259..573d07d 100644 --- a/src/rules/raw-html.md +++ b/rules/raw-html.md @@ -38,13 +38,13 @@ Although MDN states that the `width` and `height` attributes are deprecated and ```markdown -Sparkling snowflakes falling down in the winter! +Sparkling snowflakes falling down in the winter! ``` No way to define the size: ```markdown -Sparkling ![snowflake icon](https://raw.githubusercontent.com/arcticicestudio/styleguide-markdown/main/src/assets/snowflake.png) snowflakes falling down in the winter! +Sparkling ![falling snowflakes](https://raw.githubusercontent.com/nordtheme/assets/main/static/images/artworks/arctic/nature/dark/snowfall.svg?sanitize=true) snowflakes falling down in the winter! ``` @@ -52,7 +52,7 @@ Sparkling ![snowflake icon](https://raw.githubusercontent.com/arcticicestudio/st ⇡ **Correct** code for this rule: ```markdown -Sparkling snowflakes falling down in the winter! +Sparkling snowflakes falling down in the winter! ``` ## Collapsed Content diff --git a/src/rules/strings.md b/rules/strings.md similarity index 92% rename from src/rules/strings.md rename to rules/strings.md index 34373cd..2a1f887 100644 --- a/src/rules/strings.md +++ b/rules/strings.md @@ -3,7 +3,7 @@ Use double quotes `""` for strings: - **Double quotes can be used for inline HTML**. -- **Consistency to other style guides**. Double quotes are used by many code styles like [JavaScript][styleguide-javascript-ghio]. +- **Consistency to other style guides**. Double quotes are used by many code styles like [JavaScript][styleguide-javascript]. - **Parallelism to the natural language**. Double quotes are used to identify a passage of quoted text. When using single quotes, the reader may misinterpret it as a contraction. The other meaning of a passage of text surrounded by the `'` indicates the _colloquial_ meaning. It makes sense to stay consistent with pre-existing languages, and this may likely ease the learning and interpretation of code. > remark-lint: [link-title-style][remark-lint-link-title-style] @@ -57,4 +57,4 @@ cake dessert icing donut." ``` [remark-lint-link-title-style]: https://github.com/remarkjs/remark-lint/tree/main/packages/remark-lint-link-title-style -[styleguide-javascript-ghio]: https://arcticicestudio.github.io/styleguide-javascript +[styleguide-javascript]: https://github.com/arcticicestudio/styleguide-javascript diff --git a/src/rules/tables.md b/rules/tables.md similarity index 100% rename from src/rules/tables.md rename to rules/tables.md diff --git a/src/rules/whitespace.md b/rules/whitespace.md similarity index 99% rename from src/rules/whitespace.md rename to rules/whitespace.md index 715c230..66447b5 100644 --- a/src/rules/whitespace.md +++ b/rules/whitespace.md @@ -139,7 +139,7 @@ Many snowflakes are falling down. The winter has sparkling and frozen elements! In contrast to source code, where lines contain statements that can be almost always be broken up or indented, this rule can not be applied to flowing text. The author should be able to write sentences and text blocks without worrying about the line length. -Other style guides suggest to use line breaks after the character limit has been reached, but this will lead to deformed rendered output since GFM supports [soft line breaks][gfm-spec-soft_line_breaks]. Therefore, this guide advices to **avoid using a character limit per line for flowing text**, but try to use a maximum line length of 120 characters (including whitespaces) for all other document elements. +Other style guides suggest to use line breaks after the character limit has been reached, but this will lead to deformed rendered output since GFM supports [soft line breaks][gfm-spec-soft_line_breaks]. Therefore, this guide advices to **avoid using a character limit per line for flowing text**, but try to use a maximum line length of 160 characters (including whitespaces) for all other document elements. Instead of enforcing a maximum line length, users should use [soft line wrapping][wiki-line_wrap]: diff --git a/src/README.md b/src/README.md deleted file mode 100644 index 5915f3f..0000000 --- a/src/README.md +++ /dev/null @@ -1 +0,0 @@ -{% include "git+https://github.com/arcticicestudio/styleguide-markdown.git/README.md" %} diff --git a/src/SUMMARY.md b/src/SUMMARY.md deleted file mode 100644 index 8afa53c..0000000 --- a/src/SUMMARY.md +++ /dev/null @@ -1,136 +0,0 @@ -# Summary - -### Introduction - -- [Overview](README.md) - -### Rules - -- [Overview](rules/index.md) -- [Accessibility A11Y](rules/accessibility-a11y.md) - - [Alternative Text](rules/accessibility-a11y.md#alternative-text) -- [Blockquotes](rules/blockquotes.md) - - [Indentation](rules/blockquotes.md#indentation) - - [Multi Line](rules/blockquotes.md#multi-line) -- [Code](rules/code.md) - - [Blocks](rules/code.[code]#blocks) - - [Syntax Highlighting](rules/code.md#blocks#syntax-highlighting) - - [Escape Newlines In Terminal Commands](rules/code.md#blocks#escape-newlines-in-terminal-commands) - - [No Shell Code Dollar Sign](rules/code.md#blocks#no-shell-code-dollar-sign) - - [Within Lists](rules/code.md#blocks#within-lists) - - [Inline](rules/code.md#blocks#inline) - - [Marker Character Style](rules/code.md#blocks#marker-character-style) - - [Use Cases](rules/code.md#blocks#use-cases) -- [Comments](rules/comments.md) - - [HTML](rules/comments.md#html) -- [Emphasis](rules/emphasis.md) - - [Italic](rules/emphasis.md#italic) - - [Bold](rules/emphasis.md#bold) - - [Strikethrough](rules/emphasis.md#strikethrough) - - [No Header Replacement](rules/emphasis.md#no-header-replacement) - - [No Inner Spacing](rules/emphasis.md#no-inner-spacing) -- [Headings](rules/headings.md) - - [ATX Style](rules/headings.md#atx-style) - - [Empty Lines Before And After](rules/headings.md#empty-lines-before-and-after) - - [Content Spacing](rules/headings.md#content-spacing) - - [No Content Before](rules/headings.md#no-content-before) - - [No Duplicate](rules/headings.md#no-duplicate) - - [Letter Case](rules/headings.md#letter-case) - - [Length](rules/headings.md#length) - - [Punctuation After Content](rules/headings.md#punctuation-after-content) -- [Horizontal Rules](rules/horizontal-rules.md) - - [Marker Character Style](rules/horizontal-rules.md#marker-character-style) - - [No Prepended Or Appended Content](rules/horizontal-rules.md#no-prepended-or-appended-content) - - [Empty Lines Before And After](rules/horizontal-rules.md#empty-lines-before-and-after) - - [Use Cases](rules/horizontal-rules.md#use-cases) -- [Images](rules/images.md) - - [Absolute URLs](rules/images.md#absolute-urls) - - [Badges](rules/images.md#badges) -- [Links](rules/links.md) - - [Prefer Reference Links](rules/links.md#prefer-reference-links) - - [Inline](rules/links.md#inline) - - [Definition Placement](rules/links.md#definition-placement) - - [Empty Line Before](rules/links.md#empty-line-before) - - [Letter Case](rules/links.md#letter-case) - - [No ID Inner Spacing](rules/links.md#no-id-inner-spacing) - - [No Trailing Or Leading Title Spaces](rules/links.md#no-trailing-or-leading-title-spaces) - - [Spacing After Colon](rules/links.md#spacing-after-colon) - - [Sorting](rules/links.md#sorting) - - [Reference Link Groups](rules/links.md#reference-link-groups) - - [Reference Link Group Ordering](rules/links.md#reference-link-group-ordering) - - [No Unused](rules/links.md#no-unused) - - [No Undefined](rules/links.md#no-undefined) - - [Autolink Protocol](rules/links.md#autolink-protocol) - - [Unique IDs](rules/links.md#unique-ids) - - [No Empty URL](rules/links.md#no-empty-url) - - [No Reference Like URL](rules/links.md#no-reference-like-url) -- [Lists](rules/lists.md) - - [Unordered Marker](rules/lists.md#unordered-marker) - - [Ordered Marker](rules/lists.md#ordered-marker) - - [No Content Before](rules/lists.md#no-content-before) - - [Continuous Indentation](rules/lists.md#continuous-indentation) - - [Empty Lines](rules/lists.md#empty-lines) - - [Empty Lines Before And After](rules/lists.md#empty-lines-before-and-after) - - [Letter Case](rules/lists.md#letter-case) - - [Punctuation After Items](rules/lists.md#punctuation-after-items) - - [Checkbox Character Style](rules/lists.md#checkbox-character-style) -- [Naming Conventions](rules/naming-conventions.md) - - [File Extension](rules/naming-conventions.md#file-extension) - - [File Naming](rules/naming-conventions.md#file-naming) -- [Paragraphs](rules/paragraphs.md) - - [No Indentation](rules/paragraphs.md#no-indentation) -- [Raw HTML](rules/raw-html.md) - - [Aligned Content](rules/raw-html.md#aligned-content) - - [Inline Content](rules/raw-html.md#inline-content) - - [Collapsed Content](rules/raw-html.md#collapsed-content) -- [Strings](rules/strings.md) - - [Quotes](rules/strings.md#quotes) - - [Line Length](rules/strings.md#line-length) -- [Tables](rules/tables.md) - - [Prefer Lists](rules/tables.md#prefer-lists) - - [Empty Lines Before And After](rules/tables.md#empty-lines-before-and-after) - - [Content Spacing](rules/tables.md#content-spacing) - - [Header Delimiter Row Spacing](rules/tables.md#header-delimiter-row-spacing) - - [Minimum Column Width](rules/tables.md#minimum-column-width) - - [Alignment](rules/tables.md#alignment) - - [No Indentation](rules/tables.md#no-indentation) -- [Whitespace](rules/whitespace.md) - - [Indentation Character](rules/whitespace.md#indentation-character) - - [Newline](rules/whitespace.md#newline) - - [Before Blocks](rules/whitespace.md#before-blocks) - - [After Sentences](rules/whitespace.md#after-sentences) - - [Maximum Line Length](rules/whitespace.md#maximum-line-length) - - [Trailing](rules/whitespace.md#trailing) - -### Development - -- [Requirements](development/requirements.md) -- [Building](development/building.md) - - [Documentations](development/building.md#documentations) -- [Contributing](development/contributing.md) - - [Getting Started](development/contributing.md#getting-started) - - [Port Projects](development/contributing.md#port-projects) - - [Bug Reports](development/contributing.md#bug-reports) - - [Enhancement Suggestions](development/contributing.md#enhancement-suggestions) - - [Pull Requests](development/contributing.md#pull-requests) - - [Documentations](development/contributing.md#documentations) - - [Branch Organization](development/contributing.md#branch-organization) - - [How else can I help?](development/contributing.md#how-else-can-i-help) - - [Improve Issues](development/contributing.md#improve-issues) - - [Give Feedback On Issues and Pull Requests](development/contributing.md#give-feedback-on-issues-and-pull-requests) - - [Styleguides](development/contributing.md#styleguides) - - [Git Commit Messages](development/contributing.md#git-commit-messages) - - [MCVE](development/contributing.md#mcve) - - [Versioning](development/contributing.md#versioning) - - [Credits](development/contributing.md#credits) -- [Changelog](development/changelog.md) - - [0.1.0](development/changelog.md#010) - - [0.2.0](development/changelog.md#020) - - [0.4.0](development/changelog.md#040) -- [Code of Conduct](development/code-of-conduct.md) - - [What we believe in and how we act](development/code-of-conduct.md#what-we-believe-in-and-how-we-act) - - [Unacceptable Behavior](development/code-of-conduct.md#unacceptable-behavior) - - [Responsibilities](development/code-of-conduct.md#responsibilities) - - [Consequences for Violations](development/code-of-conduct.md#consequences-for-violations) - - [Scope](development/code-of-conduct.md#scope) -- [Credits](development/credits.md) diff --git a/src/assets/markdown-logo.png b/src/assets/markdown-logo.png deleted file mode 100644 index 768a659e7b76bf2e68a00da30593a195de6d23b1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 31980 zcmeFacU%-#8$UYOAW=bMVu=DVyvl1tMU8+0jjy&%w(>qwU&9Fg=~m5D z#y6L_Wm&Zb4qkb+2hFw8WHajyRp9tnzuh_7 zdeRr$*gK*wC^}p6Dz5x|bIIV~u#KK=pPpO)SV;6A%&fE;XX{(SAC(u0qxf~)cO<-^ ze5@+$r%YD2^ho!3&1!tMbM%W;n&C&YQT|CI_O>J(Hmd8)8DBbB(}BVoz53#bem{RR<$tXDlzd1 z{t`dG)u2e1n$|PTS=^X0=A*n%=t*ji&%M5Q+WTT(f8|x;A-;aA{e|FB26f|;#B!%_ z7d1<{5bxc;%}r<8`{98hVi|7EcH??2jGatRr|8BLoiZ|9YhPbgwH=@9y8-UIk@nE& zWzlujapL-3Kk7cwf}C7=x=^6Z+dAz?t4J#}-$;@n89R9TbZg0pQZ4GHtf!4;>(7J< zl%2SHNvqUsvdSWv?I0Q3seF2S1$B!e(43ti9kWwr-CnW$p{Ou3Dy{IQ{G#wl(_HEX zUYPozvhl)+4#S0YH`dH(zZvkoz+13g>4leFT1U_Eb#B_jSM?d<28*2i9Sfeiw-w?6 z%z5nO8QwG@a~l(#Y?%d@RWF)iuI<~9SZK$xefqk;wAV6cDm4ek#xNu7y6R6teat!L zFRf6afup)}>D}R|2}0kEj1X;-c}(+}-a9{?_P*3IQy6x-+}v$p9i=i%no!Ql5RYv} ztV}Nz75YYJjQJ`5`)o0_0ya`ms4~Z$H$|9yZJean_z-_AZY&R^)%fIWvQzjr^&oNY z`m)H9Pu?qQ9o2lncY@a%If#P$&l5}VaIpB?6Zew@MCqP4w`VriKf|M0t0eXY8YWGr8?zc6>x+bYPnZ8}Z2YvBs1+xs4@BwG zlCJ*RP`WbR)ta%-VE)t2#dvsH;X!{LYHr0>Z1V-reHQ4ic`nv#Z{(<51ay) z1~)FJz}x@9zdf!@p7xTd-lDv4qKzhsS;8)=eEms7-n8r)*Z(qpn&?z;OE}a-%T5%e zY#PH39yE$Bf#Et`JU~KrQzM2@{4dLG_Yly!m#2xd(QWEY` z5bXcp+cePFjf~WW|Gr&BP0foja4g7uxGC@3n1dU_k0_5H8k`W<7ktmtr+$9?=C zH1E2nrCyA8O6*Q*Fwi9OPD$8N5DtT!TUzR?OJ5D&)efM=#s8)E;F`-t!Tb{Wiszy+ z8DTD-V;4aW%2tLmwSBSp-t zdp15UJ`%0F{#=m$(_Uw;oAsdy9v%C0mOA&PKU=K5CVH}JJMJM~J3*+az~Pr0pY$%$ zKkNXAtGhcJFK0KdVN9V3I{%X0offv={{gqORy1}O@84ucb7<<9%uY-X1Hr|&f>L)W z9k<$FqJ6JyG{L37Z+u-{{t4V6rQzu!n^y*!3FT=IPmQ%cTikDYG4aJ~!+X~!5H!DK zBfbDHH8QH)R2U>EBGxS^r!l~K>5FGL4K7%)`tSxfiR4IuXqKvmFwa(fkKA(y*t`NkH{9d?XZ>!OQj9G81Oy23cQa`NF=jvd#IOEwX-gS zHCdHTl#5Rv@DHb-V^z$=J8;`ABlm9#e;bKrHhz0WBP^Lbs(!rF#~y|(j)omlmXwb5 zByt7w$4-y9BklU zh~^hLoYwOQfAD$lCo~n>etv?Vl@AZrd0qhG&uW~DD6Rh~vA#n7@|OL@-qf+n^4|aU z&=9~n-~LIwCho=-Jj*K0c2b_k&pXQJ(bGw*%7`#L!+T&;1qe5V=*9<@)zN~-bgPmj zc5HL6)}?50E&eKrZ%98^{f8IcL*TKw4-Yt81Q`lG9n^raG^gNUb8mpx`)MArGlnir zc>NREX~MAs-m>#=N3P?ES;MnwYrvA4{qVEw-s%VDKCJ+!B-M?rA-427TPkMblO+;! zRp~V7`Lvd}rwpg>ne~q?G5cVV^9>1wK7^^!t1$5qeXt23(HvNd_C1-I2Gdpc?AsVb$ zn=oM=1{~{deql4;{-WXbf-8(S{090FY+8_=GKYv#<`2POV*G@Lir?uD25Ga%{7NwMme)lNV3wC|;^1c*~NAAN)KZe@!B+@lw3e$xzZ$J??=UOB`mlQ^bfY$sAg}dTUnMsU^nfGh>=Tat0)INo*2{0x zqto5$|7tT=d5s#h*VHLx!DGD6rfB}S{8&i*@ZfDCR?;tV)+8Q^8^e5MJZ|n}IKS@B zeSQ8M^NXv_x=HNQTrD+mD5fsMJ=S?&XT!Y!R(Ru(QGdG9Et_ro{Py?;I#QV~^w^pu zuU%NQP+l1xn$LKL*_N+*_j>&wg0ykf_sXr>qd(Draem`0ab8$t2=`fcB-q}Y9M1`R zr&V}AM1GB79Q`}RqUc$=$BoQ}HH_Z`BbU8KH%wLqInTP&8Y*LC3md@m{CkO%ePbvzaAMiG}^s2d$2d zomo)cR=)zbeWXdA`-xStopS<2>725oO=Sbtn(?YvbxdBtzHg=4 zpsWv)(w1r>E?@U@)W$03*yP~R_@dlS(b${G|H%nxbPV$wcbhnfyO_w+2PiVUk!3t`j+xv$I2%j_;+k`U`aYN&yM|cq20vH z>V|f#rhAGiB(Q(t&J^>Lx{6QU2k||WXRjF1hI9!cvX}q8ziJCu_2K@-e+Anqb0_4s zEt?Ig=k=DJB38W*436|aqm`v_$?^49{FOJpE7Jo#^?{z1b>A|0#ofCkM^2=3e0vwt zxij`;YHc&eaz^_rz#h%4={%b?=w27ektn!#8vXl4&xkAQkJ@N^e|YwHhbUc+uVt0k z$c`<|aX3lmZCLA_WIJtXj!~63^Vt{6%fe|;Z&)816Fm}X?mjbd-#3%#vIgd)p$|)$p^@pf1y5;#T>RgJNUQ&oA%*S#!G@H> z|15##H-#PTI-;pc zDY5&C5${xEdRQo=Dw5kG-4p)a%46``#e%J4db2QA$sik|w&-Yjxky*Gy^ZYv0sYvb zzqRy5D_UmvV5VhjC6Q1nk?l{|rM^ey0lH=2{r48+2%p2>5A@t4zQD7n(%Paphz9o= zH&oY%A^7FVlXRkn(4y)h7T-dAI5F5n5Qk9qcc5hno=U~moB)Uy=k(l}tG?9NQoIOt zQ{JNDsx%s=Yb~KDFkR=6=4#478KFqI_TpqkNRY4cD%|K<^C!Ms>_x4@v4vHhoHdfT ziK7hlCn=71i__B#Ov&_Hba(FtZP9SQh6JTs^_EmGTd47 zPDWw8`h;BtJSyi~=#J(ZXd(WD8*|vktc(<>@1hXLdj&zyv@y!_T~K>Tw60du#Usor zmfn0anN_sTf2zeBv(9<=N1-3owY1;=L%g84^-KV6=ic3kPq(wf`hFo{=C1|Sd2TKzp3IqIg6ra^Hxz5%+s*-mT5(!c9VAIm% zuOaQw;_P5ElR>;_r2(|kqB5~7TIrKeAHf(!TGnw8PE5&7F%pi+-~HlwC#VNHkqmNO zw#TnW4|GY=)3ZS4Xew%?OX|u6o0ue1AT8uk50q>uY_y{vtq*Np?IgkrV(n zTdTnqG}Yq!NCod|9l4I(01MOPbg}(HGLKdS0uDJd0f&q9wM-)t*zvX$;)i)4GW=~9 zaRN7o&}Y$ zYRd@upi?5Gv4^Cd_7Wx_=B9*! zZ`Wt$?geyCPZMa9&l6K5yn?~TT84mh#d$o@8WJ|Z;h zApdPT6951XA?EoKyn& z4h{R4fc*@EZz%_f??Gc;4gx_Y=wBvFm)dLQ0|UTr@{b5!w(IZ~b9Y#yzzLV+Avm-r zkNm_){L|mmk@$e$r7ID^o7qn8;E?9t`2?3t2!M;2jL`_7wdNVF#E${HaLH;AJJRmd z^zRqITwH%LciA`vOKR* z_UG698^P4rKcCdt8CX6QaXp`CCsd<8~m5rj^6Wn8i`+Q1o!o*ZB z0LW-l;C}>=O7Q+@b1J8z4yKJ{w<-53sflZ4smN0zQgqR*C;WdlcsG*62BNbRk08h*81%i(16b|NAfeUx`bS<>703N z4FR1URf`ryeRLa-|QOqpH63W z{4l~_V(@hOt*4RgGylC}M#ImgIWJD0mzy(YWdHW^<$kmC|C(B}*!y73bKTEbd+O>I z?ebah$ARzJT{Av2*=73Kfzsm1I`es1bJJ5V-O3ugy{sZOe(2r!cv0Is;ZNhnQR8j- zhX2}8HXPSKa(zhx%X(Y)1=8P&BGJw{=3yp&iTJ5vvEqx|bQMSNiVB71{4vuK-ba>Xa5VV%B~OH6ONt1Uf%G6EAxZ)%|jV^Yq)R;BB1AyJ}u zgIvzzu29@B*+>+5*iX43(}OBKu0-CLbD)Y9AvWF`fkk)73H}5LpCA&tCP;XyEy*}f zhF8&YL^5qk+PEk&?+3WDQBiMEd+D$W2+-p>t6j zE72BnD;6Vs&?C873@7V@j45Vy0=${H-$9->SO1K3ja#J&ugZlmR{ep3v;&BOXCwup znaV6eNiU?2780uxh`b~t-d)Io1}T&9oQJr1)WEh5U`#T*SBg)@)9F=KqE*gto%O{D z-|A2D==n$no}{@D8X0(W9mA_=p&mgosk3RJIKbXcaY5*;RCVYehN?e7({V>{k`$DF zprGq>M1eg;LFNBJ!7}tnybDdia-d)@ev+2YX~d8`XjkNHHPJDPv)fRb0D4C&S(bvn zrB~)T^~ObszW5*mQ%LABsU(~gTID}QdTt)OH-SVum^ts<0B=Q7NaL_dPpK9 z00YH8c^@Hh3j$APPY0kBt-t5P`W1+>rGeim_g2i7U2WJ^5Js7N%uxVU_2-Sw-LX-k zCH*agHLV*H@`0dm1Om=y=4?HuyrhkY6W&e~UbY_gQu38oJ7vNdviu6G<|Ci{_R zF)OW*Y#gp!5!<~Hui8q1?FMqnvF%fF%VZbMP^15pF4;V0FOAy$ z2(@M}M5kO#ML5i@P{vDaLVqQKR;`&eV{2RnC z(b&K@Kr!aV_Y$PYcQdA>KV664ozVZ!q{lS3r^dcPd|G8CgTB~+j=e+Ml=&3aIRXH#sATXYQbE(C4-^O>F~xE$ z8rcW}tNJe!#z|zsl*a`{V=Eg#2V3kEZS^kJ9E~>=Ape~ch+NUaq>a^qA5*|Uns&L6 z%pPO|1+r&0PS!pY)+$c|)|#FdTotzYPg&SmiZ{@d*&)gv_lM$z9Xe)Zk>Wvn3N&(( z(ZWG?`S~c`-nx$oK=8;3p$Xsw{~rV(5xAV!5Kw8unIHg_M4KKJTvc7~(5bA9m6+51 zVJUKjo+o=VyyK&I-T5g(8Xle`3@V2=DC6LP`;H&MU>Q=6b6X9u4dHNk?*-z6EBqJY zCr$aD7$d|Tvsg9Sk~Z25l8|sb3(h*(n(5zuB=l1rrybGv=#lQXYCNrCwlr=YtCxny zR>WwvjbTc{T6iGvkdmhf2WF^l%Ns$C$orh`?hdY_wM#wtL+R1J;ydNgdl6mLQWbPs1f=>S_o7;ZJL#f*pzoOsULM{pi z;P+Rl_%V$q<{`%=^Gi?DWtwk^FzrG7Cs9tiX*ycNvU35hMrLpV8o=n)6=#t~yYhj5 zhW_ny=AmQSh+NJZ#Qg%>ZT0YLRPb&AI0N)MKMei89+=adaU zzj5W%n^Qj91?~S7?}j!gyE=5To_wTzMKRK&Ni@B_%k_`fkA%7c##vdOVzUDY|BE08 zjR`hAM-~-RzFA@zAJufDAXV5;GfHaZafh}T5Xpb|5eWt)32@Q{B&@9Yn1nYZ2^pPY zQUq4%K!R8!g2yBY-Wn423LTWA6wsO;kt8$%3Fo7ler<3n2%?NL=P;5r-ggYQO^9k* zo-dQrR$KigIqGbCUgar08R-{vcl!0FC(yZRfhE!3xrzt6cLRtb+k;g7L>!soZ=7-F%vzs=<%{?0?){jB_sG;4j#Q)xB zwQdChN;T)u^3^lQV~FvBxNfkp;Q#D%i`|^K^^=r-wAHct^U&q*^fu zWLo}3A?*ibafp-H&b#={B%>ow9e33QL)uKb2#!5cK&gPM{86Cxf1sNq7v{(zH$~HN z(Ee3aI&gyY!>7CkdWd0qp~DDkeb0%6jz7HK-~X^a`gxncS@78Zp4pI`&>(Ofl7EWu zKgwoeXT@UY_GQqSR<(tUxMWEdQ`qLDL*fe%nC`;0cCikkDbNQBu)^xK;%Fy_INjX; zXp1!>kRTB#&Ia#PMs@tLyzf5YMUzG#8SrgLCAb{Vko3?PV4VhOiu!|SBF;AbA4H%{ zq~dpEiJ*pD9X4B!?T|p`WEczW8$>1Vo)AX(oCr&U@}m=CI7Ese(3J&xXjz?qU0CZ+ zN=~Li0(Uu4E3UG)iz}&O4N~z7>qP2S6bJrCxfXP>vG9STIGUxA1U)EEXE=W& z)=m?GFhqh_S-e&Pf>_jJu`N{1C(k5h2gsGgXPJXDY{nN#vS-?mO-HgM^7p7(NtLcu zFAy-(Y8BF{OpE&6*vZz>+Cw|Be;IBk@i@}A9%b30nJE2iI?P34Xgt~`mkU#b?{uxm z%u#lUeDY6smSJi_PHDNHk5XAXN_K@Rjw3nnueq}7Z=Q@Ezfa_4zkN%l?c~vx^Q!?O zv$ikC&AC2%W;EHB)%OLO%=333gBz-xYtu@~!LxZU8Gc<(A&IBGW5V`GwIWa|k-(PC z=k{K5N*A=Xz??hIL$kZFYxAo*=TP+*Rfspt1!bd{bN7DSn%y_zBP|S$+(izoynrU` z<_9Zl9uE~{r1jLckgYAENW?JD((00`gOIFh4oKJ$dP{!5`7iP*17v@qZigwU7wP+@$oE6BImsNLY#; z=~Wh>v7$N9;rSk<;@0e$nXM|IQtWheOvk$W_n~pniCc3z(MRdV8Knb~S3CjQz>Jqp zP>_XW!=h#I^w}Xdfj1eUL?}-a;fIriTtNub@sGtzkFaS8kck?{+IZIt^W@}>nAua1 zfWVV}3}FEGzghz+mF#GbSeJr;%o^OHOs>m9J2=l%8*$j|BA9v_0xQz2T8Uk<5oV_N zXnmBWiSQ#yHIDj;aE`RsSW=ItQaomnrw@&P&b?a(8W64X&#H0Or!c@nnHtZU!hrNr zp7<`cPS*^yPV_Mxl@~l-Zxg^q6RmHF&ayh+3=q#cbVTd;w`$n&^h9mooOlIssRK?W zz$2^r;h_M*A&SR%1W%>k<>Ed+C}{Df#-|OiN+@tt2O)4c*ooD!&hqvN@vlYf7gFp? zKd}Dn7^rEe%eR6=b$=UwH4^z4(Wbc z+y~w{HfU%I#rxzBsz*7RESKWF>*9p!O;ED!NvrpxrI<&He)>nE z=b+TADKehce7fQz&68&fg>`_u3WU7J{Ev{Q1euBY*YD^~jKXqe1TZ52(Qt9LqUrua zvG4Nh1pDOSLLbLF!vHq)IXZTdP&}8?BAJ#2nz)Ot@wc!@3I9e7H=fFzd6}SLQ3*iL zQ~=Oxvie8>QsgoCtD~GoVBxY?JsQg=lP?$PG5jb%eAVF;`CiKVDt&RtyktAPC1WK7 z><>jJ18Dg3N=5^4c)RM$9?`OKwLdmPl@NELq*c{Sz~*1}6B67t3&-x%v0fs4zPFZH z6)ho=z937u7hW%T1JS=r>R~%RIkuI%pnP}9dhqKxP5>GdA=?^OD0EC;acnjc>S28;DvmFF zvrSL}=DfMNh}F15T?{T!F?S>y@7(2bO=kuw;ILb=kb(1zK+SI|2CT66EE{)L zqWC6?9TT;)}hoUs^jXG3$fiMSm zfE7L|cghBx%|n&_tjD(r1sv(^0ILH%$;@n+p^j9jOdRYLo3p{$QAL?rnw=#`L0hL_ zS(V{wsF@WOmc1R@8#(8&jivr1D>Fd2EMCLUjtPEZ#$?6j&&I(buxgH-1p3vx{dM|= z5Kxa;KHD?j5}bv}wVQYYQ4KSCbZ0w{+IF~urxl&-FM$RV2dI(GLy@5CH;S`mG-pO3 zm*v-rm;D5RqWScS^wYyPJ7zVtAcV#rmN88AwM@=z#Pva;p8t(zkqR}tlk9w=%?|Xm z842~sb1(c##cah6i(TE4G9-K7up4qX*}*s-iD|CRYL&kZAJupi_6)G7D2E8_ihWj2 z!~jZn7IwN(<-W@2FXtN0AO9T|e}~W%f8=s8{|K-<-~$MZ&$W@1k8=+HQGsVfv_`ZQ|YM7(oQl0^QD|a;R9rrVSXS^PLQo* zy$zgDtq0MY(ps`xta29-|tK%0au8g6QdeVKU-sJUbF z`q+53Q}}B5qcm>(Ma%cG!8{h+_H8M~8Tk{+2L8WKkK!(NuSAaP;MMzKz z1kTDu;Gvv;S6^X4w~_a z#+ddpXy>3XQ#mP1@m?SsvuvFwF>kxuBHNA-dIPj{4rwW_N|W#%QMfU|<-S37+CAn7 zUf?D;nlj`ZB~2tp78#V5WXHy2!XK1X;6)W#!}UaM|L?lhKO%`TDIK}B{7poG|C--d zyTbk_)e|)3o3X3HAmu|)JgT#CmSi)bK8rE+)4WTq`Iu+AgOkrMzVV-6G6VZtIq7f8 z!JVu}Q=Xxf#Jd~s`8F*NrOl>YM~QAQR7K2?zw!}SleQVEY;)E@Pzva|`0D~q8pZj{ zFr^0_wWU8GwFz2#f;1$dG-URoo=oaFYsPP=%+ZAV*R#7NVQ}KZ(Iwd-gOcKS&{Z((t>8?Ij~^cscAe$h1p(qgD(#FK^?bG;gofa8T;ju|=sO*vKhG4!lA~F`_qU z56^me{*VJo!7J-DiAYRcBQqnNw9h~n+uD}L3oy4kV02RXoE66lDk>Jsk~Hy1_BHri z4`m|wX3=z2F|l?1{+Sl2uV~HO@3v}s0c5&l(!kqFc|Fk={cb39tp{9%{O*?K>KJ+i zxI^_c9+y;>;=*tsnL$faY^APemTv)0m!V$1*&lCrChNtiIFBPv4^g1b3u{5gM2pWac zL($CsTp|ObMpux`)RVqpIWS{9cyp5C z2!ma4je!nS7B+>ahj}w5ajePv;t#IYF-X)sx+H+k*hDk=NvbkZsl1cwKy<{aI7Cv| z1DQh~WDX{&8i(h3sz~C>RaXM;rI!-De7{+&*pGa3EM-SAFRV%2Rc`=~o2e=XK*=_R zT^Bk=dN^V$BLT|QpKGIodf7f3*ZS3PPO-47TtaKnqlqo4a!QQX)ncLix%ywEAu0ZW zpmfmpH%rX4O-}-SdVoFN?`qIv?j61ANraR*n=M=b4z96acX0Txs2<20T^TBr1) zZ7St!IeO^cinw1^FH(KKCYI1RyO2NK(!EPNOfmj4(%bq2icqAv`Tb#g(Zp1sru< zY)mUmLpvo;U0_Oamho&);QKo#n2@G#Bsc8Uhl{p{1}o1)l&#hZ-vOU&cn#U?PLhlc z(toe4u*OS3mLjkI$9P(9(p1=$UKZ|GCW8UDB7DX*l1ZM+sAf=955 z0*^q}ePmb0&QcnUj025YaA)#P0FIlk!!CGBLW1tm=@#%NGZ|pJa{O>-u^oc)^wCJ7 z4M<1aME6qMG$jyVgqY&oT0DR?j*d!Pjs~McH|*a?Ld6V@{yB8k{g#YHyt+mfI9ha~ zu=4J>tGWr=_H2>hUGgbr+MsB43l*)J_9@eF!>c92t(S4oyfslVjbGZ znKfwqH|Lvh*MfZ2V~~1|PEk!uXbj4PLRKRRuC0HzC&$WK|IU4eh9#406B@NTKAx=_ z$S;~?vY5Qt@_9?(>T`StB^+C0yj1n3$n7m_0eXCc@aHY}{yXjid&CgL|JgR4vIm`^ zmq;v;HqZ2dHdokZXo>dw((1(Kp>UHElFdv!2Z!pAiND^;$C_H|-P9E@`%u0EyK$Gg z3|cDpBE7p5mNPR_qsGU(>JMhO25{R(0x|>!TN1VZIdyc_XQy?K@B8BV^*){V>t`JF zn*G_c9nQ`(g%?<-SbtyE^15~LbFIwzpKqHo=lE}XepHyAK6?3|N4FgFd|dvTz2=21 zLtSvZ%43E1zf$F6z0T5t!M39CA|${+iAMwg6p~z5H}!LH{LVhfLRVmZmdG6uZ(%!_ zIp53ynhUPmv$e_6ouWp_R3-uaS(V;`jgcM?F&3)&HI3G@)I+G*V4GkcnT_Y+kZ|q)S;0wh4TGzng7yZmCFsPb;@JT2>K_eL!>$S;gKcslX=w0T z(QxCqpKl5S%CDGb{;DjCGWAiQ)a+54_;G*aRK=Ib3!0RW9C0jZj?&(~ooiHL1fcQ! zEzdcQf4CepJd8kYQciMJ`GKod;oO3++>XKVdyiygdLaY4TMH4o9^Z82GV9mt-+5%Y zox3w0wftl~hgSx{4al+#q$|_V?oBq2yj9>9x%)-Eo7I^L{3x<=OooFp-+?kc+>=$$ zz&saY!Q?3*AW=Knh_f?7Yy>8Y;pI*~s8HK4$^ z8d8wu_RuyD6TGr_VzZ3Vt~TM`MtuK@^sgt04BuzU|h<|)IzH|EybbXNTS5qWkgH%H)4FGH;VxOu~(OA2hU?=iYm!;u@Bl2erB^v z{i70griwL)p#zK3y`ih65wcvAhFVN_^Yo1ynG9k%p>k2i#ieL_Y9Zr~TL`7E*qS*o27Jt7^0JBh|!<=&(^*oPHfqqaxB^Gz3NbLRKu?VYe z9V7lBBry93V#&0#aPD2P(NnXk368AP8N@YEKv%3bMCZiwx?0r^NT5NKdM<3lkrx+P zzf%!KNa6mL@DUqB@PE}l=r)|6Bj3;X)jHso95od1qSa@KtuUQQskd@3o(JMxiloje zA;C8A1WYK`_;V;RP8j6p8R=tu)EW+U%M)}tv7v?+!Eb<+zjh3H1I0g9u3UC#ATVyN zTnK8KOm`9-c8hFQ!bZBS%U^Jj0Z|f@?IZ0HN!_@?rC<-tiVo0t$~u;QTvSt>zBmfS zu&&c{@Fn=!2utuNy=ku1Ef;h}WUnG;YXou!79N!GU;{5nErMn8?QLpWzRfQI%VeR> zIi8@NqaPd9bOK(wt!;s0DhQy(#7i9MG44z`v-~0RFxE((>T@k|CJs$xR#)b%XsEPB zX}4+nEBGuBieeT<0ql9KK}ejXpCPRu%F8G=?cCaj3*?M#s4|Xmw8EM7ryPSYR=pZu zvSO1zmVg?KWh(D9U3I}~T$oW7pc{D^evGEGPXICp{zJ1rl z(%v=Nrv(S|gKvpkC;~0U77{&kjl=2?b5SG}y_Mh+?oG3F(nrmW)uu?1oxa#W4XwyB z5=m=Ghfuu%Fo!&c*$ZdM__rX#?+mrb18XS?#T{pe09O+mwj#n964RAouz?GV@YDk4VD}hrMY9Wj%R?_e+YvS#Z{7 zI~75tjI0}Du^s$KpUdk}@Iky}z0l~f@?Nck4Yub=wnMhcuR}I>eUo=adKxOAV4m0K z;MZ`pJ7(1dOFH|lO%w?znt7(j69kdoacUj^a&i4z(p$HCpb!a;h4sRCS4hz~@~lfy z^!3aFcJ2Z@tO<4$gQ1t?QXvmyQ@ki+<)i6M7+JTg4#{Rg@L^S7A|8M(V79M&CCg#M z4wK$97e`8hff6%P>XxK-IN#A61^yhqv;LH2m{w25$|vi*u+3!Wi~(sotOwxShIgAl zqh_#&avYrH3}KGY8>QbOFXX7J4J>gy$hiRO%6ZN83$(#F$HoaZBp%bc;C&`TI0UGk zi=^Fs*e9}i=!O4-i}iHi5#4;}h>s(6xZCb5fC3{g7P-}|@-+N*#~gJJ}PSga||+SR&96$^AN$-AZ+Mz^6HzS@=KW8j%S zo=F~lVr7q!0wLqVOdiq-T#k%p0E{LboWM(MWASn^39+s}kyAw~9H>Srd}ppe?+z%A z35xOs2fO3L8diC46 zvB9qZj0bUL+vhM{s;ThUu*77gQFEdcIQ9KGv5qb+o zK*+Z6<%4(NIulTmEK2tC5$uOk&({aRn~~`>lx~A1(-%SY=}dYut-5srpCD73q;fKrPmWUWrlU zTDTN=H|2uyPfM7NDO!ii@m|o~!nR^O4|HjPUVp{P@a2-dBSZO!6}KfA7Q8nb+PT|c z2Yo*$Rd^TF+J@>Fid@oYY9id@fAI~kdl(uBtvt1_uEUPO2hI~R2jxU2Bu;Ut6b!8| z4X_z{@mb<^6gpSET>w5ZBSQRGQj2a?MiFmN$~Kd{wG+b3XSU<8)A=(IzP~ldn#Xbj z&sb%)}v@Z8$TJ_ zb*Fyq-SWIEaxIuUY(|UD=-$CkC%?_RQ@{GEq0RCGc|rw zYze65pgIN?+zku`jjF+LtPeqi^%LZ%QlZXr&8n{D)-9;oU@|Kt_n2nBQtmet4B8n$ zU!E+(Ggw7tP~!P5er}az2p`raU#gLrWJsgpixZ2kKsHbi2i#j2o3r4+QR_souQDCX zAqEv76*owB;%_HfKWmwve|j@~Jydiv8@3y&ekf5tDa99p%B#tSwwMl5Jr$$pNeAr) zeOFCg)+{a)olMDk;S{D0)ILJ0{YL#R{g4aeVJVCo4$w8lheoKCKEBFXGW~|_1tDPJ zYEqcCi@e`fj_EOW)!!;7Z|g~0nNkQzl}SD5k!*+QLbWSwFBGo#VAbR7ADuCt^sAijr}EDzt(0ST3Muh{fn8z5vIkT3stW5y)U z737p14RebGVX|U9fG>}$<_fk(&imnLXnr3?7WDSTJRUrMWyvm)C|VaUR^XotE6hU^V|eD&{YAGgFf z=%g1eQGdW*(`YwKTY?f~_pUZ^BP3G1OceRx8o0j~GV4ZQx4hk) z+`p5BS{M-(_=)AHsyGGWwNrs72pLBK4z6lvWFL@VO&UEl$gW}{`p7eU^07gjXo2R> zSxqB0FIz7BZifcZyMSo$O-_OQst{1s-VYxF9R&Zx@zM+p=fV5a0QRhEbLTjnxACwo zXQAF7xOll^Qu(Etc-^Bb-q#a%P;~&SL@$J*vEhat>a$P`T%*TkJ0bVP3)L`J5}pP{ zvq@R^Akz}-%?QA#j!AfGr0qU22xkk^^K(!wK%qir3s+ZSJ;77Lwy>IK%Z5tM6s!|< zhr%T*GLWQ;Z2(LQHIj0pNmmDmh4ygVq~m$YR_qGaqY$FR3$7agG8K%Q}Gtwm} zPopZLFy>ddi@O8bz$Ks+3yM)Vh(Go*#1kaIwn0 z1u}T!M@M=J&hy}nJ;ecSq)gKbPRfrr{xzx4=n6A6h|~X6=tx`It{`LIX0?&ksdP)phi!%wZnszcio*& zwCmZ!;7|yBMy&vqolvPCE?(#;SDB9>71JKO!gcO26y~s64bQHynRChm2~TNEOJIh= z(xPq}-yBBv!Xo$DA&XK!KUE!}2cT{70O@AU!1y}4V3FXH6z8$+> zoH-e}F@+w=q~P+5DQBH!AyJ(k3V}~!pnkl*eVQlR_EMk<{M9GRVsW!28g$YOcKjmP zmL~NLLBxxhZ zqtVm%@@=$_Y6_v1npK-8F_b`olCxQZD{KJ02n3hNRvLDM@oQ%PkAnTmR6uI=atcG5_I(P++&uYJc{t;@?c>!goN?sSc`r2&#+Tok{|xpwrY#y#@oZ^P1uiv| zB(S?dX&Hq~t_vz2U<0&yiq^jEAxgyc9kT|C10Z2u1v?}~7!3q|5}buA;kBv330a|1 z8M?|Ke>P7t;#@%0QP}lhTWCkY&vM-kZ{+-XE$}Dh0Ep_GhH1}k)+%X(rT(1+)$c?& z?4T9@qSTDFwOpS&xG&tF@tZY#vThyV%@n=n1eYS0!L&|RL7zk0n`p^+a`8i`fZ#OC zanZD_EQ}4&YxM|LOxis+h18>uHrndn**RQ7+#paPobv@u`@kLdT_@VXqd?7yd6tE` zaz#v#Bs%x;H zlIYM0dtijWfv>xQ7|FLBVMsP30=*70RH%^^S${(OJ%0CYZqdmyc$*CM=m9Y-gxHW8Y@Ach41V(OT5M1Q+k6J+mCO<#?VS=c>Pt zgm3AK*3!b@*&=UMZ>@i0iH#GNZH)?yowR>Ygwdedcej2Qmt}2*#?X!dE=8DXi?Z%S z-s8h;Fhk_jIp{q{bPd!3VcP&wp67frEtZaVB5O&f6|*HUKzX`i_QKcu;9DJ=(MXwQ zBxob31{1G2era`ymSU4`?)6-qWWt68<%ZfwB(GGAX`Hne~5X` zx&Y=p)}TX#^qjNgu{Z)eG0#ym_CsQ7f-{Km#@B@|++CqQh!a%0g-gU#ULv!rebw3G z>EaB?LljALyoPthnd;a6_bzIS-PvxiN1+NW@DvX(xDKB7p2!Y1P2o_<6M50Tlczr# zg0`qO3~s?iRVQkn`G(d{W$|*9;C7up%kqJ@Z>Zu4nv5Fn@%Vl}d02QbUUJ&C&O9kN+a{y?rJOT%xO4VSwe0CQDBl*M#CC$K*Y0P83nEU?&?nK;zz-JAX<-VuhN6H)kM z8plh6yp-~eKazdr!taz-kXR{B)80yU(A5>aIkYVQ7Ww8--)qf6;MkNnY%9YQtC$(6 z12RFQ#jWpufj|X<3Li)!1*NFaFqLZ0n#V4Qux!{_kW!-$EG3}AC|shg1M!ecnjcRX zZzkl#+e>YeF?TxcQY7U`ge<|hjqPA1xT;H`VJk5{S$Bm8J&!p+LaoC26FI?Fb6yW>6?8_~>YCIm@YkLFk4)5S#%cgrDApyDB1A}{4TLO=NZ&Q)m* zS$2t2u^AduNwa5Hv3o7c%ZJ|($~K^3i$)x!25FG22StUCZ^g^IxNvHt31wN9JGoB! zwvUSj%ZMNFo`iW?m=P`cZH=jLFy(tZ96pdPz+Y`%J_#Gpd2SL{0aTX@*T;_KaRaS!2~ln&xpLLG=oVkd5685*X+i?2Q77ohQ{CKw71@DYHj zq{-NPXv}PbJnY;I!9v|``>3hDg68oHvfYSrtyIoM!xPzO633D_v#em2YVZid9CUk zi7I-jJv(advli|)o&U`K?%|KWetDX~`?335fs{FC-SyP8_=Cx%`~ErbWyP)d)kiLL zoLI8<;GsSKFCLs)dh+e_j&p}zUE8x^?RT?|UOl?;#hfeuo-}Eaw!=6l_*FB1<;aan zVP!+7@yOWL9-cYyu-ZuXV>A}DDwivO|P{n0E2`n-qrc{}PYVPGWo3N0;c z`gZ{qm7z~)VzYR~-mJrCm@(htZbjPxo6-E(TS$BW4cfLLqRhH zEWsT#*!k)E;=WPM2dqVx;Io_9=}GF!XUp1upP*`^TG5XAOFnsD%zvxFgu=As>ROj6 zZf>cCW{j!U1&mxE%ANA4FSWt&0b=%6`FC^gZv6E9LhWhIm*C@&*06mdFH=X`ouTFJv#i?7iM*+* znUjz8@yF928rxIDqWHGI@l{c}w>MfzH-z(C=IX+W^llUCcyiBy?O>??tG4x1;_2{e zZL7eIr@Qa&oYCm{E-XagPya(qyh90fum9*STFubWlV4)w6_mhb)R0x1HG^->F4&&GV=~l-X@+r`;Ml_ zh#`TL@(xh+Y$M~{UR_nQk))PgbR(ybquwUypP1@yoNH)4d_@)RtH*!B)gF3_td55H zC|?FG-Q#GVYO^!mnnB~UZ8ZC9R+Ro+dnW+SbbbGG(rcJwszl zkI5eOcQ?P%w&kZxQb)JW`mG}{^Ne81y(W3k_Xx;H$~dx zXMO)zru@0<6||x_<{1A_R4%BX_L+KG{Sgwn8W?k}e?M}H3Tah-lXm9Ms*@jrCqze4eMkCJVL1LW^6{M0c_?>rH?bjvB@9iN{mqLQ>ymFn?PW1WO+dwJCT z+E`RtW?Xz<7;~`vkg~eoLu{yz6LKLsi<)H2SDktFboWievg&;EVtNlz!Ao5iSm@6K zR}BlH#ZRSg$5mzWe?imwGs?~b#u9G07L1G?(>oS1ZG#PQD7;7kPNB{hmWR7GF2sWW zjLHzi=l#tzloZwUuobf*1B${b4D!UM*Nu{q3?u8P2gpBb-{bQk*a(Qv9zDN3w!EoI z>eapJDza_84qJfTw~upxxU&WQn!DTBDq}`HSB4xuwQ175Pdp^x#KUuraZJiyQ6CD4 zINEYh48o1w^fKl*bIZb}-k59b!IokT%{?{nSBcxSs!_rJHA7y;7RfIaT{Z0>^NY^` zKght05h?(FW7A1HFTq6!3}vFjIEB;X&!a9+{H-F5Kq35fxe#Joc)YWNGk-Ch2fgMk zw%XtE=jloInI>$e%X8EAl(_)s&OBZctGN2H0%l*b*MKHRl4q&->aI@~NZ5j;H!$#@ znH#B~E_<%g!!J8V+p7YgETj=*_y;pHw}g6ZB_^FXcF>*)bj8unpc+jp{=_gcv3f7> zIjR(k86SP+BBs3O;4 zm_b6JIE;zK)!(rp-TzC>)iZZBt|1jo&3POxR`fV^LdBuLf1v)^G+dhm^GY$Mo<|mm zB$#@flTu&($%TL>*fNB&OD3ZoJ2YzlkU zQ2`33T<#s#=meMCBCVA#0sp{;-fyM;cs@_Rv?B)CXCKnlvC5(!DKRgY{`mQ8s(ZH4 z9|D&EQcq@s{@Ur7Wb5^MTU7H{UdiKHSWH7)rmS=+p+q24j7U z`taEj-NE>8vSae6=4I%3>7?FB0nrPl*|Qu?k?vP)1?@3f$)(@h;n)M~QqnDKq9!7M zv^=63cuPM6Af+d^gRnLkkJUV1}wgn_@(XJ)U>8)|!N?JT6=0~axYF0nG|_WM znR3_5f~AXyPOIOAf_qfy5O6{GkS=SNR8O3QcdWhf3JdJ|`ytyzQ2`i~bbK2+aGB)V5#SsJlD?fxk$2tpF8%N3lPb{ng%~{WO zbVA(3xpvB1(|%*t@vMklf5q})+_m?thF4-`wrkbip$2MG%Jy$L1y)uzI4g|A!8NM) zu8OF%d|aDN^SxqEv9Q%~5rnxmal_I_XhBG&$KH-{CsP?u8-(B~dA@01HFI;{O8TyS zKJwKk3+{O=zaNn#lXYZPH--Smpblj@Tcr1FCea~h=60Mz1e%*xg0Q42dX-)^xh=4! zDym`Y0_S9MWfb;{6oJ2fT4g0OCP zE=m>D=ULW-_CNIJwYuu>sj@Dw)tj>$IL>Rna5#ZTyJA_r-U^_QGBHd~FBsBIQnOsE zx*`{Medm$jYcuJ-qf3dU@qx5%Kl}-9;FeUZDnXODIxA_-c3)O9ouVxUvB$T;KU9TF5c)AJ25iMuzOUM8q^z<@h1@aq(yLvO8GVGGKc%d4=SZx>{+J;R%#k#1h? zLFzwty|PLRB_I9Ukga2hKn&$oAas|R_hem{>Jfy8wb^@n6~|Osy2=u~H!c(s$5*Zc zN#Jt$aL0(|>7G*&t}L;SS9`R}Q)`X6uaHX04><(W-y~;6iYf&3)c;amy8B4X>M^ri z$1q&y&-9CMj-elP*wtDpIiD#mXsan`vB5T>nLZ{fQ9{UoO4xpTeg6Eq9bh+=7O~UA zozb#(^Y=*0ATh@IP1Fo!U1r+2wA~kO-Lyii707+ z5>3O?J&mO$QtgcDIjWAh+CAiA@pPU3H|9}MEkJVEW~7^i>GnZcXaL`|EjJ*Wej-aK z_}zz;3@=Iyj-cZ3Pb&`}dt2X1Y|A5t`YCvuXIv4A!1KhMV*j0guGg#8+?X)Kyvlp6e82MMdrz+Z6a8rwLD_y=!Ohm;{FLr=D=9pEiCfb# z1)hCu10sj7KD%*Yi5di8U;)yuxyeYgR-onmVEIh9l-7K^d2$p)-R4pOSb|AflCvO! zeZq=HWf5EE;=Epe+^bT50VNIE7n=+l-2}QHnpUmZOUaLQ;cfaGdO3((%IkBV3UK%Jid7 zCzqVrvhYPK)E^aJcc$Np2VlH1mNd#hjU0?OGIsmCL5>2}hdVSK0!0O!KTh2Y`6@2~ zsB2qj+SdF*CA!734c12PDZKWX)BShFstMI9hdT}VUf3Qxv3at6rWcr}J5X&4&Hx!S zm|NVS*M>qenp&k8ExOx6ABr`$RedN4G#!%92WTY9XquX<>QV6^p2HhM0o3$Bhq3BF exa5wmeth!?a{IcSf2F-Ib@*WL0q*yNU;Ymn^Of`f diff --git a/src/assets/snowflake.png b/src/assets/snowflake.png deleted file mode 100644 index d58d6f7bb8420f1c5758785bbf98670482b922b2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1541 zcmV+g2KxDlP)mKj%uZ8MwDSI(AsoW6| zX>k~Y?ja$INd|$2LLb)lVNgb0t}by4ecr=htdNJ4veI;H1j1khg^);dThxbz`N6?u zcxkMw$nt8%7M6c!5BJK_l_j@=LJwTH_xJmq^ZovQ=g;q4RFy%V+yfoT-Fuu?RdR*$ zY_3qARaJ8L9;b5;bZAg}7K6%~cM8i|af{^~!X<=DZn2!hvQ}90P7P`HlfiR6RXFBKS=2ym%%_}J90T1v{&Lf*w z=H^$%L&l6bgD}m0nQ)7hSKj}!a=06BmkYMGI1c((45ilC?{6)}s)@02XX?O$VjTfK zK)3)j01!R_nN*|zEV+dz6Uo}@5@VwQ5&a`DxwR#~1pe0d1l+tgg2f}CMEiKDCK7Xq zx$owQzI!5d7t{^rj|9&osQd1T)Ll1E6fyU!iNsuo=}Dl3#UnTGjr1izj2jsJyb~Oe z3}OxgWAJqpz{#X@0f|7=^~WGsGlrPMh-5+}jDAjx8=a707ewS8j46b`mD3RW;^d#U+9avy9m1eU(%w~Pq-fu=wK1Dc3%=@?(2{%uanD;TlIh0TB{br=4&t@v^ zOdVM0g(bNMI>efHipIX8lTFm-=2ylQ>xdui{Q+pCW*GMV1;9q?XWes7mQdVWo%c=( zW_k9+p(Qt8OAy=2@J#Bq9yQh{*KoX~eq8P7pRPg8ce>24M_XMY)Y| zj>yyJ?mV>rl0AxP>12=C`8&&X0l9$af6@3`$o4eIg**RQ|AUoW`*uy>jaYN&C1+~1 zYN_5rWac};8>tzDCPI@&YG$uG;bhV|L}o12Th7#IHP#$@N#Kp-+P7JqT&`C)g5W*c>~>8{dIq6ecrroUD-*Xjh}#?Wr`Gyj zc@E%Y!zWRHYOS~QiF;+Y@MPk96G+xpmr(f-^do44*|xddZznAhwrwtV3^hSNLgm9` zZFQ-aPRLj8eC2tJIpcRSrjE$LAm^Jvw0)$3_<0_ZdUa!)xJ^q3k%M3st7D_TbBkrL ztec%ZX82Os*7p#Z?f@XT&nv;r*e2_z*Rj_7?w&yZ9Bkk;$mtG@DPZS2?1BbovE(?k z`$1HTsPzr73P+nA;7(gn9DfXgHLHmADAb5R2}_RC;A|&kh=7w#tz&qWRu30QvR0c# ztrwjv&8zd?$(_RDm)B+gU7V})-bp7*GlKPVesXX&1P+rJp6zbWcQ+T?k*|m}-^7yp zL4Qcl$t(Z}W*OvdR6awv@1GLqvGlhFYXx97bKu|pNwu~quVM5>wj*D4!~N(#CVdI? z6E|N=5Z}5TfVZ+D0+iU?cgo2oYJ=Dt{5FhjWe6@4ghhnKo&N-XZXg+$fNh(*h?#OS r=^V;+l Please make sure to complete the [requirement][requirements] steps first in order to build the project! - -Run `npm install` from within the project root to bootstrap the project and install all dependencies. - -Continuous integration builds are running at [Circle CI][ci-circle]. - -## Documentations - -This documentation can be build by running - -```sh -npm run docs:build -``` - -from within the project root to bootstrap the build toolchain and install all dependencies. The output will be placed in `build/docs`. - -To start the local hot reload server with browser live reload, using the default port `4000`, run - -```sh -npm run docs:dev -``` - -[ci-circle]: https://circleci.com/gh/arcticicestudio/styleguide-markdown -[requirements]: requirements.md diff --git a/src/development/changelog.md b/src/development/changelog.md deleted file mode 100644 index b376bb0..0000000 --- a/src/development/changelog.md +++ /dev/null @@ -1 +0,0 @@ -{% include "git+https://github.com/arcticicestudio/styleguide-markdown.git/CHANGELOG.md" %} diff --git a/src/development/code-of-conduct.md b/src/development/code-of-conduct.md deleted file mode 100644 index 411dfab..0000000 --- a/src/development/code-of-conduct.md +++ /dev/null @@ -1 +0,0 @@ -{% include "git+https://github.com/arcticicestudio/styleguide-markdown.git/CODE_OF_CONDUCT.md" %} diff --git a/src/development/contributing.md b/src/development/contributing.md deleted file mode 100644 index 12ec574..0000000 --- a/src/development/contributing.md +++ /dev/null @@ -1 +0,0 @@ -{% include "git+https://github.com/arcticicestudio/styleguide-markdown.git/CONTRIBUTING.md" %} diff --git a/src/development/credits.md b/src/development/credits.md deleted file mode 100644 index 410450c..0000000 --- a/src/development/credits.md +++ /dev/null @@ -1,43 +0,0 @@ -Thanks for the inspirations and attributions to GitHub's [Open Source Guides](https://opensource.guide) and other large style guides like [Atlassian Design][atlassian-design], [Google's DocGuide][google-docguide-gh], the [Google Developer Documentation Style Guide][google-developer-doc-style-guide] and the [Markdown Style Guide][markdown_style_guide-ciro_santilli] by Ciro Santilli. - -If you use this style guide in your project, you can include these badges in the documentation to let other developer know that the code adheres to this style. - -![Markdown Style Guide Badge][badge-styleguide-markdown] - -```md -[![Markdown Style Guide](https://raw.githubusercontent.com/arcticicestudio/styleguide-markdown/main/assets/styleguide-markdown-banner-typography-badge.svg?sanitize=true) -``` - -![Code Style Badge][badge-styleguide-code-style] - -```md -[![Markdown Style Guide](https://raw.githubusercontent.com/arcticicestudio/styleguide-markdown/main/assets/styleguide-badge-code-style.svg?sanitize=true) -``` - -![Markdown Style Guide Badge Version][badge-shield-code-style-version] - -```md -![Markdown Style Guide](https://img.shields.io/badge/Markdown_Style_Guide-0.2.0-88C0D0.svg?style=flat-square&colorA=2E3440&logo=data%3Aimage%2Fsvg%2Bxml%3Bbase64%2CPHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzOSIgaGVpZ2h0PSIzOSIgdmlld0JveD0iMCAwIDM5IDM5Ij48cGF0aCBmaWxsPSJub25lIiBzdHJva2U9IiNEOERFRTkiIHN0cm9rZS13aWR0aD0iMyIgc3Ryb2tlLW1pdGVybGltaXQ9IjEwIiBkPSJNMS41IDEuNWgzNnYzNmgtMzZ6Ii8%2BPHBhdGggZmlsbD0iI0Q4REVFOSIgZD0iTTIwLjY4MyAyNS42NTVsNS44NzItMTMuNDhoLjU2Nmw1Ljg3MyAxMy40OGgtMS45OTZsLTQuMTU5LTEwLjA1Ni00LjE2MSAxMC4wNTZoLTEuOTk1em0tMi42OTYgMGwtMTMuNDgtNS44NzJ2LS41NjZsMTMuNDgtNS44NzJ2MS45OTVMNy45MzEgMTkuNWwxMC4wNTYgNC4xNnoiLz48L3N2Zz4%3D) -``` - -![Code Style Badge][badge-shield-code-style] - -```md -![Markdown Style Guide](https://img.shields.io/badge/%20-Code_Style-88C0D0.svg?style=flat-square&colorA=2E3440&logo=data%3Aimage%2Fsvg%2Bxml%3Bbase64%2CPHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzOSIgaGVpZ2h0PSIzOSIgdmlld0JveD0iMCAwIDM5IDM5Ij48cGF0aCBmaWxsPSJub25lIiBzdHJva2U9IiNEOERFRTkiIHN0cm9rZS13aWR0aD0iMyIgc3Ryb2tlLW1pdGVybGltaXQ9IjEwIiBkPSJNMS41IDEuNWgzNnYzNmgtMzZ6Ii8%2BPHBhdGggZmlsbD0iI0Q4REVFOSIgZD0iTTIwLjY4MyAyNS42NTVsNS44NzItMTMuNDhoLjU2Nmw1Ljg3MyAxMy40OGgtMS45OTZsLTQuMTU5LTEwLjA1Ni00LjE2MSAxMC4wNTZoLTEuOTk1em0tMi42OTYgMGwtMTMuNDgtNS44NzJ2LS41NjZsMTMuNDgtNS44NzJ2MS45OTVMNy45MzEgMTkuNWwxMC4wNTYgNC4xNnoiLz48L3N2Zz4%3D) -``` - -![Code Style Badge Color Inverted][badge-shield-code-style-inverted] - -```md -![Markdown Style Guide](https://img.shields.io/badge/%20-Code_Style-2E3440.svg?style=flat-square&colorA=ffffff&logo=data%3Aimage%2Fsvg%2Bxml%3Bbase64%2CPHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMi41IiBoZWlnaHQ9IjMyLjUiIHZpZXdCb3g9IjAgMCAzMi41IDMyLjUiPjxwYXRoIGZpbGw9Im5vbmUiIHN0cm9rZT0iIzJFMzQ0MCIgc3Ryb2tlLXdpZHRoPSIuNSIgc3Ryb2tlLW1pdGVybGltaXQ9IjEwIiBkPSJNLjI1LjI1aDMydjMyaC0zMnoiLz48cGF0aCBmaWxsPSIjMkUzNDQwIiBkPSJNMTcuNDMzIDIyLjQwNWw1Ljg3Mi0xMS45OGguNTY2bDUuODczIDExLjk4aC0uNDk2bC01LjY1OS0xMS41NTYtNS42NjEgMTEuNTU2aC0uNDk1em0tMi42OTYgMGwtMTEuOTgtNS44NzN2LS41NjZsMTEuOTgtNS44NzJ2LjQ5NUwzLjE4MSAxNi4yNWwxMS41NTYgNS42NnYuNDk1eiIvPjwvc3ZnPg%3D%3D) -``` - -[atlassian-design]: https://atlassian.design -[badge-shield-code-style]: https://img.shields.io/badge/%20-Code_Style-88C0D0.svg?style=flat-square&colorA=2E3440&logo=data%3Aimage%2Fsvg%2Bxml%3Bbase64%2CPHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzOSIgaGVpZ2h0PSIzOSIgdmlld0JveD0iMCAwIDM5IDM5Ij48cGF0aCBmaWxsPSJub25lIiBzdHJva2U9IiNEOERFRTkiIHN0cm9rZS13aWR0aD0iMyIgc3Ryb2tlLW1pdGVybGltaXQ9IjEwIiBkPSJNMS41IDEuNWgzNnYzNmgtMzZ6Ii8%2BPHBhdGggZmlsbD0iI0Q4REVFOSIgZD0iTTIwLjY4MyAyNS42NTVsNS44NzItMTMuNDhoLjU2Nmw1Ljg3MyAxMy40OGgtMS45OTZsLTQuMTU5LTEwLjA1Ni00LjE2MSAxMC4wNTZoLTEuOTk1em0tMi42OTYgMGwtMTMuNDgtNS44NzJ2LS41NjZsMTMuNDgtNS44NzJ2MS45OTVMNy45MzEgMTkuNWwxMC4wNTYgNC4xNnoiLz48L3N2Zz4%3D -[badge-shield-code-style-inverted]: https://img.shields.io/badge/%20-Code_Style-2E3440.svg?style=flat-square&colorA=ffffff&logo=data%3Aimage%2Fsvg%2Bxml%3Bbase64%2CPHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMi41IiBoZWlnaHQ9IjMyLjUiIHZpZXdCb3g9IjAgMCAzMi41IDMyLjUiPjxwYXRoIGZpbGw9Im5vbmUiIHN0cm9rZT0iIzJFMzQ0MCIgc3Ryb2tlLXdpZHRoPSIuNSIgc3Ryb2tlLW1pdGVybGltaXQ9IjEwIiBkPSJNLjI1LjI1aDMydjMyaC0zMnoiLz48cGF0aCBmaWxsPSIjMkUzNDQwIiBkPSJNMTcuNDMzIDIyLjQwNWw1Ljg3Mi0xMS45OGguNTY2bDUuODczIDExLjk4aC0uNDk2bC01LjY1OS0xMS41NTYtNS42NjEgMTEuNTU2aC0uNDk1em0tMi42OTYgMGwtMTEuOTgtNS44NzN2LS41NjZsMTEuOTgtNS44NzJ2LjQ5NUwzLjE4MSAxNi4yNWwxMS41NTYgNS42NnYuNDk1eiIvPjwvc3ZnPg%3D%3D -[badge-shield-code-style-version]: https://img.shields.io/badge/Markdown_Style_Guide-0.2.0-88C0D0.svg?style=flat-square&colorA=2E3440&logo=data%3Aimage%2Fsvg%2Bxml%3Bbase64%2CPHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzOSIgaGVpZ2h0PSIzOSIgdmlld0JveD0iMCAwIDM5IDM5Ij48cGF0aCBmaWxsPSJub25lIiBzdHJva2U9IiNEOERFRTkiIHN0cm9rZS13aWR0aD0iMyIgc3Ryb2tlLW1pdGVybGltaXQ9IjEwIiBkPSJNMS41IDEuNWgzNnYzNmgtMzZ6Ii8%2BPHBhdGggZmlsbD0iI0Q4REVFOSIgZD0iTTIwLjY4MyAyNS42NTVsNS44NzItMTMuNDhoLjU2Nmw1Ljg3MyAxMy40OGgtMS45OTZsLTQuMTU5LTEwLjA1Ni00LjE2MSAxMC4wNTZoLTEuOTk1em0tMi42OTYgMGwtMTMuNDgtNS44NzJ2LS41NjZsMTMuNDgtNS44NzJ2MS45OTVMNy45MzEgMTkuNWwxMC4wNTYgNC4xNnoiLz48L3N2Zz4%3D -[badge-styleguide-code-style]: https://raw.githubusercontent.com/arcticicestudio/styleguide-markdown/main/assets/styleguide-badge-code-style.svg?sanitize=true -[badge-styleguide-markdown]: https://raw.githubusercontent.com/arcticicestudio/styleguide-markdown/main/assets/styleguide-markdown-banner-typography-badge.svg?sanitize=true -[google-docguide-gh]: https://github.com/google/styleguide/blob/gh-pages/docguide -[google-developer-doc-style-guide]: https://developers.google.com/style/ -[markdown_style_guide-ciro_santilli]: http://www.cirosantilli.com/markdown-style-guide diff --git a/src/development/requirements.md b/src/development/requirements.md deleted file mode 100644 index 50534db..0000000 --- a/src/development/requirements.md +++ /dev/null @@ -1,10 +0,0 @@ -## Node.js - -Styleguide Markdown is build with [Node.js][nodejs] which is required to build some of the file formats. - -### npm - -[npm][] is used as package manager which comes pre-bundled with Node.js and can be used from the CLI. - -[nodejs]: https://nodejs.org/en/download/releases -[npm]: https://npmjs.com diff --git a/src/rules/index.md b/src/rules/index.md deleted file mode 100644 index a5961e2..0000000 --- a/src/rules/index.md +++ /dev/null @@ -1,13 +0,0 @@ -

- -

This section contains rules for Markdown with support for GitHub Flavored Markdown which is based on the CommonMark specification. - -Markdown is a [lightweight markup language][wiki-lightweight_markup_language] with plain text formatting syntax for writing structured documents. It is designed so that it can be converted to HTML and many other formats. - -As the initial specification of Markdown contained ambiguities and unanswered questions, many implementations and extensions of Markdown in many languages appeared over the years to answer these issues. Some extended the original Markdown syntax with conventions for footnotes, tables, and other document elements and allowed Markdown documents to be rendered in many formats other than HTML. - -Today the most used specifications are [CommonMark][] and its superset [GitHub Flavored Markdown][gfm] which powers the content of many large websites like GitHub, StackOverflow, and Reddit used by millions of people. And Markdown started to be used beyond the web, to author books, articles, slide shows, letters, and lecture notes. - -[commonmark]: http://commonmark.org -[gfm]: https://github.github.com/gfm -[wiki-lightweight_markup_language]: https://en.wikipedia.org/wiki/Lightweight_markup_language diff --git a/src/styles/website.css b/src/styles/website.css deleted file mode 100644 index 5d7a0eb..0000000 --- a/src/styles/website.css +++ /dev/null @@ -1,35 +0,0 @@ -/* - * Copyright (c) 2018-present Arctic Ice Studio - * Copyright (c) 2018-present Sven Greb - * - * Project: Styleguide Markdown - * Repository: https://github.com/arcticicestudio/styleguide-markdown - * License: MIT - * References: - * https://www.gitbook.com - */ - -/* Remove the sidebar link to the hosted gitbook service */ -.gitbook-link { - display: none !important; -} - -/* Sidebar links */ -.book .book-summary nav ul.summary li a { - color: #444; - text-decoration: none; -} - -.book .book-summary nav ul.summary li a:hover, -.book .book-summary nav ul.summary li a:focus { - color: #000; -} - -.book .book-summary nav ul.summary li.active > a { - color: #008cff; -} - -/* anchor.js hover icons */ -.book .book-body .page-wrapper .page-inner section.normal a.anchorjs-link { - color: #008cff; -}