diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index f088151107447a2275dc578f4ee23b36c2aa1b9d..daa2cd332cbedd388114f316492f6b4eaa93d307 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -41,6 +41,60 @@ default: - /kaniko/executor --context `pwd`/$CONTEXT $KANIKO_DOCKERFILE $KANIKO_D +# Theodolite Docs + +.docs: + image: alpine/bundle:3.0.3 + cache: + paths: + - docs/vendor + before_script: + - cd docs + - bundle config set --local path 'vendor' + - bundle install + rules: + - changes: + - docs/**/* + - when: manual + allow_failure: true + +build-docs: + stage: build + extends: .docs + script: bundle exec jekyll build + artifacts: + paths: + - docs/_site + +test-docs-links: + stage: test + extends: .docs + needs: + - build-docs + script: bundle exec htmlproofer --assume-extension --allow_hash_href ./_site + +test-docs-crds-regression: + stage: test + image: golang + before_script: + - cd docs + - go install fybrik.io/crdoc@latest + script: + - crdoc --resources ../theodolite/crd/ --template api-reference/crds.tmpl --output api-reference/crds.ref.md + - cmp api-reference/crds.md api-reference/crds.ref.md + artifacts: + when: on_failure + paths: + - docs/api-reference/crds.ref.md + expire_in: 1 week + rules: + - changes: + - docs/api-reference/crds.tmpl + - theodolite/crd/**/* + - when: manual + allow_failure: true + + # Theodolite Helm Chart lint-helm: @@ -89,6 +143,7 @@ test-benchmarks: - build-benchmarks script: ./gradlew test --continue artifacts: + when: always reports: junit: - "theodolite-benchmarks/**/build/test-results/test/TEST-*.xml" @@ -319,8 +374,10 @@ build-theodolite-jvm: script: ./gradlew --build-cache assemble artifacts: paths: - - "theodolite/build/lib/*" - - "theodolite/build/*-runner.jar" + - "theodolite/build/quarkus-app/lib/" + - "theodolite/build/quarkus-app/*.jar" + - "theodolite/build/quarkus-app/app/" + - "theodolite/build/quarkus-app/quarkus/" expire_in: 6 hours build-theodolite-native: @@ -342,6 +399,7 @@ test-theodolite: #- build-theodolite-native script: ./gradlew test --stacktrace artifacts: + when: always reports: junit: - "theodolite/**/build/test-results/test/TEST-*.xml" @@ -420,6 +478,22 @@ test-slo-checker-dropped-records-kstreams: - when: manual allow_failure: true +test-slo-checker-generic: + stage: test + needs: [] + image: python:3.7-slim + before_script: + - cd slo-checker/generic + script: + - pip install -r requirements.txt + - cd app + - python -m unittest + rules: + - changes: + - slo-checker/generic/**/* + - when: manual + allow_failure: true + deploy-slo-checker-lag-trend: stage: deploy extends: @@ -456,6 +530,24 @@ deploy-slo-checker-dropped-records-kstreams: when: manual allow_failure: true +deploy-slo-checker-generic: + stage: deploy + extends: + - .kaniko-push + needs: + - test-slo-checker-generic + before_script: + - cd slo-checker/generic + variables: + IMAGE_NAME: theodolite-slo-checker-generic + rules: + - changes: + - slo-checker/generic/**/* + if: "$CR_HOST && $CR_ORG && $CR_USER && $CR_PW" + - if: "$CR_HOST && $CR_ORG && $CR_USER && $CR_PW" + when: manual + allow_failure: true + # Theodolite Random Scheduler diff --git a/CITATION.cff b/CITATION.cff index ca94e1c5039d3aeac3a4535767d5217de4960a6f..07c2dcee319f73604f95414b987f8ed5274f7e82 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -8,7 +8,7 @@ authors: given-names: Wilhelm orcid: "https://orcid.org/0000-0001-6625-4335" title: Theodolite -version: "0.5.1" +version: "0.6.1" repository-code: "https://github.com/cau-se/theodolite" license: "Apache-2.0" doi: "10.1016/j.bdr.2021.100209" diff --git a/binder/requirements.txt b/binder/requirements.txt new file mode 120000 index 0000000000000000000000000000000000000000..6de15663a8c83876719aa07d6cb09b5a7b71df21 --- /dev/null +++ b/binder/requirements.txt @@ -0,0 +1 @@ +../analysis/requirements.txt \ No newline at end of file diff --git a/codemeta.json b/codemeta.json index a158e30eb7f1ab433779678aba3a1cc3b7e33c80..2a190092b96adb3462c011e49db3c160d639d6fe 100644 --- a/codemeta.json +++ b/codemeta.json @@ -5,16 +5,20 @@ "codeRepository": "https://github.com/cau-se/theodolite", "dateCreated": "2020-03-13", "datePublished": "2020-07-27", - "dateModified": "2021-11-12", + "dateModified": "2022-01-17", "downloadUrl": "https://github.com/cau-se/theodolite/releases", "name": "Theodolite", - "version": "0.5.1", - "description": "Theodolite is a framework for benchmarking the horizontal and vertical scalability of stream processing engines.", + "version": "0.6.1", + "description": "Theodolite is a framework for benchmarking the horizontal and vertical scalability of cloud-native applications.", "developmentStatus": "active", + "relatedLink": [ + "https://www.theodolite.rocks" + ], "referencePublication": "https://doi.org/10.1016/j.bdr.2021.100209", "programmingLanguage": [ - "Python", - "Java" + "Kotlin", + "Java", + "Python" ], "runtimePlatform": [ "Kubernetes" diff --git a/docs/.gitignore b/docs/.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..f40fbd8ba564ea28e0a2501e2921909467b39887 --- /dev/null +++ b/docs/.gitignore @@ -0,0 +1,5 @@ +_site +.sass-cache +.jekyll-cache +.jekyll-metadata +vendor diff --git a/docs/Gemfile b/docs/Gemfile new file mode 100644 index 0000000000000000000000000000000000000000..c9ce8dff9c02691c4a6a3be9e94341745378fb0b --- /dev/null +++ b/docs/Gemfile @@ -0,0 +1,33 @@ +source "https://rubygems.org" +# Hello! This is where you manage which Jekyll version is used to run. +# When you want to use a different version, change it below, save the +# file and run `bundle install`. Run Jekyll with `bundle exec`, like so: +# +# bundle exec jekyll serve +# +# This will help ensure the proper Jekyll version is running. +# Happy Jekylling! +#gem "jekyll", "~> 4.2.0" +# This is the default theme for new Jekyll sites. You may change this to anything you like. +gem "minima", "~> 2.5" +# If you want to use GitHub Pages, remove the "gem "jekyll"" above and +# uncomment the line below. To upgrade, run `bundle update github-pages`. +# gem "github-pages", group: :jekyll_plugins +gem "github-pages", "~> 215", group: :jekyll_plugins +# If you have any plugins, put them here! +#group :jekyll_plugins do + #gem "jekyll-feed", "~> 0.12" +#end + +gem 'html-proofer' + +# Windows and JRuby does not include zoneinfo files, so bundle the tzinfo-data gem +# and associated library. +platforms :mingw, :x64_mingw, :mswin, :jruby do + gem "tzinfo", "~> 1.2" + gem "tzinfo-data" +end + +# Performance-booster for watching directories on Windows +gem "wdm", "~> 0.1.1", :platforms => [:mingw, :x64_mingw, :mswin] + diff --git a/docs/Gemfile.lock b/docs/Gemfile.lock new file mode 100644 index 0000000000000000000000000000000000000000..34ed67d70b1212b14bbf47a2062cf1138817df63 --- /dev/null +++ b/docs/Gemfile.lock @@ -0,0 +1,290 @@ +GEM + remote: https://rubygems.org/ + specs: + activesupport (6.0.4) + concurrent-ruby (~> 1.0, >= 1.0.2) + i18n (>= 0.7, < 2) + minitest (~> 5.1) + tzinfo (~> 1.1) + zeitwerk (~> 2.2, >= 2.2.2) + addressable (2.8.0) + public_suffix (>= 2.0.2, < 5.0) + coffee-script (2.4.1) + coffee-script-source + execjs + coffee-script-source (1.11.1) + colorator (1.1.0) + commonmarker (0.17.13) + ruby-enum (~> 0.5) + concurrent-ruby (1.1.9) + dnsruby (1.61.7) + simpleidn (~> 0.1) + em-websocket (0.5.2) + eventmachine (>= 0.12.9) + http_parser.rb (~> 0.6.0) + ethon (0.14.0) + ffi (>= 1.15.0) + eventmachine (1.2.7) + execjs (2.8.1) + faraday (1.4.3) + faraday-em_http (~> 1.0) + faraday-em_synchrony (~> 1.0) + faraday-excon (~> 1.1) + faraday-net_http (~> 1.0) + faraday-net_http_persistent (~> 1.1) + multipart-post (>= 1.2, < 3) + ruby2_keywords (>= 0.0.4) + faraday-em_http (1.0.0) + faraday-em_synchrony (1.0.0) + faraday-excon (1.1.0) + faraday-net_http (1.0.1) + faraday-net_http_persistent (1.1.0) + ffi (1.15.3) + forwardable-extended (2.6.0) + gemoji (3.0.1) + github-pages (215) + github-pages-health-check (= 1.17.2) + jekyll (= 3.9.0) + jekyll-avatar (= 0.7.0) + jekyll-coffeescript (= 1.1.1) + jekyll-commonmark-ghpages (= 0.1.6) + jekyll-default-layout (= 0.1.4) + jekyll-feed (= 0.15.1) + jekyll-gist (= 1.5.0) + jekyll-github-metadata (= 2.13.0) + jekyll-mentions (= 1.6.0) + jekyll-optional-front-matter (= 0.3.2) + jekyll-paginate (= 1.1.0) + jekyll-readme-index (= 0.3.0) + jekyll-redirect-from (= 0.16.0) + jekyll-relative-links (= 0.6.1) + jekyll-remote-theme (= 0.4.3) + jekyll-sass-converter (= 1.5.2) + jekyll-seo-tag (= 2.7.1) + jekyll-sitemap (= 1.4.0) + jekyll-swiss (= 1.0.0) + jekyll-theme-architect (= 0.1.1) + jekyll-theme-cayman (= 0.1.1) + jekyll-theme-dinky (= 0.1.1) + jekyll-theme-hacker (= 0.1.2) + jekyll-theme-leap-day (= 0.1.1) + jekyll-theme-merlot (= 0.1.1) + jekyll-theme-midnight (= 0.1.1) + jekyll-theme-minimal (= 0.1.1) + jekyll-theme-modernist (= 0.1.1) + jekyll-theme-primer (= 0.5.4) + jekyll-theme-slate (= 0.1.1) + jekyll-theme-tactile (= 0.1.1) + jekyll-theme-time-machine (= 0.1.1) + jekyll-titles-from-headings (= 0.5.3) + jemoji (= 0.12.0) + kramdown (= 2.3.1) + kramdown-parser-gfm (= 1.1.0) + liquid (= 4.0.3) + mercenary (~> 0.3) + minima (= 2.5.1) + nokogiri (>= 1.10.4, < 2.0) + rouge (= 3.26.0) + terminal-table (~> 1.4) + github-pages-health-check (1.17.2) + addressable (~> 2.3) + dnsruby (~> 1.60) + octokit (~> 4.0) + public_suffix (>= 2.0.2, < 5.0) + typhoeus (~> 1.3) + html-pipeline (2.14.0) + activesupport (>= 2) + nokogiri (>= 1.4) + html-proofer (3.19.2) + addressable (~> 2.3) + mercenary (~> 0.3) + nokogumbo (~> 2.0) + parallel (~> 1.3) + rainbow (~> 3.0) + typhoeus (~> 1.3) + yell (~> 2.0) + http_parser.rb (0.6.0) + i18n (0.9.5) + concurrent-ruby (~> 1.0) + jekyll (3.9.0) + addressable (~> 2.4) + colorator (~> 1.0) + em-websocket (~> 0.5) + i18n (~> 0.7) + jekyll-sass-converter (~> 1.0) + jekyll-watch (~> 2.0) + kramdown (>= 1.17, < 3) + liquid (~> 4.0) + mercenary (~> 0.3.3) + pathutil (~> 0.9) + rouge (>= 1.7, < 4) + safe_yaml (~> 1.0) + jekyll-avatar (0.7.0) + jekyll (>= 3.0, < 5.0) + jekyll-coffeescript (1.1.1) + coffee-script (~> 2.2) + coffee-script-source (~> 1.11.1) + jekyll-commonmark (1.3.1) + commonmarker (~> 0.14) + jekyll (>= 3.7, < 5.0) + jekyll-commonmark-ghpages (0.1.6) + commonmarker (~> 0.17.6) + jekyll-commonmark (~> 1.2) + rouge (>= 2.0, < 4.0) + jekyll-default-layout (0.1.4) + jekyll (~> 3.0) + jekyll-feed (0.15.1) + jekyll (>= 3.7, < 5.0) + jekyll-gist (1.5.0) + octokit (~> 4.2) + jekyll-github-metadata (2.13.0) + jekyll (>= 3.4, < 5.0) + octokit (~> 4.0, != 4.4.0) + jekyll-mentions (1.6.0) + html-pipeline (~> 2.3) + jekyll (>= 3.7, < 5.0) + jekyll-optional-front-matter (0.3.2) + jekyll (>= 3.0, < 5.0) + jekyll-paginate (1.1.0) + jekyll-readme-index (0.3.0) + jekyll (>= 3.0, < 5.0) + jekyll-redirect-from (0.16.0) + jekyll (>= 3.3, < 5.0) + jekyll-relative-links (0.6.1) + jekyll (>= 3.3, < 5.0) + jekyll-remote-theme (0.4.3) + addressable (~> 2.0) + jekyll (>= 3.5, < 5.0) + jekyll-sass-converter (>= 1.0, <= 3.0.0, != 2.0.0) + rubyzip (>= 1.3.0, < 3.0) + jekyll-sass-converter (1.5.2) + sass (~> 3.4) + jekyll-seo-tag (2.7.1) + jekyll (>= 3.8, < 5.0) + jekyll-sitemap (1.4.0) + jekyll (>= 3.7, < 5.0) + jekyll-swiss (1.0.0) + jekyll-theme-architect (0.1.1) + jekyll (~> 3.5) + jekyll-seo-tag (~> 2.0) + jekyll-theme-cayman (0.1.1) + jekyll (~> 3.5) + jekyll-seo-tag (~> 2.0) + jekyll-theme-dinky (0.1.1) + jekyll (~> 3.5) + jekyll-seo-tag (~> 2.0) + jekyll-theme-hacker (0.1.2) + jekyll (> 3.5, < 5.0) + jekyll-seo-tag (~> 2.0) + jekyll-theme-leap-day (0.1.1) + jekyll (~> 3.5) + jekyll-seo-tag (~> 2.0) + jekyll-theme-merlot (0.1.1) + jekyll (~> 3.5) + jekyll-seo-tag (~> 2.0) + jekyll-theme-midnight (0.1.1) + jekyll (~> 3.5) + jekyll-seo-tag (~> 2.0) + jekyll-theme-minimal (0.1.1) + jekyll (~> 3.5) + jekyll-seo-tag (~> 2.0) + jekyll-theme-modernist (0.1.1) + jekyll (~> 3.5) + jekyll-seo-tag (~> 2.0) + jekyll-theme-primer (0.5.4) + jekyll (> 3.5, < 5.0) + jekyll-github-metadata (~> 2.9) + jekyll-seo-tag (~> 2.0) + jekyll-theme-slate (0.1.1) + jekyll (~> 3.5) + jekyll-seo-tag (~> 2.0) + jekyll-theme-tactile (0.1.1) + jekyll (~> 3.5) + jekyll-seo-tag (~> 2.0) + jekyll-theme-time-machine (0.1.1) + jekyll (~> 3.5) + jekyll-seo-tag (~> 2.0) + jekyll-titles-from-headings (0.5.3) + jekyll (>= 3.3, < 5.0) + jekyll-watch (2.2.1) + listen (~> 3.0) + jemoji (0.12.0) + gemoji (~> 3.0) + html-pipeline (~> 2.2) + jekyll (>= 3.0, < 5.0) + kramdown (2.3.1) + rexml + kramdown-parser-gfm (1.1.0) + kramdown (~> 2.0) + liquid (4.0.3) + listen (3.5.1) + rb-fsevent (~> 0.10, >= 0.10.3) + rb-inotify (~> 0.9, >= 0.9.10) + mercenary (0.3.6) + minima (2.5.1) + jekyll (>= 3.5, < 5.0) + jekyll-feed (~> 0.9) + jekyll-seo-tag (~> 2.1) + minitest (5.14.4) + multipart-post (2.1.1) + nokogiri (1.13.0-x86_64-linux) + racc (~> 1.4) + nokogumbo (2.0.5) + nokogiri (~> 1.8, >= 1.8.4) + octokit (4.21.0) + faraday (>= 0.9) + sawyer (~> 0.8.0, >= 0.5.3) + parallel (1.21.0) + pathutil (0.16.2) + forwardable-extended (~> 2.6) + public_suffix (4.0.6) + racc (1.6.0) + rainbow (3.0.0) + rb-fsevent (0.11.0) + rb-inotify (0.10.1) + ffi (~> 1.0) + rexml (3.2.5) + rouge (3.26.0) + ruby-enum (0.9.0) + i18n + ruby2_keywords (0.0.4) + rubyzip (2.3.0) + safe_yaml (1.0.5) + sass (3.7.4) + sass-listen (~> 4.0.0) + sass-listen (4.0.0) + rb-fsevent (~> 0.9, >= 0.9.4) + rb-inotify (~> 0.9, >= 0.9.7) + sawyer (0.8.2) + addressable (>= 2.3.5) + faraday (> 0.8, < 2.0) + simpleidn (0.2.1) + unf (~> 0.1.4) + terminal-table (1.8.0) + unicode-display_width (~> 1.1, >= 1.1.1) + thread_safe (0.3.6) + typhoeus (1.4.0) + ethon (>= 0.9.0) + tzinfo (1.2.9) + thread_safe (~> 0.1) + unf (0.1.4) + unf_ext + unf_ext (0.0.7.7) + unicode-display_width (1.7.0) + yell (2.2.2) + zeitwerk (2.4.2) + +PLATFORMS + x86_64-linux + x86_64-linux-musl + +DEPENDENCIES + github-pages (~> 215) + html-proofer + minima (~> 2.5) + tzinfo (~> 1.2) + tzinfo-data + wdm (~> 0.1.1) + +BUNDLED WITH + 2.2.21 diff --git a/docs/README.md b/docs/README.md index eb0848d52ec4235c6325ba0a373ea2628e52a102..52b5311295e5a96721d9aa42f7e9c319da06960c 100644 --- a/docs/README.md +++ b/docs/README.md @@ -1,29 +1,43 @@ ---- -title: Theodolite -nav_order: 1 -permalink: / ---- +# Theodolite Docs -# Theodolite +Theodolite's docs are generated with Jekyll from Markdown files. -> A theodolite is a precision optical instrument for measuring angles between designated visible points in the horizontal and vertical planes. -- <cite>[Wikipedia](https://en.wikipedia.org/wiki/Theodolite)</cite> +## Installation -Theodolite is a framework for benchmarking the horizontal and vertical scalability of stream processing engines. It consists of three modules: +To set up Jekyll run: -## Theodolite Benchmarking Tool +```sh +gem install bundler +bundle config set --local path 'vendor' +bundle install +``` -Theodolite aims to benchmark scalability of stream processing engines for real use cases. Microservices that apply stream processing techniques are usually deployed in elastic cloud environments. Hence, Theodolite's cloud-native benchmarking framework deploys its components in a cloud environment, orchestrated by Kubernetes. It is recommended to install Theodolite with the package manager Helm. The Theodolite Helm chart along with instructions how to install it can be found in the [`helm`](helm) directory. +## Local Testing -## Theodolite Analysis Tools +For live serving the docs run: -Theodolite's benchmarking method maps load intensities to the resource amounts that are required for processing them. A plot showing how resource demand evolves with an increasing load allows to draw conclusions about the scalability of a stream processing engine or its deployment. Theodolite provides Jupyter notebooks for creating such plots based on benchmarking results from the execution framework. More information can be found in [Theodolite analysis tool](analysis). +```sh +bundle exec jekyll serve +``` -## Theodolite Benchmarks +## Building -Theodolite comes with 4 application benchmarks, which are based on typical use cases for stream processing within microservices. For each benchmark, a corresponding load generator is provided. Currently, this repository provides benchmark implementations for Apache Kafka Streams and Apache Flink. The benchmark sources can be found in [Thedolite benchmarks](theodolite-benchmarks). +You can compile everything to HTML via: -## How to Cite +```sh +bundle exec jekyll build +``` -If you use Theodolite, please cite +## CRD API Reference -> Sören Henning and Wilhelm Hasselbring. (2021). Theodolite: Scalability Benchmarking of Distributed Stream Processing Engines in Microservice Architectures. Big Data Research, Volume 25. DOI: [10.1016/j.bdr.2021.100209](https://doi.org/10.1016/j.bdr.2021.100209). arXiv:[2009.00304](https://arxiv.org/abs/2009.00304). +We use the [crdoc](https://github.com/fybrik/crdoc) tool to generate the API reference for our CRDs: + +```sh +crdoc --resources ../theodolite/crd/ --template api-reference/crds.tmpl --output api-reference/crds.md +``` + +With the following command, crdoc is executed in Docker: + +```sh +docker run --rm -v "`pwd`/../theodolite/crd/":/crd -u $UID -v "`pwd`/api-reference":/api-reference ghcr.io/fybrik/crdoc:0.6.0 --resources /crd/ --template /api-reference/crds.tmpl --output /api-reference/crds.md +``` diff --git a/docs/_config.yml b/docs/_config.yml index b0f0a13c22083b21a7c90ceaed44b846ffe55550..0d2a1aa774a83347c80b538a97d5dbfa1b7639b3 100644 --- a/docs/_config.yml +++ b/docs/_config.yml @@ -1,6 +1,17 @@ title: "Theodolite" +description: >- + Theodolite is a framework for benchmarking the horizontal and vertical + scalability of cloud-native applications. + remote_theme: pmarsceill/just-the-docs -#color_scheme: "dark" aux_links: "Theodolite on GitHub": - - "//github.com/cau-se/theodolite" \ No newline at end of file + - "//github.com/cau-se/theodolite" + +exclude: + - "*.tmpl" + - Gemfile + - Gemfile.lock + - README.md + - vendor/ + - drafts/ diff --git a/docs/_sass/custom/custom.scss b/docs/_sass/custom/custom.scss new file mode 100644 index 0000000000000000000000000000000000000000..d0f66e2d2aa3d469a1a751c59fd22626326da3d9 --- /dev/null +++ b/docs/_sass/custom/custom.scss @@ -0,0 +1,3 @@ +.theodolite-logo { + height: 18em; +} \ No newline at end of file diff --git a/docs/crd-docu.md b/docs/api-reference/crds.md similarity index 58% rename from docs/crd-docu.md rename to docs/api-reference/crds.md index 73d85c951fc2958aee25cde2cdff652034643c1a..0d7e46e3a72aea642fdc629f1abb664a4f8b93f3 100644 --- a/docs/crd-docu.md +++ b/docs/api-reference/crds.md @@ -1,3 +1,11 @@ +--- +title: Theodolite CRDs +has_children: false +parent: API Reference +nav_order: 1 +--- + + # API Reference Packages: @@ -52,45 +60,18 @@ Resource Types: <td>Refer to the Kubernetes API documentation for the fields of the `metadata` field.</td> <td>true</td> </tr><tr> - <td><b><a href="#benchmarkstatus">status</a></b></td> + <td><b><a href="#benchmarkspec">spec</a></b></td> <td>object</td> <td> <br/> </td> - <td>false</td> + <td>true</td> </tr><tr> - <td><b><a href="#benchmarkspec">spec</a></b></td> + <td><b><a href="#benchmarkstatus">status</a></b></td> <td>object</td> <td> <br/> </td> - <td>true</td> - </tr></tbody> -</table> - - -### benchmark.status -<sup><sup>[↩ Parent](#benchmark)</sup></sup> - - - - - -<table> - <thead> - <tr> - <th>Name</th> - <th>Type</th> - <th>Description</th> - <th>Required</th> - </tr> - </thead> - <tbody><tr> - <td><b>resourceSetsState</b></td> - <td>string</td> - <td> - The status of a Benchmark indicates whether all resources are available to start the benchmark or not.<br/> - </td> <td>false</td> </tr></tbody> </table> @@ -113,24 +94,6 @@ Resource Types: </tr> </thead> <tbody><tr> - <td><b><a href="#benchmarkspecinfrastructure">infrastructure</a></b></td> - <td>object</td> - <td> - (Optional) A list of file names that reference Kubernetes resources that are deployed on the cluster to create the required infrastructure.<br/> - <br/> - <i>Default</i>: map[]<br/> - </td> - <td>false</td> - </tr><tr> - <td><b>name</b></td> - <td>string</td> - <td> - This field exists only for technical reasons and should not be set by the user. The value of the field will be overwritten.<br/> - <br/> - <i>Default</i>: <br/> - </td> - <td>false</td> - </tr><tr> <td><b><a href="#benchmarkspeckafkaconfig">kafkaConfig</a></b></td> <td>object</td> <td> @@ -165,16 +128,34 @@ Resource Types: The appResourceSets specifies all Kubernetes resources required to start the sut. A resourceSet can be either a configMap resourceSet or a fileSystem resourceSet.<br/> </td> <td>true</td> + </tr><tr> + <td><b><a href="#benchmarkspecinfrastructure">infrastructure</a></b></td> + <td>object</td> + <td> + (Optional) A list of file names that reference Kubernetes resources that are deployed on the cluster to create the required infrastructure.<br/> + <br/> + <i>Default</i>: map[]<br/> + </td> + <td>false</td> + </tr><tr> + <td><b>name</b></td> + <td>string</td> + <td> + This field exists only for technical reasons and should not be set by the user. The value of the field will be overwritten.<br/> + <br/> + <i>Default</i>: <br/> + </td> + <td>false</td> </tr></tbody> </table> -### benchmark.spec.infrastructure +### benchmark.spec.kafkaConfig <sup><sup>[↩ Parent](#benchmarkspec)</sup></sup> -(Optional) A list of file names that reference Kubernetes resources that are deployed on the cluster to create the required infrastructure. +Contains the Kafka configuration. <table> <thead> @@ -186,20 +167,25 @@ Resource Types: </tr> </thead> <tbody><tr> - <td><b><a href="#benchmarkspecinfrastructureresourcesindex">resources</a></b></td> + <td><b>bootstrapServer</b></td> + <td>string</td> + <td> + The bootstrap servers connection string.<br/> + </td> + <td>true</td> + </tr><tr> + <td><b><a href="#benchmarkspeckafkaconfigtopicsindex">topics</a></b></td> <td>[]object</td> <td> - <br/> - <br/> - <i>Default</i>: []<br/> + List of topics to be created for each experiment. Alternative theodolite offers the possibility to remove certain topics after each experiment.<br/> </td> - <td>false</td> + <td>true</td> </tr></tbody> </table> -### benchmark.spec.infrastructure.resources[index] -<sup><sup>[↩ Parent](#benchmarkspecinfrastructure)</sup></sup> +### benchmark.spec.kafkaConfig.topics[index] +<sup><sup>[↩ Parent](#benchmarkspeckafkaconfig)</sup></sup> @@ -215,29 +201,51 @@ Resource Types: </tr> </thead> <tbody><tr> - <td><b><a href="#benchmarkspecinfrastructureresourcesindexconfigmap">configMap</a></b></td> - <td>object</td> + <td><b>name</b></td> + <td>string</td> <td> - The configMap resourceSet loads the Kubernetes manifests from an Kubernetes configMap.<br/> + The name of the topic.<br/> + <br/> + <i>Default</i>: <br/> + </td> + <td>true</td> + </tr><tr> + <td><b>numPartitions</b></td> + <td>integer</td> + <td> + The number of partitions of the topic.<br/> + <br/> + <i>Default</i>: 0<br/> </td> <td>false</td> </tr><tr> - <td><b><a href="#benchmarkspecinfrastructureresourcesindexfilesystem">fileSystem</a></b></td> - <td>object</td> + <td><b>removeOnly</b></td> + <td>boolean</td> <td> - The fileSystem resourceSet loads the Kubernetes manifests from the filesystem.<br/> + Determines if this topic should only be deleted after each experiement. For removeOnly topics the name can be a RegEx describing the topic.<br/> + <br/> + <i>Default</i>: false<br/> + </td> + <td>false</td> + </tr><tr> + <td><b>replicationFactor</b></td> + <td>integer</td> + <td> + The replication factor of the topic.<br/> + <br/> + <i>Default</i>: 0<br/> </td> <td>false</td> </tr></tbody> </table> -### benchmark.spec.infrastructure.resources[index].configMap -<sup><sup>[↩ Parent](#benchmarkspecinfrastructureresourcesindex)</sup></sup> +### benchmark.spec.loadGenerator +<sup><sup>[↩ Parent](#benchmarkspec)</sup></sup> -The configMap resourceSet loads the Kubernetes manifests from an Kubernetes configMap. +The loadGenResourceSets specifies all Kubernetes resources required to start the load generator. A resourceSet can be either a configMap resourceSet or a fileSystem resourceSet. <table> <thead> @@ -249,29 +257,42 @@ The configMap resourceSet loads the Kubernetes manifests from an Kubernetes conf </tr> </thead> <tbody><tr> - <td><b>files</b></td> - <td>[]string</td> + <td><b><a href="#benchmarkspecloadgeneratorafteractionsindex">afterActions</a></b></td> + <td>[]object</td> <td> - (Optional) Specifies which files from the configMap should be loaded. If this field is not set, all files are loaded.<br/> + Load generator after actions are executed after the teardown of the load generator.<br/> + <br/> + <i>Default</i>: []<br/> </td> <td>false</td> </tr><tr> - <td><b>name</b></td> - <td>string</td> + <td><b><a href="#benchmarkspecloadgeneratorbeforeactionsindex">beforeActions</a></b></td> + <td>[]object</td> <td> - The name of the configMap<br/> + Load generator before actions are executed before the load generator is started.<br/> + <br/> + <i>Default</i>: []<br/> + </td> + <td>false</td> + </tr><tr> + <td><b><a href="#benchmarkspecloadgeneratorresourcesindex">resources</a></b></td> + <td>[]object</td> + <td> + <br/> + <br/> + <i>Default</i>: []<br/> </td> <td>false</td> </tr></tbody> </table> -### benchmark.spec.infrastructure.resources[index].fileSystem -<sup><sup>[↩ Parent](#benchmarkspecinfrastructureresourcesindex)</sup></sup> +### benchmark.spec.loadGenerator.afterActions[index] +<sup><sup>[↩ Parent](#benchmarkspecloadgenerator)</sup></sup> + -The fileSystem resourceSet loads the Kubernetes manifests from the filesystem. <table> <thead> @@ -283,29 +304,29 @@ The fileSystem resourceSet loads the Kubernetes manifests from the filesystem. </tr> </thead> <tbody><tr> - <td><b>files</b></td> - <td>[]string</td> + <td><b><a href="#benchmarkspecloadgeneratorafteractionsindexexec">exec</a></b></td> + <td>object</td> <td> - (Optional) Specifies which files from the configMap should be loaded. If this field is not set, all files are loaded.<br/> + Specifies command to be executed.<br/> </td> <td>false</td> </tr><tr> - <td><b>path</b></td> - <td>string</td> + <td><b><a href="#benchmarkspecloadgeneratorafteractionsindexselector">selector</a></b></td> + <td>object</td> <td> - The path to the folder which contains the Kubernetes manifests files.<br/> + The selector specifies which resource should be selected for the execution of the command.<br/> </td> <td>false</td> </tr></tbody> </table> -### benchmark.spec.kafkaConfig -<sup><sup>[↩ Parent](#benchmarkspec)</sup></sup> +### benchmark.spec.loadGenerator.afterActions[index].exec +<sup><sup>[↩ Parent](#benchmarkspecloadgeneratorafteractionsindex)</sup></sup> -Contains the Kafka configuration. +Specifies command to be executed. <table> <thead> @@ -317,29 +338,29 @@ Contains the Kafka configuration. </tr> </thead> <tbody><tr> - <td><b>bootstrapServer</b></td> - <td>string</td> + <td><b>command</b></td> + <td>[]string</td> <td> - The bootstrap servers connection string.<br/> + The command to be executed as string array.<br/> </td> - <td>true</td> + <td>false</td> </tr><tr> - <td><b><a href="#benchmarkspeckafkaconfigtopicsindex">topics</a></b></td> - <td>[]object</td> + <td><b>timeoutSeconds</b></td> + <td>integer</td> <td> - List of topics to be created for each experiment. Alternative theodolite offers the possibility to remove certain topics after each experiment.<br/> + Specifies the timeout (in seconds) for the specified command.<br/> </td> - <td>true</td> + <td>false</td> </tr></tbody> </table> -### benchmark.spec.kafkaConfig.topics[index] -<sup><sup>[↩ Parent](#benchmarkspeckafkaconfig)</sup></sup> - +### benchmark.spec.loadGenerator.afterActions[index].selector +<sup><sup>[↩ Parent](#benchmarkspecloadgeneratorafteractionsindex)</sup></sup> +The selector specifies which resource should be selected for the execution of the command. <table> <thead> @@ -351,51 +372,31 @@ Contains the Kafka configuration. </tr> </thead> <tbody><tr> - <td><b>numPartitions</b></td> - <td>integer</td> - <td> - The number of partitions of the topic.<br/> - <br/> - <i>Default</i>: 0<br/> - </td> - <td>false</td> - </tr><tr> - <td><b>removeOnly</b></td> - <td>boolean</td> + <td><b>container</b></td> + <td>string</td> <td> - Determines if this topic should only be deleted after each experiement. For removeOnly topics the name can be a RegEx describing the topic.<br/> + Specifies the container.<br/> <br/> - <i>Default</i>: false<br/> + <i>Default</i>: <br/> </td> <td>false</td> </tr><tr> - <td><b>replicationFactor</b></td> - <td>integer</td> + <td><b><a href="#benchmarkspecloadgeneratorafteractionsindexselectorpod">pod</a></b></td> + <td>object</td> <td> - The replication factor of the topic.<br/> - <br/> - <i>Default</i>: 0<br/> + Specifies the pod.<br/> </td> <td>false</td> - </tr><tr> - <td><b>name</b></td> - <td>string</td> - <td> - The name of the topic.<br/> - <br/> - <i>Default</i>: <br/> - </td> - <td>true</td> </tr></tbody> </table> -### benchmark.spec.loadGenerator -<sup><sup>[↩ Parent](#benchmarkspec)</sup></sup> +### benchmark.spec.loadGenerator.afterActions[index].selector.pod +<sup><sup>[↩ Parent](#benchmarkspecloadgeneratorafteractionsindexselector)</sup></sup> -The loadGenResourceSets specifies all Kubernetes resources required to start the load generator. A resourceSet can be either a configMap resourceSet or a fileSystem resourceSet. +Specifies the pod. <table> <thead> @@ -407,19 +408,19 @@ The loadGenResourceSets specifies all Kubernetes resources required to start the </tr> </thead> <tbody><tr> - <td><b><a href="#benchmarkspecloadgeneratorresourcesindex">resources</a></b></td> - <td>[]object</td> + <td><b>matchLabels</b></td> + <td>map[string]string</td> <td> + The matchLabels of the desired pod.<br/> <br/> - <br/> - <i>Default</i>: []<br/> + <i>Default</i>: map[]<br/> </td> <td>false</td> </tr></tbody> </table> -### benchmark.spec.loadGenerator.resources[index] +### benchmark.spec.loadGenerator.beforeActions[index] <sup><sup>[↩ Parent](#benchmarkspecloadgenerator)</sup></sup> @@ -436,29 +437,29 @@ The loadGenResourceSets specifies all Kubernetes resources required to start the </tr> </thead> <tbody><tr> - <td><b><a href="#benchmarkspecloadgeneratorresourcesindexconfigmap">configMap</a></b></td> + <td><b><a href="#benchmarkspecloadgeneratorbeforeactionsindexexec">exec</a></b></td> <td>object</td> <td> - The configMap resourceSet loads the Kubernetes manifests from an Kubernetes configMap.<br/> + Specifies command to be executed.<br/> </td> <td>false</td> </tr><tr> - <td><b><a href="#benchmarkspecloadgeneratorresourcesindexfilesystem">fileSystem</a></b></td> + <td><b><a href="#benchmarkspecloadgeneratorbeforeactionsindexselector">selector</a></b></td> <td>object</td> <td> - The fileSystem resourceSet loads the Kubernetes manifests from the filesystem.<br/> + The selector specifies which resource should be selected for the execution of the command.<br/> </td> <td>false</td> </tr></tbody> </table> -### benchmark.spec.loadGenerator.resources[index].configMap -<sup><sup>[↩ Parent](#benchmarkspecloadgeneratorresourcesindex)</sup></sup> +### benchmark.spec.loadGenerator.beforeActions[index].exec +<sup><sup>[↩ Parent](#benchmarkspecloadgeneratorbeforeactionsindex)</sup></sup> -The configMap resourceSet loads the Kubernetes manifests from an Kubernetes configMap. +Specifies command to be executed. <table> <thead> @@ -470,29 +471,29 @@ The configMap resourceSet loads the Kubernetes manifests from an Kubernetes conf </tr> </thead> <tbody><tr> - <td><b>files</b></td> + <td><b>command</b></td> <td>[]string</td> <td> - (Optional) Specifies which files from the configMap should be loaded. If this field is not set, all files are loaded.<br/> + The command to be executed as string array.<br/> </td> <td>false</td> </tr><tr> - <td><b>name</b></td> - <td>string</td> + <td><b>timeoutSeconds</b></td> + <td>integer</td> <td> - The name of the configMap<br/> + Specifies the timeout (in seconds) for the specified command.<br/> </td> <td>false</td> </tr></tbody> </table> -### benchmark.spec.loadGenerator.resources[index].fileSystem -<sup><sup>[↩ Parent](#benchmarkspecloadgeneratorresourcesindex)</sup></sup> +### benchmark.spec.loadGenerator.beforeActions[index].selector +<sup><sup>[↩ Parent](#benchmarkspecloadgeneratorbeforeactionsindex)</sup></sup> -The fileSystem resourceSet loads the Kubernetes manifests from the filesystem. +The selector specifies which resource should be selected for the execution of the command. <table> <thead> @@ -504,29 +505,31 @@ The fileSystem resourceSet loads the Kubernetes manifests from the filesystem. </tr> </thead> <tbody><tr> - <td><b>files</b></td> - <td>[]string</td> + <td><b>container</b></td> + <td>string</td> <td> - (Optional) Specifies which files from the configMap should be loaded. If this field is not set, all files are loaded.<br/> + Specifies the container.<br/> + <br/> + <i>Default</i>: <br/> </td> <td>false</td> </tr><tr> - <td><b>path</b></td> - <td>string</td> + <td><b><a href="#benchmarkspecloadgeneratorbeforeactionsindexselectorpod">pod</a></b></td> + <td>object</td> <td> - The path to the folder which contains the Kubernetes manifests files.<br/> + Specifies the pod.<br/> </td> <td>false</td> </tr></tbody> </table> -### benchmark.spec.loadTypes[index] -<sup><sup>[↩ Parent](#benchmarkspec)</sup></sup> - +### benchmark.spec.loadGenerator.beforeActions[index].selector.pod +<sup><sup>[↩ Parent](#benchmarkspecloadgeneratorbeforeactionsindexselector)</sup></sup> +Specifies the pod. <table> <thead> @@ -538,7 +541,138 @@ The fileSystem resourceSet loads the Kubernetes manifests from the filesystem. </tr> </thead> <tbody><tr> - <td><b><a href="#benchmarkspecloadtypesindexpatchersindex">patchers</a></b></td> + <td><b>matchLabels</b></td> + <td>map[string]string</td> + <td> + The matchLabels of the desired pod.<br/> + <br/> + <i>Default</i>: map[]<br/> + </td> + <td>false</td> + </tr></tbody> +</table> + + +### benchmark.spec.loadGenerator.resources[index] +<sup><sup>[↩ Parent](#benchmarkspecloadgenerator)</sup></sup> + + + + + +<table> + <thead> + <tr> + <th>Name</th> + <th>Type</th> + <th>Description</th> + <th>Required</th> + </tr> + </thead> + <tbody><tr> + <td><b><a href="#benchmarkspecloadgeneratorresourcesindexconfigmap">configMap</a></b></td> + <td>object</td> + <td> + The configMap resourceSet loads the Kubernetes manifests from an Kubernetes configMap.<br/> + </td> + <td>false</td> + </tr><tr> + <td><b><a href="#benchmarkspecloadgeneratorresourcesindexfilesystem">fileSystem</a></b></td> + <td>object</td> + <td> + The fileSystem resourceSet loads the Kubernetes manifests from the filesystem.<br/> + </td> + <td>false</td> + </tr></tbody> +</table> + + +### benchmark.spec.loadGenerator.resources[index].configMap +<sup><sup>[↩ Parent](#benchmarkspecloadgeneratorresourcesindex)</sup></sup> + + + +The configMap resourceSet loads the Kubernetes manifests from an Kubernetes configMap. + +<table> + <thead> + <tr> + <th>Name</th> + <th>Type</th> + <th>Description</th> + <th>Required</th> + </tr> + </thead> + <tbody><tr> + <td><b>files</b></td> + <td>[]string</td> + <td> + (Optional) Specifies which files from the configMap should be loaded. If this field is not set, all files are loaded.<br/> + </td> + <td>false</td> + </tr><tr> + <td><b>name</b></td> + <td>string</td> + <td> + The name of the configMap<br/> + </td> + <td>false</td> + </tr></tbody> +</table> + + +### benchmark.spec.loadGenerator.resources[index].fileSystem +<sup><sup>[↩ Parent](#benchmarkspecloadgeneratorresourcesindex)</sup></sup> + + + +The fileSystem resourceSet loads the Kubernetes manifests from the filesystem. + +<table> + <thead> + <tr> + <th>Name</th> + <th>Type</th> + <th>Description</th> + <th>Required</th> + </tr> + </thead> + <tbody><tr> + <td><b>files</b></td> + <td>[]string</td> + <td> + (Optional) Specifies which files from the configMap should be loaded. If this field is not set, all files are loaded.<br/> + </td> + <td>false</td> + </tr><tr> + <td><b>path</b></td> + <td>string</td> + <td> + The path to the folder which contains the Kubernetes manifests files.<br/> + </td> + <td>false</td> + </tr></tbody> +</table> + + +### benchmark.spec.loadTypes[index] +<sup><sup>[↩ Parent](#benchmarkspec)</sup></sup> + + + + + +<table> + <thead> + <tr> + <th>Name</th> + <th>Type</th> + <th>Description</th> + <th>Required</th> + </tr> + </thead> + <tbody><tr> + <td><b><a href="#benchmarkspecloadtypesindexpatchersindex">patchers</a></b></td> <td>[]object</td> <td> List of patchers used to scale this resource type.<br/> @@ -572,6 +706,24 @@ The fileSystem resourceSet loads the Kubernetes manifests from the filesystem. </tr> </thead> <tbody><tr> + <td><b>resource</b></td> + <td>string</td> + <td> + Specifies the Kubernetes resource to be patched.<br/> + <br/> + <i>Default</i>: <br/> + </td> + <td>true</td> + </tr><tr> + <td><b>type</b></td> + <td>string</td> + <td> + Type of the Patcher.<br/> + <br/> + <i>Default</i>: <br/> + </td> + <td>true</td> + </tr><tr> <td><b>properties</b></td> <td>map[string]string</td> <td> @@ -580,34 +732,726 @@ The fileSystem resourceSet loads the Kubernetes manifests from the filesystem. <i>Default</i>: map[]<br/> </td> <td>false</td> + </tr></tbody> +</table> + + +### benchmark.spec.resourceTypes[index] +<sup><sup>[↩ Parent](#benchmarkspec)</sup></sup> + + + + + +<table> + <thead> + <tr> + <th>Name</th> + <th>Type</th> + <th>Description</th> + <th>Required</th> + </tr> + </thead> + <tbody><tr> + <td><b><a href="#benchmarkspecresourcetypesindexpatchersindex">patchers</a></b></td> + <td>[]object</td> + <td> + List of patchers used to scale this resource type.<br/> + </td> + <td>true</td> </tr><tr> + <td><b>typeName</b></td> + <td>string</td> + <td> + Name of the resource type.<br/> + </td> + <td>true</td> + </tr></tbody> +</table> + + +### benchmark.spec.resourceTypes[index].patchers[index] +<sup><sup>[↩ Parent](#benchmarkspecresourcetypesindex)</sup></sup> + + + + + +<table> + <thead> + <tr> + <th>Name</th> + <th>Type</th> + <th>Description</th> + <th>Required</th> + </tr> + </thead> + <tbody><tr> <td><b>resource</b></td> <td>string</td> <td> - Specifies the Kubernetes resource to be patched.<br/> - <br/> - <i>Default</i>: <br/> + Specifies the Kubernetes resource to be patched.<br/> + <br/> + <i>Default</i>: <br/> + </td> + <td>true</td> + </tr><tr> + <td><b>type</b></td> + <td>string</td> + <td> + Type of the patcher.<br/> + <br/> + <i>Default</i>: <br/> + </td> + <td>true</td> + </tr><tr> + <td><b>properties</b></td> + <td>map[string]string</td> + <td> + (Optional) Patcher specific additional arguments.<br/> + <br/> + <i>Default</i>: map[]<br/> + </td> + <td>false</td> + </tr></tbody> +</table> + + +### benchmark.spec.sut +<sup><sup>[↩ Parent](#benchmarkspec)</sup></sup> + + + +The appResourceSets specifies all Kubernetes resources required to start the sut. A resourceSet can be either a configMap resourceSet or a fileSystem resourceSet. + +<table> + <thead> + <tr> + <th>Name</th> + <th>Type</th> + <th>Description</th> + <th>Required</th> + </tr> + </thead> + <tbody><tr> + <td><b><a href="#benchmarkspecsutafteractionsindex">afterActions</a></b></td> + <td>[]object</td> + <td> + <br/> + <br/> + <i>Default</i>: []<br/> + </td> + <td>false</td> + </tr><tr> + <td><b><a href="#benchmarkspecsutbeforeactionsindex">beforeActions</a></b></td> + <td>[]object</td> + <td> + SUT before actions are executed before the SUT is started.<br/> + <br/> + <i>Default</i>: []<br/> + </td> + <td>false</td> + </tr><tr> + <td><b><a href="#benchmarkspecsutresourcesindex">resources</a></b></td> + <td>[]object</td> + <td> + <br/> + <br/> + <i>Default</i>: []<br/> + </td> + <td>false</td> + </tr></tbody> +</table> + + +### benchmark.spec.sut.afterActions[index] +<sup><sup>[↩ Parent](#benchmarkspecsut)</sup></sup> + + + + + +<table> + <thead> + <tr> + <th>Name</th> + <th>Type</th> + <th>Description</th> + <th>Required</th> + </tr> + </thead> + <tbody><tr> + <td><b><a href="#benchmarkspecsutafteractionsindexexec">exec</a></b></td> + <td>object</td> + <td> + Specifies command to be executed.<br/> + </td> + <td>false</td> + </tr><tr> + <td><b><a href="#benchmarkspecsutafteractionsindexselector">selector</a></b></td> + <td>object</td> + <td> + The selector specifies which resource should be selected for the execution of the command.<br/> + </td> + <td>false</td> + </tr></tbody> +</table> + + +### benchmark.spec.sut.afterActions[index].exec +<sup><sup>[↩ Parent](#benchmarkspecsutafteractionsindex)</sup></sup> + + + +Specifies command to be executed. + +<table> + <thead> + <tr> + <th>Name</th> + <th>Type</th> + <th>Description</th> + <th>Required</th> + </tr> + </thead> + <tbody><tr> + <td><b>command</b></td> + <td>[]string</td> + <td> + The command to be executed as string array.<br/> + </td> + <td>false</td> + </tr><tr> + <td><b>timeoutSeconds</b></td> + <td>integer</td> + <td> + Specifies the timeout (in seconds) for the specified command.<br/> + </td> + <td>false</td> + </tr></tbody> +</table> + + +### benchmark.spec.sut.afterActions[index].selector +<sup><sup>[↩ Parent](#benchmarkspecsutafteractionsindex)</sup></sup> + + + +The selector specifies which resource should be selected for the execution of the command. + +<table> + <thead> + <tr> + <th>Name</th> + <th>Type</th> + <th>Description</th> + <th>Required</th> + </tr> + </thead> + <tbody><tr> + <td><b>container</b></td> + <td>string</td> + <td> + Specifies the container.<br/> + <br/> + <i>Default</i>: <br/> + </td> + <td>false</td> + </tr><tr> + <td><b><a href="#benchmarkspecsutafteractionsindexselectorpod">pod</a></b></td> + <td>object</td> + <td> + Specifies the pod.<br/> + </td> + <td>false</td> + </tr></tbody> +</table> + + +### benchmark.spec.sut.afterActions[index].selector.pod +<sup><sup>[↩ Parent](#benchmarkspecsutafteractionsindexselector)</sup></sup> + + + +Specifies the pod. + +<table> + <thead> + <tr> + <th>Name</th> + <th>Type</th> + <th>Description</th> + <th>Required</th> + </tr> + </thead> + <tbody><tr> + <td><b>matchLabels</b></td> + <td>map[string]string</td> + <td> + The matchLabels of the desired pod.<br/> + <br/> + <i>Default</i>: map[]<br/> + </td> + <td>false</td> + </tr></tbody> +</table> + + +### benchmark.spec.sut.beforeActions[index] +<sup><sup>[↩ Parent](#benchmarkspecsut)</sup></sup> + + + + + +<table> + <thead> + <tr> + <th>Name</th> + <th>Type</th> + <th>Description</th> + <th>Required</th> + </tr> + </thead> + <tbody><tr> + <td><b><a href="#benchmarkspecsutbeforeactionsindexexec">exec</a></b></td> + <td>object</td> + <td> + Specifies command to be executed.<br/> + </td> + <td>false</td> + </tr><tr> + <td><b><a href="#benchmarkspecsutbeforeactionsindexselector">selector</a></b></td> + <td>object</td> + <td> + The selector specifies which resource should be selected for the execution of the command.<br/> + </td> + <td>false</td> + </tr></tbody> +</table> + + +### benchmark.spec.sut.beforeActions[index].exec +<sup><sup>[↩ Parent](#benchmarkspecsutbeforeactionsindex)</sup></sup> + + + +Specifies command to be executed. + +<table> + <thead> + <tr> + <th>Name</th> + <th>Type</th> + <th>Description</th> + <th>Required</th> + </tr> + </thead> + <tbody><tr> + <td><b>command</b></td> + <td>[]string</td> + <td> + The command to be executed as string array.<br/> + </td> + <td>false</td> + </tr><tr> + <td><b>timeoutSeconds</b></td> + <td>integer</td> + <td> + Specifies the timeout (in seconds) for the specified command.<br/> + </td> + <td>false</td> + </tr></tbody> +</table> + + +### benchmark.spec.sut.beforeActions[index].selector +<sup><sup>[↩ Parent](#benchmarkspecsutbeforeactionsindex)</sup></sup> + + + +The selector specifies which resource should be selected for the execution of the command. + +<table> + <thead> + <tr> + <th>Name</th> + <th>Type</th> + <th>Description</th> + <th>Required</th> + </tr> + </thead> + <tbody><tr> + <td><b>container</b></td> + <td>string</td> + <td> + Specifies the container.<br/> + <br/> + <i>Default</i>: <br/> + </td> + <td>false</td> + </tr><tr> + <td><b><a href="#benchmarkspecsutbeforeactionsindexselectorpod">pod</a></b></td> + <td>object</td> + <td> + Specifies the pod.<br/> + </td> + <td>false</td> + </tr></tbody> +</table> + + +### benchmark.spec.sut.beforeActions[index].selector.pod +<sup><sup>[↩ Parent](#benchmarkspecsutbeforeactionsindexselector)</sup></sup> + + + +Specifies the pod. + +<table> + <thead> + <tr> + <th>Name</th> + <th>Type</th> + <th>Description</th> + <th>Required</th> + </tr> + </thead> + <tbody><tr> + <td><b>matchLabels</b></td> + <td>map[string]string</td> + <td> + The matchLabels of the desired pod.<br/> + <br/> + <i>Default</i>: map[]<br/> + </td> + <td>false</td> + </tr></tbody> +</table> + + +### benchmark.spec.sut.resources[index] +<sup><sup>[↩ Parent](#benchmarkspecsut)</sup></sup> + + + + + +<table> + <thead> + <tr> + <th>Name</th> + <th>Type</th> + <th>Description</th> + <th>Required</th> + </tr> + </thead> + <tbody><tr> + <td><b><a href="#benchmarkspecsutresourcesindexconfigmap">configMap</a></b></td> + <td>object</td> + <td> + The configMap resourceSet loads the Kubernetes manifests from an Kubernetes configMap.<br/> + </td> + <td>false</td> + </tr><tr> + <td><b><a href="#benchmarkspecsutresourcesindexfilesystem">fileSystem</a></b></td> + <td>object</td> + <td> + The fileSystem resourceSet loads the Kubernetes manifests from the filesystem.<br/> + </td> + <td>false</td> + </tr></tbody> +</table> + + +### benchmark.spec.sut.resources[index].configMap +<sup><sup>[↩ Parent](#benchmarkspecsutresourcesindex)</sup></sup> + + + +The configMap resourceSet loads the Kubernetes manifests from an Kubernetes configMap. + +<table> + <thead> + <tr> + <th>Name</th> + <th>Type</th> + <th>Description</th> + <th>Required</th> + </tr> + </thead> + <tbody><tr> + <td><b>files</b></td> + <td>[]string</td> + <td> + (Optional) Specifies which files from the configMap should be loaded. If this field is not set, all files are loaded.<br/> + </td> + <td>false</td> + </tr><tr> + <td><b>name</b></td> + <td>string</td> + <td> + The name of the configMap<br/> + </td> + <td>false</td> + </tr></tbody> +</table> + + +### benchmark.spec.sut.resources[index].fileSystem +<sup><sup>[↩ Parent](#benchmarkspecsutresourcesindex)</sup></sup> + + + +The fileSystem resourceSet loads the Kubernetes manifests from the filesystem. + +<table> + <thead> + <tr> + <th>Name</th> + <th>Type</th> + <th>Description</th> + <th>Required</th> + </tr> + </thead> + <tbody><tr> + <td><b>files</b></td> + <td>[]string</td> + <td> + (Optional) Specifies which files from the configMap should be loaded. If this field is not set, all files are loaded.<br/> + </td> + <td>false</td> + </tr><tr> + <td><b>path</b></td> + <td>string</td> + <td> + The path to the folder which contains the Kubernetes manifests files.<br/> + </td> + <td>false</td> + </tr></tbody> +</table> + + +### benchmark.spec.infrastructure +<sup><sup>[↩ Parent](#benchmarkspec)</sup></sup> + + + +(Optional) A list of file names that reference Kubernetes resources that are deployed on the cluster to create the required infrastructure. + +<table> + <thead> + <tr> + <th>Name</th> + <th>Type</th> + <th>Description</th> + <th>Required</th> + </tr> + </thead> + <tbody><tr> + <td><b><a href="#benchmarkspecinfrastructureafteractionsindex">afterActions</a></b></td> + <td>[]object</td> + <td> + Infrastructure after actions are executed after the teardown of the infrastructure.<br/> + <br/> + <i>Default</i>: []<br/> + </td> + <td>false</td> + </tr><tr> + <td><b><a href="#benchmarkspecinfrastructurebeforeactionsindex">beforeActions</a></b></td> + <td>[]object</td> + <td> + Infrastructure before actions are executed before the infrastructure is set up.<br/> + <br/> + <i>Default</i>: []<br/> + </td> + <td>false</td> + </tr><tr> + <td><b><a href="#benchmarkspecinfrastructureresourcesindex">resources</a></b></td> + <td>[]object</td> + <td> + <br/> + <br/> + <i>Default</i>: []<br/> + </td> + <td>false</td> + </tr></tbody> +</table> + + +### benchmark.spec.infrastructure.afterActions[index] +<sup><sup>[↩ Parent](#benchmarkspecinfrastructure)</sup></sup> + + + + + +<table> + <thead> + <tr> + <th>Name</th> + <th>Type</th> + <th>Description</th> + <th>Required</th> + </tr> + </thead> + <tbody><tr> + <td><b><a href="#benchmarkspecinfrastructureafteractionsindexexec">exec</a></b></td> + <td>object</td> + <td> + Specifies command to be executed.<br/> + </td> + <td>false</td> + </tr><tr> + <td><b><a href="#benchmarkspecinfrastructureafteractionsindexselector">selector</a></b></td> + <td>object</td> + <td> + The selector specifies which resource should be selected for the execution of the command.<br/> + </td> + <td>false</td> + </tr></tbody> +</table> + + +### benchmark.spec.infrastructure.afterActions[index].exec +<sup><sup>[↩ Parent](#benchmarkspecinfrastructureafteractionsindex)</sup></sup> + + + +Specifies command to be executed. + +<table> + <thead> + <tr> + <th>Name</th> + <th>Type</th> + <th>Description</th> + <th>Required</th> + </tr> + </thead> + <tbody><tr> + <td><b>command</b></td> + <td>[]string</td> + <td> + The command to be executed as string array.<br/> + </td> + <td>false</td> + </tr><tr> + <td><b>timeoutSeconds</b></td> + <td>integer</td> + <td> + Specifies the timeout (in seconds) for the specified command.<br/> + </td> + <td>false</td> + </tr></tbody> +</table> + + +### benchmark.spec.infrastructure.afterActions[index].selector +<sup><sup>[↩ Parent](#benchmarkspecinfrastructureafteractionsindex)</sup></sup> + + + +The selector specifies which resource should be selected for the execution of the command. + +<table> + <thead> + <tr> + <th>Name</th> + <th>Type</th> + <th>Description</th> + <th>Required</th> + </tr> + </thead> + <tbody><tr> + <td><b>container</b></td> + <td>string</td> + <td> + Specifies the container.<br/> + <br/> + <i>Default</i>: <br/> + </td> + <td>false</td> + </tr><tr> + <td><b><a href="#benchmarkspecinfrastructureafteractionsindexselectorpod">pod</a></b></td> + <td>object</td> + <td> + Specifies the pod.<br/> + </td> + <td>false</td> + </tr></tbody> +</table> + + +### benchmark.spec.infrastructure.afterActions[index].selector.pod +<sup><sup>[↩ Parent](#benchmarkspecinfrastructureafteractionsindexselector)</sup></sup> + + + +Specifies the pod. + +<table> + <thead> + <tr> + <th>Name</th> + <th>Type</th> + <th>Description</th> + <th>Required</th> + </tr> + </thead> + <tbody><tr> + <td><b>matchLabels</b></td> + <td>map[string]string</td> + <td> + The matchLabels of the desired pod.<br/> + <br/> + <i>Default</i>: map[]<br/> + </td> + <td>false</td> + </tr></tbody> +</table> + + +### benchmark.spec.infrastructure.beforeActions[index] +<sup><sup>[↩ Parent](#benchmarkspecinfrastructure)</sup></sup> + + + + + +<table> + <thead> + <tr> + <th>Name</th> + <th>Type</th> + <th>Description</th> + <th>Required</th> + </tr> + </thead> + <tbody><tr> + <td><b><a href="#benchmarkspecinfrastructurebeforeactionsindexexec">exec</a></b></td> + <td>object</td> + <td> + Specifies command to be executed.<br/> </td> - <td>true</td> + <td>false</td> </tr><tr> - <td><b>type</b></td> - <td>string</td> + <td><b><a href="#benchmarkspecinfrastructurebeforeactionsindexselector">selector</a></b></td> + <td>object</td> <td> - Type of the Patcher.<br/> - <br/> - <i>Default</i>: <br/> + The selector specifies which resource should be selected for the execution of the command.<br/> </td> - <td>true</td> + <td>false</td> </tr></tbody> </table> -### benchmark.spec.resourceTypes[index] -<sup><sup>[↩ Parent](#benchmarkspec)</sup></sup> - +### benchmark.spec.infrastructure.beforeActions[index].exec +<sup><sup>[↩ Parent](#benchmarkspecinfrastructurebeforeactionsindex)</sup></sup> +Specifies command to be executed. <table> <thead> @@ -619,29 +1463,29 @@ The fileSystem resourceSet loads the Kubernetes manifests from the filesystem. </tr> </thead> <tbody><tr> - <td><b><a href="#benchmarkspecresourcetypesindexpatchersindex">patchers</a></b></td> - <td>[]object</td> + <td><b>command</b></td> + <td>[]string</td> <td> - List of patchers used to scale this resource type.<br/> + The command to be executed as string array.<br/> </td> - <td>true</td> + <td>false</td> </tr><tr> - <td><b>typeName</b></td> - <td>string</td> + <td><b>timeoutSeconds</b></td> + <td>integer</td> <td> - Name of the resource type.<br/> + Specifies the timeout (in seconds) for the specified command.<br/> </td> - <td>true</td> + <td>false</td> </tr></tbody> </table> -### benchmark.spec.resourceTypes[index].patchers[index] -<sup><sup>[↩ Parent](#benchmarkspecresourcetypesindex)</sup></sup> - +### benchmark.spec.infrastructure.beforeActions[index].selector +<sup><sup>[↩ Parent](#benchmarkspecinfrastructurebeforeactionsindex)</sup></sup> +The selector specifies which resource should be selected for the execution of the command. <table> <thead> @@ -653,42 +1497,31 @@ The fileSystem resourceSet loads the Kubernetes manifests from the filesystem. </tr> </thead> <tbody><tr> - <td><b>properties</b></td> - <td>map[string]string</td> - <td> - (Optional) Patcher specific additional arguments.<br/> - <br/> - <i>Default</i>: map[]<br/> - </td> - <td>false</td> - </tr><tr> - <td><b>resource</b></td> + <td><b>container</b></td> <td>string</td> <td> - Specifies the Kubernetes resource to be patched.<br/> + Specifies the container.<br/> <br/> <i>Default</i>: <br/> </td> - <td>true</td> + <td>false</td> </tr><tr> - <td><b>type</b></td> - <td>string</td> + <td><b><a href="#benchmarkspecinfrastructurebeforeactionsindexselectorpod">pod</a></b></td> + <td>object</td> <td> - Type of the patcher.<br/> - <br/> - <i>Default</i>: <br/> + Specifies the pod.<br/> </td> - <td>true</td> + <td>false</td> </tr></tbody> </table> -### benchmark.spec.sut -<sup><sup>[↩ Parent](#benchmarkspec)</sup></sup> +### benchmark.spec.infrastructure.beforeActions[index].selector.pod +<sup><sup>[↩ Parent](#benchmarkspecinfrastructurebeforeactionsindexselector)</sup></sup> -The appResourceSets specifies all Kubernetes resources required to start the sut. A resourceSet can be either a configMap resourceSet or a fileSystem resourceSet. +Specifies the pod. <table> <thead> @@ -700,20 +1533,20 @@ The appResourceSets specifies all Kubernetes resources required to start the sut </tr> </thead> <tbody><tr> - <td><b><a href="#benchmarkspecsutresourcesindex">resources</a></b></td> - <td>[]object</td> + <td><b>matchLabels</b></td> + <td>map[string]string</td> <td> + The matchLabels of the desired pod.<br/> <br/> - <br/> - <i>Default</i>: []<br/> + <i>Default</i>: map[]<br/> </td> <td>false</td> </tr></tbody> </table> -### benchmark.spec.sut.resources[index] -<sup><sup>[↩ Parent](#benchmarkspecsut)</sup></sup> +### benchmark.spec.infrastructure.resources[index] +<sup><sup>[↩ Parent](#benchmarkspecinfrastructure)</sup></sup> @@ -729,14 +1562,14 @@ The appResourceSets specifies all Kubernetes resources required to start the sut </tr> </thead> <tbody><tr> - <td><b><a href="#benchmarkspecsutresourcesindexconfigmap">configMap</a></b></td> + <td><b><a href="#benchmarkspecinfrastructureresourcesindexconfigmap">configMap</a></b></td> <td>object</td> <td> The configMap resourceSet loads the Kubernetes manifests from an Kubernetes configMap.<br/> </td> <td>false</td> </tr><tr> - <td><b><a href="#benchmarkspecsutresourcesindexfilesystem">fileSystem</a></b></td> + <td><b><a href="#benchmarkspecinfrastructureresourcesindexfilesystem">fileSystem</a></b></td> <td>object</td> <td> The fileSystem resourceSet loads the Kubernetes manifests from the filesystem.<br/> @@ -746,8 +1579,8 @@ The appResourceSets specifies all Kubernetes resources required to start the sut </table> -### benchmark.spec.sut.resources[index].configMap -<sup><sup>[↩ Parent](#benchmarkspecsutresourcesindex)</sup></sup> +### benchmark.spec.infrastructure.resources[index].configMap +<sup><sup>[↩ Parent](#benchmarkspecinfrastructureresourcesindex)</sup></sup> @@ -780,8 +1613,8 @@ The configMap resourceSet loads the Kubernetes manifests from an Kubernetes conf </table> -### benchmark.spec.sut.resources[index].fileSystem -<sup><sup>[↩ Parent](#benchmarkspecsutresourcesindex)</sup></sup> +### benchmark.spec.infrastructure.resources[index].fileSystem +<sup><sup>[↩ Parent](#benchmarkspecinfrastructureresourcesindex)</sup></sup> @@ -813,6 +1646,33 @@ The fileSystem resourceSet loads the Kubernetes manifests from the filesystem. </tr></tbody> </table> + +### benchmark.status +<sup><sup>[↩ Parent](#benchmark)</sup></sup> + + + + + +<table> + <thead> + <tr> + <th>Name</th> + <th>Type</th> + <th>Description</th> + <th>Required</th> + </tr> + </thead> + <tbody><tr> + <td><b>resourceSetsState</b></td> + <td>string</td> + <td> + The status of a Benchmark indicates whether all resources are available to start the benchmark or not.<br/> + </td> + <td>false</td> + </tr></tbody> +</table> + ## execution <sup><sup>[↩ Parent](#theodolitecomv1 )</sup></sup> @@ -849,13 +1709,6 @@ The fileSystem resourceSet loads the Kubernetes manifests from the filesystem. <td>object</td> <td>Refer to the Kubernetes API documentation for the fields of the `metadata` field.</td> <td>true</td> - </tr><tr> - <td><b><a href="#executionstatus">status</a></b></td> - <td>object</td> - <td> - <br/> - </td> - <td>false</td> </tr><tr> <td><b><a href="#executionspec">spec</a></b></td> <td>object</td> @@ -863,36 +1716,9 @@ The fileSystem resourceSet loads the Kubernetes manifests from the filesystem. <br/> </td> <td>true</td> - </tr></tbody> -</table> - - -### execution.status -<sup><sup>[↩ Parent](#execution)</sup></sup> - - - - - -<table> - <thead> - <tr> - <th>Name</th> - <th>Type</th> - <th>Description</th> - <th>Required</th> - </tr> - </thead> - <tbody><tr> - <td><b>executionDuration</b></td> - <td>string</td> - <td> - Duration of the execution in seconds<br/> - </td> - <td>false</td> </tr><tr> - <td><b>executionState</b></td> - <td>string</td> + <td><b><a href="#executionstatus">status</a></b></td> + <td>object</td> <td> <br/> </td> @@ -918,15 +1744,6 @@ The fileSystem resourceSet loads the Kubernetes manifests from the filesystem. </tr> </thead> <tbody><tr> - <td><b>name</b></td> - <td>string</td> - <td> - This field exists only for technical reasons and should not be set by the user. The value of the field will be overwritten.<br/> - <br/> - <i>Default</i>: <br/> - </td> - <td>false</td> - </tr><tr> <td><b>benchmark</b></td> <td>string</td> <td> @@ -968,6 +1785,15 @@ The fileSystem resourceSet loads the Kubernetes manifests from the filesystem. List of resource values for the specified resource type.<br/> </td> <td>true</td> + </tr><tr> + <td><b>name</b></td> + <td>string</td> + <td> + This field exists only for technical reasons and should not be set by the user. The value of the field will be overwritten.<br/> + <br/> + <i>Default</i>: <br/> + </td> + <td>false</td> </tr></tbody> </table> @@ -1023,15 +1849,6 @@ Patcher used to patch a resource </tr> </thead> <tbody><tr> - <td><b>properties</b></td> - <td>map[string]string</td> - <td> - (Optional) Patcher specific additional arguments.<br/> - <br/> - <i>Default</i>: map[]<br/> - </td> - <td>false</td> - </tr><tr> <td><b>resource</b></td> <td>string</td> <td> @@ -1049,6 +1866,15 @@ Patcher used to patch a resource <i>Default</i>: <br/> </td> <td>true</td> + </tr><tr> + <td><b>properties</b></td> + <td>map[string]string</td> + <td> + (Optional) Patcher specific additional arguments.<br/> + <br/> + <i>Default</i>: map[]<br/> + </td> + <td>false</td> </tr></tbody> </table> @@ -1070,13 +1896,6 @@ Defines the overall parameter for the execution. </tr> </thead> <tbody><tr> - <td><b>loadGenerationDelay</b></td> - <td>integer</td> - <td> - Seconds to wait between the start of the SUT and the load generator.<br/> - </td> - <td>false</td> - </tr><tr> <td><b>duration</b></td> <td>integer</td> <td> @@ -1104,6 +1923,13 @@ Defines the overall parameter for the execution. Defines the used strategy for the execution, either 'LinearSearch' or 'BinarySearch'<br/> </td> <td>true</td> + </tr><tr> + <td><b>loadGenerationDelay</b></td> + <td>integer</td> + <td> + Seconds to wait between the start of the SUT and the load generator.<br/> + </td> + <td>false</td> </tr></tbody> </table> @@ -1193,15 +2019,6 @@ Specifies the scaling resource that is benchmarked. </tr> </thead> <tbody><tr> - <td><b>properties</b></td> - <td>map[string]string</td> - <td> - (Optional) SLO specific additional arguments.<br/> - <br/> - <i>Default</i>: map[]<br/> - </td> - <td>false</td> - </tr><tr> <td><b>offset</b></td> <td>integer</td> <td> @@ -1222,5 +2039,66 @@ Specifies the scaling resource that is benchmarked. The type of the SLO. It must match 'lag trend'.<br/> </td> <td>true</td> + </tr><tr> + <td><b>properties</b></td> + <td>map[string]string</td> + <td> + (Optional) SLO specific additional arguments.<br/> + <br/> + <i>Default</i>: map[]<br/> + </td> + <td>false</td> + </tr></tbody> +</table> + + +### execution.status +<sup><sup>[↩ Parent](#execution)</sup></sup> + + + + + +<table> + <thead> + <tr> + <th>Name</th> + <th>Type</th> + <th>Description</th> + <th>Required</th> + </tr> + </thead> + <tbody><tr> + <td><b>completionTime</b></td> + <td>string</td> + <td> + Time when this execution was stopped<br/> + <br/> + <i>Format</i>: date-time<br/> + </td> + <td>false</td> + </tr><tr> + <td><b>executionDuration</b></td> + <td>string</td> + <td> + Duration of the execution<br/> + </td> + <td>false</td> + </tr><tr> + <td><b>executionState</b></td> + <td>string</td> + <td> + <br/> + </td> + <td>false</td> + </tr><tr> + <td><b>startTime</b></td> + <td>string</td> + <td> + Time this execution started<br/> + <br/> + <i>Format</i>: date-time<br/> + </td> + <td>false</td> </tr></tbody> </table> \ No newline at end of file diff --git a/docs/api-reference/crds.tmpl b/docs/api-reference/crds.tmpl new file mode 100644 index 0000000000000000000000000000000000000000..3f642f371823a75b069f4747fcb0c1715fa5f31d --- /dev/null +++ b/docs/api-reference/crds.tmpl @@ -0,0 +1,104 @@ +--- +title: Theodolite CRDs +has_children: false +parent: API Reference +nav_order: 1 +--- + + +# API Reference + +Packages: +{{range .Groups}} +- [{{.Group}}/{{.Version}}](#{{ anchorize (printf "%s/%s" .Group .Version) }}) +{{- end -}}{{/* range .Groups */}} + +{{- range .Groups }} +{{- $group := . }} + +# {{.Group}}/{{.Version}} + +Resource Types: +{{range .Kinds}} +- [{{.Name}}](#{{ anchorize .Name }}) +{{end}}{{/* range .Kinds */}} + +{{range .Kinds}} +{{$kind := .}} +## {{.Name}} +<sup><sup>[↩ Parent](#{{ anchorize (printf "%s/%s" $group.Group $group.Version) }} )</sup></sup> + +{{range .Types}} + +{{if not .IsTopLevel}} +### {{.Name}} +{{if .ParentKey}}<sup><sup>[↩ Parent](#{{.ParentKey}})</sup></sup>{{end}} +{{end}} + + +{{.Description}} + +<table> + <thead> + <tr> + <th>Name</th> + <th>Type</th> + <th>Description</th> + <th>Required</th> + </tr> + </thead> + <tbody> + {{- if .IsTopLevel -}} + <tr> + <td><b>apiVersion</b></td> + <td>string</td> + <td>{{$group.Group}}/{{$group.Version}}</td> + <td>true</td> + </tr> + <tr> + <td><b>kind</b></td> + <td>string</td> + <td>{{$kind.Name}}</td> + <td>true</td> + </tr> + <tr> + <td><b><a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.20/#objectmeta-v1-meta">metadata</a></b></td> + <td>object</td> + <td>Refer to the Kubernetes API documentation for the fields of the `metadata` field.</td> + <td>true</td> + </tr> + {{- end -}} + {{- range .Fields -}} + <tr> + <td><b>{{if .TypeKey}}<a href="#{{.TypeKey}}">{{.Name}}</a>{{else}}{{.Name}}{{end}}</b></td> + <td>{{.Type}}</td> + <td> + {{.Description}}<br/> + {{- if or .Schema.Format .Schema.Enum .Schema.Default .Schema.Minimum .Schema.Maximum }} + <br/> + {{- end}} + {{- if .Schema.Format }} + <i>Format</i>: {{ .Schema.Format }}<br/> + {{- end }} + {{- if .Schema.Enum }} + <i>Enum</i>: {{ .Schema.Enum | toStrings | join ", " }}<br/> + {{- end }} + {{- if .Schema.Default }} + <i>Default</i>: {{ .Schema.Default }}<br/> + {{- end }} + {{- if .Schema.Minimum }} + <i>Minimum</i>: {{ .Schema.Minimum }}<br/> + {{- end }} + {{- if .Schema.Maximum }} + <i>Maximum</i>: {{ .Schema.Maximum }}<br/> + {{- end }} + </td> + <td>{{.Required}}</td> + </tr> + {{- end -}} + </tbody> +</table> + +{{- end}}{{/* range .Types */}} +{{- end}}{{/* range .Kinds */}} +{{- end}}{{/* range .Groups */}} \ No newline at end of file diff --git a/docs/api-reference/index.md b/docs/api-reference/index.md new file mode 100644 index 0000000000000000000000000000000000000000..63326e4f0e5d05878a4a7faa143d33759b41dce5 --- /dev/null +++ b/docs/api-reference/index.md @@ -0,0 +1,5 @@ +--- +title: API Reference +has_children: true +nav_order: 9 +--- \ No newline at end of file diff --git a/docs/api-reference/patchers.md b/docs/api-reference/patchers.md new file mode 100644 index 0000000000000000000000000000000000000000..77f937e38f6a0ee4084cb0ad5b5838718eabff10 --- /dev/null +++ b/docs/api-reference/patchers.md @@ -0,0 +1,61 @@ +--- +title: Patchers +has_children: false +parent: API Reference +nav_order: 2 +--- + +# Patchers + +Patchers can be seen as functions which take a value as input and modify a Kubernetes resource in a patcher-specific way. + +## Available Patchers + +* **ReplicaPatcher**: Modifies the number of replicas for a Kubernetes deployment. + * **type**: "ReplicaPatcher" + * **resource**: "uc1-kstreams-deployment.yaml" + +* **NumSensorsLoadGeneratorReplicaPatcher**: Modifies the number of load generators, according to the following formula: *(value + loadGenMaxRecords - 1) / loadGenMaxRecords* + * **type**: "NumSensorsLoadGeneratorReplicaPatcher" + * **resource**: "uc1-load-generator-deployment.yaml" + * **properties**: + * loadGenMaxRecords: 150000 + +* **NumNestedGroupsLoadGeneratorReplicaPatcher**: Modifies the number of load generators, according to the following formula: *(4^(value) + loadGenMaxRecords - 1) / loadGenMaxRecords* + * **type**: "NumNestedGroupsLoadGeneratorReplicaPatcher" + * **resource**: "uc1-load-generator-deployment.yaml" + * **properties**: + * loadGenMaxRecords: 150000 + +* **EnvVarPatcher**: Modifies the value of an environment variable for a container in a Kubernetes deployment. + * **type**: "EnvVarPatcher" + * **resource**: "uc1-load-generator-deployment.yaml" + * **properties**: + * container: "workload-generator" + * variableName: "NUM_SENSORS" + +* **NodeSelectorPatcher**: Changes the node selection field in Kubernetes resources. + * **type**: "NodeSelectorPatcher" + * **resource**: "uc1-load-generator-deployment.yaml" + * **properties**: + * variableName: "env" + * **example value**: "prod" + +* **ResourceLimitPatcher**: Changes the resource limit for a Kubernetes resource. + * **resource**: "uc1-kstreams-deployment.yaml" + * **properties**: + * container: "uc-application" + * variableName: "cpu" or "memory" + * **example value**:"1000m" or "2Gi" + +* **SchedulerNamePatcher**: Changes the scheduler for Kubernetes resources. + * **type**: "SchedulerNamePatcher" + * **resource**: "uc1-kstreams-deployment.yaml" + * **example value**: "random-scheduler" + +* **ImagePatcher**: Changes the image of a Kubernetes resource. **Currently not fully implemented.** + * **type**: "ImagePatcher" + * **resource**: "uc1-kstreams-deployment.yaml" + * **properties**: + * container: "uc-application" + * **example value**: "dockerhub-org/image-name" diff --git a/docs/assets/logo/theodolite-horizontal-transparent.svg b/docs/assets/logo/theodolite-horizontal-transparent.svg new file mode 100644 index 0000000000000000000000000000000000000000..2388d2586ae333f6e0e53a8a8096a5975a2ff293 --- /dev/null +++ b/docs/assets/logo/theodolite-horizontal-transparent.svg @@ -0,0 +1,4333 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Generator: Adobe Illustrator 25.2.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> + +<svg + version="1.1" + id="Layer_2" + x="0px" + y="0px" + viewBox="0 0 822.86941 267.65771" + xml:space="preserve" + sodipodi:docname="Theodolite-01_no-background.svg" + width="822.86945" + height="267.65771" + inkscape:version="1.1.1 (eb90963e84, 2021-10-02)" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg"><defs + id="defs2153" /><sodipodi:namedview + id="namedview2151" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageshadow="2" + inkscape:pageopacity="0.0" + inkscape:pagecheckerboard="0" + showgrid="false" + inkscape:zoom="1.0369526" + inkscape:cx="411.30136" + inkscape:cy="133.56445" + inkscape:window-width="2488" + inkscape:window-height="1376" + inkscape:window-x="4552" + inkscape:window-y="27" + inkscape:window-maximized="1" + inkscape:current-layer="Layer_2" /> +<style + type="text/css" + id="style2"> + .st1{fill:#4D4639;} +</style> +<g + id="g2148" + transform="translate(-183.83057,-287.11556)"> + <g + id="g2124"> + <g + id="g298"> + <path + class="st1" + d="m 333.44,523.56 c -0.03,-0.54 -0.07,-1.07 -0.12,-1.61 -0.01,-0.16 -0.02,-0.32 -0.04,-0.48 0.34,-0.61 0.37,-1.33 -0.15,-2.03 -0.45,-0.6 -1.16,-0.97 -1.87,-1.24 -0.87,-0.34 -1.79,-0.59 -2.7,-0.79 -1.43,-0.31 -3.01,-0.53 -4.53,-0.43 -0.01,-0.1 -0.01,-0.21 -0.01,-0.31 -0.04,-0.64 -0.06,-1.29 -0.11,-1.93 -0.02,-0.3 -0.03,-0.62 -0.07,-0.93 -0.05,0.02 -0.1,0.03 -0.15,0.06 0.53,-0.39 1.03,-0.83 1.47,-1.32 0.32,-0.35 0.58,-0.75 0.82,-1.17 0.09,-0.03 0.18,-0.08 0.25,-0.14 0.49,-0.39 0.3,-1.33 0.26,-1.88 -0.03,-0.57 -0.07,-1.14 -0.1,-1.71 -0.02,-0.42 -0.05,-0.84 -0.07,-1.26 0.04,-0.23 0.07,-0.47 0.11,-0.7 0,0 0,-0.01 0,-0.01 -0.06,-0.6 -0.12,-1.21 -0.15,-1.81 -0.27,-0.88 -0.81,-1.67 -1.47,-2.38 -0.03,-0.36 -0.05,-0.73 -0.1,-1.09 -0.1,-0.85 -0.2,-1.74 -0.52,-2.54 -0.11,-0.28 -0.27,-0.58 -0.47,-0.82 0.02,-0.24 -0.01,-0.49 -0.02,-0.73 -0.01,-0.37 -0.03,-0.74 -0.04,-1.11 -0.01,-0.37 -0.04,-0.74 -0.07,-1.11 -0.01,-0.22 -0.05,-0.43 -0.09,-0.64 -0.01,-0.08 -0.03,-0.16 -0.05,-0.24 -0.03,-0.11 -0.09,-0.21 -0.12,-0.31 -0.06,-0.17 -0.23,-0.24 -0.38,-0.22 -0.28,-0.28 -0.65,-0.49 -0.96,-0.63 -0.57,-0.26 -1.16,-0.4 -1.79,-0.41 -0.59,-0.01 -1.2,0.08 -1.75,0.28 -0.55,0.2 -1.42,0.56 -1.58,1.18 -0.08,0.3 0.08,0.52 0.32,0.62 0.02,0.04 0.04,0.08 0.07,0.12 -0.01,0.42 -0.02,0.84 0,1.26 0.02,0.59 0.03,1.2 0.08,1.79 -0.22,0.09 -0.41,0.22 -0.58,0.39 -1.73,-0.43 -3.5,-0.69 -5.28,-0.89 0,-0.09 0,-0.18 0.01,-0.26 0.02,-0.44 0.04,-0.89 0.04,-1.33 0,-0.43 0,-0.86 -0.02,-1.28 -0.01,-0.32 -0.03,-0.71 -0.13,-1.05 0.01,-0.03 0.03,-0.05 0.04,-0.08 0.03,-0.23 -0.08,-0.42 -0.26,-0.55 -0.23,-0.15 -0.54,-0.17 -0.81,-0.23 -0.24,-0.05 -0.48,-0.08 -0.72,-0.11 -0.35,-0.05 -0.74,-0.12 -1.11,-0.1 -0.02,-0.04 -0.04,-0.08 -0.07,-0.12 0.01,-0.11 0.02,-0.22 -0.01,-0.33 -0.06,-0.24 -0.21,-0.41 -0.38,-0.54 0.03,-0.07 0.07,-0.13 0.1,-0.2 0.03,-0.07 0.06,-0.14 0.09,-0.21 0,0 0,-0.01 0.01,-0.01 0.07,-0.14 0.14,-0.29 0.22,-0.42 0.15,-0.28 0.33,-0.54 0.5,-0.81 0.08,-0.13 0.18,-0.26 0.26,-0.39 0.07,-0.11 0.12,-0.18 0.19,-0.27 0.87,-0.48 1.55,-1.36 1.5,-2.38 -0.03,-0.66 -0.37,-1.29 -0.88,-1.71 -0.6,-0.49 -1.28,-0.57 -1.99,-0.26 -0.1,0.05 -0.17,0.11 -0.23,0.19 0.01,-0.11 -0.1,-0.22 -0.23,-0.15 -0.33,0.18 -0.64,0.39 -0.96,0.59 -0.17,-0.18 -0.31,-0.38 -0.49,-0.56 -0.13,-0.13 -0.33,0.07 -0.2,0.2 0.02,0.02 0.03,0.04 0.05,0.06 -0.03,0 -0.05,0.01 -0.08,0.03 -0.15,0.13 -0.3,0.27 -0.45,0.4 -0.24,-0.34 -0.49,-0.67 -0.73,-1.01 -0.13,-0.18 -0.43,-0.01 -0.3,0.17 l 0.76,1.08 c -0.28,0.25 -0.57,0.5 -0.85,0.76 -0.1,-0.14 -0.2,-0.29 -0.3,-0.43 0.26,-0.17 0.53,-0.34 0.81,-0.48 0.17,-0.09 0.02,-0.34 -0.15,-0.25 -0.29,0.15 -0.57,0.31 -0.85,0.48 -0.08,-0.12 -0.17,-0.23 -0.25,-0.35 -0.11,-0.16 -0.37,-0.01 -0.26,0.15 0.08,0.12 0.17,0.24 0.25,0.37 -0.12,0.08 -0.24,0.17 -0.36,0.25 -0.2,-0.14 -0.38,-0.32 -0.56,-0.48 0.02,-0.02 0.04,-0.05 0.07,-0.07 0.15,-0.14 -0.07,-0.36 -0.23,-0.23 -0.03,0.03 -0.06,0.06 -0.09,0.09 -0.06,-0.06 -0.12,-0.09 -0.18,-0.15 -0.23,-0.25 -0.55,-0.2 -0.76,-0.02 -0.03,-0.04 -0.04,-0.09 -0.08,-0.12 -0.16,-0.12 -0.4,-0.12 -0.54,0.03 -0.1,0.1 -0.19,0.19 -0.3,0.28 -0.1,0.09 -0.2,0.18 -0.29,0.29 -0.01,0.01 -0.02,0.02 -0.03,0.03 -0.07,-0.14 -0.16,-0.28 -0.31,-0.39 -0.2,-0.15 -0.44,-0.18 -0.64,0 -0.37,0.34 -0.56,0.79 -0.87,1.15 -0.48,0.05 -0.97,0.21 -1.42,0.32 -0.02,0 -0.03,0.01 -0.05,0.01 0.03,-0.02 0.05,-0.05 0.05,-0.08 0,-0.01 0.02,-0.01 0.02,-0.02 0.01,-0.1 0,-0.21 -0.04,-0.3 -0.04,-0.09 -0.1,-0.17 -0.17,-0.24 -0.06,-0.06 -0.14,-0.11 -0.22,-0.15 0.39,-0.15 0.77,-0.32 1.14,-0.5 0.11,-0.06 0.03,-0.23 -0.08,-0.19 -0.71,0.2 -1.4,0.45 -2.11,0.67 -0.33,0.1 -0.67,0.19 -1.01,0.29 0.04,-0.17 0.08,-0.33 0.14,-0.49 0.04,-0.09 -0.04,-0.21 -0.13,-0.23 -0.11,-0.03 -0.19,0.04 -0.23,0.13 -0.09,0.23 -0.16,0.46 -0.19,0.71 -0.21,0.06 -0.42,0.13 -0.63,0.18 -0.31,0.08 -0.62,0.14 -0.93,0.21 0,-0.1 0.01,-0.2 0.02,-0.29 0.04,-0.01 0.09,-0.02 0.13,-0.03 0.1,-0.04 0.1,-0.22 -0.03,-0.21 -0.02,0 -0.03,0.01 -0.05,0.01 0.02,-0.11 0.04,-0.21 0.07,-0.32 0.07,-0.23 -0.29,-0.33 -0.36,-0.1 -0.05,0.16 -0.08,0.32 -0.11,0.48 -0.25,0.05 -0.5,0.09 -0.75,0.15 0.03,-0.12 0.05,-0.24 0.1,-0.36 0.04,-0.09 -0.04,-0.21 -0.13,-0.23 -0.11,-0.03 -0.19,0.04 -0.23,0.13 -0.07,0.17 -0.11,0.35 -0.14,0.53 -0.25,0.04 -0.51,0.08 -0.76,0.11 -0.02,-0.31 -0.04,-0.62 -0.05,-0.93 -0.01,-0.26 -0.42,-0.26 -0.41,0 0.02,0.33 0.03,0.66 0.05,0.99 -0.06,0.01 -0.12,0.02 -0.19,0.03 -0.36,0.04 -0.71,0.07 -1.07,0.1 0.03,-0.18 0.07,-0.36 0.15,-0.53 0.04,-0.09 0.03,-0.2 -0.07,-0.25 -0.08,-0.05 -0.21,-0.03 -0.25,0.07 -0.1,0.24 -0.16,0.49 -0.19,0.75 -0.48,0.04 -0.97,0.06 -1.46,0.07 -0.07,-0.33 -0.05,-0.68 0.04,-1.01 0.07,-0.23 -0.28,-0.32 -0.36,-0.1 -0.12,0.36 -0.13,0.74 -0.07,1.11 -0.36,0 -0.72,0.01 -1.08,0 -0.03,-0.15 -0.05,-0.29 -0.08,-0.44 -0.01,-0.07 -0.1,-0.12 -0.17,-0.1 -0.08,0.02 -0.11,0.1 -0.1,0.17 0.02,0.12 0.04,0.24 0.07,0.36 -0.46,-0.01 -0.92,-0.04 -1.38,-0.07 0,-0.21 0.01,-0.42 0.03,-0.62 0.01,-0.09 -0.02,-0.17 -0.11,-0.2 -0.08,-0.02 -0.19,0.03 -0.2,0.11 -0.03,0.22 -0.04,0.45 -0.04,0.67 -0.34,-0.03 -0.68,-0.06 -1.01,-0.1 -0.03,-0.19 -0.07,-0.38 -0.1,-0.57 -0.02,-0.08 -0.12,-0.13 -0.19,-0.11 -0.09,0.02 -0.12,0.11 -0.11,0.19 0.03,0.15 0.05,0.3 0.08,0.45 -0.3,-0.04 -0.59,-0.09 -0.89,-0.13 -0.01,-0.12 -0.02,-0.23 -0.01,-0.35 0.01,-0.21 -0.31,-0.21 -0.33,0 -0.01,0.1 0.01,0.2 0.01,0.3 -0.05,-0.01 -0.11,-0.02 -0.16,-0.02 -0.12,-0.02 -0.18,0.17 -0.05,0.19 0.07,0.01 0.15,0.02 0.22,0.03 0.02,0.19 0.07,0.37 0.13,0.54 0.04,0.12 0.1,0.23 0.16,0.34 -0.11,-0.01 -0.22,-0.01 -0.33,-0.02 -0.26,-0.03 -0.53,-0.07 -0.79,-0.1 -0.02,-0.08 -0.05,-0.16 -0.07,-0.25 -0.05,-0.33 -0.03,-0.66 0.05,-0.98 0.05,-0.18 -0.23,-0.26 -0.28,-0.08 -0.1,0.36 -0.12,0.74 -0.07,1.11 0.01,0.05 0.03,0.11 0.04,0.16 -0.31,-0.04 -0.62,-0.07 -0.93,-0.11 -0.02,-0.08 -0.03,-0.17 -0.06,-0.25 -0.11,-0.25 -0.29,-0.46 -0.53,-0.6 -0.16,-0.09 -0.3,0.15 -0.14,0.25 0.18,0.11 0.32,0.29 0.39,0.48 0.01,0.03 0.01,0.05 0.02,0.08 -0.19,-0.03 -0.37,-0.07 -0.56,-0.1 -0.01,-0.06 -0.01,-0.12 -0.02,-0.18 -0.02,-0.11 -0.04,-0.23 -0.05,-0.34 -0.01,-0.06 -0.09,-0.11 -0.15,-0.09 -0.06,0.02 -0.11,0.09 -0.09,0.15 0.03,0.11 0.07,0.21 0.1,0.32 0.01,0.03 0.03,0.07 0.04,0.1 -0.25,-0.04 -0.49,-0.09 -0.74,-0.14 0,-0.02 0,-0.03 -0.01,-0.05 -0.03,-0.25 -0.06,-0.51 -0.08,-0.76 -0.01,-0.08 -0.07,-0.16 -0.16,-0.16 -0.08,0 -0.17,0.07 -0.16,0.16 0.03,0.25 0.05,0.5 0.08,0.75 -0.23,-0.05 -0.47,-0.08 -0.7,-0.13 -0.17,-0.04 -0.24,0.21 -0.07,0.25 0.27,0.07 0.54,0.12 0.8,0.18 0,0.03 0.01,0.07 0.01,0.1 0.01,0.07 0.02,0.13 0.03,0.2 0,0.03 0.01,0.06 0.02,0.08 0.01,0.04 0.04,0.06 0.07,0.09 0.01,0.01 0.02,0.01 0.04,0.01 0.02,0.01 0.04,0.03 0.07,0.03 0.11,0 0.14,-0.13 0.08,-0.19 0,-0.02 0.01,-0.03 0.01,-0.06 0,-0.06 -0.01,-0.11 -0.01,-0.17 0,0 0,-0.01 0,-0.01 0.49,0.11 0.99,0.21 1.49,0.3 0,0.01 0,0.03 0,0.04 0,0.08 -0.01,0.15 0.05,0.22 0.04,0.04 0.1,0.04 0.15,0.02 0.08,-0.03 0.1,-0.13 0.11,-0.2 0,-0.01 0,-0.02 0,-0.03 0.34,0.06 0.67,0.11 1.01,0.15 0.06,0.15 0.15,0.32 0.28,0.41 0.05,0.04 0.14,-0.01 0.13,-0.08 -0.01,-0.09 -0.04,-0.19 -0.08,-0.28 0.01,0 0.03,0 0.04,0.01 0.42,0.05 0.84,0.07 1.25,0.1 0.05,0.04 0.09,0.08 0.15,0.1 0.06,0.02 0.1,-0.03 0.11,-0.08 0.24,0.02 0.47,0.04 0.71,0.06 0.03,0.01 0.05,0.01 0.07,0 0.37,0.02 0.74,0.02 1.11,0.03 0.02,0.06 0.04,0.12 0.07,0.18 0.04,0.09 0.08,0.19 0.16,0.25 -1.96,-0.07 -3.91,-0.25 -5.84,-0.53 -0.66,-0.1 -1.39,-0.19 -2.11,-0.34 0,0 0,0 0,0 -0.01,-0.11 -0.12,-0.2 -0.18,-0.28 -0.06,-0.08 -0.12,-0.17 -0.16,-0.27 -0.08,-0.18 -0.12,-0.38 -0.1,-0.59 0.01,-0.08 -0.07,-0.14 -0.14,-0.14 -0.08,0 -0.14,0.07 -0.14,0.14 -0.02,0.25 0.03,0.49 0.13,0.72 0.05,0.11 0.11,0.21 0.19,0.3 0.01,0.01 0.02,0.01 0.02,0.02 -0.94,-0.24 -1.82,-0.6 -2.46,-1.26 -0.3,-0.31 -0.86,0.1 -0.61,0.47 0.27,0.38 0.57,0.72 0.91,1.02 -0.02,0.15 -0.04,0.31 -0.06,0.46 -0.27,-0.08 -0.54,-0.18 -0.8,-0.31 -0.02,-0.01 -0.03,-0.02 -0.05,-0.03 0.02,-0.18 0.05,-0.36 0.09,-0.54 0.04,-0.19 -0.24,-0.27 -0.29,-0.08 -0.03,0.15 -0.05,0.3 -0.08,0.45 -0.21,-0.13 -0.42,-0.27 -0.61,-0.43 0.03,-0.27 0.08,-0.54 0.05,-0.8 -0.01,-0.07 -0.06,-0.11 -0.11,-0.11 -0.14,-0.36 -0.66,-0.53 -0.93,-0.2 -0.05,-0.08 -0.11,-0.16 -0.16,-0.25 -0.1,-0.18 -0.37,-0.02 -0.28,0.16 0.08,0.15 0.17,0.28 0.27,0.42 -0.09,0.2 -0.18,0.41 -0.25,0.62 -0.27,-0.52 -0.59,-1.02 -1.01,-1.45 -0.48,-0.51 -1.19,0.18 -0.85,0.71 -0.26,0.22 -0.52,0.43 -0.78,0.65 -0.27,-0.3 -0.53,-0.59 -0.8,-0.89 0.08,-0.08 0.16,-0.15 0.24,-0.23 0.12,-0.11 -0.06,-0.29 -0.18,-0.18 -0.22,0.2 -0.44,0.39 -0.66,0.59 -0.13,-0.12 -0.27,-0.24 -0.41,-0.35 -0.1,-0.08 -0.21,-0.14 -0.32,-0.21 0.05,-0.04 0.1,-0.08 0.15,-0.13 0.14,-0.12 -0.06,-0.32 -0.21,-0.21 -0.07,0.05 -0.13,0.11 -0.2,0.16 -2.55,-1.51 -6.08,-1.33 -8.3,0.54 -0.06,-0.04 -0.12,-0.08 -0.18,-0.12 0.28,-0.2 0.55,-0.39 0.83,-0.59 0.12,-0.09 0.01,-0.29 -0.12,-0.21 -0.32,0.22 -0.63,0.43 -0.94,0.65 -0.26,-0.16 -0.52,-0.32 -0.78,-0.48 0.01,-0.01 0.02,-0.02 0.03,-0.03 0.05,-0.05 -0.02,-0.14 -0.08,-0.1 -0.03,0.02 -0.06,0.03 -0.09,0.05 -0.15,-0.09 -0.28,-0.18 -0.43,-0.26 -0.16,-0.09 -0.31,0.16 -0.15,0.25 0.09,0.05 0.17,0.11 0.26,0.17 -0.25,0.16 -0.48,0.34 -0.71,0.53 -0.11,-0.08 -0.22,-0.16 -0.33,-0.25 0.1,-0.17 0.2,-0.34 0.3,-0.51 0.22,-0.38 -0.23,-0.89 -0.62,-0.62 -1.05,0.72 -1.69,1.99 -2,3.21 -0.31,1.24 -0.31,2.57 0.05,3.8 0.35,1.18 1.01,2.27 1.88,3.13 0.11,0.11 0.24,0.23 0.38,0.35 -0.54,-0.19 -1.13,-0.28 -1.71,-0.27 -0.63,0.01 -1.22,0.15 -1.79,0.41 -0.31,0.14 -0.68,0.36 -0.96,0.63 -0.15,-0.02 -0.33,0.04 -0.38,0.22 -0.03,0.1 -0.09,0.2 -0.12,0.31 -0.02,0.08 -0.03,0.16 -0.05,0.24 -0.04,0.21 -0.07,0.42 -0.09,0.64 -0.03,0.37 -0.05,0.74 -0.07,1.11 -0.01,0.37 -0.03,0.74 -0.04,1.11 -0.01,0.24 -0.04,0.49 -0.02,0.73 -0.2,0.25 -0.36,0.55 -0.47,0.82 -0.32,0.8 -0.42,1.69 -0.52,2.54 -0.04,0.31 -0.06,0.62 -0.08,0.93 -0.06,-0.01 -0.11,-0.03 -0.18,0 -1.4,0.54 -2.03,1.8 -2.02,3.19 0,0.49 0.12,0.96 0.27,1.41 0,0.46 0.01,0.92 0.02,1.38 0.03,0.89 0.06,1.79 0.09,2.68 -0.07,0.13 -0.08,0.28 0.01,0.42 0,0.02 0,0.03 0,0.05 0.02,0.44 0.37,0.66 0.71,0.66 0.75,0.67 1.59,1.25 2.48,1.77 -0.14,0.49 -0.14,1.04 -0.17,1.53 -0.04,0.64 -0.07,1.29 -0.1,1.93 -0.01,0.1 -0.01,0.21 -0.01,0.31 -1.42,-0.1 -2.91,0.12 -4.24,0.43 -0.86,0.2 -1.72,0.45 -2.54,0.79 -0.67,0.28 -1.33,0.64 -1.76,1.24 -0.49,0.7 -0.46,1.41 -0.14,2.03 -0.01,0.16 -0.02,0.33 -0.04,0.48 -0.04,0.54 -0.09,1.07 -0.11,1.61 -0.03,0.52 -0.05,1.03 -0.07,1.55 -0.02,0.56 -0.07,1.1 0.13,1.63 0.12,0.31 0.4,0.4 0.65,0.34 0.49,0.66 1.19,1.18 1.94,1.51 1.39,0.62 2.94,0.8 4.46,0.93 -0.09,0.23 -0.14,0.48 -0.17,0.7 -0.05,0.28 -0.06,0.57 -0.08,0.86 -0.47,0.42 -0.8,0.97 -1,1.6 -0.11,0.06 -0.21,0.15 -0.25,0.29 -0.51,1.49 -0.58,3.13 -0.45,4.69 0.06,0.79 0.18,1.57 0.34,2.35 0.08,0.37 0.16,0.73 0.27,1.09 0.06,0.21 0.12,0.45 0.23,0.64 0.11,0.19 0.28,0.3 0.44,0.45 0.04,0.04 0.09,0.05 0.14,0.07 1.83,2.01 4.2,3.39 6.45,4.56 2.64,1.38 5.49,2.18 8.32,2.83 6.28,1.45 12.68,2.39 19.08,2.81 6.53,0.42 13.09,0.29 19.6,-0.53 6.44,-0.81 12.88,-2.23 19.07,-4.56 2.69,-1.01 5.5,-2.31 7.48,-4.8 0.35,-0.44 0.65,-0.96 0.91,-1.5 0.19,-0.24 0.3,-0.49 0.37,-0.85 0.08,-0.4 0.14,-0.8 0.19,-1.21 0.11,-0.82 0.16,-1.65 0.15,-2.48 -0.01,-0.72 -0.08,-1.44 -0.19,-2.14 0,-0.02 0.01,-0.05 0.01,-0.07 0,0 0,0 0,0 0,0 0,0 0,-0.01 -0.05,-0.73 -0.09,-1.46 -0.11,-2.19 -0.32,-1.31 -1.04,-2.48 -1.93,-3.5 -0.02,-0.17 -0.02,-0.33 -0.05,-0.5 -0.04,-0.22 -0.09,-0.47 -0.19,-0.7 1.62,-0.14 3.28,-0.31 4.76,-0.93 0.8,-0.34 1.55,-0.86 2.07,-1.51 0.27,0.07 0.56,-0.03 0.69,-0.34 0.22,-0.53 0.16,-1.07 0.14,-1.63 0.05,-0.5 0.03,-1.01 0,-1.53 z m -7.89,-5.41 c 0.92,0.13 1.83,0.3 2.73,0.53 0.86,0.22 1.73,0.48 2.55,0.82 0.47,0.19 1.25,0.53 1.26,1.1 0.01,0.5 -0.6,0.82 -1.01,1.02 -0.64,0.3 -1.38,0.46 -2.07,0.64 -1.59,0.4 -3.21,0.69 -4.84,0.85 -3.27,0.32 -6.59,0.2 -9.81,-0.41 -1.47,-0.28 -3.09,-0.57 -4.45,-1.17 -0.11,-0.05 -0.22,-0.1 -0.33,-0.17 0,-0.02 0.01,-0.04 0.01,-0.06 0.01,-0.06 0.01,-0.13 0.03,-0.19 0.03,-0.13 0.07,-0.26 0.12,-0.39 0.11,-0.25 0.26,-0.46 0.45,-0.65 0.09,-0.09 -0.04,-0.22 -0.14,-0.14 -0.22,0.19 -0.39,0.44 -0.51,0.7 -0.06,0.13 -0.11,0.27 -0.14,0.41 -0.01,0.05 -0.02,0.11 -0.03,0.17 -0.23,-0.19 -0.39,-0.43 -0.27,-0.74 0.18,-0.47 0.83,-0.79 1.28,-0.99 1.45,-0.64 3.18,-0.96 4.75,-1.2 0.45,-0.07 0.9,-0.1 1.35,-0.14 l -0.02,1.18 c -0.55,-0.1 -1.14,0.22 -1.31,0.76 -0.08,0.26 -0.06,0.55 0.05,0.8 0.1,0.23 0.31,0.47 0.57,0.53 0.08,0.02 0.14,-0.08 0.08,-0.14 -0.08,-0.07 -0.16,-0.14 -0.22,-0.23 -0.05,-0.08 -0.11,-0.16 -0.15,-0.25 -0.08,-0.19 -0.11,-0.41 -0.05,-0.61 0.12,-0.4 0.56,-0.68 0.97,-0.61 0.02,0 0.04,-0.01 0.05,-0.01 l -0.01,0.42 c 0,0 0,0 -0.01,0 -0.27,-0.08 -0.54,0.18 -0.46,0.43 0.08,0.25 0.11,0.46 0.3,0.66 0.15,0.17 0.32,0.32 0.51,0.45 0.39,0.26 0.85,0.44 1.3,0.6 0.88,0.3 1.86,0.39 2.79,0.29 0.96,-0.11 1.91,-0.4 2.69,-0.94 0.44,-0.3 0.83,-0.69 0.92,-1.21 0.07,-0.38 -0.04,-0.79 -0.36,-0.99 -0.01,-0.23 -0.03,-0.45 -0.04,-0.67 -0.01,-0.2 -0.02,-0.4 -0.03,-0.6 0.51,0.04 1.01,0.08 1.5,0.15 z m -10.96,11.42 c -0.07,0.29 -0.1,0.58 -0.11,0.89 -0.19,-0.34 -0.42,-0.66 -0.73,-0.91 -0.13,-0.11 -0.32,0.08 -0.19,0.19 0.39,0.32 0.69,0.74 0.86,1.21 0.02,0.06 0.03,0.13 0.05,0.2 0,0.12 0,0.23 0,0.34 -0.01,0.36 -0.02,0.72 -0.02,1.08 0,0.38 -0.04,0.78 0.04,1.16 0.03,0.16 0.14,0.27 0.26,0.34 -0.03,0.03 -0.06,0.07 -0.05,0.12 0.08,0.57 -0.05,1.15 -0.33,1.64 -0.01,0.02 -0.03,0.04 -0.05,0.06 -0.59,0.01 -1.18,0.05 -1.76,0.13 -0.17,0.02 -0.17,0.3 0,0.27 0.51,-0.07 1.02,-0.09 1.53,-0.11 -0.27,0.32 -0.57,0.59 -0.94,0.8 -0.1,0.06 -0.04,0.23 0.08,0.2 0.54,-0.16 0.96,-0.54 1.26,-1 0.49,0 0.98,0.03 1.46,0.08 -0.05,0.05 -0.08,0.1 -0.13,0.15 -0.09,0.08 -0.17,0.15 -0.27,0.22 -0.1,0.07 -0.22,0.12 -0.32,0.21 -0.06,0.06 -0.02,0.18 0.07,0.18 0.25,-0.02 0.52,-0.21 0.71,-0.36 0.12,-0.1 0.2,-0.23 0.3,-0.35 0.51,0.06 1.02,0.13 1.52,0.23 0.01,0 0.02,0.01 0.03,0.01 -0.03,0.04 -0.06,0.07 -0.08,0.11 -0.06,0.08 -0.12,0.15 -0.15,0.24 -0.03,0.11 0.09,0.2 0.19,0.14 0.08,-0.05 0.13,-0.11 0.18,-0.18 0.06,-0.07 0.12,-0.14 0.17,-0.21 0.01,-0.01 0.02,-0.02 0.02,-0.03 0.17,0.04 0.35,0.07 0.51,0.12 0.29,0.1 0.55,0.25 0.85,0.32 0.1,0.02 0.17,-0.12 0.07,-0.18 -0.25,-0.13 -0.53,-0.18 -0.8,-0.26 -0.17,-0.05 -0.35,-0.1 -0.52,-0.16 0.06,-0.08 0.13,-0.15 0.19,-0.23 0.06,-0.07 0.12,-0.14 0.17,-0.22 0.59,0.02 1.18,0 1.73,-0.01 0.28,0 0.57,0 0.87,-0.01 -0.05,0.05 -0.11,0.09 -0.16,0.14 -0.09,0.08 -0.18,0.16 -0.27,0.24 -0.05,0.04 -0.1,0.08 -0.15,0.13 -0.05,0.04 -0.09,0.1 -0.13,0.15 -0.05,0.06 -0.06,0.13 -0.01,0.19 0.04,0.06 0.13,0.08 0.19,0.04 0.06,-0.03 0.12,-0.07 0.17,-0.11 0.05,-0.04 0.1,-0.08 0.15,-0.12 0.1,-0.08 0.2,-0.17 0.3,-0.25 0.17,-0.14 0.34,-0.28 0.51,-0.43 0.85,-0.03 1.71,-0.13 2.42,-0.45 0.74,-0.33 1.48,-1.06 1.55,-1.85 0.1,-0.28 0.16,-0.57 0.2,-0.84 0.06,-0.37 0.08,-0.73 0.09,-1.1 0.19,0.56 0.33,1.15 0.41,1.75 -0.1,0.11 -0.16,0.26 -0.12,0.45 0.05,0.26 0.08,0.52 0.12,0.78 0,0.03 0,0.05 0.01,0.08 -0.01,0.1 0,0.21 -0.02,0.31 0.19,1.69 -0.7,3.27 -1.8,4.35 -1.36,1.33 -3.15,2.05 -4.82,2.74 -3.59,1.48 -7.28,2.62 -11.03,3.47 -7.49,1.7 -15.15,2.22 -22.77,2.12 -3.85,-0.05 -7.7,-0.26 -11.54,-0.56 -3.86,-0.3 -7.72,-0.72 -11.53,-1.51 -3.76,-0.78 -7.48,-1.91 -11.01,-3.55 -2.47,-1.15 -5.72,-3.28 -4.95,-6.77 0.03,0.14 0.07,0.26 0.11,0.39 0.07,0.8 0.76,1.52 1.45,1.85 1.06,0.51 2.49,0.46 3.64,0.48 0.52,0.01 1.08,0.02 1.64,0.01 0,0 0,0.01 0,0.01 0.09,0.22 0.17,0.45 0.28,0.66 0.06,0.12 0.24,0.04 0.21,-0.09 -0.05,-0.2 -0.12,-0.4 -0.2,-0.59 0.56,-0.03 1.11,-0.1 1.61,-0.27 0.25,0.45 0.56,0.86 0.93,1.23 0.18,0.18 0.38,0.35 0.59,0.51 0.2,0.15 0.43,0.3 0.67,0.38 0.08,0.03 0.15,-0.09 0.08,-0.14 -0.19,-0.16 -0.4,-0.29 -0.6,-0.44 -0.2,-0.15 -0.39,-0.32 -0.57,-0.49 -0.13,-0.13 -0.25,-0.27 -0.37,-0.41 0.07,0.01 0.14,-0.04 0.1,-0.11 -0.03,-0.06 -0.07,-0.12 -0.11,-0.17 -0.04,-0.05 -0.08,-0.11 -0.12,-0.16 -0.08,-0.11 -0.16,-0.21 -0.24,-0.32 0.39,-0.17 0.74,-0.41 0.96,-0.79 0.1,-0.18 0.21,-0.42 0.25,-0.66 0.14,-0.03 0.26,-0.1 0.34,-0.22 0,0 0,0.01 0,0.01 l 0.41,0.74 c 0.07,0.12 0.13,0.24 0.2,0.37 0.03,0.06 0.07,0.12 0.1,0.17 0.04,0.06 0.09,0.12 0.14,0.18 0.05,0.06 0.15,0 0.13,-0.07 -0.05,-0.14 -0.1,-0.26 -0.17,-0.39 -0.07,-0.12 -0.14,-0.24 -0.2,-0.37 -0.14,-0.25 -0.28,-0.5 -0.42,-0.74 -0.03,-0.05 -0.08,-0.06 -0.13,-0.04 0.01,-0.02 0.02,-0.04 0.02,-0.06 0.08,-0.37 0.04,-0.78 0.03,-1.16 0,-0.36 -0.01,-0.72 -0.02,-1.08 0,-0.16 0,-0.33 0,-0.5 0.38,0.02 0.76,0.03 1.14,0.05 -0.01,0.05 -0.04,0.09 -0.05,0.14 -0.06,0.23 -0.14,0.49 -0.13,0.73 0,0.04 0.06,0.05 0.07,0.01 0.06,-0.22 0.09,-0.45 0.15,-0.67 0.02,-0.07 0.05,-0.14 0.08,-0.21 0.87,0.04 1.74,0.08 2.6,0.12 0.75,0.03 1.49,0.06 2.24,0.08 0.08,0 0.16,0.01 0.24,0.01 -0.07,0.16 -0.15,0.31 -0.19,0.47 -0.02,0.08 0.09,0.12 0.13,0.06 0.12,-0.17 0.24,-0.34 0.35,-0.51 0.52,0.03 1.04,0.06 1.57,0.06 -0.01,0.06 -0.01,0.12 -0.02,0.17 -0.08,0.12 -0.15,0.26 -0.22,0.38 -0.04,0.07 0.06,0.12 0.1,0.06 0.04,-0.05 0.07,-0.1 0.11,-0.14 0,0.49 0.12,0.97 0.32,1.43 -0.37,0.13 -0.75,0.28 -1.11,0.4 -0.08,0.03 -0.17,0.05 -0.25,0.08 0,-0.06 -0.03,-0.12 -0.09,-0.12 -0.06,0 -0.12,0.01 -0.17,0.02 -0.14,-0.49 -0.17,-1.01 -0.04,-1.5 0.04,-0.17 -0.22,-0.24 -0.27,-0.07 -0.03,0.09 -0.04,0.18 -0.05,0.28 -0.82,-0.07 -1.65,-0.03 -2.48,-0.03 -0.5,0 -1,0 -1.5,0 -0.02,-0.28 -0.01,-0.56 0.05,-0.83 0.04,-0.17 -0.22,-0.24 -0.26,-0.07 -0.07,0.3 -0.09,0.6 -0.07,0.9 -0.25,0 -0.49,0 -0.74,0 -0.15,0 -0.15,0.24 0,0.24 0.26,0 0.51,0 0.77,0 0.04,0.27 0.11,0.54 0.22,0.8 0.21,0.49 0.57,1 1.03,1.3 -0.5,0.09 -1,0.16 -1.5,0.21 -0.28,-0.35 -0.54,-0.7 -0.76,-1.09 -0.27,-0.48 -0.47,-1 -0.6,-1.54 -0.04,-0.18 -0.31,-0.1 -0.27,0.08 0.13,0.56 0.34,1.11 0.62,1.61 0.2,0.37 0.46,0.7 0.74,1.01 -0.07,0.07 -0.05,0.21 0.07,0.2 0.04,0 0.07,-0.01 0.11,-0.02 0.05,0.05 0.09,0.11 0.15,0.15 0.1,0.08 0.22,-0.04 0.14,-0.14 -0.01,-0.02 -0.02,-0.03 -0.04,-0.05 0.88,-0.1 1.76,-0.26 2.63,-0.45 0.18,0.25 0.35,0.51 0.54,0.76 0.05,0.06 0.15,0.01 0.1,-0.06 -0.16,-0.25 -0.33,-0.49 -0.5,-0.73 0.21,-0.05 0.43,-0.08 0.64,-0.14 0.37,-0.09 0.73,-0.21 1.1,-0.31 0.02,0.04 0.02,0.07 0.04,0.11 0.31,0.67 0.83,1.19 1.5,1.49 -0.05,0.02 -0.1,0.04 -0.15,0.06 -0.36,0.13 -0.73,0.27 -1.09,0.4 -0.76,0.28 -1.51,0.55 -2.27,0.83 -0.14,0.05 -0.08,0.27 0.06,0.22 0.77,-0.27 1.55,-0.54 2.32,-0.81 0.38,-0.13 0.76,-0.26 1.14,-0.4 0.37,-0.13 0.77,-0.24 1.11,-0.44 0.1,-0.06 0.03,-0.2 -0.08,-0.18 -0.28,0.04 -0.55,0.14 -0.82,0.24 0,-0.04 -0.01,-0.08 -0.04,-0.1 0.27,-0.2 0.56,-0.37 0.88,-0.49 0.15,-0.06 0.31,-0.1 0.46,-0.14 0.51,0.44 1.08,0.81 1.7,1.09 0.06,0.03 0.12,0.05 0.19,0.08 -0.19,0 -0.4,0.05 -0.56,0.08 -0.3,0.05 -0.59,0.13 -0.88,0.22 -0.57,0.19 -1.11,0.45 -1.61,0.78 -0.16,0.11 -0.01,0.37 0.15,0.26 0.49,-0.32 1.01,-0.57 1.57,-0.75 0.27,-0.09 0.55,-0.15 0.82,-0.2 0.26,-0.05 0.59,-0.03 0.83,-0.15 0.04,-0.02 0.05,-0.06 0.05,-0.09 0.56,0.23 1.13,0.44 1.71,0.54 0.07,0.01 0.12,-0.08 0.05,-0.12 -0.65,-0.35 -1.37,-0.56 -2.04,-0.88 -0.55,-0.26 -1.08,-0.58 -1.56,-0.96 0,0 0.01,0 0,0 -0.01,0.01 0.04,-0.01 0.05,-0.01 0.05,-0.02 0.08,-0.03 0.12,-0.07 0.04,-0.04 0.03,-0.11 -0.01,-0.14 0.1,0.08 0.21,0.15 0.32,0.23 -0.01,0.03 0,0.07 0.01,0.1 0.04,0.06 0.11,0.07 0.17,0.04 0.01,0 0.01,-0.01 0.02,-0.01 0.74,0.47 1.58,0.8 2.42,1.05 0.92,0.28 1.85,0.53 2.79,0.75 -0.19,0.08 -0.38,0.16 -0.57,0.24 -0.58,0.25 -1.15,0.5 -1.73,0.75 -0.17,0.07 -0.05,0.37 0.13,0.3 0.58,-0.24 1.17,-0.47 1.75,-0.71 0.29,-0.12 0.58,-0.24 0.87,-0.36 0.06,-0.03 0.13,-0.05 0.19,-0.08 0.91,0.21 1.82,0.4 2.73,0.56 0,0.05 0.02,0.11 0.09,0.13 0.41,0.16 0.81,0.33 1.22,0.49 0.4,0.16 0.82,0.32 1.23,0.44 0.1,0.03 0.17,-0.13 0.07,-0.18 -0.39,-0.2 -0.8,-0.37 -1.21,-0.53 -0.15,-0.06 -0.3,-0.12 -0.44,-0.18 0.88,0.14 1.77,0.27 2.66,0.38 3.32,0.4 6.66,0.49 9.99,0.28 2.97,-0.19 6.02,-0.53 8.88,-1.4 0.58,-0.18 1.16,-0.39 1.73,-0.62 0.22,0.09 0.44,0.18 0.66,0.27 0.23,0.09 0.45,0.19 0.68,0.28 0.22,0.09 0.48,0.21 0.71,0.25 0.13,0.02 0.2,-0.13 0.09,-0.21 -0.19,-0.14 -0.45,-0.23 -0.67,-0.32 -0.23,-0.1 -0.47,-0.19 -0.7,-0.29 -0.12,-0.05 -0.24,-0.1 -0.36,-0.15 0.41,-0.18 0.81,-0.39 1.21,-0.61 0.51,0.08 1.03,0.17 1.54,0.25 0.26,0.04 0.52,0.09 0.78,0.13 0.26,0.03 0.52,0.09 0.78,0.05 0.09,-0.01 0.1,-0.15 0.02,-0.19 -0.22,-0.12 -0.49,-0.15 -0.73,-0.19 -0.26,-0.05 -0.53,-0.08 -0.79,-0.12 -0.39,-0.06 -0.78,-0.12 -1.17,-0.18 0.08,-0.05 0.16,-0.09 0.24,-0.14 0.63,-0.4 1.25,-0.86 1.76,-1.4 0.41,-0.43 0.7,-0.88 0.93,-1.4 0.03,-0.06 0.08,-0.11 0.11,-0.17 0.17,-0.33 0.31,-0.69 0.39,-1.05 0.04,-0.2 0.07,-0.39 0.05,-0.6 -0.01,-0.1 -0.01,-0.21 -0.04,-0.31 0.17,-0.02 0.34,-0.04 0.51,-0.05 0,0.02 -0.01,0.05 0.01,0.07 0.19,0.35 0.27,0.74 0.29,1.13 -0.21,-0.01 -0.43,-0.01 -0.64,-0.02 -0.18,-0.01 -0.18,0.26 0,0.27 0.22,0.01 0.44,0.03 0.66,0.04 -0.01,0.24 -0.06,0.48 -0.13,0.71 -0.03,0.09 -0.07,0.17 -0.11,0.25 -0.08,0 -0.17,-0.01 -0.25,-0.01 -0.2,-0.01 -0.2,0.3 0,0.31 0.04,0 0.08,0.01 0.12,0.01 -0.02,0.04 -0.03,0.07 -0.05,0.11 -0.05,0.12 0.08,0.25 0.19,0.15 0.07,-0.07 0.12,-0.15 0.17,-0.23 0.35,0.02 0.69,0.04 1.04,0.07 -0.01,0.01 -0.01,0.03 -0.02,0.04 -0.09,0.22 -0.19,0.43 -0.28,0.65 -0.08,0.18 -0.15,0.37 -0.22,0.56 -0.02,0 -0.04,0.01 -0.06,0.02 -0.32,0.08 -0.64,0.13 -0.97,0.16 -0.66,0.06 -1.33,0.02 -1.98,-0.11 -0.22,-0.04 -0.32,0.29 -0.09,0.34 0.69,0.15 1.4,0.2 2.11,0.15 0.35,-0.03 0.7,-0.08 1.04,-0.15 0.31,-0.07 0.67,-0.17 0.92,-0.38 0.07,-0.07 0.01,-0.19 -0.08,-0.19 -0.21,0 -0.42,0.05 -0.62,0.1 0.06,-0.13 0.13,-0.26 0.19,-0.39 0.1,-0.21 0.19,-0.42 0.28,-0.64 0.02,-0.05 0.04,-0.09 0.06,-0.14 0.01,0 0.02,0 0.03,0 0.29,0.02 0.58,0.04 0.87,0.06 0.15,0.01 0.29,0.02 0.44,0.03 0.15,0.01 0.28,0.03 0.42,-0.04 0.12,-0.06 0.1,-0.23 0,-0.3 -0.13,-0.08 -0.27,-0.07 -0.42,-0.07 -0.13,0 -0.27,-0.01 -0.4,-0.01 l -0.77,-0.02 c 0.12,-0.27 0.23,-0.54 0.35,-0.81 0.02,-0.04 0.01,-0.07 0,-0.11 0.3,0.02 0.61,0.04 0.91,0.05 0.28,0.02 0.56,0.03 0.83,0.04 -0.03,0.46 -0.17,0.9 -0.41,1.3 -0.17,0.29 -0.39,0.54 -0.64,0.76 -0.27,0.24 -0.57,0.38 -0.89,0.54 -0.1,0.05 -0.03,0.2 0.07,0.18 0.35,-0.06 0.69,-0.29 0.96,-0.51 0.29,-0.24 0.53,-0.55 0.71,-0.88 0.23,-0.43 0.36,-0.91 0.38,-1.39 0.2,0.01 0.41,0.02 0.61,0.03 0.28,0.01 0.56,0.03 0.83,0.04 0.11,0 0.21,-0.01 0.31,-0.01 -0.19,0.85 -0.64,1.64 -1.29,2.22 -0.09,0.08 0.03,0.24 0.13,0.17 0.66,-0.49 1.11,-1.15 1.36,-1.94 0.05,-0.15 0.08,-0.3 0.11,-0.46 0.09,-0.01 0.18,0 0.27,-0.01 0.14,-0.01 0.2,-0.24 0.04,-0.27 -0.09,-0.02 -0.17,-0.02 -0.26,-0.04 0.05,-0.5 0.02,-1.01 -0.12,-1.5 0.24,0.02 0.49,0.04 0.71,-0.01 0.16,-0.04 0.13,-0.24 0,-0.3 -0.23,-0.09 -0.51,-0.1 -0.77,-0.11 0,-0.01 0,-0.01 0,-0.02 -0.05,-0.36 -0.17,-0.7 -0.33,-1.03 -0.32,-0.65 -0.84,-1.19 -1.49,-1.51 -0.15,-0.07 -0.28,0.15 -0.13,0.23 0.19,0.1 0.33,0.24 0.49,0.37 -0.33,0.01 -0.65,0.04 -0.97,0.06 -0.36,0.02 -0.71,0.05 -1.07,0.07 -0.22,-0.26 -0.47,-0.5 -0.73,-0.72 0.29,-0.08 0.57,-0.16 0.86,-0.24 0.19,0.2 0.38,0.4 0.57,0.58 0.09,0.08 0.23,-0.02 0.17,-0.13 -0.11,-0.2 -0.26,-0.37 -0.42,-0.55 0,0 0,0 0.01,0 0.24,-0.07 0.51,-0.13 0.76,-0.21 0.36,0.13 0.72,0.26 1.08,0.37 0.81,0.25 1.59,0.42 2.37,0.56 z m 3.27,0.35 c -0.01,0.28 -0.03,0.55 -0.04,0.83 0,0.03 0,0.05 0,0.08 -0.23,-0.01 -0.46,-0.03 -0.67,-0.08 0.01,-0.29 0.05,-0.58 0.1,-0.86 0.2,0.01 0.41,0.02 0.61,0.03 z m 1.52,0.02 c 0.01,0.26 0.03,0.51 0.04,0.77 0,0 0,0 0,0 -0.35,0.04 -0.79,0.09 -1.24,0.11 0,-0.01 0,-0.02 0,-0.03 0.01,-0.28 0.02,-0.57 0.03,-0.85 0.39,0 0.78,0 1.17,0 z m 4.36,3.8 c 0.01,0.11 0.01,0.23 0.07,0.33 0.06,0.1 0.19,0.1 0.25,0 0.06,-0.1 0.06,-0.21 0.07,-0.33 0.01,-0.1 0.01,-0.2 0.01,-0.31 0,-0.13 0,-0.25 -0.01,-0.38 0.25,-0.16 0.48,-0.34 0.71,-0.54 -0.01,0.03 0,0.07 -0.01,0.1 -0.08,0.4 -0.26,0.8 -0.27,1.2 0,0 0,0.01 0,0.01 -0.05,0.06 -0.09,0.12 -0.16,0.17 -0.32,0.23 -0.78,0.32 -1.16,0.4 -0.34,0.07 -0.7,0.1 -1.05,0.13 0.02,-0.13 0.01,-0.28 0.02,-0.39 0,-0.07 0.01,-0.14 0.01,-0.21 0.02,0 0.03,-0.01 0.05,-0.01 0.52,-0.14 1.01,-0.34 1.47,-0.6 0,0.03 0,0.06 0,0.1 -0.01,0.11 -0.01,0.22 0,0.33 z m -5.74,2.63 c -0.01,0 -0.02,0 -0.02,-0.01 -0.48,-0.14 -0.95,-0.24 -1.44,-0.32 0,0 0.01,-0.01 0.01,-0.01 0.05,-0.09 0.08,-0.2 0.12,-0.29 0.51,0.16 1.06,0.23 1.62,0.26 -0.01,0.01 -0.01,0.01 -0.02,0.02 -0.09,0.12 -0.18,0.23 -0.27,0.35 z m -1.75,-5.74 c 0.16,0.13 0.36,0.22 0.56,0.28 0,0.11 0,0.21 0,0.32 -0.19,-0.05 -0.37,-0.11 -0.56,-0.17 0,-0.13 0,-0.28 0,-0.43 z m 5.56,1.02 c 0.01,0.06 0.02,0.12 0.03,0.17 -0.16,0.01 -0.32,0.02 -0.48,0.02 0,0 0,0 0,0 0,-0.29 0,-0.58 0,-0.87 0,-0.07 0,-0.13 0,-0.2 0.03,0 0.07,-0.01 0.1,-0.01 0.11,-0.02 0.21,-0.03 0.32,-0.05 -0.02,0.32 -0.02,0.63 0.03,0.94 z m 0.01,1.8 c 0,0.04 -0.01,0.08 -0.01,0.12 -0.37,0.08 -0.75,0.15 -1.13,0.17 -0.26,0.01 -0.51,0.01 -0.76,-0.01 0.04,-0.05 0.03,-0.13 -0.05,-0.12 -0.17,0.02 -0.34,0.05 -0.51,0.08 -0.05,0 -0.09,-0.01 -0.14,-0.01 -0.05,0 -0.08,0.02 -0.1,0.05 -0.16,0.03 -0.32,0.07 -0.48,0.1 -0.03,0.01 -0.07,0.01 -0.1,0.02 -0.04,-0.28 -0.03,-0.57 0.01,-0.85 0.87,0.09 1.79,0.14 2.63,-0.05 0.09,-0.02 0.07,-0.12 0,-0.16 0.03,-0.01 0.06,-0.01 0.07,-0.04 0.09,-0.17 0.09,-0.38 0.09,-0.58 0.19,0 0.37,-0.02 0.55,-0.03 0,0 0,0 0,0.01 0,0.43 -0.03,0.86 -0.07,1.3 z m -4.35,0.83 c 0.25,-0.05 0.49,-0.1 0.74,-0.15 0.03,0.15 0.08,0.28 0.12,0.43 -0.32,-0.02 -0.63,-0.05 -0.93,-0.11 -0.36,-0.07 -0.63,-0.21 -0.92,-0.39 -0.01,-0.09 -0.03,-0.19 -0.03,-0.28 -0.02,-0.22 -0.05,-0.44 -0.07,-0.66 -0.02,-0.16 -0.02,-0.32 -0.04,-0.48 0.23,0.05 0.47,0.1 0.71,0.14 0.06,0.23 0.14,0.46 0.27,0.64 0.1,0.13 0.29,0.05 0.26,-0.11 -0.02,-0.15 -0.07,-0.31 -0.12,-0.46 0.11,0.02 0.23,0.04 0.34,0.06 0.05,0.1 0.18,0.14 0.24,0.04 0.03,0 0.07,0.01 0.1,0.02 0.02,0 0.05,0 0.08,0.01 -0.05,0.32 -0.06,0.64 -0.02,0.96 -0.26,0.05 -0.52,0.1 -0.78,0.15 -0.14,0.01 -0.09,0.22 0.05,0.19 z m -1.68,-1.71 c 0,-0.03 0,-0.06 0,-0.08 0.06,0.02 0.11,0.03 0.17,0.05 0.02,0.21 0.02,0.42 0.05,0.63 0.02,0.21 0.05,0.41 0.09,0.61 0,0.02 0.01,0.04 0.01,0.06 -0.08,-0.05 -0.16,-0.09 -0.24,-0.16 -0.04,-0.04 -0.07,-0.07 -0.1,-0.1 0.04,-0.34 0.02,-0.68 0.02,-1.01 z m 1.54,-0.12 c -0.07,-0.27 -0.12,-0.55 -0.15,-0.83 0.2,0.05 0.4,0.1 0.6,0.15 0,0.01 0,0.01 0,0.02 -0.01,0.27 -0.02,0.54 -0.01,0.82 -0.14,-0.02 -0.27,-0.04 -0.41,-0.06 -0.01,-0.04 -0.03,-0.07 -0.03,-0.1 z m 3.75,0.3 c 0,0.01 0.01,0 0.02,0.01 -0.43,-0.03 -0.85,-0.02 -1.28,-0.02 0.03,-0.19 0.03,-0.38 0.02,-0.57 0,-0.02 0,-0.05 0,-0.07 0.38,0.04 0.77,0.06 1.16,0.07 -0.02,0.2 -0.01,0.41 0.08,0.58 z m -1.57,-0.58 c 0.01,0.19 0.03,0.38 0.08,0.57 -0.33,-0.01 -0.67,-0.03 -1,-0.06 -0.03,-0.16 -0.28,-0.22 -0.33,-0.03 0,0 0,0 0,0.01 -0.02,0 -0.05,0 -0.07,0 -0.03,0 -0.06,-0.01 -0.09,-0.01 0.03,-0.26 0.04,-0.52 0.05,-0.78 0,-0.01 0,-0.02 0,-0.03 0.41,0.08 0.82,0.18 1.25,0.23 0.04,0 0.07,0.01 0.11,0.01 0,0.02 0,0.06 0,0.09 z m 1.48,-1.19 c 0,0.28 0,0.57 0,0.85 -0.39,0 -0.78,-0.02 -1.18,-0.05 -0.01,-0.12 -0.01,-0.24 -0.02,-0.36 -0.01,-0.15 -0.02,-0.31 -0.02,-0.46 0.41,-0.04 0.82,-0.09 1.22,-0.14 0,0.05 0,0.11 0,0.16 z m -1.52,0.44 c 0.01,0.11 0.01,0.23 0.02,0.34 -0.02,0 -0.03,0 -0.05,0 -0.43,-0.04 -0.86,-0.13 -1.28,-0.22 0.01,-0.15 0.01,-0.3 0.02,-0.45 0.31,0 0.61,-0.03 0.87,-0.05 0.13,-0.01 0.27,-0.03 0.4,-0.05 0,0.15 0.01,0.29 0.02,0.43 z m -1.68,0.07 c -0.21,-0.05 -0.42,-0.1 -0.63,-0.15 -0.01,-0.11 -0.01,-0.21 -0.01,-0.32 0.21,0.04 0.43,0.06 0.65,0.07 0,0.13 0,0.27 -0.01,0.4 z m -0.97,0.01 c 0,0.04 0,0.08 0,0.11 0.03,0.29 0.08,0.58 0.15,0.87 -0.22,-0.04 -0.43,-0.08 -0.65,-0.12 -0.01,-0.19 -0.04,-0.38 -0.05,-0.58 -0.01,-0.15 0,-0.31 -0.01,-0.46 0.19,0.06 0.37,0.12 0.56,0.18 z m -0.88,0.77 c -0.05,-0.01 -0.11,-0.02 -0.16,-0.04 -0.01,-0.25 -0.01,-0.49 -0.02,-0.74 0,-0.11 0,-0.22 0,-0.34 0.05,0.02 0.1,0.03 0.15,0.05 0,0.21 -0.01,0.42 0,0.63 0,0.15 0.02,0.3 0.03,0.44 z m -0.73,2.53 c 0.26,0.42 0.7,0.67 1.18,0.85 -0.04,0.07 -0.05,0.15 -0.1,0.21 -0.03,0.05 -0.07,0.08 -0.11,0.12 -0.51,-0.06 -1.02,-0.08 -1.53,-0.08 0.27,-0.54 0.38,-1.16 0.3,-1.73 0.05,0.24 0.16,0.46 0.26,0.63 z m 3.51,-0.22 c -0.06,-0.17 -0.12,-0.34 -0.15,-0.51 0,0 0,-0.01 0,-0.01 0.04,-0.01 0.08,-0.02 0.11,-0.02 0.18,-0.04 0.36,-0.07 0.54,-0.1 0.47,0.16 1.01,0.2 1.5,0.19 0.36,0 0.71,-0.05 1.06,-0.11 0,0.04 -0.01,0.08 -0.01,0.12 -0.01,0.13 -0.03,0.28 -0.01,0.42 -0.48,0.02 -0.97,0.01 -1.43,0.02 -0.53,0 -1.07,0.01 -1.61,0 z m 3.52,-1.1 c 0,-0.01 0,-0.02 0,-0.04 0.01,-0.18 0.02,-0.36 0.03,-0.53 0.04,0.06 0.08,0.12 0.13,0.18 0.06,0.06 0.15,0 0.13,-0.08 -0.06,-0.26 -0.15,-0.51 -0.23,-0.76 0,-0.04 0,-0.09 0.01,-0.13 0.34,-0.04 0.68,-0.1 1,-0.18 0.1,-0.03 0.08,-0.19 -0.02,-0.18 -0.37,0.01 -0.74,0.03 -1.11,0.06 -0.02,-0.07 -0.04,-0.13 -0.05,-0.19 -0.05,-0.31 -0.05,-0.63 -0.03,-0.94 0.2,-0.03 0.39,-0.06 0.59,-0.09 0.29,-0.05 0.61,-0.1 0.9,-0.19 0.01,0.09 0.03,0.18 0.04,0.28 0.03,0.17 0.05,0.33 0.08,0.5 0.01,0.08 0.03,0.17 0.04,0.25 0,0.02 0.01,0.03 0.01,0.05 -0.01,0.43 -0.01,0.86 -0.02,1.29 0,0.04 0,0.08 0,0.12 -0.48,0.23 -0.98,0.44 -1.5,0.58 z m 1.25,-3.74 c 0.02,0.14 0.04,0.27 0.06,0.41 -0.27,0.02 -0.55,0.08 -0.8,0.12 -0.21,0.03 -0.41,0.06 -0.62,0.1 0.01,-0.07 0.01,-0.15 0.02,-0.22 0.04,-0.19 -0.26,-0.28 -0.3,-0.08 -0.02,0.12 -0.03,0.24 -0.04,0.35 -0.05,0.01 -0.1,0.02 -0.15,0.02 -0.1,0.02 -0.21,0.02 -0.31,0.04 0,-0.2 0,-0.39 0,-0.59 0.71,-0.04 1.43,-0.09 2.14,-0.15 z m -2.49,0.78 c -0.41,0.06 -0.83,0.11 -1.24,0.15 -0.01,-0.24 -0.03,-0.49 -0.04,-0.73 0.43,-0.01 0.86,-0.02 1.29,-0.04 -0.01,0.21 -0.01,0.41 -0.01,0.62 z m -4.19,0.12 c -0.21,-0.08 -0.4,-0.2 -0.55,-0.37 0,-0.16 0.02,-0.31 0.02,-0.47 0.21,0.02 0.43,0.05 0.64,0.06 -0.05,0.26 -0.09,0.52 -0.11,0.78 z m -0.89,-0.35 c -0.01,0.23 -0.01,0.45 -0.01,0.68 -0.05,-0.02 -0.1,-0.03 -0.15,-0.04 0,-0.4 -0.01,-0.8 -0.08,-1.19 0.01,0 0.02,0 0.02,0 0,0.02 -0.01,0.04 -0.01,0.06 0.06,0.19 0.14,0.35 0.23,0.49 z m 10.95,9.48 c -0.01,0.07 -0.02,0.15 -0.02,0.22 -0.01,-0.04 -0.03,-0.07 -0.06,-0.1 0.02,-0.05 0.05,-0.08 0.08,-0.12 z m -78.76,-7.13 c 0,-0.02 0,-0.04 0,-0.06 0.15,0.04 0.31,0.07 0.46,0.1 0.03,0.15 0.05,0.3 0.09,0.45 0.06,0.2 0.13,0.4 0.21,0.58 0.04,0.1 0.09,0.19 0.14,0.28 0.01,0.01 0.02,0.02 0.03,0.03 0.01,0.25 0.01,0.49 0.02,0.74 0.01,0.35 0.02,0.69 0.04,1.04 0.01,0.16 0.02,0.32 0.03,0.48 0,0.02 0,0.05 0,0.07 -0.21,-0.06 -0.4,-0.14 -0.56,-0.27 -0.06,-0.05 -0.1,-0.11 -0.15,-0.17 0,0 0,-0.01 0,-0.01 -0.01,-0.4 -0.18,-0.8 -0.26,-1.2 -0.07,-0.36 -0.1,-0.72 -0.11,-1.08 0,-0.03 0,-0.05 0,-0.08 0.05,-0.05 0.09,-0.12 0.14,-0.17 0.24,-0.2 0.14,-0.59 -0.08,-0.73 z m 0.68,-0.76 c 0,-0.09 -0.07,-0.13 -0.14,-0.14 0.66,0.07 1.32,0.12 1.99,0.17 -0.05,0.02 -0.08,0.06 -0.08,0.13 0.01,0.2 0.03,0.4 0.04,0.6 -0.59,-0.05 -1.17,-0.13 -1.75,-0.23 -0.03,-0.17 -0.05,-0.35 -0.06,-0.53 z m 10.49,-0.58 c 0.01,0.04 0.04,0.07 0.09,0.08 0.19,0.01 0.39,0.04 0.58,0.05 -0.3,0.36 -0.56,0.75 -0.75,1.17 -0.03,0.07 -0.05,0.14 -0.07,0.2 -0.42,-0.02 -0.83,-0.04 -1.25,-0.05 0,-0.37 -0.03,-0.75 -0.1,-1.1 0.5,-0.09 1,-0.21 1.5,-0.35 z m 0.68,-0.19 c 0.9,-0.3 1.84,-0.66 2.66,-1.16 -0.01,0.01 -0.02,0.02 -0.03,0.02 -0.35,0.32 -0.7,0.64 -1.03,0.98 -0.09,0.1 -0.2,0.21 -0.3,0.31 -0.52,-0.04 -1.03,-0.07 -1.55,-0.1 0.09,-0.01 0.17,-0.03 0.25,-0.05 z m -6.43,-11.37 v -0.11 c 0.14,-0.01 0.28,-0.01 0.41,-0.03 0.02,0 0.05,-0.01 0.07,-0.01 l -0.01,0.78 c -0.15,0.05 -0.31,0.08 -0.46,0.12 0,-0.26 0,-0.51 -0.01,-0.75 z m -1.27,-0.52 c -0.02,-0.2 -0.03,-0.39 -0.05,-0.59 0.33,0.06 0.67,0.09 1.01,0.08 0,0.22 0.01,0.44 0.01,0.66 -0.08,0 -0.16,0.02 -0.24,0.02 -0.24,0 -0.48,-0.03 -0.72,-0.06 -0.01,-0.03 -0.01,-0.07 -0.01,-0.11 z m -0.07,-0.91 c -0.01,-0.14 -0.02,-0.29 -0.03,-0.43 0.24,0.08 0.48,0.15 0.74,0.18 0.11,0.01 0.22,0.01 0.33,0.01 0,0.13 0,0.25 0,0.38 -0.35,0.01 -0.69,-0.02 -1.03,-0.08 -0.01,-0.02 -0.01,-0.04 -0.01,-0.06 z m 0.94,-1.13 c 0.02,0.01 0.05,0.02 0.07,0.03 0,0.17 0,0.34 0.01,0.51 -0.09,0 -0.18,0 -0.26,-0.01 -0.29,-0.03 -0.56,-0.12 -0.82,-0.22 -0.02,-0.26 -0.04,-0.51 -0.06,-0.77 0.35,0.15 0.71,0.31 1.06,0.46 z m 1.59,2.94 c -0.13,0.04 -0.25,0.07 -0.38,0.12 l -0.01,-0.73 c 0.15,-0.03 0.29,-0.09 0.42,-0.15 -0.01,0.26 -0.03,0.51 -0.03,0.76 z m -0.37,1.62 c 0,-0.37 0,-0.75 0,-1.12 0.13,-0.04 0.25,-0.09 0.37,-0.14 0,0.42 -0.01,0.84 -0.01,1.26 -0.12,-0.01 -0.24,0 -0.36,0 z m 0.43,-2.99 c 0,0.01 0,0.02 0,0.02 -0.01,0.11 -0.01,0.22 -0.01,0.33 -0.14,0.02 -0.29,0.05 -0.43,0.09 l -0.01,-0.61 c 0.07,-0.02 0.15,-0.01 0.22,-0.03 0.08,-0.02 0.17,-0.05 0.25,-0.08 0,0.08 -0.01,0.16 -0.01,0.23 -0.02,0 -0.03,0 -0.05,0 0.01,0.02 0.02,0.04 0.04,0.05 z m -1.28,-0.67 c 0.18,-0.01 0.35,-0.04 0.53,-0.07 v 0.35 c -0.17,0.03 -0.34,0.07 -0.52,0.09 z m 0.82,-0.13 c 0.15,-0.04 0.31,-0.09 0.46,-0.16 0.04,0.01 0.07,0.03 0.11,0.04 -0.03,0.11 -0.06,0.22 -0.07,0.34 -0.11,0.04 -0.21,0.08 -0.32,0.1 -0.06,0.02 -0.12,0.02 -0.18,0.03 z m -0.24,-0.31 c -0.19,0.05 -0.39,0.07 -0.59,0.08 l -0.01,-0.41 c 0.25,0.1 0.5,0.19 0.75,0.28 -0.05,0.01 -0.1,0.04 -0.15,0.05 z m -0.57,1.08 c 0.17,-0.01 0.34,-0.05 0.51,-0.08 l -0.01,0.65 c -0.02,0 -0.03,0.01 -0.05,0.01 -0.15,0.03 -0.29,0.03 -0.44,0.04 z m 0.49,2 c 0,0.34 0,0.69 0,1.03 -0.15,0 -0.29,0 -0.44,0.01 0,-0.17 0,-0.34 0,-0.5 0,-0.14 0,-0.28 -0.01,-0.43 0.15,-0.04 0.3,-0.07 0.45,-0.11 z m -0.5,1.92 c 0.03,-0.2 0.05,-0.41 0.05,-0.62 0.15,0 0.29,0 0.44,0 -0.01,0.2 -0.01,0.4 0,0.6 -0.01,0 -0.03,0.01 -0.04,0.01 -0.15,0.02 -0.3,0.02 -0.46,0.03 0,-0.02 0.01,-0.02 0.01,-0.02 z m 0.86,-0.63 c 0.11,0 0.23,0 0.35,0 0,0.17 0,0.33 0,0.5 -0.11,0.02 -0.23,0.03 -0.34,0.05 -0.01,-0.19 -0.01,-0.37 -0.01,-0.55 z m 1.57,-3.19 c 0,-0.05 0,-0.1 -0.01,-0.15 -0.02,-0.17 -0.03,-0.36 -0.06,-0.54 1.8,0.54 3.64,0.93 5.48,1.26 2.71,0.48 5.44,0.87 8.18,1.19 -0.42,0.46 -0.76,1.03 -0.99,1.55 -0.15,0.34 -0.26,0.68 -0.35,1.03 -0.01,0 -0.02,-0.02 -0.03,-0.02 -0.41,-0.09 -0.84,0.01 -1.25,0.09 -0.33,0.06 -0.65,0.14 -0.97,0.24 -0.47,0.15 -0.92,0.35 -1.35,0.58 0,-0.01 0,-0.02 0,-0.02 -0.05,-0.4 -0.08,-0.91 -0.27,-1.3 -0.02,-0.45 -0.18,-0.89 -0.47,-1.26 -0.5,-0.63 -1.23,-1.03 -1.96,-1.32 -0.96,-0.37 -1.97,-0.64 -2.97,-0.86 -0.98,-0.22 -1.98,-0.37 -2.98,-0.47 z m 34.85,3.28 c -0.16,0.02 -0.32,0.04 -0.49,0.07 -0.41,0.06 -0.82,0.12 -1.24,0.17 0,-0.02 -0.01,-0.03 -0.01,-0.05 -0.06,-0.28 -0.12,-0.56 -0.19,-0.83 0.6,-0.02 1.2,-0.04 1.8,-0.07 -0.04,0.02 -0.08,0.07 -0.06,0.13 0.07,0.19 0.13,0.39 0.19,0.58 z m -2.2,-0.64 0.19,0.91 c 0.04,0.19 0.08,0.38 0.12,0.57 0.04,0.18 0.06,0.42 0.18,0.57 0.06,0.07 0.17,0.03 0.19,-0.05 0.03,-0.1 0,-0.19 -0.02,-0.29 -0.02,-0.1 -0.04,-0.21 -0.06,-0.31 -0.02,-0.08 -0.04,-0.16 -0.05,-0.25 0.41,-0.05 0.81,-0.1 1.22,-0.14 0.18,-0.02 0.36,-0.04 0.54,-0.06 0.03,0.11 0.07,0.23 0.11,0.34 0.05,0.14 0.11,0.27 0.17,0.41 0.05,0.09 0.16,0.02 0.15,-0.06 -0.02,-0.14 -0.04,-0.27 -0.08,-0.41 -0.03,-0.1 -0.06,-0.2 -0.09,-0.3 0.18,-0.02 0.36,-0.03 0.52,-0.11 0.1,-0.05 0.08,-0.22 -0.03,-0.24 -0.19,-0.04 -0.39,0.01 -0.58,0.03 -0.06,-0.2 -0.13,-0.41 -0.19,-0.61 -0.01,-0.04 -0.03,-0.06 -0.06,-0.07 0.43,-0.02 0.87,-0.05 1.3,-0.08 0.28,0.36 0.57,0.71 0.85,1.07 0.17,0.21 0.33,0.41 0.5,0.62 0.08,0.1 0.16,0.2 0.24,0.3 0.07,0.09 0.15,0.18 0.24,0.23 -0.25,0.02 -0.51,0.05 -0.76,0.08 -0.64,0.07 -1.27,0.17 -1.91,0.24 -0.12,0.01 -0.13,0.21 0,0.2 0.65,-0.05 1.3,-0.06 1.94,-0.11 0.32,-0.02 0.64,-0.05 0.95,-0.08 0.29,-0.03 0.64,-0.02 0.91,-0.14 0.1,-0.05 0.07,-0.21 -0.03,-0.23 -0.28,-0.07 -0.63,0 -0.91,0.03 -0.01,0 -0.01,0 -0.02,0 0.02,-0.03 0.04,-0.07 0.03,-0.11 -0.02,-0.12 -0.13,-0.23 -0.2,-0.33 -0.08,-0.1 -0.16,-0.2 -0.24,-0.3 l -0.51,-0.64 c -0.23,-0.29 -0.46,-0.57 -0.69,-0.86 0.29,-0.02 0.57,-0.03 0.86,-0.05 0,0 0,0 0.01,0.01 0.4,0.15 0.75,0.38 1.07,0.66 -0.24,0.03 -0.48,0.06 -0.72,0.09 -0.17,0.02 -0.18,0.28 0,0.27 0.34,-0.02 0.67,-0.07 1.01,-0.1 0.05,0.05 0.11,0.09 0.16,0.14 0.2,0.23 0.37,0.49 0.51,0.76 0.14,0.28 0.24,0.58 0.36,0.87 0.03,0.07 0.15,0.07 0.15,-0.02 -0.01,-0.14 -0.04,-0.27 -0.07,-0.41 0.59,-0.04 1.18,-0.11 1.77,-0.18 0.07,0.14 0.16,0.26 0.23,0.4 0.07,0.15 0.13,0.31 0.19,0.47 -0.15,0.02 -0.29,0.05 -0.44,0.07 -0.16,0.02 -0.12,0.3 0.04,0.28 0.17,-0.02 0.34,-0.04 0.51,-0.06 0.05,0.16 0.09,0.33 0.18,0.46 0.05,0.07 0.19,0.08 0.21,-0.03 0.02,-0.16 -0.02,-0.32 -0.07,-0.47 0.14,-0.01 0.28,-0.03 0.42,-0.05 0.41,-0.05 0.84,-0.08 1.23,-0.22 0.12,-0.04 0.1,-0.21 -0.03,-0.22 -0.41,-0.04 -0.83,0.05 -1.24,0.11 -0.16,0.02 -0.32,0.05 -0.48,0.08 -0.06,-0.16 -0.12,-0.33 -0.19,-0.49 -0.06,-0.13 -0.15,-0.24 -0.21,-0.37 0.65,-0.09 1.3,-0.19 1.95,-0.31 0.1,0.14 0.21,0.27 0.3,0.42 0.12,0.21 0.22,0.43 0.32,0.65 0.11,0.24 0.18,0.49 0.3,0.73 0.06,0.11 0.21,0.03 0.19,-0.08 -0.07,-0.49 -0.35,-1 -0.6,-1.42 -0.07,-0.12 -0.17,-0.22 -0.25,-0.34 0.36,-0.07 0.73,-0.14 1.09,-0.21 0.15,0.24 0.31,0.48 0.43,0.74 0.02,0.04 0.03,0.08 0.05,0.12 -0.19,0.05 -0.38,0.09 -0.57,0.14 -0.24,0.06 -0.14,0.42 0.1,0.36 0.2,-0.05 0.41,-0.09 0.61,-0.14 0.12,0.33 0.23,0.66 0.35,0.99 0.01,0.03 0.03,0.05 0.05,0.06 -0.56,0.13 -1.14,0.24 -1.71,0.3 -0.22,0.02 -0.23,0.36 0,0.35 0.8,-0.05 1.58,-0.17 2.35,-0.39 0.39,-0.11 0.77,-0.24 1.14,-0.4 0.03,-0.01 0.07,-0.03 0.1,-0.04 0.01,0.3 0.02,0.6 0.01,0.9 -0.06,0.02 -0.11,0.05 -0.17,0.07 -0.17,0.07 -0.35,0.13 -0.53,0.2 -0.07,-0.11 -0.26,-0.1 -0.25,0.05 0,0.01 0,0.02 0,0.04 -0.35,0.13 -0.7,0.25 -1.06,0.37 -0.1,0.04 -0.06,0.2 0.05,0.17 0.34,-0.11 0.69,-0.22 1.03,-0.33 0.03,0.3 0.05,0.59 0.08,0.89 -0.13,0.04 -0.26,0.08 -0.4,0.12 -0.18,0.05 -0.36,0.08 -0.54,0.13 0,-0.02 0,-0.05 0,-0.07 -0.01,-0.19 -0.31,-0.19 -0.3,0 0,0.05 0,0.09 0,0.14 -0.32,0.08 -0.64,0.16 -0.97,0.22 -0.07,-0.03 -0.14,-0.02 -0.18,0.03 -1.24,0.21 -2.53,0.19 -3.78,0.13 -0.16,-0.01 -0.16,0.24 0,0.25 1.26,0.07 2.5,-0.06 3.75,-0.18 0.02,0.27 0.03,0.54 0.05,0.81 -0.35,0.11 -0.71,0.21 -1.06,0.32 -0.17,0.05 -0.1,0.31 0.07,0.26 0.33,-0.1 0.67,-0.2 1,-0.29 0.02,0.35 0.04,0.71 0.07,1.06 -0.37,0.07 -0.74,0.13 -1.1,0.21 -0.56,0.12 -1.12,0.25 -1.67,0.37 -0.14,0.03 -0.08,0.25 0.06,0.22 0.49,-0.11 0.97,-0.22 1.46,-0.33 0,0.01 -0.01,0.02 -0.01,0.03 -0.04,0.33 -0.03,0.66 0.03,0.99 0.03,0.16 0.07,0.32 0.13,0.47 0.05,0.15 0.12,0.33 0.26,0.42 0.07,0.04 0.15,-0.01 0.15,-0.09 0.01,-0.15 -0.08,-0.3 -0.13,-0.44 -0.05,-0.14 -0.09,-0.29 -0.12,-0.44 -0.06,-0.3 -0.07,-0.61 -0.03,-0.91 0,-0.03 -0.01,-0.06 -0.03,-0.08 0.35,-0.08 0.69,-0.17 1.03,-0.26 0.02,0.33 0.04,0.65 0.06,0.98 0.02,0.26 0.02,0.56 0.08,0.83 -0.06,0.02 -0.11,0.04 -0.17,0.06 -0.05,0.02 -0.07,0.06 -0.07,0.1 -0.04,0.02 -0.07,0.04 -0.11,0.06 -0.55,0.24 -1.1,0.46 -1.66,0.67 -1.04,0.39 -2.13,0.63 -3.23,0.82 -1.18,0.2 -2.38,0.39 -3.58,0.5 -0.23,0.02 -0.24,0.37 0,0.37 1.18,0.02 2.33,-0.02 3.49,-0.19 1.19,-0.17 2.36,-0.43 3.54,-0.66 1.13,-0.22 2.3,-0.5 3.4,-0.85 0.59,-0.19 1.17,-0.44 1.73,-0.71 0.22,-0.1 0.44,-0.22 0.64,-0.35 0.19,0.29 0.42,0.55 0.69,0.7 -0.03,0.1 -0.05,0.19 -0.08,0.29 -0.02,0.07 -0.04,0.13 -0.06,0.19 -0.01,0.03 -0.02,0.06 -0.04,0.1 -0.07,0.13 -0.13,0.27 -0.21,0.4 -0.04,0.06 -0.07,0.11 -0.11,0.17 -0.02,0.03 -0.11,0.18 -0.13,0.18 0.06,-0.07 0.07,-0.09 0.04,-0.05 -0.01,0.01 -0.02,0.02 -0.03,0.04 -0.02,0.03 -0.05,0.06 -0.07,0.09 -0.05,0.06 -0.1,0.11 -0.15,0.17 -0.19,0.19 -0.49,0.38 -0.64,0.63 -0.03,0.03 -0.06,0.06 -0.09,0.08 0,0 0,0.01 0,0.01 -0.31,0.28 -0.64,0.54 -0.98,0.78 -0.98,0.66 -2.06,1.17 -3.18,1.55 -2.47,0.85 -5.09,1.21 -7.67,1.46 -6.02,0.57 -12.14,0.18 -18.03,-1.21 -1.52,-0.36 -3.21,-0.68 -4.6,-1.41 -0.92,-0.48 -1.67,-1.37 -1.74,-2.4 0.34,-0.27 0.59,-0.67 0.78,-1.12 0.44,0.35 0.9,0.67 1.39,0.96 0.28,0.16 0.57,0.32 0.87,0.45 0.31,0.13 0.64,0.3 0.97,0.35 0.12,0.02 0.2,-0.14 0.09,-0.2 -0.27,-0.16 -0.59,-0.25 -0.87,-0.4 -0.29,-0.15 -0.59,-0.29 -0.88,-0.45 -0.46,-0.26 -0.89,-0.56 -1.31,-0.87 0.68,0.31 1.41,0.54 2.09,0.77 1.07,0.36 2.18,0.69 3.3,0.88 1.07,0.18 2.18,0.18 3.27,0.27 1.04,0.09 2.27,0.31 3.28,0 0.18,-0.05 0.17,-0.3 0,-0.36 -0.97,-0.31 -2.09,-0.21 -3.1,-0.34 -0.7,-0.09 -1.37,-0.27 -2.03,-0.45 0,-0.02 0,-0.04 0,-0.06 -0.02,-0.22 -0.05,-0.44 -0.08,-0.66 -0.04,-0.3 -0.08,-0.6 -0.12,-0.9 0.06,-0.01 0.12,0 0.17,-0.02 0.12,-0.03 0.11,-0.2 0,-0.24 -0.07,-0.02 -0.14,-0.03 -0.21,-0.04 -0.01,-0.04 -0.01,-0.09 -0.02,-0.13 -0.01,-0.09 -0.07,-0.17 -0.17,-0.17 -0.08,0 -0.18,0.08 -0.17,0.17 0,0.03 0.01,0.06 0.01,0.09 -0.09,0 -0.18,-0.01 -0.27,-0.02 -0.3,-0.02 -0.59,-0.05 -0.89,-0.09 -0.05,-0.01 -0.1,-0.02 -0.15,-0.03 -0.02,-0.3 -0.01,-0.6 0.05,-0.9 0.04,-0.19 -0.24,-0.27 -0.29,-0.08 -0.07,0.3 -0.09,0.61 -0.08,0.92 -0.36,-0.06 -0.72,-0.12 -1.08,-0.2 0.01,-0.22 0.01,-0.43 0.02,-0.65 l 0.02,-0.65 c 0.2,0.03 0.39,0.05 0.59,0.09 0.37,0.06 0.79,0.22 1.16,0.12 0.08,-0.02 0.07,-0.12 0,-0.15 -0.35,-0.14 -0.78,-0.06 -1.15,-0.1 -0.21,-0.02 -0.4,-0.06 -0.6,-0.11 l 0.03,-1.02 c 0.01,-0.17 -0.25,-0.16 -0.26,0 l -0.05,0.95 c -0.11,-0.03 -0.22,-0.06 -0.34,-0.09 -0.17,-0.05 -0.33,-0.11 -0.5,-0.16 0.02,-0.34 0.03,-0.68 0.05,-1.02 0.01,-0.17 -0.26,-0.17 -0.26,0 -0.02,0.31 -0.03,0.62 -0.05,0.94 -0.32,-0.1 -0.63,-0.22 -0.95,-0.33 0,-0.02 0,-0.05 0,-0.07 0.02,-0.42 0.03,-0.83 0.04,-1.25 0.69,0.31 1.39,0.59 2.11,0.79 0.5,0.14 1,0.25 1.51,0.34 0.5,0.08 1.02,0.17 1.52,0.16 0.08,0 0.11,-0.13 0.02,-0.15 -0.5,-0.07 -1,-0.1 -1.49,-0.18 -0.5,-0.08 -0.99,-0.19 -1.47,-0.32 -0.76,-0.21 -1.49,-0.5 -2.2,-0.83 0.01,-0.26 0.02,-0.52 0.02,-0.79 0.23,0.07 0.47,0.14 0.7,0.17 0.1,0.01 0.18,-0.12 0.08,-0.18 -0.24,-0.12 -0.5,-0.21 -0.77,-0.29 0,-0.04 0,-0.08 0,-0.11 0,-0.12 -0.17,-0.11 -0.18,0 0,0.02 0,0.04 0,0.06 -0.11,-0.03 -0.23,-0.07 -0.34,-0.1 -0.18,-0.06 -0.37,-0.11 -0.55,-0.17 0,-0.68 0.05,-1.35 0.2,-2.02 0.16,0.11 0.33,0.21 0.5,0.31 -0.08,0.32 -0.14,0.64 -0.12,0.95 0.01,0.11 0.17,0.14 0.2,0.03 0.08,-0.27 0.14,-0.54 0.2,-0.81 0.3,0.15 0.61,0.27 0.93,0.38 -0.02,0.13 -0.04,0.27 -0.05,0.4 0,0.1 0.15,0.12 0.17,0.02 0.03,-0.12 0.06,-0.24 0.09,-0.36 0.06,0.02 0.13,0.04 0.19,0.06 0.39,0.1 0.78,0.15 1.17,0.18 0.02,0.01 0.04,0.01 0.06,0.01 0.03,0 0.06,0.01 0.09,0.01 0.44,0.04 0.98,0.13 1.42,0.01 0.1,-0.03 0.07,-0.16 -0.02,-0.17 -0.21,-0.02 -0.44,0.01 -0.66,0.01 -0.22,0 -0.44,-0.01 -0.66,-0.04 0.08,-0.13 0.15,-0.27 0.22,-0.39 0.09,-0.16 0.18,-0.31 0.28,-0.47 0.37,0.09 0.74,0.17 1.1,0.23 0.18,0.03 0.26,-0.24 0.08,-0.28 -0.33,-0.06 -0.66,-0.13 -0.99,-0.22 0.15,-0.22 0.31,-0.44 0.48,-0.65 0.18,0.03 0.35,0.09 0.52,0.12 0.54,0.07 1.06,0.12 1.59,-0.02 0.08,-0.02 0.08,-0.14 0,-0.16 -0.5,-0.12 -1.01,-0.13 -1.53,-0.2 -0.1,-0.01 -0.2,-0.05 -0.31,-0.07 0.2,-0.22 0.41,-0.42 0.62,-0.61 0.59,0.13 1.18,0.22 1.78,0.32 -0.07,0.12 -0.15,0.23 -0.21,0.35 -0.08,0.16 -0.16,0.32 -0.22,0.49 -0.06,0.16 -0.14,0.34 -0.13,0.51 0,0.14 0.18,0.17 0.25,0.07 0.09,-0.13 0.14,-0.29 0.2,-0.44 0.06,-0.15 0.13,-0.3 0.2,-0.45 0.08,-0.16 0.18,-0.31 0.27,-0.46 0.15,0.02 0.29,0.06 0.44,0.08 0.39,0.05 0.79,0.08 1.18,0.11 0,0 0,0.01 0,0.01 -0.04,0.18 -0.08,0.37 -0.1,0.56 -0.28,-0.03 -0.55,-0.05 -0.83,-0.08 -0.06,-0.01 -0.12,0.06 -0.12,0.12 0,0.07 0.05,0.11 0.12,0.12 0.28,0.03 0.55,0.06 0.83,0.09 0,0.05 -0.01,0.11 0,0.16 0.03,0.14 0.23,0.12 0.27,0 0.01,-0.04 0.02,-0.09 0.03,-0.13 0.18,0.02 0.35,0.03 0.52,0 0.08,-0.01 0.06,-0.13 0,-0.15 -0.13,-0.04 -0.27,-0.06 -0.4,-0.08 -0.02,0 -0.05,0 -0.07,-0.01 0.02,-0.17 0.05,-0.34 0.09,-0.5 0.01,-0.02 0.02,-0.04 0.02,-0.07 0.72,0.07 1.43,0.12 2.15,0.15 0,0.21 0.01,0.41 0.07,0.61 0.03,0.08 0.14,0.06 0.15,-0.02 0.02,-0.19 0.04,-0.38 0.06,-0.58 0.46,0.02 0.92,0.05 1.39,0.05 0.28,0 0.56,0.01 0.84,0.02 -0.02,0.21 -0.01,0.43 0.13,0.59 0.05,0.05 0.13,0.03 0.17,-0.02 0.1,-0.16 0.1,-0.36 0.1,-0.56 0.42,0.01 0.83,0 1.24,-0.03 -0.04,0.12 -0.06,0.24 -0.07,0.36 0,0.1 0.14,0.18 0.21,0.09 0.12,-0.15 0.18,-0.32 0.25,-0.5 0.06,-0.01 0.12,-0.01 0.17,-0.02 0.11,-0.02 0.07,-0.18 -0.03,-0.19 -0.02,0 -0.05,0 -0.07,0 0.05,-0.14 0.1,-0.29 0.15,-0.43 l 0.19,-0.55 c 0.72,-0.03 1.47,-0.04 2.23,-0.07 z m 18.68,2.75 c 0,0.17 0.01,0.34 0.02,0.51 -0.18,0.17 -0.35,0.35 -0.52,0.53 -0.26,-0.11 -0.53,-0.22 -0.79,-0.33 0.03,-0.02 0.07,-0.03 0.1,-0.06 0.17,-0.17 0.3,-0.42 0.27,-0.66 -0.01,-0.07 -0.03,-0.13 -0.06,-0.19 z m -0.11,2.42 c -0.31,-0.12 -0.63,-0.22 -0.96,-0.31 0.26,-0.25 0.52,-0.5 0.78,-0.74 0.09,0.04 0.19,0.08 0.28,0.11 -0.02,0.06 -0.02,0.13 0.01,0.2 0.04,0.09 0.11,0.17 0.16,0.26 0.01,0.07 0.03,0.14 0.05,0.21 -0.03,0.02 -0.05,0.05 -0.08,0.07 -0.09,0.07 -0.17,0.14 -0.24,0.2 z m 5.18,3.44 c 0.2,0.22 0.38,0.46 0.51,0.74 0.14,0.29 0.23,0.6 0.28,0.91 0,0 0,0.01 0,0.01 -0.32,-0.02 -0.64,-0.03 -0.96,-0.04 -0.42,-0.01 -0.84,0 -1.27,0.01 -0.08,-0.31 -0.19,-0.62 -0.34,-0.9 -0.11,-0.21 -0.26,-0.39 -0.39,-0.58 0.32,-0.02 0.64,-0.03 0.96,-0.05 0.4,-0.03 0.82,-0.02 1.21,-0.1 z m -0.81,3.46 c -0.01,-0.12 -0.02,-0.24 -0.04,-0.36 -0.02,-0.1 -0.18,-0.06 -0.16,0.04 0.02,0.1 0.02,0.21 0.03,0.31 -0.26,-0.01 -0.52,-0.02 -0.78,-0.03 -0.81,-0.02 -1.63,-0.05 -2.44,-0.07 -0.02,-0.43 -0.12,-0.85 -0.32,-1.24 0.25,-0.02 0.5,-0.03 0.76,-0.04 0.01,0.14 0.02,0.29 0.06,0.42 0.03,0.1 0.17,0.09 0.2,0 0.04,-0.13 0.05,-0.28 0.04,-0.43 0.4,-0.02 0.81,-0.04 1.21,-0.05 0.19,0 0.39,0 0.58,0 0.03,0.28 0.03,0.55 0.07,0.83 0.02,0.12 0.19,0.09 0.22,0 0.09,-0.25 0.06,-0.55 0.01,-0.83 0.4,0 0.79,-0.01 1.19,0 0.33,0.01 0.66,0.02 0.99,0.04 0,0.02 0,0.05 0,0.07 0,0.17 -0.03,0.34 -0.01,0.51 0.01,0.11 0.16,0.18 0.23,0.08 0.02,0.28 0.02,0.56 -0.02,0.83 -0.08,-0.01 -0.15,-0.03 -0.23,-0.03 -0.28,-0.02 -0.56,-0.02 -0.83,-0.03 -0.25,-0.01 -0.5,-0.01 -0.76,-0.02 z m -2.55,1.18 c -0.34,-0.01 -0.68,-0.02 -1.02,-0.03 0.12,-0.31 0.19,-0.65 0.21,-0.95 0.41,0.02 0.81,0.05 1.22,0.07 -0.14,0.3 -0.27,0.61 -0.41,0.91 z m -7.52,-3.53 c -0.03,-0.34 -0.06,-0.68 -0.09,-1.02 0.07,-0.02 0.14,-0.04 0.2,-0.05 0.18,-0.04 0.36,-0.06 0.54,-0.1 0.01,0.31 0.02,0.62 0.03,0.93 0.01,0.2 0,0.43 0.01,0.65 -0.21,0.11 -0.41,0.22 -0.62,0.33 0,0 0,0 -0.01,0 0.01,-0.25 -0.04,-0.52 -0.06,-0.74 z m -0.28,-3.3 c 0.29,-0.03 0.58,-0.09 0.87,-0.14 0.01,0.21 0.01,0.42 0.02,0.63 -0.28,0.08 -0.55,0.17 -0.83,0.25 -0.02,-0.24 -0.04,-0.49 -0.06,-0.74 z m 2.3,-1.69 c 0.18,-0.05 0.37,-0.11 0.55,-0.16 0.03,-0.01 0.07,-0.02 0.1,-0.03 0,0.05 0,0.11 0,0.16 0,0.25 -0.01,0.49 -0.01,0.74 -0.1,0.03 -0.2,0.07 -0.3,0.1 -0.08,0.02 -0.16,0.05 -0.24,0.07 -0.04,-0.29 -0.07,-0.58 -0.1,-0.88 z m 2.08,-1.13 c 0.06,0 0.12,0.01 0.17,-0.01 0.28,0.12 0.57,0.24 0.85,0.36 -0.26,0.27 -0.53,0.53 -0.8,0.8 -0.07,-0.01 -0.14,-0.02 -0.21,-0.03 0.02,-0.37 0.01,-0.74 -0.01,-1.12 z m 1.75,0.2 c 0.01,0.08 0.02,0.16 0.03,0.24 -0.06,-0.03 -0.13,-0.06 -0.19,-0.08 0.05,-0.05 0.11,-0.11 0.16,-0.16 z m 0.06,3.13 c -0.19,0.09 -0.38,0.18 -0.57,0.27 -0.12,0.06 -0.08,0.2 0.01,0.25 -0.37,-0.22 -0.77,-0.39 -1.19,-0.48 -0.02,-0.23 -0.04,-0.45 -0.05,-0.68 0.61,0.17 1.22,0.39 1.8,0.64 z m 0.08,1.35 c 0.1,0.1 0.18,0.22 0.27,0.33 -0.23,0.02 -0.46,0.03 -0.68,0.05 -0.17,0.01 -0.17,0.27 0,0.26 0.3,-0.02 0.6,-0.03 0.9,-0.05 0.04,0.06 0.07,0.12 0.1,0.18 -0.56,0.15 -1.11,0.31 -1.67,0.47 -0.07,-0.1 -0.13,-0.19 -0.19,-0.3 -0.27,-0.52 -0.43,-1.1 -0.52,-1.68 -0.02,-0.12 -0.02,-0.24 -0.03,-0.36 0.55,0.17 1.07,0.45 1.51,0.83 -0.21,0.06 -0.41,0.13 -0.62,0.19 -0.18,0.05 -0.1,0.34 0.08,0.28 0.27,-0.08 0.55,-0.16 0.82,-0.23 0.01,0.01 0.02,0.02 0.03,0.03 z m 1.37,2.01 c -0.05,-0.28 -0.14,-0.56 -0.25,-0.82 -0.02,-0.04 -0.05,-0.08 -0.07,-0.12 0.49,-0.11 0.98,-0.23 1.46,-0.38 0.1,0.14 0.21,0.27 0.29,0.42 0.15,0.27 0.26,0.56 0.33,0.86 -0.19,0 -0.37,0 -0.56,0 -0.41,0.02 -0.81,0.05 -1.21,0.08 0.02,-0.01 0.02,-0.03 0.01,-0.04 z m -0.51,-1.31 c -0.02,-0.04 -0.04,-0.08 -0.07,-0.12 0.25,-0.01 0.5,-0.03 0.75,-0.04 -0.23,0.05 -0.46,0.1 -0.68,0.16 z m -5.87,-0.71 c -0.01,-0.38 -0.03,-0.76 -0.04,-1.14 0.32,-0.09 0.65,-0.19 0.97,-0.29 0.01,0 0.01,0 0.02,-0.01 0.01,0.12 0.02,0.25 0.03,0.37 0.02,0.25 0.01,0.54 0.1,0.78 -0.1,0.03 -0.21,0.05 -0.31,0.08 -0.25,0.07 -0.51,0.15 -0.76,0.22 -0.01,0.01 -0.01,0 -0.01,-0.01 z m 1.3,-1.09 c -0.02,-0.14 -0.03,-0.29 -0.05,-0.43 0.09,-0.03 0.18,-0.05 0.27,-0.08 0.05,-0.02 0.11,-0.03 0.16,-0.04 0.01,0.39 0.04,0.79 0.09,1.18 -0.07,0.02 -0.14,0.04 -0.21,0.06 -0.07,0.02 -0.15,0.04 -0.22,0.06 0.03,-0.25 -0.02,-0.52 -0.04,-0.75 z m 3.71,0.75 c -0.19,-0.17 -0.39,-0.33 -0.61,-0.46 0.03,0.01 0.07,0.01 0.11,-0.01 l 0.79,-0.37 c 0.29,0.14 0.56,0.32 0.83,0.5 -0.37,0.11 -0.75,0.22 -1.12,0.34 z m -3.49,-2.03 c 0.05,-0.01 0.1,-0.03 0.16,-0.04 0,0.15 0,0.3 0.01,0.44 -0.08,0.02 -0.16,0.05 -0.23,0.07 -0.08,0.02 -0.15,0.04 -0.23,0.07 0,-0.05 -0.01,-0.09 -0.01,-0.14 -0.01,-0.11 -0.02,-0.21 -0.03,-0.32 0.1,-0.02 0.21,-0.04 0.33,-0.08 z m -0.62,0.44 c 0.01,0.06 0.01,0.13 0.02,0.19 -0.02,0.01 -0.05,0.01 -0.07,0.02 -0.3,0.09 -0.6,0.18 -0.9,0.27 -0.01,-0.2 -0.01,-0.39 -0.02,-0.59 0.21,-0.04 0.42,-0.05 0.62,-0.1 0.11,-0.02 0.23,-0.06 0.34,-0.08 0,0.11 0,0.2 0.01,0.29 z m -1.26,0.88 c 0.01,0.35 0.02,0.7 0.03,1.05 0,0.03 0,0.07 0,0.1 -0.19,0.05 -0.38,0.1 -0.57,0.14 -0.06,0.01 -0.12,0.02 -0.18,0.04 -0.03,-0.36 -0.06,-0.73 -0.09,-1.09 0.27,-0.08 0.54,-0.16 0.81,-0.24 z m 1.68,2.09 c -0.41,0.21 -0.83,0.42 -1.25,0.63 -0.01,-0.16 -0.02,-0.32 -0.03,-0.46 -0.01,-0.33 -0.03,-0.66 -0.04,-0.99 0.27,-0.05 0.54,-0.1 0.81,-0.15 0.26,-0.04 0.53,-0.09 0.79,-0.14 0.08,-0.01 0.16,-0.03 0.24,-0.04 0.04,0.22 0.08,0.45 0.14,0.67 0.01,0.05 0.03,0.11 0.05,0.16 -0.24,0.07 -0.48,0.21 -0.71,0.32 z m 3.16,1.2 c -0.07,-0.27 -0.22,-0.52 -0.39,-0.75 0.57,-0.11 1.13,-0.22 1.7,-0.34 0.03,0.06 0.07,0.12 0.1,0.19 0.09,0.23 0.17,0.47 0.21,0.71 0,0.01 0,0.02 0,0.03 -0.54,0.04 -1.08,0.09 -1.62,0.16 z m 1.13,-1.92 c -0.11,-0.14 -0.22,-0.28 -0.34,-0.41 0.4,-0.11 0.8,-0.23 1.21,-0.34 0.25,0.2 0.5,0.41 0.71,0.65 -0.53,0.03 -1.05,0.06 -1.58,0.1 z m 1.03,-1.16 c -0.06,0.02 -0.11,0.03 -0.17,0.05 -0.28,-0.2 -0.56,-0.39 -0.86,-0.54 l 0.64,-0.3 c 0.09,-0.04 0.17,-0.08 0.26,-0.12 0.17,0.13 0.36,0.23 0.52,0.37 0.12,0.1 0.22,0.21 0.33,0.32 -0.24,0.08 -0.48,0.15 -0.72,0.22 z m -0.52,-1.07 c -0.29,0.14 -0.59,0.28 -0.88,0.43 -0.41,-0.19 -0.84,-0.35 -1.28,-0.48 0.3,-0.26 0.6,-0.52 0.89,-0.77 0.28,0.12 0.56,0.26 0.83,0.41 0.19,0.11 0.35,0.25 0.53,0.38 -0.03,0 -0.06,0.01 -0.09,0.03 z m -2.45,-0.27 c -0.04,0.03 -0.05,0.07 -0.05,0.11 -0.16,-0.05 -0.32,-0.1 -0.49,-0.14 0,-0.22 0,-0.44 0,-0.66 0.04,0 0.08,-0.01 0.12,-0.05 0.09,-0.09 0.19,-0.18 0.28,-0.27 0.32,0.08 0.63,0.18 0.94,0.3 -0.26,0.23 -0.53,0.47 -0.8,0.71 z m -0.16,-3.61 c 0,0.03 0.01,0.06 0.01,0.09 0,0 0,0.01 0.01,0.03 0,0 0,0 0,0.01 0,0.01 0,0.01 0,0.02 0,0.03 0,0.05 0,0.08 0,0.01 0,0.03 0,0.04 0,0 0,0.01 0,0.01 -0.01,0.02 -0.01,0.06 -0.02,0.08 -0.01,0.03 -0.01,0.05 -0.02,0.08 0,0.01 -0.01,0.03 -0.02,0.04 0,0 0,0 0,0.01 -0.01,0.03 -0.03,0.05 -0.04,0.08 -0.01,0.01 -0.01,0.02 -0.02,0.03 0,0 0,0 0,0.01 -0.02,0.02 -0.04,0.05 -0.06,0.07 -0.01,0.01 -0.02,0.02 -0.03,0.03 0,0 0,0 0,0 -0.02,0.01 -0.05,0.03 -0.07,0.05 -0.01,0.01 -0.02,0.01 -0.04,0.02 0,0 0,0 -0.01,0 -0.02,0.01 -0.05,0.01 -0.07,0.02 0,0 0,0 0,0 0,0 0,0 0,0 0,0 -0.01,0 -0.01,0 -0.01,-0.1 0,-0.19 -0.01,-0.29 -0.02,-0.2 -0.06,-0.4 -0.09,-0.6 0.15,0.02 0.32,0.05 0.49,0.09 z m -6.04,-1.3 c -0.14,-0.19 -0.27,-0.4 -0.43,-0.58 -0.19,-0.21 -0.39,-0.4 -0.61,-0.59 0.38,-0.09 0.76,-0.18 1.14,-0.28 0.32,0.31 0.63,0.65 0.89,1.01 0.04,0.06 0.07,0.12 0.11,0.18 -0.36,0.09 -0.73,0.18 -1.09,0.26 0,0 -0.01,0 -0.01,0 z m -4.15,0.69 c -0.16,-0.44 -0.43,-0.85 -0.72,-1.17 -0.01,-0.01 -0.02,-0.02 -0.03,-0.03 0.53,-0.06 1.06,-0.12 1.59,-0.21 0.2,0.22 0.41,0.44 0.58,0.69 0.1,0.15 0.17,0.31 0.26,0.46 -0.55,0.09 -1.11,0.17 -1.66,0.24 0,0 -0.01,0.01 -0.02,0.02 z m 1.66,-0.9 c -0.15,-0.21 -0.33,-0.38 -0.5,-0.57 0.45,-0.08 0.91,-0.15 1.36,-0.24 0.11,-0.02 0.23,-0.06 0.34,-0.09 0.24,0.21 0.47,0.42 0.68,0.66 0.13,0.15 0.23,0.33 0.35,0.49 -0.63,0.12 -1.26,0.23 -1.9,0.33 -0.11,-0.19 -0.2,-0.39 -0.33,-0.58 z M 301.1,522 c -0.24,-0.32 -0.51,-0.6 -0.79,-0.89 0.07,-0.02 0.15,-0.03 0.22,-0.05 0.17,-0.05 0.33,-0.1 0.5,-0.15 0.29,0.4 0.59,0.79 0.88,1.19 0.02,0.02 0.03,0.04 0.05,0.06 -0.21,0.05 -0.42,0.1 -0.64,0.15 -0.08,-0.1 -0.15,-0.21 -0.22,-0.31 z m 0.89,0.57 c 0.07,-0.02 0.14,-0.04 0.21,-0.05 0.06,0.08 0.12,0.17 0.18,0.25 0.09,0.12 0.17,0.24 0.26,0.35 0.05,0.07 0.1,0.13 0.16,0.19 -0.07,0.02 -0.14,0.03 -0.21,0.05 -0.21,0.05 -0.41,0.1 -0.62,0.15 -0.13,-0.29 -0.28,-0.58 -0.44,-0.85 0.16,-0.04 0.31,-0.06 0.46,-0.09 z m 1.6,-0.22 c 0.12,0.23 0.19,0.48 0.27,0.72 -0.12,-0.01 -0.26,0.03 -0.38,0.07 -0.07,-0.3 -0.15,-0.59 -0.22,-0.89 0.08,-0.02 0.16,-0.04 0.24,-0.06 0.02,0.06 0.06,0.11 0.09,0.16 z m -0.37,0.86 c -0.05,0.01 -0.09,0.02 -0.14,0.03 -0.02,-0.12 -0.1,-0.21 -0.17,-0.31 -0.08,-0.11 -0.17,-0.22 -0.25,-0.33 -0.04,-0.06 -0.09,-0.12 -0.13,-0.17 0.16,-0.04 0.31,-0.07 0.47,-0.11 0,0 0,0 0,0 0.07,0.3 0.15,0.59 0.22,0.89 z m -0.54,0.53 c 0.21,-0.05 0.42,-0.1 0.64,-0.15 0.02,0.06 0.03,0.13 0.05,0.19 0.04,0.16 0.11,0.32 0.16,0.48 0.04,0.11 0.19,0.07 0.17,-0.05 -0.03,-0.17 -0.05,-0.34 -0.09,-0.5 -0.01,-0.06 -0.03,-0.12 -0.05,-0.18 0.07,-0.02 0.14,-0.03 0.2,-0.05 0.06,-0.02 0.12,-0.03 0.18,-0.06 0.07,0.33 0.12,0.66 0.14,1 -0.06,0.02 -0.12,0.05 -0.18,0.07 -0.37,0.13 -0.74,0.25 -1.11,0.35 -0.13,0.04 -0.27,0.06 -0.41,0.1 0.02,-0.02 0.02,-0.05 0.02,-0.09 -0.05,-0.33 -0.15,-0.67 -0.27,-0.99 0.19,-0.03 0.37,-0.08 0.55,-0.12 z m 0.3,-1.84 c -0.24,0.06 -0.48,0.12 -0.72,0.18 -0.04,-0.05 -0.08,-0.1 -0.12,-0.15 -0.28,-0.37 -0.56,-0.74 -0.84,-1.11 0.16,-0.05 0.31,-0.1 0.47,-0.15 0.59,0.21 1.11,0.65 1.48,1.15 -0.09,0.03 -0.18,0.06 -0.27,0.08 z m -2.27,-1.41 c 0.05,0.03 0.09,0.06 0.16,0.06 0.03,0 0.07,0 0.1,0 -0.18,0.06 -0.35,0.12 -0.53,0.18 -0.13,0.04 -0.26,0.06 -0.39,0.1 -0.08,-0.08 -0.18,-0.13 -0.27,-0.2 0.31,-0.05 0.62,-0.1 0.93,-0.14 z m -1.41,0.2 c 0.03,0 0.06,-0.01 0.09,-0.01 0.1,0.08 0.21,0.15 0.31,0.24 -0.38,0.1 -0.77,0.21 -1.16,0.3 -0.18,-0.14 -0.36,-0.27 -0.55,-0.39 0.44,-0.06 0.87,-0.09 1.31,-0.14 z m -1.62,0.16 c 0.21,0.13 0.42,0.27 0.62,0.42 -0.02,0 -0.04,0.01 -0.07,0.02 -0.52,0.12 -1.04,0.2 -1.56,0.29 -0.2,-0.2 -0.42,-0.39 -0.64,-0.57 0.55,-0.04 1.1,-0.1 1.65,-0.16 z m -2.03,0.2 c 0.24,0.19 0.49,0.37 0.71,0.59 -0.55,0.09 -1.1,0.16 -1.65,0.22 -0.29,-0.27 -0.62,-0.48 -0.97,-0.65 0.63,-0.04 1.27,-0.1 1.91,-0.16 z m -29.66,16.37 c -0.48,-0.32 -0.86,-0.78 -1.1,-1.31 0.14,-0.04 0.29,-0.08 0.43,-0.12 0.38,-0.12 0.77,-0.26 1.15,-0.42 0.22,0.43 0.51,0.82 0.85,1.17 -0.1,0.03 -0.2,0.05 -0.3,0.09 -0.37,0.14 -0.71,0.34 -1.03,0.59 z m -4.24,-0.78 c -0.22,-0.19 -0.45,-0.35 -0.64,-0.57 -0.2,-0.23 -0.36,-0.49 -0.48,-0.77 -0.1,-0.22 -0.16,-0.46 -0.2,-0.7 0.49,0 0.98,0 1.47,0 0.81,0 1.63,0.04 2.44,-0.03 -0.05,0.39 -0.03,0.79 0.07,1.17 -0.09,0.02 -0.17,0.04 -0.25,0.06 l -0.8,0.17 c -0.29,0.06 -0.58,0.12 -0.86,0.19 -0.1,-0.14 -0.19,-0.28 -0.29,-0.42 -0.05,-0.08 -0.18,0 -0.12,0.07 0.09,0.13 0.18,0.25 0.27,0.38 -0.19,0.04 -0.37,0.08 -0.56,0.12 -0.15,0.03 -0.09,0.27 0.06,0.23 0.22,-0.04 0.44,-0.09 0.65,-0.13 0.01,0.02 0.02,0.03 0.03,0.05 -0.27,0.06 -0.52,0.13 -0.79,0.18 z m 0.9,-0.25 c 0.26,-0.05 0.52,-0.11 0.78,-0.16 0.14,-0.03 0.28,-0.06 0.42,-0.09 -0.13,0.04 -0.26,0.09 -0.4,0.12 -0.26,0.07 -0.52,0.11 -0.77,0.17 -0.01,-0.01 -0.02,-0.03 -0.03,-0.04 z m 5.37,0.22 c 0.02,0 -0.06,-0.02 -0.08,-0.02 -0.07,0 -0.14,0.02 -0.22,0.03 -0.37,-0.34 -0.7,-0.76 -0.94,-1.21 0.1,-0.05 0.21,-0.09 0.3,-0.15 0.01,-0.01 0,-0.02 0.01,-0.02 0.03,0.06 0.05,0.11 0.08,0.17 0,0.01 -0.01,0.01 -0.01,0.02 0,0.04 0.02,0.09 0.05,0.12 0.01,0.01 0.02,0.01 0.03,0.01 0.08,0.13 0.16,0.26 0.25,0.38 0.2,0.27 0.44,0.5 0.69,0.7 -0.04,-0.03 -0.08,-0.04 -0.13,-0.04 0.01,0.01 -0.04,0.01 -0.03,0.01 z m -1.64,-3.2 c 0.02,-0.03 0.04,-0.07 0.06,-0.1 0.16,-0.24 0.32,-0.49 0.49,-0.73 0.06,-0.09 -0.09,-0.18 -0.15,-0.09 -0.11,0.17 -0.23,0.34 -0.34,0.51 0.02,-0.16 -0.22,-0.23 -0.27,-0.06 -0.02,0.06 -0.03,0.13 -0.04,0.19 -0.47,-0.05 -0.94,-0.06 -1.42,-0.08 0.08,-0.11 0.15,-0.23 0.23,-0.34 0.18,-0.24 0.4,-0.46 0.6,-0.68 0.27,0.04 0.54,0.08 0.82,0.13 0.3,0.05 0.64,0.13 0.94,0.12 -0.19,0.37 -0.39,0.73 -0.43,1.17 0,0.01 0,0.01 0,0.02 -0.12,0.55 -0.06,1.11 0.16,1.65 0,0 -0.01,-0.01 -0.01,-0.01 -0.11,0.02 -0.22,0.07 -0.33,0.1 -0.26,-0.57 -0.39,-1.18 -0.31,-1.8 z m -5.35,-1.88 c -0.15,0.17 -0.29,0.35 -0.38,0.54 -0.03,0.06 0.04,0.12 0.1,0.07 0.19,-0.18 0.36,-0.39 0.53,-0.6 0.34,0.03 0.67,0.06 1.01,0.09 -0.23,0.28 -0.44,0.58 -0.64,0.88 -0.04,0.05 0.05,0.1 0.09,0.05 0.22,-0.32 0.47,-0.63 0.72,-0.92 0.31,0.03 0.62,0.05 0.92,0.09 0.11,0.01 0.21,0.03 0.32,0.04 -0.09,0.14 -0.18,0.27 -0.25,0.41 -0.12,0.23 -0.29,0.52 -0.32,0.78 -0.46,-0.02 -0.92,-0.05 -1.38,-0.07 -0.83,-0.04 -1.66,-0.07 -2.49,-0.11 0.02,-0.06 0.04,-0.11 0.06,-0.17 0.19,-0.44 0.45,-0.84 0.76,-1.2 0.31,0.05 0.63,0.09 0.95,0.12 z m 13.05,-9.08 c -0.29,-0.06 -0.58,-0.1 -0.86,-0.19 -0.2,-0.06 -0.39,-0.15 -0.58,-0.23 0.17,-0.2 0.35,-0.4 0.55,-0.57 0.51,0.13 1.02,0.26 1.53,0.38 -0.21,0.19 -0.43,0.37 -0.62,0.59 -0.01,0 -0.01,0.01 -0.02,0.02 z m -0.96,0.17 c 0.23,0.07 0.47,0.1 0.71,0.16 -0.16,0.21 -0.33,0.41 -0.48,0.63 -0.41,-0.13 -0.8,-0.3 -1.19,-0.47 -0.04,-0.02 -0.07,-0.04 -0.11,-0.05 0.09,-0.17 0.18,-0.33 0.29,-0.49 0.02,-0.02 0.04,-0.05 0.06,-0.07 0.24,0.1 0.47,0.22 0.72,0.29 z m -0.16,1.46 c -0.07,0.15 -0.16,0.34 -0.2,0.51 -0.38,-0.07 -0.75,-0.16 -1.11,-0.28 -0.05,-0.02 -0.1,-0.04 -0.15,-0.06 0.1,-0.34 0.23,-0.68 0.37,-1 0.04,0.02 0.07,0.04 0.11,0.05 0.38,0.16 0.78,0.28 1.19,0.4 -0.07,0.12 -0.14,0.24 -0.21,0.38 z m -2.17,-1.36 c 0.26,0.15 0.54,0.28 0.82,0.4 -0.16,0.33 -0.28,0.68 -0.36,1.03 -0.3,-0.11 -0.6,-0.22 -0.89,-0.36 0.02,-0.08 0.04,-0.16 0.06,-0.23 0.11,-0.29 0.24,-0.57 0.37,-0.84 z m 1,0.05 c -0.26,-0.12 -0.52,-0.24 -0.78,-0.37 -0.01,-0.01 -0.02,-0.01 -0.03,-0.02 0.03,-0.05 0.05,-0.11 0.09,-0.16 0.08,-0.13 0.17,-0.25 0.26,-0.37 0.26,0.14 0.53,0.26 0.81,0.38 -0.14,0.17 -0.25,0.35 -0.35,0.54 z m -1.02,-0.73 c -0.03,0.05 -0.06,0.11 -0.08,0.16 -0.17,-0.1 -0.34,-0.19 -0.51,-0.29 0.13,-0.2 0.28,-0.35 0.44,-0.51 0.13,0.09 0.27,0.17 0.41,0.25 -0.09,0.14 -0.19,0.26 -0.26,0.39 z m -0.76,0.17 c 0.16,0.12 0.32,0.23 0.49,0.33 -0.14,0.28 -0.26,0.56 -0.36,0.86 -0.02,0.07 -0.04,0.15 -0.06,0.22 -0.18,-0.09 -0.35,-0.2 -0.52,-0.3 0.11,-0.39 0.27,-0.76 0.45,-1.11 z m -0.43,4.71 c 0.18,0.09 0.36,0.16 0.54,0.25 -0.02,0.43 -0.05,0.86 -0.07,1.3 0,0.01 0,0.02 0,0.03 -0.12,-0.05 -0.24,-0.08 -0.36,-0.14 -0.15,-0.07 -0.29,0.16 -0.13,0.23 0.16,0.07 0.32,0.13 0.48,0.19 -0.02,0.32 -0.03,0.64 -0.05,0.96 0,0.06 -0.01,0.11 -0.01,0.17 -0.2,-0.09 -0.41,-0.17 -0.61,-0.27 0.04,-0.83 0.01,-1.67 -0.03,-2.51 -0.02,-0.4 -0.03,-0.79 -0.04,-1.19 0.15,0.05 0.3,0.09 0.45,0.14 0.14,0.04 0.28,0.09 0.42,0.14 -0.01,0.25 -0.03,0.5 -0.04,0.75 -0.15,-0.07 -0.31,-0.13 -0.46,-0.21 -0.1,-0.05 -0.19,0.1 -0.09,0.16 z m 4.07,4.43 c 0.03,0.21 0.07,0.42 0.14,0.63 0.06,0.18 0.14,0.47 0.32,0.54 0.07,0.03 0.15,-0.03 0.16,-0.09 0.03,-0.11 -0.03,-0.2 -0.07,-0.3 -0.03,-0.09 -0.06,-0.17 -0.09,-0.26 -0.05,-0.15 -0.08,-0.3 -0.11,-0.45 0.01,0 0.01,0 0.02,0 0.29,0.04 0.59,0.07 0.89,0.09 0.13,0.01 0.27,0.02 0.4,0.02 0.04,0.3 0.07,0.6 0.11,0.9 0.02,0.2 0.05,0.4 0.08,0.6 -0.27,-0.08 -0.55,-0.15 -0.82,-0.22 -1.02,-0.25 -2.04,-0.5 -3.04,-0.81 -0.82,-0.26 -1.62,-0.62 -2.44,-0.88 0.01,-0.03 0.01,-0.06 0.02,-0.08 0.07,-0.35 0.11,-0.71 0.13,-1.07 0.2,0.1 0.4,0.19 0.6,0.28 -0.02,0.27 -0.03,0.55 0,0.82 0.01,0.11 0.18,0.15 0.2,0.03 0.03,-0.14 0.03,-0.28 0.04,-0.42 0.02,0.02 0.05,0.03 0.08,0.04 0.02,0.01 0.04,0.01 0.06,0.01 0.01,0 0.01,0 0.02,0 0.02,0 0.03,0 0.04,-0.01 0,0 0,0 0,0 0,0 -0.01,0 -0.01,0 0.01,0 0.01,0 0.02,-0.01 0.02,-0.01 0.04,-0.02 0.05,-0.04 0.02,-0.02 0.03,-0.05 0.03,-0.08 0,-0.04 -0.05,-0.06 -0.08,-0.03 0,0 0,0 0,0 0,0 0,0 0,0 0,0 -0.01,0.01 -0.01,0.01 0,0 -0.01,0.01 -0.01,0.01 0,0 0,0 0,0 0,0 0,0 -0.01,0 0,0 0,0 -0.01,0 0,0 0,0 0,0 -0.01,0 -0.01,0 -0.02,0 0,0 0,0 0,0 -0.01,0 -0.01,0 -0.02,0 0,0 -0.01,0 -0.01,0 -0.01,0 -0.03,-0.01 -0.04,-0.01 0,0 0,0 -0.01,0 -0.01,0 -0.01,-0.01 -0.02,-0.01 0,0 0,0 -0.01,0 -0.01,0 -0.01,-0.01 -0.02,-0.01 0,0 0,0 -0.01,-0.01 0,0 -0.01,-0.01 -0.01,-0.01 0,-0.05 0.01,-0.1 0.01,-0.15 0.3,0.13 0.6,0.23 0.91,0.34 -0.01,0.23 -0.02,0.46 -0.01,0.69 0.01,0.12 0.21,0.17 0.23,0.03 0.03,-0.21 0.04,-0.42 0.05,-0.63 0.27,0.09 0.54,0.19 0.82,0.26 -0.01,0.13 -0.01,0.27 -0.02,0.4 -0.01,0.15 -0.03,0.31 0.02,0.45 0.04,0.13 0.2,0.11 0.24,0 0.06,-0.14 0.05,-0.31 0.05,-0.45 0.01,-0.11 0.01,-0.22 0.02,-0.33 0.41,0.07 0.77,0.14 1.14,0.21 0,-0.01 0,-0.01 0,0 z m -9,-4.84 c 0.26,-0.2 0.53,-0.38 0.81,-0.56 0.18,0.15 0.35,0.29 0.53,0.44 -0.26,0.11 -0.52,0.22 -0.79,0.32 -0.15,0.06 -0.09,0.3 0.07,0.25 0.32,-0.12 0.65,-0.24 0.98,-0.36 0.12,0.1 0.25,0.2 0.37,0.3 -0.15,0.05 -0.31,0.08 -0.46,0.14 -0.28,0.11 -0.54,0.25 -0.8,0.39 -0.24,-0.18 -0.48,-0.37 -0.71,-0.55 0,-0.12 -0.01,-0.24 0,-0.37 z m 1.66,-1.01 c 0.19,0.18 0.38,0.35 0.57,0.53 -0.07,0.03 -0.13,0.05 -0.2,0.08 -0.13,0.05 -0.26,0.11 -0.4,0.16 -0.19,-0.15 -0.38,-0.31 -0.57,-0.46 0.2,-0.11 0.4,-0.21 0.6,-0.31 z m 0.66,4.94 c -0.11,-0.07 -0.22,-0.14 -0.33,-0.21 -0.24,-0.14 -0.47,-0.28 -0.71,-0.43 0.35,-0.25 0.73,-0.45 1.13,-0.63 0.03,0.02 0.05,0.04 0.07,0.06 0.18,0.14 0.35,0.28 0.53,0.42 0.09,0.07 0.18,0.14 0.28,0.21 0,0.02 0,0.05 0,0.07 -0.34,0.15 -0.66,0.32 -0.97,0.51 z m -0.77,0.33 c -0.35,-0.11 -0.69,-0.22 -1.04,-0.34 0.03,-0.02 0.05,-0.05 0.08,-0.08 0.14,-0.13 0.3,-0.24 0.45,-0.36 0.27,0.16 0.54,0.33 0.8,0.49 0.07,0.04 0.14,0.08 0.21,0.13 -0.1,0.07 -0.19,0.15 -0.29,0.23 -0.06,-0.03 -0.14,-0.05 -0.21,-0.07 z m 0.3,-2.04 c 0.12,0.1 0.24,0.19 0.36,0.29 -0.41,0.18 -0.8,0.39 -1.17,0.65 -0.15,-0.09 -0.31,-0.19 -0.46,-0.28 0.39,-0.23 0.79,-0.45 1.21,-0.64 0.02,-0.01 0.04,-0.02 0.06,-0.02 z m 1.39,-2.75 c 0,0.19 0.01,0.39 0.02,0.58 -0.08,-0.07 -0.16,-0.14 -0.24,-0.21 -0.07,-0.06 -0.14,-0.13 -0.21,-0.19 0.03,-0.01 0.06,-0.02 0.1,-0.04 0.1,-0.04 0.22,-0.09 0.33,-0.14 z m 0.07,3.48 c -0.03,-0.02 -0.05,-0.04 -0.08,-0.06 -0.16,-0.13 -0.33,-0.25 -0.49,-0.38 0.19,-0.08 0.39,-0.13 0.59,-0.19 0,0.2 -0.01,0.41 -0.02,0.63 z m -0.51,-2.9 c 0.03,0.02 0.05,0.05 0.08,0.07 -0.01,0 -0.03,0 -0.04,0.01 -0.19,0.04 -0.36,0.11 -0.55,0.17 -0.13,-0.11 -0.26,-0.21 -0.39,-0.32 0.08,-0.03 0.16,-0.06 0.24,-0.09 0.12,-0.04 0.23,-0.09 0.35,-0.13 0.11,0.1 0.21,0.2 0.31,0.29 z m 0.1,0.42 c 0.1,-0.02 0.2,-0.03 0.31,-0.05 0.02,0.02 0.05,0.04 0.07,0.07 0.01,0.21 0.02,0.41 0.03,0.62 -0.22,-0.17 -0.43,-0.35 -0.65,-0.52 -0.02,-0.01 -0.03,-0.03 -0.05,-0.04 0.09,-0.02 0.19,-0.06 0.29,-0.08 z m 0.43,1.63 c -0.26,0.07 -0.52,0.15 -0.78,0.25 -0.12,-0.09 -0.24,-0.18 -0.35,-0.27 0.19,-0.07 0.37,-0.15 0.56,-0.22 0.19,-0.06 0.38,-0.12 0.57,-0.18 -0.01,0.14 -0.01,0.28 0,0.42 z m -0.06,-3.76 c -0.02,0.27 -0.02,0.53 -0.03,0.8 -0.17,0.04 -0.34,0.1 -0.49,0.16 -0.08,0.03 -0.15,0.06 -0.23,0.09 -0.2,-0.18 -0.41,-0.36 -0.61,-0.55 0.03,-0.01 0.05,-0.03 0.08,-0.04 0.38,-0.17 0.77,-0.32 1.16,-0.44 0.05,0 0.09,-0.01 0.12,-0.02 z m -1.57,2.47 c 0.18,-0.06 0.37,-0.1 0.55,-0.16 0.07,0.06 0.14,0.12 0.21,0.17 0.24,0.2 0.48,0.4 0.72,0.59 -0.44,0.09 -0.87,0.28 -1.27,0.45 -0.08,-0.06 -0.15,-0.12 -0.23,-0.18 -0.24,-0.18 -0.48,-0.37 -0.72,-0.56 0.25,-0.1 0.49,-0.22 0.74,-0.31 z m -0.24,1.1 c 0.04,0.03 0.09,0.07 0.13,0.1 -0.44,0.2 -0.87,0.44 -1.28,0.7 -0.19,-0.12 -0.38,-0.23 -0.57,-0.35 0.2,-0.13 0.4,-0.27 0.62,-0.39 0.15,-0.08 0.01,-0.31 -0.13,-0.23 -0.15,0.09 -0.29,0.19 -0.44,0.28 0.03,-0.09 0.05,-0.18 0.07,-0.27 0.26,-0.18 0.52,-0.35 0.8,-0.49 0.27,0.23 0.54,0.44 0.8,0.65 z m -1.41,0.98 c -0.07,0.04 -0.13,0.08 -0.2,0.13 -0.21,0.15 -0.42,0.32 -0.62,0.49 -0.27,-0.09 -0.53,-0.17 -0.8,-0.26 0.24,-0.17 0.48,-0.34 0.73,-0.5 0.11,-0.07 0.21,-0.13 0.32,-0.2 0.19,0.11 0.38,0.22 0.57,0.34 z m 0,0.31 c 0.08,-0.06 0.17,-0.1 0.26,-0.16 0.16,0.1 0.33,0.2 0.49,0.3 -0.13,0.1 -0.27,0.2 -0.4,0.31 -0.06,0.05 -0.11,0.12 -0.17,0.17 -0.24,-0.08 -0.48,-0.15 -0.72,-0.23 0.18,-0.13 0.35,-0.27 0.54,-0.39 z m -0.09,0.89 c -0.26,0.27 -0.5,0.55 -0.71,0.86 -0.01,0.02 -0.03,0.04 -0.04,0.06 -0.13,-0.02 -0.25,-0.03 -0.38,-0.05 -0.26,-0.03 -0.52,-0.05 -0.78,-0.07 0.36,-0.38 0.73,-0.74 1.14,-1.06 0.25,0.09 0.51,0.18 0.77,0.26 z m 0.28,0.1 c 0.4,0.13 0.79,0.27 1.19,0.4 -0.14,0.12 -0.3,0.21 -0.43,0.34 -0.09,0.09 -0.18,0.18 -0.27,0.28 -0.41,-0.06 -0.82,-0.11 -1.23,-0.16 0.22,-0.3 0.47,-0.59 0.74,-0.86 z m 1,0.94 c 0.16,-0.15 0.35,-0.28 0.52,-0.42 0.31,0.12 0.64,0.24 0.95,0.26 0.15,0.01 0.18,-0.19 0.07,-0.26 -0.17,-0.11 -0.39,-0.17 -0.58,-0.23 -0.03,-0.01 -0.07,-0.02 -0.1,-0.03 0.08,-0.06 0.14,-0.13 0.22,-0.18 0.12,0.07 0.24,0.15 0.38,0.18 0.1,0.02 0.17,-0.09 0.1,-0.17 -0.06,-0.07 -0.13,-0.12 -0.2,-0.17 0.21,-0.13 0.42,-0.24 0.64,-0.35 -0.07,0.52 -0.19,1.03 -0.37,1.52 -0.04,0.1 -0.09,0.2 -0.13,0.3 -0.29,-0.13 -0.64,-0.16 -0.95,-0.21 -0.22,-0.03 -0.44,-0.07 -0.67,-0.1 0.04,-0.05 0.08,-0.1 0.12,-0.14 z m 6.4,-1.51 c -0.01,0.19 -0.02,0.38 -0.03,0.57 -0.28,-0.07 -0.54,-0.17 -0.81,-0.25 0.01,-0.24 0.01,-0.49 0.02,-0.73 0.01,-0.16 0.01,-0.31 0.02,-0.47 0.15,0.04 0.3,0.09 0.45,0.12 0.13,0.02 0.26,0.04 0.39,0.06 z m -1.1,-0.44 c -0.01,0.22 -0.03,0.45 -0.04,0.67 -0.31,-0.1 -0.61,-0.22 -0.92,-0.34 0,-0.08 0,-0.16 0.01,-0.23 0.01,-0.31 0.02,-0.61 0.03,-0.92 0.31,0.12 0.62,0.22 0.94,0.31 0,0.17 -0.01,0.34 -0.02,0.51 z m -3.47,-5.15 c -0.41,0.14 -0.8,0.31 -1.19,0.5 -0.07,0.03 -0.13,0.08 -0.2,0.11 -0.01,-0.01 -0.02,-0.02 -0.03,-0.03 -0.12,-0.11 -0.28,0.04 -0.21,0.16 -0.21,0.11 -0.41,0.22 -0.61,0.34 0,0 0,0 0,0 -0.12,-0.1 -0.27,0.04 -0.22,0.15 -0.21,0.14 -0.41,0.29 -0.6,0.44 0,-0.21 0.02,-0.41 0.02,-0.62 0,-0.12 -0.02,-0.24 -0.02,-0.36 0.54,-0.15 1.09,-0.31 1.64,-0.43 0.32,-0.07 0.63,-0.14 0.95,-0.19 0.08,-0.01 0.16,-0.03 0.24,-0.04 0.04,-0.01 0.08,-0.01 0.12,-0.02 0,0 0,0 0,0 0.06,-0.01 0.13,-0.01 0.19,-0.02 -0.03,-0.01 -0.06,0 -0.08,0.01 z m -3.1,2.7 c 0.15,0.12 0.29,0.23 0.44,0.35 -0.14,0.08 -0.26,0.17 -0.39,0.25 -0.01,-0.07 -0.04,-0.14 -0.09,-0.19 0.01,-0.14 0.03,-0.28 0.04,-0.41 z m -1.83,2.75 c 0.27,0.09 0.54,0.18 0.81,0.27 -0.39,0.35 -0.75,0.73 -1.08,1.12 -0.34,-0.03 -0.68,-0.07 -1.02,-0.1 0.06,-0.07 0.12,-0.15 0.18,-0.22 0.31,-0.34 0.63,-0.67 0.98,-0.98 0.04,-0.02 0.08,-0.05 0.13,-0.09 z m 0.9,2.32 c 0.09,-0.16 0.19,-0.32 0.29,-0.48 0.38,0.05 0.77,0.1 1.15,0.15 -0.29,0.33 -0.56,0.68 -0.77,1.06 -0.13,0 -0.26,-0.01 -0.39,-0.01 -0.21,-0.01 -0.42,-0.02 -0.63,-0.03 0.14,-0.21 0.23,-0.47 0.35,-0.69 z m 22.1,-10.37 c -0.07,0.18 -0.13,0.36 -0.2,0.54 -0.43,-0.01 -0.87,-0.02 -1.3,0 0.02,-0.22 0.06,-0.43 0.12,-0.64 0.03,-0.11 0.08,-0.21 0.12,-0.32 0.47,0 0.94,-0.01 1.42,-0.01 -0.06,0.14 -0.11,0.28 -0.16,0.43 z m -1.74,-0.2 c -0.07,0.24 -0.12,0.5 -0.15,0.75 -0.17,0.01 -0.33,0.01 -0.5,0.01 -0.57,0 -1.15,-0.03 -1.72,-0.07 0.03,-0.18 0.07,-0.36 0.13,-0.53 0.06,-0.15 0.14,-0.3 0.22,-0.44 0.7,0.02 1.41,0.04 2.11,0.04 -0.02,0.09 -0.06,0.16 -0.09,0.24 z m -2.68,0.68 c -0.22,-0.02 -0.44,-0.03 -0.65,-0.04 -0.47,-0.03 -0.94,-0.1 -1.42,-0.14 0.05,-0.16 0.09,-0.32 0.16,-0.48 0.06,-0.12 0.13,-0.23 0.2,-0.35 0.15,0.01 0.29,0.02 0.44,0.02 0.53,0.02 1.05,0.02 1.58,0.03 -0.16,0.3 -0.27,0.63 -0.31,0.96 z m -2.23,-0.8 c -0.08,0.18 -0.14,0.38 -0.2,0.57 -0.52,-0.06 -1.03,-0.12 -1.55,-0.19 0.02,-0.03 0.03,-0.06 0.05,-0.09 0.15,-0.21 0.32,-0.41 0.49,-0.61 0.45,0.02 0.9,0.06 1.34,0.08 -0.03,0.08 -0.09,0.16 -0.13,0.24 z m -1.94,0.09 c -0.05,0.08 -0.09,0.16 -0.15,0.24 -0.56,-0.08 -1.13,-0.16 -1.68,-0.26 0,0 -0.01,0 -0.01,0 0.21,-0.18 0.45,-0.33 0.68,-0.49 0.51,0.03 1.01,0.06 1.52,0.09 -0.12,0.13 -0.25,0.27 -0.36,0.42 z m -2.25,-0.1 c -0.53,-0.09 -1.06,-0.2 -1.59,-0.31 0.12,-0.1 0.25,-0.2 0.39,-0.29 0.6,0.05 1.2,0.12 1.8,0.16 -0.21,0.14 -0.41,0.28 -0.6,0.44 z m -1.91,-0.37 c -0.21,-0.05 -0.42,-0.08 -0.63,-0.13 -0.1,-0.02 -0.14,0.13 -0.04,0.16 0.17,0.05 0.35,0.08 0.52,0.13 -0.18,0.17 -0.35,0.35 -0.51,0.54 -0.29,-0.12 -0.57,-0.23 -0.84,-0.37 0.2,-0.25 0.41,-0.47 0.64,-0.69 0.4,0.04 0.8,0.07 1.19,0.11 -0.12,0.07 -0.23,0.15 -0.33,0.25 z m -1.82,0.14 c -0.13,-0.07 -0.25,-0.14 -0.37,-0.21 0.14,-0.12 0.27,-0.25 0.41,-0.39 0.15,0.02 0.29,0.03 0.44,0.04 -0.18,0.18 -0.34,0.37 -0.48,0.56 z m -15.05,14.65 c -0.33,0.24 -0.61,0.4 -1.02,0.49 -0.88,0.19 -1.85,0.14 -2.74,0.13 -0.89,-0.01 -1.86,0.01 -2.74,-0.17 -0.06,-0.01 -0.13,-0.03 -0.2,-0.05 0,-0.05 0,-0.1 0,-0.15 0,-0.16 0,-0.32 0,-0.48 -0.01,-0.35 -0.02,-0.69 -0.04,-1.04 -0.03,-0.64 -0.06,-1.29 -0.09,-1.93 0.39,0.06 0.77,0.1 1.16,0.13 -0.01,0.02 -0.03,0.03 -0.03,0.05 0,0.06 -0.01,0.11 -0.01,0.17 -0.1,0 -0.14,0.15 -0.03,0.17 0.01,0 0.01,0 0.02,0 -0.03,0.35 -0.05,0.71 -0.08,1.06 -0.02,0.23 -0.03,0.47 -0.05,0.7 -0.01,0.11 -0.01,0.22 -0.02,0.33 -0.01,0.12 -0.03,0.25 0,0.37 0.05,0.17 0.26,0.14 0.32,0 0.05,-0.11 0.04,-0.25 0.04,-0.37 0.01,-0.11 0.01,-0.22 0.02,-0.33 0.01,-0.23 0.02,-0.47 0.03,-0.7 0.01,-0.12 0.01,-0.24 0.02,-0.36 0.01,0.05 0.02,0.11 0.04,0.16 0.06,0.11 0.21,0.07 0.25,-0.03 0,0 0,0 0,-0.01 0.01,0.01 0.02,0.03 0.05,0.03 0.14,0.03 0.28,0.03 0.42,0.06 0,0.22 0.05,0.43 0.16,0.62 0.05,0.08 0.11,0.15 0.17,0.22 -0.3,0.01 -0.59,0.01 -0.89,0.01 -0.11,0 -0.11,0.17 0,0.17 0.37,0 0.73,0.02 1.1,0.03 0.07,0.05 0.16,0.09 0.23,0.07 0.03,-0.01 0.05,-0.03 0.06,-0.06 0.26,0.01 0.51,0.01 0.77,0.02 0.01,0.09 0,0.18 0.01,0.27 0.02,0.14 0.2,0.14 0.21,0 0.01,-0.09 0.01,-0.17 0.01,-0.26 0.11,0 0.22,0.01 0.34,0.01 0.32,0.01 0.63,0.01 0.95,0.02 0.01,0.2 0.02,0.4 0.06,0.59 0.03,0.11 0.21,0.12 0.23,0 0.03,-0.19 0.03,-0.39 0.02,-0.59 0.03,0 0.06,0 0.1,0 0.1,0 0.21,0 0.32,0.01 0.01,0.24 0.02,0.49 0.06,0.73 0.01,0.08 0.14,0.08 0.15,0 0.04,-0.24 0.05,-0.48 0.06,-0.72 0.24,0 0.48,-0.01 0.71,-0.06 0.11,-0.03 0.11,-0.19 0,-0.22 -0.22,-0.06 -0.45,-0.07 -0.68,-0.07 0,-0.25 0,-0.5 0,-0.75 0.01,0 0.02,0 0.03,0 0.27,-0.04 0.55,-0.09 0.83,-0.16 0.02,0.14 0.05,0.28 0.13,0.39 0.01,0.01 0.02,0.01 0.03,0.01 0,0.03 0,0.06 0,0.09 0,0.33 -0.02,0.67 0.02,1 -0.03,0.03 -0.06,0.07 -0.09,0.1 -0.14,0.14 -0.29,0.21 -0.42,0.3 z m -1.15,-0.95 c -0.04,0 -0.07,0 -0.11,0 0,-0.03 0,-0.06 0,-0.09 -0.01,-0.2 -0.02,-0.4 -0.02,-0.6 0.15,-0.01 0.29,-0.02 0.44,-0.04 0,0.24 -0.01,0.48 0,0.72 -0.11,0.01 -0.22,0.01 -0.31,0.01 z m -2.84,0.04 c -0.04,-0.03 -0.09,-0.05 -0.12,-0.08 -0.08,-0.07 -0.16,-0.15 -0.21,-0.25 -0.09,-0.14 -0.14,-0.31 -0.15,-0.47 0.46,0.07 0.91,0.11 1.37,0.13 -0.01,0.22 0,0.44 0,0.66 -0.3,0 -0.59,0 -0.89,0.01 z m -1.16,-1.45 c 0,-0.06 -0.01,-0.13 -0.01,-0.19 0.35,0.06 0.71,0.1 1.06,0.13 -0.01,0.18 -0.01,0.37 0.02,0.55 -0.15,-0.01 -0.29,-0.03 -0.44,-0.05 -0.03,-0.04 -0.1,-0.05 -0.14,-0.02 -0.13,-0.02 -0.26,-0.02 -0.4,-0.04 -0.04,-0.01 -0.06,0.01 -0.09,0.03 0.02,-0.14 0.01,-0.29 0,-0.41 z m 2.31,0.78 c 0.28,0.01 0.55,0.03 0.83,0.02 0.14,-0.01 0.28,-0.03 0.41,-0.04 0.01,0.19 0.01,0.38 0.02,0.57 0,0.03 0,0.06 0,0.09 -0.31,0 -0.63,0.01 -0.94,0.01 -0.11,0 -0.22,0 -0.33,0.01 0.01,-0.23 0.02,-0.44 0.01,-0.66 z m 2.3,-0.41 c 0,-0.27 0,-0.54 0,-0.81 0.21,-0.06 0.44,-0.13 0.66,-0.21 0.02,0.13 0.05,0.26 0.07,0.39 0.03,0.16 0.06,0.31 0.09,0.47 -0.24,0.05 -0.48,0.11 -0.72,0.15 -0.04,0.01 -0.07,0.01 -0.1,0.01 z m 1.05,-0.47 c -0.01,-0.07 -0.03,-0.14 -0.05,-0.21 -0.03,-0.15 -0.06,-0.29 -0.09,-0.44 0.05,-0.02 0.09,-0.05 0.14,-0.07 0,0.25 0,0.49 0,0.72 z m 0.02,-1.63 c 0.01,0.03 0.01,0.07 0.02,0.1 -0.02,0.18 -0.03,0.36 -0.04,0.54 -0.07,0.02 -0.14,0.04 -0.21,0.07 -0.03,-0.15 -0.07,-0.31 -0.1,-0.46 -0.03,-0.16 -0.27,-0.09 -0.24,0.07 0.03,0.16 0.06,0.32 0.09,0.48 -0.2,0.07 -0.4,0.15 -0.6,0.21 0,-0.2 0,-0.4 0,-0.61 0.2,-0.12 0.42,-0.23 0.66,-0.3 0.13,-0.05 0.28,-0.07 0.42,-0.1 z m -1.38,2.14 c -0.15,0.02 -0.3,0.03 -0.45,0.05 0,-0.06 0,-0.11 -0.01,-0.17 l -0.02,-0.57 c 0.16,-0.03 0.32,-0.05 0.48,-0.09 0,0.26 0,0.52 0,0.78 z m -0.76,-0.12 c 0,0.07 0,0.14 0.01,0.21 -0.14,0.01 -0.27,0.04 -0.41,0.05 -0.28,0.02 -0.56,0 -0.84,0 0,-0.07 0,-0.14 -0.01,-0.21 0,-0.13 0,-0.26 0,-0.39 0.2,-0.01 0.4,-0.02 0.6,-0.04 0.21,-0.02 0.42,-0.08 0.63,-0.12 0.01,0.16 0.01,0.33 0.02,0.5 z m -1.48,0.04 c 0,0.07 0,0.14 -0.01,0.21 -0.25,-0.01 -0.5,-0.02 -0.76,-0.04 0.05,-0.18 0.07,-0.37 0.08,-0.56 0.23,0.01 0.46,0.02 0.69,0.01 0,0.13 0,0.25 0,0.38 z m -0.67,-0.62 c 0.01,-0.11 0.01,-0.21 0.02,-0.32 0.22,0 0.44,0 0.66,-0.02 0,0.11 0,0.21 0,0.32 -0.23,0.02 -0.45,0.02 -0.68,0.02 z m -0.33,-0.01 c -0.36,-0.01 -0.73,-0.05 -1.09,-0.1 0,-0.05 -0.01,-0.1 -0.01,-0.14 0,-0.04 -0.01,-0.08 -0.01,-0.11 0.37,0.03 0.75,0.04 1.12,0.04 0,0.1 -0.01,0.2 -0.01,0.31 z m 3.52,-1.36 c -0.01,-0.02 -0.01,-0.04 -0.02,-0.06 0.05,0 0.1,-0.01 0.16,-0.01 -0.05,0.02 -0.1,0.04 -0.14,0.07 z m -0.27,0.04 c 0,0.06 0,0.11 0,0.17 -0.09,0.07 -0.2,0.14 -0.28,0.22 -0.11,0.11 0.06,0.28 0.17,0.17 0.03,-0.03 0.07,-0.05 0.11,-0.07 0,0.16 0,0.31 0,0.47 -0.16,0.04 -0.33,0.07 -0.5,0.1 L 254.78,532 c 0.2,-0.01 0.39,-0.02 0.59,-0.03 -0.02,0.01 -0.04,0.04 -0.04,0.08 z m -0.83,-0.04 c 0.01,0.38 0.02,0.77 0.04,1.15 -0.22,0.04 -0.44,0.11 -0.67,0.14 -0.18,0.02 -0.37,0.03 -0.56,0.05 0,-0.11 0,-0.22 0,-0.33 0.19,-0.02 0.37,-0.04 0.56,-0.08 0.09,-0.02 0.06,-0.14 -0.02,-0.15 -0.18,-0.02 -0.36,-0.02 -0.54,-0.02 0,-0.13 0,-0.25 0,-0.38 0,-0.14 -0.21,-0.14 -0.21,0 0,0.12 0,0.25 0,0.37 -0.22,0 -0.43,0 -0.65,0 0,-0.01 0,-0.01 0,-0.02 0.01,-0.24 0.02,-0.48 0.03,-0.71 0.67,0 1.35,0 2.02,-0.02 z m -2.39,0.71 c 0,0 0,0.01 0,0.01 -0.39,-0.01 -0.78,-0.03 -1.17,-0.05 -0.02,-0.21 -0.03,-0.42 -0.05,-0.63 0,-0.05 -0.03,-0.09 -0.06,-0.12 0.44,0.03 0.88,0.05 1.32,0.07 -0.01,0.24 -0.02,0.48 -0.04,0.72 z m -3.09,0.05 c 0,0.12 0.01,0.25 0.01,0.37 -0.01,-0.04 -0.03,-0.07 -0.04,-0.11 -0.03,-0.09 -0.04,-0.19 -0.07,-0.28 0.04,0.01 0.07,0.02 0.1,0.02 z m 61.31,-4.26 c -0.06,0.02 -0.12,0.04 -0.18,0.06 -0.15,-0.15 -0.31,-0.3 -0.46,-0.43 -0.13,-0.11 -0.27,-0.21 -0.41,-0.31 0.01,-0.01 0.03,-0.01 0.04,-0.02 0.03,0.02 0.06,0.04 0.09,0.05 0.37,0.22 0.78,0.39 1.19,0.56 -0.1,0.03 -0.19,0.07 -0.27,0.09 z m -2.11,-1.38 c -0.23,-0.13 -0.47,-0.24 -0.7,-0.35 0.03,-0.03 0.06,-0.05 0.09,-0.08 0.01,0 0.01,-0.01 0.02,-0.01 0.04,0.04 0.07,0.09 0.12,0.12 0.11,0.08 0.22,0.12 0.34,0.15 0.19,0.17 0.4,0.32 0.61,0.46 -0.16,-0.1 -0.31,-0.2 -0.48,-0.29 z m -0.1,-7.74 c -0.31,0.37 -0.48,0.81 -0.5,1.26 -0.2,0.39 -0.23,0.9 -0.28,1.3 -0.04,0.3 -0.04,0.6 -0.06,0.89 -0.08,-0.01 -0.16,-0.02 -0.23,-0.03 -0.01,0 -0.01,-0.01 -0.02,-0.01 -0.02,0 -0.03,0.01 -0.05,0.01 -0.24,-0.03 -0.47,-0.06 -0.71,-0.08 -0.37,-0.04 -0.74,-0.09 -1.12,-0.11 -0.23,-0.69 -0.56,-1.34 -1.08,-1.86 -0.25,-0.25 -0.54,-0.46 -0.84,-0.64 1.7,-0.27 3.4,-0.57 5.09,-0.93 -0.07,0.07 -0.14,0.13 -0.2,0.2 z m 11.38,-3.34 c 0.02,0.01 0.03,0.03 0.05,0.03 0.3,0.03 0.61,0.06 0.91,0.09 0.09,0.01 0.18,0.02 0.27,0.03 v 0.41 c 0,0.04 0,0.08 0,0.13 -0.06,0.01 -0.13,0.02 -0.19,0.03 -0.17,0.01 -0.35,-0.01 -0.52,-0.03 -0.03,-0.12 -0.18,-0.13 -0.23,-0.03 -0.26,-0.06 -0.49,-0.16 -0.72,-0.29 0,-0.07 -0.01,-0.13 -0.01,-0.2 0.15,-0.06 0.29,-0.11 0.44,-0.17 z m 0.35,2.2 c 0.01,0.15 0.02,0.3 0.02,0.46 -0.1,-0.01 -0.19,-0.01 -0.29,-0.03 -0.15,-0.02 -0.29,-0.07 -0.43,-0.11 -0.01,-0.25 -0.02,-0.5 -0.03,-0.75 0,-0.02 0,-0.03 0,-0.05 0.22,0.09 0.44,0.18 0.67,0.24 0.01,0 0.03,0.01 0.04,0.01 0.01,0.08 0.01,0.15 0.02,0.23 z m -0.94,0.73 c 0.01,0.29 0.01,0.58 0.04,0.87 -0.06,-0.03 -0.11,-0.05 -0.17,-0.08 -0.09,-0.06 -0.16,0.02 -0.16,0.1 -0.06,-0.03 -0.12,-0.05 -0.17,-0.08 -0.03,-0.02 -0.06,0 -0.08,0.02 0.02,-0.43 0.01,-0.86 -0.02,-1.28 0.16,0.09 0.32,0.19 0.49,0.25 0.02,0.01 0.04,0.01 0.06,0.02 0,0.05 0.01,0.12 0.01,0.18 z m 0.87,-1.97 c 0.01,0.25 0.03,0.51 0.04,0.76 -0.24,-0.07 -0.48,-0.15 -0.71,-0.25 -0.01,-0.25 -0.02,-0.5 -0.03,-0.75 0.23,0.11 0.46,0.19 0.7,0.24 z m -1.23,-0.61 c 0.09,0.07 0.19,0.13 0.28,0.19 0.01,0.26 0.02,0.53 0.03,0.79 -0.13,-0.07 -0.27,-0.13 -0.4,-0.21 -0.12,-0.08 -0.23,0.11 -0.11,0.19 0.17,0.11 0.34,0.2 0.52,0.28 0,0.07 0,0.15 0.01,0.22 0.01,0.21 0.01,0.42 0.02,0.63 -0.2,-0.08 -0.39,-0.17 -0.56,-0.29 -0.02,-0.21 -0.03,-0.42 -0.05,-0.63 -0.03,-0.35 -0.06,-0.7 -0.08,-1.05 0.11,-0.04 0.22,-0.08 0.34,-0.12 z m -0.64,0.22 c 0.01,0 0.01,-0.01 0.02,-0.01 0.02,0.33 0.04,0.67 0.06,1 0.01,0.12 0.02,0.23 0.02,0.35 -0.06,-0.05 -0.12,-0.09 -0.18,-0.14 -0.01,-0.38 -0.02,-0.75 -0.05,-1.13 0,-0.01 0,-0.02 0,-0.02 0.01,0 0.01,-0.01 0.01,-0.02 0.05,-0.01 0.09,-0.02 0.12,-0.03 z m 4.66,-1.89 c 0.01,0.64 0.03,1.29 0.05,1.93 0.02,0.64 0.04,1.29 0.07,1.93 0.02,0.62 -0.01,1.29 0.1,1.91 -0.18,0.1 -0.36,0.19 -0.54,0.27 -0.59,0.25 -1.25,0.36 -1.9,0.37 -0.69,0 -1.38,-0.12 -2.03,-0.36 -0.16,-0.06 -0.3,-0.13 -0.45,-0.21 -0.01,-0.8 -0.01,-1.6 -0.02,-2.4 0.06,0.05 0.13,0.11 0.19,0.16 0.04,0.52 0.08,1.04 0.19,1.55 0.01,0.07 0.09,0.05 0.12,0 0,0.02 -0.01,0.04 0.01,0.06 0.35,0.21 0.74,0.37 1.13,0.46 0.2,0.04 0.39,0.07 0.59,0.08 0.2,0.01 0.42,0.03 0.62,-0.03 0.11,-0.04 0.08,-0.19 -0.03,-0.2 -0.08,-0.01 -0.16,0 -0.25,0 0.06,-0.05 0.02,-0.17 -0.05,-0.18 -0.14,-0.03 -0.29,0.01 -0.43,0.01 -0.13,0.01 -0.27,0 -0.4,-0.02 -0.13,-0.02 -0.25,-0.05 -0.37,-0.1 0.03,-0.35 -0.01,-0.71 -0.02,-1.06 0,-0.01 0,-0.02 0,-0.02 0.11,0.03 0.22,0.08 0.34,0.1 0.12,0.02 0.25,0.04 0.38,0.05 0.01,0.1 0.01,0.2 0.02,0.3 0.02,0.13 0.01,0.27 0.06,0.39 0.03,0.08 0.15,0.09 0.17,0 0.05,-0.22 0.02,-0.49 0.01,-0.71 0,0 0,0 0,0 0.03,0 0.05,0 0.08,-0.01 0.12,-0.03 0.12,-0.22 0,-0.24 -0.03,-0.01 -0.06,-0.01 -0.09,-0.01 -0.01,-0.16 -0.02,-0.32 -0.03,-0.48 0,-0.06 -0.01,-0.11 -0.01,-0.17 0.41,0.09 0.86,0.15 1.26,0.08 0.12,-0.02 0.08,-0.19 -0.03,-0.2 -0.25,-0.03 -0.51,-0.02 -0.76,-0.05 -0.17,-0.02 -0.33,-0.06 -0.49,-0.09 -0.01,-0.26 -0.03,-0.53 -0.04,-0.79 0.16,0.02 0.32,0.05 0.48,0.04 0.07,0 0.14,-0.02 0.21,-0.03 0,0.13 0.01,0.27 0.02,0.4 0.01,0.09 0.17,0.09 0.19,0 0.02,-0.15 0.03,-0.3 0.02,-0.45 0.1,-0.03 0.19,-0.06 0.27,-0.11 0.08,-0.06 0.06,-0.21 -0.06,-0.2 -0.07,0 -0.15,0.02 -0.22,0.03 0,-0.03 0,-0.06 0,-0.09 0,-0.13 0,-0.26 0,-0.39 0.13,0.01 0.29,0.04 0.41,0 0.09,-0.03 0.12,-0.16 0.03,-0.22 -0.12,-0.07 -0.29,-0.06 -0.43,-0.08 0,-0.05 0,-0.1 0,-0.14 0,-0.15 -0.23,-0.15 -0.23,0 v 0.13 c -0.09,-0.01 -0.17,-0.02 -0.26,-0.02 -0.15,-0.01 -0.31,-0.02 -0.46,-0.04 0.88,-0.36 1.74,-0.77 2.55,-1.25 0.03,0.01 0.03,0.06 0.03,0.1 z m 0.53,-2.33 c 0,-0.13 -0.02,-0.26 -0.03,-0.38 -0.01,-0.18 0,-0.36 0.02,-0.53 0.05,-0.35 0.15,-0.69 0.31,-1 0.08,-0.16 -0.16,-0.3 -0.24,-0.14 -0.18,0.34 -0.31,0.72 -0.37,1.1 -0.03,0.19 -0.05,0.38 -0.05,0.57 0,0.19 0,0.4 0.09,0.57 -0.23,0.17 -0.46,0.33 -0.7,0.48 0.02,-0.14 0.02,-0.28 0.01,-0.42 0,-0.19 0,-0.39 -0.01,-0.58 0,-0.39 -0.01,-0.77 -0.01,-1.16 0,-0.03 -0.02,-0.04 -0.03,-0.06 0.59,-0.3 1.16,-0.64 1.68,-1.01 0.02,0.3 0.05,0.6 0.07,0.9 0.01,0.16 0.02,0.32 0.04,0.47 0.01,0.08 0.02,0.16 0.03,0.25 0.01,0.07 0.03,0.12 0.06,0.16 -0.27,0.27 -0.56,0.54 -0.87,0.78 z m 1.15,-1.07 c 0,-0.06 -0.01,-0.11 -0.01,-0.16 -0.02,-0.15 -0.03,-0.3 -0.05,-0.46 -0.03,-0.32 -0.07,-0.63 -0.1,-0.95 0,-0.04 -0.02,-0.08 -0.05,-0.11 0.38,-0.3 0.73,-0.62 1.05,-0.98 -0.01,0.27 -0.02,0.53 -0.02,0.8 -0.01,0.28 -0.01,0.57 -0.01,0.85 -0.14,0.22 -0.29,0.43 -0.46,0.63 -0.12,0.14 -0.24,0.26 -0.35,0.38 z m 0.65,-7.27 c -0.01,0.02 -0.02,0.04 -0.02,0.07 -0.01,-0.07 -0.01,-0.14 -0.02,-0.2 0.01,-0.15 0.02,-0.3 0.02,-0.46 0.01,0.2 0.02,0.39 0.02,0.59 z m -4.3,1.83 c -0.9,0.1 -1.87,0.17 -2.75,-0.05 -0.34,-0.08 -0.68,-0.17 -1,-0.31 -0.01,-0.29 -0.09,-0.59 -0.13,-0.88 -0.03,-0.19 -0.03,-0.38 -0.05,-0.57 0.24,0.05 0.46,0.08 0.65,0.11 0.99,0.14 2.01,0.19 3.01,0.15 1.18,-0.04 2.44,-0.37 3.31,-1.12 0,0.12 0,0.24 0,0.36 -0.01,0.37 -0.03,0.74 -0.06,1.11 -0.18,0.27 -0.41,0.49 -0.7,0.65 -0.68,0.38 -1.53,0.47 -2.28,0.55 z m -1.61,-8.69 c -0.14,-0.03 -0.27,-0.08 -0.4,-0.13 -0.01,-0.12 -0.08,-0.21 -0.19,-0.27 0,-0.01 0,-0.02 0,-0.03 0.25,0.03 0.49,0.05 0.74,0.08 0.3,0.03 0.6,0.08 0.89,0.06 0.16,-0.01 0.21,-0.25 0.04,-0.29 -0.3,-0.07 -0.61,-0.08 -0.92,-0.11 -0.25,-0.02 -0.51,-0.04 -0.76,-0.06 -0.02,-0.47 -0.06,-0.94 -0.09,-1.4 -0.01,-0.17 -0.03,-0.34 -0.05,-0.51 0.08,0.04 0.16,0.07 0.24,0.1 0.5,0.2 1.06,0.29 1.6,0.29 0.54,0 1.09,-0.09 1.6,-0.28 0.27,-0.1 0.55,-0.23 0.8,-0.4 -0.01,0.31 -0.01,0.62 -0.01,0.93 0,0.01 0,0.01 0,0.02 -0.01,-0.01 -0.02,-0.03 -0.03,-0.04 -0.08,-0.04 -0.19,-0.04 -0.26,0.03 -0.02,0.02 -0.03,0.03 -0.05,0.05 0.01,-0.01 -0.04,0.06 -0.06,0.08 0.01,-0.01 0.02,-0.02 0,0.01 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 -0.01,0.01 -0.01,0.02 -0.02,0.02 -0.02,0.02 -0.03,0.04 -0.05,0.06 -0.03,0.04 -0.07,0.07 -0.11,0.1 -0.01,0.01 -0.02,0.01 -0.02,0.02 -0.02,0.01 -0.04,0.03 -0.06,0.04 -0.02,0.01 -0.04,0.02 -0.06,0.04 -0.01,0 -0.02,0.01 -0.03,0.01 0,0 0,0 -0.01,0 0,0 0,0 0.01,0 -0.04,0.01 -0.09,0.03 -0.13,0.04 -0.02,0.01 -0.05,0.01 -0.07,0.02 -0.01,0 -0.02,0 -0.01,0 0,0 -0.01,0 -0.01,0 -0.05,0 -0.1,0 -0.15,0 -0.12,-0.01 -0.23,0.11 -0.22,0.22 0.01,0.13 0.1,0.21 0.22,0.22 0.24,0.02 0.5,-0.04 0.71,-0.16 0.18,-0.1 0.35,-0.27 0.44,-0.46 0,0.26 0.01,0.52 0.01,0.78 0,0.08 0,0.17 0,0.26 -0.12,0.06 -0.19,0.17 -0.22,0.29 -0.23,0.1 -0.46,0.22 -0.69,0.29 -0.42,0.13 -0.84,0.19 -1.27,0.2 -0.48,0.02 -0.91,-0.01 -1.35,-0.12 z m -0.14,-4.14 c 0.46,-0.17 0.87,-0.23 1.35,-0.23 0.45,0.01 0.9,0.09 1.35,0.24 0.16,0.05 0.3,0.14 0.44,0.21 -0.21,0.11 -0.41,0.23 -0.63,0.3 -0.42,0.14 -0.8,0.2 -1.24,0.19 -0.43,-0.01 -0.83,-0.09 -1.26,-0.26 -0.15,-0.06 -0.29,-0.15 -0.44,-0.25 0.15,-0.06 0.3,-0.15 0.43,-0.2 z m -1.24,4.94 c 0.13,0.09 0.28,0.17 0.44,0.23 -0.09,0.06 -0.18,0.11 -0.26,0.19 -0.06,0.06 -0.06,0.16 0,0.22 0.06,0.06 0.16,0.06 0.22,0 0.15,-0.14 0.34,-0.22 0.54,-0.26 0.06,0.01 0.13,0.03 0.18,0.04 0.52,0.12 1.08,0.17 1.61,0.13 0.53,-0.04 1.05,-0.14 1.55,-0.32 l -0.03,0.03 c -0.08,0.06 -0.07,0.21 0,0.27 0.08,0.08 0.19,0.07 0.27,0 0.17,-0.14 0.33,-0.27 0.5,-0.41 0.04,-0.03 0.08,-0.07 0.12,-0.1 0.04,-0.03 0.07,-0.07 0.11,-0.11 0.01,-0.01 0.02,-0.03 0.03,-0.04 0.01,0.01 0.02,0.02 0.03,0.04 0.15,0.25 0.23,0.54 0.3,0.82 0.18,0.75 0.26,1.53 0.32,2.29 0.02,0.29 0.04,0.58 0.05,0.87 -0.08,0.11 -0.17,0.2 -0.27,0.3 0,0 0,0 0,0 -0.01,0 -0.01,0 -0.02,0 -0.06,0 -0.12,0.04 -0.17,0.07 l -0.25,0.13 c -0.11,0.06 -0.22,0.11 -0.34,0.17 -0.08,-0.18 -0.17,-0.35 -0.25,-0.53 -0.04,-0.09 -0.17,-0.11 -0.25,-0.07 -0.09,0.06 -0.11,0.16 -0.07,0.25 0.1,0.21 0.2,0.42 0.31,0.64 -0.76,0.29 -1.65,0.36 -2.4,0.33 -0.82,-0.03 -1.66,-0.07 -2.47,-0.22 -0.28,-0.05 -0.56,-0.12 -0.83,-0.21 0,-0.31 0.01,-0.61 0.03,-0.92 0.34,0.29 0.72,0.53 1.15,0.65 0.27,0.08 0.55,0.12 0.83,0.12 0.27,0 0.62,-0.02 0.85,-0.17 0.12,-0.07 0.07,-0.26 -0.07,-0.27 -0.12,0 -0.24,0.02 -0.37,0.04 -0.13,0.01 -0.26,0.01 -0.39,0.01 -0.26,-0.01 -0.5,-0.04 -0.75,-0.11 -0.47,-0.13 -0.88,-0.38 -1.23,-0.72 0.01,-0.06 0.01,-0.13 0.01,-0.19 0,-0.02 0.01,-0.05 0.01,-0.07 h 0.91 c 0.38,0 0.76,0.01 1.14,-0.02 0.16,-0.02 0.16,-0.23 0,-0.25 -0.38,-0.04 -0.76,-0.02 -1.14,-0.02 h -0.87 c 0.08,-0.64 0.18,-1.27 0.37,-1.89 0.13,-0.35 0.31,-0.68 0.55,-0.94 z m -11.58,9.52 c 0,-0.03 0,-0.05 0,-0.08 0,-0.25 0,-0.51 -0.01,-0.76 0,-0.18 -0.27,-0.18 -0.27,0 0,0.25 0,0.51 -0.01,0.76 0,0.06 0,0.12 0,0.19 -0.41,0.16 -0.83,0.31 -1.25,0.45 -0.02,-0.08 -0.04,-0.16 -0.07,-0.24 -0.05,-0.19 -0.11,-0.37 -0.16,-0.56 -0.03,-0.09 -0.12,-0.14 -0.21,-0.12 -0.09,0.02 -0.14,0.12 -0.12,0.21 0.05,0.19 0.1,0.37 0.16,0.56 0.02,0.09 0.05,0.17 0.08,0.26 -0.08,0.03 -0.15,0.06 -0.23,0.08 -0.51,0.16 -1.03,0.3 -1.55,0.43 0,-0.02 0,-0.04 -0.01,-0.06 -0.03,-0.23 -0.06,-0.45 -0.09,-0.68 -0.01,-0.08 -0.06,-0.15 -0.15,-0.15 -0.07,0 -0.16,0.07 -0.15,0.15 l 0.08,0.69 c 0.01,0.04 0.01,0.08 0.02,0.13 -0.49,0.12 -0.98,0.23 -1.47,0.33 0.01,-0.11 -0.04,-0.22 -0.08,-0.32 -0.04,-0.1 -0.09,-0.2 -0.13,-0.31 -0.09,-0.2 -0.17,-0.4 -0.26,-0.6 -0.01,-0.03 -0.05,-0.05 -0.08,-0.06 1.01,-0.18 2.02,-0.37 3.02,-0.59 1.3,-0.28 2.61,-0.62 3.85,-1.12 0,0.13 0,0.25 0.02,0.38 0.02,0.16 0.06,0.32 0.12,0.47 0,0.01 0.01,0.02 0.02,0.03 -0.36,0.19 -0.7,0.38 -1.07,0.53 z m -32.25,2.18 c -0.03,-0.1 -0.06,-0.21 -0.09,-0.31 -0.03,-0.09 -0.12,-0.14 -0.21,-0.12 -0.09,0.02 -0.14,0.12 -0.12,0.21 0.02,0.06 0.03,0.12 0.05,0.18 -0.02,0 -0.04,0 -0.06,-0.01 -0.76,-0.09 -1.51,-0.2 -2.26,-0.34 -0.07,-0.09 -0.14,-0.19 -0.2,-0.28 -0.05,-0.07 -0.13,-0.1 -0.21,-0.05 -0.07,0.04 -0.1,0.14 -0.05,0.21 0.01,0.02 0.02,0.03 0.03,0.05 -0.04,-0.01 -0.08,-0.02 -0.12,-0.03 -0.01,-0.07 -0.02,-0.14 -0.04,-0.21 -0.03,-0.14 -0.05,-0.28 -0.08,-0.42 -0.02,-0.08 -0.12,-0.13 -0.19,-0.11 -0.08,0.03 -0.13,0.11 -0.11,0.19 0.03,0.14 0.06,0.27 0.09,0.41 0,0.02 0.01,0.04 0.01,0.06 -0.29,-0.06 -0.58,-0.14 -0.87,-0.21 0,-0.03 -0.01,-0.06 -0.01,-0.09 -0.03,-0.23 -0.05,-0.46 -0.08,-0.69 -0.01,-0.08 -0.06,-0.15 -0.15,-0.15 -0.08,0 -0.16,0.07 -0.15,0.15 0.02,0.23 0.05,0.47 0.07,0.7 0,0 0,0 0,0 -0.19,-0.05 -0.39,-0.08 -0.58,-0.14 -0.18,-0.05 -0.34,-0.12 -0.52,-0.18 0.01,-0.02 0.03,-0.04 0.03,-0.07 0.01,-0.27 0.02,-0.54 0.02,-0.81 0,-0.08 -0.07,-0.16 -0.16,-0.16 -0.08,0 -0.16,0.07 -0.16,0.16 0.01,0.27 0.02,0.53 0.02,0.8 -0.39,-0.14 -0.78,-0.3 -1.16,-0.48 -0.02,-0.07 -0.05,-0.13 -0.07,-0.19 -0.06,-0.19 -0.1,-0.38 -0.13,-0.57 -0.03,-0.21 -0.04,-0.43 -0.04,-0.65 1.42,0.75 3.03,1.2 4.57,1.47 3.53,0.61 7.11,0.89 10.69,1.03 6.14,0.23 12.32,-0.14 18.39,-1.2 -0.06,0.05 -0.07,0.12 -0.04,0.19 0.08,0.2 0.17,0.39 0.25,0.59 0.04,0.1 0.08,0.2 0.12,0.29 0.04,0.08 0.08,0.17 0.15,0.24 -1.77,0.36 -3.56,0.62 -5.36,0.78 -7.05,0.66 -14.22,0.55 -21.27,-0.24 z m -12.48,-0.9 c -0.36,0.15 -0.9,0.23 -1.28,0.17 -0.93,-0.14 -1.66,-0.96 -1.77,-1.92 -0.04,-0.34 0.05,-0.68 0.22,-0.98 0.03,0.07 0.1,0.11 0.17,0.06 0.12,-0.09 0.24,-0.17 0.35,-0.27 0.1,-0.09 0.19,-0.17 0.29,-0.26 0.48,-0.04 0.94,-0.34 1.42,-0.46 0.51,-0.13 0.99,-0.07 1.39,0.22 0.8,0.57 0.84,1.71 0.3,2.54 -0.28,0.42 -0.63,0.7 -1.09,0.9 z m -6.62,-15.76 c -0.21,-0.21 -0.4,-0.43 -0.58,-0.67 0.17,-0.19 0.33,-0.38 0.5,-0.56 0.2,-0.21 0.41,-0.41 0.61,-0.62 0.16,0.34 0.38,0.68 0.64,0.95 -0.11,0.11 -0.25,0.21 -0.35,0.33 -0.21,0.24 -0.4,0.5 -0.58,0.77 -0.08,-0.07 -0.17,-0.13 -0.24,-0.2 z m -0.14,-7.48 c 0.18,0.15 0.37,0.29 0.55,0.44 -0.16,0.11 -0.31,0.22 -0.47,0.32 -0.08,0.06 -0.17,0.12 -0.25,0.18 -0.2,-0.13 -0.39,-0.27 -0.6,-0.39 0.02,-0.02 0.05,-0.03 0.08,-0.05 0.18,-0.13 0.37,-0.26 0.56,-0.4 0.04,-0.03 0.09,-0.07 0.13,-0.1 z m 0.26,0.97 c 0.17,-0.12 0.34,-0.24 0.51,-0.36 0.13,0.1 0.25,0.2 0.38,0.3 -0.2,0.16 -0.41,0.32 -0.61,0.49 -0.15,-0.1 -0.3,-0.2 -0.46,-0.3 0.06,-0.04 0.12,-0.08 0.18,-0.13 z m 4.06,-1.15 c 0.07,0.06 0.14,0.12 0.21,0.18 -0.31,0.24 -0.62,0.48 -0.93,0.72 -0.14,-0.11 -0.29,-0.2 -0.44,-0.31 0.36,-0.24 0.75,-0.44 1.16,-0.59 z m 5.11,0.29 c 0.01,0.01 0.03,0.03 0.04,0.04 -0.2,0.16 -0.41,0.33 -0.61,0.49 -0.15,0.12 -0.29,0.24 -0.44,0.36 -0.26,-0.28 -0.52,-0.57 -0.76,-0.86 0.02,0.05 0.09,0.07 0.12,0.01 0.07,-0.14 0.13,-0.27 0.22,-0.39 0.06,-0.09 -0.06,-0.19 -0.14,-0.14 -0.13,0.08 -0.26,0.18 -0.38,0.29 -0.11,-0.14 -0.23,-0.28 -0.33,-0.42 0.78,0.08 1.57,0.29 2.28,0.62 z m 3.69,1.18 c 0.19,0.22 0.38,0.45 0.57,0.67 -0.16,0.13 -0.32,0.25 -0.48,0.38 -0.13,-0.35 -0.29,-0.7 -0.49,-1.02 0.08,-0.07 0.17,-0.14 0.25,-0.21 0.04,0.07 0.1,0.12 0.15,0.18 z m 1.72,0.66 c -0.06,-0.09 -0.13,-0.17 -0.19,-0.26 -0.01,-0.02 -0.03,-0.04 -0.04,-0.06 0.03,-0.02 0.06,-0.05 0.08,-0.07 0.06,0.12 0.11,0.25 0.15,0.39 z m 0.93,5.05 c -0.13,0.04 -0.27,0.07 -0.4,0.12 0.12,-0.13 0.22,-0.28 0.3,-0.41 0.04,0.1 0.07,0.2 0.1,0.29 z m -14.96,4.75 c 0.27,-0.05 0.54,-0.1 0.81,-0.16 0,0 0,0 0,0 0.04,0.35 0.12,0.69 0.35,0.97 0.17,0.2 0.38,0.38 0.59,0.55 -0.02,0 -0.03,0 -0.05,0.01 -0.16,0.03 -0.32,0.07 -0.48,0.12 -0.12,0.04 -0.24,0.09 -0.36,0.15 -0.15,0.04 -0.31,0.07 -0.46,0.12 0.01,0.01 0.02,0.02 0.04,0.03 0.02,0.02 0.03,0.04 0.05,0.05 -0.11,0.07 -0.22,0.13 -0.32,0.21 -0.01,0.01 -0.01,0.04 -0.02,0.05 -0.07,-0.04 -0.15,-0.06 -0.23,-0.1 0.05,-0.59 0.06,-1.2 0.08,-1.79 0,-0.07 0,-0.14 0,-0.21 z m 0.59,-6.8 c 0,-0.01 0,-0.01 -0.01,-0.02 0.04,-0.03 0.07,-0.06 0.11,-0.1 0.13,0.12 0.27,0.23 0.39,0.35 0.17,0.16 0.33,0.34 0.49,0.52 -0.12,0.08 -0.24,0.13 -0.35,0.21 -0.26,-0.26 -0.49,-0.55 -0.63,-0.96 z m -0.87,-3.15 c 0.06,0.04 0.12,0.08 0.17,0.12 -0.02,0.04 -0.04,0.07 -0.05,0.1 -0.16,0.4 -0.26,0.82 -0.32,1.26 -0.04,0.03 -0.09,0.07 -0.13,0.1 -0.29,-0.2 -0.58,-0.41 -0.88,-0.59 0.38,-0.31 0.76,-0.62 1.14,-0.93 0.02,-0.03 0.05,-0.05 0.07,-0.06 z m 6.91,-1.45 c 0.23,0.29 0.48,0.58 0.73,0.86 -0.04,0.03 -0.07,0.06 -0.11,0.09 -0.37,-0.15 -0.75,-0.25 -1.16,-0.28 -0.06,0 -0.12,0.01 -0.18,0.01 0.2,-0.19 0.4,-0.37 0.59,-0.56 0.05,-0.04 0.09,-0.08 0.13,-0.12 z m 1.64,0.57 c 0.21,-0.18 0.42,-0.36 0.63,-0.53 0.23,0.22 0.46,0.44 0.68,0.66 -0.03,0.02 -0.05,0.05 -0.08,0.07 -0.31,0.28 -0.63,0.57 -0.94,0.85 0,0 0,0 0,0 -0.11,-0.1 -0.22,-0.2 -0.33,-0.3 -0.13,-0.13 -0.25,-0.27 -0.38,-0.4 0.15,-0.12 0.28,-0.24 0.42,-0.35 z m 5.24,5.59 c -0.25,0.55 -0.56,1.01 -0.99,1.43 -0.39,0.38 -0.88,0.71 -1.38,0.91 -0.04,0.01 -0.08,0.02 -0.12,0.03 0.25,-0.29 0.5,-0.58 0.77,-0.85 0.53,-0.55 1.11,-1.06 1.72,-1.53 0,0 0,0.01 0,0.01 z m -2.59,3.75 c -0.08,0.11 -0.15,0.22 -0.22,0.33 -0.15,0 -0.3,0.03 -0.44,0.05 -0.01,0 -0.01,0 -0.02,0 -0.01,-0.01 -0.01,-0.03 -0.03,-0.03 -0.03,0 -0.03,0.03 -0.04,0.04 -0.06,0.01 -0.11,0.03 -0.17,0.04 -0.02,-0.12 -0.04,-0.23 -0.07,-0.35 0.32,0.05 0.66,0 0.99,-0.08 z m -4.78,-3.59 c -0.17,0.01 -0.17,0.27 0,0.26 0.73,-0.04 1.4,0.34 1.8,0.93 -1.15,-0.56 -2.39,-0.72 -3.65,-0.38 -0.42,0.11 -0.83,0.29 -1.22,0.49 0.02,-0.08 0.06,-0.16 0.11,-0.23 0.2,-0.26 0.56,-0.34 0.86,-0.22 0.08,0.03 0.17,-0.03 0.19,-0.11 0.02,-0.09 -0.03,-0.16 -0.11,-0.19 -0.31,-0.13 -0.69,-0.08 -0.97,0.11 -0.27,0.18 -0.44,0.51 -0.44,0.84 -0.03,0.02 -0.06,0.03 -0.09,0.05 0.02,-0.17 0.05,-0.34 0.07,-0.51 0.01,-0.09 0.01,-0.18 0.01,-0.28 0.15,-0.18 0.32,-0.35 0.51,-0.48 0.43,-0.32 0.94,-0.54 1.47,-0.61 0.18,-0.02 0.18,-0.3 0,-0.28 -0.59,0.07 -1.16,0.28 -1.65,0.63 -0.12,0.08 -0.21,0.19 -0.31,0.29 0.01,-0.19 0.03,-0.39 0.03,-0.58 0.19,-0.25 0.39,-0.48 0.62,-0.69 0.48,-0.45 1.05,-0.82 1.66,-1.06 0.18,-0.07 0.11,-0.37 -0.08,-0.3 -0.67,0.24 -1.3,0.61 -1.82,1.09 -0.14,0.12 -0.25,0.27 -0.37,0.41 -0.01,-0.23 -0.02,-0.46 -0.06,-0.69 0,0 0,-0.01 0,-0.01 0.11,-0.15 0.22,-0.31 0.36,-0.43 0.45,-0.37 1.03,-0.58 1.61,-0.54 0.17,0.01 0.17,-0.25 0,-0.26 -0.66,-0.06 -1.3,0.17 -1.81,0.58 -0.03,0.03 -0.06,0.06 -0.09,0.09 0.12,-0.32 0.22,-0.65 0.4,-0.95 0.08,-0.12 0.17,-0.22 0.26,-0.32 0.17,0.12 0.34,0.24 0.52,0.33 0.1,0.05 0.18,-0.06 0.11,-0.15 -0.12,-0.14 -0.27,-0.26 -0.41,-0.39 0.1,-0.09 0.2,-0.17 0.32,-0.25 0.17,-0.11 0.35,-0.2 0.54,-0.29 0.06,0.06 0.13,0.11 0.19,0.17 0.22,0.2 0.44,0.46 0.7,0.59 0.11,0.06 0.24,-0.06 0.18,-0.18 -0.15,-0.26 -0.41,-0.47 -0.63,-0.67 -0.02,-0.02 -0.05,-0.04 -0.07,-0.06 0.36,-0.12 0.73,-0.18 1.12,-0.14 0.08,0.01 0.15,0.04 0.23,0.05 0.03,0.04 0.07,0.07 0.13,0.05 0.01,0 0.02,-0.01 0.03,-0.01 0.37,0.1 0.71,0.28 1.01,0.52 0.07,0.17 0.13,0.34 0.2,0.51 0.09,0.22 0.17,0.44 0.27,0.65 0.03,0.06 0.13,0.02 0.11,-0.05 -0.06,-0.22 -0.15,-0.44 -0.22,-0.66 -0.02,-0.06 -0.04,-0.12 -0.06,-0.18 0.04,0.04 0.09,0.08 0.13,0.12 0.22,0.24 0.39,0.53 0.51,0.83 0.07,0.17 0.12,0.36 0.15,0.55 0.02,0.09 0.04,0.17 0.07,0.25 -0.03,-0.02 -0.06,-0.04 -0.1,-0.06 -0.05,-0.02 -0.09,-0.04 -0.14,-0.06 -0.09,-0.04 -0.19,-0.08 -0.28,-0.12 -0.19,-0.08 -0.38,-0.16 -0.57,-0.25 -0.05,-0.02 -0.12,-0.02 -0.15,0.04 -0.03,0.05 -0.01,0.12 0.04,0.15 0.19,0.09 0.38,0.17 0.57,0.26 0.1,0.04 0.19,0.09 0.29,0.13 0.05,0.02 0.09,0.04 0.14,0.07 0.05,0.02 0.1,0.04 0.16,0.05 0.05,0.01 0.07,-0.02 0.09,-0.05 0.03,0.07 0.06,0.14 0.09,0.21 -0.02,0.54 -0.04,1.07 -0.03,1.61 -0.02,-0.01 -0.03,-0.04 -0.05,-0.05 -0.09,-0.04 -0.18,-0.08 -0.27,-0.12 -0.19,-0.08 -0.37,-0.17 -0.56,-0.25 -0.37,-0.16 -0.73,-0.33 -1.1,-0.49 -0.15,-0.07 -0.28,0.15 -0.13,0.22 0.37,0.17 0.74,0.34 1.11,0.52 0.18,0.08 0.36,0.17 0.54,0.25 0.09,0.04 0.18,0.08 0.27,0.12 0.05,0.02 0.1,0.05 0.15,0.06 0.01,0 0.03,0 0.04,0 0,0.04 0,0.08 0,0.12 0,0.19 0,0.39 0,0.58 -0.06,0.12 -0.06,0.26 0,0.38 0,0.03 0,0.06 0,0.09 -0.09,-0.08 -0.19,-0.15 -0.29,-0.21 0.01,-0.02 0.02,-0.05 0,-0.07 -0.34,-0.86 -1.28,-1.44 -2.24,-1.37 z m -5.7,-2.49 c 0,-0.01 0,-0.01 0,-0.02 0.39,-0.32 0.79,-0.64 1.19,-0.96 0.09,0.07 0.17,0.15 0.26,0.22 -0.41,0.31 -0.81,0.64 -1.2,0.97 -0.08,-0.06 -0.16,-0.14 -0.25,-0.21 z m 2.07,-1.55 c 0.06,0.05 0.12,0.1 0.18,0.14 -0.04,0.06 -0.08,0.11 -0.12,0.17 -0.02,0 -0.04,0 -0.07,0.01 -0.11,0.08 -0.21,0.16 -0.32,0.24 -0.09,-0.07 -0.18,-0.15 -0.27,-0.22 0.17,-0.14 0.35,-0.27 0.53,-0.4 0.03,0.02 0.05,0.04 0.07,0.06 z m -0.86,0.14 c -0.16,-0.13 -0.33,-0.25 -0.49,-0.38 0,0 0.01,0 0.01,-0.01 0.17,-0.14 0.34,-0.27 0.52,-0.41 0.17,0.13 0.33,0.26 0.5,0.39 -0.18,0.15 -0.37,0.27 -0.54,0.41 z m -0.67,-0.64 c -0.03,0.02 -0.05,0.04 -0.08,0.06 -0.02,-0.02 -0.04,-0.03 -0.07,-0.05 0.1,-0.2 0.21,-0.39 0.33,-0.57 0.09,0.07 0.18,0.14 0.27,0.21 -0.15,0.12 -0.3,0.23 -0.45,0.35 z m -0.11,0.48 c 0.16,0.13 0.33,0.25 0.49,0.38 -0.31,0.25 -0.63,0.5 -0.94,0.75 0.01,-0.3 0.07,-0.6 0.15,-0.9 0.1,-0.07 0.2,-0.15 0.3,-0.23 z m 1.26,1.01 c 0.02,0.02 0.05,0.03 0.07,0.05 -0.05,0.13 -0.09,0.25 -0.11,0.38 -0.18,0.02 -0.34,0.14 -0.36,0.37 -0.02,0.28 -0.08,0.54 -0.1,0.82 -0.1,-0.1 -0.21,-0.2 -0.3,-0.29 -0.12,-0.12 -0.26,-0.22 -0.38,-0.33 0.37,-0.35 0.77,-0.68 1.18,-1 z m 7.64,-0.11 c 0.2,0.16 0.41,0.37 0.66,0.44 0.12,0.03 0.24,-0.11 0.17,-0.22 -0.13,-0.21 -0.37,-0.34 -0.56,-0.49 -0.06,-0.05 -0.12,-0.1 -0.18,-0.15 0.05,-0.05 0.1,-0.09 0.15,-0.14 0.28,-0.24 0.55,-0.47 0.82,-0.71 0.08,0.07 0.15,0.15 0.23,0.22 0.12,0.26 0.21,0.54 0.27,0.83 -0.01,0 -0.01,0.01 -0.02,0.01 -0.22,0.21 -0.43,0.44 -0.65,0.66 -0.01,-0.01 -0.02,-0.02 -0.03,-0.03 -0.1,-0.1 -0.25,0.05 -0.15,0.15 0.01,0.01 0.02,0.02 0.03,0.03 -0.1,0.1 -0.2,0.2 -0.3,0.31 -0.13,0.14 -0.26,0.29 -0.38,0.43 0.02,-0.14 0.03,-0.28 0,-0.45 -0.04,-0.25 -0.11,-0.49 -0.2,-0.73 -0.04,-0.09 -0.09,-0.18 -0.13,-0.27 0.03,-0.03 0.06,-0.05 0.09,-0.08 0.05,0.08 0.11,0.14 0.18,0.19 z m 1.64,0.57 c 0,0.17 -0.01,0.34 -0.03,0.51 -0.13,-0.14 -0.27,-0.27 -0.4,-0.41 0.14,-0.14 0.27,-0.29 0.41,-0.42 0,0.11 0.02,0.21 0.02,0.32 z m -0.1,0.85 c -0.02,0.11 -0.04,0.22 -0.08,0.32 -0.24,0.25 -0.49,0.5 -0.73,0.75 -0.2,0.21 -0.41,0.42 -0.61,0.63 -0.02,0.03 -0.05,0.05 -0.08,0.08 -0.01,-0.4 -0.02,-0.79 -0.05,-1.19 0.08,-0.09 0.15,-0.18 0.22,-0.26 0.17,-0.2 0.34,-0.39 0.52,-0.59 0.09,-0.1 0.18,-0.19 0.27,-0.28 0.18,0.18 0.36,0.36 0.54,0.54 z m -0.73,-2.92 -0.77,0.64 c -0.09,0.07 -0.17,0.14 -0.25,0.21 -0.04,-0.04 -0.09,-0.07 -0.13,-0.11 -0.22,-0.18 -0.42,-0.38 -0.63,-0.58 0.3,-0.27 0.6,-0.55 0.89,-0.82 0.04,-0.03 0.07,-0.07 0.11,-0.1 0.24,0.23 0.47,0.46 0.71,0.69 0.02,0.02 0.04,0.04 0.07,0.07 z m -7.26,0.01 c -0.14,0.14 -0.29,0.3 -0.43,0.48 -0.05,-0.04 -0.1,-0.07 -0.14,-0.11 -0.01,-0.01 -0.02,-0.02 -0.03,-0.03 0.27,-0.21 0.54,-0.41 0.81,-0.62 0.02,0.02 0.05,0.04 0.07,0.06 -0.09,0.08 -0.19,0.14 -0.28,0.22 z m -0.87,0.15 c -0.17,-0.13 -0.34,-0.26 -0.52,-0.39 0.28,-0.22 0.55,-0.44 0.83,-0.65 0.18,0.14 0.35,0.28 0.52,0.43 -0.27,0.2 -0.55,0.4 -0.83,0.61 z m -0.77,-0.58 c -0.11,-0.08 -0.22,-0.17 -0.33,-0.25 0.21,-0.27 0.45,-0.51 0.72,-0.72 0.15,0.11 0.3,0.21 0.45,0.32 -0.28,0.21 -0.56,0.43 -0.84,0.65 z m -1.64,0.02 c -0.02,-0.01 -0.04,-0.02 -0.05,-0.04 0.04,-0.03 0.08,-0.07 0.12,-0.1 -0.03,0.05 -0.05,0.09 -0.07,0.14 z m 1.56,4.37 c 0,0.04 0,0.08 0,0.12 0,0.05 -0.01,0.1 -0.01,0.15 -0.06,-0.05 -0.11,-0.1 -0.17,-0.16 0.05,-0.04 0.12,-0.07 0.18,-0.11 z m -0.08,1.16 c -0.02,0.17 -0.01,0.34 -0.04,0.51 -0.05,0.38 -0.13,0.75 -0.2,1.13 -0.24,-0.13 -0.5,-0.24 -0.73,-0.37 -0.26,-0.16 -0.51,-0.33 -0.75,-0.52 0.17,-0.29 0.36,-0.56 0.58,-0.82 0.09,-0.11 0.21,-0.19 0.31,-0.3 0.25,0.19 0.53,0.33 0.83,0.37 z m -1.52,3.55 c 0.03,-0.04 0.05,-0.08 0.07,-0.12 0.23,-0.1 0.4,-0.32 0.32,-0.62 -0.01,-0.05 -0.06,-0.09 -0.08,-0.14 0.24,0.11 0.47,0.18 0.71,0.22 -0.15,0.37 -0.23,0.76 -0.23,1.16 -0.27,0.05 -0.53,0.1 -0.79,0.15 0,-0.22 0,-0.43 0,-0.65 z m 1.78,7.39 c -0.03,-0.27 -0.05,-0.53 -0.09,-0.8 -0.13,-0.79 -0.35,-1.88 -0.83,-2.67 0.1,-0.04 0.19,-0.08 0.29,-0.12 0.25,-0.1 0.52,-0.17 0.79,-0.22 -0.03,0.82 -0.07,1.63 -0.1,2.45 -0.01,0.45 -0.04,0.9 -0.06,1.36 z m 1.15,-7.66 c -0.01,-0.04 -0.01,-0.08 -0.03,-0.12 -0.1,-0.31 -0.49,-0.28 -0.6,0 -0.19,0.47 -0.21,1.04 -0.24,1.54 -0.01,0.15 -0.02,0.29 -0.02,0.44 -0.04,-0.13 -0.06,-0.26 -0.1,-0.41 -0.06,-0.25 -0.1,-0.47 -0.09,-0.73 0.01,-0.19 0.06,-0.38 0.12,-0.56 0.07,-0.14 0.14,-0.28 0.2,-0.43 0.1,-0.17 0.21,-0.34 0.35,-0.48 0.87,-0.95 2.25,-1.44 3.53,-1.32 1.1,0.11 2.17,0.81 2.59,1.86 0.15,0.37 0.17,0.76 0.12,1.15 -0.01,0 -0.01,0.01 -0.02,0.01 -0.01,0.01 -0.06,0.06 -0.1,0.1 -0.17,-0.72 -0.58,-1.42 -1.06,-1.85 -1.13,-1.01 -2.81,-1.04 -3.98,-0.07 -0.29,0.27 -0.5,0.55 -0.67,0.87 z m 7.04,1.49 c 0.01,-0.01 0.01,-0.01 0,0 0,0.01 -0.01,0.03 -0.01,0.05 0,-0.02 0.01,-0.04 0.01,-0.05 z m 4.39,-8.34 c 0.03,0.52 -0.02,1.03 -0.14,1.54 -0.01,0.02 -0.02,0.05 -0.03,0.06 0.01,-0.02 -0.1,0.06 -0.12,0.08 -0.11,0.11 -0.19,0.26 -0.25,0.4 -0.09,0.2 -0.16,0.41 -0.23,0.62 -0.03,-0.1 -0.13,-0.18 -0.24,-0.1 -0.64,0.48 -1.26,1 -1.83,1.57 -0.28,0.28 -0.56,0.57 -0.82,0.87 -0.13,0.15 -0.26,0.3 -0.38,0.46 -0.01,0.01 -0.01,0.02 -0.02,0.02 -0.03,0.01 -0.05,0.02 -0.08,0.02 -0.12,0.03 -0.24,0.05 -0.36,0.08 0,-0.08 -0.01,-0.15 -0.01,-0.23 0,-0.16 -0.01,-0.32 -0.01,-0.48 0.02,0 0.04,-0.01 0.06,-0.02 -0.01,0.01 -0.02,0.02 -0.02,0.04 -0.07,0.14 0.11,0.29 0.22,0.17 0.12,-0.13 0.24,-0.27 0.35,-0.41 0.78,-0.4 1.43,-1.19 1.82,-2.03 0.06,-0.06 0.12,-0.12 0.18,-0.17 0.04,0.04 0.08,0.08 0.12,0.12 0.09,0.09 0.18,0.19 0.29,0.25 0.09,0.05 0.19,-0.05 0.14,-0.14 -0.05,-0.11 -0.15,-0.2 -0.23,-0.28 -0.04,-0.05 -0.09,-0.09 -0.13,-0.14 0.39,-0.36 0.79,-0.72 1.22,-1.04 0.15,-0.12 0,-0.39 -0.15,-0.27 -0.4,0.3 -0.78,0.61 -1.15,0.94 0.06,-0.19 0.11,-0.39 0.13,-0.57 0.04,-0.27 0.05,-0.55 0.05,-0.82 0.15,-0.16 0.3,-0.32 0.45,-0.48 0.01,0.02 0.02,0.03 0.03,0.05 0.09,0.14 0.18,0.29 0.27,0.43 0.05,0.08 0.09,0.15 0.15,0.22 0.06,0.07 0.1,0.14 0.19,0.18 0.08,0.03 0.15,-0.05 0.15,-0.12 0,-0.09 -0.05,-0.17 -0.09,-0.24 -0.04,-0.08 -0.1,-0.15 -0.15,-0.22 -0.09,-0.14 -0.19,-0.27 -0.28,-0.41 -0.02,-0.03 -0.05,-0.07 -0.07,-0.1 0.25,-0.26 0.49,-0.53 0.74,-0.79 0.01,0.01 0.02,0.02 0.03,0.03 0.02,0.03 0.05,0.03 0.08,0.04 0.05,0.26 0.09,0.52 0.11,0.78 0.01,0.04 0.01,0.06 0.01,0.09 z M 269.33,488 c -0.06,0.06 -0.11,0.11 -0.16,0.17 0.05,-0.07 0.09,-0.15 0.12,-0.23 0.01,0.02 0.03,0.04 0.04,0.06 z m -0.41,-0.58 c 0.07,0.1 0.14,0.21 0.21,0.32 0,0 -0.01,0 -0.01,0 -0.06,0.03 -0.1,0.07 -0.15,0.13 -0.09,-0.11 -0.19,-0.2 -0.28,-0.31 0.07,-0.06 0.14,-0.11 0.21,-0.17 0.01,0.01 0.02,0.02 0.02,0.03 z m -0.05,0.83 c 0.07,0.07 0.16,0.05 0.22,-0.01 -0.17,0.17 -0.33,0.34 -0.5,0.52 -0.11,-0.17 -0.23,-0.34 -0.34,-0.51 -0.09,-0.14 -0.31,-0.01 -0.22,0.13 0.12,0.19 0.24,0.38 0.37,0.58 -0.1,0.1 -0.2,0.2 -0.3,0.31 0,-0.02 -0.01,-0.04 -0.02,-0.06 0,-0.01 -0.01,-0.01 -0.01,-0.02 -0.04,-0.32 -0.09,-0.63 -0.19,-0.94 0.19,-0.16 0.38,-0.32 0.57,-0.48 0.13,0.16 0.27,0.32 0.42,0.48 z m -3.19,-1.35 c -0.1,-0.1 -0.21,-0.2 -0.31,-0.3 0,0 0,0 0.01,-0.01 0.1,0.11 0.2,0.21 0.3,0.31 z m -4.21,-1.66 c 0.11,0.14 0.21,0.28 0.32,0.42 -0.04,0.04 -0.09,0.08 -0.13,0.12 -0.24,0.22 -0.48,0.44 -0.72,0.66 -0.04,0.03 -0.07,0.07 -0.11,0.1 -0.17,-0.11 -0.34,-0.23 -0.5,-0.35 0.37,-0.28 0.72,-0.56 1.09,-0.84 0.05,-0.02 0.06,-0.06 0.05,-0.11 z m -0.95,1.41 c -0.46,0.09 -0.9,0.25 -1.29,0.5 -0.02,-0.02 -0.05,-0.04 -0.07,-0.06 0.32,-0.24 0.64,-0.49 0.96,-0.73 0.13,0.09 0.27,0.19 0.4,0.29 z m -1.6,0.25 c -0.18,-0.14 -0.35,-0.29 -0.54,-0.43 0.3,-0.24 0.61,-0.48 0.91,-0.72 0.19,0.15 0.39,0.29 0.59,0.43 -0.32,0.24 -0.64,0.48 -0.96,0.72 z m -4.12,0.28 c -0.41,0.33 -0.82,0.66 -1.23,0.99 -0.2,-0.12 -0.39,-0.24 -0.6,-0.35 0,0 0,0 0,0 0.15,-0.11 0.31,-0.22 0.46,-0.33 0.3,-0.21 0.59,-0.42 0.89,-0.62 0.17,0.1 0.33,0.2 0.48,0.31 z m -1.46,1.19 c -0.15,0.12 -0.3,0.25 -0.45,0.37 0,-0.21 0.01,-0.41 0.03,-0.62 0.15,0.08 0.28,0.16 0.42,0.25 z m -0.44,0.74 c 0.02,-0.01 0.03,-0.03 0.05,-0.04 0.22,-0.18 0.45,-0.36 0.67,-0.54 0.3,0.19 0.58,0.39 0.87,0.59 -0.03,0.02 -0.05,0.04 -0.08,0.06 -0.33,0.26 -0.67,0.52 -1,0.78 -0.11,0.09 -0.22,0.17 -0.34,0.26 -0.09,-0.35 -0.15,-0.73 -0.17,-1.11 z m 0.26,1.47 c 0.14,-0.1 0.27,-0.21 0.4,-0.32 0.33,-0.26 0.67,-0.52 1,-0.78 0.07,-0.05 0.13,-0.1 0.2,-0.15 0.03,0.02 0.05,0.04 0.08,0.06 0,0.22 0,0.43 0.03,0.65 -0.02,0.01 -0.04,0.03 -0.05,0.04 -0.47,0.38 -0.94,0.77 -1.4,1.17 -0.11,-0.22 -0.19,-0.44 -0.26,-0.67 z m 0.41,0.96 c 0.46,-0.38 0.91,-0.76 1.37,-1.14 0.02,0.1 0.03,0.2 0.06,0.29 0.02,0.05 0.04,0.1 0.06,0.16 -0.24,0.23 -0.49,0.47 -0.72,0.71 -0.15,0.16 -0.31,0.33 -0.47,0.5 -0.1,-0.17 -0.2,-0.34 -0.3,-0.52 z m 0.79,5.42 c 0,0.04 -0.01,0.08 -0.01,0.12 -0.19,0.04 -0.38,0.07 -0.56,0.1 -0.26,0.05 -0.15,0.45 0.11,0.4 0.14,-0.03 0.28,-0.05 0.42,-0.08 -0.04,0.57 -0.09,1.15 -0.1,1.72 -0.11,0.06 -0.18,0.15 -0.19,0.27 -0.13,0.05 -0.26,0.1 -0.4,0.13 -0.43,0.11 -0.87,0.15 -1.32,0.14 -0.43,-0.01 -0.86,-0.08 -1.27,-0.2 -0.23,-0.07 -0.46,-0.19 -0.69,-0.29 -0.02,-0.13 -0.1,-0.23 -0.22,-0.29 0,-0.09 0,-0.18 0,-0.26 0,-0.37 0.01,-0.74 0.01,-1.11 0,-0.31 -0.01,-0.62 -0.01,-0.93 0.25,0.17 0.54,0.29 0.8,0.4 0.5,0.19 1.06,0.28 1.6,0.28 0.54,0 1.1,-0.09 1.6,-0.29 0.07,-0.04 0.15,-0.07 0.23,-0.11 z m -3.72,5.91 c -0.07,-0.04 -0.14,-0.08 -0.21,-0.12 -0.07,-0.04 -0.15,-0.07 -0.22,-0.11 -0.15,-0.08 -0.29,-0.16 -0.43,-0.25 -0.19,-0.13 -0.35,-0.31 -0.51,-0.48 0.04,-0.24 0.07,-0.48 0.13,-0.72 0.07,-0.28 0.15,-0.57 0.3,-0.82 0.02,-0.04 0.06,-0.07 0.08,-0.1 0.28,0.17 0.61,0.3 0.88,0.4 0.52,0.19 1.07,0.3 1.62,0.34 0.54,0.04 1.09,-0.02 1.61,-0.13 0.36,-0.08 0.8,-0.2 1.13,-0.42 0.06,0.07 0.12,0.14 0.17,0.21 -0.11,0.09 -0.22,0.17 -0.35,0.23 -0.3,0.15 -0.64,0.23 -0.98,0.22 -0.22,0 -0.22,0.34 0,0.35 0.4,0.01 0.8,-0.08 1.16,-0.25 0.13,-0.06 0.25,-0.15 0.37,-0.23 0.06,0.13 0.12,0.27 0.16,0.41 0.01,0.02 0.01,0.05 0.02,0.07 -0.03,0.02 -0.06,0.04 -0.09,0.05 -0.16,0.1 -0.33,0.18 -0.51,0.25 -0.35,0.14 -0.73,0.22 -1.1,0.24 -0.17,0.01 -0.17,0.27 0,0.26 0.41,-0.02 0.82,-0.1 1.21,-0.26 0.19,-0.07 0.37,-0.16 0.54,-0.27 0.01,0 0.01,-0.01 0.02,-0.01 0.1,0.37 0.17,0.75 0.23,1.13 -0.03,-0.01 -0.06,-0.02 -0.09,0 -0.42,0.21 -0.85,0.42 -1.31,0.53 -0.46,0.11 -0.94,0.13 -1.4,0.07 -0.15,-0.02 -0.19,0.24 -0.04,0.27 0.97,0.14 2.11,-0.03 2.86,-0.7 0.03,0.21 0.06,0.41 0.08,0.62 0.02,0.15 0.02,0.3 0.03,0.45 -0.06,0.03 -0.12,0.07 -0.19,0.1 -0.33,0.15 -0.69,0.25 -1.04,0.3 -0.72,0.11 -1.47,0.02 -2.14,-0.27 -0.13,-0.06 -0.24,0.18 -0.1,0.24 0.72,0.32 1.5,0.43 2.28,0.33 0.37,-0.05 0.74,-0.15 1.09,-0.29 0.04,-0.02 0.08,-0.04 0.12,-0.06 0.01,0.25 0.02,0.5 0.02,0.75 -0.27,0.09 -0.55,0.16 -0.83,0.21 -0.81,0.14 -1.65,0.19 -2.47,0.22 -1.26,0.05 -2.92,-0.17 -3.7,-1.28 0,-0.02 0,-0.05 0,-0.07 0.05,0.04 0.09,0.08 0.14,0.12 0.17,0.1 0.35,0.19 0.54,0.24 0.09,0.03 0.19,0.05 0.28,0.06 0.11,0.02 0.24,0.05 0.34,-0.02 0.09,-0.05 0.08,-0.17 0,-0.22 -0.08,-0.06 -0.18,-0.04 -0.28,-0.06 -0.09,-0.01 -0.17,-0.03 -0.26,-0.05 -0.17,-0.05 -0.33,-0.12 -0.48,-0.21 -0.1,-0.06 -0.19,-0.14 -0.27,-0.22 0.01,-0.14 0.01,-0.29 0.02,-0.43 0.04,-0.42 0.08,-0.84 0.14,-1.26 0.14,0.13 0.26,0.28 0.42,0.4 0.14,0.1 0.29,0.19 0.44,0.26 0.08,0.04 0.16,0.08 0.25,0.1 0.08,0.02 0.17,0.04 0.26,0.05 0.08,-0.02 0.14,-0.13 0.06,-0.17 z m -1.58,4.26 c -0.03,-0.37 -0.05,-0.74 -0.06,-1.11 0,-0.12 0,-0.24 0,-0.36 0.86,0.76 2.13,1.08 3.31,1.12 1,0.04 2.02,-0.01 3.01,-0.15 0.19,-0.03 0.41,-0.06 0.65,-0.11 -0.02,0.19 -0.03,0.38 -0.05,0.57 -0.04,0.29 -0.13,0.59 -0.13,0.88 -0.32,0.14 -0.65,0.23 -1,0.31 -0.89,0.22 -1.85,0.15 -2.75,0.05 -0.75,-0.08 -1.6,-0.16 -2.27,-0.54 -0.3,-0.17 -0.53,-0.39 -0.71,-0.66 z m 9.17,-4.62 c -0.01,0.06 0,0.12 0.04,0.17 0.03,0.03 0.07,0.04 0.11,0.03 0.11,-0.04 0.12,-0.15 0.17,-0.25 0.04,-0.08 0.08,-0.17 0.13,-0.25 0.09,-0.17 0.21,-0.31 0.35,-0.44 0.28,-0.25 0.63,-0.4 1,-0.42 0.2,-0.01 0.2,-0.33 0,-0.32 -0.45,0.02 -0.87,0.2 -1.21,0.5 -0.17,0.14 -0.31,0.32 -0.42,0.51 -0.05,0.09 -0.11,0.19 -0.13,0.3 -0.01,0.04 -0.03,0.11 -0.04,0.17 0,-0.08 0,-0.16 0.01,-0.24 0.01,-0.36 0.02,-0.71 0.04,-1.07 0.01,0 0.01,0 0.02,0 0.07,-0.07 0.14,-0.13 0.2,-0.21 0.05,-0.08 0.11,-0.15 0.17,-0.22 0.12,-0.15 0.26,-0.29 0.41,-0.41 0.29,-0.24 0.63,-0.43 0.99,-0.54 0.17,-0.05 0.1,-0.33 -0.08,-0.27 -0.4,0.13 -0.77,0.33 -1.1,0.6 -0.16,0.13 -0.3,0.27 -0.43,0.43 -0.06,0.08 -0.12,0.16 -0.18,0.24 0.02,-0.58 0.04,-1.17 0.06,-1.75 0,-0.06 0,-0.13 0,-0.19 0.01,-0.01 0.03,-0.01 0.04,-0.02 0.04,-0.04 0.07,-0.09 0.1,-0.13 0.07,-0.09 0.14,-0.18 0.21,-0.27 0.15,-0.17 0.31,-0.32 0.49,-0.46 0.36,-0.27 0.76,-0.48 1.2,-0.6 0.17,-0.05 0.1,-0.3 -0.07,-0.26 -0.47,0.12 -0.92,0.34 -1.3,0.63 -0.19,0.15 -0.37,0.31 -0.54,0.49 -0.04,0.05 -0.08,0.1 -0.13,0.16 0,-0.2 0.01,-0.4 0.01,-0.6 0.04,0.02 0.08,0.03 0.12,0 0.07,-0.06 0.13,-0.14 0.19,-0.21 0.07,-0.08 0.12,-0.16 0.19,-0.24 0.13,-0.15 0.28,-0.28 0.43,-0.39 0.33,-0.23 0.69,-0.39 1.08,-0.45 0.07,-0.01 0.11,-0.1 0.1,-0.17 -0.02,-0.08 -0.1,-0.11 -0.17,-0.1 -0.43,0.06 -0.84,0.23 -1.19,0.48 -0.17,0.13 -0.34,0.27 -0.48,0.43 -0.11,0.13 -0.21,0.28 -0.26,0.44 0,-0.04 0,-0.07 0,-0.11 0,-0.08 0,-0.17 0,-0.25 0.02,-0.02 0.05,-0.04 0.06,-0.07 0.06,-0.19 0.13,-0.27 0.27,-0.41 0.11,-0.1 0.19,-0.23 0.31,-0.33 0.25,-0.21 0.51,-0.38 0.81,-0.53 0.13,-0.06 0.23,-0.11 0.4,-0.16 0.08,-0.02 0.17,-0.04 0.25,-0.06 0.02,0 0.04,-0.01 0.05,-0.01 0.04,0 0.07,-0.01 0.11,-0.01 0.16,-0.01 0.33,-0.02 0.49,0 0.02,0.01 0.16,0.04 0.18,0.04 0.07,0.02 0.15,0.04 0.22,0.07 0,0 0,0 0.01,0 0.03,0.02 0.07,0.03 0.1,0.05 0.07,0.04 0.15,0.08 0.22,0.13 0.03,0.02 0.07,0.05 0.1,0.07 -0.05,-0.03 -0.04,-0.03 0.02,0.02 0.06,0.06 0.12,0.11 0.18,0.17 0.01,0.01 0.1,0.12 0.12,0.13 0.05,0.06 0.09,0.13 0.13,0.19 0.04,0.07 0.09,0.15 0.12,0.22 0.02,0.03 0.03,0.07 0.05,0.1 0,0 0,0 0,0 0.06,0.15 0.1,0.3 0.14,0.46 0.01,0.04 0.01,0.07 0.02,0.11 0,0.01 0,0.02 0,0.03 0.01,0.08 0.01,0.17 0.01,0.25 0,0.08 -0.01,0.17 -0.01,0.25 0,0.02 -0.03,0.27 -0.01,0.14 -0.03,0.2 -0.05,0.39 -0.06,0.59 -0.01,0.12 0.04,0.23 0.11,0.32 -0.06,0.88 -0.1,1.76 -0.11,2.64 -0.01,0.81 0,1.62 0.02,2.43 -0.5,-0.3 -1.09,-0.46 -1.68,-0.42 -0.53,0.04 -1.02,0.19 -1.5,0.4 -0.06,0.03 -0.12,0.05 -0.17,0.08 -0.06,0.01 -0.11,0.02 -0.17,0.04 -0.1,0.03 -0.19,0.08 -0.28,0.12 0.02,-0.05 0.05,-0.1 0.08,-0.15 0.05,-0.09 0.09,-0.13 0.16,-0.21 0.25,-0.26 0.58,-0.43 0.93,-0.45 0.25,-0.01 0.25,-0.39 0,-0.38 -0.46,0.01 -0.89,0.22 -1.2,0.55 -0.07,0.08 -0.11,0.18 -0.17,0.26 0.02,-0.04 0.03,-0.08 0.05,-0.11 0.04,-0.08 0.08,-0.17 0.13,-0.25 0.09,-0.16 0.2,-0.3 0.33,-0.43 0.25,-0.25 0.57,-0.44 0.92,-0.53 0.21,-0.06 0.12,-0.39 -0.09,-0.33 -0.4,0.11 -0.78,0.32 -1.08,0.61 -0.15,0.14 -0.28,0.31 -0.38,0.49 -0.06,0.09 -0.11,0.19 -0.14,0.29 -0.04,0.09 -0.08,0.22 -0.08,0.32 0.01,0.14 0.16,0.18 0.26,0.09 -0.03,0.06 -0.08,0.1 -0.11,0.16 -0.04,0.1 -0.07,0.2 -0.09,0.3 0,0.02 0,0.03 0,0.05 -0.07,0.05 -0.14,0.09 -0.2,0.14 0,0 0,0 0,0 -0.01,-0.7 0.01,-1.45 0.04,-2.21 z m 0.5,3.17 c 0.04,-0.04 0.08,-0.07 0.12,-0.11 0,0 0,0 0.01,0 -0.02,0.02 -0.05,0.04 -0.07,0.06 -0.03,0.02 -0.05,0.05 -0.07,0.07 0,-0.01 0.01,-0.01 0.01,-0.02 z m 5.39,0.86 c -0.02,-0.3 -0.09,-0.6 -0.19,-0.89 -0.02,-0.42 -0.03,-0.83 -0.04,-1.25 -0.02,-0.87 -0.03,-1.75 -0.02,-2.62 0.01,-0.78 0.03,-1.56 0.05,-2.34 0.44,-0.23 0.8,-0.59 1.05,-1.03 -0.1,0.29 -0.18,0.59 -0.24,0.89 -0.11,0.55 -0.19,1.13 -0.13,1.69 0.03,0.26 0.06,0.51 0.09,0.77 -0.03,-0.14 -0.07,-0.28 -0.08,-0.43 -0.01,-0.13 -0.21,-0.13 -0.2,0 0.05,1.17 0.56,2.26 1.36,3.09 0.4,0.41 0.87,0.77 1.39,1.02 0.49,0.24 1.1,0.49 1.66,0.42 0.09,-0.01 0.11,-0.13 0.02,-0.16 -0.52,-0.18 -1.04,-0.25 -1.54,-0.5 -0.49,-0.24 -0.93,-0.57 -1.31,-0.96 -0.65,-0.66 -1.1,-1.51 -1.29,-2.42 0.05,0.31 0.19,0.52 0.29,0.82 0.1,0.31 0.45,0.25 0.56,0 0.27,0.34 0.58,0.65 0.94,0.88 0.09,0.06 0.21,-0.08 0.12,-0.16 -0.29,-0.25 -0.58,-0.51 -0.82,-0.8 -0.05,-0.07 -0.09,-0.15 -0.14,-0.22 0.04,-0.13 0.09,-0.25 0.12,-0.38 0.04,-0.24 0.07,-0.48 0.13,-0.72 0.08,-0.33 0.16,-0.66 0.24,-0.99 0.51,1.09 1.35,2.01 2.38,2.62 0.54,0.32 1.13,0.56 1.74,0.7 0.59,0.14 1.23,0.22 1.82,0.09 0.11,-0.02 0.08,-0.19 -0.03,-0.2 -0.61,-0.03 -1.2,-0.03 -1.79,-0.18 -0.57,-0.15 -1.12,-0.38 -1.63,-0.68 -1.03,-0.62 -1.86,-1.53 -2.34,-2.63 -0.02,-0.04 -0.04,-0.06 -0.07,-0.06 0.01,-0.03 0.01,-0.06 0.02,-0.09 0.09,-0.36 0.22,-0.69 0.34,-1.04 0.23,0.58 0.66,1.07 1.15,1.45 1.21,0.92 2.75,1.57 4.2,2.01 3.1,0.93 6.31,1.62 9.55,1.31 0.28,-0.03 0.28,-0.4 0,-0.43 -2.82,-0.34 -5.62,-0.8 -8.29,-1.8 -1.3,-0.49 -2.56,-1.1 -3.81,-1.7 -0.55,-0.26 -1.17,-0.55 -1.55,-1.05 -0.36,-0.48 -0.31,-1.03 -0.39,-1.58 0,0 0,0 0,-0.01 0.05,-0.07 0.11,-0.13 0.16,-0.2 0.06,0.08 0.12,0.15 0.18,0.23 0.09,0.12 0.19,0.24 0.29,0.36 0.1,0.12 0.2,0.25 0.32,0.34 0.07,0.05 0.19,-0.04 0.15,-0.12 -0.06,-0.15 -0.17,-0.27 -0.26,-0.4 -0.09,-0.13 -0.19,-0.26 -0.29,-0.39 -0.07,-0.09 -0.14,-0.18 -0.22,-0.27 0.4,-0.53 0.84,-1.01 1.33,-1.43 0.15,0.28 0.32,0.55 0.53,0.79 0.18,0.19 0.38,0.36 0.59,0.52 0.11,0.08 0.21,0.14 0.33,0.21 0.11,0.06 0.24,0.15 0.37,0.12 0.07,-0.02 0.09,-0.1 0.06,-0.16 -0.05,-0.1 -0.2,-0.15 -0.29,-0.21 -0.1,-0.06 -0.2,-0.13 -0.3,-0.2 -0.2,-0.14 -0.38,-0.3 -0.54,-0.48 -0.22,-0.23 -0.39,-0.49 -0.55,-0.76 0.32,-0.27 0.66,-0.54 1,-0.8 0.28,0.61 0.69,1.16 1.21,1.59 0.32,0.26 0.66,0.49 1.04,0.67 0.33,0.16 0.78,0.37 1.15,0.29 0.1,-0.02 0.1,-0.15 0.03,-0.2 -0.15,-0.1 -0.34,-0.15 -0.51,-0.21 -0.18,-0.06 -0.36,-0.13 -0.53,-0.21 -0.34,-0.16 -0.66,-0.36 -0.94,-0.6 -0.5,-0.41 -0.88,-0.95 -1.17,-1.53 0.11,-0.08 0.22,-0.17 0.33,-0.25 0.15,0.14 0.32,0.24 0.53,0.29 0.05,0.01 0.1,-0.02 0.15,-0.02 0.44,0.56 1,1.03 1.68,1.43 1.14,0.66 2.44,1.09 3.75,1.39 3.44,0.77 7.04,1.04 10.58,0.84 0.35,-0.02 0.69,-0.07 1.04,-0.1 0.03,0.01 0.05,0.01 0.08,-0.01 0.47,-0.04 0.94,-0.08 1.41,-0.13 0.01,0 0.01,0 0.02,0 0.19,-0.02 0.37,-0.03 0.56,-0.05 0.41,-0.05 0.87,-0.11 1.32,-0.21 0.22,0.23 0.59,0.3 0.83,0.11 0.07,0.02 0.14,0.04 0.21,0.06 -0.1,0.18 -0.05,0.39 0.14,0.53 0.26,0.19 0.62,0.2 0.93,0.27 0.29,0.06 0.58,0.12 0.86,0.21 0.3,0.09 0.59,0.22 0.86,0.36 -0.68,0.11 -1.35,0.25 -2.02,0.37 -0.88,0.16 -1.77,0.33 -2.65,0.49 -0.14,0.03 -0.08,0.24 0.06,0.22 0.87,-0.14 1.74,-0.29 2.61,-0.44 0.79,-0.14 1.6,-0.23 2.38,-0.41 0.12,0.08 0.26,0.14 0.37,0.23 0.01,0.01 0.01,0.01 0.02,0.02 -0.08,0.02 -0.16,0.05 -0.25,0.07 -0.16,0.04 -0.33,0.08 -0.49,0.11 -0.36,0.07 -0.72,0.15 -1.08,0.22 -0.72,0.15 -1.43,0.3 -2.15,0.45 -0.12,0.02 -0.07,0.2 0.05,0.18 0.72,-0.13 1.44,-0.27 2.16,-0.41 0.36,-0.07 0.72,-0.14 1.08,-0.21 0.18,-0.04 0.36,-0.07 0.55,-0.09 0.14,-0.02 0.27,-0.03 0.41,-0.07 0.22,0.19 0.42,0.39 0.6,0.61 -0.2,0.02 -0.4,0.05 -0.6,0.08 -0.57,0.1 -1.12,0.26 -1.66,0.45 -0.17,0.06 -0.1,0.33 0.07,0.27 0.53,-0.19 1.08,-0.33 1.64,-0.44 0.25,-0.05 0.5,-0.08 0.75,-0.11 0.11,0.15 0.22,0.3 0.31,0.46 -0.21,0.06 -0.41,0.13 -0.55,0.17 -1,0.27 -1.97,0.63 -2.98,0.86 -2.03,0.47 -4.12,0.89 -6.19,1.14 -0.22,0.03 -0.24,0.36 0,0.36 0.94,0.02 1.87,0.05 2.81,0 0.92,-0.05 1.84,-0.14 2.75,-0.26 0.94,-0.13 1.87,-0.29 2.8,-0.43 0.44,-0.07 0.86,-0.15 1.29,-0.26 0.25,-0.06 0.51,-0.12 0.76,-0.2 0.03,0.06 0.06,0.12 0.08,0.18 0.05,0.12 0.12,0.24 0.17,0.36 -0.61,0.22 -1.2,0.52 -1.8,0.78 -0.68,0.29 -1.37,0.54 -2.05,0.82 -0.14,0.06 -0.08,0.29 0.06,0.23 0.68,-0.26 1.36,-0.56 2.04,-0.82 0.63,-0.24 1.27,-0.44 1.89,-0.71 0.3,0.57 0.65,1.09 1.1,1.54 -0.31,0.03 -0.61,0.09 -0.92,0.13 -0.41,0.06 -0.83,0.12 -1.24,0.18 -0.83,0.12 -1.65,0.24 -2.48,0.38 -0.16,0.03 -0.12,0.31 0.04,0.29 0.81,-0.1 1.63,-0.2 2.44,-0.31 l 1.24,-0.17 c 0.41,-0.06 0.84,-0.08 1.24,-0.18 0,0 0,0 0.01,-0.01 0.18,0.15 0.36,0.29 0.57,0.41 -0.09,0 -0.19,0 -0.28,0 -0.38,0.01 -0.77,0.03 -1.15,0.08 -0.74,0.09 -1.46,0.25 -2.17,0.47 -0.18,0.06 -0.1,0.33 0.08,0.28 0.7,-0.21 1.41,-0.36 2.13,-0.43 0.34,-0.03 0.68,-0.05 1.03,-0.06 0.34,0 0.73,0.07 1.05,-0.02 0.29,0.11 0.6,0.2 0.91,0.26 -3.07,0.68 -6.18,1.15 -9.3,1.44 -6.81,0.64 -13.62,0.37 -20.42,-0.26 -3.07,-0.28 -6.42,-0.89 -8.59,-3.25 -0.04,0.18 -0.15,0.35 -0.3,0.46 -0.05,0.08 -0.12,0.15 -0.2,0.21 v 0.41 c 0.25,0.28 0.53,0.53 0.81,0.76 0.02,0.4 0.04,0.79 0.06,1.19 0,0.09 0.01,0.17 0.02,0.26 -0.19,-0.14 -0.43,-0.29 -0.66,-0.44 z m 26.3,-19.07 c 0,-0.1 0,-0.19 0,-0.29 0,-0.13 -0.01,-0.26 -0.02,-0.4 0.25,-0.04 0.49,-0.08 0.74,-0.12 0.02,0.08 0.02,0.17 0.05,0.25 0.05,0.15 0.12,0.31 0.23,0.44 -0.34,0.05 -0.67,0.09 -1,0.12 z m 1.81,-1.04 c 0.01,0.09 0.01,0.17 0.02,0.26 0.01,0.09 0.03,0.18 0.06,0.26 0.01,0.04 0.03,0.07 0.05,0.1 -0.21,0.05 -0.41,0.1 -0.62,0.15 -0.03,0.01 -0.05,0.03 -0.06,0.05 -0.02,-0.06 -0.03,-0.12 -0.05,-0.18 -0.03,-0.09 -0.06,-0.18 -0.08,-0.26 -0.02,-0.07 -0.03,-0.14 -0.04,-0.21 0.24,-0.06 0.48,-0.11 0.72,-0.17 z m 3.93,-0.28 c 0,0 0,0 0,0 -0.3,0.08 -0.6,0.15 -0.89,0.22 -0.24,0.06 -0.48,0.11 -0.72,0.17 0,-0.03 -0.01,-0.05 -0.01,-0.08 0.22,-0.04 0.44,-0.08 0.66,-0.12 0.29,-0.06 0.58,-0.11 0.88,-0.17 0.02,-0.01 0.05,-0.02 0.08,-0.02 z m -1.93,0.76 c 0,0.01 0.01,0.02 0.01,0.03 -0.17,0.03 -0.35,0.06 -0.52,0.09 0.18,-0.04 0.34,-0.08 0.51,-0.12 z m 5.13,0.23 c 0.03,-0.03 0.07,-0.06 0.1,-0.1 0.12,0.07 0.25,0.12 0.38,0.19 0.33,0.17 0.66,0.34 0.97,0.53 0.63,0.38 1.2,0.84 1.79,1.28 0.49,0.36 1,0.7 1.53,0.98 -0.1,0.02 -0.21,0.04 -0.31,0.07 -0.36,0.1 -0.69,0.26 -1.01,0.44 -0.4,-0.18 -0.85,0.04 -0.98,0.5 -0.08,0.29 -0.02,0.55 0.14,0.77 -0.04,0.22 -0.04,0.44 0,0.65 0.04,0.22 0.13,0.42 0.25,0.61 -1.23,-0.38 -2.44,-0.85 -3.6,-1.43 -0.95,-0.47 -1.86,-1 -2.76,-1.56 -0.45,-0.28 -0.89,-0.57 -1.32,-0.87 -0.24,-0.17 -0.49,-0.35 -0.75,-0.52 0.79,-0.11 1.58,-0.22 2.36,-0.38 1.14,-0.22 2.31,-0.43 3.21,-1.16 z m 2.49,-1.39 c 0.1,0.12 0.21,0.23 0.32,0.34 -0.05,0.04 -0.1,0.08 -0.14,0.12 -0.14,0.13 -0.29,0.28 -0.43,0.43 -0.06,-0.03 -0.11,-0.07 -0.17,-0.1 0.1,-0.22 0.2,-0.44 0.32,-0.64 0.03,-0.06 0.07,-0.1 0.1,-0.15 z m 8.54,7.74 c 0.04,-0.01 0.08,-0.03 0.11,-0.04 0,0.01 0,0.02 0,0.02 0,0.43 0,0.86 -0.02,1.28 -0.01,0.43 -0.04,0.86 -0.07,1.28 -0.01,0.1 -0.02,0.2 -0.04,0.31 -0.25,0.08 -0.51,0.16 -0.77,0.24 -0.09,0.01 -0.16,0.03 -0.24,0.07 -0.54,0.17 -1.08,0.35 -1.62,0.51 -0.51,0.14 -1.01,0.29 -1.52,0.43 -0.3,0.08 -0.6,0.17 -0.88,0.28 -0.03,-0.28 -0.05,-0.56 -0.07,-0.84 -0.03,-0.56 -0.04,-1.12 -0.06,-1.69 0.01,0 0.02,0 0.03,0 1.01,-0.25 1.99,-0.67 2.96,-1.04 0.47,-0.18 0.94,-0.36 1.41,-0.54 0.27,-0.08 0.52,-0.18 0.78,-0.27 z m -7.47,11.03 c -0.56,-0.11 -1.1,-0.36 -1.55,-0.71 -0.82,-0.64 -1.21,-1.61 -1.62,-2.55 0,-0.02 0.02,-0.05 0.02,-0.07 0,-0.33 -0.13,-0.5 -0.33,-0.6 -0.04,-0.08 -0.07,-0.16 -0.11,-0.23 -0.18,-0.34 -0.39,-0.65 -0.62,-0.95 0.01,-0.09 0.01,-0.19 0.02,-0.28 0.01,-0.16 0.01,-0.32 0.01,-0.47 0,-0.12 -0.01,-0.25 -0.01,-0.37 0.26,0.04 0.52,0.08 0.77,0.09 0.04,0 0.07,-0.01 0.1,-0.02 l 0.03,0.3 c 0.01,0.12 0.03,0.25 0.04,0.37 0.02,0.13 0.02,0.26 0.07,0.38 0.03,0.08 0.16,0.06 0.18,-0.02 0.03,-0.12 0,-0.25 -0.01,-0.37 -0.01,-0.12 -0.03,-0.25 -0.04,-0.37 -0.01,-0.1 -0.02,-0.21 -0.04,-0.31 0.08,0.02 0.16,0.03 0.23,0.05 0.18,0.04 0.36,0.06 0.55,0.09 0.01,0.39 0.02,0.77 0.04,1.16 0.01,0.26 0.01,0.53 0.04,0.79 0.03,0.24 0.04,0.5 0.1,0.74 0.01,0.04 0.08,0.04 0.08,0 0.04,-0.24 0.02,-0.5 0.03,-0.74 0,-0.26 -0.02,-0.53 -0.04,-0.79 -0.02,-0.38 -0.05,-0.75 -0.08,-1.13 0.19,0.03 0.37,0.07 0.56,0.1 0,0.37 0,0.74 -0.01,1.12 0,0.25 -0.01,0.5 0,0.75 0,0.11 0.01,0.23 0.02,0.34 0.01,0.13 0.04,0.24 0.06,0.36 0.01,0.06 0.11,0.06 0.12,0 0.02,-0.12 0.06,-0.23 0.06,-0.36 0.01,-0.11 0.02,-0.23 0.02,-0.34 0.01,-0.25 0,-0.5 0,-0.75 0,-0.36 0,-0.71 -0.01,-1.07 0.25,0.04 0.5,0.08 0.75,0.12 0,0.23 0,0.47 0,0.7 0,0.18 0,0.36 0,0.54 0,0.16 -0.01,0.36 0.03,0.51 0.02,0.06 0.11,0.06 0.12,0 0.04,-0.16 0.03,-0.35 0.03,-0.51 0,-0.18 0,-0.36 0,-0.54 0,-0.22 0,-0.45 0,-0.67 0.38,0.06 0.76,0.12 1.14,0.18 0,0.33 0.03,0.66 0.04,0.98 0.02,0.54 0.04,1.09 0.06,1.63 0.03,0.98 0.07,1.96 0.1,2.95 -0.3,-0.02 -0.65,0.03 -0.95,-0.03 z m -9.87,-9.68 c -0.02,-0.65 -0.04,-1.29 -0.05,-1.94 -0.02,-1.12 0,-2.23 -0.03,-3.35 0.24,0.26 0.53,0.49 0.78,0.69 0.44,0.35 0.89,0.68 1.34,1 0.91,0.63 1.89,1.18 2.88,1.68 2,1 4.11,1.75 6.29,2.28 0.04,0.01 0.07,0 0.11,0 -0.07,0.61 -0.11,1.21 -0.11,1.83 0,0.25 0.01,0.49 0.02,0.74 -0.35,-0.05 -0.7,-0.1 -1.05,-0.15 -0.04,-0.07 -0.08,-0.14 -0.12,-0.21 -0.11,-0.19 -0.22,-0.39 -0.33,-0.58 -0.05,-0.09 -0.14,-0.08 -0.2,-0.03 -0.04,-0.14 -0.08,-0.27 -0.12,-0.41 -0.02,-0.09 -0.12,-0.14 -0.21,-0.12 -0.09,0.02 -0.14,0.12 -0.12,0.21 0.06,0.2 0.12,0.4 0.17,0.6 0.03,0.1 0.06,0.2 0.09,0.3 0.02,0.05 0.04,0.09 0.07,0.13 -0.19,-0.03 -0.37,-0.05 -0.55,-0.08 -0.26,-0.04 -0.53,-0.07 -0.79,-0.1 0.02,-0.1 0.03,-0.21 0.03,-0.31 0,-0.14 0,-0.27 0,-0.41 0,-0.28 0,-0.55 0,-0.83 0,-0.2 -0.3,-0.2 -0.3,0 0,0.28 0,0.55 0,0.83 0,0.14 0,0.27 0,0.41 0,0.09 0.01,0.19 0.02,0.28 -0.18,-0.02 -0.35,-0.05 -0.53,-0.07 -0.13,-0.01 -0.28,-0.03 -0.43,-0.05 -0.07,-0.06 -0.14,-0.1 -0.24,-0.13 -0.58,-0.17 -1.22,-0.22 -1.82,-0.33 -0.61,-0.1 -1.22,-0.2 -1.83,-0.29 -0.57,-0.09 -1.15,-0.19 -1.72,-0.27 -0.06,-0.29 -0.14,-0.58 -0.2,-0.87 -0.08,-0.41 -0.15,-0.82 -0.19,-1.24 -0.09,-0.83 -0.09,-1.66 -0.02,-2.49 0.02,-0.17 -0.25,-0.17 -0.26,0 -0.09,0.86 -0.09,1.73 0,2.59 0.04,0.41 0.11,0.82 0.19,1.23 0.05,0.25 0.11,0.51 0.19,0.75 -0.13,-0.01 -0.26,-0.02 -0.39,-0.03 -0.02,-0.17 -0.14,-0.32 -0.34,-0.38 -0.06,-0.02 -0.12,-0.02 -0.18,-0.03 -0.01,-0.29 -0.04,-0.58 -0.05,-0.85 z m 9.39,-8.51 c 0.16,0.14 0.33,0.27 0.51,0.4 0.01,0.01 0.01,0.02 0.02,0.02 -0.03,0.02 -0.05,0.05 -0.08,0.07 -0.13,0.12 -0.27,0.25 -0.4,0.37 -0.18,-0.13 -0.37,-0.25 -0.56,-0.37 0.1,-0.11 0.21,-0.22 0.31,-0.33 0.07,-0.05 0.13,-0.1 0.2,-0.16 z m 3.74,-0.19 0.12,0.17 c 0.07,0.1 0.14,0.2 0.21,0.3 -0.01,0.01 -0.02,0.01 -0.02,0.02 -0.21,-0.05 -0.41,-0.12 -0.62,-0.19 0.09,-0.09 0.18,-0.18 0.28,-0.27 0.01,-0.01 0.02,-0.02 0.03,-0.03 z m 2.24,-0.72 c 0.03,0.02 0.05,0.04 0.08,0.06 0.06,0.05 0.11,0.09 0.17,0.14 0.03,0.03 0.07,0.06 0.1,0.08 0.04,0.02 0.08,0.03 0.13,0.04 0.11,0.03 0.2,-0.05 0.22,-0.15 0.06,0.14 0.09,0.29 0.01,0.45 -0.14,0.3 -0.41,0.48 -0.72,0.59 -0.01,-0.01 -0.01,-0.02 -0.02,-0.04 0.14,-0.15 0.27,-0.29 0.41,-0.44 0.16,-0.17 -0.09,-0.43 -0.26,-0.26 -0.12,0.12 -0.24,0.25 -0.37,0.37 -0.09,-0.13 -0.18,-0.26 -0.27,-0.39 0.18,-0.13 0.35,-0.29 0.52,-0.45 z m -0.9,3.38 c -0.21,0.16 -0.43,0.3 -0.66,0.44 -0.11,0.07 -0.22,0.13 -0.34,0.19 -0.19,-0.06 -0.39,-0.11 -0.59,-0.17 -0.01,0 -0.02,-0.01 -0.03,-0.01 0.04,-0.05 0.09,-0.09 0.13,-0.13 0.09,-0.09 0.17,-0.18 0.26,-0.27 0,0 0.01,0.01 0.01,0.01 0.12,0.08 0.25,-0.05 0.22,-0.17 -0.01,-0.02 -0.02,-0.04 -0.03,-0.06 0.07,-0.08 0.14,-0.15 0.21,-0.23 0.36,0.07 0.72,0.11 1.08,0.1 -0.05,0.07 -0.11,0.13 -0.16,0.2 -0.02,0.03 -0.06,0.07 -0.1,0.1 z m -3.46,-0.48 c 0.04,-0.04 0.08,-0.08 0.11,-0.12 0,0 0,0 0,0 0.07,0.08 0.14,0.18 0.23,0.27 -0.01,0.01 -0.03,0.02 -0.04,0.03 -0.1,-0.06 -0.2,-0.11 -0.3,-0.18 z m 0.07,-0.79 c -0.05,-0.06 -0.1,-0.12 -0.15,-0.17 0.08,0.04 0.15,0.08 0.23,0.12 -0.02,0.02 -0.04,0.05 -0.07,0.07 0,-0.01 -0.01,-0.01 -0.01,-0.02 z m 0.51,0.16 c 0.14,0.06 0.28,0.13 0.43,0.19 -0.04,0.04 -0.09,0.08 -0.13,0.11 -0.08,0.07 -0.16,0.14 -0.24,0.22 -0.05,-0.07 -0.12,-0.14 -0.17,-0.2 -0.03,-0.03 -0.05,-0.06 -0.08,-0.1 0.06,-0.08 0.13,-0.15 0.19,-0.22 z m 0.56,0.63 c 0.1,-0.09 0.2,-0.18 0.3,-0.27 0.08,0.03 0.16,0.06 0.24,0.09 0.06,0.09 0.13,0.19 0.19,0.28 0.02,0.03 0.05,0.07 0.07,0.1 -0.08,0.09 -0.17,0.18 -0.25,0.26 -0.08,0.09 -0.18,0.19 -0.25,0.3 -0.17,-0.07 -0.34,-0.12 -0.5,-0.2 -0.09,-0.05 -0.17,-0.11 -0.26,-0.15 0.15,-0.14 0.3,-0.28 0.46,-0.41 z m 2.7,-1.76 c -0.07,0.08 -0.15,0.15 -0.22,0.23 -0.17,0 -0.33,0 -0.48,-0.02 -0.03,0 -0.07,-0.01 -0.1,-0.02 -0.02,-0.03 -0.04,-0.05 -0.06,-0.08 0.2,-0.18 0.39,-0.35 0.59,-0.53 0.09,0.14 0.18,0.28 0.27,0.42 z m -4.73,0.6 c 0.03,-0.02 0.05,-0.05 0.08,-0.07 0.03,0.04 0.06,0.07 0.09,0.1 -0.11,0.12 -0.2,0.26 -0.3,0.39 -0.06,-0.04 -0.12,-0.08 -0.18,-0.13 0.1,-0.09 0.2,-0.19 0.31,-0.29 z m 0.44,0.37 c 0.06,0.08 0.13,0.15 0.19,0.23 0.03,0.03 0.06,0.07 0.09,0.1 -0.06,0.07 -0.12,0.15 -0.17,0.22 -0.12,-0.09 -0.24,-0.17 -0.36,-0.26 0.08,-0.1 0.16,-0.2 0.25,-0.29 z m 1.61,3.44 c 0.44,-0.02 0.89,-0.01 1.33,0.07 0.21,0.04 0.42,0.09 0.63,0.15 0,0 0.02,0.01 0.06,0.02 -0.06,0.01 -0.12,0.02 -0.18,0.03 -0.23,0.01 -0.47,0 -0.7,0 -0.53,0 -1.07,0 -1.6,-0.01 -0.34,0 -0.69,0 -1.04,-0.01 0.06,-0.02 0.13,-0.03 0.19,-0.05 0.42,-0.11 0.86,-0.17 1.31,-0.2 z m -1.07,1.35 c 0.61,0.01 1.21,0.03 1.82,0.04 0.54,0.01 1.15,0.11 1.67,-0.08 0.03,-0.01 0.06,-0.04 0.09,-0.05 0.11,0.28 0.14,0.54 -0.08,0.71 -0.23,0.18 -0.71,0.14 -0.98,0.16 -0.45,0.03 -0.91,0.05 -1.36,0.06 -0.69,0.01 -1.49,0.02 -2.05,-0.46 -0.14,-0.12 -0.23,-0.26 -0.29,-0.4 0.38,0.05 0.81,0.02 1.18,0.02 z m -1.42,4.97 c 0.05,0.08 0.09,0.17 0.14,0.25 0,0.01 0.01,0.02 0.01,0.03 -0.05,-0.01 -0.1,-0.01 -0.16,-0.02 0.01,-0.03 0.02,-0.06 0.02,-0.08 0,-0.07 0,-0.12 -0.01,-0.18 z m -5.1,0.81 c 0.26,0.04 0.51,0.09 0.78,0.14 0,0.14 -0.01,0.28 -0.01,0.42 0,0.13 0,0.26 0.01,0.39 -0.34,-0.38 -0.73,-0.72 -1.15,-1.02 0.13,0.03 0.25,0.05 0.37,0.07 z m 9.33,-8.45 c -0.01,-0.01 -0.02,-0.01 -0.03,-0.02 0.03,-0.02 0.07,-0.04 0.11,-0.06 0.02,-0.01 0.04,-0.03 0.06,-0.04 -0.03,0.06 -0.06,0.12 -0.09,0.18 -0.02,-0.02 -0.03,-0.04 -0.05,-0.06 z m 0.77,-4.79 c 0.08,0.07 0.16,0.13 0.25,0.2 0,0 0.01,0.01 0.01,0.01 0.05,0.04 0.1,0.08 0.16,0.13 -0.15,0.13 -0.3,0.26 -0.45,0.39 -0.02,-0.02 -0.03,-0.05 -0.05,-0.07 -0.09,-0.12 -0.21,-0.23 -0.31,-0.35 0.12,-0.11 0.26,-0.21 0.39,-0.31 z m -0.38,0.86 c 0.02,0.03 0.04,0.07 0.07,0.1 -0.2,0.18 -0.41,0.35 -0.61,0.53 -0.07,-0.09 -0.13,-0.18 -0.2,-0.27 -0.04,-0.06 -0.09,-0.12 -0.13,-0.19 0.2,-0.17 0.4,-0.34 0.6,-0.51 0.08,0.12 0.19,0.22 0.27,0.34 z m -1.13,-0.17 c -0.07,-0.1 -0.14,-0.19 -0.21,-0.29 0.19,-0.15 0.39,-0.31 0.59,-0.45 0.07,0.09 0.14,0.17 0.21,0.26 -0.19,0.15 -0.39,0.31 -0.59,0.48 z m -0.29,0.24 c -0.02,0.02 -0.04,0.03 -0.06,0.05 -0.16,0.14 -0.3,0.3 -0.46,0.44 -0.14,-0.05 -0.28,-0.11 -0.42,-0.16 0.08,-0.08 0.16,-0.16 0.24,-0.23 0.16,-0.14 0.33,-0.26 0.49,-0.39 z m -40.78,21.41 c -0.01,-0.17 -0.02,-0.33 -0.03,-0.5 -0.02,-0.31 -0.04,-0.62 -0.07,-0.93 0.32,0.24 0.65,0.46 0.99,0.65 -0.02,0.27 -0.02,0.54 0.01,0.81 0.02,0.19 0.06,0.38 0.11,0.57 -0.34,-0.18 -0.68,-0.39 -1.01,-0.6 z m 42.3,-0.35 c -0.05,-0.14 -0.09,-0.28 -0.12,-0.43 -0.02,-0.14 -0.03,-0.29 -0.02,-0.44 0.41,-0.18 0.81,-0.37 1.19,-0.59 0.25,-0.14 0.5,-0.31 0.75,-0.48 0,0.15 -0.01,0.31 -0.01,0.46 0,0.17 -0.01,0.34 -0.01,0.52 -0.4,0.24 -0.81,0.48 -1.23,0.7 -0.17,0.09 -0.36,0.17 -0.55,0.26 z m 3.95,-4.23 c 0.02,0.05 0.05,0.09 0.07,0.14 0.19,0.55 0.08,1.16 -0.22,1.69 -0.07,0.12 -0.17,0.21 -0.25,0.32 -0.02,-0.06 -0.03,-0.12 -0.04,-0.18 -0.06,-0.19 -0.12,-0.38 -0.17,-0.57 -0.03,-0.1 -0.13,-0.17 -0.23,-0.13 -0.1,0.03 -0.16,0.13 -0.13,0.23 0.05,0.19 0.1,0.38 0.15,0.57 0.03,0.12 0.08,0.24 0.12,0.36 -0.34,0.18 -0.67,0.37 -1,0.56 0,-0.08 -0.01,-0.17 -0.01,-0.25 -0.01,-0.25 -0.01,-0.5 -0.02,-0.76 0.69,-0.54 1.32,-1.21 1.73,-1.98 z m -2.31,-3.31 c 0.08,0.78 0.2,1.55 0.37,2.32 0.06,0.27 0.33,0.46 0.61,0.48 -0.62,0.7 -1.28,1.34 -2.12,1.85 -0.96,0.59 -2.02,0.97 -3.09,1.28 0.01,-0.07 0.02,-0.13 0.01,-0.2 0.03,-0.06 0.04,-0.13 0.04,-0.21 -0.04,-1.09 -0.08,-2.18 -0.12,-3.26 -0.02,-0.54 -0.04,-1.09 -0.06,-1.63 -0.01,-0.24 0,-0.49 -0.01,-0.75 0.04,-0.01 0.08,-0.01 0.12,-0.01 0.02,0.23 0.04,0.45 0.07,0.68 0.01,0.14 0.03,0.28 0.04,0.41 0.02,0.13 0.01,0.28 0.06,0.4 0.02,0.06 0.12,0.08 0.14,0 0.02,-0.13 -0.01,-0.27 -0.02,-0.4 -0.01,-0.14 -0.03,-0.28 -0.04,-0.41 -0.02,-0.23 -0.05,-0.47 -0.07,-0.7 0.14,-0.01 0.27,-0.03 0.41,-0.04 0.02,1.43 -0.01,2.9 0.2,4.32 0.01,0.05 0.08,0.03 0.08,-0.01 0.13,-1.45 0,-2.94 -0.07,-4.39 0,-0.03 -0.01,-0.04 -0.03,-0.06 0.28,-0.02 0.55,-0.07 0.83,-0.13 0,0.01 -0.01,0.02 -0.01,0.03 0,0.39 0,0.77 0,1.16 0,0.19 0,0.38 0,0.57 0,0.19 0,0.38 0.03,0.57 0.01,0.07 0.14,0.07 0.15,0 0.03,-0.19 0.02,-0.38 0.03,-0.57 0,-0.19 0,-0.38 0,-0.57 0,-0.39 0,-0.77 0,-1.16 0,-0.03 -0.01,-0.05 -0.03,-0.07 0.15,-0.03 0.31,-0.08 0.46,-0.11 0.02,0.31 0.04,0.63 0.06,0.94 0.02,0.4 0.03,0.82 0.13,1.21 0.02,0.07 0.12,0.05 0.12,-0.02 0.04,-0.4 0,-0.82 -0.03,-1.22 -0.02,-0.32 -0.04,-0.64 -0.06,-0.97 0.25,-0.06 0.5,-0.11 0.75,-0.18 0.33,-0.09 0.65,-0.21 0.98,-0.3 0,0.03 0,0.05 0,0.08 0.01,0.35 0.04,0.71 0.07,1.07 z m 0.3,-6.73 c -0.06,0.02 -0.13,0.05 -0.19,0.07 -0.11,0.04 -0.21,0.08 -0.32,0.12 0.01,-0.12 0,-0.23 0,-0.35 0.17,0.05 0.33,0.11 0.5,0.15 0,0.01 0,0.01 0.01,0.01 z m -1.63,-8.53 c 0.01,0 0,-0.01 0.01,-0.01 -0.05,0.1 -0.08,0.2 -0.09,0.31 -0.04,0.01 -0.09,0.03 -0.11,0.07 -0.01,0.01 0,0.03 -0.01,0.04 -0.01,0.01 -0.03,0.01 -0.04,0.02 -0.01,0.02 -0.01,0.04 -0.02,0.07 -0.14,0.1 -0.29,0.21 -0.43,0.31 -0.07,-0.08 -0.13,-0.15 -0.2,-0.23 0.29,-0.2 0.58,-0.4 0.89,-0.58 z m -1.64,0.26 c 0.02,-0.02 0.02,-0.04 0.02,-0.05 0.08,0.09 0.15,0.19 0.23,0.28 -0.2,0.13 -0.39,0.28 -0.58,0.43 -0.05,-0.06 -0.09,-0.13 -0.14,-0.19 0.16,-0.17 0.32,-0.32 0.47,-0.47 z m -0.73,0.71 0.11,0.16 c -0.17,0.13 -0.35,0.26 -0.52,0.4 -0.12,0.1 -0.23,0.22 -0.35,0.33 -0.02,-0.03 -0.04,-0.06 -0.06,-0.09 0.28,-0.27 0.55,-0.53 0.82,-0.8 z m -1.61,0.23 c 0.1,0.15 0.2,0.3 0.3,0.44 -0.18,-0.09 -0.35,-0.18 -0.52,-0.28 0.08,-0.05 0.15,-0.11 0.22,-0.16 z m -2.99,0.75 c 0.04,-0.06 0.08,-0.11 0.12,-0.17 0.08,-0.11 0.16,-0.22 0.24,-0.34 0.08,-0.11 0.14,-0.24 0.2,-0.36 0.01,-0.02 0.02,-0.03 0.03,-0.05 0.08,0.13 0.18,0.25 0.27,0.37 -0.06,0.09 -0.13,0.17 -0.19,0.25 -0.13,0.21 -0.24,0.43 -0.34,0.66 -0.15,-0.07 -0.31,-0.13 -0.46,-0.19 0,0 0.01,0 0.01,-0.01 0.04,-0.04 0.08,-0.1 0.12,-0.16 z m -3.73,0.26 c 0.24,-0.05 0.49,-0.1 0.74,-0.15 -0.72,0.35 -1.58,0.47 -2.35,0.62 -0.28,0.06 -0.56,0.09 -0.85,0.14 0,-0.02 -0.01,-0.03 -0.01,-0.05 0.25,-0.06 0.5,-0.11 0.75,-0.17 0.58,-0.12 1.15,-0.25 1.72,-0.39 z m -0.41,-0.74 c 0.01,0.01 0.03,0.03 0.04,0.04 0.01,0.01 0.01,0.01 0.02,0.02 0,0 0.03,0.03 0.01,0.02 -0.01,-0.02 0.01,0.01 0.01,0.02 0.01,0.01 0.01,0.02 0.02,0.02 0.01,0.02 0.02,0.03 0.03,0.05 0.02,0.04 0.04,0.07 0.06,0.1 0,0 0,0 0,0 0,0 0,0 0,0 -0.01,-0.01 0.01,0.02 0.01,0.03 0,0 0,0 0,0 -0.13,0.01 -0.27,0.03 -0.4,0.06 0,-0.06 0,-0.12 0,-0.18 0,-0.1 0,-0.21 0,-0.31 0.01,0 0.01,0 0.02,0.01 0,0 0,0 0,0 0.04,0.02 0.07,0.04 0.1,0.06 0.01,0.01 0.02,0.01 0.03,0.02 0,0 0.01,0.01 0.01,0.01 0,0 0.01,0.01 0.02,0.01 0,0.01 0.01,0.02 0.02,0.02 z m -1.15,0.05 c 0.21,-0.07 0.43,-0.15 0.64,-0.23 0,0.12 0,0.25 0,0.37 0,0.08 0,0.16 0,0.24 -0.02,0 -0.04,0.01 -0.06,0.01 -0.3,0.06 -0.61,0.11 -0.91,0.17 l -0.67,0.13 c 0,-0.04 -0.01,-0.07 -0.02,-0.1 0,-0.1 0.01,-0.2 0.02,-0.31 0.34,-0.1 0.67,-0.18 1,-0.28 z m -1.38,0.39 c 0,0.08 -0.02,0.16 -0.01,0.24 0,0.04 0.02,0.09 0.02,0.13 l -0.78,0.15 c -0.13,0.02 -0.07,0.22 0.05,0.19 0.25,-0.05 0.51,-0.1 0.76,-0.14 0.01,0.03 0.01,0.06 0.02,0.1 -0.5,0.12 -1.01,0.24 -1.51,0.36 0,-0.03 0,-0.06 0,-0.08 -0.02,-0.09 -0.03,-0.18 -0.04,-0.27 -0.01,-0.09 -0.01,-0.18 -0.02,-0.27 0.17,-0.04 0.34,-0.07 0.51,-0.11 0.33,-0.1 0.67,-0.21 1,-0.3 z m -1.89,-0.2 c -0.01,0.09 -0.02,0.18 -0.02,0.27 -0.25,0.06 -0.51,0.12 -0.76,0.17 0,-0.1 0,-0.2 0.01,-0.3 0.26,-0.04 0.52,-0.09 0.77,-0.14 z m -1.14,0.21 c -0.01,0.1 -0.02,0.2 -0.01,0.3 -0.23,0.04 -0.47,0.08 -0.7,0.12 -0.01,-0.1 -0.01,-0.2 -0.02,-0.31 0.24,-0.03 0.49,-0.07 0.73,-0.11 z m -1.14,0.17 c 0,0.09 0.01,0.18 0.01,0.27 0,0.02 0,0.03 0,0.05 -0.2,0.03 -0.41,0.08 -0.61,0.1 -0.22,0.03 -0.44,0.05 -0.66,0.07 -0.01,-0.05 -0.03,-0.11 -0.03,-0.16 0,-0.07 0.01,-0.14 0.01,-0.21 0.43,-0.04 0.85,-0.07 1.28,-0.12 z m -1.62,0.53 c -0.41,0.05 -0.82,0.1 -1.23,0.13 -0.03,-0.05 -0.05,-0.09 -0.07,-0.14 -0.04,-0.1 -0.07,-0.2 -0.1,-0.3 0.46,-0.01 0.91,-0.03 1.37,-0.06 0,0.06 -0.01,0.12 -0.01,0.18 0.01,0.06 0.03,0.13 0.04,0.19 z m -1.81,-0.31 c 0.04,0.16 0.08,0.31 0.16,0.46 0,0 0,0 0,0 -0.38,0.02 -0.77,0.05 -1.15,0.06 -0.02,-0.13 -0.05,-0.25 -0.07,-0.37 -0.01,-0.04 -0.02,-0.09 -0.02,-0.13 0.36,0 0.72,-0.01 1.08,-0.02 z m -1.36,0 c 0.01,0.07 0.02,0.13 0.04,0.2 0.02,0.11 0.04,0.22 0.06,0.33 -0.47,0.01 -0.93,0 -1.4,0 -0.03,-0.11 -0.06,-0.22 -0.08,-0.34 -0.02,-0.1 -0.02,-0.19 -0.02,-0.29 0.46,0.04 0.93,0.08 1.4,0.1 z m -1.73,-0.12 c 0.01,0.11 0.01,0.23 0.02,0.34 0.01,0.1 0.05,0.21 0.07,0.31 -0.32,-0.01 -0.63,-0.02 -0.95,-0.03 -0.01,-0.04 -0.02,-0.08 -0.02,-0.12 -0.02,-0.16 -0.05,-0.32 -0.08,-0.48 -0.01,-0.05 -0.02,-0.09 -0.03,-0.14 0.33,0.05 0.66,0.09 0.99,0.12 z m -1.91,0.49 c -0.08,-0.13 -0.15,-0.27 -0.21,-0.42 -0.04,-0.12 -0.07,-0.25 -0.09,-0.37 0.3,0.05 0.6,0.1 0.9,0.14 0.02,0.08 0.03,0.17 0.05,0.25 0.03,0.15 0.06,0.3 0.09,0.45 0,0.02 0.01,0.04 0.01,0.06 -0.23,-0.01 -0.47,-0.03 -0.7,-0.05 -0.03,-0.02 -0.04,-0.04 -0.05,-0.06 z m 2.45,0.66 c -0.01,-0.03 -0.02,-0.07 -0.03,-0.1 0.2,0 0.4,0.02 0.6,0.01 0.27,0 0.53,-0.02 0.79,-0.03 0.01,0.03 0.01,0.07 0.03,0.1 0.04,0.12 0.23,0.11 0.23,-0.03 0,-0.03 -0.01,-0.05 -0.01,-0.07 0.46,-0.02 0.93,-0.03 1.39,-0.06 0.04,0.04 0.07,0.08 0.11,0.11 0.11,0.07 0.2,-0.03 0.19,-0.13 0.38,-0.03 0.75,-0.06 1.13,-0.11 0.03,0.09 0.07,0.19 0.11,0.28 0.04,0.09 0.12,0.17 0.2,0.23 0.08,0.07 0.21,0 0.18,-0.11 -0.02,-0.09 -0.03,-0.18 -0.07,-0.26 -0.02,-0.06 -0.04,-0.12 -0.06,-0.18 0.41,-0.05 0.81,-0.12 1.21,-0.18 0.01,0.1 0.01,0.2 0.02,0.3 0.01,0.12 0.02,0.24 0.04,0.36 -0.14,0.01 -0.27,0.04 -0.41,0.05 -1.87,0.17 -3.75,0.21 -5.63,0.15 0.02,-0.02 0.04,-0.03 0.04,-0.06 0.01,-0.1 -0.03,-0.19 -0.06,-0.27 z m 5.35,1.74 c -0.01,0 -0.02,0 -0.03,0 -0.66,0.08 -1.32,0.13 -1.98,0.14 -0.44,0.01 -0.88,-0.03 -1.32,-0.06 1.11,0.01 2.22,-0.02 3.33,-0.08 z m -12.4,-0.72 c -0.01,0.02 -0.02,0.03 -0.02,0.06 0.03,0.37 0.05,0.75 0.08,1.12 0.01,0.18 0.02,0.36 0.04,0.54 0.01,0.1 0.02,0.19 0.03,0.29 0.01,0.1 0.01,0.19 0.09,0.27 0.07,0.07 0.17,0.04 0.23,-0.03 0.06,-0.08 0.04,-0.18 0.04,-0.28 0,-0.08 -0.01,-0.17 -0.01,-0.25 -0.01,-0.19 -0.03,-0.37 -0.04,-0.56 -0.03,-0.36 -0.05,-0.73 -0.08,-1.09 0.43,0.08 0.86,0.16 1.29,0.22 l -0.08,0.79 c -0.01,0.14 -0.03,0.28 -0.04,0.41 0,0.07 -0.01,0.15 -0.01,0.22 -0.01,0.08 -0.01,0.16 0.06,0.22 0.04,0.04 0.11,0.05 0.16,0.02 0.13,-0.08 0.11,-0.29 0.13,-0.42 0.02,-0.15 0.03,-0.3 0.05,-0.44 0.02,-0.26 0.05,-0.51 0.07,-0.77 1.41,0.2 2.84,0.32 4.26,0.4 0.1,0.01 0.21,0 0.31,0.01 1.25,0.28 2.52,0.43 3.8,0.43 0.68,0 1.36,-0.05 2.03,-0.13 0.65,-0.08 1.37,-0.15 1.99,-0.4 0.04,-0.01 0.06,-0.05 0.07,-0.08 0.16,-0.01 0.31,-0.03 0.47,-0.04 0,0.01 -0.01,0.02 -0.01,0.03 -0.05,0.51 -0.07,1.03 -0.08,1.54 -0.05,0 -0.09,0.03 -0.09,0.09 0,0.76 -0.01,1.52 -0.01,2.28 0,0.76 -0.05,1.52 0.04,2.28 0.01,0.05 0.04,0.07 0.07,0.07 0,0.15 0,0.31 0,0.47 -0.18,0.02 -0.35,0.04 -0.52,0.07 0.02,-0.3 0.01,-0.6 0.01,-0.89 0,-0.37 0,-0.73 -0.01,-1.1 -0.01,-0.73 -0.02,-1.46 -0.03,-2.2 0,-0.13 -0.2,-0.13 -0.2,0 -0.01,0.73 -0.02,1.46 -0.03,2.2 0,0.35 -0.01,0.7 -0.01,1.05 0,0.32 -0.01,0.65 0.01,0.97 -0.05,0.01 -0.1,0.01 -0.14,0.02 -0.2,0.03 -0.4,0.04 -0.6,0.07 0,-0.06 -0.01,-0.11 -0.01,-0.17 -0.01,-0.49 -0.03,-0.97 -0.04,-1.46 -0.04,-1 -0.07,-2.01 -0.11,-3.01 0,-0.11 -0.17,-0.11 -0.17,0 0.01,1.02 0.03,2.04 0.05,3.06 0.01,0.5 0.02,1 0.04,1.5 0,0.03 0,0.07 0,0.1 -0.37,0.04 -0.75,0.09 -1.12,0.12 l 0.02,-0.95 c 0.02,-0.85 0.04,-1.69 0.07,-2.54 0,-0.14 -0.22,-0.14 -0.22,0 -0.03,0.83 -0.06,1.66 -0.09,2.49 -0.01,0.34 -0.03,0.68 -0.04,1.02 -0.05,0 -0.1,0.01 -0.14,0.02 -0.37,0.03 -0.73,0.03 -1.1,0.05 0.04,-0.27 0.08,-0.53 0.1,-0.8 0.06,-0.71 0.04,-1.42 -0.04,-2.12 -0.01,-0.08 -0.13,-0.08 -0.12,0 0.05,0.68 0.05,1.37 -0.01,2.05 -0.03,0.3 -0.07,0.59 -0.12,0.89 -0.42,0.02 -0.83,0.05 -1.25,0.05 0,-0.01 0,-0.03 0,-0.04 0.01,-0.26 0.02,-0.52 0.04,-0.77 0.02,-0.51 0.05,-1.01 0.07,-1.52 0.01,-0.13 -0.2,-0.13 -0.21,0 -0.03,0.51 -0.06,1.01 -0.09,1.52 -0.02,0.25 -0.03,0.5 -0.05,0.75 0,0.02 0,0.04 -0.01,0.07 -0.35,0 -0.7,-0.01 -1.06,-0.02 0,-0.03 0,-0.07 0,-0.1 0.01,-0.32 0.02,-0.64 0.02,-0.95 0.01,-0.64 0.03,-1.27 0.04,-1.91 0,-0.08 -0.13,-0.08 -0.13,0 -0.02,0.62 -0.05,1.25 -0.07,1.87 -0.01,0.31 -0.03,0.61 -0.03,0.92 0,0.06 -0.01,0.12 -0.01,0.17 -0.34,-0.01 -0.68,0 -1.03,-0.02 -0.08,0 -0.16,-0.02 -0.24,-0.02 -0.01,-0.07 -0.01,-0.13 -0.02,-0.2 -0.03,-0.31 -0.05,-0.62 -0.08,-0.93 -0.01,-0.17 -0.28,-0.17 -0.27,0 0.03,0.32 0.05,0.63 0.08,0.95 0,0.05 0.01,0.11 0.01,0.16 -0.87,-0.06 -1.74,-0.14 -2.6,-0.25 -0.02,-0.08 -0.03,-0.17 -0.05,-0.25 -0.06,-0.32 -0.11,-0.63 -0.17,-0.95 -0.02,-0.13 -0.22,-0.07 -0.2,0.05 0.05,0.31 0.1,0.62 0.15,0.93 l 0.03,0.18 c -0.5,-0.07 -1.01,-0.13 -1.5,-0.22 0.04,-0.22 0.05,-0.45 0.06,-0.67 0.02,-0.32 0.03,-0.64 0.04,-0.95 0.03,-0.64 0.05,-1.27 0.08,-1.91 0.01,-0.18 -0.27,-0.18 -0.27,0 -0.03,0.64 -0.06,1.27 -0.09,1.91 -0.01,0.32 -0.03,0.64 -0.04,0.95 0,0.21 -0.01,0.42 0,0.63 -0.62,-0.11 -1.25,-0.24 -1.87,-0.4 0,-0.01 0,-0.02 -0.01,-0.03 -0.03,-0.12 -0.05,-0.24 -0.08,-0.37 -0.06,-0.25 -0.11,-0.51 -0.17,-0.76 -0.03,-0.16 -0.28,-0.09 -0.24,0.07 0.05,0.25 0.11,0.51 0.16,0.76 0.02,0.08 0.04,0.16 0.05,0.24 -0.25,-0.07 -0.5,-0.15 -0.75,-0.23 0,-0.1 0,-0.2 0,-0.3 0,-0.39 0,-0.77 -0.01,-1.16 0,-0.15 -0.24,-0.15 -0.24,0 0,0.39 0,0.77 -0.01,1.16 0,0.08 0,0.15 0,0.23 -0.12,-0.04 -0.26,-0.07 -0.38,-0.12 -0.09,-0.04 -0.18,-0.09 -0.28,-0.13 -0.02,-0.22 -0.04,-0.44 -0.07,-0.66 -0.01,-0.07 -0.06,-0.13 -0.13,-0.13 -0.07,0 -0.14,0.06 -0.13,0.13 0.02,0.18 0.03,0.35 0.05,0.53 -0.91,-0.42 -1.74,-1 -2.34,-1.74 -0.12,-0.33 -0.3,-0.65 -0.4,-0.96 -0.2,-0.61 -0.35,-1.26 -0.41,-1.9 -0.01,-0.07 0,-0.15 -0.01,-0.22 0.02,-0.02 0.05,-0.04 0.06,-0.07 0.11,-0.27 0.12,-0.6 0.15,-0.89 0.21,0.13 0.43,0.23 0.65,0.35 -0.12,0.69 -0.12,1.41 -0.02,2.1 0.06,0.39 0.16,0.77 0.28,1.15 0.11,0.35 0.22,0.73 0.41,1.05 0.04,0.08 0.18,0.03 0.15,-0.06 -0.12,-0.35 -0.27,-0.68 -0.37,-1.04 -0.1,-0.37 -0.16,-0.75 -0.21,-1.13 -0.08,-0.62 -0.07,-1.23 -0.04,-1.85 0.02,0.13 0.06,0.25 0.11,0.36 0.06,0.11 0.23,0.05 0.23,-0.06 0,-0.08 -0.01,-0.16 -0.02,-0.24 0.18,0.08 0.36,0.13 0.55,0.2 0,0 0,0.01 0,0.01 -0.01,0.12 -0.04,0.26 -0.01,0.38 0.03,0.11 0.18,0.13 0.24,0.03 0.06,-0.09 0.06,-0.21 0.08,-0.32 0.19,0.06 0.38,0.12 0.57,0.17 0.28,0.23 0.56,0.46 0.86,0.67 0.1,0.07 0.22,-0.09 0.13,-0.17 -0.06,-0.05 -0.12,-0.1 -0.18,-0.15 0,-0.01 0.01,-0.01 0.01,-0.02 0.02,-0.06 0.01,-0.13 -0.01,-0.19 0.09,0.01 0.17,0.04 0.26,0.05 0.12,0.01 0.14,-0.18 0.03,-0.21 -0.13,-0.03 -0.25,-0.06 -0.38,-0.09 -0.02,-0.08 -0.05,-0.17 -0.07,-0.25 -0.05,-0.23 -0.06,-0.47 -0.05,-0.71 0.01,-0.2 0.06,-0.39 0.11,-0.57 0.18,-0.01 0.35,-0.04 0.53,-0.07 0.12,0.04 0.23,0.09 0.35,0.13 -0.1,0.32 -0.17,0.65 -0.18,0.98 -0.01,0.25 0.01,0.51 0.06,0.76 0.04,0.25 0.1,0.51 0.27,0.7 0.07,0.07 0.2,0.02 0.2,-0.08 0,-0.23 -0.09,-0.46 -0.14,-0.68 -0.04,-0.22 -0.06,-0.44 -0.06,-0.66 0,-0.32 0.06,-0.63 0.15,-0.93 0.29,0.08 0.59,0.15 0.88,0.21 0.12,-0.03 0.2,-0.02 0.27,-0.01 z m -3.4,-0.51 c 0.25,0.06 0.51,0.1 0.77,0.11 -0.06,0.19 -0.11,0.39 -0.13,0.59 -0.02,0.26 -0.01,0.53 0.04,0.79 0,0.02 0.01,0.04 0.02,0.07 -0.07,-0.02 -0.15,-0.04 -0.22,-0.06 -0.2,-0.16 -0.39,-0.32 -0.59,-0.49 0.02,-0.19 0.04,-0.38 0.06,-0.56 0.02,-0.15 0.04,-0.3 0.05,-0.45 z m 0.09,-0.75 c 0.2,0.15 0.39,0.32 0.63,0.44 0.04,0.02 0.09,0.03 0.13,0.05 -0.16,-0.01 -0.31,-0.02 -0.47,-0.06 -0.11,-0.02 -0.21,-0.06 -0.32,-0.08 0,-0.12 0.01,-0.23 0.03,-0.35 z m -0.37,0.67 c -0.02,0.17 -0.04,0.34 -0.07,0.51 -0.02,0.12 -0.03,0.24 -0.05,0.36 -0.14,-0.09 -0.32,0.09 -0.19,0.2 0.05,0.04 0.1,0.08 0.14,0.12 0,0.02 -0.01,0.04 -0.01,0.07 0,0.01 0,0.02 0,0.03 -0.14,-0.05 -0.29,-0.09 -0.43,-0.15 -0.07,-0.03 -0.13,-0.07 -0.2,-0.1 -0.01,-0.04 -0.02,-0.08 -0.02,-0.12 -0.03,-0.24 -0.04,-0.48 -0.05,-0.72 0,-0.17 0.01,-0.34 0.03,-0.51 0.27,0.11 0.55,0.22 0.85,0.31 z m -1.13,0.86 c -0.26,-0.13 -0.51,-0.26 -0.76,-0.41 0.03,-0.22 0.06,-0.45 0.08,-0.67 0.03,-0.22 0.05,-0.45 0.08,-0.67 0.19,0.15 0.39,0.28 0.6,0.4 -0.02,0.22 -0.04,0.45 -0.04,0.68 0,0.22 0.01,0.44 0.04,0.67 z m -3.65,-2.82 c 0.25,0.31 0.46,0.64 0.64,1 -0.02,0 -0.03,0 -0.05,0.01 -0.03,0.02 -0.06,0.05 -0.09,0.07 -0.12,-0.17 -0.24,-0.33 -0.36,-0.5 -0.05,-0.07 -0.13,-0.1 -0.2,-0.05 -0.07,0.04 -0.1,0.14 -0.05,0.2 0.12,0.18 0.25,0.36 0.37,0.54 -0.08,0.06 -0.16,0.13 -0.25,0.19 -0.21,-0.22 -0.41,-0.45 -0.62,-0.67 -0.05,-0.05 -0.09,-0.1 -0.14,-0.16 0.26,-0.21 0.5,-0.42 0.75,-0.63 z m -1.17,0.57 c -0.07,0.06 -0.15,0.12 -0.22,0.19 -0.22,-0.32 -0.47,-0.62 -0.75,-0.89 0.06,-0.06 0.13,-0.12 0.19,-0.18 0.26,0.29 0.52,0.59 0.78,0.88 z m -5.99,-1.41 c 0.02,0.03 0.05,0.07 0.08,0.1 -0.03,0 -0.06,0 -0.09,0.02 -0.41,0.29 -0.8,0.6 -1.21,0.9 -0.2,-0.14 -0.41,-0.28 -0.61,-0.43 0.23,-0.18 0.46,-0.36 0.68,-0.54 0.38,-0.05 0.77,-0.07 1.15,-0.05 z m -1.72,0.15 c -0.11,0.08 -0.22,0.17 -0.33,0.25 -0.05,-0.04 -0.1,-0.08 -0.15,-0.12 0.14,-0.05 0.29,-0.09 0.43,-0.13 0.03,0 0.04,0 0.05,0 z m -3,0.4 c -0.23,0.22 -0.45,0.45 -0.64,0.71 -0.01,0.01 -0.02,0.01 -0.02,0.02 -0.12,-0.09 -0.25,-0.19 -0.37,-0.28 0.28,-0.2 0.55,-0.39 0.83,-0.59 0.06,0.04 0.13,0.09 0.2,0.14 z m -1.13,-0.72 c 0.23,0.14 0.46,0.28 0.69,0.43 -0.27,0.19 -0.55,0.38 -0.82,0.57 -0.19,-0.14 -0.38,-0.29 -0.57,-0.43 0.23,-0.18 0.48,-0.37 0.7,-0.57 z m -1.16,0.51 c -0.02,0.02 -0.05,0.04 -0.07,0.06 -0.18,0.14 -0.35,0.29 -0.53,0.43 -0.02,0.02 -0.04,0.04 -0.07,0.06 0.13,-0.26 0.27,-0.51 0.41,-0.76 0.09,0.07 0.17,0.14 0.26,0.21 z m -0.87,0.98 c 0.02,-0.01 0.04,-0.03 0.07,-0.04 0.2,0.12 0.39,0.27 0.6,0.4 -0.26,0.18 -0.52,0.36 -0.78,0.54 -0.08,0.06 -0.16,0.11 -0.25,0.17 0,-0.01 0,-0.02 0.01,-0.03 0.07,-0.37 0.2,-0.71 0.35,-1.04 z m -2.36,9.17 c 0.45,-0.16 0.9,-0.24 1.35,-0.24 0.48,-0.01 0.89,0.06 1.35,0.23 0.14,0.05 0.28,0.13 0.42,0.21 -0.15,0.1 -0.3,0.19 -0.44,0.25 -0.42,0.16 -0.83,0.25 -1.26,0.26 -0.44,0.01 -0.82,-0.05 -1.24,-0.19 -0.22,-0.08 -0.43,-0.19 -0.63,-0.3 0.15,-0.09 0.29,-0.17 0.45,-0.22 z m -4,10.25 c 0.13,-0.42 0.39,-0.8 0.71,-1.12 -0.01,0.35 -0.03,0.69 -0.02,1.04 0,0.22 0.02,0.45 0.03,0.67 -0.04,0.21 -0.05,0.43 0,0.69 0.01,0.04 0.03,0.09 0.04,0.13 0.03,0.44 0.07,0.95 0.49,1.18 0.08,0.05 0.18,0.06 0.26,0.05 0.74,0.75 1.8,1.08 2.81,1.27 1.25,0.23 2.51,0.39 3.76,0.11 0.49,-0.11 1.08,-0.36 1.54,-0.73 0.01,0.02 0.01,0.03 0.03,0.05 0.38,0.23 0.77,0.45 1.15,0.68 0.19,0.11 0.37,0.23 0.57,0.33 0.09,0.05 0.19,0.09 0.29,0.14 0.1,0.05 0.2,0.11 0.31,0.13 0.09,0.02 0.15,-0.08 0.09,-0.15 -0.08,-0.08 -0.18,-0.14 -0.27,-0.21 -0.09,-0.06 -0.17,-0.12 -0.26,-0.18 -0.19,-0.12 -0.38,-0.22 -0.57,-0.33 -0.38,-0.21 -0.75,-0.43 -1.13,-0.64 0.08,-0.08 0.14,-0.16 0.21,-0.24 0,0.01 0,0.01 0.01,0.02 0.12,0.21 0.34,0.25 0.53,0.19 0.34,0.54 0.82,0.99 1.43,1.26 0.42,0.19 0.88,0.28 1.33,0.29 0.5,0.16 1,0.33 1.5,0.49 0.28,0.09 0.56,0.18 0.84,0.27 0.15,0.05 0.3,0.09 0.46,0.13 0.14,0.03 0.28,0.1 0.42,0.08 0.06,-0.01 0.1,-0.08 0.05,-0.13 -0.1,-0.09 -0.22,-0.12 -0.34,-0.17 -0.15,-0.06 -0.3,-0.12 -0.45,-0.17 -0.29,-0.1 -0.58,-0.19 -0.87,-0.28 -0.29,-0.09 -0.58,-0.18 -0.86,-0.27 0.32,-0.05 0.62,-0.15 0.92,-0.28 0.31,0.15 0.62,0.31 0.93,0.46 0.2,0.1 0.4,0.2 0.61,0.29 0.2,0.09 0.42,0.22 0.63,0.26 0.1,0.02 0.2,-0.11 0.11,-0.19 -0.16,-0.14 -0.38,-0.23 -0.57,-0.32 -0.21,-0.1 -0.42,-0.2 -0.63,-0.3 -0.25,-0.12 -0.51,-0.24 -0.77,-0.35 0.33,-0.19 0.62,-0.43 0.88,-0.71 0.26,0.24 0.54,0.46 0.83,0.65 0.26,0.17 0.52,0.31 0.8,0.44 0.15,0.07 0.3,0.13 0.45,0.17 0.14,0.04 0.29,0.08 0.44,0.05 0.08,-0.02 0.09,-0.11 0.04,-0.16 -0.09,-0.1 -0.22,-0.15 -0.34,-0.22 -0.13,-0.07 -0.27,-0.14 -0.41,-0.2 -0.27,-0.13 -0.53,-0.27 -0.78,-0.43 -0.28,-0.19 -0.55,-0.4 -0.8,-0.62 0.18,-0.26 0.34,-0.53 0.45,-0.82 0.9,0.83 2.03,1.4 3.16,1.86 1.44,0.58 2.96,0.91 4.49,1.14 3.66,0.56 7.38,0.8 11.07,0.91 3.77,0.11 7.55,0.05 11.31,-0.25 3.18,-0.25 6.37,-0.68 9.44,-1.55 1.68,-0.48 3.33,-1.1 4.89,-1.88 0.53,-0.27 1.06,-0.56 1.57,-0.88 0.35,-0.14 0.7,-0.3 1.02,-0.51 0.83,-0.56 1.48,-1.29 1.85,-2.22 0.34,-0.85 0.31,-1.78 -0.12,-2.6 -0.39,-0.75 -1.08,-1.3 -1.93,-1.19 -0.08,-0.37 -0.14,-0.74 -0.2,-1.11 0.35,0.02 0.7,0.08 1.04,0.2 0.31,0.11 0.6,0.27 0.87,0.46 0.14,0.1 0.28,0.22 0.4,0.34 0.11,0.11 0.22,0.28 0.36,0.34 0.11,0.05 0.21,-0.03 0.19,-0.15 -0.03,-0.16 -0.2,-0.32 -0.31,-0.43 -0.13,-0.13 -0.28,-0.25 -0.43,-0.36 -0.3,-0.21 -0.63,-0.38 -0.97,-0.5 -0.38,-0.13 -0.79,-0.2 -1.19,-0.2 -0.01,-0.08 -0.02,-0.15 -0.03,-0.23 -0.01,-0.13 -0.02,-0.25 -0.03,-0.38 0.49,0.09 0.97,0.19 1.46,0.28 0.32,0.06 0.63,0.12 0.95,0.18 0.3,0.06 0.61,0.13 0.92,0.09 0.07,-0.01 0.12,-0.11 0.04,-0.15 -0.27,-0.14 -0.58,-0.18 -0.88,-0.24 -0.32,-0.06 -0.64,-0.11 -0.95,-0.17 -0.52,-0.09 -1.04,-0.18 -1.56,-0.26 -0.01,-0.14 -0.02,-0.29 -0.03,-0.43 -0.01,-0.13 -0.01,-0.26 -0.02,-0.39 0.03,-0.01 0.06,-0.02 0.09,-0.03 0.25,0.02 0.5,0.05 0.75,0.08 -0.05,0.08 -0.04,0.21 0.07,0.23 0.43,0.06 0.86,0.17 1.26,0.34 0.2,0.08 0.38,0.19 0.57,0.28 0.2,0.1 0.38,0.24 0.58,0.32 0.13,0.06 0.26,-0.09 0.16,-0.2 -0.14,-0.17 -0.36,-0.29 -0.55,-0.41 -0.2,-0.12 -0.42,-0.21 -0.64,-0.3 -0.18,-0.07 -0.36,-0.12 -0.54,-0.17 0.22,0.02 0.44,0.04 0.65,0.07 1.11,0.14 2.21,0.35 3.3,0.6 -0.22,0.62 -0.35,1.3 -0.43,1.83 -0.11,0.69 -0.16,1.38 -0.18,2.08 -0.01,0 -0.02,0 -0.03,0 -0.11,0.04 -0.19,0.13 -0.24,0.23 -0.08,-0.11 -0.14,-0.23 -0.24,-0.32 -0.06,-0.06 -0.17,0.02 -0.12,0.09 0.14,0.18 0.24,0.39 0.35,0.59 0.03,0.12 0.09,0.23 0.17,0.33 0.06,0.14 0.1,0.28 0.14,0.42 0.02,0.33 0.04,0.65 0.08,0.98 0.01,0.08 0.02,0.17 0.03,0.25 -0.17,0.04 -0.32,0.17 -0.3,0.37 0.02,0.25 0.11,0.48 0.25,0.69 -0.16,0.56 -0.46,1.08 -0.85,1.52 -0.19,0.21 -0.41,0.41 -0.64,0.57 -0.23,0.16 -0.52,0.28 -0.73,0.46 -0.08,0.07 -0.02,0.23 0.09,0.23 0.3,-0.02 0.61,-0.23 0.85,-0.4 0.27,-0.19 0.52,-0.41 0.74,-0.66 0.36,-0.41 0.62,-0.89 0.8,-1.41 0.2,0.2 0.43,0.36 0.69,0.5 -0.04,0.12 -0.06,0.25 -0.12,0.37 -0.2,0.39 -0.5,0.69 -0.86,0.94 -0.06,0.04 -0.03,0.16 0.06,0.13 0.58,-0.21 0.98,-0.74 1.15,-1.32 0.29,0.14 0.58,0.24 0.85,0.3 0.11,0.03 0.22,0.03 0.34,0.05 -0.13,0.12 -0.26,0.23 -0.39,0.35 -0.12,0.11 -0.24,0.21 -0.36,0.33 -0.12,0.12 -0.25,0.22 -0.35,0.35 -0.05,0.06 0.01,0.16 0.09,0.11 0.14,-0.09 0.26,-0.2 0.38,-0.3 0.13,-0.11 0.25,-0.21 0.38,-0.32 0.17,-0.15 0.34,-0.31 0.52,-0.46 0.23,0.03 0.47,0.05 0.7,0.05 -0.09,0.08 -0.18,0.17 -0.27,0.25 -0.13,0.11 -0.25,0.22 -0.36,0.36 -0.06,0.08 0.05,0.18 0.13,0.13 0.14,-0.08 0.26,-0.2 0.39,-0.31 0.13,-0.11 0.25,-0.22 0.38,-0.33 0.04,-0.03 0.08,-0.07 0.11,-0.1 0.68,-0.02 1.36,-0.11 2.04,-0.24 -0.01,0.03 -0.02,0.05 -0.03,0.08 -0.04,0.1 -0.1,0.21 -0.09,0.32 0.01,0.08 0.1,0.12 0.16,0.07 0.08,-0.07 0.12,-0.18 0.16,-0.27 0.04,-0.09 0.08,-0.18 0.11,-0.26 0.93,-0.2 1.88,-0.52 2.55,-1.21 0.09,0.01 0.18,0 0.26,-0.05 0.42,-0.23 0.45,-0.74 0.49,-1.18 0.01,-0.04 0.03,-0.09 0.04,-0.13 0.02,-0.09 0.02,-0.17 0.02,-0.26 0,0 0,0 0,0 -0.01,0.08 0,0.17 -0.02,0.25 0.22,1.39 -0.62,2.72 -1.68,3.63 -1.31,1.13 -3.05,1.75 -4.67,2.34 -3.49,1.28 -7.09,2.28 -10.75,3.04 -7.31,1.52 -14.81,2.07 -22.29,2.1 -3.78,0.02 -7.55,-0.1 -11.32,-0.29 -3.79,-0.19 -7.58,-0.48 -11.33,-1.08 -3.7,-0.59 -7.37,-1.46 -10.86,-2.77 -2.57,-0.98 -5.93,-2.77 -4.95,-5.85 z m 0.33,7.06 c -0.01,-0.22 -0.03,-0.43 -0.04,-0.65 0,-0.02 0,-0.03 0,-0.05 0.01,-0.26 0.02,-0.53 0.03,-0.79 0.01,-0.13 0.01,-0.26 0.01,-0.39 0,-0.13 -0.02,-0.24 -0.03,-0.36 0,-0.09 -0.08,-0.08 -0.13,-0.04 0,-0.06 -0.01,-0.12 -0.01,-0.18 0.12,0.12 0.22,0.24 0.35,0.35 1.37,1.14 3.08,1.82 4.77,2.44 1.85,0.68 3.74,1.25 5.66,1.7 3.93,0.93 7.96,1.44 11.99,1.79 4.01,0.34 8.04,0.52 12.06,0.59 8.02,0.14 16.08,-0.24 23.97,-1.65 3.94,-0.71 7.83,-1.67 11.59,-2.97 1.33,-0.46 2.83,-0.96 4.21,-1.62 0,0.36 -0.01,0.72 -0.01,1.08 0,0.19 0,0.39 -0.01,0.58 0,0.19 -0.02,0.39 0.03,0.57 0,0.01 0.02,0.01 0.02,0.02 -0.38,0.23 -0.76,0.44 -1.16,0.63 0,-0.08 -0.01,-0.15 -0.03,-0.23 -0.02,-0.09 -0.05,-0.18 -0.06,-0.27 -0.03,-0.17 -0.05,-0.35 -0.04,-0.52 0.01,-0.36 0.11,-0.71 0.29,-1.02 0.11,-0.19 -0.18,-0.35 -0.29,-0.17 -0.21,0.36 -0.33,0.76 -0.35,1.17 -0.01,0.2 0,0.4 0.04,0.6 0.04,0.17 0.1,0.42 0.25,0.53 -0.59,0.27 -1.2,0.52 -1.82,0.74 0,-0.01 0,-0.03 0,-0.04 0,-0.07 0,-0.14 -0.01,-0.22 0,-0.16 0.01,-0.31 0.03,-0.47 0.05,-0.31 0.15,-0.6 0.3,-0.88 0.09,-0.17 -0.17,-0.32 -0.26,-0.15 -0.17,0.3 -0.28,0.63 -0.34,0.96 -0.03,0.17 -0.04,0.33 -0.04,0.5 0,0.09 0.01,0.18 0.02,0.27 0.01,0.04 0.01,0.08 0.02,0.11 -0.14,0.05 -0.27,0.1 -0.41,0.14 -0.15,0.05 -0.3,0.09 -0.45,0.14 0.03,-0.05 0.05,-0.1 0.08,-0.15 0.04,-0.1 0.08,-0.19 0.11,-0.29 l 0.17,-0.58 c 0.03,-0.09 -0.03,-0.21 -0.13,-0.23 -0.1,-0.02 -0.2,0.03 -0.23,0.13 -0.05,0.19 -0.11,0.39 -0.16,0.58 -0.03,0.1 -0.04,0.2 -0.06,0.31 -0.01,0.1 -0.03,0.2 -0.03,0.3 0,0 0.01,0 0.01,0.01 -0.38,0.12 -0.77,0.23 -1.15,0.35 0.01,-0.07 0.02,-0.15 0.02,-0.22 0.03,-0.32 0.06,-0.63 0.08,-0.95 0.01,-0.09 -0.08,-0.16 -0.16,-0.16 -0.09,0 -0.15,0.07 -0.16,0.16 -0.03,0.31 -0.06,0.62 -0.09,0.93 -0.01,0.11 -0.02,0.23 -0.03,0.34 -0.33,0.1 -0.66,0.21 -1,0.3 0,-0.03 0.01,-0.05 0.01,-0.08 0.03,-0.28 0.05,-0.56 0.08,-0.84 0.01,-0.06 -0.06,-0.12 -0.12,-0.12 -0.07,0 -0.11,0.05 -0.12,0.12 l -0.09,0.83 c -0.01,0.06 -0.01,0.11 -0.02,0.17 -0.48,0.14 -0.96,0.28 -1.44,0.41 0.01,-0.08 0.02,-0.16 0.02,-0.24 0.05,-0.56 0.1,-1.11 0.16,-1.67 0.02,-0.2 -0.29,-0.2 -0.31,0 -0.06,0.55 -0.12,1.09 -0.19,1.64 -0.01,0.12 -0.03,0.24 -0.04,0.36 -0.5,0.13 -0.99,0.25 -1.49,0.37 0.02,-0.07 0.04,-0.15 0.06,-0.22 0.02,-0.07 -0.02,-0.15 -0.09,-0.16 -0.07,-0.02 -0.15,0.02 -0.16,0.09 -0.02,0.11 -0.05,0.22 -0.07,0.33 v 0.02 c -0.48,0.12 -0.95,0.25 -1.43,0.36 v -0.68 c 0,-0.08 -0.07,-0.16 -0.16,-0.16 -0.08,0 -0.16,0.07 -0.16,0.16 v 0.76 c -0.52,0.12 -1.05,0.21 -1.58,0.32 0,-0.02 -0.01,-0.04 -0.01,-0.05 -0.02,-0.08 -0.04,-0.16 -0.07,-0.24 -0.05,-0.17 -0.11,-0.33 -0.16,-0.5 -0.02,-0.07 -0.1,-0.12 -0.17,-0.1 -0.07,0.02 -0.12,0.1 -0.1,0.17 0.06,0.17 0.11,0.34 0.17,0.51 0.03,0.09 0.06,0.17 0.1,0.26 0,0 0,0 0,0 -2.41,0.5 -4.84,0.93 -7.28,1.26 -6.08,0.8 -12.24,1.07 -18.37,0.92 -5.78,-0.15 -11.56,-0.65 -17.28,-1.5 0,-0.06 0,-0.12 0,-0.18 0,-0.07 -0.06,-0.14 -0.14,-0.14 -0.08,0 -0.14,0.06 -0.14,0.14 0,0.05 0,0.09 0,0.14 -0.23,-0.04 -0.47,-0.06 -0.7,-0.1 -1.08,-0.17 -2.17,-0.36 -3.25,-0.57 0,-0.08 0,-0.17 0,-0.25 0,-0.17 0,-0.34 0,-0.52 0,-0.08 -0.07,-0.14 -0.14,-0.14 -0.08,0 -0.14,0.07 -0.14,0.14 0,0.17 0,0.34 0,0.52 0,0.07 0,0.13 0,0.2 -0.89,-0.18 -1.78,-0.37 -2.66,-0.59 0.07,-0.21 0.12,-0.43 0.17,-0.66 0.05,-0.24 0.11,-0.49 0.16,-0.73 0.04,-0.17 -0.22,-0.24 -0.26,-0.07 -0.06,0.25 -0.11,0.5 -0.17,0.75 -0.05,0.22 -0.09,0.43 -0.12,0.66 -0.49,-0.12 -0.98,-0.25 -1.46,-0.39 0.01,-0.22 0.02,-0.43 0.02,-0.65 0,-0.11 -0.18,-0.11 -0.18,0 0,0.2 0.01,0.41 0.02,0.61 0,0 -0.01,0 -0.01,0 -1.05,-0.3 -2.07,-0.65 -3.07,-1.04 v -1.19 c 0,-0.14 -0.21,-0.14 -0.21,0 v 1.11 c -0.22,-0.09 -0.44,-0.17 -0.66,-0.26 0,0 0,0 0,-0.01 -0.01,-0.17 -0.02,-0.33 -0.04,-0.5 -0.03,-0.33 -0.05,-0.66 -0.08,-1 -0.01,-0.15 -0.25,-0.15 -0.24,0 0.02,0.34 0.05,0.68 0.07,1.01 0.01,0.12 0.02,0.24 0.03,0.37 -0.27,-0.12 -0.53,-0.25 -0.8,-0.38 0,-0.05 0,-0.1 0,-0.15 0.01,-0.22 0,-0.44 0,-0.66 0,-0.44 0,-0.88 -0.01,-1.33 0,-0.16 -0.25,-0.16 -0.25,0 0,0.44 0,0.88 -0.01,1.33 0,0.22 -0.01,0.44 0,0.66 0,0.01 0,0.02 0,0.03 -0.04,-0.02 -0.08,-0.03 -0.12,-0.05 0.02,-0.25 0.03,-0.5 0.03,-0.74 0,-0.3 0,-0.6 -0.01,-0.89 0,-0.13 -0.2,-0.13 -0.2,0 0,0.3 0,0.6 -0.01,0.89 0,0.22 0.01,0.45 0.03,0.67 -0.34,-0.18 -0.67,-0.38 -1,-0.58 0,-0.01 0.01,0 0.01,-0.01 0.03,-0.38 0.02,-0.76 0.02,-1.14 0,-0.12 -0.18,-0.12 -0.18,0 0,0.36 -0.01,0.71 0.01,1.07 -0.15,-0.09 -0.31,-0.17 -0.46,-0.27 0.02,-0.29 -0.04,-0.59 -0.07,-0.88 -0.03,-0.3 -0.06,-0.59 -0.09,-0.89 0,-0.11 0,-0.22 0,-0.32 0,-0.16 -0.25,-0.16 -0.25,0 v 0.83 c 0,0.27 -0.02,0.55 0.02,0.82 0.01,0.07 0.08,0.07 0.14,0.04 0.01,0.1 0.03,0.19 0.04,0.29 -0.02,-0.01 -0.04,-0.02 -0.05,-0.03 -0.17,-0.19 -0.43,-0.36 -0.7,-0.54 z m 4.4,3.77 c 0.02,0.26 0.04,0.52 0.06,0.78 -0.33,-0.17 -0.64,-0.38 -0.91,-0.64 -0.1,-0.09 -0.28,0.03 -0.2,0.15 0.3,0.4 0.69,0.68 1.14,0.88 0.01,0.18 0.03,0.35 0.04,0.53 -0.22,-0.05 -0.43,-0.09 -0.64,-0.17 -0.14,-0.06 -0.2,0.17 -0.06,0.23 0.23,0.09 0.48,0.15 0.73,0.21 0.02,0.25 0.04,0.5 0.06,0.74 0,0 0,0.01 0,0.01 -0.3,-0.05 -0.59,-0.13 -0.87,-0.23 -0.15,-0.05 -0.21,0.18 -0.06,0.23 0.31,0.12 0.63,0.21 0.96,0.27 0.02,0.21 0.04,0.42 0.08,0.63 0.03,0.12 0.19,0.08 0.2,-0.03 0.02,-0.19 0.01,-0.38 -0.01,-0.57 0.23,0.03 0.47,0.07 0.7,0.07 0.08,0 0.16,-0.02 0.24,-0.02 0,0.03 0,0.06 0,0.09 0,0.27 0.01,0.54 0.01,0.81 -0.05,0.01 -0.09,0.03 -0.14,0.04 -0.67,0.12 -1.34,0.17 -2.02,0.11 -0.16,-0.01 -0.16,0.24 0,0.25 0.69,0.08 1.39,0.08 2.07,-0.04 0.03,-0.01 0.06,-0.02 0.09,-0.02 0,0.1 0,0.2 0,0.31 0,0.18 0.01,0.37 0.01,0.55 -0.51,0.01 -1.02,0.02 -1.53,0.03 -0.14,0 -0.14,0.22 0,0.22 0.52,0 1.03,0.01 1.55,0.01 0.01,0.21 0.03,0.42 0.07,0.62 0,0.01 0.02,0.01 0.02,0.02 -0.39,0.02 -0.77,0.02 -1.16,-0.02 -0.18,-0.02 -0.18,0.26 0,0.28 0.59,0.06 1.19,0.06 1.79,0.01 0,0 0.01,0 0.01,0 0,0 0,0 0,0.01 -0.53,0.18 -1.08,0.29 -1.64,0.29 -0.61,0 -1.23,-0.12 -1.78,-0.37 -0.16,-0.07 -0.34,-0.16 -0.5,-0.27 0.1,-0.62 0.07,-1.29 0.09,-1.91 0.02,-0.64 0.05,-1.29 0.07,-1.93 0.01,-0.64 0.03,-1.29 0.04,-1.93 0,-0.3 0.02,-0.62 0,-0.94 0.49,0.25 0.99,0.49 1.49,0.71 z m -9.23,4.99 c 0.77,-0.34 1.58,-0.6 2.39,-0.82 0.84,-0.23 1.7,-0.4 2.56,-0.53 0.46,-0.07 0.92,-0.11 1.39,-0.16 -0.01,0.2 -0.02,0.4 -0.02,0.6 -0.01,0.22 -0.02,0.44 -0.04,0.67 -0.3,0.2 -0.4,0.62 -0.33,0.99 0.09,0.52 0.45,0.91 0.86,1.21 0.73,0.54 1.63,0.84 2.53,0.94 0.87,0.1 1.79,0.01 2.61,-0.29 0.42,-0.15 0.85,-0.34 1.22,-0.6 0.18,-0.13 0.34,-0.28 0.48,-0.45 0.17,-0.21 0.2,-0.42 0.28,-0.66 0.08,-0.25 -0.18,-0.51 -0.43,-0.43 0,0 0,0 -0.01,0 l -0.03,-1.84 c 0.42,0.04 0.85,0.07 1.27,0.14 1.47,0.24 3.1,0.55 4.46,1.2 0.42,0.2 1.03,0.52 1.2,0.99 0.19,0.53 -0.34,0.86 -0.75,1.05 -1.28,0.6 -2.79,0.89 -4.17,1.17 -3.02,0.61 -6.14,0.73 -9.2,0.41 -1.53,-0.16 -3.05,-0.45 -4.54,-0.85 -0.65,-0.17 -1.34,-0.33 -1.94,-0.64 -0.39,-0.2 -0.96,-0.52 -0.95,-1.02 -0.01,-0.55 0.72,-0.89 1.16,-1.08 z m 1.3,8.17 c 0.03,-0.18 0.01,-0.38 0,-0.55 -0.01,-0.21 -0.03,-0.41 -0.04,-0.62 -0.03,-0.41 -0.06,-0.83 -0.09,-1.24 -0.01,-0.19 -0.31,-0.2 -0.3,0 0.02,0.42 0.05,0.85 0.07,1.27 0.01,0.21 0.02,0.42 0.04,0.62 0.01,0.14 0.02,0.3 0.05,0.44 -0.28,-0.1 -0.55,-0.22 -0.81,-0.36 0,-0.06 0,-0.12 0,-0.17 0,-0.29 0,-0.58 0,-0.87 0,-0.58 -0.01,-1.16 -0.01,-1.74 0,-0.19 -0.29,-0.19 -0.29,0 0,0.58 -0.01,1.16 -0.01,1.74 0,0.29 0,0.58 0,0.87 0,0 0,0 0,0 -0.13,-0.08 -0.25,-0.17 -0.37,-0.26 0,-0.02 0.01,-0.03 0.01,-0.05 0,-0.04 0,-0.09 0,-0.13 0,-0.1 0,-0.19 0,-0.29 0,-0.19 0,-0.39 0,-0.58 0,-0.18 -0.28,-0.18 -0.28,0 0,0.19 0,0.39 0,0.58 0,0.09 0,0.18 0,0.26 -0.18,-0.16 -0.34,-0.34 -0.49,-0.52 0.02,-0.29 0.01,-0.58 0.01,-0.88 0,-0.52 0,-1.03 0.01,-1.55 0,-0.33 0.01,-0.66 0.02,-0.99 0.1,0.07 0.21,0.13 0.32,0.19 0.04,0.02 0.09,0.03 0.14,0.06 -0.01,0.02 -0.03,0.03 -0.04,0.05 -0.06,0.34 -0.08,0.68 -0.11,1.02 -0.01,0.16 -0.04,0.33 -0.03,0.5 0.01,0.17 -0.02,0.34 0.01,0.51 0.03,0.13 0.19,0.1 0.23,0 0.06,-0.15 0.06,-0.32 0.09,-0.48 0.03,-0.16 0.04,-0.34 0.05,-0.5 0.03,-0.33 0.06,-0.65 0.06,-0.98 1.43,0.61 3.06,0.93 4.58,1.19 3.61,0.62 7.29,0.62 10.89,0 1.7,-0.29 3.49,-0.67 5.08,-1.36 0.24,-0.1 0.46,-0.23 0.67,-0.38 0.01,0.36 0.02,0.72 0.01,1.07 0,0 0,0 0,0 -0.02,-0.01 -0.04,-0.03 -0.06,-0.03 -0.07,0 -0.15,0.07 -0.14,0.14 0.03,0.3 0.05,0.61 0.08,0.91 0.01,0.1 0.03,0.2 0.04,0.3 -0.01,0.07 -0.01,0.15 -0.01,0.22 -0.03,0.27 -0.11,0.59 -0.13,0.91 -0.07,0.04 -0.13,0.08 -0.2,0.12 0,-0.01 0,-0.02 0,-0.03 0,-0.2 0,-0.4 0,-0.6 0,-0.39 0,-0.79 0,-1.18 0,-0.14 -0.22,-0.14 -0.22,0 0,0.39 0,0.79 0,1.18 0,0.19 0,0.39 0,0.58 0,0.06 0,0.13 0,0.19 -0.15,0.09 -0.3,0.18 -0.46,0.25 -0.23,0.1 -0.46,0.22 -0.69,0.34 -0.03,-0.26 -0.05,-0.52 -0.05,-0.77 -0.01,-0.53 0.04,-1.05 0.15,-1.57 0.04,-0.18 -0.23,-0.25 -0.27,-0.07 -0.12,0.53 -0.18,1.07 -0.18,1.61 0,0.27 0.01,0.55 0.04,0.82 0,0.04 0.01,0.08 0.01,0.12 -0.35,0.17 -0.7,0.34 -1.06,0.48 0.01,-0.26 0,-0.52 0,-0.77 0,-0.41 0,-0.83 0,-1.24 0,-0.18 -0.28,-0.18 -0.28,0 0,0.41 0,0.83 0,1.24 0,0.29 -0.01,0.58 0.01,0.87 -0.43,0.15 -0.87,0.28 -1.31,0.4 -0.02,-0.13 -0.03,-0.26 -0.03,-0.38 0,-0.33 0.06,-0.65 0.17,-0.95 0.06,-0.18 -0.21,-0.25 -0.28,-0.08 -0.13,0.33 -0.2,0.69 -0.2,1.05 0,0.14 0.01,0.29 0.04,0.44 -0.4,0.1 -0.81,0.18 -1.22,0.25 0,0 0,0 0,0 0,-0.19 0,-0.38 0,-0.57 0,-0.13 -0.21,-0.13 -0.21,0 0,0.19 0,0.38 0,0.57 0,0.01 0,0.03 0,0.04 -0.41,0.07 -0.83,0.12 -1.24,0.17 -1.85,0.2 -3.71,0.15 -5.56,0.01 -0.39,-0.03 -0.79,-0.06 -1.19,-0.09 -0.03,-0.11 -0.06,-0.21 -0.08,-0.33 -0.03,-0.33 0.02,-0.66 0.15,-0.97 0.06,-0.14 -0.14,-0.26 -0.21,-0.12 -0.16,0.34 -0.23,0.71 -0.2,1.09 0.01,0.1 0.04,0.2 0.06,0.3 -0.52,-0.04 -1.04,-0.09 -1.56,-0.14 0,-0.02 -0.01,-0.04 -0.01,-0.07 -0.03,-0.17 -0.05,-0.33 -0.08,-0.5 -0.01,-0.09 -0.15,-0.05 -0.14,0.04 0.03,0.16 0.06,0.32 0.08,0.49 0,0.01 0,0.01 0,0.02 -0.72,-0.08 -1.43,-0.17 -2.13,-0.31 -0.31,-0.07 -0.61,-0.15 -0.9,-0.25 z m 4.64,1.98 c 0.05,0 0.09,0.01 0.14,0.01 -0.07,0 -0.14,0.05 -0.14,0.14 0,0.16 0.02,0.32 0.03,0.48 -0.13,-0.02 -0.26,-0.04 -0.39,-0.06 0.03,-0.19 0.06,-0.4 0.08,-0.6 0.09,0.01 0.18,0.02 0.28,0.03 z m -1.28,8.86 c 0.06,0.71 0.18,1.41 0.27,2.11 0.05,0.36 0.1,0.72 0.15,1.08 -0.05,-0.04 -0.1,-0.08 -0.15,-0.12 0.02,-0.24 0.02,-0.46 -0.06,-0.73 -0.11,-0.36 -0.21,-0.72 -0.3,-1.08 -0.15,-0.6 -0.26,-1.21 -0.33,-1.83 0.12,0.19 0.27,0.38 0.42,0.57 z m 77.74,3.51 c -0.01,-0.13 -0.03,-0.25 -0.03,-0.38 -0.01,-0.41 0.04,-0.82 0.15,-1.22 0.06,-0.21 -0.26,-0.3 -0.33,-0.09 -0.13,0.43 -0.19,0.88 -0.19,1.33 0,0.23 0.02,0.45 0.05,0.68 0,0.01 0,0.01 0,0.02 -0.31,0.29 -0.64,0.54 -0.98,0.79 0.01,-0.11 0.01,-0.21 0.02,-0.32 0.03,-0.44 0.05,-0.88 0.08,-1.32 0.01,-0.2 -0.3,-0.2 -0.31,0 -0.03,0.43 -0.06,0.86 -0.09,1.29 -0.01,0.2 -0.03,0.39 -0.04,0.59 -0.48,0.33 -0.98,0.62 -1.49,0.89 0,-0.22 0,-0.44 0.02,-0.65 0.05,-0.49 0.16,-0.96 0.33,-1.42 0.08,-0.2 -0.25,-0.29 -0.33,-0.09 -0.18,0.48 -0.29,0.98 -0.35,1.48 -0.03,0.25 -0.04,0.51 -0.03,0.77 0,0.03 0.01,0.06 0.01,0.09 -0.35,0.17 -0.7,0.33 -1.05,0.48 0.01,-0.2 0.01,-0.4 0.02,-0.6 0.02,-0.56 0.04,-1.13 0.06,-1.69 0.01,-0.2 -0.31,-0.2 -0.32,0 -0.03,0.55 -0.06,1.11 -0.1,1.66 -0.02,0.26 -0.03,0.52 -0.05,0.78 -0.22,0.09 -0.45,0.18 -0.67,0.26 -0.37,0.14 -0.74,0.24 -1.1,0.37 0,-0.01 0,-0.03 0,-0.04 0,-0.21 0,-0.42 0,-0.63 0,-0.42 0,-0.85 -0.01,-1.27 0,-0.19 -0.3,-0.19 -0.3,0 0,0.42 0,0.85 -0.01,1.27 0,0.21 0,0.42 0,0.63 0,0.04 0,0.1 0,0.14 -0.4,0.14 -0.8,0.27 -1.2,0.41 0.1,-0.49 0.13,-0.99 0.18,-1.48 0.01,-0.07 -0.07,-0.13 -0.13,-0.13 -0.08,0 -0.12,0.06 -0.13,0.13 -0.05,0.49 -0.13,0.97 -0.14,1.46 0,0.03 0.01,0.06 0.04,0.08 -0.73,0.24 -1.46,0.49 -2.19,0.71 v -0.79 c 0,-0.22 -0.35,-0.22 -0.35,0 v 0.89 c -0.39,0.12 -0.79,0.22 -1.19,0.33 0,-0.06 0.01,-0.12 0.01,-0.18 0,-0.1 -0.01,-0.19 -0.03,-0.29 -0.03,-0.19 -0.05,-0.39 -0.08,-0.58 -0.01,-0.1 -0.08,-0.19 -0.2,-0.17 -0.11,0.02 -0.16,0.11 -0.14,0.22 0.03,0.19 0.06,0.39 0.09,0.58 0.01,0.1 0.02,0.19 0.06,0.29 0.02,0.07 0.05,0.14 0.07,0.2 -1.17,0.33 -2.35,0.63 -3.54,0.91 0,-0.01 0,-0.03 0.01,-0.04 0.03,-0.23 0.05,-0.45 0.08,-0.68 0.01,-0.08 -0.07,-0.15 -0.15,-0.15 -0.09,0 -0.14,0.07 -0.15,0.15 l -0.08,0.66 c 0,0.04 -0.01,0.08 -0.01,0.12 -0.41,0.09 -0.82,0.18 -1.23,0.27 0,-0.04 -0.02,-0.09 -0.02,-0.13 0,-0.36 0.11,-0.7 0.31,-0.99 0.11,-0.16 -0.15,-0.31 -0.26,-0.15 -0.24,0.33 -0.37,0.74 -0.39,1.14 0,0.07 0.02,0.14 0.02,0.21 -0.83,0.17 -1.66,0.34 -2.49,0.49 -0.02,-0.2 -0.01,-0.4 0.06,-0.59 0.03,-0.08 -0.03,-0.17 -0.11,-0.2 -0.09,-0.02 -0.17,0.03 -0.2,0.11 -0.09,0.23 -0.1,0.48 -0.07,0.73 -1.1,0.19 -2.2,0.39 -3.31,0.54 -0.02,0 -0.05,0 -0.07,0.01 0.03,-0.06 0.04,-0.14 -0.02,-0.19 -0.06,-0.06 -0.18,-0.07 -0.23,0 -0.06,0.07 -0.09,0.15 -0.12,0.23 -0.68,0.09 -1.36,0.15 -2.04,0.23 -0.01,-0.03 -0.02,-0.06 -0.03,-0.09 -0.04,-0.1 -0.14,-0.18 -0.25,-0.14 -0.1,0.03 -0.19,0.15 -0.14,0.25 0,0.01 0.01,0.02 0.01,0.03 -5.27,0.56 -10.57,0.7 -15.85,0.44 -5.35,-0.26 -10.68,-0.88 -15.97,-1.84 0,-0.01 0,-0.01 0,-0.02 0,-0.12 0,-0.25 0,-0.37 0,-0.25 0,-0.5 -0.01,-0.75 0,-0.2 -0.31,-0.2 -0.31,0 0,0.25 0,0.5 -0.01,0.75 0,0.11 0,0.22 0,0.33 -0.77,-0.14 -1.53,-0.27 -2.3,-0.42 -1.66,-0.34 -3.32,-0.73 -4.95,-1.2 0.04,0.01 0.08,0.03 0.12,0.02 0.06,-0.02 0.11,-0.09 0.08,-0.15 -0.03,-0.08 -0.08,-0.13 -0.14,-0.19 -0.02,-0.02 -0.05,-0.04 -0.07,-0.07 -0.02,-0.02 -0.04,-0.04 -0.07,-0.06 0.02,0.02 -0.01,0 -0.01,-0.01 -0.05,-0.04 -0.1,-0.09 -0.15,-0.14 -0.03,-0.03 -0.05,-0.05 -0.07,-0.08 -0.01,-0.01 -0.02,-0.02 -0.03,-0.04 0,0 -0.02,-0.02 -0.02,-0.03 -0.18,-0.23 -0.27,-0.45 -0.33,-0.73 -0.02,-0.1 -0.14,-0.16 -0.23,-0.13 -0.11,0.03 -0.15,0.13 -0.13,0.23 0.05,0.3 0.18,0.6 0.36,0.85 0.1,0.13 0.2,0.25 0.33,0.35 0.05,0.04 0.11,0.07 0.16,0.11 -1,-0.29 -2,-0.6 -2.98,-0.96 -1.58,-0.58 -3.11,-1.26 -4.58,-2.09 0.09,0.04 0.17,-0.04 0.16,-0.13 -0.01,-0.1 -0.08,-0.19 -0.13,-0.28 -0.04,-0.08 -0.09,-0.16 -0.13,-0.25 -0.09,-0.18 -0.18,-0.37 -0.25,-0.56 -0.14,-0.38 -0.23,-0.77 -0.27,-1.17 -0.02,-0.18 -0.3,-0.18 -0.29,0 0.03,0.43 0.12,0.86 0.27,1.27 0.07,0.2 0.15,0.4 0.25,0.58 0.05,0.1 0.11,0.19 0.18,0.29 0.06,0.08 0.11,0.17 0.2,0.23 -0.46,-0.26 -0.91,-0.53 -1.35,-0.83 0.03,-0.01 0.05,-0.04 0.05,-0.08 -0.02,-0.2 -0.11,-0.4 -0.15,-0.59 -0.05,-0.19 -0.08,-0.39 -0.1,-0.59 -0.03,-0.41 0.01,-0.82 0.13,-1.22 0.05,-0.17 -0.22,-0.25 -0.27,-0.07 -0.13,0.42 -0.18,0.87 -0.15,1.31 0.02,0.22 0.05,0.43 0.11,0.64 0.05,0.16 0.12,0.34 0.22,0.48 -0.45,-0.31 -0.9,-0.62 -1.34,-0.97 -0.05,-0.04 -0.1,-0.08 -0.15,-0.12 -0.01,-0.08 -0.02,-0.15 -0.03,-0.23 -0.05,-0.39 -0.1,-0.77 -0.15,-1.16 -0.08,-0.56 -0.15,-1.13 -0.24,-1.69 0,0 0.01,0.01 0.01,0.01 1.37,1.4 3.1,2.25 4.8,3.04 1.87,0.86 3.79,1.57 5.74,2.16 3.99,1.19 8.08,1.89 12.18,2.38 4.08,0.49 8.18,0.78 12.29,0.94 8.17,0.32 16.4,0.01 24.48,-1.54 4.03,-0.78 8.02,-1.87 11.89,-3.37 2.53,-0.98 5.64,-2.11 7.54,-4.4 0.02,0.24 0.04,0.48 0.07,0.73 0.01,0.15 0.03,0.3 0.04,0.46 0,0 0,0 0,0 -0.02,0.12 -0.05,0.25 -0.07,0.38 0,-0.26 -0.01,-0.53 -0.01,-0.79 0,-0.22 -0.34,-0.22 -0.35,0 0,0.3 -0.01,0.61 -0.01,0.91 0,0.15 -0.01,0.3 -0.01,0.46 0,0.1 -0.01,0.22 0,0.33 -0.02,0.02 -0.03,0.05 -0.05,0.07 -0.35,0.52 -0.75,0.95 -1.16,1.36 z m -0.06,-13.72 c 0.05,0.38 0.07,0.77 0.06,1.16 -0.01,0.22 -0.04,0.43 -0.07,0.64 -0.05,-0.01 -0.1,-0.01 -0.15,0.03 -0.19,0.16 -0.39,0.3 -0.6,0.44 -0.01,-0.42 -0.01,-0.83 -0.02,-1.25 0,-0.06 -0.03,-0.1 -0.06,-0.13 -0.01,-0.06 -0.02,-0.11 -0.03,-0.17 -0.03,-0.17 -0.06,-0.33 -0.09,-0.5 l -0.07,-0.39 c 0,0 0,0 0,-0.01 l -0.09,-0.49 c 0.16,-0.01 0.33,-0.03 0.49,-0.04 0.02,0.34 0.04,0.68 0.05,1.02 0.01,0.23 0.02,0.47 0.04,0.7 0.01,0.22 0,0.49 0.09,0.69 0.05,0.13 0.24,0.15 0.28,0 0.06,-0.21 0.02,-0.47 0.01,-0.69 -0.01,-0.23 -0.03,-0.47 -0.05,-0.7 -0.02,-0.35 -0.05,-0.7 -0.07,-1.05 0.05,0 0.11,-0.01 0.16,-0.01 0.03,0.25 0.08,0.51 0.12,0.75 z m 6.13,-3.39 c 0,-0.15 -0.01,-0.3 -0.01,-0.46 -0.01,-0.29 -0.03,-0.58 -0.04,-0.87 -0.03,-0.58 -0.06,-1.16 -0.09,-1.74 -0.01,-0.18 -0.29,-0.18 -0.29,0 0.02,0.58 0.05,1.16 0.07,1.74 0.01,0.29 0.02,0.58 0.03,0.87 0.01,0.2 0.02,0.41 0.05,0.61 -0.33,0.18 -0.68,0.33 -1.05,0.45 0,-0.05 0,-0.11 -0.01,-0.16 l -0.04,-0.95 c -0.02,-0.64 -0.05,-1.27 -0.07,-1.91 -0.01,-0.2 -0.32,-0.2 -0.31,0 0.02,0.65 0.03,1.3 0.05,1.94 l 0.02,0.95 c 0,0.08 0.01,0.15 0.01,0.23 -0.29,0.08 -0.58,0.16 -0.87,0.21 -0.11,0.02 -0.23,0.03 -0.35,0.05 0,-0.05 0,-0.11 0,-0.16 0,-0.12 0,-0.25 0,-0.37 0,-0.25 0,-0.5 0,-0.75 0,-0.17 -0.27,-0.17 -0.27,0 0,0.25 0,0.5 0,0.75 0,0.12 0,0.25 0,0.37 0,0.07 0,0.14 0,0.21 -0.35,0.05 -0.69,0.11 -1.04,0.15 0.02,-0.38 0.01,-0.77 0.01,-1.15 0,-0.17 -0.27,-0.17 -0.27,0 0,0.39 0,0.78 0.01,1.17 -0.54,0.06 -1.09,0.11 -1.64,0.15 -0.02,-0.07 -0.04,-0.14 -0.06,-0.21 -0.06,-0.17 -0.11,-0.33 -0.17,-0.5 -0.02,-0.07 -0.09,-0.11 -0.16,-0.09 -0.07,0.02 -0.11,0.09 -0.09,0.16 0.05,0.17 0.11,0.33 0.16,0.5 0.02,0.06 0.04,0.11 0.06,0.16 -0.61,0.04 -1.22,0.09 -1.83,0.13 -1.55,0.11 -3.09,0.16 -4.64,0.08 -0.05,-0.1 -0.19,-0.1 -0.26,-0.02 -0.09,-0.01 -0.17,-0.01 -0.26,-0.02 0,-0.01 0.01,-0.02 0.01,-0.03 0.01,-0.01 0.02,-0.03 0.02,-0.05 0.01,-0.02 0.01,-0.03 0.01,-0.05 v -0.25 c 0,-0.04 -0.02,-0.08 -0.04,-0.11 -0.03,-0.03 -0.07,-0.05 -0.11,-0.04 -0.04,0 -0.08,0.01 -0.11,0.04 -0.03,0.03 -0.04,0.07 -0.04,0.11 v 0.25 c 0,0.02 0,0.03 0.01,0.05 0,0.01 0.01,0.03 0.02,0.05 0,0 0,0.01 0.01,0.01 -0.18,-0.01 -0.37,-0.02 -0.55,-0.04 -1.4,-0.14 -2.77,-0.39 -4.11,-0.79 0,-0.06 0,-0.12 -0.01,-0.18 -0.01,-0.2 -0.03,-0.4 -0.04,-0.6 -0.03,-0.39 -0.06,-0.79 -0.09,-1.18 -0.01,-0.18 -0.3,-0.19 -0.29,0 0.02,0.39 0.05,0.79 0.07,1.18 0.01,0.19 0.02,0.39 0.03,0.58 0,0.04 0.01,0.07 0.01,0.11 -0.13,-0.04 -0.27,-0.08 -0.4,-0.12 -0.15,-0.05 -0.28,-0.12 -0.42,-0.18 0.03,-0.16 0.04,-0.32 0.05,-0.48 l 0.12,-2.24 c 0.01,-0.17 -0.26,-0.17 -0.27,0 -0.03,0.5 -0.05,0.99 -0.08,1.49 -0.01,0.25 -0.03,0.5 -0.04,0.75 -0.01,0.12 -0.02,0.25 -0.01,0.38 -0.43,-0.19 -0.86,-0.37 -1.28,-0.57 0.04,-0.01 0.08,-0.03 0.1,-0.07 0.05,-0.18 0.05,-0.38 0.07,-0.56 0.02,-0.19 0.02,-0.39 0.03,-0.58 0.02,-0.39 0.04,-0.77 0.06,-1.16 0.01,-0.14 -0.21,-0.14 -0.22,0 -0.03,0.39 -0.06,0.77 -0.1,1.16 -0.02,0.19 -0.04,0.39 -0.05,0.58 -0.01,0.19 -0.03,0.38 0,0.56 0.01,0.04 0.04,0.04 0.07,0.05 -0.09,-0.04 -0.18,-0.08 -0.27,-0.12 -0.22,-0.09 -0.44,-0.21 -0.65,-0.34 0,-0.63 0.01,-1.27 0.01,-1.9 0,-0.1 -0.15,-0.1 -0.15,0 0,0.61 0,1.21 0.01,1.82 -0.05,-0.03 -0.11,-0.06 -0.16,-0.1 -0.03,-0.31 -0.11,-0.64 -0.14,-0.91 -0.06,-0.52 -0.1,-1.03 -0.11,-1.55 -0.01,-0.36 0,-0.72 0.01,-1.07 0.23,0.15 0.47,0.28 0.72,0.38 1.7,0.69 3.6,1.06 5.42,1.36 3.85,0.62 7.77,0.62 11.62,0 1.76,-0.28 3.69,-0.61 5.31,-1.35 0.12,-0.05 0.23,-0.12 0.34,-0.19 0,0.25 0.01,0.5 0.01,0.74 0,0.36 0,0.72 0,1.08 0,0.22 0,0.44 0,0.66 0,0.11 0,0.22 0,0.33 0,0.08 0,0.16 0.02,0.23 0,0.13 0.01,0.25 0.02,0.38 -0.31,0.39 -0.68,0.7 -1.09,0.96 z" + id="path4" /> + <path + class="st1" + d="m 273.24,491.38 c -0.02,-0.1 -0.17,-0.06 -0.15,0.04 0.05,0.35 0.1,0.71 0.15,1.06 0.05,0.35 0.09,0.71 0.18,1.05 0.02,0.09 0.17,0.07 0.16,-0.02 -0.02,-0.36 -0.09,-0.71 -0.15,-1.06 -0.07,-0.36 -0.13,-0.72 -0.19,-1.07 z" + id="path6" /> + <path + class="st1" + d="m 273.69,494.04 c 0.07,0 0.07,-0.1 0,-0.1 -0.07,0 -0.07,0.1 0,0.1 z" + id="path8" /> + <path + class="st1" + d="m 274.86,491.96 c -0.03,-0.41 -0.06,-0.81 -0.09,-1.22 -0.01,-0.17 -0.28,-0.17 -0.27,0 0.03,0.41 0.05,0.83 0.08,1.24 0.01,0.21 0.02,0.42 0.04,0.62 0.02,0.2 0.03,0.41 0.08,0.6 0.03,0.11 0.18,0.08 0.19,-0.03 0.02,-0.2 0,-0.42 0,-0.62 0,-0.19 -0.02,-0.39 -0.03,-0.59 z" + id="path10" /> + <path + class="st1" + d="m 277.56,495.11 c 0.02,0.11 0.06,0.33 0.22,0.29 0.15,-0.04 0.09,-0.26 0.07,-0.37 -0.03,-0.14 -0.06,-0.28 -0.1,-0.42 -0.06,-0.27 -0.12,-0.54 -0.19,-0.81 -0.04,-0.18 -0.31,-0.1 -0.27,0.08 0.06,0.27 0.12,0.55 0.18,0.82 0.03,0.13 0.06,0.27 0.09,0.41 z" + id="path12" /> + <path + class="st1" + d="m 281.83,493.99 c -0.03,-0.33 -0.06,-0.65 -0.09,-0.98 -0.01,-0.11 -0.18,-0.11 -0.17,0 0.03,0.33 0.05,0.66 0.08,0.99 0.01,0.17 0.03,0.33 0.04,0.5 0.02,0.16 0.02,0.33 0.07,0.48 0.02,0.07 0.12,0.05 0.13,-0.02 0.02,-0.16 -0.01,-0.34 -0.02,-0.5 -0.01,-0.15 -0.03,-0.31 -0.04,-0.47 z" + id="path14" /> + <path + class="st1" + d="m 295.56,495.73 c 0.02,0.19 0.03,0.42 0.13,0.59 0.04,0.06 0.13,0.05 0.15,-0.02 0.05,-0.18 -0.01,-0.4 -0.03,-0.58 -0.03,-0.21 -0.06,-0.43 -0.09,-0.64 -0.06,-0.42 -0.12,-0.84 -0.18,-1.27 -0.02,-0.13 -0.24,-0.1 -0.22,0.03 0.06,0.42 0.11,0.84 0.17,1.27 0.02,0.2 0.05,0.41 0.07,0.62 z" + id="path16" /> + <path + class="st1" + d="m 296.78,496.03 c 0.01,0.08 0.02,0.15 0.03,0.23 0.01,0.07 0.01,0.16 0.05,0.22 0.04,0.05 0.13,0.07 0.16,0 0.06,-0.12 0.02,-0.3 0.01,-0.43 -0.01,-0.16 -0.03,-0.32 -0.04,-0.47 -0.03,-0.31 -0.06,-0.62 -0.09,-0.93 -0.02,-0.15 -0.26,-0.16 -0.24,0 0.03,0.31 0.05,0.62 0.08,0.93 0.01,0.14 0.02,0.3 0.04,0.45 z" + id="path18" /> + <path + class="st1" + d="m 298.26,496.25 c 0.01,0.06 0.01,0.11 0.02,0.17 0.01,0.07 0.03,0.13 0.05,0.19 0.02,0.06 0.14,0.08 0.15,0 0.01,-0.07 0.02,-0.13 0.02,-0.19 -0.01,-0.06 -0.01,-0.11 -0.02,-0.17 -0.01,-0.12 -0.02,-0.25 -0.04,-0.37 -0.03,-0.25 -0.06,-0.5 -0.08,-0.75 -0.01,-0.06 -0.05,-0.12 -0.12,-0.12 -0.06,0 -0.12,0.05 -0.12,0.12 0.03,0.25 0.06,0.5 0.08,0.75 0.03,0.12 0.04,0.25 0.06,0.37 z" + id="path20" /> + <path + class="st1" + d="m 299.49,496.57 c 0.01,0.08 0.02,0.15 0.03,0.23 0.01,0.07 0.02,0.14 0.08,0.19 0.03,0.03 0.09,0.04 0.13,0 0.09,-0.11 0.06,-0.28 0.05,-0.41 -0.01,-0.14 -0.02,-0.28 -0.04,-0.41 -0.02,-0.29 -0.05,-0.57 -0.07,-0.86 -0.02,-0.18 -0.3,-0.18 -0.29,0 0.02,0.29 0.05,0.57 0.07,0.86 0.01,0.13 0.03,0.26 0.04,0.4 z" + id="path22" /> + <path + class="st1" + d="m 301.5,501.52 c 0.07,0 0.07,-0.1 0,-0.1 -0.07,0 -0.07,0.1 0,0.1 z" + id="path24" /> + <path + class="st1" + d="m 303.12,499.91 c 0.08,0 0.08,-0.13 0,-0.13 -0.08,0 -0.08,0.13 0,0.13 z" + id="path26" /> + <path + class="st1" + d="m 306.54,502.34 c 0.07,0 0.07,-0.11 0,-0.11 -0.07,0 -0.07,0.11 0,0.11 z" + id="path28" /> + <path + class="st1" + d="m 308.65,498.61 c 0.08,0 0.09,-0.13 0,-0.13 -0.08,0 -0.08,0.13 0,0.13 z" + id="path30" /> + <path + class="st1" + d="m 268.16,503.98 c -0.12,0 -0.12,0.19 0,0.19 0.12,0 0.12,-0.19 0,-0.19 z" + id="path32" /> + <path + class="st1" + d="m 270.25,505.79 c 0.27,0.08 0.54,0.17 0.81,0.25 0.13,0.04 0.27,0.08 0.4,0.12 0.14,0.04 0.28,0.06 0.43,0.08 0.06,0.01 0.12,-0.08 0.05,-0.12 -0.13,-0.06 -0.26,-0.12 -0.4,-0.17 -0.13,-0.04 -0.27,-0.08 -0.4,-0.12 -0.28,-0.08 -0.55,-0.16 -0.83,-0.24 -0.13,-0.02 -0.18,0.17 -0.06,0.2 z" + id="path34" /> + <path + class="st1" + d="m 291.58,504.54 h 0.99 c 0.17,0 0.33,0 0.5,-0.01 0.16,-0.01 0.33,0 0.49,-0.04 0.1,-0.03 0.1,-0.17 0,-0.2 -0.16,-0.04 -0.33,-0.03 -0.49,-0.04 -0.17,-0.01 -0.33,-0.01 -0.5,-0.01 h -0.99 c -0.18,0.02 -0.18,0.3 0,0.3 z" + id="path36" /> + <path + class="st1" + d="m 292.36,505.58 c -0.16,0.03 -0.09,0.28 0.07,0.25 0.3,-0.05 0.61,-0.1 0.91,-0.16 0.15,-0.03 0.3,-0.06 0.45,-0.09 0.15,-0.03 0.3,-0.05 0.44,-0.11 0.1,-0.04 0.04,-0.19 -0.05,-0.19 -0.15,-0.01 -0.31,0.03 -0.46,0.05 -0.15,0.02 -0.31,0.05 -0.46,0.08 -0.3,0.05 -0.6,0.11 -0.9,0.17 z" + id="path38" /> + <path + class="st1" + d="m 260.99,498.22 c 0,-0.07 -0.07,-0.15 -0.15,-0.15 -0.47,0.04 -0.93,0.19 -1.33,0.44 -0.2,0.12 -0.38,0.27 -0.54,0.44 -0.08,0.09 -0.17,0.18 -0.24,0.28 -0.06,0.09 -0.16,0.22 -0.12,0.33 0.02,0.05 0.06,0.1 0.12,0.09 0.12,-0.01 0.17,-0.11 0.25,-0.19 0.07,-0.08 0.13,-0.17 0.21,-0.24 0.15,-0.15 0.31,-0.29 0.48,-0.4 0.35,-0.24 0.75,-0.4 1.17,-0.45 0.08,-0.02 0.15,-0.07 0.15,-0.15 z" + id="path40" /> + <path + class="st1" + d="m 250.89,501.52 c 0.04,-0.03 0.1,-0.06 0.13,-0.12 0.02,-0.05 0.01,-0.11 -0.05,-0.13 -0.03,-0.01 -0.05,-0.01 -0.08,-0.01 -0.01,0 -0.03,0 -0.04,0 0,0 -0.02,0 -0.01,0 -0.04,0 -0.08,-0.01 -0.12,0 -0.02,0.01 -0.05,0.01 -0.07,0.01 0.02,0 -0.01,0 -0.02,0 -0.01,0 -0.02,0 -0.03,0 -0.02,0 -0.05,0 -0.07,0 -0.06,0 -0.09,0 -0.13,-0.01 -0.19,-0.03 -0.35,-0.12 -0.48,-0.25 -0.13,-0.14 -0.33,0.07 -0.21,0.21 0.16,0.17 0.39,0.29 0.62,0.33 0.12,0.02 0.23,0.03 0.35,0.01 0.07,0.01 0.15,0 0.21,-0.04 z" + id="path42" /> + <path + class="st1" + d="m 253.2,498.94 c -0.05,0 -0.1,0.04 -0.1,0.1 0,0.05 0.04,0.1 0.1,0.1 0.11,0 0.22,0 0.33,0 0.05,0 0.1,0 0.16,0 0.06,0 0.11,-0.01 0.17,-0.01 0.1,-0.01 0.1,-0.15 0,-0.16 -0.05,-0.01 -0.11,-0.01 -0.16,-0.01 -0.05,0 -0.11,0 -0.16,0 -0.12,-0.02 -0.23,-0.02 -0.34,-0.02 z" + id="path44" /> + <path + class="st1" + d="m 317.11,500.16 c 0.33,0 0.65,0 0.98,0 0.33,0 0.65,0.01 0.98,-0.02 0.17,-0.02 0.17,-0.24 0,-0.26 -0.33,-0.03 -0.65,-0.02 -0.98,-0.02 -0.33,0 -0.65,0 -0.98,0 -0.19,0 -0.19,0.3 0,0.3 z" + id="path46" /> + <path + class="st1" + d="m 317.92,499 c 0.19,0 0.38,0.01 0.57,0.01 0.09,0 0.19,0.01 0.28,0.01 0.1,0 0.21,0.01 0.31,-0.01 0.15,-0.02 0.15,-0.28 0,-0.3 -0.1,-0.02 -0.21,-0.01 -0.31,-0.01 -0.09,0 -0.19,0.01 -0.28,0.01 -0.19,0 -0.38,0.01 -0.57,0.01 -0.17,0.02 -0.17,0.28 0,0.28 z" + id="path48" /> + <path + class="st1" + d="m 319.06,495.65 c -0.17,0 -0.17,0.26 0,0.26 0.17,0 0.17,-0.26 0,-0.26 z" + id="path50" /> + <path + class="st1" + d="m 322.11,501.27 c 0.14,-0.11 0.27,-0.22 0.41,-0.32 0.14,-0.11 0.26,-0.23 0.37,-0.36 0.08,-0.08 -0.02,-0.21 -0.12,-0.15 -0.16,0.09 -0.31,0.19 -0.46,0.3 -0.14,0.11 -0.28,0.22 -0.41,0.33 -0.06,0.05 -0.05,0.16 0,0.21 0.06,0.05 0.14,0.04 0.21,-0.01 z" + id="path52" /> + <path + class="st1" + d="m 322.31,499.56 c 0.05,0 0.11,-0.02 0.14,-0.06 0.08,-0.09 0.15,-0.17 0.23,-0.26 0.08,-0.09 0.15,-0.18 0.22,-0.27 0.03,-0.03 0.04,-0.06 0.04,-0.11 0,-0.04 -0.02,-0.08 -0.04,-0.11 -0.03,-0.03 -0.07,-0.05 -0.11,-0.04 -0.04,0 -0.07,0.02 -0.11,0.04 -0.09,0.07 -0.18,0.14 -0.27,0.22 -0.09,0.08 -0.17,0.15 -0.26,0.23 -0.08,0.07 -0.08,0.21 0,0.28 0.06,0.06 0.11,0.08 0.16,0.08 z" + id="path54" /> + <path + class="st1" + d="m 322.08,495.33 c 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 z" + id="path56" /> + <path + class="st1" + d="m 296.98,488.93 c 0.59,-0.12 1.17,-0.31 1.75,-0.47 0.57,-0.16 1.15,-0.3 1.67,-0.58 0.06,-0.03 0.04,-0.14 -0.04,-0.14 -0.59,0.04 -1.16,0.22 -1.72,0.39 -0.58,0.17 -1.17,0.31 -1.73,0.52 -0.19,0.06 -0.12,0.32 0.07,0.28 z" + id="path58" /> + <path + class="st1" + d="m 300.3,488.36 c -0.36,0.16 -0.7,0.33 -1.07,0.45 -0.37,0.11 -0.76,0.17 -1.14,0.18 -0.16,0 -0.16,0.26 0,0.25 0.41,0 0.82,-0.06 1.22,-0.17 0.39,-0.11 0.8,-0.25 1.12,-0.5 0.12,-0.1 0.01,-0.28 -0.13,-0.21 z" + id="path60" /> + <path + class="st1" + d="m 299.61,489.03 c -0.52,0.2 -1.05,0.4 -1.57,0.6 -0.16,0.06 -0.1,0.33 0.07,0.27 0.54,-0.19 1.07,-0.38 1.61,-0.57 0.27,-0.09 0.54,-0.19 0.8,-0.29 0.13,-0.05 0.27,-0.1 0.4,-0.15 0.12,-0.05 0.24,-0.08 0.34,-0.17 0.09,-0.09 0.02,-0.23 -0.1,-0.24 -0.13,-0.01 -0.26,0.06 -0.39,0.1 -0.13,0.05 -0.27,0.1 -0.4,0.15 -0.24,0.1 -0.5,0.2 -0.76,0.3 z" + id="path62" /> + <path + class="st1" + d="m 300.34,489.75 c -0.44,0.12 -0.88,0.23 -1.32,0.35 -0.17,0.04 -0.1,0.31 0.07,0.26 0.44,-0.11 0.88,-0.22 1.33,-0.33 l 0.65,-0.16 c 0.21,-0.05 0.44,-0.11 0.63,-0.23 0.07,-0.05 0.04,-0.15 -0.04,-0.16 -0.21,-0.01 -0.44,0.04 -0.64,0.09 -0.23,0.06 -0.46,0.12 -0.68,0.18 z" + id="path64" /> + <path + class="st1" + d="m 301.58,490.59 c 0.04,-0.06 0,-0.15 -0.07,-0.16 -0.17,-0.05 -0.39,0.08 -0.54,0.15 -0.18,0.07 -0.36,0.15 -0.55,0.22 -0.36,0.15 -0.73,0.29 -1.09,0.44 -0.07,0.03 -0.12,0.09 -0.1,0.17 0.02,0.07 0.1,0.13 0.17,0.1 0.37,-0.14 0.74,-0.29 1.11,-0.43 l 0.55,-0.21 c 0.17,-0.07 0.43,-0.13 0.52,-0.28 z" + id="path66" /> + <path + class="st1" + d="m 301.59,491.27 c -0.22,0.16 -0.44,0.32 -0.65,0.48 -0.03,0.02 -0.06,0.05 -0.07,0.09 -0.01,0.03 -0.01,0.08 0.01,0.11 0.04,0.06 0.13,0.1 0.2,0.05 0.22,-0.16 0.43,-0.33 0.65,-0.49 0.03,-0.02 0.05,-0.04 0.06,-0.08 0.01,-0.03 0,-0.08 -0.01,-0.11 -0.04,-0.05 -0.13,-0.09 -0.19,-0.05 z" + id="path68" /> + <path + class="st1" + d="m 276.36,497.27 c -0.05,-0.03 -0.11,-0.05 -0.16,-0.08 -0.11,-0.05 -0.22,-0.09 -0.34,-0.13 -0.23,-0.08 -0.45,-0.17 -0.68,-0.25 -0.06,-0.02 -0.12,0.02 -0.14,0.08 -0.02,0.06 0.02,0.12 0.08,0.14 0.22,0.08 0.44,0.17 0.66,0.25 0.11,0.04 0.22,0.08 0.33,0.12 0.06,0.02 0.11,0.04 0.17,0.05 0.06,0.01 0.11,0.04 0.17,0.03 0.06,-0.01 0.09,-0.07 0.05,-0.12 -0.04,-0.04 -0.09,-0.06 -0.14,-0.09 z" + id="path70" /> + <path + class="st1" + d="m 277.75,497.63 c -0.14,0 -0.14,0.21 0,0.21 0.14,0 0.14,-0.21 0,-0.21 z" + id="path72" /> + <path + class="st1" + d="m 272.67,497.44 c -0.08,-0.02 -0.16,-0.03 -0.25,-0.04 -0.17,-0.02 -0.33,-0.05 -0.5,-0.07 -0.04,-0.01 -0.09,0.01 -0.1,0.06 -0.01,0.04 0.01,0.09 0.06,0.1 0.17,0.03 0.34,0.06 0.5,0.1 0.08,0.02 0.17,0.03 0.25,0.04 0.09,0.01 0.17,0.02 0.26,0.01 0.05,-0.01 0.06,-0.09 0.01,-0.11 -0.07,-0.05 -0.15,-0.07 -0.23,-0.09 z" + id="path74" /> + <path + class="st1" + d="m 284.52,498.3 c 0.15,0.02 0.3,0.04 0.46,0.05 0.14,0.01 0.3,0.02 0.44,-0.01 0.09,-0.02 0.07,-0.14 0,-0.17 -0.13,-0.05 -0.3,-0.07 -0.44,-0.09 -0.15,-0.02 -0.3,-0.02 -0.46,-0.03 -0.3,-0.02 -0.61,-0.03 -0.91,-0.05 -0.12,-0.01 -0.12,0.17 0,0.19 0.3,0.03 0.6,0.07 0.91,0.11 z" + id="path76" /> + <path + class="st1" + d="m 286.86,498.51 c 0.19,0 0.39,0 0.58,0 0.1,0 0.19,0 0.29,-0.01 0.1,-0.01 0.2,0 0.29,-0.03 0.09,-0.03 0.09,-0.15 0,-0.18 -0.09,-0.03 -0.19,-0.03 -0.29,-0.03 -0.1,-0.01 -0.19,-0.01 -0.29,-0.01 -0.19,0 -0.39,0 -0.58,0 -0.16,0.01 -0.16,0.26 0,0.26 z" + id="path78" /> + <path + class="st1" + d="m 288.81,498.49 c 0.37,0.03 0.75,0.07 1.12,0.05 0.36,-0.02 0.72,-0.07 1.08,-0.1 0.36,-0.03 0.72,-0.02 1.08,-0.07 0.32,-0.04 0.71,-0.07 1,-0.22 0.09,-0.05 0.05,-0.19 -0.05,-0.19 -0.32,0 -0.66,0.12 -0.98,0.19 -0.38,0.08 -0.74,0.17 -1.13,0.2 -0.35,0.03 -0.69,0 -1.04,-0.02 -0.36,-0.02 -0.72,-0.02 -1.08,-0.05 -0.13,-0.01 -0.13,0.2 0,0.21 z" + id="path80" /> + <path + class="st1" + d="m 287.51,499.8 c 0.3,0 0.61,0.01 0.91,0.01 0.15,0 0.3,0 0.46,0 0.14,0 0.31,0.01 0.45,-0.04 0.09,-0.03 0.09,-0.15 0,-0.18 -0.13,-0.05 -0.3,-0.04 -0.45,-0.04 -0.15,0 -0.3,0 -0.46,0 -0.3,0 -0.61,0.01 -0.91,0.01 -0.15,0.01 -0.15,0.24 0,0.24 z" + id="path82" /> + <path + class="st1" + d="m 267.54,511.12 c 0.1,0.04 0.2,0.09 0.3,0.12 0.1,0.04 0.21,0.09 0.31,0.09 0.09,0 0.13,-0.11 0.07,-0.17 -0.07,-0.08 -0.18,-0.11 -0.27,-0.16 -0.1,-0.05 -0.2,-0.1 -0.31,-0.14 -0.2,-0.08 -0.39,-0.16 -0.59,-0.25 -0.06,-0.03 -0.14,0.02 -0.16,0.08 -0.02,0.06 -0.01,0.14 0.05,0.17 0.21,0.08 0.4,0.17 0.6,0.26 z" + id="path84" /> + <path + class="st1" + d="m 265.39,511.14 c -0.12,0 -0.12,0.18 0,0.18 0.12,0 0.12,-0.18 0,-0.18 z" + id="path86" /> + <path + class="st1" + d="m 260.98,510.9 c 0.05,0.01 0.11,0.03 0.16,0.04 0.05,0.01 0.11,0.02 0.17,0.03 0.09,0.01 0.13,-0.11 0.04,-0.14 -0.05,-0.02 -0.11,-0.04 -0.16,-0.05 -0.05,-0.02 -0.11,-0.03 -0.16,-0.04 -0.11,-0.03 -0.22,-0.05 -0.33,-0.08 -0.1,-0.03 -0.15,0.13 -0.04,0.16 z" + id="path88" /> + <path + class="st1" + d="m 255.45,510.18 1.38,0.5 c 0.46,0.17 0.91,0.37 1.38,0.48 0.1,0.02 0.18,-0.13 0.07,-0.18 -0.44,-0.21 -0.92,-0.34 -1.38,-0.49 -0.47,-0.16 -0.94,-0.32 -1.41,-0.48 -0.1,-0.03 -0.14,0.13 -0.04,0.17 z" + id="path90" /> + <path + class="st1" + d="m 252.36,511.16 c 0.24,0.08 0.49,0.16 0.73,0.24 0.24,0.08 0.49,0.17 0.74,0.23 0.08,0.02 0.14,-0.1 0.06,-0.14 -0.24,-0.1 -0.49,-0.18 -0.73,-0.26 -0.25,-0.08 -0.5,-0.17 -0.75,-0.25 -0.11,-0.04 -0.16,0.14 -0.05,0.18 z" + id="path92" /> + <path + class="st1" + d="m 313.2,503.83 c 0.02,0.15 0.01,0.32 0.08,0.46 0.04,0.08 0.17,0.06 0.19,-0.02 0.04,-0.14 0,-0.31 -0.01,-0.45 -0.01,-0.15 -0.03,-0.3 -0.05,-0.46 -0.03,-0.3 -0.07,-0.61 -0.1,-0.91 -0.02,-0.14 -0.23,-0.15 -0.22,0 0.02,0.31 0.04,0.62 0.07,0.93 0.01,0.15 0.02,0.3 0.04,0.45 z" + id="path94" /> + <path + class="st1" + d="m 311.71,507.76 c 0.29,-0.29 0.52,-0.63 0.75,-0.97 0.23,-0.34 0.46,-0.68 0.7,-1.02 0.06,-0.09 -0.08,-0.17 -0.15,-0.09 -0.25,0.32 -0.49,0.65 -0.74,0.97 -0.25,0.32 -0.49,0.64 -0.67,1.01 -0.03,0.09 0.05,0.16 0.11,0.1 z" + id="path96" /> + <path + class="st1" + d="m 310.77,508.66 c 0.25,0 0.25,-0.39 0,-0.39 -0.25,0 -0.25,0.39 0,0.39 z" + id="path98" /> + <path + class="st1" + d="m 311.67,508.49 c -0.08,0.06 -0.03,0.18 0.07,0.16 0.58,-0.13 1.11,-0.57 1.51,-0.99 0.42,-0.43 0.75,-0.94 0.97,-1.49 0.52,-1.28 0.42,-2.73 -0.24,-3.95 -0.05,-0.1 -0.2,-0.01 -0.15,0.09 0.57,1.15 0.64,2.56 0.14,3.75 -0.21,0.52 -0.53,1 -0.93,1.4 -0.4,0.42 -0.9,0.68 -1.37,1.03 z" + id="path100" /> + <path + class="st1" + d="m 311.74,509.79 c 0.03,0 0.03,-0.05 0,-0.05 -0.03,0 -0.03,0.05 0,0.05 z" + id="path102" /> + <path + class="st1" + d="m 320.25,508.39 c 0.02,-0.01 0.04,-0.04 0.04,-0.06 0.01,-0.02 0,-0.05 -0.01,-0.07 -0.03,-0.04 -0.08,-0.06 -0.13,-0.03 l -0.32,0.18 c -0.04,0.02 -0.05,0.07 -0.03,0.11 0.03,0.04 0.07,0.05 0.11,0.03 0.12,-0.06 0.23,-0.11 0.34,-0.16 z" + id="path104" /> + <path + class="st1" + d="m 288.57,512.46 c 0.19,0 0.38,0 0.57,-0.02 0.09,-0.01 0.09,-0.13 0,-0.14 -0.19,-0.02 -0.38,-0.02 -0.57,-0.02 -0.19,0 -0.38,0 -0.57,0 -0.12,0 -0.12,0.18 0,0.18 0.19,0 0.38,0 0.57,0 z" + id="path106" /> + <path + class="st1" + d="m 292.06,512.63 c 0.22,0 0.44,0 0.66,0 0.22,0 0.44,0 0.65,-0.04 0.06,-0.01 0.06,-0.11 0,-0.12 -0.21,-0.04 -0.44,-0.04 -0.65,-0.04 -0.22,0 -0.44,0 -0.66,0 -0.12,0 -0.12,0.2 0,0.2 z" + id="path108" /> + <path + class="st1" + d="m 294.99,512.5 c 0.69,-0.03 1.38,-0.04 2.07,-0.12 0.35,-0.04 0.69,-0.11 1.04,-0.14 0.32,-0.03 0.67,-0.01 0.97,-0.11 0.05,-0.02 0.06,-0.1 0,-0.11 -0.31,-0.04 -0.66,0.02 -0.97,0.04 -0.35,0.03 -0.69,0.02 -1.04,0.02 -0.69,0.01 -1.38,0.12 -2.07,0.2 -0.12,0.03 -0.13,0.23 0,0.22 z" + id="path110" /> + <path + class="st1" + d="m 300.71,511.74 c 0.17,-0.03 0.33,-0.06 0.5,-0.08 0.15,-0.03 0.33,-0.03 0.47,-0.09 0.05,-0.03 0.02,-0.1 -0.03,-0.1 -0.08,-0.01 -0.17,0.02 -0.25,0.03 -0.08,0.01 -0.15,0.03 -0.23,0.04 -0.17,0.03 -0.33,0.06 -0.5,0.09 -0.33,0.06 -0.66,0.12 -0.99,0.18 -0.07,0.01 -0.04,0.12 0.03,0.11 z" + id="path112" /> + <path + class="st1" + d="m 291.74,513.31 c 0.44,0 0.88,0 1.33,0 0.43,0 0.88,0.04 1.3,-0.06 0.07,-0.02 0.07,-0.13 0,-0.15 -0.42,-0.09 -0.87,-0.06 -1.3,-0.06 -0.44,0 -0.88,0 -1.33,0 -0.16,0.01 -0.16,0.27 0,0.27 z" + id="path114" /> + <path + class="st1" + d="m 298.11,512.77 c -0.21,0.02 -0.41,0.06 -0.62,0.09 l -1.24,0.18 c -0.16,0.02 -0.12,0.3 0.04,0.28 0.41,-0.05 0.83,-0.1 1.24,-0.15 0.21,-0.02 0.41,-0.05 0.62,-0.08 0.2,-0.03 0.42,-0.05 0.61,-0.12 0.13,-0.05 0.11,-0.22 -0.03,-0.24 -0.2,-0.02 -0.42,0.02 -0.62,0.04 z" + id="path116" /> + <path + class="st1" + d="m 301.28,512.47 c -0.15,0.02 -0.29,0.05 -0.44,0.08 -0.28,0.06 -0.56,0.12 -0.84,0.18 -0.17,0.04 -0.1,0.29 0.07,0.26 0.28,-0.05 0.55,-0.1 0.83,-0.16 0.14,-0.03 0.28,-0.05 0.41,-0.09 0.13,-0.03 0.28,-0.06 0.39,-0.13 0.06,-0.04 0.06,-0.16 -0.02,-0.17 -0.13,-0.02 -0.27,0.01 -0.4,0.03 z" + id="path118" /> + <path + class="st1" + d="m 304.55,511.95 c -0.22,0.11 -0.44,0.23 -0.66,0.34 -0.11,0.05 -0.01,0.21 0.09,0.16 0.22,-0.11 0.44,-0.21 0.65,-0.32 0.22,-0.11 0.45,-0.2 0.65,-0.33 0.08,-0.05 0.03,-0.2 -0.07,-0.16 -0.23,0.07 -0.44,0.2 -0.66,0.31 z" + id="path120" /> + <path + class="st1" + d="m 302.31,510.92 c 0.88,-0.03 1.76,-0.13 2.61,-0.35 0.44,-0.11 0.84,-0.3 1.28,-0.42 0.41,-0.11 0.84,-0.22 1.2,-0.45 0.11,-0.07 0.04,-0.26 -0.09,-0.22 -0.4,0.11 -0.78,0.32 -1.16,0.48 -0.41,0.17 -0.83,0.22 -1.26,0.31 -0.85,0.19 -1.71,0.32 -2.58,0.37 -0.17,0.01 -0.18,0.28 0,0.28 z" + id="path122" /> + <path + class="st1" + d="m 307.04,511.76 c 0.22,-0.04 0.44,-0.09 0.66,-0.14 0.1,-0.02 0.06,-0.18 -0.04,-0.15 -0.22,0.06 -0.43,0.12 -0.65,0.18 -0.08,0.02 -0.05,0.13 0.03,0.11 z" + id="path124" /> + <path + class="st1" + d="m 278.89,512.8 c 0.13,0 0.13,-0.21 0,-0.21 -0.13,0 -0.13,0.21 0,0.21 z" + id="path126" /> + <path + class="st1" + d="m 275.8,513.96 c -0.05,0 -0.05,0.08 0,0.08 0.05,-0.01 0.05,-0.08 0,-0.08 z" + id="path128" /> + <path + class="st1" + d="m 273.01,512.96 c 0.33,0.06 0.66,0.12 0.99,0.18 0.16,0.03 0.33,0.07 0.49,0.08 0.16,0.02 0.34,0.05 0.5,0.03 0.07,-0.01 0.12,-0.11 0.04,-0.15 -0.15,-0.07 -0.31,-0.09 -0.47,-0.13 -0.16,-0.04 -0.33,-0.06 -0.5,-0.08 -0.33,-0.05 -0.67,-0.1 -1,-0.15 -0.13,-0.01 -0.2,0.2 -0.05,0.22 z" + id="path130" /> + <path + class="st1" + d="m 276.91,513.32 c 0.5,0.07 1,0.14 1.49,0.2 0.25,0.03 0.5,0.06 0.75,0.09 0.23,0.03 0.51,0.07 0.74,0.03 0.07,-0.01 0.09,-0.13 0.02,-0.16 -0.2,-0.09 -0.46,-0.11 -0.68,-0.14 -0.26,-0.04 -0.52,-0.06 -0.77,-0.09 -0.51,-0.06 -1.01,-0.11 -1.52,-0.16 -0.13,-0.02 -0.17,0.21 -0.03,0.23 z" + id="path132" /> + <path + class="st1" + d="m 276.09,514.41 c 0.64,0.04 1.27,0.07 1.91,0.11 0.62,0.03 1.27,0.13 1.88,0.04 0.09,-0.01 0.08,-0.15 0,-0.17 -0.6,-0.15 -1.27,-0.12 -1.88,-0.15 -0.64,-0.03 -1.27,-0.06 -1.91,-0.1 -1.29,-0.06 -2.58,-0.11 -3.87,-0.16 -0.11,0 -0.11,0.16 0,0.17 1.29,0.09 2.58,0.18 3.87,0.26 z" + id="path134" /> + <path + class="st1" + d="m 282.31,514.3 c 0.27,-0.02 0.54,-0.03 0.81,-0.06 0.11,-0.01 0.11,-0.16 0,-0.17 -0.27,-0.03 -0.54,-0.04 -0.81,-0.06 -0.07,0 -0.14,0.07 -0.14,0.14 0,0.08 0.06,0.15 0.14,0.15 z" + id="path136" /> + <path + class="st1" + d="m 253.91,515.95 c 0.06,-0.48 0.03,-0.98 0.03,-1.46 0,-0.12 -0.19,-0.12 -0.19,0 0,0.49 -0.03,0.98 0.03,1.46 0.01,0.08 0.12,0.08 0.13,0 z" + id="path138" /> + <path + class="st1" + d="m 254.82,516.01 c 0.04,0 0.06,-0.03 0.06,-0.06 l 0.03,-0.33 c 0,-0.05 -0.05,-0.09 -0.09,-0.09 -0.05,0 -0.1,0.04 -0.09,0.09 l 0.03,0.33 c 0,0.03 0.03,0.06 0.06,0.06 z" + id="path140" /> + <path + class="st1" + d="m 258.76,517.09 c 0,0.06 0.01,0.12 0.02,0.18 0.02,0.1 0.19,0.1 0.2,0 0.01,-0.06 0.02,-0.12 0.02,-0.18 v -0.16 c 0,-0.11 0,-0.22 0,-0.33 0,-0.07 -0.06,-0.13 -0.13,-0.13 -0.07,0 -0.13,0.06 -0.13,0.13 0,0.11 0,0.22 0,0.33 z" + id="path142" /> + <path + class="st1" + d="m 261.49,517.68 c 0.14,0 0.14,-0.21 0,-0.21 -0.14,0 -0.14,0.21 0,0.21 z" + id="path144" /> + <path + class="st1" + d="m 263.63,517.59 c 0,0.04 0,0.07 0.01,0.11 0.01,0.03 0.03,0.06 0.04,0.09 0.04,0.07 0.14,0.07 0.18,0 0.04,-0.06 0.05,-0.12 0.06,-0.19 0,-0.06 0,-0.11 0,-0.17 0,-0.11 0,-0.23 0,-0.34 0,-0.08 -0.07,-0.15 -0.15,-0.15 -0.08,0 -0.15,0.07 -0.15,0.15 v 0.34 z" + id="path146" /> + <path + class="st1" + d="m 324.67,509.31 c -0.07,-0.04 -0.18,-0.02 -0.21,0.06 -0.19,0.36 -0.23,0.79 -0.13,1.18 0.02,0.1 0.07,0.22 0.14,0.29 0.06,0.05 0.14,0.06 0.2,0.02 0.06,-0.05 0.07,-0.13 0.05,-0.2 -0.05,-0.18 -0.11,-0.35 -0.12,-0.54 -0.01,-0.2 0.03,-0.41 0.12,-0.59 0.04,-0.09 0.03,-0.18 -0.05,-0.22 z" + id="path148" /> + <path + class="st1" + d="m 244.78,528.14 v 0.87 c 0,0.04 0,0.09 0,0.13 0,0.05 0.01,0.11 0.03,0.16 0.02,0.1 0.18,0.1 0.2,0 0.01,-0.05 0.02,-0.11 0.03,-0.16 0,-0.04 0,-0.09 0,-0.13 v -0.87 c -0.01,-0.16 -0.26,-0.16 -0.26,0 z" + id="path150" /> + <path + class="st1" + d="m 250.27,530.54 c 0.15,0 0.15,-0.23 0,-0.23 -0.15,-0.01 -0.15,0.23 0,0.23 z" + id="path152" /> + <path + class="st1" + d="m 314.69,527.35 c -0.03,-0.22 -0.05,-0.44 -0.08,-0.66 -0.01,-0.07 -0.05,-0.13 -0.13,-0.13 -0.06,0 -0.14,0.06 -0.13,0.13 0.03,0.23 0.06,0.45 0.08,0.68 0.01,0.11 0.03,0.22 0.04,0.33 0.01,0.12 0.02,0.24 0.07,0.35 0.04,0.08 0.18,0.06 0.19,-0.03 0.02,-0.11 0,-0.22 -0.01,-0.33 -0.01,-0.12 -0.02,-0.23 -0.03,-0.34 z" + id="path154" /> + <path + class="st1" + d="m 316.97,527.6 c -0.02,-0.07 -0.05,-0.14 -0.08,-0.21 -0.05,-0.14 -0.11,-0.28 -0.16,-0.41 -0.03,-0.08 -0.11,-0.13 -0.2,-0.09 -0.09,0.04 -0.1,0.13 -0.07,0.21 0.06,0.14 0.12,0.27 0.18,0.41 0.03,0.07 0.06,0.14 0.09,0.2 0.02,0.03 0.03,0.07 0.05,0.1 0.02,0.03 0.05,0.06 0.08,0.09 0.06,0.05 0.15,0.01 0.15,-0.06 0,-0.04 0.01,-0.08 0,-0.12 -0.02,-0.05 -0.03,-0.08 -0.04,-0.12 z" + id="path156" /> + <path + class="st1" + d="m 256.63,522.75 c 0,0 0,0 0,0 -0.01,0.01 -0.02,0.01 -0.03,0.01 -0.01,0 -0.03,0.02 -0.03,0.02 -0.05,0.02 -0.09,0.06 -0.08,0.12 0.01,0.05 0.05,0.1 0.11,0.09 0.04,0 0.07,-0.01 0.11,-0.01 0.01,0 0.01,0 0.02,0 0.02,0 0.05,0 0.07,-0.01 0.07,-0.02 0.14,-0.08 0.19,-0.13 0.09,-0.1 0.16,-0.22 0.2,-0.36 0.08,-0.27 0.03,-0.57 -0.15,-0.8 -0.09,-0.11 -0.23,-0.19 -0.38,-0.22 -0.13,-0.02 -0.18,0.16 -0.06,0.2 0.12,0.04 0.18,0.12 0.23,0.23 0,0 0,0 0,0 0,0.01 0,0.01 0.01,0.02 0.01,0.02 0.01,0.03 0.01,0.05 0.01,0.03 0.02,0.07 0.02,0.1 0,0.01 0.01,0.03 0.01,0.03 0,0.01 0,0.02 0,0.04 0,0.03 0,0.06 0,0.1 0,0.03 0,0.06 -0.01,0.08 0,0.01 0,0.03 0,0.03 0,0.02 -0.01,0.03 -0.01,0.05 -0.01,0.03 -0.02,0.06 -0.03,0.09 0,0.01 -0.01,0.02 -0.01,0.03 -0.01,0.01 -0.02,0.03 -0.02,0.04 -0.01,0.01 -0.02,0.03 -0.03,0.04 0,0.01 -0.01,0.01 -0.01,0.02 -0.02,0.02 -0.05,0.04 -0.07,0.07 -0.01,0.01 -0.01,0.01 0,0 -0.01,0.01 -0.03,0.02 -0.04,0.03 0,0.01 -0.01,0.03 -0.02,0.04 z" + id="path158" /> + <path + class="st1" + d="m 257.78,522.2 c 0.02,0.3 -0.03,0.59 -0.11,0.88 -0.02,0.1 0.11,0.15 0.16,0.07 0.35,-0.57 0.21,-1.36 -0.17,-1.88 -0.07,-0.1 -0.24,-0.01 -0.17,0.1 0.17,0.25 0.27,0.54 0.29,0.83 z" + id="path160" /> + <path + class="st1" + d="m 257.7,520.98 c 0.38,0.14 0.68,0.45 0.85,0.81 0.08,0.17 0.14,0.37 0.16,0.56 0.02,0.2 -0.01,0.4 -0.04,0.6 -0.01,0.11 0.17,0.16 0.21,0.06 0.21,-0.42 0.09,-0.96 -0.11,-1.35 -0.21,-0.41 -0.57,-0.74 -1.02,-0.89 -0.12,-0.04 -0.18,0.17 -0.05,0.21 z" + id="path162" /> + <path + class="st1" + d="m 259.29,522.92 c -0.04,0.11 0.13,0.18 0.19,0.08 0.39,-0.69 -0.05,-1.62 -0.75,-1.9 -0.1,-0.04 -0.17,0.13 -0.07,0.17 0.63,0.28 0.85,1.03 0.63,1.65 z" + id="path164" /> + <path + class="st1" + d="m 260,522.06 c 0.04,0.15 0.06,0.3 0.07,0.45 0,0.08 0,0.16 0,0.23 0,0.09 -0.02,0.17 0.02,0.25 0.04,0.07 0.14,0.08 0.19,0.02 0.11,-0.11 0.08,-0.36 0.08,-0.51 -0.01,-0.18 -0.04,-0.36 -0.09,-0.53 -0.09,-0.34 -0.26,-0.65 -0.48,-0.93 -0.09,-0.11 -0.29,0.04 -0.2,0.16 0.19,0.27 0.33,0.55 0.41,0.86 z" + id="path166" /> + <path + class="st1" + d="m 260.62,522.13 c 0.03,0.08 0.07,0.15 0.11,0.22 0.07,0.12 0.26,0.04 0.23,-0.1 -0.02,-0.07 -0.03,-0.15 -0.06,-0.22 -0.03,-0.07 -0.05,-0.13 -0.08,-0.2 -0.05,-0.14 -0.11,-0.27 -0.16,-0.41 -0.03,-0.07 -0.1,-0.13 -0.18,-0.1 -0.07,0.02 -0.14,0.11 -0.1,0.18 0.06,0.14 0.11,0.28 0.17,0.41 0.02,0.09 0.04,0.16 0.07,0.22 z" + id="path168" /> + <path + class="st1" + d="m 247.19,522.51 c -0.01,0.1 0.01,0.2 0.03,0.29 0.03,0.12 0.19,0.08 0.21,-0.03 0.01,-0.08 0.03,-0.16 0.04,-0.24 0.01,-0.07 0.03,-0.15 0.05,-0.22 0.05,-0.14 0.12,-0.28 0.21,-0.4 0.2,-0.25 0.47,-0.42 0.78,-0.46 0.13,-0.02 0.1,-0.25 -0.03,-0.24 -0.38,0.05 -0.72,0.24 -0.96,0.53 -0.12,0.15 -0.22,0.31 -0.28,0.49 -0.02,0.1 -0.04,0.19 -0.05,0.28 z" + id="path170" /> + <path + class="st1" + d="m 246.36,522.87 c 0.03,0.19 0.12,0.35 0.26,0.47 0.08,0.07 0.19,-0.04 0.12,-0.12 -0.4,-0.46 -0.14,-1.32 0.48,-1.41 0.09,-0.01 0.07,-0.16 -0.02,-0.15 -0.38,0.05 -0.65,0.33 -0.78,0.68 -0.07,0.16 -0.09,0.35 -0.06,0.53 z" + id="path172" /> + <path + class="st1" + d="m 245.43,523.37 c 0.05,0.05 0.15,0 0.12,-0.07 -0.03,-0.1 -0.06,-0.2 -0.08,-0.3 -0.02,-0.09 -0.04,-0.18 -0.04,-0.28 0,-0.2 0.05,-0.41 0.15,-0.58 0.19,-0.36 0.53,-0.65 0.95,-0.66 0.12,0 0.12,-0.18 0,-0.18 -0.49,-0.01 -0.92,0.31 -1.15,0.73 -0.12,0.21 -0.19,0.45 -0.19,0.69 0,0.12 0.01,0.24 0.04,0.35 0.04,0.12 0.1,0.21 0.2,0.3 z" + id="path174" /> + <path + class="st1" + d="m 244.34,523.11 c 0.16,0.11 0.4,0.18 0.59,0.12 0.07,-0.02 0.08,-0.13 0,-0.15 -0.08,-0.02 -0.17,-0.03 -0.24,-0.07 -0.04,-0.03 -0.09,-0.06 -0.13,-0.09 -0.03,-0.02 -0.06,-0.04 -0.09,-0.07 -0.12,-0.12 -0.22,-0.26 -0.22,-0.44 -0.01,-0.34 0.31,-0.64 0.64,-0.64 0.18,0 0.18,-0.27 0,-0.28 -0.38,-0.01 -0.73,0.25 -0.87,0.6 -0.14,0.38 0.01,0.8 0.32,1.02 z" + id="path176" /> + <path + class="st1" + d="m 243.63,523.15 c 0.03,-0.06 0.02,-0.14 0,-0.2 -0.01,-0.07 -0.02,-0.13 -0.03,-0.2 -0.01,-0.14 -0.01,-0.29 0.02,-0.43 0.06,-0.28 0.19,-0.54 0.4,-0.74 0.1,-0.09 -0.05,-0.23 -0.15,-0.15 -0.24,0.22 -0.41,0.51 -0.48,0.83 -0.04,0.16 -0.05,0.32 -0.04,0.48 0.01,0.13 0.04,0.38 0.17,0.45 0.04,0.01 0.09,0 0.11,-0.04 z" + id="path178" /> + <path + class="st1" + d="m 242.42,523.5 c 0.04,0.02 0.09,0.01 0.12,-0.03 0.04,-0.06 0.02,-0.15 0.01,-0.21 -0.01,-0.07 -0.02,-0.14 -0.02,-0.22 0,-0.15 0.01,-0.29 0.05,-0.43 0.08,-0.29 0.23,-0.54 0.46,-0.73 0.1,-0.09 -0.04,-0.23 -0.15,-0.15 -0.25,0.21 -0.43,0.5 -0.52,0.82 -0.04,0.15 -0.07,0.32 -0.07,0.48 0,0.09 0.01,0.17 0.02,0.26 0.01,0.07 0.03,0.17 0.1,0.21 z" + id="path180" /> + <path + class="st1" + d="m 314.99,519.43 c -0.58,-0.01 -1.15,0.34 -1.38,0.88 -0.11,0.26 -0.13,0.56 -0.08,0.84 0.05,0.26 0.19,0.6 0.43,0.74 0.08,0.05 0.16,-0.04 0.12,-0.12 -0.06,-0.11 -0.14,-0.2 -0.2,-0.3 -0.06,-0.11 -0.1,-0.23 -0.13,-0.35 -0.05,-0.24 -0.03,-0.5 0.06,-0.72 0.19,-0.47 0.68,-0.78 1.18,-0.77 0.13,0 0.13,-0.2 0,-0.2 z" + id="path182" /> + <path + class="st1" + d="m 313.96,519.38 c 0.13,0.04 0.19,-0.16 0.06,-0.21 -0.54,-0.18 -1.15,-0.04 -1.57,0.34 -0.44,0.39 -0.57,1.01 -0.41,1.56 0.08,0.28 0.26,0.63 0.54,0.76 0.08,0.04 0.2,-0.05 0.13,-0.13 -0.09,-0.12 -0.21,-0.23 -0.29,-0.37 -0.07,-0.13 -0.13,-0.26 -0.16,-0.41 -0.07,-0.3 -0.04,-0.63 0.1,-0.91 0.3,-0.55 1.01,-0.82 1.6,-0.63 z" + id="path184" /> + <path + class="st1" + d="m 311.42,519.56 c -0.52,0.11 -0.94,0.59 -0.94,1.13 0,0.27 0.09,0.52 0.26,0.73 0.16,0.2 0.4,0.38 0.67,0.39 0.07,0 0.1,-0.1 0.04,-0.14 -0.1,-0.05 -0.19,-0.09 -0.28,-0.16 -0.09,-0.07 -0.17,-0.13 -0.24,-0.21 -0.14,-0.17 -0.23,-0.39 -0.23,-0.61 0,-0.45 0.35,-0.85 0.78,-0.94 0.11,-0.03 0.06,-0.22 -0.06,-0.19 z" + id="path186" /> + <path + class="st1" + d="m 324.43,519.21 c 0.37,0 0.72,0.27 0.82,0.63 0.04,0.17 0.02,0.36 -0.05,0.52 -0.03,0.08 -0.08,0.16 -0.13,0.24 -0.05,0.08 -0.13,0.14 -0.19,0.21 -0.05,0.06 0,0.15 0.08,0.14 0.11,-0.03 0.2,-0.11 0.29,-0.18 0.09,-0.08 0.15,-0.17 0.2,-0.28 0.09,-0.22 0.12,-0.47 0.06,-0.7 -0.12,-0.47 -0.59,-0.8 -1.07,-0.79 -0.16,-0.02 -0.16,0.21 -0.01,0.21 z" + id="path188" /> + <path + class="st1" + d="m 325.36,519.03 c 0.47,0.14 0.79,0.57 0.91,1.03 0.06,0.23 0.07,0.47 0.02,0.7 -0.05,0.23 -0.15,0.48 -0.29,0.66 -0.07,0.09 0.04,0.21 0.13,0.13 0.12,-0.09 0.22,-0.19 0.29,-0.32 0.06,-0.12 0.12,-0.25 0.14,-0.38 0.06,-0.29 0.05,-0.59 -0.03,-0.87 -0.15,-0.56 -0.55,-1.04 -1.12,-1.2 -0.14,-0.03 -0.2,0.2 -0.05,0.25 z" + id="path190" /> + <path + class="st1" + d="m 327.53,520.72 c 0,0.14 -0.02,0.29 -0.09,0.42 -0.03,0.06 -0.07,0.12 -0.11,0.17 -0.05,0.06 -0.11,0.1 -0.17,0.16 -0.05,0.06 0,0.16 0.08,0.14 0.17,-0.05 0.29,-0.22 0.36,-0.37 0.07,-0.16 0.11,-0.34 0.1,-0.52 -0.02,-0.35 -0.19,-0.7 -0.52,-0.86 -0.09,-0.05 -0.18,0.09 -0.08,0.14 0.28,0.14 0.42,0.43 0.43,0.72 z" + id="path192" /> + <path + class="st1" + d="m 327.79,519.38 c 0.41,0.11 0.72,0.51 0.72,0.94 0,0.2 -0.08,0.41 -0.2,0.57 -0.14,0.18 -0.3,0.3 -0.49,0.4 -0.07,0.04 -0.04,0.16 0.04,0.15 0.55,-0.05 0.93,-0.6 0.92,-1.12 0,-0.54 -0.41,-1.03 -0.92,-1.15 -0.15,-0.04 -0.21,0.17 -0.07,0.21 z" + id="path194" /> + <path + class="st1" + d="m 329.26,519.51 c 0.28,0.11 0.41,0.43 0.4,0.71 0,0.14 -0.05,0.3 -0.11,0.41 -0.04,0.07 -0.07,0.12 -0.13,0.17 -0.05,0.05 -0.12,0.09 -0.18,0.14 -0.07,0.06 -0.02,0.19 0.08,0.19 0.16,-0.01 0.29,-0.12 0.39,-0.24 0.1,-0.12 0.16,-0.26 0.19,-0.42 0.05,-0.3 0,-0.62 -0.17,-0.87 -0.1,-0.14 -0.24,-0.25 -0.41,-0.31 -0.14,-0.04 -0.19,0.17 -0.06,0.22 z" + id="path196" /> + <path + class="st1" + d="m 330.49,520.86 c -0.02,0.04 -0.04,0.09 -0.06,0.13 -0.03,0.06 0.03,0.12 0.09,0.09 0.03,-0.02 0.07,-0.03 0.1,-0.06 0.01,-0.01 0.03,-0.02 0.04,-0.03 -0.04,0.03 0.01,-0.01 0.02,-0.01 0.06,-0.04 0.11,-0.13 0.14,-0.2 0.07,-0.14 0.1,-0.29 0.12,-0.45 0.03,-0.3 -0.05,-0.62 -0.24,-0.86 -0.12,-0.15 -0.33,0.01 -0.21,0.16 0.13,0.17 0.19,0.4 0.19,0.61 0,0.11 -0.02,0.22 -0.06,0.32 -0.04,0.11 -0.11,0.2 -0.13,0.3 z" + id="path198" /> + <path + class="st1" + d="m 287.02,522.81 c 0.25,0 0.25,-0.39 0,-0.39 -0.25,0 -0.25,0.39 0,0.39 z" + id="path200" /> + <path + class="st1" + d="m 287.19,523.85 c 0.47,0.03 0.94,0.06 1.41,0.09 0.23,0.02 0.47,0.03 0.7,0.05 0.22,0.01 0.45,0.04 0.67,0.01 0.09,-0.01 0.08,-0.15 0,-0.17 -0.21,-0.06 -0.45,-0.05 -0.67,-0.07 -0.23,-0.02 -0.47,-0.03 -0.7,-0.04 -0.47,-0.02 -0.94,-0.05 -1.41,-0.07 -0.13,0 -0.13,0.19 0,0.2 z" + id="path202" /> + <path + class="st1" + d="m 296.78,525.81 c 0.41,0 0.83,0.01 1.24,0.01 0.2,0 0.41,0 0.61,0 0.2,0 0.42,0.01 0.61,-0.04 0.08,-0.02 0.08,-0.15 0,-0.17 -0.19,-0.05 -0.41,-0.03 -0.61,-0.04 -0.2,0 -0.41,0 -0.61,0 -0.41,0 -0.83,0.01 -1.24,0.01 -0.14,0.02 -0.14,0.23 0,0.23 z" + id="path204" /> + <path + class="st1" + d="m 274.15,526.86 c -0.48,-0.06 -0.96,-0.1 -1.43,-0.16 -0.08,-0.01 -0.14,0.07 -0.14,0.14 0,0.08 0.06,0.13 0.14,0.14 0.48,0.05 0.96,0.11 1.43,0.16 0.08,0.01 0.14,-0.07 0.14,-0.14 0,-0.08 -0.07,-0.13 -0.14,-0.14 z" + id="path206" /> + <path + class="st1" + d="m 279.5,531.71 c -0.08,-0.01 -0.17,-0.01 -0.25,-0.02 -0.19,-0.01 -0.37,-0.02 -0.56,-0.04 -0.37,-0.02 -0.73,-0.05 -1.1,-0.07 -0.15,-0.01 -0.15,0.22 0,0.23 0.36,0.03 0.72,0.05 1.08,0.08 0.18,0.01 0.36,0.03 0.54,0.04 0.08,0.01 0.17,0.01 0.25,0.02 0.09,0 0.19,0.02 0.27,-0.01 0.07,-0.03 0.1,-0.13 0.02,-0.18 -0.07,-0.04 -0.16,-0.04 -0.25,-0.05 z" + id="path208" /> + <path + class="st1" + d="m 270.08,534.97 c -0.47,-0.19 -0.94,-0.39 -1.41,-0.58 -0.12,-0.05 -0.17,0.14 -0.05,0.19 0.46,0.19 0.92,0.38 1.38,0.57 0.46,0.19 0.92,0.39 1.39,0.54 0.07,0.02 0.12,-0.09 0.05,-0.12 -0.43,-0.23 -0.9,-0.41 -1.36,-0.6 z" + id="path210" /> + <path + class="st1" + d="m 295.15,536.25 c 0.3,0 0.61,0 0.91,0 0.15,0 0.3,0 0.46,0 0.07,0 0.14,0 0.21,-0.01 0.08,-0.01 0.16,-0.03 0.24,-0.05 0.09,-0.02 0.09,-0.17 0,-0.19 -0.08,-0.01 -0.16,-0.04 -0.24,-0.05 -0.07,-0.01 -0.14,-0.01 -0.21,-0.01 -0.15,0 -0.3,0 -0.46,0 -0.3,0 -0.61,0 -0.91,0 -0.18,0.03 -0.18,0.31 0,0.31 z" + id="path212" /> + <path + class="st1" + d="m 298.89,535.89 c 1.01,-0.1 1.97,-0.32 2.93,-0.63 0.46,-0.15 0.91,-0.32 1.35,-0.51 0.23,-0.1 0.46,-0.2 0.69,-0.31 0.21,-0.1 0.45,-0.2 0.63,-0.36 0.06,-0.05 0,-0.14 -0.07,-0.12 -0.21,0.05 -0.39,0.17 -0.58,0.27 -0.21,0.11 -0.43,0.2 -0.64,0.3 -0.47,0.2 -0.94,0.38 -1.43,0.52 -0.93,0.28 -1.91,0.46 -2.87,0.56 -0.19,0.01 -0.19,0.29 -0.01,0.28 z" + id="path214" /> + <path + class="st1" + d="m 288.73,535.12 -1.22,0.07 c -0.17,0.01 -0.17,0.27 0,0.26 0.41,-0.03 0.83,-0.05 1.24,-0.08 0.4,-0.03 0.82,-0.06 1.22,-0.13 0.09,-0.02 0.06,-0.15 -0.02,-0.16 -0.4,0 -0.81,0.02 -1.22,0.04 z" + id="path216" /> + <path + class="st1" + d="m 288.65,533.87 c -0.43,0 -0.87,0 -1.3,0 -0.15,0 -0.15,0.24 0,0.24 0.43,0 0.87,0 1.3,0 0.43,0 0.87,0.02 1.3,-0.03 0.12,-0.01 0.12,-0.17 0,-0.18 -0.43,-0.04 -0.87,-0.03 -1.3,-0.03 z" + id="path218" /> + <path + class="st1" + d="m 292.07,534 c 0.36,-0.02 0.72,-0.05 1.08,-0.07 0.18,-0.01 0.36,-0.02 0.54,-0.04 0.18,-0.02 0.35,-0.02 0.53,-0.07 0.13,-0.03 0.09,-0.2 -0.03,-0.21 -0.18,-0.02 -0.36,0 -0.54,0 -0.17,0 -0.35,0.02 -0.52,0.03 -0.35,0.03 -0.71,0.05 -1.06,0.08 -0.18,0.01 -0.19,0.29 0,0.28 z" + id="path220" /> + <path + class="st1" + d="m 296.98,533.48 c 0.47,-0.13 0.94,-0.26 1.42,-0.38 0.23,-0.06 0.45,-0.12 0.68,-0.19 0.12,-0.04 0.24,-0.08 0.36,-0.11 0.12,-0.04 0.22,-0.1 0.33,-0.15 0.1,-0.05 0.06,-0.23 -0.06,-0.22 -0.12,0.01 -0.24,0.01 -0.36,0.05 -0.12,0.03 -0.24,0.07 -0.37,0.1 -0.23,0.06 -0.45,0.13 -0.68,0.2 -0.15,0.05 -0.3,0.1 -0.45,0.15 -0.01,-0.11 -0.04,-0.23 -0.07,-0.34 -0.04,-0.16 -0.08,-0.31 -0.13,-0.46 -0.08,-0.3 -0.17,-0.61 -0.25,-0.91 -0.05,-0.17 -0.31,-0.1 -0.27,0.07 0.08,0.3 0.16,0.61 0.24,0.91 0.04,0.15 0.08,0.3 0.12,0.45 0.04,0.12 0.07,0.24 0.12,0.36 -0.24,0.08 -0.48,0.15 -0.71,0.23 -0.16,0.03 -0.09,0.28 0.08,0.24 z" + id="path222" /> + <path + class="st1" + d="m 265.72,534.59 c 0.14,0 0.14,-0.21 0,-0.21 -0.14,0 -0.14,0.21 0,0.21 z" + id="path224" /> + <path + class="st1" + d="m 251.11,539.3 c -0.14,-0.22 -0.27,-0.43 -0.41,-0.65 -0.08,-0.13 -0.29,-0.01 -0.21,0.12 0.14,0.22 0.27,0.44 0.41,0.66 0.14,0.22 0.27,0.45 0.44,0.64 0.03,0.03 0.09,0.03 0.12,0.01 0.04,-0.03 0.04,-0.07 0.02,-0.12 -0.05,-0.12 -0.12,-0.23 -0.19,-0.34 -0.05,-0.1 -0.12,-0.21 -0.18,-0.32 z" + id="path226" /> + <path + class="st1" + d="m 269.69,540.12 c 0.39,-0.18 0.78,-0.36 1.17,-0.55 0.2,-0.09 0.4,-0.19 0.6,-0.28 0.12,-0.06 0.46,-0.15 0.35,-0.35 -0.1,-0.18 -0.39,0.02 -0.51,0.08 -0.2,0.09 -0.4,0.19 -0.6,0.28 -0.39,0.18 -0.78,0.36 -1.17,0.55 -0.18,0.09 -0.02,0.36 0.16,0.27 z" + id="path228" /> + <path + class="st1" + d="m 300,539.15 c 0.55,0.1 1.1,0.24 1.66,0.28 0.08,0.01 0.09,-0.11 0.02,-0.13 -0.52,-0.17 -1.07,-0.26 -1.61,-0.37 -0.15,-0.03 -0.21,0.19 -0.07,0.22 z" + id="path230" /> + <path + class="st1" + d="m 319.38,537.53 c 0.66,-0.03 1.33,-0.05 1.99,-0.08 0.33,-0.01 0.66,-0.03 0.99,-0.05 0.31,-0.02 0.64,-0.02 0.94,-0.1 0.08,-0.02 0.08,-0.15 0,-0.16 -0.3,-0.05 -0.63,-0.03 -0.94,-0.03 -0.33,0.01 -0.66,0.02 -0.99,0.03 -0.66,0.03 -1.33,0.05 -1.99,0.08 -0.19,0.02 -0.19,0.32 0,0.31 z" + id="path232" /> + <path + class="st1" + d="m 259.87,540.55 c -0.14,0 -0.14,0.22 0,0.22 0.14,0.01 0.14,-0.22 0,-0.22 z" + id="path234" /> + <path + class="st1" + d="m 255.03,540.22 -1.61,-1.4 c -0.14,-0.12 -0.34,0.08 -0.2,0.2 0.55,0.47 1.09,0.95 1.64,1.42 0.53,0.46 1.06,0.95 1.65,1.35 0.08,0.06 0.16,-0.06 0.1,-0.13 -0.48,-0.52 -1.04,-0.98 -1.58,-1.44 z" + id="path236" /> + <path + class="st1" + d="m 265.37,541.74 c 0.05,0.01 0.1,-0.01 0.12,-0.06 0.02,-0.04 0.01,-0.11 -0.04,-0.13 -0.32,-0.15 -0.66,-0.25 -0.99,-0.36 -0.07,-0.02 -0.14,0.03 -0.16,0.09 -0.02,0.07 0.02,0.14 0.09,0.16 0.32,0.11 0.64,0.23 0.98,0.3 z" + id="path238" /> + <path + class="st1" + d="m 280.55,541.3 c -0.28,-0.04 -0.56,-0.09 -0.83,-0.16 -0.55,-0.13 -1.08,-0.33 -1.58,-0.58 -0.13,-0.07 -0.25,0.13 -0.12,0.2 0.52,0.27 1.06,0.48 1.63,0.63 0.28,0.07 0.57,0.13 0.86,0.17 0.27,0.04 0.58,0.1 0.85,0.05 0.12,-0.02 0.11,-0.2 0,-0.22 -0.26,-0.07 -0.54,-0.06 -0.81,-0.09 z" + id="path240" /> + <path + class="st1" + d="m 284.75,541.37 -0.16,-0.01 -0.33,-0.01 c -0.07,0 -0.13,0.06 -0.13,0.13 0,0.07 0.06,0.13 0.13,0.13 0.11,0 0.22,-0.01 0.33,-0.01 l 0.16,-0.01 c 0.06,0 0.12,-0.01 0.18,-0.02 0.09,-0.01 0.09,-0.16 0,-0.18 -0.06,-0.01 -0.12,-0.02 -0.18,-0.02 z" + id="path242" /> + <path + class="st1" + d="m 290.28,541.36 c -0.46,-0.04 -0.92,-0.02 -1.38,-0.02 -0.46,0 -0.92,0 -1.38,0 -0.18,0 -0.18,0.27 0,0.27 0.46,0 0.92,0 1.38,0 0.46,0 0.92,0.02 1.38,-0.02 0.15,-0.01 0.15,-0.22 0,-0.23 z" + id="path244" /> + <path + class="st1" + d="m 295.06,541.26 c 0.09,-0.04 0.08,-0.22 -0.03,-0.23 -0.18,-0.02 -0.35,0.02 -0.53,0.04 -0.19,0.02 -0.37,0.06 -0.56,0.09 -0.36,0.06 -0.73,0.13 -1.09,0.19 -0.14,0.03 -0.11,0.28 0.04,0.26 0.37,-0.05 0.73,-0.09 1.1,-0.14 0.18,-0.02 0.36,-0.04 0.54,-0.08 0.17,-0.04 0.36,-0.05 0.53,-0.13 z" + id="path246" /> + <path + class="st1" + d="m 298.06,540.98 c -0.11,0.03 -0.22,0.05 -0.33,0.08 -0.05,0.01 -0.08,0.07 -0.07,0.12 0.01,0.05 0.07,0.08 0.12,0.07 0.11,-0.03 0.22,-0.05 0.32,-0.08 0.11,-0.03 0.21,-0.06 0.32,-0.1 0.04,-0.01 0.07,-0.06 0.06,-0.1 -0.01,-0.05 -0.06,-0.06 -0.1,-0.06 -0.1,0.02 -0.22,0.04 -0.32,0.07 z" + id="path248" /> + <path + class="st1" + d="m 296.08,543.72 c -0.19,-0.02 -0.39,-0.02 -0.58,-0.04 -0.39,-0.02 -0.77,-0.04 -1.16,-0.06 -0.15,-0.01 -0.15,0.22 0,0.23 0.38,0.03 0.76,0.05 1.14,0.08 0.19,0.01 0.37,0.03 0.56,0.04 0.19,0.01 0.39,0.03 0.58,0 0.1,-0.01 0.14,-0.16 0.02,-0.18 -0.18,-0.05 -0.37,-0.06 -0.56,-0.07 z" + id="path250" /> + <path + class="st1" + d="m 304.61,542.24 c -0.44,0.05 -0.85,0.19 -1.28,0.3 -0.41,0.1 -0.83,0.2 -1.24,0.3 -0.86,0.21 -1.71,0.43 -2.57,0.65 -0.14,0.04 -0.08,0.26 0.06,0.22 0.84,-0.2 1.69,-0.39 2.53,-0.6 0.41,-0.1 0.83,-0.2 1.24,-0.3 0.43,-0.1 0.87,-0.17 1.29,-0.32 0.12,-0.04 0.12,-0.27 -0.03,-0.25 z" + id="path252" /> + <path + class="st1" + d="m 307.11,541.62 1,-0.49 c 0.33,-0.16 0.67,-0.32 0.95,-0.55 0.08,-0.07 -0.01,-0.2 -0.1,-0.17 -0.17,0.04 -0.34,0.12 -0.51,0.18 -0.18,0.06 -0.34,0.17 -0.51,0.25 -0.33,0.17 -0.66,0.34 -0.99,0.5 -0.19,0.09 -0.03,0.37 0.16,0.28 z" + id="path254" /> + <path + class="st1" + d="m 310.67,539.15 c 0.08,-0.05 0.16,-0.11 0.24,-0.16 0.08,-0.06 0.16,-0.12 0.23,-0.18 0.02,-0.02 0.04,-0.03 0.05,-0.06 0.01,-0.03 0,-0.06 -0.01,-0.08 -0.03,-0.05 -0.09,-0.07 -0.14,-0.04 -0.08,0.05 -0.17,0.09 -0.25,0.15 -0.08,0.05 -0.16,0.11 -0.24,0.16 -0.05,0.04 -0.08,0.11 -0.04,0.17 0.02,0.05 0.1,0.07 0.16,0.04 z" + id="path256" /> + <path + class="st1" + d="m 309.63,542.84 c -1.5,0.6 -3.11,0.97 -4.72,1.09 -0.13,0.01 -0.13,0.21 0,0.2 1.67,-0.09 3.31,-0.43 4.87,-1.04 0.76,-0.3 1.5,-0.64 2.21,-1.05 0.36,-0.21 0.71,-0.43 1.05,-0.66 0.32,-0.22 0.72,-0.46 0.95,-0.78 0.09,-0.12 -0.08,-0.23 -0.18,-0.18 -0.36,0.17 -0.69,0.48 -1.01,0.71 -0.32,0.22 -0.64,0.43 -0.98,0.63 -0.7,0.42 -1.43,0.78 -2.19,1.08 z" + id="path258" /> + <path + class="st1" + d="m 314.93,539.3 c 0.24,-0.22 0.5,-0.43 0.73,-0.65 0.12,-0.11 0.21,-0.24 0.32,-0.36 0.05,-0.06 0.11,-0.11 0.17,-0.16 0.07,-0.05 0.13,-0.12 0.19,-0.18 0.06,-0.06 -0.03,-0.15 -0.1,-0.1 -0.06,0.05 -0.13,0.1 -0.19,0.16 -0.06,0.06 -0.12,0.11 -0.18,0.16 -0.07,0.05 -0.14,0.09 -0.2,0.13 -0.07,0.05 -0.13,0.1 -0.2,0.15 -0.25,0.21 -0.49,0.43 -0.73,0.65 -0.14,0.12 0.06,0.31 0.19,0.2 z" + id="path260" /> + <path + class="st1" + d="m 313.09,542.79 c 1.24,-0.36 2.41,-0.85 3.49,-1.58 0.51,-0.35 1.04,-0.71 1.5,-1.14 0.23,-0.22 0.43,-0.48 0.66,-0.69 0.24,-0.22 0.49,-0.39 0.66,-0.68 0.04,-0.07 -0.04,-0.16 -0.11,-0.11 -0.25,0.18 -0.41,0.43 -0.62,0.66 -0.2,0.22 -0.45,0.38 -0.69,0.56 -0.51,0.4 -1.01,0.8 -1.56,1.13 -1.06,0.65 -2.21,1.22 -3.4,1.6 -0.15,0.05 -0.09,0.29 0.07,0.25 z" + id="path262" /> + <path + class="st1" + d="m 320.2,538.12 c 0.07,0 0.07,-0.11 0,-0.11 -0.07,0 -0.07,0.11 0,0.11 z" + id="path264" /> + <path + class="st1" + d="m 264.83,540.99 c -0.67,-0.23 -1.34,-0.51 -1.97,-0.83 -1.25,-0.65 -2.43,-1.5 -3.5,-2.41 -0.14,-0.12 -0.35,0.08 -0.21,0.21 1.07,1.03 2.28,1.81 3.61,2.45 0.65,0.31 1.31,0.59 2,0.82 0.68,0.22 1.37,0.43 2.09,0.47 0.06,0 0.06,-0.08 0.01,-0.1 -0.66,-0.22 -1.36,-0.38 -2.03,-0.61 z" + id="path266" /> + <path + class="st1" + d="m 271.07,541.98 c -0.39,-0.06 -0.77,-0.05 -1.16,0.01 -0.08,0.01 -0.12,0.11 -0.1,0.18 0.02,0.08 0.1,0.11 0.18,0.1 0.34,-0.05 0.7,-0.05 1.04,0.01 0.35,0.06 0.67,0.21 1.01,0.27 0.09,0.02 0.17,-0.09 0.09,-0.16 -0.28,-0.26 -0.69,-0.35 -1.06,-0.41 z" + id="path268" /> + <path + class="st1" + d="m 274.18,542.82 c 0.05,0 0.05,-0.08 0,-0.08 -0.05,0 -0.06,0.08 0,0.08 z" + id="path270" /> + <path + class="st1" + d="m 265.12,543.28 c 0.01,-0.02 0.01,-0.05 -0.02,-0.07 -0.13,-0.06 -0.26,-0.1 -0.39,-0.15 -0.4,-0.19 -0.8,-0.37 -1.21,-0.56 -0.07,-0.03 -0.13,0 -0.16,0.05 -0.01,-0.01 -0.03,-0.01 -0.04,-0.02 -0.09,-0.03 -0.13,0.11 -0.04,0.14 0.06,0.02 0.13,0.05 0.19,0.07 0.34,0.15 0.67,0.31 1.01,0.46 0.35,0.16 0.71,0.32 1.08,0.45 0.08,0.03 0.13,-0.1 0.06,-0.14 -0.16,-0.07 -0.32,-0.15 -0.48,-0.23 z" + id="path272" /> + <path + class="st1" + d="m 269.62,544.5 c 0.12,0 0.12,-0.18 0,-0.18 -0.12,-0.01 -0.12,0.18 0,0.18 z" + id="path274" /> + <path + class="st1" + d="m 252.52,545.73 c -0.05,-0.26 -0.04,-0.54 0.03,-0.8 0.05,-0.19 -0.25,-0.27 -0.3,-0.08 -0.08,0.31 -0.09,0.63 -0.03,0.95 0.05,0.3 0.16,0.64 0.42,0.82 0.07,0.05 0.16,-0.03 0.14,-0.11 -0.03,-0.14 -0.1,-0.26 -0.15,-0.39 -0.05,-0.13 -0.09,-0.26 -0.11,-0.39 z" + id="path276" /> + <path + class="st1" + d="m 254.03,546.56 c -0.03,-0.23 -0.05,-0.46 -0.08,-0.69 -0.01,-0.07 -0.06,-0.13 -0.13,-0.13 -0.07,0 -0.14,0.06 -0.13,0.13 0.02,0.23 0.05,0.47 0.07,0.7 0.01,0.11 0.02,0.23 0.04,0.34 0.01,0.12 0.01,0.27 0.11,0.35 0.04,0.03 0.1,0.02 0.13,-0.02 0.09,-0.09 0.05,-0.24 0.03,-0.36 z" + id="path278" /> + <path + class="st1" + d="m 255.22,547.2 c -0.02,-0.1 -0.05,-0.19 -0.08,-0.29 l -0.17,-0.59 c -0.05,-0.19 -0.34,-0.11 -0.29,0.08 0.06,0.2 0.11,0.39 0.17,0.59 0.03,0.1 0.06,0.19 0.09,0.29 0.02,0.05 0.03,0.1 0.05,0.15 0.02,0.06 0.04,0.11 0.08,0.15 0.06,0.06 0.18,0.04 0.2,-0.05 0.01,-0.04 0.01,-0.07 0.01,-0.11 0,-0.02 -0.01,-0.04 -0.02,-0.07 -0.02,-0.05 -0.03,-0.1 -0.04,-0.15 z" + id="path280" /> + <path + class="st1" + d="m 257.24,548.09 -0.16,-0.32 c -0.11,-0.22 -0.23,-0.45 -0.34,-0.67 -0.05,-0.09 -0.17,-0.11 -0.25,-0.07 -0.09,0.05 -0.11,0.16 -0.07,0.25 0.11,0.23 0.22,0.45 0.33,0.68 0.05,0.11 0.11,0.22 0.16,0.33 0.03,0.05 0.06,0.11 0.08,0.16 0.05,0.08 0.08,0.14 0.18,0.18 0.08,0.03 0.17,-0.03 0.2,-0.11 0.03,-0.09 -0.01,-0.16 -0.05,-0.24 -0.02,-0.07 -0.05,-0.13 -0.08,-0.19 z" + id="path282" /> + <path + class="st1" + d="m 261.38,548.88 c -0.09,-0.31 -0.17,-0.62 -0.26,-0.93 -0.04,-0.14 -0.26,-0.08 -0.23,0.06 0.08,0.31 0.16,0.62 0.25,0.93 0.04,0.15 0.08,0.3 0.12,0.45 0.04,0.15 0.07,0.33 0.17,0.44 0.04,0.05 0.14,0.03 0.15,-0.04 0.03,-0.15 -0.04,-0.32 -0.08,-0.47 -0.04,-0.14 -0.08,-0.29 -0.12,-0.44 z" + id="path284" /> + <path + class="st1" + d="m 263.12,549.25 c -0.06,-0.27 -0.12,-0.54 -0.18,-0.82 -0.04,-0.18 -0.32,-0.1 -0.28,0.08 0.06,0.27 0.12,0.54 0.18,0.82 0.03,0.14 0.06,0.28 0.09,0.42 0.02,0.11 0.05,0.35 0.22,0.3 0.17,-0.05 0.09,-0.26 0.06,-0.38 -0.03,-0.14 -0.06,-0.28 -0.09,-0.42 z" + id="path286" /> + <path + class="st1" + d="m 264.35,549.93 c -0.04,-0.04 -0.08,-0.09 -0.12,-0.13 -0.08,-0.09 -0.16,-0.17 -0.24,-0.25 -0.05,-0.05 -0.14,-0.05 -0.19,0 -0.05,0.05 -0.05,0.13 0,0.19 0.08,0.09 0.16,0.17 0.24,0.26 0.04,0.04 0.08,0.08 0.12,0.12 0.02,0.02 0.04,0.04 0.06,0.06 0.03,0.03 0.06,0.04 0.09,0.06 0.04,0.02 0.1,0.02 0.13,-0.02 0.03,-0.04 0.04,-0.08 0.02,-0.13 -0.02,-0.03 -0.03,-0.06 -0.05,-0.09 -0.02,-0.03 -0.04,-0.05 -0.06,-0.07 z" + id="path288" /> + <path + class="st1" + d="m 311.15,549.65 c -0.01,-0.01 -0.03,-0.02 -0.05,-0.03 -0.02,-0.01 -0.04,-0.02 -0.07,-0.04 -0.01,-0.01 -0.02,-0.01 -0.03,-0.02 0,0 -0.03,-0.02 -0.02,-0.01 0.02,0.01 -0.01,-0.01 -0.02,-0.01 -0.01,-0.01 -0.02,-0.02 -0.03,-0.03 -0.04,-0.03 -0.08,-0.06 -0.11,-0.1 -0.02,-0.02 -0.04,-0.04 -0.05,-0.06 -0.01,-0.01 -0.01,-0.02 -0.02,-0.03 0.02,0.03 -0.01,-0.01 -0.01,-0.01 -0.03,-0.04 -0.06,-0.08 -0.08,-0.13 -0.01,-0.02 -0.02,-0.04 -0.03,-0.06 0,0 0,0 0,-0.01 0,0 0,0 0,-0.01 0,-0.01 -0.01,-0.03 -0.01,-0.04 -0.02,-0.05 -0.03,-0.09 -0.03,-0.14 0,0 0,-0.01 0,-0.01 0,-0.01 0,-0.02 0,-0.04 0,-0.03 0,-0.06 0,-0.08 0,-0.08 -0.07,-0.14 -0.14,-0.14 -0.08,0 -0.14,0.07 -0.14,0.14 -0.02,0.24 0.05,0.5 0.18,0.69 0.07,0.1 0.16,0.21 0.27,0.27 0.05,0.03 0.11,0.06 0.17,0.08 0.07,0.03 0.14,0.05 0.21,0.02 0.09,-0.03 0.1,-0.12 0.05,-0.19 0,0.03 -0.03,-0.01 -0.04,-0.01 z" + id="path290" /> + <path + class="st1" + d="m 283.94,490.78 c 1.18,-0.05 2.36,-0.09 3.54,-0.14 0.58,-0.02 1.17,-0.05 1.75,-0.08 0.58,-0.02 1.17,-0.03 1.74,-0.12 0.16,-0.03 0.11,-0.25 -0.04,-0.26 -0.58,-0.04 -1.17,0.01 -1.75,0.04 -0.58,0.03 -1.17,0.06 -1.75,0.09 -1.17,0.06 -2.33,0.12 -3.5,0.19 -0.18,0 -0.18,0.28 0.01,0.28 z" + id="path292" /> + <path + class="st1" + d="m 287.51,491.29 h -0.49 c -0.05,0 -0.1,0.05 -0.1,0.1 0,0.05 0.04,0.1 0.1,0.1 h 0.48 c 0.06,0 0.11,-0.01 0.17,-0.02 0.05,-0.01 0.08,-0.03 0.08,-0.08 0,-0.05 -0.04,-0.08 -0.08,-0.08 -0.05,-0.01 -0.1,-0.02 -0.16,-0.02 z" + id="path294" /> + <path + class="st1" + d="m 279.65,490.14 c 0.68,0.16 1.35,0.33 2.03,0.49 0.68,0.16 1.36,0.34 2.05,0.44 0.19,0.03 0.27,-0.23 0.08,-0.29 -0.66,-0.23 -1.34,-0.38 -2.02,-0.55 -0.68,-0.17 -1.35,-0.33 -2.03,-0.49 -0.27,-0.07 -0.38,0.34 -0.11,0.4 z" + id="path296" /> + </g> + <g + id="g308"> + <g + id="g302"> + <rect + x="325.48999" + y="510.20999" + class="st1" + width="34.549999" + height="2.05" + id="rect300" /> + </g> + <g + id="g306"> + <rect + x="214.19" + y="510.20999" + class="st1" + width="32.919998" + height="2.05" + id="rect304" /> + </g> + </g> + <g + id="g2122"> + <path + class="st1" + d="m 238.67,457.13 c -0.01,0 -0.02,0.01 -0.03,0.01 -0.16,0.07 0,0 0.03,-0.01 z" + id="path310" /> + <path + class="st1" + d="m 239.03,457.02 c -0.01,0 -0.01,0 -0.02,0 0,0 0,0 -0.01,0 0.02,0 0.03,0 0.03,0 0,0 0,0 0,0 z" + id="path312" /> + <path + class="st1" + d="m 242.18,440.12 c 0,0 0.01,0 0,0 0.06,0.01 0.14,0 0,0 z" + id="path314" /> + <path + class="st1" + d="m 283.47,399.15 c -0.38,-0.18 -0.8,-0.23 -1.21,-0.13 -0.22,0.05 -0.55,0.21 -0.76,0.42 -0.01,0.01 -0.03,0.02 -0.04,0.03 -0.12,0.12 -0.22,0.28 -0.28,0.43 -0.15,0.35 -0.2,0.72 -0.12,1.09 0.15,0.75 0.85,1.23 1.58,1.26 0.77,0.04 1.46,-0.48 1.65,-1.22 0.18,-0.7 -0.15,-1.56 -0.82,-1.88 z m -0.09,1.53 c -0.01,0.02 -0.01,0.05 -0.01,0.08 -0.01,0.06 -0.03,0.12 -0.05,0.18 0,0 0,0 0,0 -0.01,0.03 -0.03,0.05 -0.04,0.08 -0.01,0.02 -0.03,0.04 -0.04,0.07 0,0.01 -0.01,0.01 -0.01,0.01 -0.02,0.02 -0.04,0.04 -0.06,0.07 -0.01,0.01 -0.02,0.02 -0.04,0.03 -0.01,0.01 -0.02,0.01 -0.02,0.01 -0.03,0.02 -0.06,0.04 -0.09,0.05 -0.01,0 -0.02,0.01 -0.03,0.01 -0.02,0.01 -0.03,0.01 -0.05,0.02 -0.03,0.01 -0.06,0.02 -0.09,0.02 -0.01,0 -0.05,0.01 -0.07,0.01 -0.01,0 -0.02,0 -0.02,0 -0.03,0 -0.05,0 -0.08,0 -0.03,0 -0.06,0 -0.09,0 -0.01,0 -0.02,0 -0.03,0 -0.05,-0.01 -0.11,-0.02 -0.16,-0.04 -0.03,-0.01 -0.05,-0.02 -0.08,-0.03 -0.01,0 -0.01,-0.01 -0.01,-0.01 -0.05,-0.03 -0.11,-0.06 -0.16,-0.09 0,0 0,0 0,0 -0.02,-0.02 -0.05,-0.04 -0.07,-0.06 -0.02,-0.02 -0.04,-0.04 -0.06,-0.07 0,0 0,0 0,0 0,0 0,0 0,0 -0.03,-0.05 -0.06,-0.1 -0.08,-0.15 -0.01,-0.01 -0.01,-0.03 -0.02,-0.04 -0.01,-0.03 -0.02,-0.07 -0.03,-0.1 0,-0.01 -0.01,-0.04 -0.01,-0.07 0,-0.02 0,-0.04 0,-0.05 0,-0.06 0,-0.12 0.01,-0.19 0,-0.02 0,-0.03 0.01,-0.04 0.01,-0.03 0.02,-0.07 0.02,-0.1 0.01,-0.03 0.02,-0.07 0.03,-0.1 0,-0.01 0,0 0,-0.01 0.05,-0.02 0.1,-0.05 0.14,-0.09 0.02,-0.02 0.04,-0.04 0.06,-0.06 0.01,-0.01 0.03,-0.02 0.04,-0.04 0.02,-0.01 0.04,-0.03 0.04,-0.03 0.02,-0.01 0.04,-0.03 0.07,-0.04 0.02,-0.01 0.04,-0.02 0.06,-0.03 0.01,0 0.02,-0.01 0.03,-0.01 0.06,-0.02 0.12,-0.03 0.17,-0.05 0,0 0,0 0.01,0 0.03,0 0.06,-0.01 0.1,-0.01 0.05,0 0.11,0.01 0.16,0.01 0,0 0,0 0,0 0.03,0.01 0.07,0.01 0.1,0.02 0.03,0.01 0.06,0.02 0.09,0.03 0,0 0,0 0,0 0.05,0.03 0.1,0.06 0.15,0.09 0.01,0 0.01,0.01 0.02,0.01 0.02,0.02 0.04,0.04 0.07,0.06 0,0 0.01,0.01 0.01,0.01 0,0 0,-0.01 -0.01,-0.01 0,0.01 0.01,0.01 0.01,0.02 0,0 0.01,0.01 0.01,0.01 0.01,0.02 0.01,0.02 0.01,0.02 0.01,0.01 0.02,0.03 0.03,0.04 0,0 0.01,0.01 0.01,0.02 0,-0.01 0.01,0 0.01,0.02 0,0.01 0,0.01 0.01,0.02 0,0 0.01,0.01 0.01,0.01 0,0 0,-0.01 -0.01,-0.01 0,0 0,0.01 0,0.01 0.02,0.06 0.03,0.12 0.04,0.18 0,0 0,0 0,0 0,0.03 0,0.06 0,0.09 0,0.07 -0.01,0.13 -0.01,0.2 0,0.01 0,0.01 0,0.02 -0.01,0.02 -0.01,0.02 0,0 z" + id="path316" /> + <path + class="st1" + d="m 283.33,400.21 c -0.01,-0.01 -0.01,-0.02 -0.02,-0.04 0,0.01 0,0.03 0.02,0.04 0,0.01 0,0.01 0,0 z" + id="path318" /> + <path + class="st1" + d="m 283.25,400.09 c 0,0 0,0 0,0 0,0.02 0.02,0.03 0.02,0.03 0,-0.01 -0.01,-0.02 -0.02,-0.03 z" + id="path320" /> + <path + class="st1" + d="m 282.27,348.14 c 1.4,0.21 2.73,-0.65 3.22,-1.95 0.52,-1.36 -0.19,-2.98 -1.42,-3.69 -0.74,-0.43 -1.64,-0.51 -2.42,-0.15 -0.35,0.16 -0.69,0.44 -0.89,0.78 -0.18,0.15 -0.32,0.33 -0.45,0.51 -0.36,0.51 -0.57,1.18 -0.53,1.81 0.09,1.33 1.17,2.5 2.49,2.69 z m -1.12,-3.75 c 0.04,-0.02 0.08,-0.04 0.12,-0.07 0.34,-0.34 0.53,-0.68 0.91,-0.88 0.14,-0.07 0.31,-0.11 0.51,-0.11 0.18,0 0.39,0.05 0.56,0.12 0.45,0.19 0.78,0.54 0.99,0.98 0.18,0.37 0.23,0.83 0.13,1.2 -0.2,0.74 -0.95,1.32 -1.69,1.31 -0.33,0 -0.75,-0.16 -1.02,-0.37 -0.34,-0.27 -0.56,-0.6 -0.66,-0.99 -0.11,-0.37 -0.05,-0.8 0.15,-1.19 z" + id="path322" /> + <path + class="st1" + d="m 283.75,357.44 c 0.01,-0.01 0.02,-0.02 0.03,-0.03 0,0 -0.03,0.01 -0.04,0.04 0.01,0 0.01,-0.01 0.01,-0.01 z" + id="path324" /> + <path + class="st1" + d="m 284.14,356.82 c 0,-0.01 0,-0.01 0,-0.02 -0.01,0.01 0,0.02 0,0.02 0,0 0,0 0,0 z" + id="path326" /> + <path + class="st1" + d="m 283.57,357.55 c 0,0 0,0 0,0 -0.03,0 -0.05,0.01 -0.06,0.02 0.02,-0.01 0.04,-0.02 0.06,-0.02 z" + id="path328" /> + <path + class="st1" + d="m 213.83,341.2 c 0,0 0,0 0,0 -0.03,-0.04 -0.02,-0.03 0,0 z" + id="path330" /> + <path + class="st1" + d="m 340.57,298.82 c -0.01,0 -0.01,0 0,0 -0.01,0 -0.01,0.01 -0.02,0.01 0.01,0 0.01,0 0.02,-0.01 z" + id="path332" /> + <path + class="st1" + d="m 340.57,298.82 c 0.01,0 0.01,0 0.02,-0.01 0.03,-0.01 0.02,-0.01 -0.02,0.01 z" + id="path334" /> + <path + class="st1" + d="m 378.8,319.53 c -0.01,-0.13 -0.04,-0.24 -0.12,-0.35 0,0 0,0 -0.01,-0.01 0.08,-0.85 -0.05,-1.75 -0.17,-2.58 -0.14,-1.04 -0.31,-2.08 -0.52,-3.11 -0.41,-2.06 -0.95,-4.1 -1.61,-6.09 -1.31,-3.99 -3.15,-7.78 -5.4,-11.33 -0.62,-0.99 -1.28,-1.95 -1.97,-2.9 -0.35,-0.48 -0.71,-0.95 -1.08,-1.41 -0.36,-0.46 -0.7,-0.94 -1.18,-1.28 -0.16,-0.11 -0.31,-0.06 -0.41,0.06 -0.15,-0.03 -0.31,0.01 -0.44,0.13 -0.01,0.01 -0.01,0.01 -0.02,0.02 -0.03,0.02 -0.06,0.04 -0.09,0.06 -0.05,0.03 -0.1,0.05 -0.15,0.08 -0.08,0.03 -0.17,0.06 -0.26,0.08 -0.02,0 -0.03,0.01 -0.05,0.01 0,0 -0.01,0 -0.01,0 -0.05,0 -0.1,0.01 -0.15,0.01 -0.05,0 -0.1,0 -0.15,-0.01 -0.01,0 -0.01,0 -0.01,0 -0.08,-0.04 -0.16,-0.07 -0.24,-0.1 -0.03,-0.17 -0.13,-0.32 -0.33,-0.38 -0.42,-0.11 -0.98,-0.04 -1.41,0.05 -0.43,0.09 -0.84,0.26 -1.26,0.41 -0.92,0.34 -1.83,0.7 -2.73,1.1 -0.86,0.38 -1.71,0.8 -2.54,1.25 -0.82,0.44 -1.78,0.89 -2.45,1.54 -0.14,0.13 -0.17,0.3 -0.15,0.46 -0.11,0.08 -0.17,0.2 -0.2,0.33 -0.23,0.1 -0.45,0.2 -0.66,0.3 -0.42,0.19 -0.86,0.39 -1.25,0.64 -0.36,0.23 -0.71,0.5 -0.99,0.82 -0.15,0.17 -0.31,0.36 -0.42,0.57 -0.03,0.06 -0.05,0.12 -0.08,0.18 -0.06,0.02 -0.12,0.04 -0.19,0.06 -0.56,0.17 -1.13,0.3 -1.66,0.56 -0.47,0.24 -0.9,0.62 -1.14,1.1 -0.13,0.25 -0.2,0.53 -0.2,0.81 -0.3,0.12 -0.6,0.23 -0.9,0.36 -0.57,-0.61 -1.17,-1.21 -1.94,-1.56 -0.43,-0.19 -1.1,-0.33 -1.61,-0.16 0,-0.01 -0.01,-0.02 -0.01,-0.04 -0.09,-0.23 -0.17,-0.47 -0.27,-0.69 0.58,-0.25 1.15,-0.49 1.73,-0.74 0.21,-0.09 0.3,-0.33 0.29,-0.55 0.07,-0.13 0.1,-0.28 0.08,-0.46 -0.24,-1.6 -0.95,-3.23 -1.63,-4.68 -0.34,-0.72 -0.72,-1.42 -1.14,-2.1 -0.21,-0.34 -0.43,-0.67 -0.65,-1 -0.22,-0.32 -0.41,-0.62 -0.74,-0.79 -0.13,-0.19 -0.36,-0.31 -0.63,-0.22 -0.51,0.17 -1,0.43 -1.5,0.64 -0.47,0.2 -0.95,0.39 -1.42,0.58 -0.49,0.19 -0.98,0.39 -1.48,0.58 -0.39,0.15 -0.83,0.28 -1.19,0.52 -0.35,-0.52 -0.72,-1.03 -1.13,-1.5 -0.27,-0.32 -0.59,-0.73 -0.97,-0.98 0,-0.01 0,-0.02 0,-0.03 -0.03,-0.09 -0.08,-0.17 -0.14,-0.24 -0.08,-0.08 -0.25,-0.17 -0.37,-0.15 -0.08,0.01 -0.17,0.01 -0.24,0.04 -0.07,0.02 -0.13,0.06 -0.2,0.08 -0.07,0.03 -0.15,0.06 -0.22,0.09 -0.14,0.06 -0.27,0.12 -0.41,0.18 -0.14,0.06 -0.27,0.12 -0.4,0.18 -0.07,0.04 -0.14,0.07 -0.21,0.11 -0.09,0.06 -0.17,0.13 -0.25,0.2 -0.13,0.11 -0.15,0.33 -0.09,0.48 0,0 0,0 0.01,0.01 -0.11,0.25 -0.14,0.53 -0.08,0.8 0.01,0.05 0.04,0.09 0.06,0.14 -5.57,2.51 -11.15,4.98 -16.74,7.45 -1.58,-1.12 -3.21,-2.17 -4.91,-3.1 -5.22,-2.88 -10.92,-4.9 -16.78,-5.98 -5.88,-1.09 -11.89,-1.26 -17.82,-0.49 -6.6,0.86 -13.02,2.99 -18.85,6.21 -6.3,3.48 -11.84,8.25 -16.21,13.97 -4.08,5.33 -7.19,11.4 -9.11,17.84 -0.76,2.56 -1.32,5.19 -1.7,7.84 -3.77,1.55 -7.53,3.11 -11.26,4.75 -0.37,0.16 -0.33,0.62 -0.11,0.88 0,0.35 0.07,0.71 0.11,1.03 0.05,0.32 0.13,0.64 0.19,0.96 -0.48,0.14 -0.95,0.36 -1.41,0.54 -0.23,0.09 -0.46,0.19 -0.69,0.28 -0.04,-0.1 -0.08,-0.21 -0.13,-0.31 -0.05,-0.09 -0.09,-0.17 -0.15,-0.26 -0.01,-0.01 -0.05,-0.07 -0.08,-0.1 -0.07,-0.09 -0.13,-0.14 -0.23,-0.2 -0.15,-0.1 -0.33,-0.06 -0.46,0.04 -0.17,0.03 -0.33,0.12 -0.49,0.18 -0.14,0.06 -0.28,0.12 -0.42,0.18 -0.13,0.06 -0.27,0.11 -0.39,0.19 -0.15,0.09 -0.29,0.2 -0.42,0.32 -0.05,0.05 -0.07,0.11 -0.09,0.17 -0.14,-0.07 -0.35,0.01 -0.33,0.19 l 0.01,0.08 c -0.04,0.11 -0.06,0.22 -0.03,0.35 0.02,0.09 0.04,0.17 0.07,0.25 0.02,0.08 0.06,0.15 0.09,0.22 -0.24,0.11 -0.49,0.22 -0.74,0.34 -0.07,0.01 -0.12,0.05 -0.18,0.1 -0.28,0.16 -0.54,0.34 -0.73,0.58 -0.15,0.2 -0.1,0.47 0.12,0.57 -0.02,0.07 -0.05,0.14 -0.06,0.22 -0.11,0.5 -0.13,1.02 -0.07,1.53 0.12,1.16 0.52,2.22 1.02,3.27 0.43,0.92 0.87,1.99 1.67,2.67 0.65,0.56 1.61,0.83 2.38,0.49 -0.03,0.05 -0.07,0.1 -0.08,0.17 -0.1,0.85 0.04,1.73 0.16,2.58 0,0.02 0.01,0.03 0.01,0.05 -0.35,0.15 -0.7,0.31 -1.05,0.46 -0.28,0.13 -0.24,0.48 -0.04,0.66 -0.33,0.56 -0.51,1.24 -0.58,1.92 -0.15,0.06 -0.3,0.12 -0.44,0.18 -1.27,0.52 -2.53,1.06 -3.79,1.6 -1.22,0.52 -2.45,1.03 -3.66,1.57 -0.62,0.27 -1.25,0.54 -1.85,0.84 -0.13,0.07 -0.28,0.13 -0.43,0.2 -0.08,-0.03 -0.17,-0.03 -0.26,0.02 -0.75,0.42 -1.21,0.93 -1.53,1.73 -0.35,0.88 -0.45,1.74 -0.35,2.69 0.05,0.49 0.13,0.98 0.22,1.46 -0.46,0.17 -0.91,0.35 -1.36,0.53 -1.41,0.57 -2.83,1.14 -4.24,1.71 -1.38,0.56 -2.77,1.12 -4.14,1.69 -1.2,0.5 -2.45,0.96 -3.62,1.56 -0.12,0.03 -0.24,0.09 -0.36,0.19 -0.09,0.05 -0.18,0.09 -0.26,0.14 -0.23,0.13 -0.29,0.36 -0.23,0.57 -0.01,0.03 -0.03,0.06 -0.04,0.09 -0.09,0.22 -0.13,0.45 -0.16,0.69 -0.01,0.01 -0.02,0.01 -0.04,0.02 -0.21,0.09 -0.42,0.19 -0.64,0.28 -0.21,0.09 -0.42,0.19 -0.64,0.28 -0.1,0.05 -0.2,0.09 -0.31,0.14 -0.15,0.07 -0.27,0.15 -0.4,0.25 -0.12,0.1 -0.14,0.27 -0.12,0.43 -0.13,0.21 -0.24,0.45 -0.32,0.74 -0.16,0.64 -0.16,1.32 -0.11,1.97 0.14,1.57 0.72,3.07 1.39,4.48 0.67,1.41 1.51,3.02 2.73,4.02 0.35,0.28 0.8,0.52 1.28,0.66 0.02,0.01 0.02,0.02 0.03,0.03 0.04,0.02 0.09,0.03 0.13,0.04 0.06,0.02 0.12,0.04 0.18,0.04 0.03,0 0.06,-0.01 0.09,-0.01 0.64,0.1 1.26,-0.02 1.66,-0.5 l 0.27,-0.11 c 0.15,-0.06 0.31,-0.12 0.46,-0.18 0.48,0.27 1.01,0.37 1.6,0.1 0.08,-0.04 0.14,-0.08 0.19,-0.14 2.94,-0.76 5.81,-1.95 8.61,-3.09 1.56,-0.63 3.1,-1.29 4.63,-1.97 0.18,-0.08 0.35,-0.18 0.53,-0.26 0.01,0.01 0.02,0.02 0.02,0.03 0.6,0.67 1.28,1.29 2.03,1.78 0.44,0.29 1.02,0.64 1.6,0.8 0.12,0.15 0.32,0.24 0.55,0.18 0.13,-0.03 0.26,-0.08 0.39,-0.12 0.06,-0.01 0.12,-0.02 0.18,-0.04 0.02,-0.01 0.04,-0.03 0.06,-0.04 0.96,-0.3 1.9,-0.71 2.83,-1.09 1.14,-0.47 2.28,-0.93 3.42,-1.4 1.11,-0.45 2.22,-0.92 3.33,-1.39 0.33,-0.14 0.65,-0.28 0.98,-0.41 0.79,0.39 2.04,0.44 2.56,-0.27 4.17,-1.66 8.31,-3.37 12.45,-5.11 0.11,0.16 0.22,0.32 0.34,0.47 0.87,1.15 1.78,2.28 2.73,3.36 0.98,1.1 2.09,2.07 3.14,3.09 0.2,0.19 0.42,0.25 0.63,0.22 3.92,3.49 8.34,6.42 13.11,8.6 1.74,0.8 3.52,1.49 5.33,2.09 -0.32,1.26 -0.64,2.53 -0.96,3.79 -0.4,1.59 -0.79,3.17 -1.18,4.76 -0.1,0.01 -0.21,0.02 -0.31,0.03 -0.04,-0.72 -0.07,-1.46 -0.26,-2.15 -0.09,-0.33 -0.54,-0.4 -0.75,-0.17 -0.15,-0.04 -0.3,-0.05 -0.45,-0.07 -0.14,-0.01 -0.27,-0.02 -0.41,-0.04 -0.14,-0.01 -0.27,-0.02 -0.41,-0.02 -0.18,0.01 -0.35,0.03 -0.53,0.05 -0.02,0.01 -0.04,0.02 -0.07,0.03 -0.14,-0.37 -0.67,-0.45 -0.81,0 -0.47,1.53 -0.37,3.32 -0.3,4.91 0.07,1.66 0.29,3.31 0.62,4.93 0.06,0.29 0.26,0.43 0.48,0.45 0,0.02 -0.01,0.04 -0.01,0.07 0.02,0.17 0.15,0.35 0.33,0.39 0.04,0.01 0.07,0.02 0.11,0.02 0.11,0.04 0.22,0.06 0.34,0.06 0.09,0 0.19,0 0.28,0 0.01,0 0.03,0 0.04,0 -1.13,4.61 -2.25,9.23 -3.4,13.84 -0.63,2.54 -1.26,5.08 -1.89,7.63 -0.31,1.24 -0.62,2.48 -0.96,3.71 -0.29,1.08 -0.63,2.15 -0.73,3.27 -1.07,0.16 -2.14,0.4 -3.17,0.72 -0.64,0.2 -1.28,0.44 -1.9,0.7 -0.16,-0.46 -0.56,-0.75 -0.98,-1.05 -0.43,-0.31 -0.91,-0.55 -1.4,-0.75 -0.25,-0.1 -0.52,-0.18 -0.78,-0.25 0.02,-0.47 0.05,-0.93 0.06,-1.4 0.09,-0.09 0.16,-0.21 0.18,-0.35 0.06,-0.45 -0.3,-0.92 -0.63,-1.2 -0.37,-0.31 -0.79,-0.5 -1.27,-0.53 -0.42,-0.02 -0.87,0.1 -1.23,0.32 -0.19,0.12 -0.42,0.3 -0.57,0.51 -0.06,-0.02 -0.12,-0.05 -0.18,-0.04 -0.2,0.03 -0.31,0.18 -0.33,0.38 -0.08,0.67 -0.03,1.35 -0.01,2.03 0,0.15 0.01,0.31 0.01,0.46 -0.52,0.18 -1.02,0.4 -1.48,0.69 -0.75,0.46 -1.72,1.19 -2.06,2.05 -0.05,0.08 -0.11,0.15 -0.15,0.24 -0.11,0.24 -0.19,0.49 -0.27,0.74 -0.15,0.5 -0.26,1.01 -0.33,1.53 -0.16,1.1 -0.13,2.19 0.03,3.29 0.01,0.09 0.07,0.17 0.14,0.24 -0.23,0.57 -0.46,1.14 -0.68,1.72 -0.26,0.68 -0.51,1.36 -0.75,2.05 -0.06,0.18 -0.18,0.43 -0.27,0.69 -0.36,0.17 -0.71,0.35 -1.04,0.56 -0.11,0.07 -0.04,0.27 0.09,0.22 0.2,-0.06 0.4,-0.15 0.6,-0.23 -0.11,0.12 -0.21,0.25 -0.3,0.38 -0.2,0.05 -0.4,0.12 -0.58,0.18 -0.62,0.22 -1.22,0.52 -1.76,0.92 -0.55,0.41 -1.03,0.86 -1.44,1.41 -0.16,0.22 -0.32,0.46 -0.45,0.71 -0.15,-0.03 -0.31,0.02 -0.42,0.17 -0.03,0.04 -0.05,0.11 -0.07,0.16 -0.24,0.12 -0.41,0.42 -0.24,0.73 0.02,0.04 0.05,0.08 0.07,0.12 0,0.23 0,0.46 0,0.65 0,0.59 -0.01,1.17 -0.01,1.76 0,0.57 -0.01,1.13 -0.01,1.7 0,0.42 -0.1,1 0.08,1.41 0,0.06 0.02,0.12 0.05,0.18 -0.9,0.61 -1.67,1.65 -2.06,2.66 -0.15,0.39 -0.21,0.82 -0.23,1.24 -0.18,0.51 -0.2,1.1 -0.23,1.61 -0.05,0.79 0.01,1.58 0.13,2.36 0.11,0.75 0.29,1.52 0.6,2.22 0.16,0.37 0.35,0.71 0.61,1.02 0.02,0.03 0.04,0.05 0.06,0.08 1.69,2.57 4.46,4.14 7.31,5.26 3.96,1.54 8.19,2.53 12.34,3.36 8.83,1.76 17.85,2.42 26.84,2.48 8.98,0.06 17.96,-0.36 26.92,-0.9 8.58,-0.52 17.22,-1.29 25.57,-3.43 4.14,-1.06 8.19,-2.47 12.05,-4.31 1.67,-0.79 3.26,-1.71 4.71,-2.86 0.71,-0.57 1.44,-1.23 2.05,-1.97 0.19,-0.18 0.37,-0.39 0.53,-0.59 0.44,-0.55 0.71,-1.2 0.86,-1.88 0.07,0.01 0.13,0 0.2,-0.01 0.08,-0.02 0.16,-0.04 0.25,-0.06 0.09,-0.01 0.17,-0.02 0.26,-0.02 0.08,0 0.16,-0.01 0.23,-0.02 0.08,-0.02 0.15,-0.06 0.22,-0.1 0.04,-0.02 0.08,-0.05 0.12,-0.07 0.25,0.05 0.5,0.09 0.76,0.12 l 0.01,0.58 c 0,0.2 0.01,0.4 0.02,0.6 0.01,0.14 0.01,0.28 0.03,0.42 0.03,0.13 0.08,0.24 0.16,0.33 0.02,0.03 0.02,0.06 0.04,0.08 0.02,0.02 0.05,0.04 0.07,0.06 0.15,0.28 0.58,0.44 0.85,0.53 0.34,0.12 0.73,0.16 1.09,0.19 0.73,0.06 1.54,0.01 2.1,-0.51 0.07,-0.06 0.11,-0.15 0.12,-0.24 0.17,-0.09 0.3,-0.25 0.28,-0.46 -0.03,-0.36 -0.05,-0.72 -0.1,-1.07 -0.02,-0.13 -0.05,-0.27 -0.07,-0.4 0.39,-0.03 0.74,-0.15 0.9,-0.48 0.25,-0.14 0.51,-0.27 0.75,-0.42 0.2,-0.12 0.4,-0.26 0.59,-0.39 0.21,-0.14 0.45,-0.27 0.63,-0.45 0.19,0.05 0.4,0.01 0.54,-0.14 0.12,-0.13 0.21,-0.27 0.2,-0.46 0,-0.05 -0.01,-0.1 -0.02,-0.15 -0.02,-0.15 -0.03,-0.31 -0.05,-0.46 -0.03,-0.22 -0.06,-0.45 -0.09,-0.67 -0.03,-0.22 -0.06,-0.45 -0.09,-0.67 -0.04,-0.21 -0.09,-0.42 -0.15,-0.63 0.04,-0.25 0.04,-0.52 0.05,-0.73 0.03,-0.4 0.06,-0.8 0.06,-1.21 0.01,-0.73 -0.02,-1.46 -0.13,-2.18 0.07,-0.17 0.07,-0.38 -0.03,-0.54 -0.07,-0.11 -0.16,-0.18 -0.26,-0.23 0,-0.05 0.01,-0.11 -0.01,-0.16 -0.07,-0.22 -0.13,-0.44 -0.21,-0.65 -0.04,-0.1 -0.08,-0.21 -0.12,-0.31 -0.03,-0.07 -0.06,-0.15 -0.1,-0.22 0.38,-0.05 0.72,-0.1 1.01,-0.39 0.11,-0.11 0.16,-0.26 0.18,-0.42 0.1,-0.12 0.17,-0.26 0.16,-0.43 -0.03,-0.54 -0.07,-1.07 -0.1,-1.61 -0.01,-0.17 -0.03,-0.35 -0.05,-0.52 0.17,-0.34 0.06,-0.82 -0.32,-0.96 -0.15,-0.13 -0.35,-0.19 -0.54,-0.08 -0.02,0.01 -0.04,0.03 -0.06,0.05 -0.03,0 -0.07,0 -0.1,0 0.04,-0.2 0.01,-0.4 -0.02,-0.6 0,-0.04 -0.01,-0.07 -0.01,-0.11 0.08,-0.09 0.13,-0.19 0.13,-0.33 0,-0.16 -0.1,-0.33 -0.24,-0.43 -0.02,-0.15 -0.04,-0.3 -0.07,-0.46 -0.06,-0.35 -0.13,-0.69 -0.2,-1.03 0.06,-0.12 0.05,-0.26 -0.01,-0.39 0.01,-0.02 0.03,-0.04 0.03,-0.06 0.09,-0.33 -0.11,-0.59 -0.4,-0.7 -0.92,-0.37 -1.85,-0.74 -2.77,-1.11 -0.79,-0.32 -1.59,-0.68 -2.42,-0.87 -0.1,-0.19 -0.3,-0.3 -0.52,-0.31 -0.2,-0.01 -0.41,0.04 -0.61,0.07 -0.17,0.02 -0.34,0.05 -0.51,0.08 -0.32,0.05 -0.63,0.1 -0.95,0.15 -0.32,0.05 -0.63,0.1 -0.95,0.16 -0.01,0 -0.02,0.01 -0.03,0.01 -0.01,-0.26 -0.04,-0.53 -0.13,-0.76 1.34,-0.24 2.65,-0.58 3.94,-1.02 0.23,-0.08 0.37,-0.24 0.43,-0.42 0.13,-0.05 0.25,-0.13 0.32,-0.27 0.1,-0.19 0.14,-0.37 0.13,-0.58 0,-0.1 -0.01,-0.19 -0.01,-0.29 -0.01,-0.22 -0.02,-0.44 -0.02,-0.66 -0.01,-0.21 -0.01,-0.42 -0.03,-0.63 -0.04,-0.29 -0.04,-0.6 -0.18,-0.86 -0.05,-0.1 -0.15,-0.17 -0.25,-0.22 -0.13,-0.31 -0.38,-0.59 -0.66,-0.76 -0.55,-0.33 -1.22,-0.32 -1.84,-0.35 -1.34,-0.07 -2.68,-0.13 -4.03,-0.12 -1.3,0.01 -2.6,0.09 -3.88,0.3 -1.29,0.21 -2.67,0.5 -3.76,1.26 -0.04,0.03 -0.05,0.06 -0.07,0.1 -0.09,0.04 -0.18,0.1 -0.23,0.18 -0.08,0.02 -0.16,0.06 -0.21,0.14 -0.12,0.18 -0.16,0.47 -0.15,0.69 0.01,0.19 0.04,0.39 0.06,0.58 0.02,0.19 0.04,0.39 0.05,0.58 0.01,0.16 0.03,0.32 0.05,0.49 -0.01,0.02 -0.03,0.04 -0.03,0.07 -0.01,0.58 0.08,1.03 0.53,1.44 0.44,0.4 1.04,0.54 1.61,0.62 0.92,0.13 1.84,0.17 2.77,0.18 -0.12,0.34 -0.09,0.74 -0.08,1.1 0.01,0.37 0.01,0.74 0.03,1.1 -0.07,0.01 -0.13,0.01 -0.2,0.02 -0.02,-0.12 -0.06,-0.23 -0.15,-0.32 -0.16,-0.26 -0.41,-0.45 -0.74,-0.46 -0.05,0 -0.1,0.01 -0.15,0.02 -0.04,-0.04 -0.09,-0.08 -0.15,-0.09 -0.82,-0.17 -1.64,-0.11 -2.46,0.02 -0.67,0.1 -1.52,0.25 -1.84,0.92 -0.05,0 -0.09,-0.02 -0.14,-0.01 -0.06,0.01 -0.11,0.02 -0.17,0.03 -0.03,0.01 -0.06,0.01 -0.09,0.02 -0.01,-0.11 -0.04,-0.22 -0.1,-0.32 0,-0.01 0,-0.01 0,-0.02 0,-0.02 -0.02,-0.02 -0.02,-0.04 -0.01,-0.03 -0.02,-0.05 -0.04,-0.08 -0.01,-0.02 -0.03,-0.02 -0.04,-0.04 -0.03,-0.03 -0.04,-0.06 -0.08,-0.08 -0.41,-0.47 -1.12,-0.6 -1.71,-0.7 -0.42,-0.07 -0.86,-0.13 -1.28,-0.12 -0.22,0 -0.44,0.04 -0.66,0.08 -0.02,-0.06 -0.03,-0.13 -0.06,-0.19 0.06,-0.08 0.12,-0.17 0.13,-0.28 0.06,-0.41 0.03,-0.83 -0.04,-1.25 0.07,-0.05 0.14,-0.11 0.19,-0.18 0.3,-0.47 0.6,-0.94 0.9,-1.41 1.56,0.25 3.11,-0.84 3.75,-2.23 0.74,-1.63 0.33,-3.59 -0.68,-5.01 -1.07,-1.51 -2.71,-2.46 -4.39,-3.17 -1.71,-0.73 -3.71,-1.21 -5.51,-0.48 -0.85,0.35 -1.62,0.93 -2.03,1.76 -0.37,0.76 -0.62,1.87 -0.11,2.62 0.01,0.01 0.02,0.01 0.03,0.02 -0.03,0.05 -0.06,0.1 -0.09,0.15 -0.62,-0.27 -1.28,-0.47 -1.91,-0.65 -1.03,-0.3 -2.08,-0.54 -3.13,-0.7 0.41,-0.59 0.57,-1.3 0.56,-2.02 -0.01,-0.9 -0.15,-1.8 -0.24,-2.69 -0.05,-0.46 -0.1,-0.91 -0.15,-1.37 -0.03,-0.25 -0.07,-0.5 -0.13,-0.75 -0.02,-0.07 -0.05,-0.14 -0.07,-0.21 0.35,-0.01 0.7,-0.01 1.06,-0.02 0.2,0 0.41,-0.01 0.61,-0.01 0.17,0.08 0.38,0.04 0.55,-0.08 0.15,-0.06 0.28,-0.15 0.41,-0.32 0.15,-0.2 0.08,-0.46 -0.05,-0.65 0.01,-0.4 -0.04,-0.81 -0.06,-1.19 -0.04,-0.65 -0.07,-1.3 -0.11,-1.95 -0.03,-0.63 -0.08,-1.25 -0.12,-1.88 -0.02,-0.31 -0.04,-0.63 -0.08,-0.94 -0.01,-0.07 -0.02,-0.15 -0.03,-0.23 0.16,-0.4 -0.04,-0.96 -0.6,-0.95 -0.83,0 -1.66,0 -2.49,0.02 -0.79,0.01 -1.59,0.01 -2.37,0.1 -0.01,-0.1 -0.01,-0.2 -0.02,-0.31 -0.03,-0.52 -0.05,-1.05 -0.09,-1.57 -0.04,-0.52 -0.02,-1.1 -0.21,-1.59 -0.04,-0.11 -0.12,-0.19 -0.21,-0.24 0,-0.02 0.01,-0.05 0.01,-0.07 -0.01,-0.26 -0.19,-0.58 -0.47,-0.62 -0.45,-0.07 -0.91,-0.04 -1.36,-0.03 -0.41,0.01 -0.83,0.01 -1.24,0.02 -0.1,0 -0.2,0.03 -0.3,0.09 -1.48,-4.62 -2.97,-9.24 -4.39,-13.88 -1.23,-4 -2.42,-8.02 -3.63,-12.03 2.84,-1.2 5.59,-2.63 8.17,-4.31 5.18,-3.37 9.76,-7.66 13.52,-12.56 3.8,-4.96 6.79,-10.51 8.78,-16.43 1.99,-5.91 2.97,-12.15 2.81,-18.39 -0.05,-1.98 -0.23,-3.96 -0.49,-5.93 3.81,-1.61 7.62,-3.22 11.42,-4.84 2.56,-1.08 5.11,-2.18 7.68,-3.25 0.93,-0.39 1.85,-0.77 2.78,-1.16 0.14,0.15 0.3,0.28 0.44,0.37 0.53,0.34 1.16,0.42 1.77,0.33 0.67,-0.1 1.29,-0.4 1.89,-0.71 0.26,-0.13 0.52,-0.26 0.8,-0.34 0.13,0.13 0.27,0.24 0.41,0.32 0.39,0.21 0.85,0.31 1.29,0.31 0.53,0 1.03,-0.16 1.5,-0.37 0.22,-0.1 0.44,-0.22 0.65,-0.34 0.04,-0.02 0.09,-0.05 0.13,-0.08 0.2,0.5 0.81,0.48 1.13,0.14 1.73,-0.32 3.43,-1.04 5.01,-1.79 0.8,-0.38 1.62,-0.78 2.37,-1.24 0.41,-0.25 0.85,-0.55 1.21,-0.9 0.11,0.02 0.24,0.02 0.38,-0.01 0.28,-0.07 0.55,-0.15 0.83,-0.22 0.02,-0.01 0.03,-0.02 0.05,-0.03 0.13,0.02 0.26,-0.01 0.36,-0.11 0.07,-0.08 0.14,-0.16 0.2,-0.25 0.04,-0.06 0.07,-0.13 0.11,-0.2 0.07,-0.11 0.14,-0.22 0.21,-0.33 0.11,-0.13 0.22,-0.25 0.35,-0.35 -0.04,0.03 -0.08,0.06 -0.12,0.09 0.11,-0.08 0.22,-0.16 0.32,-0.25 0.18,-0.08 0.25,-0.27 0.24,-0.39 z m -33.32,-15.97 c -0.01,0.01 -0.01,0.03 -0.02,0.04 -0.02,0.03 -0.04,0.07 -0.06,0.1 0.01,-0.01 0.01,0 0,0.02 0,0 -0.01,0.01 -0.01,0.01 0,0.01 -0.01,0.01 -0.01,0.02 0,-0.01 0,-0.01 0.01,-0.01 -0.01,0.01 -0.02,0.03 -0.03,0.04 -0.01,0.01 -0.03,0.03 -0.04,0.04 -0.03,0.02 -0.07,0.04 -0.1,0.06 -0.01,0 -0.02,0.01 -0.03,0.01 -0.01,0 -0.01,0 -0.02,0.01 -0.05,0.02 -0.09,0.03 -0.14,0.04 -0.01,0 -0.02,0 -0.04,0.01 -0.04,0 -0.08,0.01 -0.12,0 -0.02,0 -0.04,0 -0.06,0 0,0 -0.01,0 -0.01,0 -0.04,-0.01 -0.08,-0.02 -0.11,-0.03 -0.02,-0.01 -0.04,-0.01 -0.06,-0.02 -0.03,-0.02 -0.07,-0.03 -0.1,-0.05 -0.02,-0.01 -0.04,-0.03 -0.06,-0.04 0.01,0 0.01,0 0.01,0.01 -0.02,-0.02 -0.04,-0.04 -0.05,-0.05 0,0 -0.02,-0.01 -0.03,-0.03 0,0 0,0 0,0 -0.01,-0.01 -0.01,-0.01 -0.02,-0.02 0.01,0.01 0.01,0.01 0.01,0.01 -0.01,-0.01 -0.02,-0.03 -0.03,-0.04 -0.01,-0.02 -0.02,-0.04 -0.03,-0.05 -0.01,-0.04 -0.03,-0.09 -0.04,-0.13 -0.01,-0.02 -0.01,-0.05 -0.01,-0.07 0,0.02 0.01,0.02 0.01,0.03 0,0 0,-0.01 0,-0.01 0,-0.06 0,-0.12 0,-0.17 0,-0.01 0,-0.03 0,-0.04 0,-0.01 0,-0.01 0,-0.02 0.01,-0.03 0.02,-0.06 0.02,-0.09 0.02,-0.01 0.03,-0.01 0.05,-0.02 0.09,-0.06 0.18,-0.13 0.26,-0.2 -0.04,0.03 -0.08,0.06 -0.12,0.09 0.06,-0.04 0.12,-0.08 0.19,-0.11 0.08,-0.03 0.16,-0.05 0.24,-0.06 -0.01,0 -0.01,0 -0.02,0 0.02,0 0.05,-0.01 0.07,-0.01 0.01,-0.01 0.03,-0.01 0.04,-0.02 0,0 0.01,0 0.02,-0.01 0.01,0 0.01,-0.01 0.02,-0.01 0.01,0 0.03,0.01 0.04,0.01 0.02,0 0.03,0.01 0.05,0.01 0.01,0 0.01,0 0.01,0 0.03,0.02 0.07,0.03 0.1,0.06 0,0 -0.01,-0.01 -0.01,-0.01 0.01,0.02 0.04,0.03 0.06,0.05 0.02,0.01 0.03,0.03 0.05,0.05 -0.01,-0.01 -0.01,0 0.03,0.03 0,0 0,0 0,0 0,0 -0.01,-0.01 -0.01,-0.01 0.01,0.01 0.01,0.02 0.02,0.02 -0.01,0 -0.01,-0.01 -0.01,-0.01 0.01,0.02 0.03,0.04 0.04,0.07 0.01,0.02 0.02,0.03 0.02,0.05 0,0 0,-0.01 0,-0.01 0,0.01 0,0.01 0.01,0.02 0,0 0,0 0,0 0,0 0,0 0,-0.01 0.01,0.06 0.02,0.06 0.01,0.04 0.01,0.02 0.02,0.04 0.02,0.06 0.01,0.03 0.01,0.05 0.02,0.08 0,0 0,0.01 0.01,0.04 0,0 0,0 0,0 0,0 0,0 0,0 0,0.01 0,0.02 0.01,0.03 0,-0.01 0,-0.01 -0.01,-0.02 0,0.03 0,0.05 0,0.08 0,0.03 -0.02,0.1 0.01,-0.01 0,0.02 -0.01,0.04 -0.01,0.06 -0.02,0.02 -0.03,0.06 -0.04,0.09 -0.01,0.01 -0.01,0.01 -0.01,0.02 0.01,-0.01 0.01,-0.01 0.01,-0.02 z m -2.19,-3.44 c 0.34,0.05 0.62,0.22 0.87,0.44 0.48,0.42 0.9,0.9 1.29,1.4 -0.07,-0.03 -0.13,-0.07 -0.2,-0.09 -0.01,0 -0.03,-0.01 -0.05,-0.01 -0.01,0 -0.01,0 -0.01,0 -0.05,-0.02 -0.1,-0.04 -0.14,-0.06 -0.1,-0.04 -0.21,-0.06 -0.32,-0.05 -0.23,0.02 -0.43,0.07 -0.64,0.17 -0.21,0.1 -0.37,0.24 -0.5,0.43 -0.08,0.12 -0.09,0.28 -0.05,0.42 -0.13,0.31 -0.18,0.63 -0.11,0.96 0.14,0.66 0.76,1.09 1.41,1.11 0.66,0.02 1.27,-0.41 1.44,-1.05 0.05,-0.19 0.06,-0.4 0.04,-0.61 0.39,0.61 0.73,1.24 1.02,1.9 -0.44,0.22 -0.89,0.42 -1.34,0.61 -0.33,0.14 -0.66,0.29 -0.99,0.43 -0.14,0.06 -0.28,0.12 -0.42,0.19 -0.37,-0.87 -0.95,-1.67 -1.53,-2.35 -0.44,-0.52 -0.95,-0.98 -1.5,-1.38 -0.45,-0.33 -1.01,-0.72 -1.58,-0.86 0.03,-0.06 0.06,-0.12 0.1,-0.17 0.02,-0.03 0.04,-0.07 0.07,-0.1 0,-0.01 0.04,-0.05 0.05,-0.07 0.04,-0.06 0.09,-0.11 0.14,-0.16 0.01,-0.01 0.02,-0.02 0.03,-0.04 0.17,0.24 0.4,0.49 0.68,0.46 0.13,-0.01 0.26,-0.09 0.34,-0.19 0.04,0.02 0.07,0.05 0.11,0.07 0.09,0.03 0.18,0.04 0.27,0.04 0.06,0 0.12,0 0.18,0 0.21,-0.02 0.37,-0.06 0.56,-0.15 0.08,-0.03 0.14,-0.09 0.21,-0.14 0.02,0 0.05,0 0.07,-0.01 0.26,-0.08 0.46,-0.36 0.37,-0.64 -0.05,-0.16 -0.11,-0.32 -0.17,-0.49 0.1,-0.01 0.2,-0.03 0.3,-0.01 z m 2.72,6.94 c -0.63,0.26 -1.26,0.53 -1.89,0.8 0,-0.02 0.01,-0.04 0.01,-0.05 0.01,-0.07 0.03,-0.15 0.05,-0.22 0.01,-0.04 0.02,-0.07 0.03,-0.11 0.01,-0.03 0.07,-0.15 0.01,-0.02 0.02,-0.04 0.04,-0.09 0.06,-0.13 0.05,-0.03 0.1,-0.05 0.16,-0.08 0.32,-0.04 0.64,-0.16 0.94,-0.28 0.34,-0.13 0.67,-0.26 1.01,-0.39 0.55,-0.21 1.1,-0.42 1.67,-0.59 0,0.04 0.01,0.08 0.01,0.11 -0.25,0.12 -0.49,0.27 -0.72,0.37 -0.46,0.22 -0.9,0.41 -1.34,0.59 z m -3.35,-1.31 c -0.23,-0.37 -0.49,-0.72 -0.78,-1.06 -0.29,-0.35 -0.62,-0.68 -1.04,-0.87 -0.05,-0.02 -0.09,-0.02 -0.14,-0.03 -0.02,-0.14 -0.03,-0.28 -0.03,-0.43 -0.35,0.15 -0.7,0.31 -1.06,0.46 0,-0.01 -0.01,-0.02 -0.01,-0.03 0.01,-0.14 -0.01,-0.29 -0.01,-0.43 -0.01,-0.18 0,-0.36 0.03,-0.54 0,-0.01 0.01,-0.06 0.01,-0.09 0,-0.02 0.01,-0.07 0.01,-0.08 0.01,-0.07 0.03,-0.13 0.05,-0.2 0.18,0.11 0.37,0.21 0.56,0.32 0.25,0.15 0.5,0.31 0.73,0.49 0.49,0.38 0.94,0.82 1.33,1.3 0.38,0.47 0.66,0.99 0.91,1.54 0.09,0.19 0.15,0.38 0.21,0.58 -0.01,0.03 -0.03,0.06 -0.04,0.1 -0.02,0.08 -0.04,0.16 -0.05,0.25 -0.01,0.03 -0.01,0.06 -0.01,0.09 -0.02,-0.05 -0.04,-0.11 -0.06,-0.16 -0.18,-0.41 -0.37,-0.82 -0.61,-1.21 z m -6.55,-0.39 c -3.55,1.54 -7.1,3.07 -10.65,4.59 -0.45,-0.63 -0.9,-1.26 -1.37,-1.88 0.09,-0.04 0.18,-0.07 0.27,-0.11 2.12,-0.86 4.24,-1.73 6.37,-2.59 1.65,-0.67 3.32,-1.32 4.95,-2.05 0.17,0.31 0.53,0.42 0.84,0.34 0.05,0.08 0.12,0.15 0.2,0.2 0.14,0.09 0.3,0.08 0.45,0.06 0.06,-0.01 0.11,-0.02 0.17,-0.03 0.1,-0.02 0.2,-0.08 0.29,-0.13 l 0.63,-0.3 c 0.1,-0.05 0.22,-0.09 0.31,-0.16 0.04,-0.03 0.07,-0.06 0.11,-0.1 0.01,0.09 0.01,0.18 0.03,0.27 -0.07,0.07 -0.13,0.16 -0.15,0.25 -0.01,0.04 -0.02,0.08 -0.02,0.12 -0.01,0.09 -0.03,0.16 -0.02,0.24 0.01,0.04 0.01,0.09 0.02,0.13 0,0.02 0,0.04 0.01,0.06 -0.8,0.38 -1.62,0.74 -2.44,1.09 z m -33.26,14.26 c 1.04,-1.35 2.08,-2.71 3.12,-4.06 1.97,-0.82 3.93,-1.65 5.9,-2.47 1.98,-0.82 3.97,-1.63 5.96,-2.44 0.53,0.63 1.04,1.27 1.53,1.93 -5.49,2.35 -11,4.7 -16.51,7.04 z m -26.08,10.93 c -0.39,-0.72 -0.78,-1.44 -1.17,-2.17 6.7,-2.87 13.4,-5.71 20.11,-8.53 -1.06,1.38 -2.13,2.75 -3.19,4.13 -5.24,2.2 -10.5,4.39 -15.75,6.57 z m -4.1,1.7 c -0.08,-0.15 -0.16,-0.31 -0.25,-0.46 0.24,-0.06 0.47,-0.13 0.71,-0.19 0.05,0.05 0.1,0.1 0.15,0.15 0.06,0.06 0.13,0.11 0.2,0.16 -0.27,0.11 -0.54,0.22 -0.81,0.34 z m -13.96,5.72 c -1.49,-0.13 -2.97,-0.26 -4.46,-0.39 4.26,-1.85 8.52,-3.71 12.79,-5.54 1.12,-0.48 2.23,-0.95 3.35,-1.43 0.37,0.71 0.73,1.42 1.1,2.13 -4.25,1.75 -8.51,3.5 -12.78,5.23 z m 10.09,-2.34 c 0.03,0.17 0.05,0.33 0.08,0.5 0.01,0.08 0.03,0.16 0.04,0.24 0.02,0.1 0.05,0.18 0.09,0.27 0.01,0.02 0.03,0.02 0.05,0.03 -0.53,0.07 -1.07,0.15 -1.59,0.27 -0.02,-0.15 -0.04,-0.31 -0.07,-0.46 -0.03,-0.16 -0.05,-0.32 -0.08,-0.48 0.08,-0.03 0.15,-0.06 0.23,-0.09 0.41,-0.16 0.81,-0.33 1.21,-0.49 z m 4.5,2.16 c 2.05,-0.12 4.09,-0.22 6.14,-0.27 4.1,-0.1 8.2,0 12.29,0.26 2.24,0.14 4.48,0.34 6.71,0.59 -0.07,0.55 -0.04,1.15 0,1.72 -0.01,-0.02 -0.02,-0.05 -0.04,-0.07 -0.07,-0.12 -0.25,-0.01 -0.19,0.11 0.09,0.17 0.17,0.35 0.26,0.53 0,0.02 0,0.03 0,0.05 0.03,0.91 0.08,1.82 0.1,2.73 0.06,1.88 0.08,3.77 0.06,5.65 -0.02,1.88 -0.09,3.77 -0.23,5.65 -0.07,0.91 -0.14,1.82 -0.2,2.72 -0.03,0.43 -0.06,0.85 -0.09,1.28 -0.64,0.01 -1.29,0.09 -1.94,0.17 -0.02,-0.21 -0.04,-0.43 -0.06,-0.64 -0.01,-0.06 -0.05,-0.11 -0.11,-0.11 -0.06,0 -0.12,0.05 -0.11,0.11 0.02,0.22 0.04,0.45 0.06,0.67 -0.17,0.02 -0.34,0.04 -0.51,0.06 -0.26,0.02 -0.53,0.04 -0.79,0.06 0.02,-0.09 0.01,-0.19 0,-0.28 -0.02,-0.15 -0.04,-0.29 -0.04,-0.43 0.01,-0.33 0.05,-0.65 0.07,-0.98 0.04,-0.64 0.03,-1.28 0.03,-1.92 0,-0.11 -0.16,-0.11 -0.17,0 -0.03,0.64 -0.07,1.28 -0.07,1.92 0,0.31 0.02,0.63 0.02,0.94 0,0.18 -0.04,0.34 -0.07,0.51 -0.02,0.09 -0.02,0.18 -0.01,0.26 -0.55,0.05 -1.09,0.09 -1.64,0.13 0.05,-0.24 -0.02,-0.53 -0.02,-0.77 0,-0.37 0.02,-0.75 0.04,-1.12 0.01,-0.36 0.06,-0.72 0.06,-1.08 0.01,-0.37 0.01,-0.75 0.02,-1.12 0,-0.13 -0.19,-0.13 -0.2,0 -0.01,0.36 -0.03,0.72 -0.04,1.08 -0.01,0.37 0.01,0.75 0,1.12 0,0.36 0,0.72 -0.02,1.08 -0.01,0.25 -0.1,0.57 -0.05,0.83 -0.04,0 -0.08,0.01 -0.12,0.01 -0.47,0.03 -0.93,0.04 -1.4,0.07 0.02,-0.05 0.04,-0.1 0.05,-0.14 0.02,-0.06 -0.05,-0.1 -0.1,-0.07 -0.02,-0.31 -0.07,-0.62 -0.08,-0.92 -0.02,-0.39 -0.02,-0.79 -0.02,-1.18 0,-0.8 0.03,-1.61 0.11,-2.41 0.01,-0.12 -0.18,-0.12 -0.19,0 -0.08,0.82 -0.13,1.64 -0.14,2.46 0,0.41 0.01,0.82 0.02,1.23 0.01,0.34 0,0.71 0.06,1.05 -0.44,0.03 -0.88,0.04 -1.32,0.07 0.01,-0.25 0.02,-0.49 0.03,-0.74 0.03,-0.7 -0.01,-1.41 0,-2.11 0,-0.07 -0.11,-0.07 -0.11,0 -0.03,0.71 -0.1,1.41 -0.1,2.11 0,0.25 -0.01,0.5 -0.01,0.75 -0.05,0 -0.09,0 -0.14,0.01 -0.04,-0.16 -0.08,-0.32 -0.12,-0.48 -0.11,-0.46 -0.23,-0.93 -0.39,-1.37 -0.3,-0.83 -0.69,-1.61 -1.24,-2.29 -0.04,-0.05 -0.09,-0.1 -0.14,-0.15 0.09,-0.08 0.16,-0.19 0.15,-0.31 0,-0.08 -0.11,-0.09 -0.14,-0.02 -0.03,0.08 -0.08,0.14 -0.14,0.2 -0.15,-0.16 -0.31,-0.31 -0.48,-0.46 0.04,-0.05 0.09,-0.08 0.16,-0.1 0.06,-0.01 0.13,-0.01 0.2,0 0.04,0.01 0.06,0.02 0.09,0.04 0.02,0.01 0.02,0.01 0.03,0.02 0.01,0.01 0.01,0.01 0.02,0.02 0,0 0.02,0.03 0.02,0.02 0.03,0.04 0.08,0.06 0.12,0.03 0.04,-0.02 0.06,-0.08 0.03,-0.12 -0.2,-0.26 -0.59,-0.26 -0.81,-0.03 -0.12,-0.09 -0.24,-0.17 -0.36,-0.25 0.06,-0.18 0.12,-0.35 0.17,-0.53 0.01,-0.05 -0.06,-0.08 -0.08,-0.03 -0.08,0.16 -0.15,0.31 -0.23,0.47 -0.37,-0.22 -0.77,-0.4 -1.19,-0.52 0.04,-0.19 0.03,-0.4 0.05,-0.6 0.02,-0.24 0.03,-0.48 0.04,-0.72 0.01,-0.3 0.02,-0.59 0.03,-0.89 0.35,-0.13 0.68,-0.28 1,-0.46 v 0.15 c 0,0.17 0,0.33 -0.01,0.5 0,0.16 -0.02,0.33 0.02,0.49 0.03,0.11 0.18,0.11 0.21,0 0.04,-0.16 0.02,-0.33 0.02,-0.49 0,-0.17 0,-0.33 -0.01,-0.5 v -0.29 c 0.4,-0.25 0.78,-0.53 1.13,-0.85 -0.04,0.54 -0.08,1.07 -0.12,1.61 -0.04,0.62 -0.12,1.27 -0.06,1.9 0.01,0.09 0.15,0.12 0.17,0.02 0.13,-0.61 0.13,-1.26 0.16,-1.88 0.03,-0.62 0.05,-1.24 0.08,-1.86 0.3,-0.31 0.57,-0.65 0.81,-1.01 -0.01,0.4 -0.02,0.79 -0.02,1.19 v 0.88 c 0,0.27 -0.02,0.58 0.04,0.84 0.02,0.08 0.15,0.08 0.17,0 0.07,-0.26 0.04,-0.57 0.04,-0.84 v -0.88 c 0,-0.51 -0.02,-1.01 -0.03,-1.52 0.09,-0.16 0.2,-0.31 0.28,-0.47 1.41,-2.94 0.41,-6.49 -2.16,-8.44 -0.17,-0.13 -0.36,-0.21 -0.53,-0.32 -0.06,-0.19 -0.12,-0.39 -0.18,-0.58 -0.05,-0.15 -0.28,-0.09 -0.24,0.07 0.03,0.11 0.06,0.22 0.09,0.32 -1.28,-0.67 -2.73,-0.9 -4.18,-0.67 -0.3,0.05 -0.6,0.13 -0.9,0.22 -0.01,-0.02 -0.02,-0.03 -0.03,-0.05 -0.02,-0.04 -0.07,-0.05 -0.11,-0.03 -0.04,0.02 -0.05,0.07 -0.03,0.11 0,0.01 0.01,0.01 0.01,0.02 -0.72,0.24 -1.42,0.59 -2.01,1.06 v -0.58 c 0,-0.11 -0.18,-0.11 -0.18,0 v 0.66 c 0,0.02 0,0.05 0.01,0.07 -0.41,0.36 -0.77,0.78 -1.03,1.26 -0.01,0.01 -0.01,0.03 -0.01,0.04 -0.74,0.92 -1.21,2.05 -1.36,3.24 -0.41,3.31 1.81,6.4 4.99,7.3 0.6,0.17 1.22,0.22 1.82,0.2 0.01,0.25 0.02,0.49 0.03,0.74 0.01,0.16 0.01,0.31 0.02,0.47 0.01,0.14 0.01,0.29 0.05,0.43 -0.45,0.05 -0.88,0.15 -1.31,0.29 0,-0.13 0.02,-0.25 0.02,-0.38 0,-0.26 0,-0.52 0,-0.77 0,-0.11 -0.17,-0.11 -0.17,0 0,0.26 0,0.52 0,0.77 0,0.15 0.01,0.29 0.02,0.44 -0.31,0.11 -0.61,0.24 -0.9,0.39 0.02,-0.15 0.02,-0.3 0.02,-0.44 v -0.7 c 0,-0.48 -0.01,-0.96 -0.02,-1.44 0,-0.14 -0.22,-0.14 -0.22,0 -0.01,0.48 -0.02,0.96 -0.02,1.44 v 0.7 c 0,0.18 0,0.38 0.04,0.57 -0.57,0.34 -1.11,0.74 -1.56,1.24 -0.36,0.39 -0.67,0.82 -0.95,1.26 -0.01,-0.25 -0.02,-0.51 -0.03,-0.76 0,-0.1 -0.15,-0.1 -0.15,0 -0.01,0.32 -0.02,0.64 -0.03,0.96 0,0.05 0,0.1 0,0.16 -0.08,0.14 -0.18,0.27 -0.25,0.42 -0.32,0.6 -0.64,1.27 -0.79,1.95 -0.13,-0.01 -0.27,-0.01 -0.4,-0.01 -0.04,-0.35 -0.09,-0.7 -0.12,-1.05 -0.04,-0.57 -0.06,-1.14 -0.05,-1.72 0.01,-1.17 0.11,-2.34 0.29,-3.49 0.02,-0.1 -0.13,-0.14 -0.15,-0.04 -0.22,1.15 -0.35,2.31 -0.37,3.48 -0.01,0.59 0,1.18 0.04,1.76 0.02,0.34 0.05,0.7 0.08,1.05 -0.26,-0.01 -0.51,-0.01 -0.77,-0.02 0.01,-0.4 0,-0.8 0,-1.19 0,-0.59 -0.04,-1.17 -0.05,-1.76 -0.01,-0.57 0.01,-1.14 0.02,-1.71 0.01,-0.6 -0.03,-1.21 -0.03,-1.81 0,-0.06 -0.08,-0.06 -0.09,0 -0.01,0.59 -0.06,1.17 -0.06,1.76 0,0.59 0.02,1.17 0,1.76 -0.02,0.57 -0.07,1.14 -0.07,1.71 -0.01,0.4 -0.03,0.82 -0.02,1.23 -0.14,-0.01 -0.28,-0.01 -0.42,-0.01 -0.13,-0.01 -0.26,-0.02 -0.39,-0.03 0,-0.21 0.01,-0.41 0.01,-0.62 0.02,-0.63 0.01,-1.26 0.01,-1.89 0,-0.11 -0.16,-0.11 -0.17,0 -0.04,0.63 -0.08,1.26 -0.1,1.89 -0.01,0.2 -0.01,0.4 -0.02,0.6 -0.3,-0.02 -0.6,-0.04 -0.89,-0.06 0,-0.09 0,-0.19 0,-0.28 0,-0.21 0,-0.43 0,-0.64 -0.01,-0.43 -0.03,-0.87 -0.04,-1.3 0,-0.09 -0.13,-0.09 -0.14,0 -0.02,0.43 -0.04,0.87 -0.04,1.3 0,0.21 0,0.43 0,0.64 0,0.09 0,0.18 0,0.26 -0.37,-0.03 -0.75,-0.06 -1.12,-0.09 0.04,-0.65 0.03,-1.3 0.04,-1.94 0.02,-0.85 0.01,-1.71 0,-2.56 0,-0.1 -0.15,-0.1 -0.15,0 -0.04,0.85 -0.1,1.71 -0.12,2.56 -0.02,0.63 -0.05,1.28 -0.05,1.92 -0.4,-0.03 -0.8,-0.05 -1.2,-0.08 0.03,-0.42 -0.07,-0.87 -0.09,-1.28 -0.02,-0.45 0.01,-0.89 0.04,-1.34 0.07,-0.91 0.14,-1.82 0.29,-2.72 0.02,-0.15 -0.2,-0.21 -0.23,-0.06 -0.16,0.9 -0.29,1.82 -0.3,2.74 -0.01,0.46 0.02,0.92 0.02,1.39 0,0.4 -0.04,0.86 0.05,1.27 -0.32,-0.02 -0.64,-0.03 -0.97,-0.05 -0.02,-0.63 -0.04,-1.27 -0.03,-1.9 0.02,-0.92 0.03,-1.84 0.01,-2.76 0,-0.13 -0.2,-0.13 -0.2,0 -0.02,0.92 0,1.84 0.01,2.76 0.01,0.63 -0.01,1.26 -0.03,1.89 -0.13,0 -0.26,-0.01 -0.39,-0.01 -0.07,-0.63 -0.16,-1.27 -0.23,-1.9 -0.09,-0.9 -0.17,-1.79 -0.25,-2.69 -0.16,-1.86 -0.31,-3.72 -0.36,-5.58 -0.05,-1.86 -0.06,-3.73 -0.03,-5.59 0.01,-0.9 0.04,-1.8 0.07,-2.7 0.03,-0.79 0.07,-1.6 0.02,-2.4 1.97,-0.02 3.95,-0.31 5.9,-0.42 z m 31.16,10.45 c 0.8,0.08 1.6,0.15 2.4,0.23 7.1,0.67 14.21,1.26 21.31,1.95 0.28,0.03 0.49,-0.1 0.63,-0.29 -0.93,5.22 -2.72,10.26 -5.26,14.91 -2.62,4.79 -5.99,9.16 -10,12.87 -2.4,2.22 -5.03,4.19 -7.83,5.88 -0.3,-0.68 -0.62,-1.34 -1.06,-1.95 -0.5,-0.7 -0.92,-1.42 -1.35,-2.17 -0.77,-1.35 -1.52,-2.72 -2.27,-4.09 -1.53,-2.79 -3.07,-5.57 -4.6,-8.36 -0.37,-0.67 -0.73,-1.34 -1.09,-2.01 0.28,-0.87 0.68,-1.69 1.18,-2.46 0.54,-0.85 1.19,-1.66 1.9,-2.39 0.03,-0.01 0.05,-0.01 0.08,-0.02 0.24,0.18 0.54,0.24 0.82,0.08 0.54,-0.32 0.55,-0.83 0.59,-1.4 0.03,-0.45 0.06,-0.91 0.08,-1.36 0.05,-0.97 0.07,-1.94 0.08,-2.92 0.01,-1.55 0.01,-3.09 0.01,-4.64 1.46,-0.63 2.92,-1.25 4.38,-1.86 z m 4.68,-1.98 c -0.01,0.05 -0.02,0.1 -0.03,0.15 -0.03,0.18 -0.06,0.36 -0.09,0.54 -0.01,0.07 -0.02,0.14 -0.03,0.22 -0.55,-0.05 -1.09,-0.1 -1.64,-0.15 0.6,-0.26 1.19,-0.51 1.79,-0.76 z m 20.11,-8.51 c 0.2,2.07 0.27,4.16 0.19,6.24 -0.09,-0.11 -0.22,-0.19 -0.38,-0.22 -0.77,-0.13 -1.53,-0.23 -2.32,-0.2 -0.86,0.03 -1.69,-0.01 -2.55,-0.06 -1.56,-0.09 -3.11,-0.22 -4.66,-0.34 -0.87,-0.07 -1.75,-0.13 -2.62,-0.2 4.11,-1.74 8.22,-3.48 12.34,-5.22 z m -0.34,11.7 c -0.07,-0.2 -0.22,-0.36 -0.51,-0.39 -0.19,-0.02 -0.37,-0.04 -0.56,-0.05 0.02,-0.01 0.05,0 0.07,-0.03 0.05,-0.08 0.08,-0.17 0.11,-0.27 0.16,0.01 0.32,0.01 0.48,-0.02 0.09,-0.01 0.12,-0.14 0.02,-0.17 -0.14,-0.04 -0.28,-0.07 -0.42,-0.09 0.02,-0.07 0.04,-0.15 0.05,-0.22 0.07,-0.28 0.13,-0.57 0.19,-0.85 0.02,-0.1 0.05,-0.21 0.07,-0.31 0.13,0.02 0.27,0.03 0.4,0.03 0.08,0 0.09,-0.12 0.02,-0.14 -0.12,-0.03 -0.25,-0.05 -0.38,-0.06 0.04,-0.2 0.09,-0.4 0.13,-0.59 0.24,0.01 0.48,0.01 0.72,-0.03 -0.09,1.08 -0.22,2.14 -0.39,3.19 z m -19.49,-2.98 c 0.02,-0.11 0.04,-0.22 0.05,-0.33 0.37,0.01 0.74,0.02 1.11,0.04 0,0.02 -0.01,0.04 -0.01,0.07 -0.03,0.18 -0.06,0.36 -0.08,0.54 -0.02,0.17 -0.07,0.36 -0.03,0.52 -0.33,-0.03 -0.67,-0.07 -1,-0.1 -0.05,-0.01 -0.11,-0.01 -0.16,-0.02 0.01,-0.06 0.03,-0.12 0.04,-0.18 0.03,-0.18 0.05,-0.36 0.08,-0.54 z m 17.18,0.96 c 0.03,-0.19 0.06,-0.39 0.09,-0.58 0.06,0.01 0.11,0.01 0.17,0.02 0.32,0.04 0.64,0.08 0.96,0.12 0.1,0.01 0.2,0.03 0.3,0.04 -0.02,0.09 -0.04,0.18 -0.07,0.26 -0.07,0.27 -0.14,0.54 -0.2,0.81 -0.02,0.1 -0.04,0.2 -0.06,0.3 -0.07,-0.01 -0.14,-0.01 -0.21,-0.02 l -0.99,-0.08 c -0.04,0 -0.08,-0.01 -0.11,-0.01 0.01,-0.04 0.01,-0.08 0.02,-0.12 0.02,-0.24 0.06,-0.49 0.1,-0.74 z m 1.16,-1.22 c 0.18,0.03 0.36,0.04 0.54,0.06 -0.05,0.19 -0.1,0.39 -0.14,0.58 -0.09,-0.01 -0.18,-0.02 -0.26,-0.03 -0.33,-0.04 -0.66,-0.08 -0.99,-0.13 -0.06,-0.01 -0.12,-0.02 -0.18,-0.02 0.04,-0.22 0.07,-0.44 0.11,-0.67 0.29,0.09 0.6,0.16 0.92,0.21 z m -1.64,2.38 c -0.01,0.08 -0.01,0.17 -0.01,0.25 -1.41,-0.13 -2.82,-0.27 -4.24,-0.41 0.24,0.01 0.47,0.02 0.71,0.03 1.17,0.05 2.36,0.15 3.54,0.13 z m 0.3,-0.01 c 0.01,0 0.02,0 0.02,0 0.03,0 0.06,0.01 0.09,0.01 0.32,0.03 0.64,0.06 0.96,0.09 0.08,0.01 0.16,0.01 0.23,0.02 -0.01,0.08 -0.03,0.16 -0.02,0.23 0,0.04 0.03,0.05 0.06,0.07 -0.47,-0.04 -0.95,-0.09 -1.42,-0.14 0.04,-0.09 0.07,-0.18 0.08,-0.28 z m 2.9,-2.5 c -0.01,0 -0.01,-0.01 -0.01,-0.01 -0.22,-0.02 -0.44,-0.03 -0.66,-0.04 0.02,-0.11 0.05,-0.21 0.07,-0.32 0.04,-0.17 -0.22,-0.24 -0.26,-0.07 -0.03,0.12 -0.06,0.25 -0.09,0.37 -0.21,-0.01 -0.42,-0.03 -0.63,-0.06 -0.51,-0.08 -1.01,-0.21 -1.49,-0.39 -0.16,-0.06 -0.23,0.2 -0.07,0.26 0.12,0.04 0.24,0.07 0.36,0.11 l -0.11,0.71 c -0.51,-0.06 -1.01,-0.13 -1.52,-0.19 -0.12,-0.02 -0.12,0.17 0,0.19 0.07,0.01 0.13,0.02 0.2,0.02 -0.03,0.19 -0.05,0.37 -0.08,0.56 -0.01,0.1 -0.03,0.2 -0.04,0.3 -0.01,0.1 -0.03,0.2 -0.01,0.31 0.02,0.09 0.15,0.1 0.19,0.03 0.05,-0.09 0.06,-0.19 0.07,-0.29 0.02,-0.1 0.03,-0.19 0.04,-0.29 0.03,-0.19 0.06,-0.39 0.08,-0.58 0,0 0,-0.01 0,-0.01 0.35,0.04 0.69,0.08 1.04,0.13 l -0.09,0.57 c -0.04,0.26 -0.08,0.53 -0.12,0.79 -0.01,0.04 -0.01,0.07 -0.02,0.11 -0.53,-0.04 -1.05,-0.08 -1.58,-0.12 -0.08,-0.01 -0.12,0.05 -0.12,0.11 -0.43,-0.02 -0.87,-0.03 -1.3,-0.05 -1.21,-0.06 -2.42,-0.11 -3.63,-0.17 -0.88,-0.04 -1.76,-0.07 -2.64,-0.11 -2.08,-0.21 -4.17,-0.42 -6.25,-0.62 0.09,-0.14 0.1,-0.32 0.13,-0.48 0.03,-0.18 0.06,-0.36 0.09,-0.54 0.01,-0.04 0.01,-0.08 0.02,-0.12 0.35,0.01 0.7,0.02 1.04,0.04 l -0.07,0.26 c -0.06,0.2 -0.17,0.45 -0.14,0.67 0.01,0.08 0.14,0.12 0.19,0.05 0.13,-0.17 0.16,-0.44 0.22,-0.64 0.03,-0.11 0.06,-0.21 0.09,-0.32 0.3,0.01 0.59,0.03 0.89,0.05 0,0.01 0,0.02 0,0.02 -0.03,0.22 -0.08,0.48 -0.02,0.7 0.04,0.13 0.21,0.12 0.25,0 0.07,-0.2 0.05,-0.44 0.08,-0.65 0,-0.02 0.01,-0.04 0.01,-0.05 0.42,0.03 0.85,0.05 1.27,0.08 -0.01,0.05 -0.03,0.1 -0.04,0.14 -0.04,0.15 -0.08,0.3 -0.11,0.45 -0.04,0.15 -0.09,0.3 -0.09,0.45 0.01,0.13 0.17,0.17 0.24,0.06 0.08,-0.13 0.12,-0.29 0.16,-0.43 0.04,-0.14 0.09,-0.27 0.13,-0.41 0.02,-0.08 0.04,-0.16 0.07,-0.24 0.53,0.04 1.07,0.08 1.6,0.13 0.05,0.07 0.15,0.09 0.21,0.02 0.38,0.04 0.76,0.08 1.14,0.12 -0.01,0.02 -0.01,0.04 -0.02,0.06 -0.07,0.17 -0.18,0.36 -0.18,0.55 0,0.1 0.14,0.17 0.21,0.09 0.12,-0.14 0.17,-0.35 0.24,-0.52 0.02,-0.05 0.04,-0.09 0.05,-0.14 0.37,0.04 0.74,0.08 1.1,0.12 -0.01,0.05 -0.03,0.11 -0.04,0.16 -0.02,0.08 -0.04,0.16 -0.07,0.24 -0.02,0.08 -0.06,0.16 -0.02,0.24 0.03,0.06 0.11,0.12 0.18,0.07 0.13,-0.09 0.14,-0.3 0.18,-0.44 0.02,-0.08 0.04,-0.16 0.06,-0.24 0.36,0.05 0.72,0.09 1.08,0.14 0,0.02 -0.01,0.03 -0.01,0.05 -0.03,0.18 -0.07,0.4 -0.02,0.58 0.04,0.11 0.19,0.11 0.23,0 0.06,-0.17 0.05,-0.37 0.08,-0.54 0,-0.02 0.01,-0.03 0.01,-0.05 0.04,0.01 0.07,0.01 0.11,0.01 0.26,0.04 0.51,0.07 0.76,0.11 0.08,0.01 0.16,0.03 0.24,0.04 0,0.01 0,0.02 -0.01,0.02 -0.07,0.22 -0.15,0.45 -0.17,0.68 -0.01,0.13 0.18,0.17 0.24,0.06 0.11,-0.2 0.16,-0.44 0.22,-0.67 0.01,-0.02 0.01,-0.05 0.02,-0.07 0.06,0 0.11,0.01 0.17,0.01 0.17,-0.01 0.19,-0.23 0.04,-0.29 -0.04,-0.01 -0.08,-0.02 -0.12,-0.03 0.03,-0.09 0.05,-0.18 0.08,-0.26 0.13,-0.44 0.26,-0.89 0.39,-1.33 0.05,-0.18 -0.23,-0.26 -0.28,-0.08 -0.13,0.44 -0.26,0.89 -0.39,1.33 -0.03,0.09 -0.05,0.18 -0.08,0.28 -0.3,-0.06 -0.62,-0.09 -0.91,-0.14 -0.07,-0.01 -0.15,-0.02 -0.22,-0.03 0.01,-0.05 0.02,-0.1 0.03,-0.15 0.11,-0.35 0.26,-0.68 0.46,-0.99 0.1,-0.16 -0.15,-0.31 -0.25,-0.15 -0.21,0.33 -0.38,0.69 -0.49,1.06 -0.02,0.06 -0.03,0.12 -0.04,0.19 -0.26,-0.04 -0.52,-0.07 -0.79,-0.11 -0.09,-0.01 -0.18,-0.02 -0.27,-0.03 0.08,-0.28 0.15,-0.56 0.23,-0.84 0.05,-0.18 -0.22,-0.25 -0.27,-0.08 l -0.24,0.88 c -0.36,-0.04 -0.71,-0.08 -1.07,-0.12 0.01,-0.02 0.02,-0.05 0.03,-0.07 0.12,-0.31 0.24,-0.63 0.36,-0.94 0.62,0.07 1.24,0.14 1.86,0.13 0.1,0 0.13,-0.16 0.02,-0.18 -0.62,-0.14 -1.27,-0.21 -1.9,-0.28 -0.02,-0.01 -0.03,0 -0.05,-0.01 -0.02,0 -0.05,-0.01 -0.07,-0.01 -0.42,-0.05 -0.83,-0.09 -1.25,-0.14 0.07,-0.24 0.15,-0.48 0.22,-0.73 0.23,0.02 0.47,0.04 0.7,0.06 1.75,0.14 3.49,0.26 5.24,0.42 0.9,0.08 1.82,0.11 2.7,0.3 0.91,0.2 1.78,0.24 2.7,0.23 0.16,0 0.28,-0.06 0.38,-0.14 -0.04,0.4 -0.05,0.74 -0.08,1.08 z m -11.19,0.28 c -0.24,-0.03 -0.47,-0.06 -0.71,-0.08 -0.14,-0.01 -0.28,-0.02 -0.42,-0.04 0.11,-0.3 0.21,-0.61 0.3,-0.91 0.01,-0.03 0.02,-0.07 0.03,-0.1 0.39,0.04 0.79,0.09 1.18,0.13 -0.11,0.29 -0.22,0.58 -0.34,0.87 -0.01,0.04 -0.03,0.09 -0.04,0.13 z m -1.16,-1.15 c -0.11,0.33 -0.22,0.66 -0.3,1 -0.51,-0.05 -1.02,-0.09 -1.53,-0.13 0.03,-0.11 0.06,-0.23 0.09,-0.34 0.07,-0.24 0.13,-0.48 0.2,-0.72 0.37,0.04 0.73,0.08 1.1,0.12 0.15,0.02 0.29,0.03 0.44,0.05 0,0.01 0,0.01 0,0.02 z m -3.11,-0.37 c 0.42,0.05 0.84,0.09 1.25,0.14 -0.07,0.22 -0.13,0.45 -0.2,0.67 -0.04,0.13 -0.08,0.27 -0.12,0.4 -0.44,-0.03 -0.87,-0.05 -1.31,-0.07 0.02,-0.09 0.03,-0.18 0.05,-0.27 0.08,-0.3 0.21,-0.59 0.33,-0.87 z m 2.72,-0.01 c -0.36,-0.04 -0.71,-0.08 -1.07,-0.11 0.06,-0.23 0.12,-0.45 0.18,-0.68 0.53,0.04 1.07,0.09 1.6,0.13 -0.08,0.24 -0.15,0.48 -0.23,0.71 -0.15,-0.02 -0.31,-0.04 -0.48,-0.05 z m -1.19,-0.82 c -0.07,0.22 -0.13,0.45 -0.2,0.67 -0.41,-0.04 -0.82,-0.09 -1.24,-0.13 0.01,-0.03 0.02,-0.06 0.03,-0.09 0.05,-0.1 -0.01,-0.18 -0.09,-0.22 0.23,-0.1 0.47,-0.2 0.7,-0.3 0.28,0.03 0.54,0.05 0.8,0.07 z m -1.76,0.5 c -0.1,-0.01 -0.2,-0.02 -0.29,-0.03 0.12,-0.05 0.25,-0.11 0.37,-0.16 -0.03,0.07 -0.05,0.13 -0.08,0.19 z m -0.85,0.21 c 0.24,0.03 0.48,0.05 0.72,0.08 -0.11,0.27 -0.2,0.55 -0.27,0.83 -0.03,0.11 -0.04,0.22 -0.06,0.33 -0.29,-0.01 -0.57,-0.03 -0.86,-0.05 l 0.3,-1.13 c 0.06,-0.01 0.12,-0.04 0.17,-0.06 z m -0.49,0.21 c -0.08,0.31 -0.17,0.61 -0.25,0.92 l -0.02,0.06 c 0,0 0,0 0,0 -0.36,-0.01 -0.72,-0.01 -1.08,-0.02 0.02,-0.14 0.04,-0.28 0.07,-0.41 0.42,-0.19 0.85,-0.37 1.28,-0.55 z m -1.66,0.95 c -0.19,0 -0.38,-0.01 -0.57,-0.01 0.2,-0.09 0.41,-0.17 0.61,-0.26 -0.01,0.09 -0.03,0.18 -0.04,0.27 z m -14.92,22.36 c -0.08,0.06 -0.16,0.13 -0.24,0.19 -0.02,-0.04 -0.05,-0.08 -0.07,-0.11 -0.14,-0.48 -0.29,-0.95 -0.43,-1.43 0.25,0.45 0.49,0.9 0.74,1.35 z m 3.35,9.81 c 0.09,0.18 0.17,0.37 0.25,0.55 -0.03,0.02 -0.07,0.05 -0.1,0.07 -0.21,0.15 -0.42,0.29 -0.63,0.44 -0.12,-0.39 -0.23,-0.79 -0.35,-1.18 0.01,0 0.02,0 0.04,0 0.2,-0.1 0.39,-0.21 0.57,-0.32 0.08,0.14 0.15,0.29 0.22,0.44 z m 0.45,0.97 c 0.09,0.22 0.19,0.44 0.3,0.66 -0.17,0.13 -0.34,0.25 -0.51,0.38 -0.11,0.08 -0.22,0.17 -0.33,0.25 -0.01,0 -0.01,0.01 -0.02,0.01 -0.09,-0.3 -0.18,-0.61 -0.27,-0.91 0.24,-0.16 0.48,-0.33 0.72,-0.49 0.02,-0.01 0.04,-0.03 0.06,-0.04 0.01,0.06 0.03,0.1 0.05,0.14 z m 0.45,2.17 c 0,0 0.01,-0.01 0.01,-0.01 0.16,0.28 0.33,0.56 0.5,0.84 -0.07,0.06 -0.14,0.12 -0.21,0.18 -0.09,0.08 -0.18,0.15 -0.27,0.23 -0.15,-0.31 -0.31,-0.61 -0.46,-0.92 0.14,-0.1 0.29,-0.21 0.43,-0.32 z m -2.95,-10.24 c -0.01,0.01 -0.02,0.02 -0.03,0.03 -0.1,-0.17 -0.2,-0.34 -0.3,-0.51 0.06,-0.06 0.1,-0.13 0.15,-0.19 0.12,0.22 0.24,0.44 0.36,0.67 -0.06,-0.05 -0.13,-0.04 -0.18,0 z m -0.31,0.26 c -0.1,0.08 -0.19,0.17 -0.29,0.25 -0.02,0.02 -0.04,0.04 -0.06,0.05 -0.06,-0.22 -0.13,-0.45 -0.19,-0.67 0.03,-0.02 0.07,-0.02 0.1,-0.04 0.05,-0.03 0.1,-0.07 0.15,-0.11 0.09,0.17 0.19,0.35 0.29,0.52 z m 2.27,3.01 c -0.02,0.02 -0.05,0.04 -0.07,0.06 -0.04,-0.08 -0.09,-0.15 -0.13,-0.23 -0.05,-0.08 -0.09,-0.16 -0.14,-0.24 0.03,-0.02 0.06,-0.04 0.08,-0.06 0.09,0.15 0.17,0.31 0.26,0.47 z m -0.5,0 c 0.05,0.09 0.11,0.17 0.16,0.26 -0.24,0.18 -0.48,0.37 -0.72,0.55 -0.02,0.01 -0.04,0.03 -0.05,0.04 -0.1,-0.17 -0.19,-0.34 -0.29,-0.51 0.23,-0.15 0.45,-0.31 0.67,-0.47 0.04,-0.03 0.08,-0.06 0.11,-0.08 0.03,0.07 0.08,0.14 0.12,0.21 z m -0.74,2.01 c -0.06,-0.2 -0.12,-0.4 -0.18,-0.6 0.06,-0.05 0.13,-0.1 0.19,-0.15 0.1,0.18 0.21,0.36 0.31,0.54 -0.09,0.06 -0.18,0.11 -0.27,0.17 -0.02,0.01 -0.04,0.03 -0.05,0.04 z m -0.36,-1.18 c -0.03,-0.11 -0.06,-0.21 -0.09,-0.32 0.01,0 0.02,0 0.03,0 0.1,0.17 0.2,0.35 0.3,0.53 -0.05,0.04 -0.09,0.07 -0.14,0.11 -0.03,-0.11 -0.07,-0.22 -0.1,-0.32 z m 0.93,0.81 c -0.1,-0.19 -0.22,-0.38 -0.33,-0.56 0.03,-0.02 0.05,-0.04 0.08,-0.06 0.23,-0.18 0.46,-0.36 0.7,-0.54 0.1,0.16 0.2,0.32 0.3,0.49 0.03,0.05 0.06,0.1 0.09,0.15 -0.28,0.16 -0.56,0.34 -0.84,0.52 z m -0.22,-1.98 c -0.22,0.16 -0.43,0.32 -0.64,0.49 -0.15,-0.24 -0.3,-0.48 -0.45,-0.71 0.16,-0.11 0.31,-0.21 0.47,-0.32 0.11,-0.08 0.23,-0.16 0.34,-0.24 0.14,0.23 0.27,0.46 0.41,0.7 -0.04,0.01 -0.09,0.04 -0.13,0.08 z m -0.83,-0.87 c -0.13,0.09 -0.26,0.17 -0.39,0.26 -0.06,-0.2 -0.12,-0.41 -0.18,-0.61 0.2,-0.14 0.4,-0.29 0.6,-0.44 v 0 c 0.11,0.19 0.22,0.37 0.33,0.56 -0.12,0.07 -0.24,0.15 -0.36,0.23 z m -0.16,-1 c -0.16,0.13 -0.32,0.26 -0.48,0.39 -0.06,-0.2 -0.11,-0.39 -0.17,-0.59 0.06,-0.05 0.12,-0.1 0.18,-0.15 0.08,-0.07 0.16,-0.13 0.23,-0.2 0.1,0.17 0.19,0.34 0.29,0.51 -0.02,0.01 -0.04,0.02 -0.05,0.04 z m 2.34,9.93 c 0.11,0.23 0.23,0.46 0.34,0.68 -0.04,0.03 -0.07,0.06 -0.11,0.1 -0.07,-0.26 -0.15,-0.52 -0.23,-0.78 z m -1.27,-4.25 c -0.12,-0.4 -0.24,-0.79 -0.35,-1.19 0.04,-0.02 0.08,-0.05 0.11,-0.07 0.09,-0.05 0.17,-0.11 0.26,-0.16 0.18,0.34 0.35,0.7 0.52,1.05 -0.18,0.11 -0.37,0.24 -0.54,0.37 z m 0.28,-1.59 c 0.28,-0.18 0.57,-0.36 0.85,-0.54 0.12,0.2 0.25,0.39 0.4,0.57 0.06,0.07 0.18,0 0.15,-0.09 -0.13,-0.34 -0.32,-0.67 -0.5,-0.98 -0.11,-0.19 -0.22,-0.38 -0.33,-0.58 0.02,-0.02 0.05,-0.04 0.07,-0.05 0.14,0.25 0.27,0.5 0.41,0.75 0.22,0.41 0.44,0.81 0.66,1.22 -0.3,0.19 -0.6,0.38 -0.91,0.57 -0.1,0.06 -0.2,0.12 -0.3,0.18 -0.16,-0.34 -0.32,-0.7 -0.5,-1.05 z m 0.05,-2.52 c -0.13,-0.23 -0.27,-0.46 -0.4,-0.69 0.04,-0.03 0.07,-0.05 0.11,-0.08 0.13,0.23 0.26,0.47 0.38,0.7 -0.03,0.02 -0.06,0.04 -0.09,0.07 z m -0.57,-1 c -0.11,-0.19 -0.21,-0.37 -0.32,-0.56 -0.01,-0.01 -0.01,-0.02 -0.02,-0.04 l 0.13,-0.1 c 0.11,0.21 0.22,0.41 0.33,0.62 -0.04,0.03 -0.08,0.05 -0.12,0.08 z m -0.49,-0.84 c -0.1,-0.17 -0.21,-0.35 -0.31,-0.52 0.03,-0.02 0.06,-0.05 0.08,-0.07 0.03,-0.03 0.04,-0.06 0.04,-0.1 0.11,0.2 0.21,0.39 0.32,0.59 -0.04,0.03 -0.09,0.07 -0.13,0.1 z m -0.89,-1.5 c -0.13,-0.22 -0.27,-0.45 -0.4,-0.67 0.07,-0.06 0.13,-0.12 0.2,-0.18 0.12,0.22 0.24,0.44 0.36,0.66 -0.05,0.06 -0.1,0.13 -0.16,0.19 z m -0.55,-0.93 c -0.11,-0.18 -0.21,-0.36 -0.32,-0.53 0,0 0,0 0,0 0.07,-0.07 0.14,-0.13 0.22,-0.2 0.1,0.19 0.2,0.37 0.3,0.56 -0.06,0.05 -0.13,0.11 -0.2,0.17 z m -0.11,0.49 c 0.13,0.23 0.26,0.45 0.39,0.68 -0.05,0.03 -0.09,0.07 -0.14,0.1 -0.02,0.01 -0.03,0.02 -0.05,0.03 -0.08,-0.26 -0.15,-0.52 -0.23,-0.79 0.01,-0.01 0.02,-0.01 0.03,-0.02 z m 6.55,15.78 c -0.05,-0.06 -0.14,-0.08 -0.2,-0.04 -0.25,0.17 -0.5,0.33 -0.74,0.5 -0.01,0 -0.01,0.01 -0.02,0.01 -0.1,0.05 -0.2,0.09 -0.29,0.13 -0.37,-0.69 -0.73,-1.39 -1.09,-2.08 -0.1,-0.35 -0.21,-0.7 -0.31,-1.05 0,0 0,0 0,0 0.05,-0.04 0.1,-0.09 0.15,-0.14 0.04,0.08 0.08,0.16 0.12,0.23 0.13,0.25 0.25,0.51 0.37,0.77 -0.04,0.03 -0.07,0.07 -0.1,0.11 -0.04,0.07 -0.09,0.15 -0.06,0.23 0.05,0.16 0.22,0.08 0.33,0 0.14,0.28 0.29,0.54 0.46,0.79 0,0.05 -0.03,0.09 -0.02,0.13 0.01,0.08 0.07,0.17 0.16,0.16 0.09,0 0.16,-0.07 0.16,-0.16 0,-0.02 0,-0.05 0,-0.07 0,-0.01 0,-0.02 0,-0.02 0,-0.02 0.01,-0.05 0.01,-0.07 -0.01,0.04 0,0 0,-0.01 0,-0.01 0.01,-0.03 0.01,-0.04 0.01,-0.03 0.01,-0.05 0.02,-0.08 0,-0.01 0.01,-0.03 0.01,-0.04 0,-0.01 0,0 0,-0.01 0,0 0,0 0,0 0.01,-0.02 0.02,-0.05 0.04,-0.07 0.01,-0.02 0.03,-0.05 0.04,-0.07 0.01,-0.01 0.02,-0.02 0.02,-0.03 0,0 0,0 0,-0.01 0,0 0,0 0.01,-0.01 0.04,-0.04 0.07,-0.08 0.11,-0.12 0.01,-0.01 0.02,-0.02 0.03,-0.03 -0.02,0.02 0.01,0 0.01,-0.01 0.02,-0.02 0.05,-0.03 0.07,-0.04 0.02,-0.01 0.05,-0.03 0.07,-0.04 0,0 0.04,-0.02 0.02,-0.01 -0.01,0.01 0.02,-0.01 0.03,-0.01 0.05,-0.02 0.11,-0.03 0.17,-0.04 0.07,-0.01 0.11,-0.1 0.1,-0.16 -0.01,-0.07 -0.07,-0.13 -0.14,-0.13 -0.27,0.03 -0.52,0.16 -0.7,0.36 -0.07,0.08 -0.13,0.18 -0.17,0.28 -0.1,-0.23 -0.19,-0.46 -0.3,-0.69 0.15,-0.15 0.29,-0.3 0.44,-0.45 0.23,-0.24 0.46,-0.47 0.69,-0.71 0.15,-0.15 -0.08,-0.38 -0.23,-0.23 -0.36,0.35 -0.72,0.7 -1.07,1.05 -0.11,-0.2 -0.21,-0.4 -0.31,-0.6 -0.06,-0.12 -0.12,-0.25 -0.19,-0.37 0.08,-0.08 0.17,-0.15 0.25,-0.22 0.08,-0.07 0.16,-0.14 0.24,-0.21 0,0 0.01,0.01 0.01,0.01 0.04,0.07 0.14,0.01 0.11,-0.06 -0.01,-0.01 -0.01,-0.03 -0.02,-0.04 0.13,-0.11 0.25,-0.23 0.38,-0.34 0.14,-0.13 -0.06,-0.32 -0.2,-0.2 -0.11,0.09 -0.21,0.18 -0.32,0.28 -0.15,-0.28 -0.31,-0.56 -0.47,-0.84 0,0 -0.01,0 -0.01,-0.01 0.29,-0.22 0.57,-0.44 0.86,-0.66 0.13,-0.1 -0.04,-0.34 -0.18,-0.24 -0.34,0.25 -0.68,0.49 -1.02,0.74 -0.13,0.09 -0.25,0.18 -0.38,0.28 -0.04,-0.07 -0.07,-0.14 -0.11,-0.21 -0.07,-0.14 -0.15,-0.29 -0.22,-0.43 0.01,-0.01 0.02,-0.02 0.03,-0.03 0.11,-0.08 0.23,-0.17 0.34,-0.25 0.17,-0.12 0.33,-0.25 0.5,-0.37 0.02,0.04 0.04,0.08 0.06,0.12 0.04,0.07 0.15,0.02 0.13,-0.06 -0.01,-0.06 -0.03,-0.11 -0.05,-0.17 0.01,-0.01 0.02,-0.01 0.03,-0.02 0.06,-0.04 0.08,-0.11 0.05,-0.17 -0.03,-0.04 -0.09,-0.06 -0.14,-0.05 -0.09,-0.28 -0.19,-0.56 -0.31,-0.83 0.25,-0.18 0.51,-0.35 0.76,-0.53 0.16,-0.11 0.01,-0.39 -0.16,-0.27 -0.24,0.17 -0.49,0.34 -0.73,0.51 -0.07,-0.15 -0.14,-0.3 -0.2,-0.45 -0.08,-0.18 -0.18,-0.35 -0.26,-0.53 0.11,-0.07 0.22,-0.14 0.33,-0.21 l 0.88,-0.55 c 0.57,1.04 1.15,2.07 1.7,3.12 0.42,0.8 0.91,1.58 1.23,2.43 0.32,0.83 0.74,1.55 1.23,2.28 -0.69,0.37 -1.36,0.73 -2.05,1.07 z m -2.35,-37.16 c -0.01,-1.34 -0.04,-2.67 -0.08,-4.01 0.01,0.04 0.03,0.08 0.04,0.11 0.22,0.74 0.38,1.51 0.5,2.27 0.07,0.4 0.12,0.8 0.16,1.21 0,0.05 0.01,0.1 0.01,0.15 -0.22,0.09 -0.43,0.18 -0.63,0.27 z m -21.69,9.71 c 0.32,-0.59 0.69,-1.16 1.14,-1.66 0.58,-0.65 1.31,-1.17 2.11,-1.5 -0.19,0.16 -0.36,0.33 -0.49,0.55 -0.16,0.27 -0.22,0.58 -0.2,0.89 0,0.02 0.01,0.04 0.01,0.06 -0.08,0.45 0.01,0.92 0.21,1.33 0.23,0.46 0.73,0.77 1.2,0.92 0.46,0.14 0.99,0.15 1.45,0 0.49,-0.16 0.94,-0.5 1.19,-0.96 0.22,-0.4 0.28,-0.91 0.23,-1.35 -0.06,-0.51 -0.26,-0.97 -0.6,-1.36 -0.15,-0.16 -0.33,-0.28 -0.52,-0.38 0.96,0.2 1.78,0.76 2.36,1.64 0.4,0.6 0.66,1.25 0.87,1.94 0.12,0.39 0.19,0.8 0.28,1.21 -0.42,0.02 -0.84,0.05 -1.26,0.06 -2.87,0.08 -5.73,0.05 -8.6,-0.03 0.21,-0.45 0.39,-0.92 0.62,-1.36 z m 0.13,-16.84 c 1.09,-1.11 2.72,-1.67 4.27,-1.57 0.16,0.01 0.27,-0.08 0.34,-0.19 0.63,0.05 1.25,0.21 1.81,0.49 2.23,1.1 3.57,3.8 2.91,6.23 -0.65,2.39 -2.98,4.18 -5.47,4.05 -2.58,-0.14 -4.89,-2.1 -5.23,-4.69 -0.21,-1.56 0.27,-3.2 1.37,-4.32 z m 6.17,10.12 -0.03,0.8 c -0.01,0.24 -0.02,0.48 -0.01,0.72 0,0.18 -0.01,0.37 0,0.56 -0.49,-0.13 -1.01,-0.18 -1.54,-0.15 0.02,-0.13 0,-0.26 0,-0.39 -0.01,-0.16 -0.02,-0.31 -0.03,-0.47 -0.02,-0.25 -0.04,-0.49 -0.05,-0.74 0.56,-0.04 1.12,-0.15 1.66,-0.33 z m -0.55,5.39 c 0,0.01 0,0.02 -0.01,0.02 0,0.01 0,0.02 0,0.02 0,-0.01 0,-0.01 0,-0.02 0,0.01 0,0.02 -0.01,0.03 -0.01,0.05 -0.03,0.09 -0.04,0.13 0,0 0,0 0,0 0,0 0,0 0,0 -0.02,0.03 -0.03,0.06 -0.05,0.09 -0.04,0.07 -0.08,0.13 -0.12,0.2 -0.01,0.01 -0.01,0.02 -0.01,0.02 -0.03,0.03 -0.06,0.06 -0.09,0.09 -0.01,0.01 -0.02,0.01 -0.03,0.02 0,0 0,0.01 -0.02,0.02 0,0 -0.01,0.01 -0.01,0.01 -0.01,0.01 -0.02,0.01 -0.02,0.02 0,-0.01 0.01,-0.01 0.01,-0.01 -0.01,0.01 -0.02,0.02 -0.04,0.02 -0.04,0.02 -0.07,0.04 -0.11,0.06 -0.01,0 -0.01,0.01 -0.02,0.01 0,0 0.01,0 0.01,0 -0.01,0 -0.01,0 -0.02,0.01 -0.01,0 -0.02,0.01 -0.02,0.01 -0.03,0.01 -0.04,0.01 -0.03,0 -0.06,0.02 -0.12,0.05 -0.17,0.06 -0.04,0.01 -0.08,0.02 -0.12,0.03 0,0 -0.01,0 -0.01,0 -0.08,0 -0.17,0.01 -0.25,0.01 -0.04,0 -0.07,-0.01 -0.11,-0.01 0,0 0,0 0,0 0,0 0,0 -0.01,0 -0.08,-0.02 -0.17,-0.04 -0.25,-0.06 -0.01,0 -0.02,-0.01 -0.03,-0.01 -0.03,-0.02 -0.09,-0.04 -0.1,-0.05 -0.03,-0.02 -0.06,-0.04 -0.09,-0.05 -0.02,-0.01 -0.04,-0.03 -0.06,-0.04 -0.01,-0.01 -0.03,-0.02 -0.03,-0.03 0,0 0.01,0.01 0.01,0.01 -0.02,-0.02 -0.04,-0.04 -0.06,-0.06 -0.03,-0.03 -0.06,-0.06 -0.09,-0.09 -0.04,-0.04 -0.07,-0.08 -0.11,-0.13 0.01,0.02 0.06,0.08 0,0 -0.02,-0.03 -0.04,-0.05 -0.05,-0.08 -0.03,-0.05 -0.06,-0.11 -0.09,-0.16 0.04,0.07 -0.03,-0.08 -0.03,-0.1 0,-0.01 -0.01,-0.02 -0.01,-0.04 0.06,-0.06 0.11,-0.13 0.13,-0.22 0.01,-0.04 0.02,-0.07 0.03,-0.1 0,-0.01 0.01,-0.02 0.01,-0.02 0.04,-0.08 0.09,-0.16 0.13,-0.24 0.03,-0.06 0.07,-0.12 0.11,-0.17 0.01,-0.01 0.02,-0.03 0.03,-0.03 0.03,-0.04 0.07,-0.07 0.1,-0.11 0.03,-0.03 0.06,-0.05 0.08,-0.07 0,0 0,0 0,0 0,0 0,0 0.01,-0.01 0.07,-0.05 0.15,-0.09 0.22,-0.13 0.01,0 0.02,-0.01 0.03,-0.01 0.03,-0.01 0.08,-0.03 0.09,-0.04 0.08,-0.03 0.16,-0.04 0.24,-0.06 0.02,0 0.04,-0.01 0.04,-0.01 0.04,0 0.07,0 0.11,0 0.03,0 0.06,0 0.1,0 0.02,0 0.04,0 0.04,0.01 0.04,0.01 0.08,0.02 0.12,0.03 0.01,0 0.03,0.01 0.04,0.01 0.04,0.03 0.18,0.1 0.2,0.11 0,0 0.01,0.01 0.01,0.01 0.03,0.03 0.06,0.05 0.09,0.08 0.02,0.03 0.05,0.05 0.07,0.08 0,0 0,0 0,0 0,0 0,0 0,-0.01 -0.03,-0.08 0,0.01 0.02,0.03 0.04,0.06 0.08,0.13 0.12,0.2 0,0.01 0.01,0.02 0.01,0.03 0.01,0.03 0.04,0.11 0.04,0.12 0.02,0.07 0.04,0.15 0.06,0.22 0,0.01 0,0.01 0,0.01 0,0.04 0.01,0.08 0.01,0.12 0.01,0.07 -0.01,0.16 0,0.22 0,-0.03 0.02,-0.05 0,0 z m -26.07,67.79 c -0.04,0 -0.08,0 -0.11,0.02 -0.03,0.01 -0.07,0.03 -0.1,0.04 -0.07,0.03 -0.14,0.05 -0.21,0.08 -0.14,0.06 -0.27,0.12 -0.4,0.18 -0.07,0.03 -0.09,0.13 -0.06,0.2 0.03,0.06 0.11,0.12 0.18,0.09 0.14,-0.06 0.27,-0.11 0.41,-0.17 0.07,-0.03 0.14,-0.06 0.2,-0.09 0.01,0 0.01,-0.01 0.02,-0.01 -0.1,0.41 -0.21,0.83 -0.31,1.24 -0.05,0.19 -0.1,0.39 -0.14,0.58 -0.02,-0.01 -0.05,-0.02 -0.08,-0.03 -0.03,0 -0.06,0 -0.09,0 -0.07,0 -0.13,-0.01 -0.2,-0.01 -0.13,-0.01 -0.26,0 -0.39,0 -0.1,0 -0.19,0.09 -0.19,0.19 0,0.1 0.08,0.19 0.19,0.19 0.13,0 0.26,0 0.39,0 0.06,0 0.13,-0.01 0.19,-0.01 0.03,0 0.06,0 0.09,0 -0.06,0.24 -0.12,0.48 -0.18,0.72 -0.01,0 -0.02,0.01 -0.03,0.01 -0.12,0.04 -0.25,0.08 -0.37,0.11 -0.21,0.06 -0.41,0.13 -0.62,0.19 0.08,-0.32 0.15,-0.64 0.23,-0.96 0.07,-0.31 0.15,-0.61 0.22,-0.92 0.11,-0.03 0.23,-0.06 0.34,-0.08 0.22,-0.05 0.47,-0.09 0.66,-0.21 0.12,-0.08 0.06,-0.24 -0.07,-0.25 -0.07,-0.01 -0.13,-0.01 -0.2,0.01 -0.05,0.01 -0.1,0.02 -0.15,0.03 -0.11,0.03 -0.23,0.06 -0.34,0.08 -0.05,0.01 -0.1,0.03 -0.16,0.04 0.13,-0.54 0.26,-1.08 0.39,-1.61 0.11,-0.03 0.21,-0.09 0.33,-0.1 0.22,-0.04 0.45,-0.03 0.67,-0.01 -0.03,0.13 -0.07,0.3 -0.11,0.46 z m -7.65,30.46 c -0.02,-0.17 -0.04,-0.34 -0.06,-0.51 -0.03,-0.21 -0.08,-0.42 -0.09,-0.62 -0.01,-0.19 0,-0.39 0.01,-0.58 0.01,-0.39 0.02,-0.77 0,-1.16 -0.02,-0.38 -0.01,-0.79 -0.13,-1.16 -0.04,-0.13 -0.27,-0.16 -0.3,0 -0.06,0.36 -0.01,0.74 0.02,1.11 0.03,0.39 0.1,0.77 0.16,1.15 0.03,0.21 0.08,0.42 0.09,0.64 0.02,0.19 0,0.39 -0.01,0.58 0,0.19 0,0.39 0.01,0.58 0.01,0.18 0,0.4 0.07,0.57 0.01,0.02 0.04,0.03 0.06,0.04 -0.12,0.46 -0.24,0.92 -0.36,1.38 -0.05,-0.06 -0.1,-0.11 -0.17,-0.17 -0.06,-0.06 -0.12,-0.13 -0.17,-0.2 -0.05,-0.08 -0.1,-0.16 -0.14,-0.24 -0.01,-0.02 -0.02,-0.05 -0.02,-0.07 0.08,-0.22 0.04,-0.46 0.02,-0.71 -0.02,-0.28 -0.04,-0.57 -0.05,-0.85 -0.03,-0.53 -0.04,-1.05 -0.05,-1.58 0,-0.69 0.05,-1.38 0.03,-2.06 0.02,-0.09 0.03,-0.19 0,-0.29 0,0 0,0 0,-0.01 0,-0.09 -0.02,-0.17 -0.02,-0.26 0.01,0 0.02,0.01 0.04,0.01 0.45,0.14 0.9,0.26 1.36,0.39 0,0.01 -0.01,0.02 -0.01,0.03 l 0.05,1.16 c 0.01,0.19 0.02,0.39 0.02,0.58 0.01,0.18 0.01,0.39 0.08,0.56 0,0 0,0 0.01,0 -0.16,0.57 -0.31,1.13 -0.45,1.69 z m 0.74,11.88 c 0.78,0 1.55,0.01 2.33,0.01 1.65,0 3.3,0.01 4.95,0.06 1.62,0.04 3.23,0.12 4.85,0.23 0.81,0.05 1.61,0.15 2.42,0.23 0.65,0.06 1.35,0.22 2,0.1 0.08,0.06 0.15,0.13 0.22,0.2 0.07,0.06 0.15,0.1 0.23,0.13 0.12,0.14 0.26,0.27 0.36,0.38 0.28,0.29 0.6,0.55 0.9,0.81 0.53,0.47 1.07,0.92 1.61,1.37 -0.16,0.23 -0.33,0.45 -0.47,0.69 -0.15,0.26 -0.27,0.53 -0.39,0.8 -0.21,-0.19 -0.43,-0.36 -0.63,-0.52 -0.54,-0.43 -1.1,-0.81 -1.71,-1.12 -1.24,-0.64 -2.59,-1.05 -3.97,-1.29 -3.21,-0.55 -6.46,-0.2 -9.69,-0.02 -0.99,0.06 -1.99,0.09 -2.98,0.05 -0.88,-0.03 -1.75,-0.18 -2.63,-0.24 0.15,-0.61 0.31,-1.21 0.47,-1.82 0.71,0.02 1.43,-0.05 2.13,-0.05 z m 12.51,-28.44 c 0.93,-0.06 1.86,-0.12 2.77,-0.27 0.07,-0.01 0.05,-0.13 -0.02,-0.13 -0.9,-0.01 -1.8,0.06 -2.7,0.14 0.09,-0.44 0.18,-0.89 0.27,-1.33 0.17,0.01 0.34,0.02 0.51,0.03 0.15,0.01 0.29,0.01 0.44,0.01 0.14,0 0.29,0.01 0.43,-0.02 0.09,-0.02 0.08,-0.15 0,-0.17 -0.14,-0.04 -0.29,-0.05 -0.43,-0.07 -0.15,-0.02 -0.29,-0.03 -0.44,-0.04 -0.15,-0.01 -0.3,-0.02 -0.45,-0.03 0.13,-0.66 0.26,-1.33 0.4,-1.99 0.36,0.02 0.73,0.03 1.09,0.03 0.41,0 0.86,0.03 1.26,-0.1 0.12,-0.04 0.12,-0.2 0,-0.24 -0.39,-0.14 -0.84,-0.12 -1.26,-0.12 -0.07,0 -0.14,0 -0.21,0 -0.01,0 -0.01,-0.01 -0.02,-0.01 -0.06,-0.02 -0.12,-0.04 -0.19,-0.05 -0.13,-0.04 -0.26,-0.07 -0.39,-0.11 -0.07,-0.02 -0.15,0.02 -0.17,0.09 -0.01,0.03 0,0.06 0.01,0.09 -0.02,0 -0.03,0 -0.05,0 0.02,-0.08 0.03,-0.16 0.05,-0.24 0.04,-0.02 0.07,-0.04 0.11,-0.05 0.04,-0.02 0.07,-0.04 0.1,-0.06 0.03,-0.02 0.07,-0.04 0.1,-0.07 0.02,-0.01 0.03,-0.02 0.04,-0.03 0.09,0 0.18,0 0.27,0 0.02,0 0.03,0 0.05,0 0.08,0.08 0.19,0.14 0.31,0.16 1.43,0.18 2.88,0.13 4.32,0.13 1.44,0 2.88,0 4.32,-0.01 2.88,-0.03 5.75,-0.05 8.63,-0.08 5.72,-0.05 11.44,-0.11 17.16,-0.16 1.6,-0.02 3.2,-0.03 4.81,-0.04 0.47,0 0.95,-0.01 1.42,-0.01 -0.18,-0.5 -0.35,-0.99 -0.52,-1.49 h -0.32 c -1.44,0.02 -2.88,0.04 -4.32,0.06 -2.88,0.03 -5.75,0.06 -8.63,0.09 -5.75,0.06 -11.51,0.12 -17.26,0.18 -1.63,0.02 -3.27,0.05 -4.9,0.08 -1.62,0.03 -3.24,0 -4.85,0.24 -0.18,0.03 -0.28,0.11 -0.33,0.22 -0.06,0.01 -0.12,0.01 -0.17,0.04 0,0 -0.03,0.01 0,0 -0.01,0.01 -0.03,0.01 -0.04,0.02 -0.03,0.01 -0.06,0.02 -0.08,0.04 -0.03,0.01 -0.05,0.03 -0.08,0.05 0.11,-0.56 0.22,-1.12 0.33,-1.68 0.04,-0.21 0.09,-0.43 0.13,-0.64 0.07,0.03 0.14,0.05 0.22,0.06 1.35,0.15 2.75,0.07 4.11,0.08 1.37,0.01 2.74,0.01 4.11,0.02 2.74,0.01 5.49,0.02 8.23,0.02 5.52,0.02 11.04,0.03 16.55,0.05 1.53,0 3.07,0.01 4.6,0.01 0.14,0 0.28,0 0.42,0 0.22,0.37 0.76,0.32 0.98,0 0.31,0 0.62,0 0.92,0 -0.06,-0.18 -0.12,-0.36 -0.18,-0.54 0.11,-0.02 0.23,-0.03 0.34,-0.07 0.05,-0.02 0.08,-0.05 0.11,-0.08 0.36,1.33 0.72,2.66 1.08,3.98 -0.04,-0.01 -0.07,-0.01 -0.11,-0.01 -0.03,0 -0.05,0 -0.08,0.01 -0.05,0.01 -0.11,0.01 -0.16,0.02 -0.11,0.01 -0.22,0.02 -0.33,0.02 -0.09,0.01 -0.18,0.08 -0.18,0.18 0,0.1 0.08,0.17 0.18,0.18 0.11,0.01 0.22,0.01 0.33,0.02 0.05,0 0.1,0.01 0.16,0.01 0.03,0 0.05,0 0.08,0.01 0.05,0 0.09,0 0.14,-0.01 0.03,-0.01 0.06,-0.03 0.08,-0.06 0.1,0.38 0.21,0.77 0.31,1.15 -0.01,0 -0.02,0 -0.02,0.01 -0.02,0.01 -0.04,0.02 -0.06,0.02 -0.02,0.01 -0.06,0.01 -0.08,0.01 -0.06,0 -0.12,0.01 -0.18,0.01 -0.06,0 -0.12,-0.02 -0.18,-0.03 -0.12,-0.02 -0.12,0.17 0,0.15 0.06,-0.01 0.12,-0.03 0.18,-0.03 0.06,0 0.12,0.01 0.18,0.01 0.03,0 0.06,0 0.08,0.01 0.01,0 0.03,0.02 0.04,0.02 0.03,0.01 0.06,0.02 0.09,0.03 0.24,0.91 0.49,1.81 0.73,2.72 -0.58,0.01 -1.16,0.01 -1.73,0.02 l -10.32,0.13 c -6.88,0.08 -13.75,0.17 -20.63,0.25 -3.86,0.05 -7.73,0.05 -11.59,0.23 -0.06,0 -0.11,0.02 -0.16,0.04 0.09,-0.37 0.16,-0.74 0.24,-1.11 z m 1.39,-5.06 c 0,0.01 0.01,0.02 0.01,0.03 -0.05,0 -0.11,0 -0.16,0 0.02,-0.01 0.03,-0.01 0.05,-0.02 0.01,0 0.02,-0.01 0.03,-0.01 H 265 c 0.03,0 0.05,0 0.06,0 z m 0.83,-6.02 c 0.02,0.03 0.06,0.05 0.1,0.05 0.23,0 0.45,0.01 0.68,0.01 0.11,0 0.22,0 0.33,0 0.11,0 0.26,0.01 0.35,-0.05 0.08,-0.05 0.08,-0.15 0,-0.2 -0.09,-0.06 -0.23,-0.05 -0.34,-0.05 -0.11,0 -0.23,0 -0.34,0 l -0.68,0.01 c -0.03,0 -0.04,0.02 -0.06,0.03 0.17,-0.86 0.35,-1.71 0.52,-2.57 h 0.04 c 0.05,0 0.11,0 0.16,0 0.05,-0.01 0.09,-0.01 0.14,-0.02 0.05,-0.01 0.09,-0.07 0.08,-0.11 0,-0.05 -0.03,-0.1 -0.08,-0.11 -0.05,-0.01 -0.09,-0.01 -0.14,-0.02 -0.05,-0.01 -0.09,0 -0.14,0 0.08,-0.38 0.15,-0.76 0.23,-1.14 0,0 0,0 0,0.01 0.02,0.07 0.09,0.11 0.16,0.09 0.09,-0.02 0.18,-0.04 0.27,-0.06 0.04,-0.01 0.09,-0.02 0.13,-0.03 0.04,-0.02 0.09,-0.03 0.13,-0.05 0.05,-0.02 0.08,-0.06 0.08,-0.12 -0.01,-0.05 -0.05,-0.1 -0.11,-0.09 -0.05,0 -0.09,0.01 -0.14,0.01 -0.05,0 -0.11,0.02 -0.16,0.03 -0.09,0.02 -0.18,0.04 -0.28,0.05 -0.03,0.01 -0.05,0.03 -0.07,0.05 0.12,-0.6 0.24,-1.2 0.36,-1.8 0.08,0.04 0.18,0.07 0.28,0.07 1.5,0.09 3.01,0.1 4.51,0.14 0.74,0.02 1.47,0.03 2.21,0.05 0.33,0.01 0.7,0.05 1.07,0.05 -0.02,0.11 -0.03,0.21 -0.05,0.32 -0.1,0.46 -0.21,0.93 -0.31,1.39 -0.86,0.01 -1.73,0.02 -2.59,0.04 -1.11,0.02 -2.26,-0.03 -3.37,0.1 -0.01,-0.26 -0.02,-0.52 -0.04,-0.78 0.05,0.01 0.1,0.01 0.15,0.02 0.13,0.01 0.27,0.01 0.4,0.01 0.13,0 0.26,0.01 0.39,0.01 0.06,0 0.13,0 0.19,-0.01 0.01,0 0.02,0 0.03,0 -0.19,0.01 -0.19,0.3 0.01,0.3 0.31,0.01 0.63,0.02 0.94,0.01 0.15,0 0.31,0 0.46,-0.01 0.16,-0.01 0.32,0.01 0.47,-0.04 0.11,-0.04 0.12,-0.2 0,-0.23 -0.15,-0.05 -0.32,-0.03 -0.47,-0.04 -0.15,-0.01 -0.31,-0.01 -0.46,-0.01 -0.3,0 -0.61,0.01 -0.91,0.01 0.05,0 0.1,-0.01 0.15,-0.05 0.09,-0.07 0.09,-0.18 0,-0.25 -0.1,-0.08 -0.28,-0.06 -0.4,-0.06 -0.13,0 -0.27,0 -0.4,0.01 -0.13,0 -0.26,0 -0.39,0.01 -0.06,0 -0.12,0.01 -0.18,0.02 -0.01,-0.09 -0.01,-0.19 -0.01,-0.28 0,0 0,-0.01 0,-0.01 0.22,0.04 0.48,0 0.69,0 0.33,-0.01 0.67,-0.01 1,-0.02 0.33,-0.01 0.65,-0.02 0.98,-0.06 0.18,-0.02 0.37,-0.03 0.55,-0.05 0.14,-0.01 0.29,-0.01 0.41,-0.07 0.05,-0.03 0.06,-0.12 0,-0.15 -0.13,-0.06 -0.27,-0.05 -0.41,-0.06 -0.17,-0.01 -0.35,-0.01 -0.52,-0.02 -0.34,-0.02 -0.67,-0.02 -1,-0.02 -0.33,0 -0.67,0.02 -1,0.03 -0.26,0.01 -0.59,-0.03 -0.84,0.08 -0.28,-0.27 -0.84,-0.17 -0.86,0.34 -0.03,1.1 0.02,2.2 0.03,3.3 0.01,0.54 0.02,1.08 0.03,1.62 0,0.13 0,0.28 -0.01,0.42 -0.45,0.17 -0.43,0.83 0.08,0.93 0.03,0.11 0.06,0.22 0.12,0.31 0.04,0.07 0.1,0.13 0.18,0.17 -0.02,0 -0.04,0 -0.06,0 -0.38,0 -0.75,-0.01 -1.13,-0.01 -0.27,0 -0.55,-0.01 -0.83,0 0.03,-0.04 0.06,-0.08 0.09,-0.12 0.01,0 0.02,0 0.03,0 0.02,0 0.04,0 0.06,-0.01 0.01,0 0.03,0 0.04,-0.01 0.01,0 0.02,-0.01 0.03,-0.01 0.01,0 0.02,-0.01 0.02,-0.01 0.03,-0.01 0.04,-0.05 0.04,-0.08 0,-0.03 -0.02,-0.06 -0.04,-0.08 -0.01,0 -0.02,-0.01 -0.02,-0.01 -0.01,0 -0.02,-0.01 -0.03,-0.01 -0.01,0 -0.02,0 -0.04,-0.01 -0.02,0 -0.04,0 -0.06,-0.01 -0.02,0 -0.04,-0.01 -0.07,-0.01 -0.05,-0.02 -0.11,-0.03 -0.14,0.02 -0.1,0.13 -0.2,0.26 -0.31,0.39 -0.08,0.1 -0.03,0.23 0.1,0.25 0.37,0.05 0.76,0.04 1.13,0.04 0.38,0.01 0.75,0.01 1.13,0.02 0.38,0.01 0.75,0 1.13,0 0.35,0 0.73,0.04 1.07,-0.04 0.12,-0.03 0.11,-0.2 0,-0.23 -0.34,-0.08 -0.73,-0.05 -1.07,-0.06 -0.2,-0.01 -0.4,-0.01 -0.59,-0.01 0.07,-0.04 0.13,-0.1 0.17,-0.18 0.04,-0.09 0.07,-0.18 0.09,-0.27 0.73,0.01 1.46,-0.01 2.18,-0.01 1.05,0 2.09,-0.01 3.14,-0.01 2.09,-0.01 4.19,-0.02 6.28,-0.02 4.19,-0.01 8.38,-0.04 12.57,-0.08 2.3,-0.02 4.61,0.04 6.9,-0.08 0.26,0.21 0.66,0.19 0.85,-0.13 0.25,-0.41 0.12,-1.05 0.11,-1.52 -0.01,-0.5 -0.02,-1 -0.04,-1.51 l -0.08,-2.96 c -0.02,-0.67 -0.91,-0.76 -1.14,-0.26 -0.05,-0.01 -0.11,0 -0.15,0.04 -0.03,0.03 -0.05,0.07 -0.05,0.12 0,0.04 0.02,0.09 0.05,0.12 0.02,0.02 0.06,0.02 0.09,0.02 0,0.3 0.01,0.6 0.01,0.9 -0.03,-0.01 -0.06,-0.02 -0.09,-0.02 -1.92,0.02 -3.84,0.05 -5.76,0.07 -0.12,-0.42 -0.28,-0.83 -0.44,-1.24 -0.02,-0.06 -0.05,-0.12 -0.07,-0.18 0.45,0 0.9,0 1.35,0 0.24,0 0.48,-0.01 0.72,-0.02 0.22,-0.01 0.51,0.01 0.71,-0.1 0.09,-0.05 0.1,-0.2 0,-0.24 -0.2,-0.09 -0.46,-0.07 -0.68,-0.06 -0.25,0.01 -0.5,0.02 -0.75,0.04 -0.49,0.04 -0.97,0.08 -1.46,0.11 -0.04,-0.1 -0.08,-0.2 -0.12,-0.3 0.54,0.05 1.14,-0.05 1.66,-0.09 0.63,-0.04 1.26,-0.09 1.9,-0.13 1.03,-0.07 2.05,-0.14 3.08,-0.2 0.04,0.04 0.1,0.08 0.14,0.11 0.22,0.12 0.54,0.16 0.76,0 0.07,-0.05 0.14,-0.12 0.21,-0.17 0.78,3.06 1.49,6.13 2.24,9.19 -1.19,0 -2.39,-0.01 -3.58,-0.01 -2.74,-0.01 -5.49,-0.01 -8.23,-0.02 -5.52,-0.01 -11.04,-0.02 -16.55,-0.04 -1.53,0 -3.07,-0.01 -4.6,-0.01 -1.55,0 -3.15,-0.1 -4.69,0.06 0.1,-0.5 0.2,-0.99 0.3,-1.49 0.07,0 0.13,0 0.2,0 0.07,0 0.15,0 0.22,0 0.08,0 0.18,0 0.25,-0.04 0.07,-0.05 0.07,-0.14 0,-0.18 -0.07,-0.05 -0.16,-0.04 -0.24,-0.04 -0.08,0 -0.15,0 -0.23,0 -0.05,0 -0.09,0 -0.14,0 0.01,-0.2 0.05,-0.42 0.1,-0.63 z m 15.12,-59.72 c 0.01,0.25 0.01,0.5 0.02,0.75 -0.35,-0.02 -0.69,-0.03 -1.04,-0.02 -0.01,-0.24 -0.05,-0.49 -0.07,-0.73 0.37,0 0.73,0 1.09,0 z m 0.64,0 c 0.23,-0.01 0.47,-0.01 0.7,-0.01 -0.02,0.53 -0.02,1.06 0,1.58 -0.14,0 -0.28,0.01 -0.42,0.01 -0.19,0 -0.37,-0.01 -0.56,-0.01 0,-0.13 0.01,-0.26 0.01,-0.38 0,-0.07 0,-0.15 0,-0.22 0.01,0 0.01,0 0.02,0 0.1,-0.01 0.1,-0.19 0,-0.2 -0.01,0 -0.01,0 -0.02,0 0.01,-0.25 0.01,-0.51 0.01,-0.77 0.1,0 0.18,0 0.26,0 z m 4.36,22.12 c -0.01,-0.02 -0.01,-0.04 -0.04,-0.05 -0.36,-0.05 -0.75,-0.02 -1.11,0 0,0 0,0 -0.01,0 0,-0.02 0,-0.04 0,-0.06 0.01,-0.12 -0.18,-0.12 -0.19,0 0,0.02 0,0.04 -0.01,0.07 -0.33,0.01 -0.65,0.03 -0.98,0.05 -0.01,0 -0.02,0 -0.03,0 0.01,-0.11 0.01,-0.22 0.02,-0.33 0,-0.06 -0.03,-0.09 -0.08,-0.1 0.44,-0.01 0.89,-0.01 1.33,-0.02 0.35,0 0.7,0 1.04,0 0.03,0.14 0.04,0.29 0.06,0.44 z m -2.92,0.03 c 0,-0.01 0,-0.02 0,-0.02 -0.02,-0.12 -0.04,-0.24 -0.04,-0.35 0,-0.03 0.01,-0.05 0.01,-0.08 0.16,0 0.32,0 0.47,-0.01 -0.04,0.01 -0.08,0.04 -0.09,0.1 -0.01,0.11 -0.02,0.23 -0.03,0.34 -0.11,0.01 -0.21,0.02 -0.32,0.02 z m -1.45,0.08 c -0.02,-0.17 -0.02,-0.34 -0.02,-0.51 0.2,0 0.41,-0.01 0.61,-0.02 0.18,0 0.36,0 0.53,-0.01 0,0.03 -0.01,0.06 -0.01,0.09 0,0.13 0.01,0.26 0.03,0.38 -0.37,0.03 -0.75,0.05 -1.14,0.07 z m -3.21,0.19 c -0.01,-0.2 -0.02,-0.4 -0.03,-0.61 0.16,0 0.32,-0.01 0.48,-0.01 0.06,0.05 0.17,0.05 0.23,-0.01 0.44,-0.01 0.88,-0.03 1.32,-0.04 -0.01,0.18 -0.01,0.36 -0.02,0.54 -0.65,0.05 -1.32,0.09 -1.98,0.13 z m -1.74,0.12 0.09,-0.7 c 0.02,0.01 0.03,0.02 0.05,0.02 0,0 0.01,0 0.01,0 0,0.01 0,0.02 0,0.03 0,0.09 0.01,0.19 0.01,0.28 0,0.09 0.01,0.18 0.08,0.25 0.04,0.04 0.13,0.05 0.18,0 0.11,-0.14 0.06,-0.36 0.05,-0.53 0,-0.01 0,-0.03 0,-0.04 0.31,-0.01 0.62,-0.02 0.93,-0.03 0,0.21 0.01,0.41 0.01,0.62 -0.46,0.03 -0.92,0.05 -1.37,0.08 -0.02,0 -0.03,0.01 -0.04,0.02 z m 4.36,-21.35 c 0,0.13 0.01,0.25 0.02,0.38 -0.35,0 -0.69,0 -1.04,-0.01 -0.01,-0.18 -0.01,-0.37 -0.02,-0.55 0.34,0.01 0.69,0 1.03,-0.02 0.01,0.07 0.01,0.14 0.01,0.2 z m 1.33,0.87 c 0.01,0.07 0.12,0.1 0.13,0.02 0.01,-0.07 0.01,-0.15 0.02,-0.23 0.38,-0.01 0.76,-0.01 1.14,-0.03 0.01,0.11 0.01,0.23 0.01,0.34 0.01,0.16 0.02,0.31 0.03,0.47 -0.05,0.03 -0.09,0.09 -0.07,0.15 0.01,0.04 0.05,0.03 0.08,0.04 0.01,0.2 0.02,0.4 0.03,0.6 -0.48,0.03 -0.96,0.07 -1.44,0.09 -0.34,0.01 -0.68,0.01 -1.02,0.02 0.01,-0.23 0.02,-0.45 0.03,-0.68 0.18,0 0.35,-0.01 0.52,-0.05 0.09,-0.02 0.09,-0.17 0,-0.18 -0.17,-0.02 -0.34,-0.02 -0.51,-0.02 0.01,-0.25 0.02,-0.51 0.03,-0.76 0.21,0 0.41,0.01 0.62,0.01 0.13,0 0.26,-0.01 0.39,-0.01 0.01,0.08 0.01,0.15 0.01,0.22 z m 0.51,18.94 c -0.04,0.12 -0.04,0.25 -0.06,0.37 -0.2,0 -0.39,0 -0.59,0.01 -0.2,0 -0.4,0.02 -0.6,0.02 0.02,-0.27 0.06,-0.53 0.13,-0.79 0.73,0 1.46,0.01 2.19,0.04 0.22,0.01 0.44,0.02 0.67,0.04 0.01,0.12 0.02,0.25 0.05,0.37 0.02,0.08 0.13,0.06 0.14,-0.02 0.01,-0.11 0.01,-0.23 0.01,-0.34 0.08,0 0.16,0.01 0.23,0.01 0.27,0.02 0.55,0.05 0.83,0.06 0.01,0.19 0.03,0.38 0.04,0.57 -0.34,0 -0.68,0 -1.01,0 -0.61,0 -1.21,0.01 -1.82,0.02 0.02,-0.1 0.01,-0.2 0.04,-0.3 0.05,-0.15 -0.2,-0.22 -0.25,-0.06 z m -2.23,0.44 c 0,-0.27 0,-0.53 0.01,-0.8 0.27,-0.01 0.54,-0.02 0.81,-0.03 -0.06,0.26 -0.11,0.53 -0.13,0.8 -0.23,0.01 -0.46,0.02 -0.69,0.03 z m -2.19,-1.5 c 0.11,-0.07 0.21,-0.14 0.32,-0.2 0.01,0 0.03,0 0.04,0 0,0.21 0,0.42 0,0.63 -0.13,0.01 -0.26,0.03 -0.38,0.04 0.01,-0.16 0.01,-0.32 0.02,-0.47 z m -0.31,0.49 c -0.04,0 -0.07,0.01 -0.11,0.01 0.05,-0.05 0.09,-0.11 0.12,-0.16 0,0.05 0,0.1 -0.01,0.15 z m 2.37,-3.68 c 0,-0.17 0,-0.35 0,-0.53 v -0.05 c 0.39,0 0.78,-0.01 1.16,-0.03 -0.02,0.3 -0.04,0.6 -0.05,0.9 -0.37,-0.01 -0.74,-0.01 -1.12,0.01 0.01,-0.09 0.01,-0.2 0.01,-0.3 z m -0.24,-1.57 v 0.67 c -0.18,0 -0.36,0 -0.54,0.01 -0.02,-0.03 -0.06,-0.05 -0.09,-0.04 -0.04,0 -0.07,0.02 -0.1,0.05 -0.13,0 -0.27,0 -0.4,0 0,-0.34 -0.01,-0.68 -0.01,-1.01 0.12,0 0.24,0.01 0.37,0.01 0.03,0.02 0.07,0.02 0.11,0 0.73,0.02 1.46,0.03 2.19,0.05 0,0.28 0.01,0.55 0.01,0.83 -0.05,0 -0.11,0.03 -0.11,0.1 0,0 0,0 0,0 -0.39,0.01 -0.79,0.01 -1.18,0.01 v -0.66 c -0.01,-0.18 -0.25,-0.18 -0.25,-0.02 z m -2.05,0.3 c -0.01,-0.25 -0.01,-0.51 -0.01,-0.76 0.01,0.05 0.05,0.1 0.12,0.11 0.17,0 0.34,0.01 0.5,0.01 0,0.34 -0.01,0.68 -0.01,1.02 -0.2,0 -0.39,0.01 -0.59,0.01 0,-0.13 0,-0.26 -0.01,-0.39 z m 1.11,-2.77 c 0.01,0.18 0.01,0.36 0.01,0.55 -0.08,0 -0.15,0.01 -0.23,0.01 0,-0.26 0,-0.51 -0.01,-0.77 0.07,0 0.15,0 0.22,0 0,0.07 0,0.14 0.01,0.21 z m 0.02,0.83 c 0.01,0.34 0.04,0.68 0.08,1.02 -0.1,0 -0.2,0 -0.31,0 0,-0.34 -0.01,-0.67 -0.01,-1.01 0.08,0 0.16,-0.01 0.24,-0.01 z m 5.76,4.1 v 0.21 c -0.01,0 -0.02,0 -0.03,0 -0.04,0 -0.08,0.01 -0.12,0.01 0.04,-0.41 0.06,-0.82 0.12,-1.23 0.02,-0.16 -0.22,-0.23 -0.25,-0.07 -0.07,0.44 -0.1,0.88 -0.14,1.32 -0.29,0.02 -0.58,0.04 -0.87,0.05 0.04,-0.4 0.08,-0.8 0.16,-1.2 0.03,-0.14 -0.18,-0.2 -0.21,-0.06 -0.1,0.42 -0.16,0.85 -0.21,1.27 -0.19,0.01 -0.37,0.02 -0.56,0.03 -0.02,0 -0.04,0 -0.06,0 0.02,-0.25 0.04,-0.49 0.06,-0.74 0.01,-0.09 -0.1,-0.11 -0.15,-0.07 -0.01,-0.01 -0.01,-0.03 -0.02,-0.03 -0.28,-0.09 -0.62,-0.09 -0.93,-0.09 0.01,-0.27 0.01,-0.54 0.02,-0.82 0.05,0.01 0.1,-0.01 0.11,-0.08 0,0 0,-0.01 0,-0.01 0.06,0 0.12,0 0.18,0 0.55,-0.03 1.1,-0.07 1.65,-0.11 0.01,0.13 0.02,0.26 0.06,0.37 0.02,0.07 0.15,0.09 0.16,0 0.02,-0.12 0.02,-0.26 0.02,-0.39 0.03,0 0.07,0 0.1,-0.01 0.63,-0.05 1.29,-0.06 1.91,-0.17 -0.04,0.32 -0.08,0.64 -0.11,0.96 -0.04,0.01 -0.07,0 -0.11,0.01 -0.08,0.01 -0.16,0.03 -0.25,0.04 -0.16,0.02 -0.32,0.05 -0.49,0.07 -0.06,0.01 -0.1,0.08 -0.09,0.14 0.01,0.06 0.06,0.12 0.12,0.11 0.16,-0.02 0.32,-0.03 0.48,-0.05 0.04,0 0.08,-0.01 0.12,-0.01 0.01,0.01 0.01,0.02 0.02,0.02 0.05,0.02 0.11,0 0.17,-0.02 -0.02,0.23 -0.03,0.47 -0.04,0.7 -0.12,0.01 -0.24,0.01 -0.36,0.02 -0.17,-0.05 -0.31,-0.13 -0.46,-0.17 z m -2.67,-2.73 c 0.46,0.01 0.93,0.02 1.39,0.02 -0.01,0.2 -0.02,0.39 -0.02,0.59 0,0.08 0,0.16 0,0.25 -0.56,0.02 -1.12,0.04 -1.68,0.05 -0.04,0 -0.08,0 -0.13,0 0.01,-0.31 0.02,-0.62 0.01,-0.92 0.15,0 0.29,0.01 0.43,0.01 z m 3.71,0.27 c -0.01,0 -0.01,0 -0.02,0 -0.01,0 -0.02,0 -0.03,0 -0.02,0.01 -0.04,0.02 -0.05,0.03 -0.01,0.01 -0.01,0.02 -0.02,0.02 -0.01,0.02 -0.02,0.04 -0.02,0.06 0,0.02 0,0.03 0,0.05 0,0 0,0.01 0,0.01 0,0.01 0,0.03 0.01,0.04 0,0.01 0,0.02 0.01,0.02 0,0.01 0.01,0.02 0.01,0.03 0.01,0.01 0.02,0.02 0.03,0.03 0.01,0.01 0.01,0.01 0.02,0.01 0.01,0 0.01,0 0.02,0 -0.01,0.05 -0.01,0.09 -0.02,0.14 -0.32,0 -0.64,0.05 -0.97,0.07 -0.34,0.03 -0.68,0.04 -1.01,0.06 -0.02,0 -0.04,0 -0.05,0 0,-0.06 0,-0.12 0,-0.17 0,-0.22 0.01,-0.44 0.01,-0.65 0.13,0 0.25,0 0.38,0.01 0.34,0.01 0.69,0.01 1.03,0.02 0.23,0 0.46,0.01 0.7,0.01 -0.01,0.07 -0.02,0.14 -0.03,0.21 z m -3.71,-0.57 c -0.14,0 -0.28,0 -0.42,-0.01 0,-0.35 0,-0.7 0,-1.05 0,-0.06 -0.04,-0.09 -0.09,-0.1 0.37,-0.02 0.74,-0.04 1.11,-0.06 0.26,-0.02 0.52,-0.04 0.78,-0.06 0.07,0 0.14,-0.01 0.21,-0.01 -0.08,0.43 -0.15,0.87 -0.18,1.31 -0.47,-0.01 -0.94,-0.02 -1.41,-0.02 z m -0.65,-1.06 v 1.05 c -0.71,-0.01 -1.41,-0.02 -2.12,-0.03 0,-0.34 -0.02,-0.69 -0.05,-1.03 0.61,-0.02 1.23,-0.03 1.84,-0.06 0.14,-0.01 0.27,-0.02 0.41,-0.02 -0.04,0.01 -0.08,0.03 -0.08,0.09 z m 0.06,4.23 c 0.01,-0.14 0.01,-0.28 0.02,-0.42 0.3,0.01 0.62,0.04 0.91,0 -0.02,0.21 -0.04,0.42 -0.06,0.64 -0.3,0.02 -0.59,0.04 -0.89,0.07 0,-0.1 0.01,-0.19 0.02,-0.29 z m -0.17,0.64 c 0.01,0 0.01,0 0.02,0 0.33,-0.02 0.66,-0.03 1,-0.05 -0.01,0.06 -0.01,0.12 -0.02,0.17 -0.04,0.43 -0.12,0.87 -0.08,1.3 0.01,0.07 0.11,0.1 0.14,0.02 0.11,-0.41 0.11,-0.87 0.14,-1.29 0.01,-0.07 0.01,-0.14 0.02,-0.21 0.03,0 0.06,0 0.09,0 0.17,-0.01 0.34,-0.02 0.51,-0.03 -0.02,0.22 -0.03,0.44 -0.02,0.66 0,0.08 0,0.17 0,0.25 0,0 -0.01,0 -0.01,0 -0.02,0.01 -0.04,0.02 -0.06,0.04 -0.02,0.02 -0.03,0.04 -0.04,0.06 -0.01,0.02 -0.02,0.05 -0.02,0.07 0,0.02 0,0.03 0.01,0.05 0.01,0.03 0.02,0.06 0.05,0.08 l 0.04,0.03 c 0.02,0.01 0.04,0.01 0.06,0.02 0.01,0.06 0.01,0.12 0.03,0.18 0.04,0.13 0.21,0.09 0.23,-0.03 0.01,-0.08 0,-0.15 0,-0.23 0.01,-0.01 0.02,-0.02 0.02,-0.03 0.01,-0.02 0.01,-0.04 0.01,-0.06 0,-0.01 0,-0.03 -0.01,-0.04 -0.01,-0.02 -0.02,-0.04 -0.03,-0.05 -0.01,-0.11 -0.01,-0.22 -0.02,-0.33 0,-0.23 0.01,-0.45 0.02,-0.68 0.29,-0.02 0.58,-0.04 0.87,-0.05 -0.02,0.19 -0.05,0.37 -0.06,0.56 -0.02,0.38 -0.04,0.76 -0.02,1.14 0.01,0.1 0.01,0.21 0.02,0.32 -0.19,-0.01 -0.39,-0.02 -0.58,-0.03 -0.73,-0.03 -1.46,-0.04 -2.18,-0.03 -0.05,-0.06 -0.15,-0.07 -0.21,0 -0.32,0.01 -0.65,0.03 -0.97,0.04 -0.03,-0.05 -0.09,-0.05 -0.12,0.01 -0.45,0.02 -0.91,0.04 -1.36,0.07 0,-0.2 0,-0.4 0,-0.6 0.25,-0.01 0.5,-0.02 0.75,-0.03 0.72,-0.03 1.44,-0.06 2.15,-0.19 0.11,-0.02 0.07,-0.18 -0.03,-0.19 -0.06,-0.01 -0.13,0 -0.19,-0.01 0,0 0.01,0 0.01,-0.01 0.04,-0.02 0.07,-0.05 0.1,-0.08 0.01,-0.01 0.01,-0.03 0.01,-0.04 -0.01,-0.01 -0.02,-0.02 -0.04,-0.02 -0.04,0.01 -0.08,0.02 -0.11,0.03 l -0.11,0.04 c -0.03,0.01 -0.03,0.04 -0.03,0.07 -0.6,-0.03 -1.2,-0.01 -1.8,0.02 -0.11,0.01 -0.22,0.01 -0.34,0.02 0.34,-0.16 0.67,-0.31 1.03,-0.42 -0.04,-0.14 -0.05,-0.29 -0.08,-0.44 0.39,-0.04 0.8,-0.06 1.21,-0.08 z m -2.86,2.3 c 0,0.26 0,0.53 0,0.79 -0.14,0.01 -0.29,0.01 -0.43,0.02 0,-0.26 0.02,-0.52 0.03,-0.78 0.13,-0.01 0.27,-0.02 0.4,-0.03 z m 0.32,-0.02 c 0.44,-0.03 0.88,-0.04 1.32,-0.05 -0.01,0.27 -0.02,0.53 -0.03,0.8 -0.43,0.01 -0.86,0.03 -1.29,0.05 0.01,-0.27 0,-0.54 0,-0.8 z m 6,-0.41 c -0.11,-0.01 -0.21,-0.01 -0.32,-0.02 0,-0.11 0,-0.22 0,-0.33 0.02,-0.36 0.01,-0.73 0.03,-1.09 0.01,-0.21 0.04,-0.41 0.06,-0.62 0.05,0 0.11,-0.01 0.16,-0.01 0.01,0 0.02,0 0.03,0 v 0.94 c 0.26,0.11 0.51,0.24 0.76,0.38 0,0.27 0,0.53 0.01,0.8 -0.24,-0.02 -0.49,-0.03 -0.73,-0.05 z m 1.28,-5.33 c 0.02,0 0.05,0 0.07,0 0.13,-0.02 0.13,-0.23 0,-0.26 -0.02,0 -0.03,0 -0.05,0 0.01,-0.06 0.01,-0.11 0.02,-0.17 0.02,-0.13 -0.21,-0.16 -0.23,-0.03 -0.01,0.06 -0.01,0.12 -0.02,0.18 -0.23,-0.01 -0.46,-0.01 -0.69,-0.02 -0.34,-0.01 -0.69,-0.01 -1.03,-0.02 -0.14,0 -0.27,0 -0.41,-0.01 0.03,-0.44 0.09,-0.89 0.16,-1.32 0.09,-0.01 0.19,-0.01 0.27,-0.03 0.1,-0.02 0.06,-0.15 -0.02,-0.16 -0.07,-0.01 -0.15,-0.01 -0.23,-0.01 0,-0.03 0,-0.05 0.01,-0.08 0.03,-0.14 -0.18,-0.2 -0.21,-0.06 -0.01,0.04 -0.01,0.09 -0.02,0.14 -0.11,0.01 -0.23,0.01 -0.34,0.01 -0.26,0 -0.52,0 -0.78,0 -0.51,0 -1.01,0.02 -1.52,0.03 -0.6,0.02 -1.21,0.05 -1.81,0.08 -0.02,-0.21 -0.04,-0.42 -0.05,-0.63 0,-0.04 0,-0.08 0,-0.11 0.94,0 1.89,0 2.83,0 0.65,0 1.3,-0.01 1.95,-0.02 0.33,0 0.65,-0.01 0.98,-0.01 0.28,0 0.57,0 0.85,-0.04 -0.01,0.01 -0.02,0.02 -0.02,0.04 0,0.27 0,0.54 0,0.81 0,0.13 0,0.27 0,0.4 0,0.14 0.02,0.28 0.03,0.41 0.01,0.08 0.12,0.08 0.13,0 0.02,-0.14 0.03,-0.27 0.03,-0.41 0,-0.13 0,-0.27 0,-0.4 0,-0.27 0,-0.54 0,-0.81 0,-0.04 -0.02,-0.07 -0.05,-0.08 0.06,-0.04 0.07,-0.15 -0.02,-0.17 -0.29,-0.06 -0.61,-0.04 -0.9,-0.04 -0.33,0 -0.65,0 -0.98,0 -0.67,0 -1.33,0.01 -2,0.01 -0.95,0.01 -1.89,0.03 -2.84,0.04 -0.01,-0.35 -0.02,-0.7 -0.03,-1.04 h 0.04 c 0.29,0 0.59,0 0.88,0 0.14,0 0.27,0 0.41,0 0.14,0 0.3,0.01 0.44,-0.03 0.11,-0.03 0.11,-0.18 0,-0.22 -0.12,-0.04 -0.26,-0.03 -0.39,-0.03 0.01,-0.34 0.01,-0.67 0,-1.01 0.17,0 0.34,-0.01 0.5,-0.04 0.1,-0.02 0.1,-0.19 0,-0.21 -0.17,-0.03 -0.34,-0.04 -0.51,-0.04 0,-0.11 -0.01,-0.23 -0.01,-0.34 0,-0.12 -0.01,-0.24 -0.01,-0.36 0.23,0.03 0.45,0.04 0.68,0.05 0.02,0.24 0.03,0.47 0.07,0.71 0.01,0.08 0.12,0.05 0.13,-0.02 0.02,-0.23 0.01,-0.46 0.01,-0.68 0.05,0 0.11,0.01 0.16,0.01 0.08,0 0.1,-0.12 0.02,-0.14 -0.06,-0.02 -0.12,-0.02 -0.18,-0.04 -0.01,-0.55 -0.03,-1.09 -0.05,-1.63 -0.01,-0.17 -0.27,-0.17 -0.26,0 0,0.03 0,0.06 0,0.09 -0.63,-0.09 -1.28,-0.12 -1.92,-0.13 0.01,-0.27 0,-0.55 0.01,-0.82 0.11,0 0.21,0 0.32,0 0,0.18 0,0.35 0,0.53 0,0.15 0.22,0.14 0.22,0 0.01,-0.18 0,-0.35 0.01,-0.53 0.03,0 0.06,0 0.09,0 0.4,0 0.79,0 1.19,-0.01 0.34,-0.01 0.68,-0.01 1.02,-0.05 0,0.02 0,0.04 0.01,0.06 0.02,0.04 0.08,0.05 0.09,0 0.01,-0.02 0,-0.04 0,-0.07 0.07,-0.01 0.07,-0.14 0,-0.15 0,0 0,0 0,0 0,-0.05 -0.01,-0.1 -0.01,-0.16 l -0.03,-0.39 c -0.02,-0.26 -0.03,-0.52 -0.05,-0.77 0,-0.07 -0.12,-0.08 -0.12,0 0.02,0.26 0.03,0.52 0.05,0.77 l 0.03,0.39 c 0,0.05 0.01,0.1 0.01,0.15 -0.33,-0.04 -0.67,-0.04 -1,-0.05 -0.4,-0.02 -0.79,-0.02 -1.19,-0.02 -0.03,0 -0.05,0 -0.08,0 0.01,-0.3 0.02,-0.59 0.02,-0.89 0.06,0 0.11,0 0.17,0 0.22,0 0.47,0 0.69,-0.04 0.08,-0.02 0.09,-0.15 0,-0.17 -0.22,-0.04 -0.46,-0.04 -0.69,-0.04 -0.05,0 -0.11,0 -0.16,0 0,-0.09 0,-0.17 0,-0.26 0.39,-0.01 0.8,-0.01 1.18,-0.08 0.11,-0.02 0.07,-0.17 -0.02,-0.18 -0.38,-0.04 -0.78,0 -1.16,0.02 0,-0.16 -0.01,-0.31 -0.01,-0.47 0.36,0 0.72,-0.01 1.09,-0.02 0,0.01 0,0.03 0,0.04 0,0.06 0.09,0.06 0.09,0 0,-0.01 0,-0.03 0,-0.04 0.36,-0.01 0.72,0 1.08,-0.02 0.47,-0.02 0.94,-0.06 1.41,-0.09 0.03,0.39 0.07,0.77 0.12,1.16 -0.18,0.02 -0.37,0.04 -0.55,0.05 -0.15,0.01 -0.15,0.25 0,0.24 0.19,-0.02 0.38,-0.03 0.58,-0.05 0.02,0.13 0.02,0.26 0.04,0.39 0.01,0.06 0.1,0.04 0.11,-0.01 0.01,-0.13 0,-0.26 0,-0.39 0.38,-0.03 0.77,-0.07 1.15,-0.1 0.2,-0.02 0.39,-0.04 0.59,-0.06 0,0.04 0,0.09 0.01,0.13 0.01,0.07 0.12,0.07 0.14,0 0.01,-0.05 0.01,-0.1 0.02,-0.15 0.06,-0.01 0.13,-0.01 0.19,-0.02 0.2,-0.02 0.42,-0.04 0.63,-0.07 0,0.27 0.01,0.54 0.01,0.8 -0.01,1.6 -0.02,3.19 -0.02,4.79 -0.01,1.56 0.02,3.13 -0.03,4.69 -0.03,0.85 -0.09,1.72 -0.13,2.58 -0.13,0.01 -0.25,0.02 -0.37,0.03 0,-0.94 0.06,-1.87 0.16,-2.81 z m -6.92,-4.44 c 0,-0.2 0.01,-0.41 0,-0.61 0,0 0,0 0.01,0 h 0.97 c 0.07,0 0.14,0 0.21,0 0.01,0.34 0.03,0.68 0.06,1.01 -0.1,0 -0.2,0 -0.3,0 -0.29,0 -0.59,0 -0.88,0 h -0.05 c -0.01,-0.13 -0.02,-0.27 -0.02,-0.4 z m -1.47,-4.96 c -0.01,-0.18 -0.02,-0.36 -0.03,-0.54 0.01,0.05 0.04,0.09 0.11,0.09 0.16,0 0.31,0 0.47,0 -0.02,0.3 -0.03,0.6 -0.05,0.89 -0.16,0 -0.33,0 -0.49,0 0,-0.14 0,-0.29 -0.01,-0.44 z m 0.87,-0.92 c 0.32,-0.01 0.63,-0.02 0.95,-0.03 0,0.08 0.01,0.17 0.01,0.25 -0.1,0 -0.2,0 -0.3,0 -0.22,0 -0.45,0 -0.67,0 0,-0.07 0,-0.14 0.01,-0.22 z m 0.36,-2.13 c 0.08,0.03 0.15,0.07 0.24,0.09 -0.01,-0.26 0,-0.52 0.04,-0.78 0.06,0 0.12,0.01 0.18,0.01 0.03,0.28 0.06,0.56 0.07,0.84 -0.22,0.01 -0.44,0.02 -0.66,0.03 0.05,-0.05 0.09,-0.12 0.13,-0.19 z m 0.8,0.39 c 0.3,0 0.6,-0.01 0.9,-0.02 0.05,0 0.11,0 0.16,0 0.01,0.22 0.02,0.45 0.03,0.67 -0.36,0.01 -0.72,0.02 -1.08,0.02 0,-0.23 0,-0.45 -0.01,-0.67 z m -0.51,2.21 c 0.1,0 0.2,0 0.3,0 0,0.3 0,0.59 0,0.89 -0.35,0 -0.69,0 -1.04,0 0.02,-0.3 0.04,-0.6 0.06,-0.89 0.22,0 0.45,0 0.68,0 z m 1.97,3.63 c -0.22,-0.05 -0.44,-0.1 -0.67,-0.13 -0.01,-0.38 -0.03,-0.75 -0.04,-1.13 0,-0.02 -0.02,-0.02 -0.03,-0.03 0.22,-0.01 0.45,-0.02 0.67,-0.04 0.01,0.44 0.03,0.88 0.07,1.33 z m -0.87,-0.16 c -0.12,-0.02 -0.24,-0.03 -0.36,-0.05 -0.26,-0.04 -0.52,-0.07 -0.78,-0.1 0,-0.32 0,-0.65 0.01,-0.97 0.38,0.01 0.76,0.01 1.13,0 -0.01,0.01 -0.03,0.01 -0.02,0.02 0.01,0.37 0.01,0.73 0.02,1.1 z m -1.34,-0.18 c -0.22,-0.03 -0.43,-0.06 -0.65,-0.08 -0.03,0 -0.05,0.01 -0.08,0.03 0.05,-0.3 0.09,-0.61 0.12,-0.92 0.21,0.01 0.41,0.02 0.62,0.02 -0.01,0.32 -0.01,0.64 -0.01,0.95 z m -0.58,-1.29 c 0.02,-0.27 0.04,-0.55 0.06,-0.82 0.19,0 0.37,0 0.56,0.01 -0.01,0.27 0,0.55 -0.01,0.82 -0.21,-0.01 -0.41,-0.01 -0.61,-0.01 z m -0.68,-0.83 c 0.15,0 0.31,0 0.46,0 -0.02,0.27 -0.04,0.55 -0.07,0.82 -0.13,0 -0.25,0 -0.38,0 0,-0.27 0,-0.54 -0.01,-0.82 z m 0.02,1.12 c 0.12,0 0.23,0.01 0.35,0.01 -0.03,0.35 -0.05,0.7 -0.05,1.04 0,0.09 0.12,0.11 0.16,0.04 0.01,0.04 0.03,0.07 0.08,0.08 0.23,0.03 0.45,0.07 0.68,0.1 0,0.31 -0.02,0.62 -0.02,0.92 -0.39,0 -0.78,0 -1.17,0 0.01,-0.72 -0.01,-1.45 -0.03,-2.19 z m 1.44,1.31 c 0.26,0.04 0.51,0.08 0.77,0.11 0.13,0.02 0.26,0.03 0.39,0.05 0,0.13 0.01,0.26 0.01,0.39 0,0.11 0.01,0.23 0.01,0.34 -0.07,0 -0.14,0 -0.2,0 h -0.97 c 0,0 0,0 0,0 -0.02,-0.29 -0.01,-0.59 -0.01,-0.89 z m 4.51,-5.82 c 0.15,-0.02 0.3,-0.03 0.46,-0.05 0.41,-0.06 0.87,-0.12 1.28,-0.27 -0.01,0.23 -0.01,0.46 -0.01,0.69 -0.34,0.04 -0.69,0.08 -1.03,0.11 -0.22,0.02 -0.45,0.03 -0.67,0.04 -0.01,-0.18 -0.02,-0.35 -0.03,-0.52 z m 0.74,0.8 c 0.32,-0.03 0.65,-0.06 0.98,-0.09 0,0.01 0,0.02 0,0.03 0,0.36 0,0.74 0.03,1.1 -0.19,0.02 -0.38,0.03 -0.57,0.05 -0.38,0.04 -0.77,0.07 -1.15,0.11 0.01,-0.39 0.02,-0.77 0.01,-1.16 0.23,-0.02 0.46,-0.02 0.7,-0.04 z m 1.99,-0.24 c 0,0.4 0,0.81 0.01,1.21 -0.21,0 -0.43,0.02 -0.63,0.04 -0.05,0 -0.11,0.01 -0.16,0.01 0.04,-0.36 0.05,-0.73 0.07,-1.09 0,-0.02 0,-0.04 0,-0.06 0.24,-0.02 0.48,-0.07 0.71,-0.11 z m 0.01,-0.28 c -0.24,0.02 -0.47,0.03 -0.71,0.06 0.01,-0.27 0.01,-0.53 0.02,-0.8 0.05,-0.03 0.1,-0.06 0.15,-0.09 0.08,0.09 0.18,0.17 0.31,0.21 0.09,0.03 0.18,0.03 0.26,0.01 -0.01,0.2 -0.03,0.4 -0.03,0.61 z m -5.65,-0.54 c -0.05,0 -0.1,0 -0.15,0 -0.3,0 -0.6,0.02 -0.9,0.03 -0.01,-0.27 -0.02,-0.55 -0.03,-0.82 0.35,0.01 0.7,0.01 1.04,0.01 0.01,0.26 0.02,0.52 0.04,0.78 z m -1.43,-1.07 c -0.03,0 -0.06,0 -0.09,0 0.02,-0.08 0.02,-0.16 0.05,-0.24 -0.12,-0.02 -0.25,-0.02 -0.37,-0.03 -0.01,-0.1 -0.02,-0.19 -0.02,-0.29 0.13,0 0.25,0 0.38,0 0.02,0.19 0.03,0.37 0.05,0.56 z m 0.11,1.34 c 0.01,0.22 0.01,0.45 0.02,0.67 -0.29,0 -0.57,-0.01 -0.86,-0.02 0.01,-0.21 0.01,-0.43 0.02,-0.64 0.28,0 0.55,0 0.82,-0.01 z m 0.03,0.98 c 0,0.16 0.01,0.32 0.01,0.48 -0.31,0.01 -0.62,0.03 -0.92,0.04 0.01,-0.18 0.03,-0.37 0.04,-0.55 0.29,0.01 0.58,0.03 0.87,0.03 z m -1.22,0.99 c -0.16,0 -0.32,0 -0.48,0 -0.07,0 -0.1,0.05 -0.11,0.1 -0.01,-0.38 -0.04,-0.76 -0.06,-1.14 0.24,0.01 0.47,0.01 0.71,0.02 -0.02,0.34 -0.04,0.68 -0.06,1.02 z m 0.68,5.04 c 0,0.22 -0.01,0.44 -0.01,0.66 0,0.12 0.01,0.23 0.01,0.35 l -0.81,0.01 c 0,-0.01 0,-0.01 0,-0.02 0.01,-0.09 0.02,-0.18 0.03,-0.28 0.02,-0.18 0.04,-0.37 0.05,-0.55 0.01,-0.06 -0.06,-0.12 -0.12,-0.12 -0.07,0 -0.11,0.05 -0.12,0.12 -0.02,0.18 -0.04,0.36 -0.06,0.54 -0.01,0.09 -0.02,0.18 -0.03,0.27 0,0.01 0,0.03 0,0.04 h -0.1 c 0,-0.14 -0.01,-0.28 -0.01,-0.41 0,-0.2 -0.01,-0.41 -0.01,-0.61 0.41,0 0.79,0 1.18,0 z m -1.02,1.28 c 0.03,0.07 0.14,0.1 0.16,0.01 0,0 0,0 0,0 l 0.87,0.01 c 0.01,0.35 0.02,0.7 0.03,1.05 -0.07,0 -0.14,0 -0.21,0 0,-0.22 0,-0.43 -0.01,-0.65 0,-0.14 -0.22,-0.14 -0.22,0 0,0.22 0,0.43 -0.01,0.65 -0.14,0 -0.28,0 -0.42,0.01 -0.15,0 -0.15,0.24 0,0.24 0.14,0 0.28,0 0.42,0 0,0.26 -0.01,0.52 -0.01,0.78 -0.17,0.01 -0.35,0.01 -0.52,0.02 -0.17,0.01 -0.18,0.28 0,0.27 0.17,0 0.35,-0.01 0.52,-0.02 0,0.33 -0.01,0.66 -0.01,1 -0.17,0 -0.34,0 -0.51,-0.01 -0.07,0 -0.11,0.05 -0.12,0.1 -0.02,-0.64 -0.02,-1.28 -0.04,-1.93 0.01,0.02 0.02,0.05 0.05,0.05 0.12,0 0.12,-0.18 0,-0.18 -0.03,0 -0.04,0.03 -0.05,0.05 -0.01,-0.49 -0.02,-0.97 -0.03,-1.46 z m -0.02,4.95 c 0.19,0.01 0.39,0.01 0.58,0.01 0,0.36 0,0.71 0,1.07 -0.18,0.03 -0.37,0.05 -0.55,0.08 -0.01,-0.38 -0.02,-0.77 -0.03,-1.16 z m 0.9,0.02 c 0.12,0 0.24,0.01 0.36,0.01 v 0.11 c 0,0.06 0,0.11 0,0.17 0,0.03 0,0.06 0,0.08 0,0.05 0.02,0.08 0.04,0.12 0.04,0.07 0.16,0.07 0.2,0 0.02,-0.04 0.04,-0.08 0.04,-0.12 0,-0.03 0,-0.05 0,-0.08 0,-0.06 0,-0.11 0,-0.17 0,-0.03 0,-0.07 0,-0.1 0.17,0 0.34,0.01 0.51,0 v 0.05 c 0,0.18 0,0.35 0,0.53 0,0.11 0,0.22 0.01,0.32 -0.38,0.02 -0.76,0.06 -1.13,0.1 -0.03,-0.34 -0.03,-0.68 -0.03,-1.02 z m 1.4,1.21 c 0.36,-0.01 0.71,-0.02 1.07,-0.02 -0.01,0.13 -0.02,0.25 -0.02,0.38 0,0.1 0,0.2 -0.01,0.29 0,0.02 0,0.03 0,0.05 -0.39,0.03 -0.79,0.06 -1.18,0.09 -0.03,-0.19 -0.09,-0.38 -0.11,-0.57 -0.39,0.11 -0.77,0.27 -1.15,0.44 0,-0.18 0,-0.36 0,-0.54 0.47,-0.04 0.93,-0.1 1.4,-0.12 z m -3.43,4 c -0.01,-0.11 -0.01,-0.23 -0.02,-0.34 0.07,-0.07 0.14,-0.12 0.21,-0.19 0.27,-0.02 0.53,-0.04 0.8,-0.06 -0.02,0.25 -0.03,0.51 -0.03,0.77 -0.32,0.02 -0.63,0.02 -0.95,0.04 0,-0.08 0,-0.15 -0.01,-0.22 z m 3.53,0.38 c 0.23,-0.01 0.45,-0.01 0.68,-0.02 0,0.17 0,0.34 0.02,0.51 -0.23,0.01 -0.46,0.03 -0.7,0.04 0,-0.17 0,-0.35 0,-0.53 z m 5.6,-0.97 c 0,0 0,0 0,0 0.21,-0.02 0.27,-0.31 0.06,-0.36 -0.02,-0.01 -0.05,-0.01 -0.07,-0.01 -0.01,-0.22 -0.01,-0.45 -0.02,-0.67 0.13,0.08 0.26,0.18 0.38,0.27 0,0.02 0,0.04 0,0.06 0,0.05 0.02,0.09 0.03,0.13 0.02,0.29 0.04,0.57 0.07,0.86 0.01,0.1 0.02,0.2 0.03,0.29 -0.15,0 -0.3,0 -0.45,0 -0.01,-0.2 -0.02,-0.39 -0.03,-0.57 z m 0.11,-2.64 c 0.08,0 0.16,-0.01 0.23,-0.01 0,0.04 0,0.08 0,0.12 -0.08,-0.04 -0.15,-0.07 -0.23,-0.11 z m -1.34,-17.67 c 0,0.24 -0.01,0.49 -0.01,0.74 -0.27,0.06 -0.53,0.13 -0.79,0.17 -0.09,0.01 -0.17,0.02 -0.26,0.03 -0.02,-0.48 -0.05,-0.95 -0.08,-1.43 0.37,0.01 0.75,0.01 1.09,-0.08 0.04,-0.01 0.05,-0.04 0.05,-0.07 0,0.22 0,0.43 0,0.64 z m -1.37,1.08 c -0.37,0.01 -0.74,0.02 -1.11,0.02 0.05,-0.53 0.09,-1.05 0.1,-1.59 0.22,0 0.44,-0.01 0.66,-0.01 0.1,0 0.2,0 0.31,0.01 0.01,0.52 0.02,1.05 0.04,1.57 z m -4.04,-0.82 c -0.13,0 -0.25,0 -0.38,0 -0.02,-0.24 -0.06,-0.47 -0.09,-0.7 0,-0.01 -0.01,-0.02 -0.01,-0.03 0.13,0 0.26,0 0.4,0 0.03,0.24 0.06,0.48 0.08,0.73 z m -1.39,-1.26 c -0.01,0.02 -0.02,0.05 -0.03,0.07 0.01,-0.02 0.01,-0.05 0.02,-0.07 0,0 0.01,0 0.01,0 z m -0.11,0.45 c 0,0.01 0,0.02 0.01,0.02 0,0.03 -0.01,0.07 -0.01,0.1 -0.01,0.23 -0.01,0.46 0,0.69 -0.03,0 -0.07,0 -0.1,0 -0.03,0 -0.06,0.02 -0.08,0.03 0.07,-0.28 0.13,-0.56 0.18,-0.84 z m -0.21,1.01 c 0.02,0.04 0.05,0.08 0.11,0.08 0.04,0 0.07,0 0.11,0 0.01,0.16 0.02,0.32 0.02,0.48 -0.12,-0.01 -0.24,-0.01 -0.36,-0.02 0.05,-0.18 0.09,-0.36 0.12,-0.54 z m -0.17,0.81 c 0.14,0.01 0.29,0.01 0.43,0.02 0,0.06 0.01,0.12 0.01,0.17 0.01,0.16 0,0.35 0.06,0.5 0.05,0.12 0.13,0.23 0.23,0.31 -0.07,0 -0.15,0.01 -0.22,0.01 -0.11,0.01 -0.11,0.17 0,0.17 0.16,0 0.31,0 0.46,0 -0.01,0.21 -0.01,0.42 -0.02,0.63 -0.24,0 -0.49,-0.01 -0.73,-0.01 -0.01,-0.17 -0.01,-0.33 -0.02,-0.5 -0.02,-0.23 -0.07,-0.72 -0.23,-1.08 0,-0.08 0.02,-0.15 0.03,-0.22 z m 0.56,16.26 c -0.01,-0.15 -0.01,-0.29 -0.01,-0.44 0.18,-0.02 0.36,-0.03 0.54,-0.05 0,0.22 0,0.44 0,0.67 -0.17,0.09 -0.33,0.18 -0.49,0.28 -0.01,-0.16 -0.03,-0.31 -0.04,-0.46 z m -1.48,3.32 c 0,0.01 0,0.03 0,0.04 0,0.07 0.01,0.15 0.01,0.22 0,0 0,0 0,0 -0.06,0 -0.09,0.04 -0.11,0.08 -0.03,-0.03 -0.07,-0.04 -0.11,-0.04 -0.03,0 -0.05,0.02 -0.07,0.03 0.1,-0.1 0.18,-0.22 0.28,-0.33 z m 1.29,1.4 c 0,0.02 0,0.05 0,0.08 -0.23,-0.01 -0.47,-0.03 -0.7,-0.05 0.23,-0.01 0.46,-0.02 0.7,-0.03 z m 0.35,0.1 c 0,-0.04 -0.01,-0.08 -0.01,-0.12 0.65,-0.03 1.31,-0.06 1.96,-0.09 0,0.08 -0.01,0.17 -0.01,0.25 -0.65,0 -1.3,-0.01 -1.94,-0.04 z m 2.19,0.05 c 0,-0.09 0,-0.18 0,-0.27 0.24,-0.01 0.49,-0.02 0.73,-0.03 0,0 0.01,0 0.01,0 0,0.02 0.01,0.04 0.01,0.07 0.02,0.09 0.04,0.17 0.07,0.24 -0.27,0 -0.55,-0.01 -0.82,-0.01 z m 1.04,-0.27 c 0,-0.02 0,-0.03 -0.01,-0.05 0.42,-0.02 0.84,-0.04 1.26,-0.06 0.02,0.01 0.02,0.04 0.05,0.05 0.05,0.01 0.08,-0.01 0.11,-0.05 0,0 0,-0.01 0,-0.01 0.09,0 0.19,-0.01 0.28,-0.01 0,0.04 -0.01,0.09 -0.01,0.13 -0.01,0.07 -0.01,0.14 -0.02,0.21 -0.54,0.03 -1.09,0.06 -1.63,0.07 0.01,-0.1 -0.01,-0.19 -0.03,-0.28 z m 1.94,-0.01 c 0,-0.05 0,-0.1 0.01,-0.14 0.02,0 0.03,0 0.05,0 0.32,-0.02 0.63,-0.04 0.95,-0.06 -0.01,0.11 -0.02,0.23 -0.03,0.34 -0.1,0.01 -0.21,0.02 -0.31,0.03 -0.22,0.02 -0.45,0.02 -0.67,0.03 -0.01,-0.06 -0.01,-0.13 0,-0.2 z m 1.21,-0.21 c 0.01,0 0.01,0 0.02,0 0.36,-0.02 0.76,-0.03 1.11,-0.12 0.03,-0.01 0.03,-0.04 0.04,-0.06 0.01,0.13 0.02,0.26 0.04,0.39 -0.41,0.04 -0.82,0.08 -1.22,0.11 0,-0.1 0.01,-0.21 0.01,-0.32 z m 1.54,0.19 c -0.01,0 -0.01,0 0,0 -0.03,-0.3 -0.04,-0.6 -0.06,-0.9 0.15,0 0.31,0 0.46,0 0.01,0.08 0.01,0.15 0.02,0.23 0.02,0.19 0.03,0.41 0.09,0.61 -0.18,0.02 -0.35,0.04 -0.51,0.06 z m 0.72,-0.7 c -0.01,-0.07 -0.01,-0.13 -0.02,-0.2 0.15,0 0.29,0 0.43,-0.07 0.07,-0.03 0.07,-0.15 0,-0.19 -0.15,-0.07 -0.3,-0.07 -0.46,-0.07 -0.01,-0.11 -0.02,-0.22 -0.03,-0.33 -0.01,-0.1 -0.02,-0.2 -0.03,-0.3 0.19,0.13 0.42,0.17 0.64,0.13 0.01,0.01 0.02,0.02 0.03,0.03 -0.01,0.1 -0.02,0.19 -0.02,0.29 -0.01,0.13 -0.05,0.31 -0.01,0.43 0.05,0.13 0.25,0.19 0.33,0.04 0.06,-0.11 0.05,-0.26 0.06,-0.4 0.17,0.19 0.32,0.4 0.46,0.61 -0.01,0.02 -0.02,0.03 -0.02,0.05 0,0.02 0,0.05 0.01,0.07 -0.26,0 -0.51,0.01 -0.77,0.01 -0.17,0 -0.17,0.26 0,0.26 0.26,0.01 0.53,0.01 0.79,0.02 0,0.01 0,0.01 0,0.02 -0.44,0.07 -0.89,0.14 -1.33,0.19 -0.01,-0.19 -0.04,-0.4 -0.06,-0.59 z m 2.8,-0.6 c -0.44,-0.68 -0.99,-1.27 -1.58,-1.8 0.05,-1.39 -0.08,-2.82 -0.13,-4.21 -0.06,-1.59 -0.01,-3.2 -0.01,-4.79 0,-1.56 0,-3.13 0,-4.69 0,-1.17 0.1,-2.42 -0.01,-3.62 0.25,0.93 0.49,1.85 0.74,2.78 0.5,1.91 1,3.82 1.48,5.73 0.47,1.88 0.93,3.77 1.38,5.65 0.22,0.94 0.44,1.89 0.66,2.83 0.17,0.75 0.33,1.49 0.58,2.21 -1.03,0.26 -2.07,0.49 -3.12,0.68 0.15,-0.2 0.2,-0.48 0.01,-0.77 z m -2.13,-20.59 c -0.14,-0.09 -0.31,-0.08 -0.47,-0.02 -0.01,-0.15 -0.01,-0.3 -0.02,-0.45 -0.01,-0.24 -0.02,-0.48 -0.03,-0.72 0.13,0.02 0.26,0.04 0.38,0.06 -0.09,0.38 0.03,0.76 0.14,1.13 z m -1.95,0.43 c -0.16,0 -0.32,0.01 -0.47,0.04 0,-0.23 -0.01,-0.45 -0.01,-0.68 0,-0.41 -0.01,-0.81 -0.02,-1.22 0.19,0.02 0.37,0.04 0.56,0.06 -0.03,0.6 -0.05,1.2 -0.06,1.8 z m -0.78,-1.27 c 0,-0.03 -0.02,-0.06 -0.05,-0.07 -0.35,-0.09 -0.74,-0.09 -1.11,-0.07 -0.01,-0.17 -0.02,-0.35 -0.03,-0.52 0.4,0.01 0.8,0.03 1.2,0.06 -0.01,0.2 -0.01,0.4 -0.01,0.6 z m -1.45,-0.67 c 0,0.18 0.01,0.35 0.02,0.53 -0.08,0 -0.17,0.01 -0.25,0 -0.23,0 -0.47,-0.01 -0.7,-0.01 0,-0.18 0,-0.36 0.01,-0.53 0.03,0 0.07,0 0.1,0 0.27,-0.01 0.54,0 0.82,0.01 z m -1.23,0.52 c -0.24,0 -0.48,0 -0.71,-0.01 -0.08,0 -0.16,0 -0.25,0 0,-0.16 -0.02,-0.31 -0.02,-0.47 0.34,-0.01 0.67,-0.04 1.01,-0.04 -0.01,0.17 -0.02,0.34 -0.03,0.52 z m -1.34,-0.01 c -0.37,0 -0.74,0 -1.11,0 -0.01,-0.13 -0.02,-0.26 -0.04,-0.39 0.09,-0.01 0.17,-0.02 0.26,-0.03 0.3,-0.02 0.61,-0.02 0.91,-0.04 -0.01,0.16 -0.03,0.31 -0.02,0.46 z m -1.54,-0.34 c 0.01,0.12 0.02,0.23 0.04,0.35 -0.14,0 -0.29,0 -0.43,0 0,-0.1 0.01,-0.2 0.01,-0.3 0.12,-0.02 0.25,-0.04 0.38,-0.05 z m -3.04,8.56 c 0.03,1 0.05,2.01 0.09,3.01 0.06,1.59 0.09,3.18 0.13,4.76 0.02,0.78 0.05,1.56 0.05,2.33 0,0.39 0,0.78 -0.01,1.17 0,0.2 0,0.39 0.01,0.57 -0.6,0.62 -1.09,1.34 -1.43,2.16 -0.21,0.49 0.41,0.88 0.72,0.42 0.13,-0.2 0.3,-0.38 0.46,-0.57 0,0.01 -0.01,0.02 -0.01,0.03 -0.04,0.29 -0.07,0.59 -0.11,0.88 -0.99,-0.09 -1.98,-0.2 -2.97,-0.35 0,-0.01 0,-0.02 0.01,-0.03 1,-4.78 2.03,-9.58 3.06,-14.38 z m -3.72,17.59 c 0.7,0.23 1.4,0.43 2.13,0.54 0.41,0.06 0.82,0.11 1.23,0.14 0.38,0.03 0.87,0.11 1.22,-0.04 0.13,-0.05 0.14,-0.22 0,-0.27 -0.36,-0.14 -0.84,-0.07 -1.22,-0.1 -0.41,-0.03 -0.81,-0.07 -1.22,-0.13 -0.7,-0.11 -1.4,-0.26 -2.08,-0.45 0.03,-0.17 0.07,-0.33 0.1,-0.5 0.27,0.05 0.55,0.11 0.82,0.16 0.19,0.03 0.39,0.06 0.58,0.09 0.11,0.02 0.21,0.02 0.32,0.03 0.1,0.01 0.2,0.02 0.29,-0.03 0.08,-0.04 0.09,-0.16 0.03,-0.22 -0.07,-0.08 -0.17,-0.09 -0.27,-0.12 -0.1,-0.03 -0.2,-0.05 -0.31,-0.07 -0.19,-0.03 -0.39,-0.06 -0.58,-0.08 -0.27,-0.04 -0.54,-0.07 -0.82,-0.1 0.03,-0.12 0.05,-0.25 0.08,-0.37 1.03,0.16 2.07,0.31 3.12,0.41 5.57,0.53 11.23,0.15 16.68,-1.12 0.57,-0.13 1.13,-0.28 1.69,-0.43 -0.18,-0.56 -0.35,-1.13 -0.51,-1.7 -0.13,0.04 -0.27,0.06 -0.41,0.1 -0.09,-0.73 -0.26,-1.45 -0.43,-2.17 -0.22,-0.94 -0.44,-1.89 -0.67,-2.83 -0.46,-1.92 -0.93,-3.83 -1.42,-5.74 -0.48,-1.88 -0.97,-3.76 -1.47,-5.63 -0.25,-0.94 -0.51,-1.87 -0.77,-2.8 -0.13,-0.47 -0.26,-0.93 -0.39,-1.4 -0.1,-0.35 -0.18,-0.73 -0.39,-1.02 0.04,0.01 0.09,0 0.13,0 0.15,0.55 0.31,1.1 0.46,1.66 1.91,6.82 3.88,13.62 5.8,20.44 0.12,0.41 0.23,0.82 0.34,1.23 -0.28,0.08 -0.56,0.16 -0.84,0.25 -0.6,0.17 -1.19,0.37 -1.78,0.56 -0.58,0.18 -1.16,0.36 -1.73,0.54 -0.28,0.09 -0.58,0.13 -0.86,0.2 -0.32,0.09 -0.63,0.19 -0.94,0.29 -0.19,0.06 -0.11,0.34 0.08,0.29 0.3,-0.08 0.6,-0.15 0.9,-0.24 0.28,-0.08 0.55,-0.21 0.84,-0.29 0.6,-0.17 1.2,-0.31 1.8,-0.48 0.58,-0.16 1.17,-0.3 1.75,-0.46 0.28,-0.08 0.57,-0.16 0.85,-0.24 0.01,0 0.03,-0.01 0.04,-0.01 0.05,0.16 0.09,0.33 0.14,0.5 -0.18,0.03 -0.36,0.13 -0.52,0.21 -0.23,0.11 -0.45,0.22 -0.68,0.32 -0.49,0.21 -0.98,0.4 -1.49,0.56 -0.49,0.16 -0.99,0.32 -1.51,0.39 -0.51,0.07 -1.03,0.14 -1.54,0.19 -0.2,0.02 -0.21,0.33 0,0.32 0.52,-0.03 1.03,-0.08 1.54,-0.2 0.53,-0.13 1.07,-0.21 1.6,-0.35 0.51,-0.14 1.02,-0.3 1.51,-0.5 0.24,-0.09 0.47,-0.19 0.7,-0.3 0.17,-0.08 0.34,-0.16 0.48,-0.27 0.12,0.43 0.24,0.86 0.36,1.29 0,-0.01 -0.01,-0.01 -0.01,-0.02 -3.56,1 -7.22,1.62 -10.89,1.87 -4.06,0.28 -8.15,0.11 -12.17,-0.5 0.12,-0.49 0.21,-0.95 0.31,-1.4 z m 23.44,2.37 c -0.54,0.31 -1.23,0.32 -1.84,0.37 -0.66,0.06 -1.33,0.09 -2,0.11 -0.17,0.01 -0.35,-0.01 -0.52,-0.01 0.72,-0.14 1.44,-0.29 2.15,-0.46 0.69,-0.16 1.38,-0.34 2.07,-0.53 0.04,0.18 0.09,0.35 0.14,0.52 z m -7.29,11.26 c -0.07,0 -0.13,0.06 -0.13,0.13 v 0.23 c 0,0.04 0,0.08 0,0.12 -0.06,0 -0.12,0 -0.18,0 0,-0.02 0,-0.05 0.01,-0.07 0.01,-0.15 0.02,-0.31 0.03,-0.46 0.02,-0.3 0.03,-0.6 0.05,-0.9 0.01,-0.16 -0.24,-0.16 -0.25,0 -0.02,0.29 -0.04,0.59 -0.06,0.88 -0.01,0.15 -0.02,0.29 -0.03,0.44 0,0.03 0,0.07 -0.01,0.11 -0.12,0 -0.25,0.01 -0.37,0.01 -0.15,0 -0.3,0 -0.45,0 0.01,-0.14 0.01,-0.29 0.02,-0.43 0.02,-0.38 0.03,-0.75 0.05,-1.13 0.01,-0.15 -0.23,-0.15 -0.23,0 l -0.06,1.13 c -0.01,0.11 -0.01,0.23 -0.02,0.34 -0.01,0.02 -0.02,0.03 -0.02,0.05 0,0.01 0,0.02 0,0.04 -0.2,0 -0.4,0 -0.6,0 -0.01,-0.19 -0.01,-0.38 -0.01,-0.57 -0.01,-0.4 -0.03,-0.8 -0.05,-1.21 -0.01,-0.1 -0.16,-0.1 -0.16,0 0.01,0.4 0.02,0.8 0.05,1.21 0.01,0.19 0.03,0.38 0.04,0.57 -0.24,0 -0.47,0 -0.71,0 0.15,-0.24 0.17,-0.58 0.2,-0.85 0.03,-0.28 0.05,-0.55 0.07,-0.83 0.03,-0.46 0.05,-0.92 0.05,-1.38 0.01,0 0.01,0 0.02,0 0.37,-0.03 0.74,-0.06 1.11,-0.09 0.66,-0.05 1.35,-0.08 2.01,-0.16 0.08,0.25 0.13,0.52 0.2,0.79 0.11,0.37 0.13,0.55 0.16,0.88 0.01,0.16 0.02,0.32 0.01,0.49 0,0.09 -0.01,0.17 -0.02,0.26 0,0.04 -0.01,0.08 -0.01,0.12 -0.01,0.07 -0.02,0.14 -0.04,0.21 -0.01,0.03 -0.02,0.06 -0.04,0.09 0,0.01 -0.01,0.02 -0.01,0.03 -0.06,0.13 -0.1,0.27 -0.15,0.41 -0.11,0 -0.23,0 -0.34,0.01 0,-0.04 0,-0.08 0,-0.12 v -0.23 c 0,-0.06 -0.06,-0.13 -0.13,-0.12 z m -6.23,0.51 c -0.33,0 -0.66,0 -0.99,0 -0.08,-0.09 -0.16,-0.18 -0.22,-0.29 0.05,-0.26 0.09,-0.52 0.16,-0.77 0.04,-0.14 0.08,-0.27 0.13,-0.41 0,-0.01 0,-0.01 0.01,-0.02 0.01,-0.02 0.02,-0.04 0.03,-0.06 0.03,-0.07 0.07,-0.14 0.11,-0.21 0.03,-0.05 0.06,-0.1 0.1,-0.15 0.01,-0.02 0.03,-0.04 0.04,-0.06 0,0 0,0 0,0 0.06,-0.07 0.13,-0.13 0.19,-0.2 0.01,0 0.02,-0.01 0.03,-0.01 0.14,-0.05 0.3,-0.07 0.42,-0.12 0.1,-0.04 0.22,-0.1 0.33,-0.15 0.02,-0.01 0.04,-0.02 0.07,-0.04 0.02,0 0.03,0 0.03,0 0.05,0.01 0.1,0.02 0.15,0.03 0.02,0.01 0.09,0.03 0.11,0.04 0.01,0 0.02,0.01 0.02,0.01 0.03,0.02 0.07,0.03 0.1,0.05 0.05,0.03 0.09,0.06 0.14,0.09 0,0 0.01,0.01 0.03,0.02 0.02,0.01 0.04,0.03 0.05,0.04 0.04,0.04 0.08,0.07 0.12,0.11 0.01,0.01 0.06,0.07 0.08,0.08 0.01,0.02 0.06,0.08 0.07,0.1 0.03,0.04 0.05,0.09 0.08,0.14 0,0 0.03,0.07 0.04,0.09 0.02,0.07 0.04,0.13 0.05,0.2 0,0.02 0.01,0.04 0.01,0.06 0,0 0,0 0,0.01 0,0.07 0.01,0.14 0.01,0.21 0,0.05 0,0.09 -0.01,0.14 0,0.01 -0.01,0.08 -0.02,0.1 -0.01,0.06 -0.03,0.12 -0.04,0.17 -0.01,0.03 -0.02,0.06 -0.03,0.08 0,0.01 -0.02,0.04 -0.02,0.06 -0.01,0.01 -0.01,0.03 -0.01,0.03 -0.02,0.04 -0.03,0.07 -0.05,0.11 -0.03,0.05 -0.06,0.1 -0.09,0.15 -0.03,0.05 -0.06,0.1 -0.1,0.15 0.06,-0.08 -0.05,0.06 -0.07,0.08 -0.04,0.04 -0.07,0.08 -0.11,0.11 -0.34,0.03 -0.64,0.03 -0.95,0.03 z m -3.89,-1.47 c -0.02,0.36 -0.05,0.71 -0.07,1.07 -0.01,0.14 -0.02,0.28 -0.02,0.42 -0.23,0 -0.46,0 -0.68,0 0.05,-0.34 0.06,-0.69 0.06,-1.04 0,-0.37 0,-0.74 0,-1.11 0,-0.14 -0.22,-0.14 -0.22,0 0,0.37 0,0.74 0,1.11 0,0.35 0,0.69 0.06,1.04 -0.17,0 -0.34,0 -0.51,0 -0.27,0 -0.54,0.01 -0.81,0.01 0,-0.01 -0.01,-0.02 -0.01,-0.03 -0.05,-0.22 -0.09,-0.44 -0.12,-0.67 -0.05,-0.45 -0.05,-0.9 0,-1.35 0.02,-0.15 -0.22,-0.15 -0.23,0 -0.05,0.47 -0.06,0.95 0,1.42 0.02,0.21 0.06,0.42 0.1,0.62 -0.24,0 -0.48,0 -0.72,0.01 0.03,-0.15 0,-0.31 -0.04,-0.47 -0.02,-0.07 -0.03,-0.15 -0.04,-0.22 0,-0.03 -0.01,-0.05 -0.01,-0.08 0,-0.01 0,-0.03 -0.01,-0.05 -0.03,-0.29 -0.05,-0.58 -0.05,-0.86 0,-0.47 0.08,-0.95 0.06,-1.42 0.7,0.09 1.42,0.09 2.13,0.1 0.38,0.01 0.75,0.02 1.13,0.03 0.27,0.01 0.54,-0.02 0.78,-0.11 -0.01,0.4 -0.02,0.81 -0.03,1.21 -0.01,0.01 -0.04,0.01 -0.04,0.04 0,0.29 -0.01,0.59 -0.01,0.88 0,0.15 0,0.29 0,0.44 0,0.14 0,0.27 0.02,0.4 0,0.01 0,0.01 0,0.02 -0.01,0.02 0,0.04 -0.01,0.06 -0.17,0 -0.34,0 -0.51,0 0.01,-0.14 0.01,-0.28 0.02,-0.42 0.01,-0.36 0.02,-0.71 0.04,-1.07 -0.01,-0.13 -0.25,-0.13 -0.26,0.02 z m -8.56,-0.17 c 0.01,0 0.03,0 0.04,0 0.09,0 0.18,0 0.28,0 0.1,0 0.19,0 0.29,-0.03 0.12,-0.04 0.12,-0.2 0,-0.24 -0.1,-0.03 -0.19,-0.03 -0.29,-0.03 -0.09,0 -0.17,0 -0.26,0 0.04,-0.22 0.09,-0.44 0.13,-0.67 0.18,0 0.36,0 0.55,0.01 0.17,0 0.33,0 0.5,0 0.09,0 0.18,0 0.27,-0.01 0.03,0 0.05,0 0.08,-0.01 -0.01,0.24 -0.03,0.47 -0.04,0.71 -0.03,0.49 -0.08,1 -0.12,1.5 0,-0.04 -0.02,-0.07 -0.06,-0.09 -0.15,-0.04 -0.3,-0.02 -0.46,-0.02 -0.16,0.01 -0.31,0.01 -0.47,0.02 l -0.66,0.04 c 0.06,-0.39 0.14,-0.78 0.22,-1.18 z m 1.65,-6.06 c -0.01,0 -0.01,-0.01 -0.02,-0.01 -0.04,-0.02 -0.07,-0.03 -0.12,-0.03 -0.03,0 -0.07,0 -0.1,-0.01 -0.07,0 -0.14,0.01 -0.2,0.01 0.08,-0.38 0.16,-0.76 0.24,-1.14 0.18,-0.01 0.36,-0.02 0.55,-0.03 -0.07,0.45 -0.08,0.92 -0.1,1.35 0,-0.03 -0.01,-0.05 -0.03,-0.07 -0.04,-0.03 -0.07,-0.05 -0.12,-0.06 -0.01,0 -0.1,-0.01 -0.1,-0.02 -0.01,0 0,0 0,0.01 z m 13.96,-2.37 c 0.01,0.16 0.02,0.31 0.04,0.47 0.01,0.07 0.02,0.14 0.03,0.22 0,0.02 0.01,0.04 0.01,0.05 -0.34,-0.41 -0.76,-0.76 -1.26,-1.01 0.39,0 0.78,0 1.16,-0.01 0.01,0.1 0.01,0.19 0.02,0.28 z m -0.73,7.71 c -0.12,-0.23 -0.27,-0.43 -0.45,-0.62 0.13,-0.07 0.25,-0.15 0.37,-0.24 0.05,0.03 0.11,0.07 0.17,0.09 -0.03,0.26 -0.06,0.51 -0.09,0.77 z m 0.37,-4.03 c -0.18,1.22 -1.13,2.38 -2.4,2.55 -1.22,0.16 -2.55,-0.55 -3.03,-1.71 -0.25,-0.6 -0.25,-1.27 -0.07,-1.88 0.22,-0.2 0.45,-0.4 0.67,-0.61 0.29,-0.27 0.55,-0.56 0.87,-0.79 0.55,-0.39 1.21,-0.68 1.89,-0.56 1.36,0.23 2.26,1.67 2.07,3 z m -6.12,-3.91 c 0.69,0.02 1.38,0.03 2.07,0.02 -0.03,0.02 -0.07,0.02 -0.1,0.04 -0.44,0.25 -0.84,0.58 -1.21,0.93 -0.03,-0.01 -0.05,-0.03 -0.08,-0.04 -0.21,-0.07 -0.44,-0.06 -0.66,-0.07 -0.05,0 -0.1,0 -0.14,0 0.33,-0.13 0.53,-0.67 0.12,-0.88 z m -5.99,3.86 c 0.02,0.07 0.09,0.13 0.18,0.11 0.08,-0.02 0.16,-0.04 0.24,-0.06 -0.01,0.13 -0.01,0.26 -0.01,0.39 -0.15,0.06 -0.29,0.14 -0.43,0.22 0,-0.22 0.01,-0.44 0.02,-0.66 z m 1.04,-1.1 c 0.02,0 0.05,0 0.07,0 0,0.08 0,0.16 0,0.23 0,0.14 -0.01,0.28 -0.01,0.42 -0.03,0.01 -0.06,0.02 -0.09,0.03 -0.06,0.02 -0.13,0.03 -0.19,0.05 0.01,-0.24 0.02,-0.47 0.03,-0.71 0.06,-0.01 0.12,-0.02 0.19,-0.02 z m -0.18,4.07 c -0.06,0.01 -0.11,0.04 -0.16,0.05 0.01,-0.22 0.02,-0.44 0.02,-0.67 0.02,-0.01 0.05,-0.01 0.07,-0.02 0.08,-0.02 0.15,-0.05 0.23,-0.07 -0.01,0.23 -0.02,0.45 -0.02,0.68 -0.04,0.02 -0.09,0.02 -0.14,0.03 z m -0.5,-1.24 c 0,0.12 -0.01,0.25 -0.01,0.37 -0.15,0.05 -0.29,0.1 -0.44,0.15 l 0.02,-0.39 c 0.13,-0.06 0.28,-0.1 0.43,-0.13 z m 0.67,0.14 c -0.1,0.03 -0.2,0.06 -0.3,0.1 0,-0.12 0.01,-0.23 0.01,-0.35 0.1,-0.01 0.2,-0.02 0.29,-0.03 0.01,0.1 0.01,0.19 0,0.28 z m 0.03,-0.8 c 0,0.04 0,0.08 0,0.12 -0.1,0.01 -0.2,0.02 -0.29,0.03 0.01,-0.17 0.01,-0.35 0.02,-0.52 0.05,-0.01 0.09,-0.03 0.14,-0.04 0.05,-0.01 0.1,-0.01 0.16,-0.02 -0.02,0.14 -0.03,0.29 -0.03,0.43 z m -1.18,1.54 c 0.15,-0.04 0.3,-0.09 0.45,-0.13 -0.01,0.23 -0.02,0.46 -0.02,0.69 -0.16,0.07 -0.31,0.15 -0.46,0.24 z m 1.56,-2.8 c 0.04,-0.01 0.07,-0.02 0.11,-0.02 0.08,-0.02 0.16,-0.04 0.23,-0.06 0,0.16 0,0.32 0,0.48 -0.1,-0.06 -0.22,-0.06 -0.34,-0.05 0,-0.12 0,-0.23 0,-0.35 z m 0.35,-0.44 c -0.03,0 -0.07,0.01 -0.1,0.02 -0.08,0.02 -0.16,0.04 -0.23,0.06 0,0 -0.01,0 -0.01,0 0,-0.09 0,-0.18 0,-0.27 0,-0.1 0,-0.2 0.01,-0.3 0.05,0 0.11,-0.01 0.16,-0.02 0.07,-0.01 0.14,-0.02 0.2,-0.05 -0.02,0.18 -0.03,0.37 -0.03,0.56 z m -0.7,0.52 c 0,0.11 -0.01,0.22 -0.01,0.34 -0.09,0.02 -0.18,0.03 -0.27,0.06 -0.01,0 -0.01,0 -0.02,0.01 0,-0.11 0.01,-0.22 0.01,-0.33 0.1,-0.03 0.19,-0.06 0.29,-0.08 z m -1.14,1.14 c 0.02,0 0.04,0.01 0.07,-0.01 0.12,-0.07 0.24,-0.13 0.36,-0.18 -0.01,0.15 -0.01,0.31 -0.02,0.46 -0.15,0.04 -0.29,0.08 -0.43,0.13 0.01,-0.13 0.02,-0.27 0.02,-0.4 z m -0.12,2.68 c 0.05,0.04 0.12,0.07 0.2,0.02 0.08,-0.05 0.17,-0.09 0.26,-0.13 -0.01,0.19 -0.01,0.38 -0.02,0.57 -0.16,0.05 -0.32,0.1 -0.47,0.17 z m 0.86,-0.26 c 0.09,-0.03 0.19,-0.07 0.28,-0.09 0.01,0 0.02,0 0.03,-0.01 0,0.24 0.01,0.47 0.01,0.71 -0.12,0.01 -0.24,0.01 -0.35,0.03 0.01,-0.22 0.02,-0.43 0.03,-0.64 z m 0.88,-0.68 c -0.05,0.02 -0.09,0.07 -0.13,0.11 0,0 0,0 0,0 -0.01,0 -0.02,0 -0.04,0.01 0,-0.25 0.01,-0.49 0.01,-0.74 0.02,-0.01 0.05,-0.02 0.07,-0.02 0.1,-0.04 0.17,-0.06 0.21,-0.17 0.02,-0.07 -0.02,-0.14 -0.07,-0.17 -0.07,-0.05 -0.14,-0.04 -0.21,-0.02 0,-0.07 0,-0.14 0,-0.2 0.09,-0.01 0.16,-0.01 0.23,-0.07 0.06,-0.05 0.05,-0.14 0,-0.19 -0.06,-0.07 -0.14,-0.08 -0.23,-0.09 0,-0.05 0,-0.09 0,-0.14 0,-0.16 0.01,-0.32 0.01,-0.48 0.12,-0.01 0.25,-0.03 0.35,-0.1 -0.01,0.29 -0.01,0.59 -0.02,0.88 -0.01,0.3 -0.07,0.7 0.01,1.03 -0.11,0.08 -0.17,0.21 -0.19,0.36 z m 0.27,-4.2 c 0,0 0,0 0,0 -0.11,-0.06 -0.25,-0.04 -0.37,-0.03 0,-0.15 0,-0.3 0,-0.44 0.08,0 0.16,0 0.23,0 0.09,0 0.17,0.02 0.25,-0.03 -0.05,0.16 -0.09,0.33 -0.11,0.5 z m -0.72,-0.01 c -0.03,0 -0.05,0 -0.08,0.01 -0.06,0 -0.12,0.01 -0.18,0.01 0.01,-0.16 0,-0.31 0,-0.47 0.03,0 0.05,-0.01 0.08,-0.02 0.07,-0.01 0.13,0 0.2,0 -0.01,0.17 -0.02,0.32 -0.02,0.47 z m -0.66,0.06 c -0.07,0.01 -0.14,0.01 -0.21,0.02 -0.08,0.01 -0.16,0.07 -0.16,0.16 0,0.08 0.07,0.16 0.16,0.16 0.07,0 0.13,-0.01 0.2,-0.01 -0.01,0.26 -0.01,0.53 -0.02,0.79 -0.11,0.03 -0.22,0.06 -0.33,0.09 -0.05,0.01 -0.08,0.05 -0.1,0.09 0.01,-0.28 0.02,-0.55 0.03,-0.83 0.01,-0.26 0.03,-0.53 0.05,-0.8 0.14,-0.04 0.27,-0.05 0.41,-0.08 -0.01,0.12 -0.02,0.26 -0.03,0.41 z m -0.68,6.17 c 0.15,-0.08 0.31,-0.14 0.47,-0.19 -0.01,0.29 -0.02,0.58 -0.03,0.87 -0.16,0.06 -0.32,0.14 -0.46,0.23 0,-0.31 0.01,-0.61 0.02,-0.91 z m 0.87,-0.21 c 0,-0.03 0,-0.05 0,-0.08 0.01,0 0.03,-0.01 0.04,-0.01 0.09,-0.01 0.19,-0.01 0.29,-0.01 -0.01,0.12 -0.03,0.24 -0.04,0.35 -0.01,0.15 0,0.29 0,0.44 -0.11,0.02 -0.22,0.02 -0.32,0.05 0.01,-0.25 0.02,-0.49 0.03,-0.74 z m 2.31,-3.2 c 0,-0.36 0,-0.72 -0.01,-1.08 -0.01,-0.64 0.03,-1.31 -0.08,-1.95 0.66,0.03 1.32,0.02 1.97,0.03 0.32,0 0.63,0 0.94,0 -0.06,0.1 -0.12,0.19 -0.19,0.29 0,0 0,0 0,0 -0.05,0.03 -0.09,0.09 -0.07,0.15 0,0.01 0.01,0.01 0.01,0.01 -0.01,0.05 -0.01,0.1 0,0.15 -0.01,0.03 -0.01,0.07 -0.02,0.1 -0.15,0.02 -0.3,0.05 -0.44,0.07 -0.29,0.04 -0.58,0.08 -0.86,0.12 -0.17,0.02 -0.13,0.33 0.04,0.31 0.29,-0.04 0.58,-0.07 0.87,-0.11 0.1,-0.01 0.21,-0.02 0.31,-0.04 -0.08,0.36 -0.12,0.73 -0.08,1.1 0.02,0.18 0.07,0.36 0.11,0.53 -0.14,0.01 -0.27,0.02 -0.41,0.03 -0.34,0.02 -0.68,0.04 -1.01,0.06 -0.18,0.01 -0.18,0.28 0,0.28 0.34,-0.02 0.69,-0.03 1.03,-0.05 0.16,-0.01 0.32,-0.01 0.49,-0.02 0.07,0.2 0.16,0.39 0.27,0.57 -0.12,-0.01 -0.24,-0.02 -0.35,-0.04 -0.18,-0.03 -0.36,-0.02 -0.55,-0.03 -0.37,-0.02 -0.74,-0.03 -1.11,-0.05 -0.18,-0.01 -0.18,0.27 0,0.28 0.37,0.02 0.74,0.04 1.11,0.05 0.18,0.01 0.37,0.02 0.55,0.02 0.17,-0.01 0.33,0.01 0.49,-0.01 0.03,0.05 0.07,0.1 0.1,0.15 -0.21,-0.07 -0.45,-0.08 -0.68,-0.08 -0.38,0 -0.75,0.01 -1.13,0.01 -0.44,0 -0.88,0 -1.32,0.01 0.01,-0.1 0.01,-0.2 0.01,-0.3 0.01,-0.18 0.01,-0.37 0.01,-0.56 z m 4.06,3.66 c -0.02,-0.64 -0.05,-1.27 -0.08,-1.91 0.27,0.19 0.55,0.37 0.86,0.49 -0.19,0.22 -0.36,0.47 -0.48,0.74 -0.14,0.21 -0.23,0.44 -0.3,0.68 z m -5.12,-7.33 c 0,0.03 0.01,0.05 0.02,0.08 -0.06,-0.03 -0.13,-0.05 -0.2,-0.06 -0.09,-0.02 -0.18,-0.03 -0.27,-0.04 0,0 0,0 -0.01,0 -0.01,-0.11 -0.01,-0.23 -0.02,-0.34 0.13,-0.01 0.27,-0.02 0.4,-0.03 0.08,0 0.16,-0.01 0.23,-0.01 -0.1,0.11 -0.16,0.24 -0.15,0.4 z m -0.72,-0.01 c -0.09,0 -0.19,0 -0.28,0.01 -0.02,0 -0.03,0.01 -0.04,0.01 0,-0.11 0.01,-0.21 0,-0.32 0.12,-0.01 0.24,-0.02 0.36,-0.03 -0.02,0.1 -0.03,0.21 -0.04,0.33 z m -0.66,0.07 c -0.14,0.03 -0.29,0.07 -0.42,0.12 0,-0.15 -0.01,-0.29 -0.03,-0.44 0.16,-0.01 0.32,-0.02 0.48,-0.04 -0.02,0.12 -0.02,0.24 -0.03,0.36 z m -0.78,8.4 c 0.15,-0.11 0.31,-0.2 0.47,-0.28 0,0.15 -0.01,0.29 -0.01,0.44 0,0.05 0,0.1 0,0.16 -0.16,0 -0.32,0.01 -0.48,0.02 0,-0.12 0.01,-0.23 0.02,-0.34 z m 0.83,0.32 c 0,-0.04 0,-0.07 0.01,-0.11 0.01,-0.19 0.02,-0.39 0.03,-0.58 0,-0.01 0,-0.03 0,-0.04 0.04,-0.01 0.07,-0.03 0.11,-0.04 0.08,-0.02 0.16,-0.02 0.23,-0.03 0,0.01 0,0.03 0,0.04 0.01,0.15 0.02,0.3 0.03,0.45 0.01,0.12 0.03,0.22 0.06,0.32 -0.16,-0.01 -0.31,-0.01 -0.47,-0.01 z m 11.19,-0.06 c 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 z m 6.54,-0.09 c -0.02,0.01 -0.04,0.02 -0.07,0.03 -0.05,0 -0.1,0 -0.14,0 -0.01,-0.13 -0.01,-0.26 -0.02,-0.39 0,0 0,0 0,0 0.05,-0.03 0.09,-0.07 0.09,-0.14 0,-0.01 0,-0.03 -0.01,-0.04 -0.02,-0.05 -0.05,-0.08 -0.09,-0.1 -0.01,-0.28 -0.01,-0.56 -0.02,-0.83 0.09,-0.02 0.18,-0.04 0.28,-0.04 0.01,0 0.02,0 0.04,0 0,0.37 -0.01,0.75 -0.04,1.12 -0.01,0.14 -0.02,0.27 -0.02,0.39 z m -1.27,-5.63 c 0,0.13 0.01,0.26 0.01,0.39 -0.05,0.01 -0.09,0.01 -0.14,0.02 -0.03,0.01 -0.05,0.03 -0.06,0.05 0.02,-0.14 0.04,-0.27 0.05,-0.41 0,-0.01 0,-0.02 0,-0.04 0.05,0 0.1,0 0.14,-0.01 z m 1.33,2.62 c -0.07,0.01 -0.14,0.03 -0.21,0.04 -0.04,0.01 -0.09,0.02 -0.13,0.04 -0.01,-0.24 -0.01,-0.47 -0.02,-0.71 0.07,0 0.15,0 0.22,-0.02 0.04,-0.01 0.08,-0.01 0.13,-0.02 0.01,0.23 0.01,0.45 0.01,0.67 z m -0.63,2.4 c -0.03,0.01 -0.05,0.01 -0.08,0.02 -0.02,0 -0.04,0.01 -0.06,0.01 0.02,-0.25 0.01,-0.49 -0.01,-0.73 0.04,-0.02 0.08,-0.03 0.12,-0.04 0.02,0.24 0.03,0.49 0.03,0.74 z m -0.37,-3.39 c -0.01,-0.31 -0.01,-0.63 -0.02,-0.94 0.09,-0.01 0.18,-0.04 0.27,-0.04 0.01,0.21 0.01,0.42 0.02,0.63 0,0.12 0.01,0.24 0.01,0.36 l -0.28,0.02 c 0,-0.02 0,-0.02 0,-0.03 z m 0.29,0.38 c 0.01,0.26 0.01,0.52 0.02,0.78 -0.1,0.03 -0.2,0.06 -0.31,0.08 0.01,-0.28 0.01,-0.56 0,-0.84 0.1,-0.01 0.2,-0.01 0.29,-0.02 z m -0.28,1.25 c 0.1,-0.03 0.21,-0.05 0.31,-0.08 0.01,0.23 0.01,0.46 0.02,0.69 -0.05,0.02 -0.1,0.04 -0.15,0.06 -0.03,-0.23 -0.11,-0.45 -0.18,-0.67 z m 0.24,-2.94 c -0.09,0 -0.18,0.03 -0.27,0.04 0,-0.13 0,-0.26 -0.01,-0.4 0.06,-0.01 0.11,-0.02 0.17,-0.02 0.03,0 0.07,-0.01 0.1,-0.01 0,0.12 0,0.25 0.01,0.39 z m -0.92,0.93 c 0.07,-0.17 0.09,-0.36 0.11,-0.54 0,-0.02 0,-0.04 0.01,-0.06 0.03,0.06 0.09,0.11 0.18,0.08 0.02,-0.01 0.04,0 0.06,-0.01 0.01,0.3 0.01,0.6 0.02,0.9 0,0.01 0,0.03 0,0.04 l -0.32,0.02 c 0,-0.02 0,-0.04 0,-0.05 -0.01,-0.1 -0.06,-0.2 -0.12,-0.28 0.02,-0.03 0.05,-0.06 0.06,-0.1 z m 0.38,0.79 c 0,0.15 0,0.3 0.01,0.45 -0.03,-0.05 -0.05,-0.11 -0.08,-0.16 -0.07,-0.1 -0.15,-0.18 -0.23,-0.27 0.09,0 0.2,-0.01 0.3,-0.02 z m 0.5,3.58 c 0.01,-0.09 0.01,-0.18 0.01,-0.26 0.05,-0.01 0.1,-0.01 0.15,-0.02 h 0.01 c 0,0.11 0,0.22 0,0.33 -0.06,0 -0.12,0 -0.18,0 0,-0.02 0.01,-0.04 0.01,-0.05 z m 0.47,-1.85 c 0,-0.23 -0.01,-0.46 -0.01,-0.68 0.07,-0.02 0.15,-0.04 0.22,-0.06 0.04,-0.01 0.08,-0.03 0.11,-0.04 0,0.24 0.01,0.49 0.01,0.73 -0.02,0 -0.05,0 -0.07,0.01 -0.09,0.01 -0.17,0.03 -0.26,0.04 z m 0.31,-2.37 c 0,0.07 0,0.14 0,0.21 -0.06,0 -0.12,-0.01 -0.17,-0.01 -0.06,0 -0.12,0.01 -0.18,0.01 0,-0.11 0,-0.23 -0.01,-0.34 0,-0.21 -0.01,-0.42 -0.01,-0.63 0.04,0 0.08,0 0.12,0.01 0.03,0 0.06,0.01 0.08,0.01 0.05,0.01 0.08,0 0.13,0 0,0 0,0 0.01,0 0,0.25 0.02,0.49 0.03,0.74 z m -0.2,-1.06 c -0.06,-0.01 -0.13,-0.01 -0.19,-0.02 0,-0.15 -0.01,-0.31 -0.01,-0.46 0.1,-0.02 0.2,-0.03 0.27,-0.1 0.03,-0.02 0.04,-0.06 0.03,-0.1 0.01,0.24 0.03,0.48 0.04,0.72 -0.04,-0.02 -0.08,-0.03 -0.14,-0.04 z m 0.06,-1.43 c 0.02,0.25 0.02,0.5 0.04,0.75 0,-0.04 -0.02,-0.07 -0.06,-0.09 -0.08,-0.03 -0.16,-0.03 -0.25,-0.02 -0.01,-0.33 -0.01,-0.66 -0.02,-0.99 0.09,0 0.17,0 0.26,0 0.01,0.12 0.03,0.24 0.03,0.35 z m -0.62,0.7 c -0.05,0.01 -0.11,0.02 -0.16,0.03 -0.04,0.01 -0.07,0.01 -0.11,0.02 -0.01,-0.33 -0.02,-0.66 -0.02,-0.99 0.09,-0.02 0.17,-0.07 0.26,-0.08 0.01,0.33 0.02,0.67 0.03,1.02 z m -0.56,0.09 c -0.04,0.01 -0.08,0.01 -0.13,0.02 0.02,-0.27 0.03,-0.54 0.03,-0.81 0,-0.04 -0.01,-0.09 -0.01,-0.13 0.03,-0.01 0.07,-0.02 0.1,-0.03 0,0.31 0,0.63 0.01,0.95 z m 1.11,-1.53 c -0.08,-0.01 -0.16,-0.03 -0.24,-0.02 -0.01,-0.17 -0.02,-0.34 -0.02,-0.51 0.07,0.01 0.14,0.02 0.21,0.03 0.02,0.16 0.03,0.33 0.05,0.5 z m -0.58,0.01 c -0.03,0 -0.06,0 -0.09,0.01 -0.06,0.01 -0.12,0.03 -0.18,0.05 -0.01,-0.23 -0.01,-0.45 -0.02,-0.68 0.07,0.01 0.14,0.02 0.2,0.03 0.03,0 0.05,0.01 0.08,0.01 0.01,0.19 0.01,0.38 0.01,0.58 z m -0.55,0.13 c -0.04,0.01 -0.08,0.04 -0.12,0.05 -0.01,-0.2 -0.02,-0.41 -0.05,-0.61 -0.01,-0.08 -0.03,-0.17 -0.05,-0.27 0.07,0.01 0.14,0.02 0.21,0.03 0,0.27 0.01,0.53 0.01,0.8 z m 1.02,-1.96 c -0.01,0.33 0.02,0.66 0.04,0.99 -0.05,-0.01 -0.1,-0.01 -0.14,-0.02 -0.02,0 -0.04,-0.01 -0.07,-0.01 -0.01,-0.32 -0.02,-0.64 -0.04,-0.96 0.08,0 0.14,0 0.21,0 z m -0.48,0.92 c 0,0 0,0 0,0 -0.1,-0.01 -0.19,-0.03 -0.29,-0.04 -0.01,-0.29 -0.01,-0.58 -0.02,-0.86 0,0 0.01,0 0.01,0 0.1,-0.01 0.19,0 0.29,0 0.01,0.29 0.01,0.6 0.01,0.9 z m -0.57,-0.87 c 0,0.26 0.01,0.53 0.01,0.79 -0.07,-0.01 -0.15,-0.02 -0.22,-0.03 -0.01,0 -0.01,0 -0.02,0 0.14,-0.13 0.24,-0.3 0.23,-0.49 0,-0.09 -0.03,-0.17 -0.06,-0.26 0.02,0 0.04,0 0.06,-0.01 z m -1.58,1.03 c 0.03,0 0.07,0 0.1,0 0,0.14 0,0.29 0.01,0.42 0.02,0.36 0.05,0.71 0.04,1.07 0,0.36 -0.03,0.71 -0.06,1.07 -0.02,0.21 -0.03,0.28 -0.05,0.44 -0.03,0.22 -0.09,0.43 -0.09,0.65 0,0.02 0.01,0.03 0.01,0.05 -0.15,0.02 -0.3,0.04 -0.45,0.05 -0.37,0.04 -0.74,0.07 -1.11,0.11 -0.35,0.03 -0.7,0.07 -1.05,0.1 0.01,-0.01 0.01,-0.02 0.02,-0.03 l 0.81,-0.1 0.43,-0.05 c 0.14,-0.02 0.36,-0.02 0.44,-0.15 0.03,-0.05 0.02,-0.13 -0.02,-0.17 -0.11,-0.11 -0.33,-0.05 -0.47,-0.03 -0.14,0.02 -0.29,0.05 -0.43,0.07 -0.19,0.03 -0.38,0.06 -0.57,0.09 0.09,-0.17 0.17,-0.35 0.24,-0.53 0.17,-0.01 0.34,-0.03 0.5,-0.04 0.11,-0.01 0.22,-0.02 0.33,-0.03 0.12,-0.01 0.24,-0.01 0.35,-0.07 0.08,-0.04 0.06,-0.17 -0.03,-0.19 -0.11,-0.03 -0.22,-0.01 -0.33,-0.01 -0.11,0.01 -0.22,0.01 -0.33,0.02 -0.13,0.01 -0.26,0.02 -0.39,0.03 0.01,-0.02 0.01,-0.04 0.02,-0.05 0.07,-0.26 0.11,-0.51 0.14,-0.77 0.25,-0.02 0.51,-0.05 0.76,-0.07 0.16,-0.01 0.31,-0.04 0.47,-0.06 0.15,-0.02 0.35,-0.02 0.46,-0.13 0.04,-0.04 0.03,-0.12 -0.02,-0.14 -0.14,-0.08 -0.33,-0.03 -0.48,-0.02 -0.16,0.02 -0.32,0.03 -0.47,0.05 l -0.72,0.1 c 0.01,-0.31 -0.02,-0.61 -0.08,-0.91 0.09,0 0.17,-0.01 0.26,-0.01 0.14,-0.01 0.28,-0.01 0.41,-0.02 0.06,0 0.13,-0.01 0.19,-0.02 0.08,-0.01 0.14,-0.04 0.22,-0.06 0.12,-0.03 0.08,-0.19 -0.03,-0.21 -0.07,-0.01 -0.14,-0.03 -0.21,-0.03 -0.07,0 -0.14,0.01 -0.21,0.01 -0.13,0.01 -0.27,0.02 -0.4,0.03 -0.1,0.01 -0.2,0.02 -0.31,0.02 -0.04,-0.14 -0.09,-0.28 -0.14,-0.42 0.41,0.01 0.83,0 1.24,-0.01 0.36,-0.02 0.68,-0.03 1,-0.05 z m -16.67,-2.68 c 1.2,0.19 2.41,0.36 3.62,0.47 0.12,0.01 0.24,0.02 0.37,0.03 -0.3,0.01 -0.61,0.02 -0.91,0.05 -1.07,0.1 -2.2,0.19 -3.28,0.42 0.07,-0.34 0.14,-0.65 0.2,-0.97 z m -0.93,4.56 h 0.13 c 0,0 0,0 0.01,0.01 0.1,0.02 0.19,0.04 0.29,0.06 0.05,0.01 0.09,0.02 0.14,0.03 0.02,0.01 0.05,0.01 0.07,0.01 0.03,0 0.05,0.01 0.08,0 0.02,-0.01 0.04,-0.02 0.05,-0.02 0.03,-0.02 0.05,-0.05 0.05,-0.08 0,-0.04 -0.01,-0.06 -0.03,-0.09 -0.03,-0.03 -0.05,-0.05 -0.1,-0.06 -0.02,0 -0.04,-0.01 -0.06,-0.01 -0.02,0 -0.04,-0.01 -0.06,-0.01 -0.01,-0.02 -0.01,-0.04 -0.03,-0.05 -0.05,-0.03 -0.11,-0.04 -0.17,-0.04 -0.06,-0.01 -0.13,-0.02 -0.19,-0.02 -0.04,0 -0.09,0 -0.13,0 0.04,-0.21 0.09,-0.43 0.13,-0.64 0.09,0.01 0.19,0.02 0.29,0.01 0.03,0 0.06,0 0.1,0 0.05,0 0.08,-0.01 0.13,-0.03 0.01,0 0.01,0 0.02,-0.01 0.01,-0.01 0.01,0 -0.01,0.01 0,0 0.09,-0.02 0.1,-0.02 0.05,-0.01 0.09,-0.03 0.12,-0.06 0.02,-0.01 0.02,-0.04 0.03,-0.06 0,0.05 0,0.1 -0.01,0.14 -0.04,0.59 -0.08,1.17 -0.12,1.76 -0.1,-0.04 -0.22,-0.06 -0.32,-0.06 -0.15,0 -0.31,0.02 -0.46,0.06 -0.08,0.02 -0.15,0.06 -0.23,0.09 0.06,-0.32 0.12,-0.62 0.18,-0.92 z m -0.44,2.25 c 0.06,-0.01 0.12,-0.01 0.19,-0.03 l 0.19,-0.03 c 0.03,-0.01 0.06,-0.01 0.1,-0.02 0.05,-0.01 0.08,-0.03 0.12,-0.07 0.06,-0.05 0.04,-0.16 -0.02,-0.19 -0.05,-0.02 -0.09,-0.04 -0.14,-0.03 -0.03,0 -0.07,0.01 -0.1,0.01 -0.06,0.01 -0.13,0.01 -0.19,0.02 -0.03,0 -0.05,0.01 -0.07,0.01 0.04,-0.22 0.08,-0.43 0.13,-0.65 0.13,-0.04 0.25,-0.11 0.38,-0.13 0.12,-0.02 0.25,-0.03 0.38,-0.04 0.06,0 0.12,-0.01 0.19,-0.01 0.04,0 0.07,0 0.11,-0.01 -0.01,0.23 -0.03,0.46 -0.05,0.69 -0.03,0.58 -0.07,1.16 -0.1,1.73 -0.03,0 -0.06,-0.01 -0.09,-0.01 -0.09,-0.01 -0.18,-0.01 -0.27,-0.01 -0.17,0 -0.33,0 -0.5,0 -0.16,0 -0.32,0 -0.49,0.01 0.06,-0.41 0.14,-0.82 0.23,-1.24 z m -1.03,5.23 c 0.22,0.02 0.43,0.05 0.65,0.06 0.04,0 0.08,-0.02 0.1,-0.06 0.02,-0.03 0.02,-0.06 0.01,-0.09 -0.01,-0.04 -0.04,-0.08 -0.08,-0.08 -0.21,-0.03 -0.42,-0.05 -0.63,-0.07 0.06,-0.33 0.13,-0.66 0.2,-1 0.24,-0.01 0.48,-0.02 0.71,-0.03 0.16,-0.01 0.31,-0.02 0.47,-0.03 0.16,-0.01 0.31,-0.01 0.46,-0.07 0.04,-0.01 0.06,-0.05 0.06,-0.09 -0.03,0.4 -0.06,0.8 -0.05,1.19 0.02,0.65 0.62,0.82 1.04,0.58 0.66,0.08 1.38,0.02 2.01,0.02 0.91,0 1.83,0 2.74,-0.01 1.43,-0.02 2.86,-0.03 4.3,-0.04 0.34,0.17 0.72,0.26 1.11,0.24 0.35,-0.02 0.68,-0.12 0.98,-0.26 1.4,-0.01 2.8,-0.03 4.19,-0.04 1.82,-0.02 3.67,0.04 5.49,-0.05 0.83,-0.04 0.83,-1.26 0,-1.29 -0.15,-0.01 -0.3,0 -0.44,0 0.01,-0.14 0,-0.28 0,-0.44 -0.01,-0.45 0,-0.89 0,-1.34 0,-0.86 -0.02,-1.73 -0.05,-2.59 -0.01,-0.24 -0.03,-0.47 -0.05,-0.71 0.03,0.03 0.06,0.05 0.11,0.05 h 0.39 c 0.06,0 0.13,-0.01 0.19,-0.01 0.08,-0.01 0.17,0 0.24,-0.05 0.08,-0.06 0.08,-0.16 0,-0.22 -0.07,-0.05 -0.15,-0.04 -0.23,-0.05 -0.07,-0.01 -0.13,-0.01 -0.2,-0.01 h -0.39 c -0.05,0 -0.09,0.02 -0.12,0.06 -0.03,-0.54 -0.06,-1.09 -0.1,-1.63 -0.08,-0.87 -0.12,-1.78 -0.36,-2.62 -0.14,-0.48 -0.73,-0.47 -0.95,-0.13 -0.01,0 -0.01,0 -0.02,0 -0.09,0 -0.19,0.01 -0.28,0.01 0,-0.02 0,-0.05 0,-0.07 -0.01,-0.17 -0.26,-0.17 -0.26,0 0,0.03 0,0.06 0,0.09 -0.11,0.01 -0.21,0 -0.32,0.02 -0.18,0.02 -0.35,0.06 -0.53,0.09 -0.06,-0.05 -0.14,-0.09 -0.22,-0.1 -0.36,-0.06 -0.72,0.01 -1.08,0.04 -0.26,0.02 -0.52,0.06 -0.78,0.09 0.35,-0.08 0.7,-0.15 1.06,-0.16 0.19,-0.01 0.39,-0.01 0.58,-0.01 0.21,0.01 0.42,0.05 0.62,0.01 0.13,-0.03 0.17,-0.24 0.04,-0.3 -0.19,-0.09 -0.41,-0.09 -0.62,-0.1 -0.22,-0.01 -0.43,0 -0.65,0.02 -0.42,0.04 -0.84,0.13 -1.25,0.26 -0.18,0.06 -0.12,0.32 0.06,0.3 -0.02,0 -0.05,0.01 -0.07,0.01 -0.23,0.03 -0.46,0.06 -0.69,0.09 0,-0.04 -0.01,-0.08 -0.01,-0.12 -0.02,-0.2 -0.05,-0.4 -0.09,-0.6 -0.02,-0.12 -0.04,-0.24 -0.06,-0.36 0.35,-0.04 0.69,-0.08 1.04,-0.12 0.05,0.11 0.14,0.2 0.29,0.23 1.34,0.29 2.75,0.35 4.12,0.36 0.69,0.01 1.39,-0.02 2.08,-0.07 0.64,-0.05 1.36,-0.22 2,-0.06 0.07,0.02 0.13,0 0.19,0 0.12,0.45 0.25,0.9 0.38,1.35 -0.07,-0.05 -0.16,-0.08 -0.25,-0.09 -0.11,-0.02 -0.21,-0.03 -0.32,-0.02 -0.21,0 -0.43,0.04 -0.62,0.12 -0.07,0.03 -0.12,0.1 -0.1,0.18 0.02,0.07 0.1,0.13 0.18,0.1 0.18,-0.06 0.37,-0.1 0.56,-0.1 0.09,0 0.18,0.01 0.27,0.03 0.05,0.01 0.1,0.02 0.14,0.03 0.06,0.01 0.1,0 0.16,0.01 0.02,0 0.03,-0.02 0.04,-0.03 0.06,0.23 0.13,0.46 0.19,0.69 v 0 c -0.04,-0.02 -0.08,-0.04 -0.12,-0.06 -0.02,-0.01 -0.04,-0.02 -0.06,-0.02 -0.02,0 -0.04,0 -0.06,0 -0.02,0 -0.04,0.01 -0.05,0.03 -0.02,0.01 -0.03,0.03 -0.04,0.04 -0.02,0.04 -0.03,0.08 -0.02,0.12 0.01,0.04 0.04,0.07 0.07,0.09 0.04,0.02 0.08,0.05 0.12,0.07 0.02,0.01 0.04,0.02 0.06,0.03 0.02,0.01 0.03,0.02 0.05,0.02 0.04,0.01 0.09,0.01 0.13,-0.02 0,0 0.01,-0.01 0.01,-0.01 0.04,0.16 0.08,0.32 0.13,0.48 -0.22,0.02 -0.45,0.05 -0.67,0.07 -0.53,0.06 -1.07,0.11 -1.6,0.17 -0.18,0.02 -0.18,0.3 0,0.29 l 1.63,-0.17 c 0.24,-0.02 0.48,-0.05 0.72,-0.07 0.42,1.54 0.82,3.09 1.24,4.63 -0.78,0.02 -1.55,0.11 -2.3,0.29 -0.14,0.03 -0.08,0.24 0.06,0.21 0.77,-0.16 1.54,-0.21 2.32,-0.21 0.3,1.11 0.6,2.22 0.89,3.34 0,0 0,0 0,0 -0.74,0.31 -1.44,0.68 -2.09,1.14 -0.33,0.24 -0.66,0.49 -0.98,0.74 -0.25,0.19 -0.46,0.4 -0.66,0.63 -0.48,0.36 -0.93,0.75 -1.34,1.13 -1.17,1.07 -2.24,2.37 -2.95,3.8 -0.81,1.64 -0.88,3.29 -0.24,4.99 0.53,1.4 1.63,3.21 0.91,4.73 -0.67,0.08 -1.34,0.14 -2.02,0.16 -0.45,0.01 -0.9,-0.01 -1.35,-0.02 -0.06,0 -0.16,0 -0.27,0 -0.01,-1.08 -0.12,-2.19 -0.42,-3.24 0.03,-0.03 0.07,-0.05 0.08,-0.09 0.38,-0.86 -0.43,-1.81 -1.17,-2.18 -0.94,-0.48 -2.07,-0.48 -3.11,-0.49 -0.79,-0.01 -1.61,0.07 -2.37,0.32 0,0 0,0 0,-0.01 -0.11,-0.03 -0.23,-0.02 -0.35,-0.04 -0.1,-0.02 -0.19,-0.02 -0.29,-0.02 -0.22,-0.01 -0.44,-0.01 -0.66,-0.01 -0.44,0 -0.88,0 -1.33,0 -0.19,0 -0.19,0.29 0,0.29 0.44,0 0.88,0 1.33,0 0.22,0 0.44,0 0.66,-0.01 0.04,0 0.08,-0.01 0.12,-0.01 -0.02,0.01 -0.04,0.01 -0.05,0.02 -0.34,0.16 -0.7,0.4 -1,0.7 -0.05,0.01 -0.09,0.03 -0.13,0.07 -0.57,0.7 -0.72,1.78 -0.8,2.65 -0.05,0.46 -0.05,0.93 -0.02,1.4 0.02,0.23 0.03,0.47 0.06,0.71 -0.52,0.03 -1.04,0.06 -1.56,0.09 -0.36,0.02 -0.72,0.05 -1.08,0.08 -0.16,0.01 -0.32,0.03 -0.48,0.06 0.03,-0.43 -0.13,-0.85 -0.13,-1.29 0,-0.39 0.06,-0.77 0.14,-1.14 0.17,-0.85 0.41,-1.68 0.52,-2.54 0.22,-1.59 -0.09,-3.18 -0.78,-4.62 -0.53,-1.11 -1.3,-2.07 -2.21,-2.89 0.5,0.02 1,0.03 1.5,0.04 0.3,0.01 0.61,0.01 0.91,0 0.27,-0.01 0.55,0.01 0.82,-0.03 0.07,0.06 0.14,0.12 0.21,0.18 0.2,0.19 0.4,0.39 0.59,0.6 0.38,0.41 0.72,0.85 1.02,1.33 0.3,0.48 0.53,0.98 0.77,1.49 0.12,0.24 0.2,0.5 0.28,0.76 0.08,0.27 0.1,0.6 0.33,0.8 0.09,0.07 0.19,0.08 0.29,0.05 0.04,0.02 0.06,0.05 0.11,0.06 1.02,0.13 2.04,0.2 3.07,0.22 0.51,0.01 1.02,0.03 1.53,0.04 0.5,0.01 1.08,0.11 1.58,0 0.48,-0.11 0.53,-0.72 0.22,-1.01 0,-0.04 0.01,-0.07 0.01,-0.11 0.03,-0.3 0.09,-0.6 0.17,-0.88 0.16,-0.57 0.43,-1.09 0.72,-1.61 0.11,-0.2 0.24,-0.38 0.36,-0.57 0.01,0.07 0.05,0.14 0.14,0.14 0.28,-0.01 0.55,-0.01 0.83,-0.02 0.27,-0.01 0.55,-0.03 0.82,-0.1 0.07,-0.02 0.07,-0.13 0,-0.15 -0.27,-0.06 -0.55,-0.07 -0.82,-0.06 -0.28,0.01 -0.55,0.01 -0.83,0.02 -0.02,0 -0.03,0.02 -0.05,0.02 0.17,-0.25 0.36,-0.48 0.57,-0.71 0.21,-0.23 0.43,-0.44 0.67,-0.64 0.15,-0.12 0.3,-0.23 0.45,-0.35 0.04,-0.04 0.1,-0.06 0.13,-0.11 0.05,-0.04 0.1,-0.08 0.14,-0.12 0.24,-0.25 0.14,-0.65 -0.12,-0.8 0.35,0 0.7,0.01 1.06,0.01 0.2,0 0.41,0.01 0.61,0 0.19,-0.01 0.4,0 0.59,-0.06 0.1,-0.03 0.1,-0.17 0,-0.2 -0.19,-0.05 -0.4,-0.04 -0.59,-0.06 -0.2,-0.01 -0.41,0 -0.61,0 -0.41,0 -0.81,0.01 -1.22,0.01 -0.13,0 -0.17,0.15 -0.11,0.23 -0.02,0 -0.04,0 -0.06,0.01 -0.03,-0.01 -0.04,-0.04 -0.07,-0.05 -0.54,-0.16 -1.09,-0.12 -1.64,-0.11 -0.52,0 -1.04,0 -1.56,0 -1.11,0 -2.21,0 -3.32,0.01 -1.07,0.01 -2.15,0.01 -3.22,0.03 -1.02,0.02 -2.25,-0.12 -3.19,0.31 -0.15,0.07 -0.23,0.23 -0.24,0.4 -0.1,0.15 -0.14,0.35 -0.04,0.54 0.06,0.11 0.15,0.2 0.25,0.29 -0.22,-0.03 -0.44,-0.03 -0.66,-0.06 -0.3,-0.03 -0.61,-0.05 -0.91,-0.06 -0.61,-0.02 -1.22,-0.04 -1.82,-0.05 -0.01,0 -0.02,0.01 -0.03,0.01 -0.14,-0.11 -0.26,-0.23 -0.41,-0.34 -0.43,-0.33 -0.9,-0.6 -1.37,-0.85 0.3,0.01 0.61,0.02 0.91,0.02 0.23,0 0.45,0 0.68,-0.01 0.22,-0.02 0.46,-0.03 0.68,-0.07 0.11,-0.02 0.11,-0.19 0,-0.21 -0.22,-0.04 -0.46,-0.06 -0.68,-0.07 -0.23,-0.02 -0.45,-0.01 -0.68,-0.01 -0.46,0 -0.92,0.02 -1.38,0.03 -0.04,0 -0.08,0.02 -0.1,0.04 -0.03,-0.02 -0.06,-0.03 -0.1,-0.05 -0.52,-0.23 -1.2,-0.58 -1.81,-0.6 0.04,-0.21 0.08,-0.42 0.12,-0.63 0.02,-0.12 0.05,-0.24 0.07,-0.36 0.23,0.02 0.47,0.05 0.7,0.07 0.21,0.02 0.42,0.04 0.64,0.06 0.21,0.02 0.41,0.04 0.61,0.01 0.1,-0.02 0.08,-0.16 0,-0.19 -0.2,-0.07 -0.41,-0.08 -0.61,-0.1 -0.21,-0.02 -0.42,-0.04 -0.64,-0.05 -0.22,-0.02 -0.43,-0.03 -0.65,-0.05 0.04,-0.19 0.08,-0.38 0.11,-0.58 0.13,0 0.26,0 0.39,0 0.18,0 0.37,-0.01 0.55,-0.01 0.17,0 0.37,0.01 0.53,-0.07 0.05,-0.03 0.05,-0.11 0,-0.14 -0.15,-0.07 -0.34,-0.06 -0.51,-0.06 -0.19,0 -0.38,0.01 -0.57,0.01 -0.11,0 -0.23,0.01 -0.34,0.01 0.03,-0.32 0.09,-0.62 0.15,-0.92 z m 34.26,15.98 c -0.06,-0.02 -0.12,-0.03 -0.17,-0.04 -0.14,-0.02 -0.29,-0.02 -0.44,0 -0.19,0.02 -0.37,0.07 -0.54,0.13 -0.04,-0.15 -0.08,-0.31 -0.13,-0.46 0.21,-0.04 0.42,-0.09 0.63,-0.11 0.17,-0.01 0.34,-0.01 0.51,-0.01 0.05,0.15 0.1,0.32 0.14,0.49 z m -0.59,0.31 c 0.12,0 0.24,0 0.36,0.02 0.1,0.02 0.22,0.04 0.33,0.02 0.07,0.25 0.14,0.5 0.21,0.76 -0.1,-0.04 -0.2,-0.05 -0.31,-0.06 -0.13,-0.01 -0.25,0 -0.38,0.01 -0.16,0.02 -0.31,0.08 -0.46,0.13 -0.07,-0.26 -0.14,-0.52 -0.21,-0.79 0.14,-0.05 0.3,-0.08 0.46,-0.09 z m 1.52,3.07 c 0.03,0.1 0.06,0.2 0.08,0.3 -0.07,0.01 -0.14,0.02 -0.21,0.03 -0.01,0 -0.01,0 0.01,0 -0.01,0 -0.02,0 -0.03,0 -0.02,0 -0.04,0.01 -0.07,0.01 -0.04,0.01 -0.08,0.01 -0.11,0.02 -0.08,0.01 -0.17,0.02 -0.25,0.03 -0.09,0.01 -0.18,0.07 -0.18,0.18 0,0.09 0.08,0.18 0.18,0.18 0.17,-0.01 0.33,-0.02 0.5,-0.02 0.04,0 0.08,0 0.12,0 0,0.01 0,0.03 -0.01,0.04 -0.01,0.09 0.1,0.18 0.19,0.15 0.01,0 0.02,-0.01 0.03,-0.02 0.02,0.07 0.04,0.14 0.06,0.21 -0.05,0.01 -0.1,0.02 -0.15,0.03 -0.03,0.01 -0.06,0.01 -0.1,0.02 -0.01,0 -0.05,0.01 -0.05,0.01 -0.06,0.01 -0.12,0.01 -0.18,0.01 -0.24,0.01 -0.46,-0.01 -0.69,-0.06 0,0 -0.01,0 -0.01,0 -0.1,-0.38 -0.21,-0.76 -0.31,-1.14 0.18,0 0.35,0.01 0.53,0.01 0.2,0.01 0.4,0.01 0.6,0.01 0,0 0.03,0 0.05,0 z m -0.49,1.84 c -0.05,0.04 -0.1,0.08 -0.15,0.11 -0.04,-0.13 -0.07,-0.27 -0.11,-0.4 0.16,0.04 0.33,0.08 0.49,0.09 -0.08,0.07 -0.15,0.14 -0.23,0.2 z m 0.63,0.56 c 0.01,-0.01 0.02,-0.02 0.02,-0.02 0.03,-0.02 0.06,-0.02 0.09,-0.04 0.05,-0.03 0.1,-0.07 0.15,-0.11 0.08,-0.06 0.09,-0.21 0.04,-0.29 -0.06,-0.09 -0.16,-0.13 -0.27,-0.11 -0.02,0 -0.05,0.01 -0.07,0.01 0.02,-0.01 0.04,-0.02 0.06,-0.03 0.06,-0.03 0.12,-0.05 0.18,-0.07 0.04,-0.02 0.08,-0.04 0.12,-0.06 0.07,0.25 0.14,0.5 0.2,0.74 -0.03,-0.01 -0.05,-0.03 -0.08,-0.03 -0.14,0 -0.28,0.03 -0.42,0.07 -0.01,-0.02 -0.01,-0.04 -0.02,-0.06 z m -0.8,-2.86 c -0.21,0.01 -0.43,0.01 -0.64,0.01 -0.05,-0.2 -0.11,-0.39 -0.16,-0.59 0.16,-0.03 0.33,-0.06 0.49,-0.04 0.03,0 0.05,0 0.08,0.01 0.03,0 0.03,0 0.02,0 0.02,0 0.04,0.01 0.06,0.01 0.02,0 0.04,0.01 0.06,0.01 0.03,0 0.03,0 0.02,0 0.03,0 0.05,0.01 0.08,0.01 0.06,0.01 0.12,0.03 0.18,0.04 0.04,0.01 0.08,0.02 0.11,0.02 0.03,0 0.06,0 0.08,-0.01 -0.02,0 -0.01,-0.01 0.01,-0.01 0,0 0,-0.01 0.01,-0.01 0.05,0.18 0.1,0.36 0.15,0.54 -0.2,0 -0.37,0.01 -0.55,0.01 z m 0.07,-1.03 c -0.12,-0.02 -0.24,-0.02 -0.37,-0.01 -0.21,0.02 -0.41,0.05 -0.61,0.1 -0.04,-0.14 -0.07,-0.27 -0.11,-0.41 0.13,-0.04 0.26,-0.09 0.38,-0.1 0.12,-0.01 0.24,-0.01 0.35,0 0.13,0.01 0.23,0.03 0.37,0 0.02,0 0.01,-0.02 0.03,-0.03 0.04,0.16 0.09,0.32 0.13,0.48 -0.04,-0.02 -0.1,-0.03 -0.17,-0.03 z m -1.71,-2.64 c -0.05,-0.19 -0.1,-0.38 -0.16,-0.58 0.26,0.01 0.53,0.02 0.79,0.03 0.13,0 0.25,0.01 0.38,0.01 0.03,0.13 0.07,0.25 0.1,0.38 -0.37,0.01 -0.74,0.07 -1.11,0.16 z m 0.64,-0.92 c -0.29,0.01 -0.59,0.02 -0.88,0.03 -0.03,-0.12 -0.06,-0.23 -0.09,-0.35 0.1,-0.01 0.21,-0.02 0.31,-0.02 0.09,-0.01 0.18,-0.01 0.27,-0.02 0.1,-0.01 0.21,-0.01 0.3,-0.04 0.08,-0.03 0.13,-0.1 0.12,-0.18 -0.01,-0.09 -0.08,-0.14 -0.17,-0.15 -0.09,-0.01 -0.18,0 -0.27,0.01 -0.09,0.01 -0.18,0.02 -0.27,0.03 -0.13,0.02 -0.26,0.03 -0.39,0.05 -0.08,-0.28 -0.15,-0.57 -0.23,-0.85 0.16,0.04 0.33,0.07 0.49,0.11 0.13,0.03 0.25,0.05 0.38,0.07 0.07,0.01 0.16,0.03 0.23,0.04 0.03,0 0.07,-0.01 0.11,-0.02 0.12,0.43 0.23,0.86 0.35,1.29 -0.08,-0.01 -0.17,-0.01 -0.26,0 z m -0.51,-2.9 c 0.03,0.13 0.07,0.25 0.1,0.38 -0.03,-0.01 -0.06,-0.03 -0.09,-0.04 l -0.24,-0.11 c -0.16,-0.07 -0.33,-0.14 -0.49,-0.22 -0.02,-0.01 -0.04,0 -0.06,-0.01 0.15,-0.03 0.3,-0.05 0.45,-0.08 0.04,-0.01 0.09,-0.01 0.14,-0.02 0.02,0.04 0.06,0.08 0.1,0.09 0.03,0.02 0.06,0.01 0.09,0.01 z m -0.44,-0.47 c -0.17,0.04 -0.35,0.07 -0.52,0.11 -0.1,0.02 -0.17,0.15 -0.14,0.24 0.03,0.1 0.12,0.14 0.21,0.13 -0.03,0.01 -0.07,0.03 -0.09,0.07 -0.04,0.08 -0.03,0.22 0.07,0.26 0.17,0.07 0.33,0.15 0.5,0.22 0.08,0.04 0.17,0.07 0.25,0.11 0.05,0.02 0.1,0.05 0.15,0.06 0.04,0.01 0.09,0.02 0.13,0.03 0.03,0.01 0.06,0 0.08,-0.01 0.04,0.15 0.08,0.3 0.12,0.46 -0.04,-0.01 -0.08,-0.03 -0.12,-0.04 -0.13,-0.03 -0.25,-0.07 -0.38,-0.09 -0.25,-0.05 -0.49,-0.1 -0.74,-0.15 -0.02,-0.09 -0.05,-0.19 -0.08,-0.28 -0.15,-0.59 -0.31,-1.17 -0.46,-1.76 0.18,-0.04 0.37,-0.07 0.55,-0.05 0.12,0.01 0.22,0.02 0.34,0.04 0.09,0.02 0.18,0.03 0.26,0.05 0.05,0.17 0.09,0.35 0.14,0.52 -0.08,0.03 -0.18,0.06 -0.27,0.08 z m -33.23,8.04 c -0.01,-0.09 -0.01,-0.19 -0.02,-0.27 -0.01,-0.22 -0.02,-0.45 -0.02,-0.67 0,0 0,0 0,0 -0.01,0.19 0.25,0.27 0.31,0.07 0.01,-0.02 0.01,-0.04 0.01,-0.06 0.19,0 0.39,-0.01 0.58,-0.01 0,0.01 0,0.03 0,0.04 0.02,0.06 0.11,0.08 0.15,0.02 0.01,-0.02 0.01,-0.04 0.02,-0.06 0.18,0 0.37,-0.01 0.55,-0.01 0.03,0.04 0.08,0.06 0.13,0.03 0.02,-0.01 0.02,-0.02 0.03,-0.04 1.33,-0.01 2.67,-0.02 4,-0.04 0.03,0.07 0.05,0.14 0.09,0.19 v 0 c -0.1,0.04 -0.1,0.17 0,0.21 0.01,0 0.01,0 0.02,0.01 0.02,0.01 0.04,0.03 0.07,0.03 0,0 0.05,0.01 0.03,0 0.02,0.01 0.04,0.02 0.06,0.02 0.05,0.01 0.11,0.02 0.16,0.02 0.05,0.03 0.11,0.04 0.16,0.05 0.01,0.02 0.02,0.04 0.03,0.07 0.13,0.26 0.45,0.23 0.61,0.05 0.05,0.01 0.1,0.03 0.15,0.03 0.16,0.02 0.33,0.02 0.5,0.01 0.36,-0.01 0.72,-0.01 1.08,-0.03 0.62,-0.03 1.25,-0.06 1.87,-0.09 0.08,0.07 0.17,0.11 0.29,0.1 0.13,-0.02 0.27,-0.12 0.32,-0.25 0.06,-0.06 0.1,-0.14 0.12,-0.23 0.15,0.01 0.3,0.03 0.45,0.03 0.04,0 0.07,0 0.11,0.01 0.01,0.11 0.06,0.21 0.21,0.24 0.01,0 0.03,0 0.04,0 0.11,0.08 0.27,0.09 0.41,0.04 0.61,0.07 1.23,0.08 1.85,0.04 0.38,-0.02 0.75,-0.06 1.13,-0.11 0.24,-0.03 0.48,-0.06 0.73,-0.11 0.03,0.01 0.05,0.05 0.09,0.05 0.18,0.02 0.39,-0.08 0.46,-0.26 0.04,-0.04 0.09,-0.08 0.11,-0.13 0.05,0 0.1,0.01 0.15,0.01 0.08,0 0.16,0 0.24,0 0.03,0.08 0.1,0.11 0.18,0.1 -0.21,0.07 -0.42,0.15 -0.62,0.26 -0.07,0.04 -0.1,0.14 -0.06,0.22 0.05,0.08 0.14,0.09 0.22,0.06 0.28,-0.13 0.58,-0.2 0.89,-0.25 0.15,-0.02 0.29,-0.04 0.44,-0.05 0.04,0 0.09,0 0.13,-0.01 0.04,-0.01 0.06,-0.02 0.1,-0.02 0.08,-0.01 0.16,-0.01 0.24,-0.03 0.09,-0.02 0.11,-0.15 0.03,-0.2 -0.06,-0.03 -0.13,-0.04 -0.2,-0.06 0.1,0 0.21,0 0.31,-0.01 0.03,0.04 0.07,0.07 0.12,0.09 0.16,0.3 0.74,0.35 1.01,0.38 0.46,0.04 0.93,0.06 1.4,0.07 0.66,0.01 1.33,-0.05 2,-0.13 0.06,0.06 0.13,0.12 0.2,0.17 -1.68,0.02 -3.36,0.04 -5.04,0.06 -4.19,0.05 -8.38,0.15 -12.57,0.22 -1.15,0.02 -2.29,0.04 -3.44,0.06 -0.87,0.04 -1.75,0.04 -2.62,0.07 z m 5.57,-3.02 c 0.02,0 0.05,0 0.07,0 -0.04,0.29 -0.07,0.64 -0.07,0.99 -0.07,-0.01 -0.14,0.03 -0.16,0.1 0,0 0,0 0,0 -0.08,0 -0.16,0 -0.24,0 0.01,-0.02 0.02,-0.04 0.02,-0.06 0.06,-0.16 0.12,-0.31 0.17,-0.47 0.06,-0.18 0.14,-0.37 0.21,-0.56 z m -0.49,0.48 c -0.06,0.15 -0.11,0.3 -0.17,0.45 -0.02,0.06 -0.05,0.12 -0.07,0.18 -0.23,0 -0.46,0.01 -0.69,0.01 0.07,-0.14 0.15,-0.28 0.21,-0.43 0.09,-0.22 0.17,-0.45 0.23,-0.68 0.23,0 0.45,0 0.68,-0.01 -0.07,0.16 -0.13,0.32 -0.19,0.48 z m -1.04,0.06 c -0.09,0.19 -0.19,0.37 -0.29,0.55 -0.01,0.01 -0.02,0.03 -0.03,0.04 -0.2,0 -0.41,0.01 -0.61,0.01 0.09,-0.19 0.18,-0.38 0.26,-0.57 0.08,-0.18 0.16,-0.37 0.24,-0.56 0.21,0 0.42,0 0.63,-0.01 -0.05,0.19 -0.12,0.37 -0.2,0.54 z m -0.97,-0.11 c -0.1,0.22 -0.2,0.43 -0.3,0.65 -0.01,0.03 -0.03,0.05 -0.04,0.08 -0.2,0 -0.4,0.01 -0.59,0.02 0.04,-0.12 0.09,-0.24 0.13,-0.36 0.09,-0.26 0.18,-0.53 0.28,-0.79 0.1,0 0.2,0 0.3,0 0.14,0 0.29,0 0.43,0 -0.08,0.13 -0.14,0.26 -0.21,0.4 z m -1.08,0.29 c -0.06,0.16 -0.12,0.31 -0.18,0.47 -0.19,0.01 -0.38,0.01 -0.58,0.02 0.04,-0.16 0.07,-0.32 0.12,-0.48 0.07,-0.23 0.16,-0.46 0.26,-0.68 0.21,0 0.43,-0.01 0.64,-0.01 -0.08,0.22 -0.17,0.45 -0.26,0.68 z m -0.88,-0.09 c -0.06,0.19 -0.11,0.39 -0.16,0.58 -0.16,0.01 -0.31,0.01 -0.47,0.01 0.03,-0.13 0.06,-0.26 0.09,-0.4 0.05,-0.22 0.09,-0.43 0.14,-0.65 0.01,-0.05 0.02,-0.1 0.03,-0.15 0.2,0 0.41,0.02 0.61,0.02 -0.08,0.2 -0.17,0.39 -0.24,0.59 z m -0.72,-0.56 c -0.05,0.22 -0.11,0.45 -0.16,0.67 -0.04,0.17 -0.07,0.34 -0.1,0.5 -0.04,0 -0.07,0 -0.11,0 -0.03,0 -0.06,0.01 -0.09,0.02 0,-0.06 0,-0.13 -0.01,-0.19 -0.01,-0.35 -0.02,-0.71 -0.03,-1.06 0.17,0.01 0.34,0.01 0.51,0.02 0,0.01 -0.01,0.02 -0.01,0.04 z m 11.58,-2.86 c 0.02,0.02 0.04,0.03 0.08,0.03 0.99,-0.01 1.98,-0.02 2.98,-0.05 0.49,-0.02 0.98,-0.03 1.46,-0.05 0.37,-0.01 0.77,-0.01 1.15,-0.06 0.17,0.09 0.33,0.21 0.46,0.36 0.19,0.21 0.24,0.46 0.34,0.69 -0.02,0.03 -0.04,0.08 -0.03,0.11 0.01,0.07 0.08,0.14 0.15,0.13 0,0 0,0 0,0 0.03,0.15 0.05,0.3 0.07,0.45 -0.17,0 -0.35,0.01 -0.52,0.03 -0.14,0.01 -0.28,0.02 -0.42,0.03 -0.05,-0.06 -0.15,-0.05 -0.2,0.01 -0.21,0.01 -0.43,0.02 -0.64,0.05 0,-0.05 0,-0.1 0,-0.15 0.12,0 0.25,0 0.35,-0.07 0.06,-0.04 0.06,-0.12 0,-0.16 -0.11,-0.07 -0.24,-0.07 -0.37,-0.07 -0.01,-0.15 -0.03,-0.31 -0.08,-0.46 -0.01,-0.04 -0.04,-0.07 -0.06,-0.09 0.38,-0.01 0.77,-0.01 1.13,-0.09 0.07,-0.01 0.07,-0.12 0,-0.14 -0.49,-0.08 -1,-0.05 -1.49,-0.04 -0.39,0 -0.77,0.01 -1.16,0.02 -0.31,0 -0.62,-0.01 -0.92,-0.02 -0.33,0 -0.66,-0.02 -0.98,0 -0.17,0.01 -0.35,0 -0.51,0.05 -0.02,0.01 -0.04,0.02 -0.06,0.03 -0.36,0.01 -0.72,0.02 -1.08,0.03 -0.15,0 -0.15,0.24 0,0.24 0.16,0 0.32,0 0.48,-0.01 -0.13,0.29 -0.1,0.67 -0.11,0.98 -0.09,0 -0.17,0.01 -0.26,0.01 -0.2,0.01 -0.41,0.02 -0.61,0.03 -0.02,0 -0.04,0.02 -0.06,0.02 0.03,-0.21 0.04,-0.42 0.09,-0.63 0.05,-0.21 0.11,-0.42 0.17,-0.62 0.2,-0.22 0.41,-0.42 0.65,-0.59 z m 0.55,-0.31 c 0.75,-0.3 1.56,-0.3 2.36,-0.26 0.6,0.03 1.23,0.04 1.83,0.14 -0.05,0 -0.11,0.01 -0.17,0.01 -0.5,0.01 -1.01,0.02 -1.51,0.04 -0.85,0.02 -1.71,0.06 -2.56,0.1 0.01,-0.01 0.03,-0.02 0.05,-0.03 z m 5.08,5.15 c 0.04,0 0.08,0 0.12,0 0.03,0 0.06,0 0.08,0 -0.1,0.02 -0.19,0.05 -0.28,0.08 0.03,-0.01 0.06,-0.03 0.07,-0.06 0.01,0 0.01,-0.01 0.01,-0.02 z m -6.54,-0.62 c 0,0.01 0,0.01 0,0.02 -0.02,-0.13 -0.05,-0.26 -0.06,-0.39 -0.04,-0.42 -0.05,-0.85 -0.03,-1.27 0.05,0.02 0.11,0.04 0.16,0.04 0.08,0 0.16,0 0.24,0 -0.06,0.33 -0.13,0.67 -0.19,1 -0.05,0.2 -0.08,0.4 -0.12,0.6 z m 0.38,-0.56 c 0.06,-0.35 0.13,-0.7 0.19,-1.06 0.03,0 0.07,0 0.1,0 0.08,0 0.16,0 0.25,0 0,0.1 0,0.2 0,0.31 0,0.13 0,0.26 0,0.39 -0.02,0.02 -0.04,0.05 -0.04,0.09 -0.02,0.18 -0.04,0.37 -0.06,0.55 -0.01,0.09 -0.02,0.18 -0.02,0.28 0,0.02 0,0.03 0,0.05 -0.03,0 -0.07,0 -0.1,0 -0.14,-0.01 -0.28,0 -0.42,-0.01 0.03,-0.2 0.07,-0.4 0.1,-0.6 z m 5.6,0.21 c -0.03,0.08 -0.06,0.16 -0.1,0.23 -0.03,0 -0.07,0 -0.1,0 0,-0.08 0,-0.15 0,-0.23 0,-0.34 0.01,-0.69 0.01,-1.03 0,-0.15 0,-0.3 0,-0.45 0.19,0.01 0.37,0.01 0.55,-0.01 -0.03,0.27 -0.08,0.53 -0.15,0.8 -0.05,0.24 -0.13,0.46 -0.21,0.69 z m -4.14,0.78 c -0.02,-0.08 -0.05,-0.15 -0.11,-0.2 0,-0.14 -0.01,-0.29 -0.01,-0.43 0,-0.37 0,-0.74 -0.01,-1.11 0,-0.36 0,-0.71 -0.01,-1.07 -0.01,-0.21 0.01,-0.46 -0.02,-0.69 0.22,0.1 0.5,0.09 0.73,0.1 0.3,0.01 0.61,0.02 0.91,0.03 0.59,0.02 1.18,0.04 1.78,0.04 -0.02,0.16 -0.03,0.33 -0.05,0.49 -0.03,0.33 -0.05,0.66 -0.07,0.99 -0.02,0.33 -0.04,0.66 -0.05,0.99 -0.01,0.18 -0.03,0.36 -0.04,0.54 -0.19,0.04 -0.38,0.08 -0.56,0.11 -0.35,0.05 -0.7,0.09 -1.05,0.12 -0.48,0.05 -0.96,0.07 -1.44,0.09 z m 4.42,-0.56 c 0.01,-0.03 0.02,-0.06 0.03,-0.09 0.09,-0.24 0.16,-0.49 0.22,-0.74 0.07,-0.29 0.1,-0.59 0.13,-0.89 0.13,0 0.25,-0.01 0.38,-0.01 l -0.35,0.98 c -0.08,0.23 -0.16,0.46 -0.24,0.69 -0.01,0.02 -0.01,0.04 -0.02,0.05 -0.05,0.01 -0.1,0.01 -0.15,0.01 z m 1.07,-0.01 c -0.17,0 -0.35,0 -0.52,0.01 0.07,-0.21 0.14,-0.43 0.21,-0.64 0.12,-0.37 0.23,-0.73 0.35,-1.1 0.1,-0.01 0.21,-0.01 0.31,-0.02 0,0.03 0.01,0.06 0.01,0.09 0.02,0.14 0.02,0.28 0.03,0.42 -0.06,0 -0.12,0.03 -0.13,0.09 l -0.11,0.5 -0.05,0.24 c -0.01,0.04 -0.02,0.08 -0.03,0.12 -0.01,0.05 -0.01,0.1 -0.01,0.15 0.01,0.1 0.15,0.16 0.2,0.06 0.02,-0.04 0.05,-0.08 0.06,-0.13 0.01,-0.04 0.02,-0.08 0.02,-0.11 0.02,-0.08 0.04,-0.17 0.06,-0.25 0.01,-0.05 0.02,-0.1 0.03,-0.14 0.01,0.25 0.01,0.49 0.02,0.74 -0.15,-0.03 -0.3,-0.03 -0.45,-0.03 z m 6.29,1.06 c 0.11,-0.23 0.2,-0.47 0.26,-0.7 1.92,-0.03 3.85,-0.06 5.77,-0.09 0,0.11 0,0.22 0,0.33 -0.08,-0.01 -0.15,-0.02 -0.23,-0.03 -0.15,-0.01 -0.29,-0.02 -0.44,-0.04 -0.09,-0.01 -0.17,0.07 -0.18,0.16 -0.01,0.08 0.04,0.18 0.13,0.2 0.15,0.02 0.29,0.05 0.44,0.07 0.09,0.01 0.17,0.02 0.26,0.03 0.01,0 0.02,0 0.03,0 0,0.09 0,0.18 0,0.27 -1.94,-0.04 -3.89,0.04 -5.82,0.06 -0.15,0 -0.29,0 -0.44,0.01 0.09,-0.06 0.16,-0.15 0.22,-0.27 z m 5.98,-2.17 c 0.01,-0.03 0.03,-0.06 0.04,-0.09 0,0.16 0,0.32 0,0.47 -0.08,0 -0.15,0 -0.23,0 0.02,-0.03 0.04,-0.06 0.05,-0.09 0.05,-0.1 0.09,-0.2 0.14,-0.29 z m -0.25,-0.13 c -0.05,0.1 -0.09,0.2 -0.14,0.3 -0.03,0.07 -0.06,0.15 -0.08,0.22 -0.11,0 -0.22,0 -0.33,0.01 0.01,-0.03 0.02,-0.06 0.04,-0.08 0.06,-0.14 0.12,-0.27 0.18,-0.41 0.05,-0.12 0.11,-0.25 0.16,-0.37 0.11,0 0.22,0 0.33,0 -0.06,0.1 -0.11,0.21 -0.16,0.33 z m -0.54,-0.09 c -0.07,0.13 -0.13,0.27 -0.2,0.4 -0.03,0.07 -0.08,0.14 -0.11,0.22 -0.29,0.01 -0.57,0.01 -0.86,0.02 0.06,-0.14 0.11,-0.28 0.17,-0.42 0.06,-0.15 0.12,-0.3 0.19,-0.46 0.31,0 0.62,-0.01 0.93,-0.01 -0.03,0.09 -0.07,0.17 -0.12,0.25 z m -1.22,0.1 c -0.07,0.15 -0.14,0.31 -0.21,0.46 -0.01,0.03 -0.03,0.06 -0.04,0.08 -0.27,0.01 -0.54,0.01 -0.81,0.02 0.07,-0.12 0.13,-0.25 0.2,-0.37 0.09,-0.17 0.19,-0.35 0.28,-0.52 0.25,0 0.49,-0.01 0.74,-0.01 -0.05,0.12 -0.11,0.23 -0.16,0.34 z m -1.14,0.04 c -0.09,0.16 -0.19,0.32 -0.28,0.48 -0.01,0.02 -0.02,0.04 -0.03,0.06 -0.26,0.01 -0.52,0.01 -0.79,0.02 0.03,-0.07 0.06,-0.14 0.09,-0.21 0.1,-0.23 0.19,-0.46 0.29,-0.69 0.31,0 0.62,-0.01 0.92,-0.01 -0.06,0.11 -0.13,0.23 -0.2,0.35 z m -1.29,0.22 c -0.05,0.11 -0.1,0.23 -0.15,0.34 -0.23,0 -0.46,0.01 -0.69,0.01 0.02,-0.13 0.04,-0.27 0.08,-0.4 0.05,-0.18 0.13,-0.34 0.2,-0.51 0.27,0 0.55,-0.01 0.82,-0.01 -0.09,0.19 -0.18,0.38 -0.26,0.57 z m -1.07,-0.13 c -0.02,0.09 -0.04,0.18 -0.06,0.27 0,-0.23 -0.02,-0.46 -0.05,-0.69 0.09,0 0.19,0 0.28,0 -0.05,0.14 -0.13,0.28 -0.17,0.42 z m -1.6,-4.97 c -0.18,-0.82 -0.07,-1.63 0.23,-2.41 0.55,-1.43 1.58,-2.71 2.66,-3.78 0.91,-0.89 1.97,-1.55 2.98,-2.3 0.27,1.48 0.73,2.95 1.09,4.4 0.3,1.17 0.6,2.35 0.89,3.52 -1.28,0.14 -2.56,0.26 -3.85,0.37 -0.66,0.06 -1.32,0.11 -1.97,0.17 -0.63,0.06 -1.36,0.04 -1.95,0.29 -0.03,-0.09 -0.06,-0.18 -0.08,-0.26 z m 7.47,-6.18 c 0.19,0.02 0.39,0.04 0.58,0.08 0.11,0.02 0.22,0.03 0.33,0.05 0.02,0 0.03,0 0.05,0 0.03,0.1 0.05,0.19 0.08,0.29 -0.06,0 -0.12,-0.01 -0.19,0 -0.25,0.03 -0.5,0.13 -0.71,0.27 -0.08,0.05 -0.12,0.16 -0.06,0.24 0.05,0.08 0.16,0.11 0.24,0.06 0.1,-0.06 0.17,-0.09 0.28,-0.12 0.01,0 0.03,-0.01 0.04,-0.01 0.01,0 0.01,0 0.01,0 0.03,0 0.06,-0.01 0.09,-0.01 0,0 0,0 0.01,0 0.01,0 0.03,0 0.04,0 0.03,0 0.06,0 0.08,0 0.06,0 0.11,0 0.17,0.01 0,0 0.04,0.01 0.04,0.01 0.02,0 0.04,0.01 0.06,0.01 0,0 0,0 0.01,0 0.05,0.2 0.11,0.4 0.16,0.6 -0.11,-0.01 -0.23,-0.03 -0.34,-0.02 -0.26,0.01 -0.5,0.08 -0.74,0.18 -0.19,-0.74 -0.39,-1.49 -0.58,-2.23 -0.07,-0.27 -0.14,-0.55 -0.22,-0.83 0.14,0 0.28,0 0.42,0.01 0.08,0 0.17,0 0.25,0 0.05,0 0.09,0 0.14,-0.01 0.05,-0.01 0.09,-0.03 0.13,-0.05 0.07,-0.04 0.07,-0.14 0,-0.17 -0.04,-0.02 -0.08,-0.05 -0.13,-0.05 -0.05,-0.01 -0.09,-0.01 -0.14,-0.01 -0.08,0 -0.17,0 -0.25,0 -0.16,0 -0.33,0 -0.49,0.01 -0.05,-0.17 -0.1,-0.34 -0.15,-0.51 0.12,0 0.25,-0.01 0.37,-0.01 0.11,-0.01 0.22,-0.01 0.33,-0.02 0.13,-0.01 0.25,-0.01 0.36,-0.08 0.01,-0.01 0,-0.02 0.01,-0.02 0.11,0.42 0.22,0.83 0.33,1.24 -0.07,-0.01 -0.15,-0.02 -0.23,-0.01 -0.21,0.01 -0.42,0.06 -0.61,0.15 -0.09,0.04 -0.12,0.17 -0.08,0.25 0.04,0.08 0.14,0.15 0.23,0.11 0.08,-0.03 0.17,-0.06 0.25,-0.07 0.01,0 0.03,0 0.04,-0.01 0.01,0 0.03,0 0.03,0 0.04,0 0.09,-0.01 0.13,-0.01 0.04,0 0.08,0 0.12,0.01 0.01,0 0.04,0.01 0.05,0.01 0.01,0 0.03,0 0.04,0.01 0.05,0.01 0.09,0.02 0.14,0.03 0.03,0.13 0.07,0.26 0.1,0.39 -0.08,0 -0.16,-0.01 -0.23,-0.01 -0.21,0 -0.41,-0.02 -0.62,-0.03 -0.09,-0.01 -0.16,0.08 -0.16,0.16 0.04,0.05 0.11,0.1 0.19,0.11 z m 1.6,2.49 c -0.01,0 -0.01,0 -0.02,0 -0.13,-0.02 -0.26,-0.02 -0.39,-0.02 -0.23,0.01 -0.46,0.06 -0.68,0.13 -0.05,-0.2 -0.11,-0.41 -0.16,-0.61 0.02,0 0.03,0.01 0.05,0 0.21,-0.08 0.39,-0.11 0.6,-0.11 0.05,0 0.11,0 0.16,0.01 0.01,0 0.01,0 0.01,0 0.01,0 0.02,0 0.03,0.01 0.03,0 0.05,0.01 0.08,0.01 0.06,0.01 0.12,0.01 0.19,0.02 0.03,0.18 0.08,0.37 0.13,0.56 z m 0.33,1.25 c -0.01,-0.02 -0.02,-0.04 -0.04,-0.06 -0.02,-0.02 -0.05,-0.03 -0.08,-0.05 -0.02,-0.02 -0.05,-0.04 -0.08,-0.06 -0.02,-0.01 -0.05,-0.02 -0.08,-0.03 -0.06,-0.02 -0.12,-0.02 -0.18,-0.02 -0.1,0 -0.2,0.02 -0.3,0.04 -0.14,0.03 -0.26,0.1 -0.37,0.18 -0.07,-0.28 -0.14,-0.56 -0.22,-0.83 0.2,-0.04 0.39,-0.07 0.6,-0.06 0.11,0.01 0.21,0.02 0.32,0.05 0.06,0.01 0.12,0.03 0.18,0.04 0.01,0 0.03,0 0.04,0 0.07,0.27 0.14,0.54 0.21,0.8 z m -1.86,-6.97 c -0.01,0 -0.01,0 0,0 0,0 0,0 0,0 z m 0,0.01 c 0.06,0.21 0.11,0.42 0.17,0.63 -0.11,-0.03 -0.21,-0.02 -0.33,-0.01 -0.11,0.01 -0.22,0.02 -0.33,0.03 -0.15,0.02 -0.31,0.04 -0.46,0.05 -0.03,-0.1 -0.06,-0.19 -0.09,-0.29 0.03,-0.02 0.05,-0.04 0.08,-0.06 0.02,-0.01 0.01,-0.03 0.02,-0.04 0.08,-0.03 0.14,-0.06 0.23,-0.09 0.18,-0.06 0.36,-0.12 0.55,-0.18 0.05,-0.01 0.11,-0.02 0.16,-0.04 z m 2.08,8.09 c -0.13,-0.02 -0.27,-0.03 -0.4,-0.01 -0.22,0.02 -0.43,0.06 -0.64,0.12 -0.07,-0.28 -0.14,-0.55 -0.22,-0.83 0.01,-0.01 0.02,0 0.03,-0.01 0,0 0,0 0,0 0.01,0 0.01,-0.01 0.02,-0.01 0.02,-0.01 0.04,-0.02 0.06,-0.04 0.02,-0.01 0.03,-0.02 0.05,-0.03 0.01,0 0.02,-0.01 0.03,-0.01 0,0 0.01,0 0.02,-0.01 0,0 0,0 0,0 0.01,0 0.02,-0.01 0.03,-0.01 0.02,-0.01 0.04,-0.01 0.06,-0.02 0.02,0 0.04,-0.01 0.06,-0.01 0.01,0 0.02,0 0.03,-0.01 -0.02,0.01 -0.04,0 -0.01,0 0.04,0 0.08,0 0.12,0 0.02,0 0.04,0 0.06,0 0.01,0 0.02,0 0.02,0 0.05,0.01 0.11,0.02 0.16,0.02 0.02,0 0.05,0 0.07,0 0.01,0 0.03,0.01 0.04,0.01 0.09,0.02 0.18,-0.02 0.22,-0.11 0.01,-0.02 0,-0.03 0,-0.05 0.09,0.34 0.18,0.68 0.27,1.02 -0.02,0 -0.05,-0.01 -0.08,-0.01 z m -15.04,-4.59 c 0,-0.02 -0.01,-0.03 -0.02,-0.04 0.26,0 0.53,0 0.79,0 -0.29,0.31 -0.55,0.66 -0.78,1.03 0,-0.11 0.01,-0.21 0.01,-0.32 0,-0.23 0,-0.45 0,-0.67 z m -0.21,1.32 c -0.03,0.06 -0.07,0.11 -0.1,0.16 -0.1,0.19 -0.16,0.39 -0.24,0.59 0,-0.27 0,-0.53 -0.01,-0.8 0,-0.25 -0.01,-0.5 -0.01,-0.75 0,-0.02 0,-0.02 0,-0.03 0,-0.09 0,-0.18 0,-0.26 0.07,-0.05 0.06,-0.14 0,-0.2 0,-0.03 0,-0.05 0,-0.08 0.12,0 0.24,0 0.37,0 -0.01,0.01 -0.02,0.02 -0.02,0.04 0,0.22 0,0.44 0,0.66 -0.02,0.23 -0.03,0.45 0.01,0.67 z m -2.07,3.07 c -0.06,0 -0.06,0.06 -0.02,0.09 -0.42,0 -0.83,0 -1.25,0.01 -0.74,0 -1.48,0.04 -2.21,0.09 0.01,-0.02 0.02,-0.03 0.02,-0.04 -0.03,-0.32 -0.05,-0.64 -0.06,-0.96 0,-0.08 -0.11,-0.08 -0.12,0 -0.01,0.32 -0.03,0.64 -0.06,0.96 0,0.02 0.02,0.03 0.03,0.05 -0.18,0.01 -0.36,0.02 -0.54,0.04 -0.02,-0.1 -0.04,-0.2 -0.06,-0.3 -0.06,-0.3 -0.14,-0.6 -0.21,-0.91 -0.15,-0.6 -0.42,-1.17 -0.72,-1.71 -0.04,-0.07 -0.08,-0.13 -0.12,-0.2 0.05,0 0.11,-0.02 0.12,-0.08 0.03,-0.15 0.06,-0.29 0.09,-0.44 0,-0.02 -0.02,-0.03 -0.03,-0.05 0.12,0 0.24,0.01 0.36,0.02 -0.01,0.11 -0.02,0.22 -0.03,0.33 -0.09,0.03 -0.09,0.15 -0.02,0.2 0,0.01 0,0.02 0,0.03 -0.01,0.1 -0.01,0.2 -0.02,0.3 -0.01,0.1 -0.02,0.18 0.04,0.27 0.02,0.04 0.08,0.05 0.11,0.01 0.07,-0.07 0.08,-0.14 0.09,-0.24 0.01,-0.11 0.03,-0.22 0.04,-0.33 0,0 0,0 0,-0.01 0.17,0.01 0.34,0.03 0.52,0.04 0.03,0.02 0.05,0.02 0.08,0.01 0.12,0.01 0.23,0.02 0.35,0.03 -0.01,0.4 -0.01,0.81 0.03,1.21 0,0 0,0 0,0 0,0.06 0.04,0.12 0.12,0.12 0.23,-0.01 0.45,-0.02 0.68,-0.02 0.01,0.09 0.01,0.18 0.02,0.27 0.01,0.08 0.02,0.14 0.04,0.21 0.02,0.07 0.03,0.14 0.06,0.21 0.02,0.05 0.1,0.03 0.11,-0.01 0.02,-0.07 0.02,-0.15 0.03,-0.23 0.01,-0.07 0.01,-0.13 0.01,-0.2 0,-0.09 -0.01,-0.18 -0.01,-0.26 0.15,-0.01 0.3,-0.01 0.45,-0.02 l 0.69,-0.03 c 0.22,-0.01 0.45,0 0.67,-0.05 0.1,-0.03 0.11,-0.2 0,-0.22 -0.22,-0.04 -0.45,-0.01 -0.67,0 -0.23,0.01 -0.46,0.02 -0.69,0.03 -0.15,0.01 -0.31,0.01 -0.46,0.02 -0.02,-0.27 -0.04,-0.54 -0.06,-0.8 -0.01,-0.15 -0.25,-0.16 -0.24,0 0.01,0.27 0.03,0.54 0.04,0.81 -0.22,0.01 -0.43,0.02 -0.65,0.03 0.05,-0.35 0.07,-0.7 0.08,-1.05 0.53,0.03 1.07,0.05 1.6,0.05 0,0.01 0,0.01 0,0.02 0.01,0.23 0.03,0.48 0.07,0.71 0.02,0.08 0.15,0.09 0.17,0 0.03,-0.24 0.04,-0.49 0.03,-0.73 0.29,0 0.57,0 0.85,-0.01 0,0.17 0.01,0.35 0.04,0.52 0.01,0.05 0.08,0.04 0.09,0 0.05,-0.17 0.07,-0.35 0.09,-0.52 0.11,-0.01 0.21,-0.02 0.32,-0.03 0,0.09 -0.01,0.17 -0.01,0.26 -0.01,0.24 -0.01,0.51 0.03,0.74 0.02,0.1 0.17,0.09 0.19,0 0.06,-0.23 0.07,-0.5 0.08,-0.74 0,-0.09 0.01,-0.19 0.01,-0.28 0.19,-0.01 0.38,-0.03 0.58,-0.05 0.01,0.2 0.01,0.41 0.02,0.61 0.01,0.08 0.12,0.08 0.13,0 0.02,-0.21 0.02,-0.41 0.02,-0.62 0.01,0 0.01,0 0.02,0 0.16,-0.02 0.17,-0.26 0,-0.25 0,0 -0.01,0 -0.01,0 0,-0.19 0.01,-0.37 0.01,-0.56 0.15,-0.01 0.3,-0.04 0.45,-0.07 0,0.2 0,0.41 0,0.61 0,0.29 0,0.57 0,0.86 0,0.24 -0.01,0.5 0.06,0.74 -0.05,0.18 -0.1,0.37 -0.14,0.55 -0.07,0.34 -0.12,0.68 -0.14,1.03 -0.32,0 -0.64,0.03 -0.93,0.03 -0.08,0 -0.16,0 -0.24,0 0.03,-0.04 0.03,-0.1 -0.02,-0.1 z m -5.49,-3.46 c 0.04,0.03 0.08,0.03 0.12,0.01 0.02,0 0.05,0 0.07,0 0,0 -0.01,0 -0.01,0 -0.04,0.14 -0.08,0.27 -0.12,0.41 -0.09,-0.15 -0.18,-0.3 -0.28,-0.44 0.08,0.01 0.15,0.02 0.22,0.02 z m 6.91,-0.51 c -0.15,0 -0.3,0 -0.45,0.02 0,-0.04 0,-0.09 0,-0.13 0.15,0 0.3,-0.02 0.45,-0.03 0,0.04 0,0.09 0,0.14 z m -0.66,0.04 c -0.07,0.01 -0.14,0.02 -0.2,0.02 -0.11,0.01 -0.22,0.01 -0.32,0.02 0,-0.06 0,-0.12 0,-0.18 0.11,0 0.23,-0.01 0.34,-0.01 0.06,0 0.12,0 0.18,0 0,0.05 0,0.1 0,0.15 z m -2.28,0.91 c -0.01,-0.14 -0.01,-0.29 -0.02,-0.42 0,0 0,-0.01 0,-0.01 0.3,-0.02 0.61,-0.03 0.91,-0.06 0,0.08 -0.01,0.15 -0.01,0.23 0,0.08 0,0.17 -0.01,0.25 -0.29,0 -0.58,0.01 -0.87,0.01 z m 1.13,-0.27 c 0,-0.08 0.01,-0.16 0.01,-0.24 0.1,-0.01 0.2,-0.02 0.31,-0.03 0,0.09 -0.01,0.19 -0.01,0.28 0,0.07 -0.01,0.15 -0.01,0.22 -0.1,0 -0.21,0.01 -0.31,0.01 0,-0.07 0.01,-0.16 0.01,-0.24 z m 0.61,0.01 c 0,-0.1 0,-0.21 0.01,-0.31 0.14,-0.01 0.29,-0.03 0.43,-0.04 0.03,0 0.07,-0.01 0.1,-0.01 0,0.18 0.01,0.36 0.01,0.55 -0.19,0.01 -0.37,0.01 -0.55,0.02 -0.01,-0.07 0,-0.14 0,-0.21 z m -0.28,-0.59 c -0.1,0.01 -0.21,0.01 -0.31,0.02 0,-0.07 0.01,-0.13 0.01,-0.2 0.1,0 0.21,-0.01 0.31,-0.01 0,0.06 0,0.13 -0.01,0.19 z m -0.55,0.03 c -0.32,0.01 -0.63,0.01 -0.95,0.02 0,-0.07 -0.01,-0.13 -0.01,-0.2 0.32,-0.01 0.65,-0.02 0.97,-0.02 0,0.06 0,0.13 -0.01,0.2 z m -1.21,0.02 c -0.22,0 -0.44,0.01 -0.66,0.01 0,-0.01 0,-0.01 0,-0.02 0,-0.06 0,-0.11 0,-0.17 0.22,-0.01 0.44,-0.01 0.66,-0.02 0,0.07 0,0.13 0,0.2 z m -0.88,0.57 c 0.05,0.07 0.13,0.07 0.19,0 0.03,-0.04 0.04,-0.09 0.04,-0.14 0.22,-0.01 0.44,-0.03 0.67,-0.04 0,0.14 0.01,0.28 0.02,0.43 -0.53,0 -1.05,0 -1.58,-0.02 0,-0.03 0,-0.06 0,-0.08 0,-0.1 0,-0.19 0.01,-0.29 0.21,0 0.41,0.01 0.62,0.01 -0.01,0.04 0,0.09 0.03,0.13 z m -0.93,0.11 c 0,0.03 0,0.07 0,0.1 -0.08,0 -0.17,-0.01 -0.25,-0.01 0,0 0,0 0,-0.01 0.01,-0.07 0,-0.15 0,-0.23 0,-0.04 0,-0.08 0,-0.12 0.09,0 0.17,0 0.26,0 0,0.09 0,0.18 -0.01,0.27 z m -0.52,0.07 c -0.13,-0.01 -0.27,-0.01 -0.4,-0.02 0.01,-0.11 0.02,-0.21 0.03,-0.32 0.12,0 0.24,0 0.37,0 0,0.04 0,0.08 0,0.12 0,0.07 -0.01,0.14 0,0.22 -0.01,-0.01 0,-0.01 0,0 z m 5.57,-1.33 c -0.15,-0.01 -0.3,-0.01 -0.45,-0.01 0,-0.01 0,-0.01 0,-0.02 0.15,0 0.3,0 0.46,0 -0.01,0.01 -0.01,0.02 -0.01,0.03 z m -0.66,-0.01 c -0.09,0 -0.18,0.01 -0.27,0.01 -0.08,0 -0.16,0 -0.25,0.01 0,-0.01 0,-0.02 0,-0.04 0.17,0 0.35,0 0.52,0 0,0.01 0,0.01 0,0.02 z m -0.79,0.02 c -0.1,0 -0.21,0 -0.31,0.01 0,0 0,-0.01 0,-0.01 0,-0.02 -0.01,-0.02 -0.01,-0.04 0.11,0 0.22,0 0.33,0 -0.01,0.01 -0.01,0.03 -0.01,0.04 z m -0.55,0 c 0,0.01 0,0.01 0,0.02 -0.01,0 -0.01,0 -0.02,0 -0.33,0.01 -0.65,0.02 -0.98,0.02 0,-0.03 0,-0.05 0,-0.08 0.34,0 0.68,0 1.02,0 -0.01,0.01 -0.02,0.02 -0.02,0.04 z m -1.26,-0.04 c 0,0.03 0,0.05 0,0.08 -0.22,0.01 -0.43,0.01 -0.65,0.02 0,-0.02 0,-0.04 0,-0.06 0,-0.02 -0.01,-0.02 -0.02,-0.04 0.23,0 0.45,0 0.67,0 z m -0.89,0.04 c 0,0.02 0,0.05 0,0.07 -0.03,0 -0.06,0 -0.1,0 -0.21,0.01 -0.21,0.33 0,0.33 0.03,0 0.06,0 0.09,0 0,0.06 0,0.11 0,0.17 0,0.01 0,0.01 0,0.02 -0.2,0 -0.41,0 -0.61,-0.01 0.01,-0.21 0.01,-0.41 0.02,-0.62 0.21,0 0.42,0 0.62,0 -0.01,0.01 -0.02,0.02 -0.02,0.04 z m -0.88,0.57 c -0.09,0 -0.18,0 -0.28,0 0,-0.2 0,-0.41 -0.01,-0.61 0.1,0 0.2,0 0.3,0 0.01,0.2 0,0.41 -0.01,0.61 z m -0.54,0 c -0.11,0 -0.22,0 -0.33,0 0.02,-0.2 0.04,-0.41 0.05,-0.61 0.09,0 0.19,0 0.28,0 0,0.2 0,0.4 0,0.61 z m -0.6,-0.02 c -0.18,-0.01 -0.36,-0.02 -0.54,-0.03 0,-0.1 0,-0.19 0,-0.29 0,-0.09 0,-0.19 0,-0.29 0.1,0 0.21,0 0.3,0 0.1,0 0.2,0 0.29,0 -0.01,0.21 -0.03,0.41 -0.05,0.61 z m -0.81,-0.04 c -0.16,-0.01 -0.31,-0.01 -0.47,-0.01 -0.08,-0.1 -0.16,-0.21 -0.25,-0.31 -0.07,-0.08 -0.16,-0.15 -0.23,-0.23 0.32,0.01 0.63,0 0.94,0 0,0.09 0,0.19 0,0.28 0,0.09 0,0.18 0.01,0.27 z m -10.42,-1.79 c 0.17,0.09 0.36,0.17 0.54,0.25 0.34,0.15 0.67,0.31 0.99,0.48 0.64,0.34 1.26,0.75 1.84,1.2 1.12,0.89 2.05,2.03 2.6,3.36 0.31,0.75 0.45,1.51 0.48,2.28 -0.38,-0.02 -0.78,0.02 -1.12,0.01 -0.77,-0.01 -1.53,-0.02 -2.3,-0.02 -1.5,-0.01 -3.01,-0.05 -4.51,-0.01 0,0 -0.01,0 -0.01,0 0.51,-2.51 1,-5.03 1.49,-7.55 z m 42.01,38.28 c 0.01,0.06 0.01,0.13 0.02,0.19 -0.04,0.01 -0.08,0.01 -0.12,0.02 0.02,-0.14 0.04,-0.27 0.05,-0.41 0.02,0.06 0.04,0.13 0.05,0.2 z m -35.45,0.05 c 5.99,0.09 12,-0.05 17.99,-0.24 5.73,-0.18 11.47,-0.55 17.11,-1.49 0.02,0.08 0.04,0.16 0.06,0.24 -0.01,0.02 -0.02,0.03 -0.02,0.05 -0.03,0.3 -0.06,0.6 -0.09,0.89 -0.01,0.15 -0.03,0.29 -0.04,0.44 -0.01,0.11 -0.01,0.21 -0.01,0.32 -0.27,0.05 -0.54,0.09 -0.82,0.13 0,-0.05 0.01,-0.11 0.02,-0.16 0.01,-0.16 0.03,-0.32 0.04,-0.48 0.03,-0.33 0.05,-0.65 0.08,-0.98 0.01,-0.18 -0.26,-0.18 -0.28,0 -0.03,0.38 -0.06,0.75 -0.1,1.13 -0.01,0.18 -0.03,0.35 -0.04,0.53 -0.45,0.07 -0.91,0.15 -1.36,0.22 0,-0.13 0,-0.26 0,-0.39 0,-0.28 0,-0.55 0,-0.83 0,-0.2 -0.3,-0.2 -0.3,0 0,0.28 0,0.55 0,0.83 0,0.14 0,0.27 0,0.41 0,0.01 0,0.02 0,0.03 -0.54,0.07 -1.08,0.12 -1.63,0.18 -0.02,-0.08 -0.05,-0.17 -0.05,-0.26 -0.01,-0.27 0.05,-0.54 0.19,-0.78 0.09,-0.15 -0.14,-0.29 -0.24,-0.14 -0.17,0.28 -0.25,0.6 -0.23,0.93 0.01,0.09 0.04,0.18 0.06,0.27 -0.53,0.06 -1.07,0.13 -1.6,0.18 0,-0.07 0.01,-0.13 0.01,-0.2 v -0.49 c 0,-0.13 -0.2,-0.13 -0.2,0 v 0.49 c 0,0.07 0.01,0.15 0.01,0.22 -0.63,0.06 -1.25,0.1 -1.88,0.15 0,-0.29 0,-0.57 0,-0.86 0,-0.18 -0.28,-0.18 -0.28,0 0,0.29 0,0.59 0,0.88 -0.72,0.06 -1.43,0.12 -2.15,0.16 0,-0.02 -0.01,-0.04 -0.01,-0.07 0.01,-0.16 -0.24,-0.16 -0.25,0 0,0.03 0.01,0.05 0.01,0.08 -1.21,0.07 -2.43,0.14 -3.64,0.19 -5.84,0.24 -11.7,0.35 -17.54,0.35 -2.65,0 -5.31,-0.05 -7.97,-0.15 0,-0.01 0.01,-0.02 0.02,-0.03 0.01,-0.04 0.02,-0.09 0.02,-0.13 0.02,-0.1 0.03,-0.2 0.05,-0.3 0.03,-0.2 0.06,-0.39 0.08,-0.59 0.01,-0.1 -0.02,-0.22 -0.14,-0.24 -0.09,-0.02 -0.23,0.03 -0.24,0.14 -0.03,0.2 -0.06,0.39 -0.08,0.59 -0.02,0.11 -0.03,0.21 -0.04,0.32 -0.01,0.08 -0.02,0.16 -0.01,0.24 -0.53,-0.02 -1.07,-0.06 -1.6,-0.09 -0.01,-0.03 -0.02,-0.07 -0.03,-0.1 -0.05,-0.23 -0.05,-0.47 0,-0.71 0.04,-0.2 -0.26,-0.29 -0.31,-0.08 -0.06,0.28 -0.06,0.58 0,0.86 0,0 0,0 0,0.01 -0.52,-0.03 -1.05,-0.06 -1.57,-0.1 -0.05,-0.2 -0.1,-0.4 -0.14,-0.6 -0.05,-0.2 -0.36,-0.11 -0.31,0.08 0.04,0.16 0.08,0.33 0.12,0.49 -0.52,-0.04 -1.05,-0.08 -1.57,-0.12 0,0 0,-0.01 0,-0.01 0,-0.19 0,-0.39 0,-0.58 0,-0.16 -0.26,-0.16 -0.25,0 0,0.19 0,0.38 0,0.57 -0.37,-0.03 -0.74,-0.07 -1.1,-0.11 0,-0.02 0,-0.03 0,-0.05 v -0.73 c 0,-0.14 -0.22,-0.14 -0.22,0 v 0.73 c 0,0.01 0,0.02 0,0.03 -0.51,-0.05 -1.03,-0.09 -1.54,-0.15 0.02,-0.31 0.01,-0.62 0.01,-0.93 0,-0.36 0,-0.72 0,-1.09 0.16,-0.87 0.34,-1.74 0.51,-2.61 0,-0.02 0.01,-0.04 0.01,-0.06 3.07,0.64 6.22,0.92 9.35,1.15 3.19,0.23 6.39,0.37 9.59,0.42 6.34,0.09 12.67,-0.35 18.99,-0.89 1.78,-0.15 3.57,-0.33 5.34,-0.54 0.89,-0.1 1.78,-0.18 2.66,-0.29 0.7,-0.09 1.39,-0.17 2.05,-0.37 0.08,0.3 0.16,0.59 0.24,0.89 -4.83,0.81 -9.74,1.18 -14.64,1.38 -5.81,0.24 -11.64,0.35 -17.46,0.35 -5.39,0 -10.79,-0.16 -16.15,-0.75 -0.16,0.43 -0.3,0.87 -0.44,1.31 4.63,0.58 9.29,0.83 13.95,0.91 z m -12.64,-5.95 c -0.02,-0.18 -0.03,-0.37 -0.04,-0.55 0.03,0 0.07,-0.01 0.1,-0.01 0.05,0.2 0.1,0.41 0.15,0.61 -0.02,0 -0.04,0.01 -0.06,0.01 -0.05,0.01 -0.09,0.01 -0.14,0.01 0,-0.02 -0.01,-0.04 -0.01,-0.07 z m 0.06,-1.91 c 0.08,0 0.16,0 0.23,-0.01 0,0.12 -0.01,0.24 -0.02,0.36 -0.1,0 -0.21,0 -0.31,0.01 0,-0.02 0,-0.04 0,-0.06 0,-0.01 -0.01,-0.02 -0.01,-0.03 0.02,-0.09 0.03,-0.18 0.05,-0.26 0.02,-0.01 0.04,-0.01 0.06,-0.01 z m 0.2,0.68 c 0,0.05 0,0.09 -0.01,0.14 -0.12,-0.09 -0.33,0 -0.28,0.18 -0.01,0 -0.02,0 -0.03,0 0,-0.11 0.01,-0.22 0.01,-0.33 0.1,0 0.21,0 0.31,0.01 z m 0.63,2.34 c -0.02,-0.1 -0.05,-0.19 -0.08,-0.28 -0.05,-0.19 -0.1,-0.37 -0.15,-0.56 0.02,-0.04 0.05,-0.07 0.06,-0.11 0.03,-0.09 -0.05,-0.18 -0.14,-0.18 0,-0.02 -0.01,-0.03 -0.01,-0.05 l 0.02,-0.44 c 0.01,0 0.02,0 0.03,0 0.09,0.01 0.18,0.02 0.28,0.02 0,0.2 0,0.4 -0.01,0.59 0,0.33 -0.01,0.67 0,1.01 z m -0.72,-0.31 c 0,0.04 0,0.08 -0.01,0.12 -0.01,-0.03 -0.02,-0.06 -0.02,-0.1 0.01,0 0.02,-0.01 0.03,-0.02 z m 0.36,0.48 c 0.01,0.04 0.04,0.07 0.05,0.11 -0.02,0 -0.04,0 -0.07,0 0,-0.04 0.01,-0.07 0.02,-0.11 z m 0.37,-2.13 c -0.09,-0.03 -0.19,-0.04 -0.27,-0.05 -0.01,0 -0.02,0 -0.04,0 v -0.01 c 0,-0.11 0,-0.21 0.01,-0.32 0.1,0 0.2,0 0.3,0 0.01,0.12 0,0.25 0,0.38 z m -0.6,-1.33 c 0,0 0,0 0,0 -0.08,-0.01 -0.16,-0.01 -0.24,-0.01 0.04,-0.19 0.08,-0.39 0.11,-0.58 0.01,-0.05 0.02,-0.11 0.03,-0.16 0.04,0 0.09,0.01 0.13,0.01 -0.01,0.25 -0.02,0.5 -0.03,0.74 z m -0.62,1.9 c 0.01,0.12 0,0.23 0.02,0.35 0,0.01 0,0.03 0.01,0.04 -0.03,0 -0.07,0.01 -0.1,0.01 0.02,-0.14 0.05,-0.27 0.07,-0.4 z m 0.17,1.32 c 0.02,0.11 0.06,0.21 0.1,0.31 -0.2,-0.01 -0.39,-0.03 -0.59,-0.04 0,-0.01 0,-0.02 0,-0.02 0.18,-0.07 0.34,-0.15 0.49,-0.25 z m 39.85,-0.22 c -0.1,0 -0.2,0.01 -0.3,0.01 -0.08,0 -0.16,0.07 -0.15,0.15 0,0.08 0.07,0.15 0.15,0.15 0.1,0 0.2,0.01 0.31,0.01 0.03,0 0.06,0 0.09,0 0.03,0.08 0.06,0.16 0.1,0.22 0.03,0.05 0.1,0.08 0.16,0.06 0.03,-0.01 0.04,-0.02 0.06,-0.04 0.04,-0.03 0.05,-0.1 0.04,-0.14 -0.02,-0.06 -0.04,-0.13 -0.06,-0.19 0.02,-0.02 0.05,-0.02 0.06,-0.05 0.01,-0.03 0.01,-0.06 0,-0.08 -0.02,-0.06 -0.07,-0.09 -0.13,-0.1 -0.02,-0.08 -0.06,-0.16 -0.07,-0.25 -0.02,-0.15 0,-0.3 0.01,-0.45 0.21,0 0.41,0 0.62,0 0.01,0.13 0.01,0.27 0.02,0.4 0,0.07 0.01,0.13 0.01,0.2 -0.01,0 -0.01,-0.01 -0.02,-0.01 -0.18,0 -0.18,0.28 0,0.28 0.02,0 0.02,-0.01 0.03,-0.01 0.01,0.13 0.01,0.28 0.09,0.38 0.04,0.05 0.12,0.03 0.15,-0.02 0.04,-0.06 0.03,-0.14 0.04,-0.21 0,-0.06 0,-0.13 0,-0.19 -0.01,-0.14 -0.02,-0.29 -0.03,-0.43 l -0.03,-0.38 c 0.05,0 0.1,0 0.15,0 0.04,0.24 0.08,0.49 0.12,0.73 0.03,0.19 0.07,0.39 0.1,0.58 -0.9,0.12 -1.81,0.23 -2.71,0.33 0,0 0.01,0 0.01,-0.01 0.02,-0.08 -0.01,-0.14 -0.03,-0.21 -0.02,-0.07 -0.04,-0.14 -0.06,-0.21 -0.04,-0.13 -0.07,-0.26 -0.09,-0.39 -0.03,-0.24 -0.01,-0.48 0.02,-0.71 0.26,0 0.52,0 0.76,-0.07 0.03,-0.01 0.02,-0.04 0.04,-0.05 0.17,0 0.35,0.01 0.52,0.01 -0.03,0.24 -0.03,0.47 0.02,0.69 z m -14.55,0.23 c 0,-0.02 -0.01,-0.04 -0.01,-0.07 0.2,0 0.42,-0.01 0.63,-0.04 0.09,-0.02 0.09,-0.16 0,-0.18 -0.2,-0.05 -0.43,-0.07 -0.64,-0.09 -0.01,0 -0.02,0 -0.04,0 -0.01,-0.06 -0.02,-0.12 -0.03,-0.18 0.35,0 0.7,-0.01 1.05,-0.01 0.01,0.32 0.02,0.65 0.03,0.97 0,0.02 0,0.05 0,0.07 -0.1,-0.01 -0.21,-0.02 -0.31,-0.02 -0.19,0 -0.38,0.01 -0.56,0.01 -0.04,-0.15 -0.08,-0.3 -0.12,-0.46 z m 2.76,0.12 c 0.25,0.01 0.51,0 0.76,0.01 0.01,0.12 0.03,0.23 0.05,0.35 -0.04,0 -0.08,0 -0.12,0 -0.3,0 -0.6,0.02 -0.9,0.04 -0.03,-0.11 -0.06,-0.22 -0.08,-0.34 -0.06,-0.26 -0.13,-0.52 -0.19,-0.78 0.16,0 0.33,-0.01 0.49,-0.01 0.16,0 0.32,-0.01 0.48,-0.03 0.06,0 0.12,-0.01 0.18,-0.01 l 0.06,0.51 c -0.24,0.01 -0.49,0 -0.73,0.01 -0.15,0.02 -0.15,0.25 0,0.25 z m -0.76,-0.71 c 0.06,0.28 0.13,0.56 0.19,0.84 0.02,0.09 0.04,0.19 0.06,0.28 -0.07,0 -0.13,0.01 -0.2,0 -0.24,-0.01 -0.47,-0.04 -0.71,-0.06 0,-0.04 0,-0.07 -0.01,-0.11 -0.02,-0.32 -0.04,-0.63 -0.06,-0.95 0.15,0 0.29,0 0.44,0 0.1,0.01 0.2,0 0.29,0 z m -1.35,1.41 c 0.13,0.01 0.25,0 0.37,0 0,0.12 0.02,0.24 0.03,0.37 -0.24,0.01 -0.47,0.04 -0.71,0.07 0.01,-0.15 -0.05,-0.31 -0.11,-0.46 0.14,0.01 0.28,0.02 0.42,0.02 z m 0.71,0 c 0.23,-0.01 0.46,-0.02 0.69,-0.03 0.09,0 0.18,0.01 0.27,0.02 0.03,0.12 0.06,0.24 0.11,0.36 0.05,0.12 0.26,0.12 0.24,-0.03 -0.01,-0.1 -0.03,-0.2 -0.05,-0.31 0.26,0.03 0.53,0.06 0.79,0.07 0.08,0 0.16,0 0.25,0.01 0.03,0.1 0.06,0.19 0.1,0.28 0.04,0.07 0.15,0.05 0.16,-0.02 0.02,-0.08 0.02,-0.16 0.02,-0.24 0.28,0.01 0.56,0 0.81,-0.07 0.13,-0.04 0.12,-0.22 0,-0.25 -0.26,-0.08 -0.55,-0.1 -0.83,-0.1 -0.01,-0.12 -0.03,-0.23 -0.05,-0.35 0.3,0.01 0.6,0.01 0.91,0.01 0,0.02 0,0.05 0,0.07 0.01,0.13 0,0.3 0.07,0.42 0.04,0.08 0.16,0.05 0.19,-0.02 0.04,-0.12 0.01,-0.28 0.01,-0.41 0,-0.02 0,-0.03 0,-0.05 0.39,0 0.78,0.02 1.17,0.02 0,0.01 0,0.01 0,0.02 0.04,0.1 0.21,0.1 0.21,-0.02 0.08,0 0.16,0 0.25,0 0.21,0 0.42,0 0.63,0 0.01,0.04 0.01,0.08 0.03,0.12 0.02,0.06 0.05,0.13 0.08,0.2 -0.42,0.02 -0.85,0.03 -1.27,0.05 -0.23,0.01 -0.23,0.36 0,0.36 0.59,0.01 1.17,0.03 1.76,0.03 0.61,0 1.21,-0.08 1.81,-0.09 0.59,-0.01 1.17,-0.02 1.76,0 0.26,0.01 0.52,0.02 0.79,0.02 -2.96,0.31 -5.96,0.56 -8.93,0.6 -0.65,0.01 -1.3,0.01 -1.96,0.02 0,-0.01 0.01,-0.01 0.01,-0.02 -0.01,-0.25 -0.01,-0.46 -0.03,-0.67 z m 4.92,-1.38 c -0.02,-0.07 -0.03,-0.15 -0.05,-0.22 0.3,0 0.61,0 0.91,0 0,0.18 0.02,0.36 0.04,0.53 0,0.03 0.01,0.05 0.02,0.08 -0.18,0 -0.36,0 -0.54,0 -0.1,0 -0.2,0 -0.3,0 -0.03,-0.13 -0.05,-0.26 -0.08,-0.39 z m 5.22,1.06 c -0.6,0.02 -1.21,0.03 -1.81,0.03 -0.59,0 -1.17,-0.07 -1.76,-0.06 -0.08,0 -0.16,0.01 -0.23,0.01 -0.02,-0.09 -0.05,-0.18 -0.08,-0.27 0,-0.01 0,-0.02 -0.01,-0.03 0.31,0 0.63,0 0.94,-0.01 0.03,0 0.07,0 0.1,0 0.01,0.09 0.01,0.19 0.06,0.26 0.05,0.09 0.16,0.05 0.19,-0.03 0.03,-0.07 0.03,-0.16 0.02,-0.24 0.2,0 0.4,-0.01 0.6,-0.01 0.08,0 0.18,0 0.26,0 0,0.01 0,0.02 0.01,0.04 0.03,0.13 0.23,0.1 0.23,-0.03 0,0 0,-0.01 0,-0.01 0.16,0 0.31,-0.02 0.45,-0.07 0.07,-0.03 0.07,-0.12 0,-0.15 -0.15,-0.06 -0.31,-0.07 -0.48,-0.07 -0.02,-0.16 -0.03,-0.32 -0.06,-0.48 -0.01,-0.07 -0.02,-0.15 -0.03,-0.22 0.02,0 0.04,0 0.05,0 0.26,0 0.52,0.01 0.78,0.02 0.03,0.16 0.07,0.32 0.1,0.49 0.03,0.13 0.05,0.25 0.08,0.38 0.01,0.06 0.04,0.12 0.05,0.19 0.02,0.06 0.03,0.13 0.07,0.19 0.04,0.07 0.13,0.03 0.13,-0.04 0.01,-0.07 -0.01,-0.13 -0.02,-0.2 -0.01,-0.06 -0.01,-0.12 -0.02,-0.18 -0.03,-0.13 -0.06,-0.26 -0.08,-0.39 -0.03,-0.14 -0.06,-0.28 -0.09,-0.42 0.34,0.01 0.67,0.03 1.01,0.03 0.1,0 0.2,0 0.3,0 0.04,0.14 0.07,0.28 0.11,0.42 0.04,0.14 0.07,0.27 0.11,0.41 0.04,0.14 0.06,0.31 0.16,0.42 0.06,0.06 0.17,0.03 0.19,-0.05 0.03,-0.14 -0.04,-0.3 -0.07,-0.44 -0.03,-0.14 -0.07,-0.27 -0.11,-0.41 -0.03,-0.11 -0.06,-0.23 -0.09,-0.34 0.11,0 0.22,0 0.34,0 -0.03,0.24 -0.05,0.49 -0.02,0.74 0.02,0.15 0.05,0.3 0.09,0.45 0.01,0.04 0.03,0.08 0.04,0.11 -0.48,-0.1 -1,-0.06 -1.51,-0.04 z m -4.01,-0.82 c -0.03,-0.15 -0.04,-0.31 -0.05,-0.47 0.17,0 0.34,0.01 0.51,0 0.21,-0.01 0.42,-0.02 0.63,-0.03 0.01,0.15 0.02,0.3 0.03,0.45 0,0.06 0.01,0.13 0.01,0.19 -0.01,0 -0.02,0 -0.03,0 -0.36,0 -0.72,0 -1.08,0 0.01,-0.04 -0.01,-0.09 -0.02,-0.14 z m 2.18,-0.25 c 0.02,0.14 0.05,0.28 0.07,0.42 -0.05,0 -0.11,0 -0.17,0 -0.22,-0.01 -0.45,-0.01 -0.67,-0.01 0,-0.07 -0.01,-0.14 -0.01,-0.21 -0.01,-0.15 -0.02,-0.3 -0.03,-0.45 0.26,-0.01 0.52,-0.02 0.77,-0.02 z m -3.77,-0.22 c 0.02,0 0.04,0 0.06,0 0.02,0.09 0.04,0.18 0.06,0.28 0.03,0.12 0.06,0.23 0.09,0.34 -0.37,0 -0.74,0.01 -1.11,0.02 0,-0.02 0,-0.04 0,-0.06 -0.02,-0.26 -0.04,-0.51 -0.06,-0.77 0.27,0 0.54,0 0.8,0 0,0.1 0.05,0.19 0.16,0.19 z m -1.2,-0.19 c 0.02,0.26 0.03,0.52 0.05,0.79 0,0.02 0,0.03 0,0.05 -0.31,0 -0.62,0.01 -0.93,0.01 -0.03,-0.18 -0.06,-0.37 -0.09,-0.55 0.01,0 0.03,0 0.04,-0.01 0.14,-0.06 0.15,-0.24 0,-0.29 0.32,0 0.62,0 0.93,0 z m -4.81,0.05 c 0,-0.02 0,-0.05 0,-0.07 0.58,0 1.16,0.01 1.74,0.01 -0.58,0.01 -1.16,0.03 -1.74,0.06 z m -0.29,0.02 c -0.21,0.03 -0.21,0.34 0.01,0.35 0,0.05 0.01,0.11 0.02,0.16 -0.1,-0.01 -0.21,-0.02 -0.31,-0.02 -0.15,-0.01 -0.3,-0.01 -0.45,-0.02 -0.02,-0.19 -0.05,-0.38 -0.07,-0.57 0.27,0 0.54,0 0.8,0 0,0.03 0,0.07 0,0.1 z m -1.09,-0.1 c 0.02,0.19 0.04,0.38 0.06,0.57 -0.19,-0.01 -0.39,-0.01 -0.58,-0.02 -0.22,-0.01 -0.22,0.33 0,0.34 0.21,0.01 0.41,0.02 0.62,0.03 0.02,0.15 0.03,0.3 0.05,0.45 0.02,0.16 0.02,0.34 0.08,0.49 0.04,0.1 0.23,0.14 0.25,0 0.02,-0.17 0,-0.33 -0.02,-0.49 -0.02,-0.14 -0.03,-0.29 -0.05,-0.43 0.14,0.01 0.27,0.01 0.41,0.02 0.12,0 0.23,0 0.35,0 0.01,0.04 0.01,0.09 0.02,0.13 0.02,0.14 0.06,0.27 0.1,0.4 -0.16,0.01 -0.32,0.01 -0.49,0.01 -0.16,0 -0.16,0.25 0,0.25 0.19,0.01 0.37,0.02 0.56,0.04 0.05,0.16 0.12,0.37 0.24,0.51 -0.01,0 -0.01,0 -0.02,0 -0.36,0.03 -0.71,0.05 -1.07,0.06 -0.72,0.01 -1.45,-0.03 -2.17,-0.14 -0.18,-0.03 -0.26,0.24 -0.08,0.28 0.01,0 0.02,0 0.03,0.01 -0.67,0 -1.34,-0.01 -2.01,-0.01 0.03,-0.17 0.02,-0.36 0.02,-0.51 0,-0.25 0,-0.5 -0.01,-0.75 0,-0.09 0,-0.17 -0.01,-0.26 0.23,0 0.47,0 0.7,0 0.22,0 0.45,-0.01 0.67,-0.02 v 0.06 c 0,0.2 0.02,0.4 0.04,0.6 0.01,0.06 0.08,0.06 0.09,0 0.03,-0.2 0.04,-0.4 0.04,-0.6 v -0.07 c 0.01,0 0.01,0 0.02,0 0.12,-0.01 0.12,-0.18 0,-0.19 -0.01,0 -0.01,0 -0.02,0 v -0.34 c 0,0 0,0 0,0 0.15,0 0.3,0.01 0.45,0.01 0.1,0 0.12,-0.15 0.02,-0.17 -0.6,-0.13 -1.2,-0.2 -1.81,-0.26 1.18,-0.01 2.35,-0.01 3.52,0 z m -14.47,2.05 c -0.01,-0.01 -0.02,-0.02 -0.04,-0.02 -0.01,0 -0.02,0.01 -0.03,0.01 -0.5,-0.04 -1,-0.08 -1.5,-0.12 0,-0.12 0.01,-0.23 -0.01,-0.36 0,-0.03 -0.02,-0.04 -0.04,-0.05 -0.02,-0.18 -0.03,-0.37 -0.05,-0.55 0.16,0 0.33,-0.01 0.49,-0.01 0,0.03 0,0.06 0,0.08 0,0.08 0.01,0.17 0.01,0.25 0.01,0.08 0,0.17 0.05,0.24 -0.21,-0.01 -0.2,0.31 0.01,0.34 1.17,0.11 2.33,0.2 3.5,0.27 0,0.02 0.01,0.03 0.01,0.05 -0.65,-0.04 -1.3,-0.06 -1.94,-0.1 -0.15,0 -0.3,-0.01 -0.46,-0.03 z m -0.88,-0.75 c 0,-0.08 -0.01,-0.15 -0.01,-0.23 0,-0.03 0,-0.07 -0.01,-0.1 0.21,0 0.41,0.01 0.62,0.01 0,0.01 0,0.02 0,0.03 0,0.04 0.02,0.07 0.04,0.11 0.03,0.07 0.16,0.07 0.2,0 0.01,-0.03 0.03,-0.06 0.03,-0.09 0,-0.02 0,-0.03 0,-0.05 0.15,0 0.31,0 0.46,0.01 0,0.1 0.01,0.2 0.01,0.3 0.01,0.13 0.02,0.25 0.03,0.38 -0.47,-0.03 -0.94,-0.07 -1.41,-0.11 0,0 0,0 0,0 0.06,-0.09 0.04,-0.17 0.04,-0.26 z m 1.6,0.37 c 0,-0.13 0.01,-0.26 0,-0.39 0,-0.1 -0.01,-0.2 -0.02,-0.29 0.2,0.01 0.41,0.02 0.61,0.03 0.01,0.1 0.02,0.2 0.04,0.29 0.03,0.12 0.19,0.08 0.2,-0.03 0.01,-0.08 0,-0.17 0,-0.25 0.24,0.01 0.49,0.02 0.73,0.03 0.02,0.22 0.03,0.45 0.05,0.67 0,0.02 0,0.04 0.01,0.06 -0.54,-0.04 -1.08,-0.08 -1.62,-0.12 z m 1.54,-1.03 c -0.24,-0.01 -0.48,-0.02 -0.73,-0.03 0,-0.03 -0.01,-0.06 -0.01,-0.09 0,-0.05 -0.01,-0.1 -0.01,-0.15 0.24,0 0.49,0 0.72,-0.07 0.01,0.11 0.02,0.23 0.03,0.34 z m -0.97,-0.11 c 0,0.02 0,0.05 0,0.07 -0.2,-0.01 -0.4,-0.02 -0.61,-0.02 0,-0.07 -0.01,-0.13 -0.01,-0.2 0.2,0 0.41,0 0.61,0 0,0.04 0.01,0.1 0.01,0.15 z m -0.86,0.04 c -0.15,0 -0.3,0 -0.44,0 0,-0.05 0,-0.09 0,-0.14 0,-0.02 0,-0.04 0,-0.07 0.15,0 0.29,0 0.44,0.01 0,0.07 0,0.14 0,0.2 z m -0.71,-0.14 c 0,0.05 0,0.09 0,0.14 -0.22,0 -0.43,-0.01 -0.65,0 0,0 0,-0.01 0,-0.01 0,-0.07 -0.01,-0.13 -0.01,-0.2 0.22,0 0.44,0.01 0.66,0.01 z m 2.91,1.73 c 0.7,0.04 1.4,0.08 2.1,0.11 0.97,0.03 1.95,0.05 2.93,0.05 0.92,0 1.85,0.04 2.76,-0.11 0,0.03 0,0.07 0,0.1 0,0.06 0,0.12 0.01,0.18 -2.6,-0.04 -5.2,-0.13 -7.8,-0.27 -0.01,-0.03 0,-0.05 0,-0.06 z m 7.13,-0.6 c -0.02,-0.21 -0.05,-0.42 -0.08,-0.64 l -0.1,-0.76 c 0.28,0.03 0.57,0.06 0.85,0.1 -0.01,0.32 -0.02,0.64 -0.02,0.96 0,0.24 0,0.48 -0.01,0.72 0,0.02 0,0.04 0,0.06 -0.22,-0.03 -0.44,-0.05 -0.66,-0.06 0.02,-0.13 0.03,-0.26 0.02,-0.38 z m -1.42,-1.12 c 0,0.07 0.01,0.14 0.01,0.2 -0.07,0.01 -0.15,0.02 -0.22,0.02 -0.19,0.01 -0.38,0.02 -0.57,0.03 0,-0.05 0,-0.1 0,-0.15 v -0.45 c 0.21,0 0.42,0 0.63,0 0.04,0 0.08,0 0.12,0 0.01,0.12 0.02,0.23 0.03,0.35 z m -2.02,0.21 c -0.02,-0.16 -0.05,-0.33 -0.07,-0.49 0.23,-0.03 0.46,-0.06 0.7,-0.07 0.13,0 0.25,0 0.38,0 v 0.45 c 0,0.05 0,0.11 0,0.16 -0.03,0 -0.07,0 -0.1,0 -0.3,0.01 -0.6,0 -0.9,0.02 0,-0.02 -0.01,-0.05 -0.01,-0.07 z m 5.8,0.09 c -0.22,-0.01 -0.45,-0.02 -0.67,-0.02 -0.24,0 -0.47,0 -0.71,0 0,-0.14 0,-0.28 -0.01,-0.42 0.46,0.05 0.92,0.09 1.39,0.11 0,0 0,0 0,0 z m -7.46,-0.82 c 0,0.02 0.01,0.04 0.01,0.05 -0.1,0.02 -0.2,0.03 -0.31,0.05 -0.18,0.03 -0.14,0.33 0.04,0.31 0.11,-0.01 0.21,-0.02 0.32,-0.03 0.01,0.08 0.03,0.16 0.04,0.25 0.02,0.11 0.04,0.22 0.06,0.33 0.02,0.1 0.03,0.22 0.08,0.31 0.02,0.04 0.1,0.04 0.11,-0.01 0.02,-0.11 -0.01,-0.22 -0.03,-0.32 -0.02,-0.11 -0.03,-0.23 -0.05,-0.34 -0.01,-0.08 -0.03,-0.15 -0.04,-0.23 0.25,-0.02 0.51,-0.04 0.76,-0.07 0.12,-0.01 0.24,-0.02 0.35,-0.03 0.02,0.17 0.04,0.33 0.07,0.5 0,0.02 0.01,0.04 0.01,0.06 -0.23,0.02 -0.46,0.04 -0.69,0.05 -0.18,0.01 -0.19,0.3 0,0.29 0.25,-0.01 0.5,-0.02 0.74,-0.03 0.01,0.06 0.01,0.12 0.03,0.18 0.02,0.09 0.04,0.18 0.06,0.26 0.02,0.1 0.09,0.23 0.07,0.34 0,0.03 0.02,0.05 0.05,0.06 0.12,0.04 0.23,-0.1 0.16,-0.21 -0.02,-0.04 -0.09,-0.01 -0.08,0.03 -0.01,0.01 -0.02,0.02 -0.03,0.02 -0.01,-0.08 0,-0.17 0,-0.25 0,-0.1 -0.01,-0.19 -0.01,-0.29 0,-0.05 -0.01,-0.1 -0.02,-0.16 0.3,-0.02 0.6,-0.06 0.9,-0.09 0.02,0 0.05,0 0.07,0 0,0.09 0.01,0.17 0.04,0.25 0.02,0.05 0.12,0.05 0.14,0 0.04,-0.08 0.04,-0.18 0.04,-0.27 0.22,-0.02 0.43,-0.04 0.65,-0.04 0.06,0 0.11,0 0.17,0 0.01,0.11 0.01,0.24 0.06,0.33 0.04,0.06 0.16,0.08 0.19,0 0.05,-0.1 0.03,-0.22 0.02,-0.33 0.15,0 0.3,-0.01 0.45,-0.05 0.14,-0.03 0.1,-0.23 -0.03,-0.24 -0.15,-0.01 -0.29,0 -0.44,0.01 0,-0.06 -0.01,-0.12 -0.01,-0.18 -0.01,-0.11 -0.02,-0.22 -0.02,-0.33 0.08,0 0.15,0 0.23,0.01 0.16,0.01 0.33,0.02 0.49,0 0.03,0.27 0.06,0.53 0.1,0.8 0.02,0.21 0.05,0.42 0.08,0.62 0.02,0.1 0.03,0.19 0.06,0.29 0.01,0.03 0.02,0.07 0.03,0.11 -0.67,-0.02 -1.34,0.01 -2.01,0.01 -0.8,0 -1.59,-0.02 -2.39,-0.05 0.02,-0.02 0.03,-0.04 0.05,-0.06 0.01,-0.02 0.01,-0.05 -0.01,-0.07 -0.02,-0.02 -0.05,-0.02 -0.07,-0.01 -0.06,0.04 -0.12,0.09 -0.18,0.13 -0.09,0 -0.19,0 -0.28,-0.01 -0.69,-0.02 -1.37,-0.06 -2.06,-0.1 0,-0.02 0,-0.05 0,-0.07 -0.02,-0.22 -0.03,-0.44 -0.05,-0.66 0.23,0.01 0.46,0.02 0.68,0.03 0.16,0.01 0.33,0.01 0.5,0.01 0,0.06 0,0.11 0,0.17 0.01,0.14 0.21,0.14 0.22,0 0,-0.06 0,-0.12 0,-0.18 0.04,0 0.09,0 0.14,-0.01 0.12,-0.02 0.1,-0.19 0,-0.23 -0.04,-0.02 -0.09,-0.02 -0.13,-0.03 0,-0.31 0.01,-0.61 0,-0.92 0.22,0.03 0.45,0.03 0.67,0.04 z m 0.16,0 c 0.05,0 0.09,0 0.14,0 -0.05,0.01 -0.09,0.02 -0.14,0.02 0.01,-0.01 0.01,-0.01 0,-0.02 z m -1.07,-0.02 c 0,0.29 0,0.58 0,0.87 -0.15,-0.02 -0.31,-0.04 -0.45,-0.05 -0.26,-0.03 -0.51,-0.05 -0.77,-0.07 -0.02,-0.26 -0.04,-0.52 -0.07,-0.78 0.43,0.01 0.86,0.03 1.29,0.03 z m -1.54,-0.03 c 0,0.07 0.01,0.13 0.01,0.2 -0.24,-0.07 -0.49,-0.06 -0.74,-0.07 0,-0.05 -0.01,-0.1 -0.01,-0.15 0.25,0.01 0.49,0.02 0.74,0.02 z m -0.96,-0.02 c 0,0.05 0.01,0.1 0.01,0.15 -0.2,0 -0.41,0 -0.61,0 0,-0.05 -0.01,-0.11 -0.01,-0.16 0.2,0.01 0.41,0.01 0.61,0.01 z m -0.84,-0.01 c 0,0.06 0,0.11 0.01,0.17 -0.14,0 -0.29,0 -0.43,0.01 0,-0.06 0,-0.12 0,-0.18 0.14,-0.01 0.28,0 0.42,0 z m -0.69,0.18 c -0.23,0 -0.46,0.01 -0.68,0.01 0,-0.07 -0.01,-0.14 -0.01,-0.21 0.23,0.01 0.47,0.01 0.7,0.01 z m -0.96,-0.21 0.01,0.22 c 0,0 0,0 0,0 -0.21,0 -0.21,0.32 0,0.32 0.01,0 0.01,0 0.02,0 l 0.01,0.2 c 0,0 0,0.01 0,0.01 -0.17,0 -0.34,0 -0.52,0 -0.03,-0.26 -0.07,-0.51 -0.11,-0.77 0.2,0.01 0.4,0.01 0.59,0.02 z m -0.91,-0.02 c 0.03,0.26 0.07,0.53 0.11,0.79 -0.12,0.01 -0.23,0.03 -0.35,0.04 -0.02,-0.28 -0.03,-0.56 -0.06,-0.84 0.1,0.01 0.2,0.01 0.3,0.01 z m -0.17,1.94 c -0.02,-0.26 -0.04,-0.52 -0.06,-0.78 0.13,0.01 0.26,0.03 0.39,0.03 0.05,0.31 0.11,0.62 0.17,0.93 -0.16,-0.01 -0.32,-0.03 -0.48,-0.04 -0.01,-0.05 -0.01,-0.09 -0.02,-0.14 z m 38.23,-0.89 c -0.81,0.13 -1.61,0.28 -2.42,0.4 -0.01,-0.04 -0.01,-0.08 -0.02,-0.12 l -0.12,-0.63 c -0.04,-0.21 -0.08,-0.43 -0.12,-0.64 0.51,-0.4 0.36,-1.31 -0.46,-1.4 -1.16,-0.12 -2.36,-0.04 -3.53,-0.05 -1.11,0 -2.22,0 -3.33,0 -2.29,0 -4.57,0 -6.86,0.02 -4.57,0.03 -9.15,0.03 -13.72,0.03 -2.61,0 -5.23,0.04 -7.84,0.09 -0.1,0 -0.19,0.03 -0.27,0.06 -0.22,-0.14 -0.55,-0.09 -0.61,0.21 -0.07,0.33 -0.09,0.65 -0.08,0.99 0.01,0.33 0.02,0.66 0.02,0.99 0.01,0.32 0.02,0.64 0.02,0.95 0,0 0,0 0,0 -1.18,-0.11 -2.36,-0.21 -3.54,-0.31 0.04,-0.46 0.02,-0.94 0.02,-1.4 0,-0.52 -0.01,-1.03 -0.01,-1.55 -0.01,-0.84 -0.02,-1.68 -0.05,-2.52 6.42,0.1 12.85,-0.1 19.26,-0.18 l 20.63,-0.26 c 1.12,-0.01 2.23,-0.03 3.35,-0.04 -0.13,-0.44 -0.23,-0.88 -0.32,-1.32 0.14,0.53 0.29,1.07 0.43,1.6 0.43,1.61 0.86,3.22 1.3,4.83 -0.58,0.05 -1.15,0.16 -1.73,0.25 z m -44.66,-5 c 0.09,0.08 0.21,0.13 0.37,0.14 0.05,0 0.1,0 0.15,0 -0.02,0.81 -0.04,1.61 -0.04,2.42 -0.1,-0.01 -0.2,0 -0.29,0 0.01,-0.46 0.03,-0.92 0.04,-1.38 0.08,-0.04 0.06,-0.14 0.01,-0.19 0,-0.18 0.01,-0.36 0.01,-0.54 0,-0.2 -0.3,-0.2 -0.31,0 -0.01,0.15 -0.01,0.3 -0.02,0.46 -0.03,0 -0.05,-0.01 -0.08,-0.01 0.04,-0.3 0.1,-0.6 0.16,-0.9 z m -0.91,4.62 c 0.08,0 0.15,-0.01 0.23,-0.01 0.01,0.07 0.02,0.13 0.03,0.2 -0.01,0.01 -0.02,0.02 -0.03,0.03 -0.1,0.07 -0.2,0.13 -0.31,0.19 0.02,-0.14 0.05,-0.27 0.08,-0.41 z m -1.1,6.55 c -0.03,0 -0.06,-0.01 -0.09,-0.01 0.02,-0.22 0.05,-0.43 0.08,-0.65 0,0.22 0,0.44 0.01,0.66 z m 0.18,1.37 c 0,0.17 0,0.33 0,0.5 0,0.32 0,0.66 0.08,0.97 0.02,0.06 0.11,0.06 0.13,0 0.08,-0.32 0.08,-0.65 0.08,-0.97 v -0.47 c 1.21,0.15 2.42,0.28 3.63,0.39 0,0.24 0,0.49 0,0.73 0,0.15 0,0.29 0.01,0.44 0.01,0.14 0,0.29 0.04,0.43 0.02,0.09 0.16,0.09 0.18,0 0.04,-0.14 0.03,-0.29 0.04,-0.43 0.01,-0.15 0.01,-0.29 0.01,-0.44 0,-0.24 0,-0.47 0,-0.71 0.92,0.08 1.84,0.16 2.77,0.22 0,0.42 0,0.84 0,1.26 0,0.46 -0.05,0.95 0.06,1.4 0.02,0.07 0.12,0.07 0.14,0 0.11,-0.45 0.06,-0.94 0.06,-1.4 0,-0.41 0,-0.83 0,-1.24 1.01,0.06 2.02,0.12 3.03,0.16 0.01,0.23 0.02,0.47 0.03,0.7 0.02,0.35 0.03,0.69 0.12,1.03 0.02,0.06 0.12,0.07 0.13,0 0.05,-0.34 0.04,-0.68 0.02,-1.03 -0.01,-0.23 -0.02,-0.46 -0.04,-0.69 0.38,0.01 0.76,0.02 1.14,0.03 0.02,0.21 0.04,0.42 0.07,0.64 0.02,0.15 0.03,0.3 0.05,0.45 0.01,0.08 0.02,0.16 0.03,0.24 0.01,0.08 0.01,0.16 0.08,0.22 0.07,0.06 0.15,0.05 0.2,-0.03 0.05,-0.07 0.03,-0.15 0.02,-0.24 -0.01,-0.08 -0.02,-0.16 -0.03,-0.24 -0.02,-0.15 -0.04,-0.3 -0.06,-0.45 -0.03,-0.2 -0.06,-0.39 -0.09,-0.59 0.49,0.01 0.99,0.03 1.48,0.04 0,0.16 0,0.33 0,0.49 0,0.08 0,0.16 0,0.24 0,0.04 0,0.08 0,0.12 0,0.04 0.02,0.09 0.02,0.13 0.01,0.05 0.09,0.05 0.1,0 0.01,-0.04 0.02,-0.08 0.02,-0.12 0,-0.04 0,-0.08 0,-0.13 0,-0.08 0,-0.16 0,-0.24 0,-0.16 0,-0.33 0,-0.49 0.21,0 0.43,0.01 0.64,0.02 0.11,0 0.22,0 0.33,0 l -0.01,0.57 c 0,0.13 0,0.26 0,0.39 0,0.14 0.03,0.28 0.04,0.42 0.01,0.14 0.21,0.14 0.22,0 0.01,-0.14 0.04,-0.27 0.04,-0.41 0,-0.14 0,-0.27 0,-0.41 l -0.01,-0.57 c 0.49,0.01 0.97,0.01 1.46,0.01 0,0.15 0,0.31 0,0.46 0,0.1 0,0.2 0.01,0.3 0.01,0.1 0,0.21 0.03,0.3 0.03,0.08 0.14,0.08 0.17,0 0.04,-0.09 0.03,-0.2 0.03,-0.3 0.01,-0.1 0.01,-0.2 0.01,-0.3 0,-0.15 0,-0.31 0,-0.46 0.43,0 0.86,0.01 1.29,0.01 -0.01,0.02 -0.03,0.03 -0.03,0.06 v 0.56 c 0,0.09 0,0.18 0,0.28 0,0.05 0,0.09 0.01,0.14 0,0.06 0.01,0.1 0.04,0.16 0.03,0.07 0.14,0.07 0.18,0 0.03,-0.05 0.03,-0.1 0.04,-0.16 0,-0.04 0,-0.09 0.01,-0.13 0,-0.1 0,-0.19 0,-0.29 v -0.56 c 0,-0.03 -0.01,-0.04 -0.03,-0.06 0.77,0 1.53,-0.01 2.3,-0.01 0,0.05 0.01,0.09 0.01,0.14 0.01,0.1 0.02,0.2 0.03,0.3 0.01,0.05 0.01,0.09 0.02,0.14 0.01,0.06 0.03,0.11 0.05,0.17 0.03,0.08 0.17,0.1 0.18,0 0.01,-0.05 0.02,-0.11 0.02,-0.17 0,-0.05 -0.01,-0.09 -0.01,-0.14 -0.01,-0.1 -0.02,-0.2 -0.03,-0.3 0,-0.05 -0.01,-0.09 -0.01,-0.14 0.48,0 0.95,-0.01 1.43,-0.01 0,0.01 0,0.01 0,0.01 0.04,0.2 0.07,0.41 0.11,0.61 0.04,0.2 0.06,0.42 0.16,0.59 0.04,0.06 0.16,0.06 0.17,-0.02 0.04,-0.21 -0.02,-0.43 -0.06,-0.64 l -0.1,-0.56 c 0.38,-0.01 0.76,-0.01 1.14,-0.01 0.02,0.14 0.04,0.28 0.07,0.42 0.03,0.16 0.07,0.33 0.1,0.49 l 0.11,0.49 c 0.04,0.18 0.07,0.35 0.16,0.51 0.07,0.13 0.26,0.06 0.27,-0.07 0.01,-0.17 -0.03,-0.34 -0.07,-0.5 -0.04,-0.17 -0.08,-0.34 -0.11,-0.51 -0.04,-0.16 -0.07,-0.32 -0.11,-0.49 -0.03,-0.12 -0.06,-0.24 -0.09,-0.35 1.39,-0.02 2.78,-0.05 4.17,-0.09 -0.02,0.02 -0.04,0.05 -0.04,0.09 0,0.09 0,0.18 0,0.28 0,0.05 0,0.09 0,0.14 0,0.05 0.01,0.1 0.02,0.16 0.02,0.1 0.18,0.1 0.2,0 0.01,-0.05 0.02,-0.1 0.02,-0.16 0,-0.05 0,-0.09 0,-0.14 0,-0.09 0,-0.18 0,-0.28 0,-0.04 -0.02,-0.07 -0.04,-0.09 0.91,-0.02 1.82,-0.05 2.73,-0.08 0.01,0.06 0.01,0.12 0.02,0.17 0,0.03 0.01,0.05 0.03,0.07 0.02,0.02 0.04,0.03 0.07,0.03 0.06,0 0.09,-0.04 0.1,-0.1 0.01,-0.06 0.01,-0.12 0.02,-0.18 0.41,-0.01 0.82,-0.02 1.23,-0.04 0.31,-0.01 0.62,-0.03 0.93,-0.04 0.01,0.13 0.02,0.25 0.02,0.38 0.02,0.26 0.04,0.51 0.11,0.76 0.01,0.05 0.11,0.06 0.12,0 0.02,-0.12 0.01,-0.25 0.02,-0.37 0.01,-0.13 -0.01,-0.26 -0.02,-0.39 -0.01,-0.13 -0.02,-0.26 -0.03,-0.39 0.59,-0.02 1.19,-0.05 1.78,-0.07 0.01,0.04 0.01,0.08 0.02,0.13 0.01,0.08 0.01,0.16 0.03,0.24 0.04,0.14 0.05,0.29 0.11,0.43 0.04,0.1 0.17,0.08 0.18,-0.02 0.02,-0.14 -0.01,-0.29 0,-0.43 0,-0.07 -0.01,-0.14 -0.02,-0.21 -0.01,-0.05 -0.01,-0.09 -0.02,-0.14 0.49,-0.02 0.97,-0.04 1.46,-0.06 -0.04,0.01 -0.07,0.04 -0.07,0.09 0,0.27 0.01,0.54 0.02,0.81 0.01,0.27 0,0.54 0.03,0.81 0.01,0.07 0.1,0.07 0.1,0 0.03,-0.27 0.02,-0.54 0.03,-0.81 0.01,-0.27 0.01,-0.54 0.02,-0.81 0,-0.06 -0.04,-0.08 -0.08,-0.09 1.03,-0.05 2.06,-0.13 3.09,-0.21 0,0.19 0,0.39 0,0.58 0,0.12 0,0.24 0,0.36 0,0.12 0,0.24 0.03,0.36 0.03,0.11 0.2,0.11 0.22,0 0.03,-0.12 0.03,-0.24 0.03,-0.36 0,-0.12 0,-0.24 0,-0.36 0,-0.2 0,-0.4 0,-0.6 0.39,-0.03 0.78,-0.05 1.16,-0.08 0,0.21 0,0.42 0,0.63 0,0.13 0,0.26 0,0.39 0,0.13 -0.01,0.26 0.03,0.38 0.02,0.08 0.14,0.08 0.17,0 0.04,-0.12 0.02,-0.25 0.03,-0.38 0,-0.13 0,-0.26 0,-0.39 0,-0.22 0,-0.43 0,-0.65 0.62,-0.05 1.24,-0.13 1.87,-0.19 -0.06,0.23 -0.1,0.46 -0.09,0.7 0,0.15 0.01,0.3 0.04,0.45 0.01,0.07 0.04,0.13 0.07,0.2 0.03,0.08 0.05,0.15 0.11,0.21 0.05,0.06 0.17,0.03 0.18,-0.05 0.01,-0.07 0,-0.13 0,-0.2 -0.01,-0.07 0,-0.14 -0.01,-0.21 -0.01,-0.13 -0.03,-0.27 -0.03,-0.4 0,-0.25 0.02,-0.49 0.08,-0.73 0.27,-0.03 0.54,-0.05 0.81,-0.08 l 0.04,0.64 c 0.01,0.13 0.01,0.26 0.02,0.39 0.01,0.13 0.01,0.26 0.05,0.39 0.03,0.09 0.18,0.11 0.2,0 0.03,-0.13 0.02,-0.26 0.01,-0.39 -0.01,-0.13 -0.02,-0.26 -0.03,-0.39 -0.01,-0.22 -0.03,-0.44 -0.04,-0.67 0.26,-0.03 0.51,-0.05 0.77,-0.08 -0.02,0.58 -0.04,1.16 -0.06,1.74 -0.02,0.68 -0.05,1.36 0.07,2.04 0.01,0.06 0.1,0.05 0.11,0 0.15,-0.67 0.14,-1.36 0.15,-2.04 0.01,-0.59 0.01,-1.19 0.02,-1.78 0.21,-0.03 0.42,-0.07 0.63,-0.09 0.01,0.22 0.03,0.44 0.04,0.66 0.01,0.15 0.02,0.29 0.03,0.44 0.01,0.14 0.02,0.3 0.08,0.43 0.03,0.07 0.14,0.09 0.17,0 0.04,-0.14 0.04,-0.29 0.03,-0.43 -0.01,-0.15 -0.02,-0.29 -0.02,-0.44 -0.01,-0.23 -0.03,-0.47 -0.04,-0.7 0.53,-0.07 1.06,-0.16 1.59,-0.24 0,0.48 -0.01,0.96 -0.01,1.44 0,0.27 0,0.53 0,0.8 0,0.24 -0.02,0.53 0.04,0.76 0.02,0.08 0.15,0.08 0.17,0 0.07,-0.23 0.05,-0.52 0.04,-0.76 0,-0.27 0,-0.53 0,-0.8 0,-0.49 -0.01,-0.99 -0.01,-1.48 0.28,-0.04 0.56,-0.08 0.84,-0.13 0,0 0,0 0,0 0,0 0,0 0,0 -0.02,0.25 -0.04,0.51 -0.05,0.76 -0.02,0.25 -0.05,0.51 -0.03,0.76 0,0.05 0.04,0.07 0.08,0.09 -0.03,0.36 -0.07,0.72 -0.14,1.08 -0.05,0.02 -0.1,0.07 -0.1,0.13 l 0.01,0.37 c -0.15,0.64 -0.36,1.26 -0.61,1.86 -0.02,-0.13 -0.03,-0.27 -0.04,-0.4 -0.01,-0.31 0.01,-0.61 0.07,-0.92 0.04,-0.19 -0.24,-0.27 -0.3,-0.08 -0.09,0.32 -0.15,0.65 -0.16,0.98 0,0.16 0,0.32 0.02,0.48 0.02,0.14 0.04,0.34 0.13,0.46 -0.21,0.01 -0.43,0.03 -0.64,0.06 -0.02,-0.03 -0.03,-0.06 -0.05,-0.09 -0.04,-0.06 -0.07,-0.12 -0.1,-0.18 -0.06,-0.12 -0.1,-0.25 -0.12,-0.38 -0.05,-0.26 -0.03,-0.54 0.05,-0.79 0.03,-0.08 -0.03,-0.17 -0.11,-0.19 -0.09,-0.02 -0.16,0.03 -0.19,0.11 -0.11,0.31 -0.14,0.63 -0.09,0.95 0.02,0.16 0.07,0.31 0.14,0.46 0.02,0.05 0.05,0.11 0.08,0.17 -0.41,0.05 -0.81,0.12 -1.22,0.19 -0.03,-0.13 -0.06,-0.25 -0.07,-0.38 -0.04,-0.33 -0.04,-0.66 0.01,-0.99 0.01,-0.08 -0.02,-0.15 -0.1,-0.17 -0.07,-0.02 -0.16,0.02 -0.17,0.1 -0.05,0.36 -0.06,0.72 -0.02,1.08 0.02,0.14 0.05,0.28 0.08,0.42 -0.31,0.06 -0.62,0.11 -0.93,0.16 -0.01,-0.08 -0.01,-0.16 -0.02,-0.25 -0.02,-0.15 -0.04,-0.3 -0.06,-0.45 -0.04,-0.31 -0.08,-0.61 -0.12,-0.92 -0.01,-0.07 -0.05,-0.13 -0.13,-0.13 -0.06,0 -0.14,0.06 -0.13,0.13 0.04,0.31 0.07,0.63 0.11,0.94 0.02,0.16 0.04,0.31 0.05,0.47 0.01,0.09 0.03,0.17 0.04,0.25 -0.24,0.04 -0.48,0.09 -0.72,0.12 -0.03,0 -0.06,0.01 -0.09,0.01 0,-0.02 0.01,-0.03 0.01,-0.05 0.01,-0.08 0.02,-0.16 0.02,-0.24 0,-0.18 0,-0.36 0,-0.55 v -1.07 c 0,-0.18 -0.28,-0.18 -0.28,0 v 1.6 c 0,0.09 0.01,0.17 0.02,0.26 0,0.03 0.01,0.05 0.01,0.08 -0.56,0.08 -1.11,0.14 -1.67,0.22 -0.01,-0.11 -0.02,-0.22 -0.03,-0.33 -0.02,-0.24 -0.04,-0.49 -0.06,-0.73 -0.01,-0.14 -0.23,-0.14 -0.22,0 0.01,0.24 0.03,0.49 0.04,0.73 0.01,0.12 0.01,0.24 0.02,0.36 0,0 0,0 0,0 -0.38,0.05 -0.76,0.1 -1.14,0.15 0,-0.01 -0.01,-0.02 -0.01,-0.03 -0.04,-0.1 -0.07,-0.21 -0.08,-0.32 -0.04,-0.21 -0.02,-0.44 0.03,-0.64 0.04,-0.17 -0.22,-0.24 -0.26,-0.07 -0.06,0.25 -0.07,0.51 -0.03,0.77 0.02,0.11 0.05,0.22 0.09,0.33 -0.37,0.04 -0.73,0.1 -1.1,0.14 -0.06,0.01 -0.13,0.01 -0.19,0.02 0.03,-0.36 0.05,-0.73 0.06,-1.08 0.02,-0.59 0.03,-1.18 0.04,-1.77 0,-0.17 -0.26,-0.17 -0.26,0 -0.02,0.59 -0.05,1.18 -0.07,1.77 -0.01,0.36 -0.01,0.73 0,1.1 -0.46,0.05 -0.91,0.08 -1.37,0.13 0.01,-0.07 0.01,-0.13 0.02,-0.2 0.02,-0.21 0.04,-0.42 0.06,-0.63 0.01,-0.08 -0.07,-0.15 -0.15,-0.15 -0.09,0 -0.14,0.07 -0.15,0.15 -0.02,0.21 -0.04,0.41 -0.06,0.62 -0.01,0.08 -0.01,0.16 -0.02,0.24 -1.19,0.12 -2.39,0.22 -3.59,0.31 -0.02,-0.14 -0.03,-0.28 -0.05,-0.42 -0.01,-0.08 -0.06,-0.15 -0.15,-0.15 -0.07,0 -0.16,0.07 -0.15,0.15 0.02,0.15 0.03,0.29 0.05,0.44 -0.26,0.02 -0.52,0.03 -0.78,0.05 0,-0.02 0,-0.04 0,-0.05 0,-0.02 -0.01,-0.04 -0.03,-0.06 -0.02,-0.02 -0.04,-0.03 -0.06,-0.03 -0.02,0 -0.05,0.01 -0.06,0.03 -0.02,0.02 -0.02,0.04 -0.03,0.06 0,0.02 0,0.04 -0.01,0.06 -0.86,0.06 -1.73,0.13 -2.59,0.17 -0.14,0.01 -0.27,0.01 -0.41,0.01 -0.01,-0.02 -0.02,-0.05 -0.02,-0.07 -0.01,-0.03 -0.03,-0.06 -0.06,-0.08 -0.03,-0.02 -0.07,-0.02 -0.1,-0.01 -0.03,0.01 -0.06,0.03 -0.08,0.06 -0.02,0.03 -0.02,0.07 -0.01,0.1 0,0 0,0.01 0,0.01 -0.75,0.03 -1.5,0.06 -2.25,0.08 0,0 0,-0.01 0,-0.01 0,-0.04 0,-0.08 0.01,-0.11 0,-0.03 -0.02,-0.07 -0.04,-0.09 -0.02,-0.02 -0.06,-0.04 -0.09,-0.04 -0.03,0 -0.07,0.01 -0.09,0.04 -0.02,0.02 -0.04,0.06 -0.04,0.09 0,0.04 0,0.08 0.01,0.11 0,0.01 0,0.01 0,0.02 -0.53,0.02 -1.07,0.05 -1.6,0.06 0,-0.14 0,-0.27 0,-0.41 0,-0.16 -0.25,-0.16 -0.25,0 0,0.14 0,0.27 0,0.41 -0.34,0.01 -0.67,0 -1.01,0.01 0.01,-0.5 0.02,-1 0.02,-1.5 0,-0.1 -0.16,-0.1 -0.16,0 0,0.5 0.01,1 0.02,1.5 -0.51,0.01 -1.03,0.01 -1.54,0.01 0,-0.12 0.01,-0.24 0.01,-0.36 0,-0.28 0,-0.55 0,-0.83 0,-0.18 -0.27,-0.18 -0.27,0 0,0.28 0,0.55 0,0.83 0,0.12 0,0.24 0.01,0.36 -0.57,0 -1.14,0.02 -1.71,0.01 0,-0.47 0,-0.95 0,-1.42 0,-0.14 -0.22,-0.14 -0.22,0 0,0.47 0,0.94 0,1.42 -0.32,0 -0.64,-0.02 -0.97,-0.02 0.03,-0.23 -0.02,-0.46 -0.03,-0.69 -0.02,-0.23 -0.04,-0.47 -0.06,-0.7 -0.01,-0.07 -0.06,-0.14 -0.14,-0.14 -0.07,0 -0.14,0.06 -0.14,0.14 0.02,0.24 0.03,0.48 0.05,0.72 0.02,0.22 0.02,0.45 0.07,0.67 -0.31,0 -0.63,-0.01 -0.94,-0.02 0,-0.07 0,-0.14 0,-0.22 0,-0.28 0,-0.55 0,-0.83 0,-0.16 -0.26,-0.16 -0.25,0 0,0.28 0,0.55 0,0.83 0,0.07 0,0.14 0,0.21 -0.33,-0.01 -0.67,-0.01 -1,-0.02 -0.01,-0.11 -0.03,-0.22 -0.04,-0.33 -0.03,-0.23 -0.05,-0.46 -0.08,-0.69 -0.05,-0.47 -0.11,-0.94 -0.16,-1.41 -0.02,-0.14 -0.25,-0.15 -0.23,0 0.05,0.48 0.1,0.96 0.15,1.44 0.02,0.24 0.05,0.48 0.07,0.72 0.01,0.09 0.02,0.18 0.03,0.27 -0.55,-0.02 -1.1,-0.03 -1.65,-0.06 0,-0.03 0,-0.05 0,-0.08 v -0.55 c 0,-0.14 -0.21,-0.14 -0.21,0 v 0.55 c 0,0.02 0,0.05 0,0.07 -0.29,-0.01 -0.58,-0.03 -0.87,-0.04 0,-0.01 0,-0.03 0,-0.04 0,-0.13 0,-0.27 0,-0.4 0,-0.26 0,-0.53 0,-0.79 0,-0.14 -0.21,-0.14 -0.21,0 0,0.26 0,0.53 0,0.79 0,0.13 0,0.26 0,0.39 0,0.01 0,0.03 0,0.04 -0.42,-0.02 -0.84,-0.04 -1.25,-0.06 0.02,-0.01 0.05,-0.01 0.06,-0.04 0.03,-0.1 0.03,-0.2 0.03,-0.31 0,-0.1 0.01,-0.2 0.01,-0.3 0,-0.2 0,-0.41 0,-0.61 0,-0.19 -0.29,-0.19 -0.29,0 0,0.2 0,0.41 0,0.61 0,0.1 0,0.2 0.01,0.3 0,0.11 0,0.21 0.03,0.31 0.01,0.03 0.03,0.03 0.05,0.04 -0.46,-0.03 -0.91,-0.04 -1.37,-0.07 -0.14,-0.01 -0.29,-0.02 -0.43,-0.03 0.03,-0.18 0.02,-0.37 0.02,-0.55 0,-0.2 0,-0.41 0,-0.61 0,-0.19 -0.29,-0.19 -0.29,0 0,0.2 0,0.41 0.01,0.61 0,0.17 -0.01,0.36 0.02,0.53 -0.32,-0.02 -0.64,-0.05 -0.97,-0.07 0,-0.02 0,-0.03 0,-0.04 -0.01,-0.1 -0.02,-0.2 -0.02,-0.3 -0.02,-0.2 -0.03,-0.41 -0.05,-0.61 -0.01,-0.07 -0.06,-0.13 -0.13,-0.13 -0.07,0 -0.14,0.06 -0.13,0.13 0.02,0.2 0.03,0.41 0.05,0.61 0.01,0.1 0.02,0.2 0.02,0.3 0,0.01 0,0.02 0,0.02 -0.42,-0.03 -0.84,-0.07 -1.26,-0.1 0,-0.13 0.01,-0.27 0.02,-0.4 0,-0.05 -0.04,-0.09 -0.09,-0.09 -0.05,0 -0.09,0.04 -0.09,0.09 0,0.13 0.01,0.26 0.01,0.39 -0.42,-0.04 -0.84,-0.08 -1.26,-0.11 0.02,-0.02 0.03,-0.05 0.02,-0.09 -0.08,-0.27 -0.17,-0.54 -0.21,-0.83 -0.04,-0.28 -0.03,-0.57 0.01,-0.85 0.01,-0.07 -0.02,-0.13 -0.08,-0.15 -0.06,-0.02 -0.14,0.02 -0.15,0.08 -0.09,0.59 -0.05,1.27 0.24,1.81 -0.4,-0.04 -0.8,-0.07 -1.2,-0.11 0.01,-0.01 0.03,-0.01 0.03,-0.02 0.03,-0.12 0.03,-0.23 0.03,-0.35 0,-0.06 0.01,-0.12 0.01,-0.18 0,-0.06 -0.01,-0.12 -0.01,-0.18 -0.02,-0.24 -0.03,-0.48 -0.05,-0.72 -0.01,-0.08 -0.06,-0.15 -0.15,-0.15 -0.08,0 -0.15,0.07 -0.15,0.15 0.02,0.24 0.04,0.48 0.05,0.72 0.01,0.12 0.02,0.24 0.05,0.37 0.02,0.12 0.03,0.23 0.08,0.35 0,0.01 0.02,0.01 0.02,0.02 -0.57,-0.05 -1.15,-0.1 -1.72,-0.15 -0.01,-0.1 -0.03,-0.2 -0.03,-0.31 0,-0.22 0.04,-0.43 0.11,-0.63 0.02,-0.06 -0.03,-0.14 -0.09,-0.16 -0.07,-0.02 -0.13,0.02 -0.16,0.09 -0.08,0.23 -0.12,0.47 -0.12,0.71 0,0.09 0.01,0.18 0.03,0.27 -0.59,-0.05 -1.18,-0.09 -1.77,-0.13 -0.05,-0.1 -0.1,-0.2 -0.15,-0.3 0,-0.1 -0.01,-0.2 -0.01,-0.28 0,-0.26 0,-0.52 0,-0.77 0,-0.51 -0.01,-1.01 -0.01,-1.52 0,-0.17 -0.26,-0.17 -0.26,0 0,0.51 -0.01,1.01 -0.01,1.52 0,0.14 0,0.28 0,0.42 -0.15,-0.36 -0.29,-0.72 -0.4,-1.09 -0.37,-1.26 -0.47,-2.57 -0.41,-3.87 0.09,-0.04 0.21,-0.02 0.34,-0.01 z m 9.3,8.08 c 3.21,0.24 6.44,0.38 9.66,0.43 6.44,0.1 12.89,-0.18 19.31,-0.81 1.78,-0.17 3.55,-0.39 5.32,-0.59 0.93,-0.11 1.86,-0.22 2.78,-0.35 0.37,-0.05 0.75,-0.1 1.12,-0.15 -0.55,0.84 -1.15,1.63 -1.81,2.39 -0.04,-0.08 -0.11,-0.14 -0.23,-0.16 -1.33,-0.18 -2.72,-0.05 -4.06,0.08 -1.35,0.14 -2.7,0.26 -4.06,0.38 -2.74,0.23 -5.48,0.41 -8.23,0.55 -5.43,0.27 -10.86,0.31 -16.29,0.26 -1.55,-0.01 -3.1,-0.04 -4.65,-0.09 -0.77,-0.02 -1.55,-0.07 -2.33,-0.06 -0.61,0.01 -1.23,-0.02 -1.82,0.09 -0.8,-0.82 -1.55,-1.68 -2.21,-2.62 -0.03,-0.04 -0.05,-0.09 -0.08,-0.13 2.52,0.39 5.06,0.6 7.58,0.78 z m 53.59,-4.95 c -0.13,-0.02 -0.25,-0.03 -0.38,-0.03 h -1.03 c -0.09,-0.28 -0.19,-0.57 -0.28,-0.85 0.24,-0.02 0.48,-0.04 0.72,-0.06 0.17,-0.01 0.33,-0.03 0.5,-0.04 0.16,-0.02 0.37,-0.01 0.51,-0.09 0.11,-0.06 0.07,-0.21 -0.03,-0.25 -0.15,-0.06 -0.34,-0.01 -0.5,0 -0.17,0.01 -0.33,0.03 -0.5,0.04 -0.27,0.02 -0.54,0.05 -0.81,0.07 -0.23,-0.71 -0.47,-1.41 -0.7,-2.12 0.35,-0.18 0.67,-0.41 0.95,-0.68 0.06,0.02 0.12,0.05 0.18,0.07 0.09,0.03 0.17,0.06 0.26,0.09 0.04,0.02 0.09,0.03 0.13,0.05 0.06,0.02 0.12,0.02 0.19,0 0.09,-0.03 0.16,-0.15 0.1,-0.24 -0.05,-0.06 -0.09,-0.1 -0.16,-0.13 -0.04,-0.01 -0.09,-0.03 -0.13,-0.04 -0.09,-0.03 -0.17,-0.05 -0.26,-0.08 0,0 -0.01,0 -0.01,0 0.13,-0.15 0.26,-0.3 0.37,-0.47 0.12,-0.17 0.23,-0.36 0.32,-0.55 0.1,0.02 0.2,0.03 0.3,0.05 0.18,0.03 0.36,0.06 0.54,0.08 0.18,0.02 0.37,0.07 0.55,0.04 0.11,-0.01 0.13,-0.19 0.03,-0.24 -0.16,-0.08 -0.34,-0.09 -0.52,-0.12 -0.18,-0.03 -0.36,-0.06 -0.54,-0.08 l -0.25,-0.04 c 0.03,-0.09 0.08,-0.18 0.1,-0.27 0.05,-0.2 0.07,-0.4 0.06,-0.6 0,0 0.01,0.01 0.01,0.01 0,0 0,0.01 0.01,0.01 0.01,0 0.01,0.01 0.01,0.02 0.01,0.01 0.03,0 0.04,0 0.01,0 0.02,0.01 0.04,0.02 0.23,0.03 0.46,0.06 0.69,0.09 0.11,0.01 0.22,0.03 0.33,0.04 0.06,0.01 0.12,0.02 0.18,0.02 0.07,0.01 0.13,0.02 0.18,-0.04 0.03,-0.04 0.04,-0.09 0.02,-0.14 -0.03,-0.07 -0.1,-0.08 -0.17,-0.09 -0.06,-0.01 -0.12,-0.01 -0.18,-0.02 -0.11,-0.01 -0.23,-0.03 -0.34,-0.04 -0.14,-0.02 -0.28,-0.03 -0.41,-0.05 0.1,-0.07 0.22,-0.13 0.34,-0.16 0.1,-0.02 0.21,-0.03 0.32,-0.02 0.11,0.01 0.21,0.06 0.31,0.08 0.1,0.02 0.19,-0.1 0.11,-0.18 -0.11,-0.1 -0.25,-0.14 -0.4,-0.16 -0.14,-0.02 -0.28,-0.01 -0.41,0.02 -0.27,0.06 -0.51,0.22 -0.68,0.44 -0.01,-0.1 -0.04,-0.19 -0.06,-0.28 0.02,-0.03 0.05,-0.05 0.07,-0.08 0.05,-0.09 0.07,-0.2 0.08,-0.3 0.57,0.11 1.2,0.08 1.75,0.09 0.74,0.02 1.49,0.03 2.23,0.05 0.19,0 0.54,-0.03 0.85,-0.01 -0.31,0.26 -0.56,0.59 -0.82,0.89 -0.39,0.45 -0.77,0.91 -1.15,1.36 -0.6,0.73 -1.2,1.45 -1.79,2.18 -0.01,0 -0.01,0 -0.02,0 -0.28,-0.03 -0.56,-0.07 -0.84,-0.1 -0.57,-0.07 -1.14,-0.08 -1.71,-0.12 -0.21,-0.02 -0.4,0.18 -0.43,0.38 -0.03,0.21 0.1,0.41 0.31,0.48 0.54,0.16 1.08,0.35 1.63,0.49 0.14,0.03 0.27,0.07 0.41,0.1 0.03,0.14 0.09,0.28 0.24,0.39 0.06,0.04 0.12,0.07 0.19,0.1 -0.03,0.38 -0.02,0.77 -0.01,1.12 0.01,0.44 0.07,0.88 0.16,1.32 -0.1,-0.05 -0.22,-0.08 -0.31,-0.1 -0.15,-0.03 -0.31,-0.05 -0.47,-0.05 -0.31,0 -0.61,0.07 -0.9,0.2 -0.13,-0.4 -0.27,-0.8 -0.4,-1.2 h 0.94 c 0.13,0 0.25,-0.01 0.38,-0.03 0.07,-0.03 0.07,-0.22 -0.04,-0.24 z m 0.37,-17.33 c 0.18,-0.3 0.37,-0.59 0.57,-0.88 0.07,-0.1 0.13,-0.2 0.19,-0.3 0.81,-0.29 1.71,-0.11 2.53,0.17 0.95,0.33 1.91,0.77 2.73,1.36 0.74,0.53 1.34,1.25 1.58,2.14 0.05,0.19 0.09,0.39 0.1,0.59 -0.04,-0.15 -0.08,-0.31 -0.13,-0.46 -0.08,-0.27 -0.16,-0.54 -0.24,-0.81 -0.03,-0.1 -0.19,-0.06 -0.16,0.04 0.08,0.27 0.16,0.54 0.24,0.81 0.08,0.27 0.15,0.55 0.26,0.81 0,0.01 0.02,0.01 0.03,0.01 0,0.06 0,0.12 -0.01,0.17 0,0.01 -0.01,0.03 -0.01,0.04 -0.06,-0.12 -0.13,-0.24 -0.19,-0.36 -0.15,-0.31 -0.31,-0.62 -0.46,-0.93 -0.31,-0.6 -0.61,-1.21 -0.92,-1.81 -0.07,-0.14 -0.28,-0.02 -0.21,0.12 0.3,0.61 0.59,1.22 0.89,1.83 0.15,0.3 0.29,0.6 0.44,0.9 0.1,0.21 0.21,0.43 0.34,0.64 -0.1,0.3 -0.22,0.59 -0.28,0.89 0,0.02 0,0.03 0,0.05 -0.2,0.25 -0.4,0.51 -0.59,0.77 -0.08,0.11 -0.15,0.22 -0.23,0.32 0.04,-0.32 0.03,-0.66 0,-0.96 -0.05,-0.42 -0.15,-0.83 -0.31,-1.22 -0.31,-0.78 -0.81,-1.48 -1.46,-2 -0.1,-0.08 -0.25,0.06 -0.15,0.15 0.63,0.51 1.12,1.18 1.41,1.94 0.14,0.37 0.24,0.76 0.28,1.16 0.02,0.19 0.03,0.37 0.03,0.56 0,0.21 -0.04,0.42 -0.03,0.63 0,0.02 0.02,0.02 0.03,0.03 -0.09,0.13 -0.18,0.26 -0.27,0.38 -0.07,-0.71 -0.39,-1.44 -0.74,-2.05 -0.38,-0.66 -0.89,-1.26 -1.46,-1.75 -0.09,-0.08 -0.22,0.05 -0.13,0.13 0.55,0.5 0.99,1.08 1.35,1.73 0.18,0.32 0.33,0.65 0.46,0.99 0.12,0.34 0.2,0.69 0.31,1.03 -0.31,-0.75 -0.7,-1.43 -1.21,-2.06 -0.52,-0.64 -1.15,-1.22 -1.86,-1.65 -0.37,-0.22 -0.76,-0.41 -1.16,-0.57 -0.33,-0.13 -0.69,-0.17 -1.04,-0.22 -0.05,-0.12 -0.13,-0.22 -0.23,-0.29 -0.23,-0.4 -0.56,-0.76 -0.88,-1 0.17,-0.34 0.37,-0.71 0.59,-1.07 z m 11.67,14.98 c 1.01,0 2.02,-0.03 3.02,-0.06 0.52,-0.02 1.04,-0.04 1.56,-0.07 0.07,0 0.15,-0.01 0.22,-0.01 -0.01,0.32 0.03,0.65 0.05,0.94 0.03,0.42 0.05,0.83 0.1,1.25 -0.01,0 -0.01,0 -0.02,0 -0.28,0.03 -0.55,0.06 -0.83,0.1 0.03,-0.16 0.02,-0.32 -0.05,-0.46 -0.05,-0.11 -0.15,-0.21 -0.26,-0.26 -0.14,-0.07 -0.28,-0.07 -0.42,-0.01 -0.08,0.03 -0.1,0.14 -0.07,0.21 0.03,0.07 0.12,0.13 0.2,0.1 0.01,0 0.03,-0.01 0.04,-0.01 0,0 0,0 0,0 0.01,0 0.01,0 0.02,0 0,0 0.01,0 0.01,0 0,0 0,0 0,0 0,0 0.01,0 0.01,0 0.01,0 0.02,0.01 0.02,0.01 0,0 0,0 0,0 0.01,0.01 0.02,0.01 0.03,0.02 0,0 0.01,0 0.01,0.01 0,0 0.01,0.01 0.01,0.01 0.01,0.01 0.03,0.03 0.04,0.04 0,0 0,0 0,0 0.01,0.01 0.01,0.02 0.02,0.03 0,0.01 0.01,0.03 0.02,0.03 -0.01,-0.01 -0.01,-0.03 0,0 0,0.01 0.01,0.02 0.01,0.03 0,0 0,0.01 0,0.02 0,0.01 0,0.02 0,0.03 0,0.01 0,0.03 0,0.04 0,0.01 0,0.03 0,0.04 0,0.01 -0.01,0.06 0,0.02 0,0.03 -0.01,0.05 -0.01,0.08 -0.01,0.03 -0.01,0.05 -0.02,0.08 -0.04,0 -0.08,0.01 -0.12,0.01 v -0.01 c -0.03,-0.08 -0.06,-0.17 -0.09,-0.25 -0.02,-0.07 -0.1,-0.12 -0.17,-0.1 -0.07,0.02 -0.12,0.1 -0.1,0.17 0.02,0.07 0.05,0.15 0.07,0.22 -0.22,0.02 -0.44,0.04 -0.65,0.06 -0.14,-0.4 -0.19,-0.82 -0.09,-1.24 0.05,-0.21 -0.27,-0.3 -0.32,-0.09 -0.11,0.44 -0.11,0.92 0.03,1.36 -0.22,0.02 -0.44,0.04 -0.66,0.06 -0.01,-0.06 -0.04,-0.11 -0.04,-0.17 -0.02,-0.27 0.04,-0.54 0.19,-0.78 0.11,-0.17 -0.16,-0.33 -0.27,-0.16 -0.18,0.28 -0.26,0.62 -0.24,0.95 0,0.06 0.03,0.12 0.04,0.19 -0.28,0.02 -0.56,0.05 -0.84,0.07 -0.2,0.01 -0.39,0.02 -0.59,0.03 -0.02,-0.04 -0.04,-0.08 -0.06,-0.12 -0.07,-0.25 -0.07,-0.54 0.03,-0.78 0.04,-0.09 0.03,-0.19 -0.06,-0.24 -0.08,-0.04 -0.2,-0.02 -0.24,0.06 -0.15,0.33 -0.18,0.7 -0.09,1.05 0.01,0.02 0.02,0.04 0.03,0.05 -0.24,0.01 -0.48,0.02 -0.72,0.03 -0.01,-0.05 -0.01,-0.1 -0.02,-0.15 -0.03,-0.25 -0.06,-0.51 -0.09,-0.76 -0.01,-0.07 -0.06,-0.14 -0.14,-0.14 -0.07,0 -0.15,0.06 -0.14,0.14 0.03,0.26 0.06,0.52 0.08,0.77 0.01,0.05 0.01,0.1 0.02,0.15 -0.28,0.01 -0.56,0.03 -0.84,0.04 0,-0.01 -0.01,-0.01 -0.01,-0.02 -0.05,-0.11 -0.09,-0.23 -0.12,-0.35 -0.05,-0.24 -0.04,-0.48 0.02,-0.72 0.05,-0.18 -0.23,-0.26 -0.28,-0.08 -0.08,0.28 -0.09,0.57 -0.03,0.86 0.02,0.11 0.06,0.21 0.1,0.31 -0.27,0.01 -0.54,0.01 -0.82,0.01 -0.04,-0.43 -0.09,-0.87 -0.14,-1.3 -0.01,-0.07 -0.06,-0.13 -0.13,-0.13 -0.07,0 -0.14,0.06 -0.13,0.13 0.04,0.43 0.08,0.87 0.12,1.3 -0.26,0 -0.53,0 -0.79,0.01 -0.01,-0.08 -0.03,-0.17 -0.04,-0.25 -0.06,-0.37 -0.11,-0.73 -0.17,-1.1 -0.03,-0.17 -0.28,-0.1 -0.25,0.07 0.05,0.36 0.11,0.72 0.16,1.08 0.01,0.07 0.02,0.14 0.03,0.21 -0.08,0 -0.15,0.02 -0.23,0.02 -0.47,-0.74 -0.64,-1.64 -0.66,-2.53 0,-0.13 0.01,-0.25 0.01,-0.38 0.88,0.15 1.81,0.16 2.69,0.2 1.03,0.03 2.04,0.03 3.05,0.03 z m 4.3,-2.01 c -0.01,-0.17 -0.02,-0.35 -0.03,-0.53 0,-0.02 0,-0.03 -0.01,-0.05 0.01,0 0.02,0 0.03,0 -0.01,0 -0.02,0 -0.03,0 0,0 0,0 0,0 0.12,0.02 0.23,0.03 0.35,0.04 0,0.03 0,0.05 0,0.08 0.02,0.34 0.02,0.69 0.09,1.03 -0.11,0.01 -0.21,0.02 -0.31,0.03 -0.04,0 -0.07,0 -0.11,0.01 0.03,-0.12 0.05,-0.24 0.04,-0.36 -0.01,-0.09 -0.02,-0.17 -0.02,-0.25 z m 3.48,-1.91 c 0.02,0.26 0.04,0.53 0.07,0.79 -0.23,0.01 -0.46,0.02 -0.69,0.04 -0.02,-0.14 -0.04,-0.28 -0.05,-0.41 -0.01,-0.06 -0.01,-0.11 -0.02,-0.17 0.12,0 0.24,0.01 0.35,0 0.07,-0.01 0.07,-0.1 0,-0.11 -0.12,-0.01 -0.24,0 -0.36,0 -0.03,-0.3 -0.06,-0.59 -0.09,-0.89 0.24,-0.05 0.48,-0.13 0.72,-0.22 0.02,0.33 0.04,0.65 0.07,0.97 z m -1.08,-0.7 c 0.03,0.28 0.05,0.56 0.08,0.85 -0.08,0 -0.16,0 -0.24,0 -0.25,0 -0.51,0 -0.76,0 -0.02,-0.27 -0.03,-0.54 -0.05,-0.8 0.33,0.01 0.65,0 0.97,-0.05 z m 5.96,18.97 c -0.3,0 -0.6,-0.02 -0.91,0.01 -0.18,0.01 -0.36,0.02 -0.53,0.07 -0.16,0.04 -0.29,0.13 -0.45,0.18 -0.09,0.03 -0.14,0.09 -0.18,0.17 0.05,-0.69 0.05,-1.39 0.02,-2.09 -0.02,-0.51 -0.05,-1.01 -0.04,-1.52 0,-0.14 0,-0.27 0.01,-0.41 0.02,-0.35 0.01,-0.71 -0.03,-1.08 0,-0.02 -0.02,-0.03 -0.02,-0.05 0.04,-0.01 0.09,-0.01 0.13,-0.02 0.07,-0.01 0.15,-0.03 0.23,-0.02 0.08,0 0.15,0.01 0.23,0.02 0.03,0 0.07,0.01 0.1,0.01 0.04,0 0.07,-0.01 0.11,-0.02 0.02,0.03 0.03,0.06 0.06,0.08 0.17,0.14 0.32,0.18 0.53,0.19 0.11,0 0.22,0.01 0.33,0.01 0.23,0 0.45,-0.01 0.68,-0.01 0,0 0,0 0,0 0.09,0.1 0.2,0.16 0.33,0.17 0,0.03 0,0.05 0,0.08 0.01,0.28 0.02,0.57 0.04,0.85 0.01,0.27 0.04,0.54 0.06,0.82 0.01,0.14 0.02,0.27 0.03,0.41 0,0 0,0 0,0.01 -0.18,0.08 -0.29,0.29 -0.27,0.48 0.04,0.24 0.22,0.39 0.46,0.4 0.11,0.01 0.22,0.02 0.32,0.03 0.02,0 0.04,0.01 0.07,0.01 0,0 0.01,0 0.01,0 0.12,0.02 0.25,0.03 0.4,0.05 0.02,0 0.15,0.02 0.16,0.02 0.05,0.01 0.1,0.01 0.15,0.02 0.14,0.02 0.28,0.05 0.42,0.08 0.26,0.06 0.52,0.13 0.77,0.22 0.13,0.04 0.25,0.09 0.38,0.14 -0.01,0 -0.01,0 -0.01,-0.01 0.01,0 0.01,0 0.02,0.01 0,0.02 -0.02,0.04 -0.02,0.06 -0.01,0.23 0.02,0.46 0.04,0.69 -0.57,0.01 -1.15,0.02 -1.72,0.01 -0.65,-0.03 -1.28,-0.06 -1.91,-0.07 z m -5.33,-4.11 c -0.06,0.02 -0.12,0.04 -0.18,0.07 -0.05,-0.14 -0.11,-0.28 -0.16,-0.41 -0.11,-0.28 -0.24,-0.56 -0.39,-0.83 -0.24,-0.43 -0.52,-0.84 -0.88,-1.18 0.24,-0.28 0.37,-0.65 0.44,-1.05 0,-0.01 0.01,-0.01 0.01,-0.02 0.08,0.02 0.17,0.04 0.25,0.07 0.08,0.02 0.15,0.04 0.24,0.04 0.01,0 0.02,0 0.02,0 0.03,0.05 0.05,0.11 0.09,0.16 0.01,0.21 0.04,0.42 0.1,0.61 0.03,0.09 0.18,0.11 0.2,0 0.06,0.13 0.16,0.24 0.31,0.28 0.01,0 0.03,0.01 0.04,0.01 0.09,0.12 0.18,0.24 0.27,0.36 0.36,0.47 0.71,0.95 1.06,1.43 -0.2,0.06 -0.4,0.11 -0.6,0.18 -0.29,0.09 -0.56,0.19 -0.82,0.28 z m -3.38,-2.98 c -0.02,-0.08 -0.04,-0.16 -0.05,-0.23 -0.04,-0.3 -0.07,-0.6 -0.08,-0.89 -0.02,-0.62 0.04,-1.23 0.18,-1.84 0.04,-0.17 -0.21,-0.24 -0.26,-0.07 -0.16,0.62 -0.25,1.26 -0.26,1.91 0,0.32 0.02,0.63 0.06,0.94 0.02,0.15 0.04,0.33 0.08,0.5 -0.3,0.32 -0.61,0.63 -0.94,0.93 0,-0.03 0,-0.06 0,-0.09 0,-0.28 0,-0.56 -0.01,-0.84 0,-0.57 -0.01,-1.14 -0.01,-1.71 0,-0.15 -0.23,-0.15 -0.23,0 0,0.57 -0.01,1.14 -0.01,1.71 0,0.28 0,0.56 -0.01,0.84 0,0.12 0,0.24 0,0.35 -0.29,0.26 -0.6,0.49 -0.91,0.73 -0.01,-0.25 -0.02,-0.49 -0.03,-0.74 -0.03,-0.69 -0.07,-1.38 -0.1,-2.07 -0.01,-0.16 -0.26,-0.16 -0.25,0 0.02,0.69 0.04,1.38 0.07,2.07 0.01,0.32 0.02,0.65 0.03,0.97 -0.37,0.28 -0.73,0.57 -1.12,0.83 0,-0.11 -0.01,-0.21 -0.01,-0.31 0,-0.36 0,-0.72 0,-1.08 -0.01,-0.72 -0.01,-1.44 -0.02,-2.16 0,-0.16 -0.25,-0.16 -0.25,0 -0.01,0.72 -0.01,1.44 -0.02,2.16 0,0.36 0,0.72 0,1.08 0,0.16 -0.01,0.33 -0.01,0.51 -0.26,0.17 -0.52,0.33 -0.79,0.48 0,-0.02 0,-0.04 0,-0.07 0.01,-0.23 0.02,-0.46 0.04,-0.69 0.02,-0.45 0.05,-0.9 0.07,-1.35 0.01,-0.19 -0.28,-0.18 -0.29,0 -0.03,0.45 -0.06,0.9 -0.1,1.35 -0.02,0.22 -0.03,0.44 -0.05,0.66 -0.01,0.09 -0.02,0.2 -0.03,0.31 -0.13,0.07 -0.24,0.16 -0.37,0.23 -0.8,0.43 -1.63,0.8 -2.47,1.13 0,-0.01 0,-0.01 -0.01,-0.02 l -0.01,-0.01 c 0,0 0,0 0,0 l -0.03,-0.02 c -0.02,-0.01 -0.05,-0.02 -0.08,-0.02 -0.01,0 -0.03,0 -0.04,0 -0.03,0 -0.06,0 -0.09,-0.01 -0.02,0 -0.04,0 -0.06,0.01 -0.02,0.01 -0.03,0.02 -0.05,0.03 -0.01,0.01 -0.02,0.03 -0.03,0.05 -0.01,0.02 -0.01,0.04 -0.01,0.06 0,0.02 0.02,0.05 0.03,0.07 -0.93,0.35 -1.88,0.65 -2.85,0.91 0,-0.03 0,-0.07 -0.01,-0.1 -0.02,-0.17 -0.03,-0.34 -0.05,-0.52 -0.03,-0.34 -0.06,-0.68 -0.1,-1.01 -0.02,-0.17 -0.28,-0.17 -0.26,0 0.02,0.34 0.05,0.69 0.07,1.03 0.01,0.17 0.02,0.33 0.04,0.5 0,0.06 0.01,0.12 0.02,0.18 -0.11,0.03 -0.23,0.06 -0.34,0.09 0,-0.08 0,-0.15 0,-0.23 0,-0.41 0,-0.83 -0.01,-1.24 0,-0.17 -0.27,-0.17 -0.27,0 0,0.41 0,0.83 -0.01,1.24 0,0.1 0,0.21 0,0.31 -0.28,0.07 -0.57,0.14 -0.85,0.2 -0.03,-0.1 -0.06,-0.2 -0.1,-0.3 -0.09,-0.22 -0.19,-0.43 -0.31,-0.64 0,-0.03 0,-0.07 -0.01,-0.1 -0.01,-0.15 -0.03,-0.3 -0.04,-0.46 -0.03,-0.3 -0.05,-0.61 -0.08,-0.91 -0.01,-0.16 -0.26,-0.16 -0.25,0 0.03,0.31 0.06,0.62 0.09,0.93 0.01,0.05 0.01,0.1 0.02,0.16 -0.1,-0.13 -0.21,-0.24 -0.32,-0.36 0.04,-0.14 0.05,-0.3 -0.01,-0.48 -0.26,-0.75 -0.51,-1.5 -0.77,-2.25 2.63,-0.46 5.21,-1.09 7.66,-2.04 2.47,-0.96 4.93,-2.29 6.84,-3.99 0.01,0 0.03,0 0.05,0 0.38,-0.03 0.76,-0.07 1.14,-0.11 0,0.05 0,0.09 0,0.14 0,0.01 -0.01,0.02 -0.01,0.03 0,0.06 0.01,0.13 0.01,0.19 0,0.02 0,0.05 0,0.07 0.02,0.67 0.07,1.34 0.04,2.01 0,0.02 -0.01,0.04 -0.01,0.06 -0.23,0.34 -0.5,0.68 -0.79,1 z m -16.43,9.25 c -0.01,-0.01 -0.02,-0.02 -0.03,-0.03 -0.01,-0.01 -0.01,-0.01 -0.02,-0.02 -0.01,-0.01 -0.01,-0.03 -0.01,-0.01 0.01,0.02 0,0 -0.01,-0.01 -0.01,-0.01 -0.01,-0.02 -0.02,-0.03 -0.01,-0.01 -0.02,-0.03 -0.02,-0.04 0,-0.01 -0.01,-0.01 -0.01,-0.02 0,0 0,0 0,0 -0.01,-0.03 -0.02,-0.07 -0.03,-0.1 0,0 0,0 0,-0.01 0,0 0,-0.01 0,-0.01 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,-0.01 0,-0.01 0,0 0,0 0,0 0,-0.02 0,-0.03 0,-0.05 0,-0.02 0,-0.04 0,-0.05 0,-0.01 0,-0.01 0,-0.02 0,-0.02 0.01,-0.03 0.01,-0.05 0,-0.01 0.01,-0.02 0.01,-0.02 0,0 0,0 0,0 0,-0.01 0.02,-0.04 0.02,-0.04 0,-0.01 0.01,-0.01 0.01,-0.02 0,0 0,0 0,0 0.05,-0.06 0.06,-0.16 0,-0.22 -0.06,-0.05 -0.16,-0.07 -0.22,0 -0.13,0.16 -0.18,0.36 -0.14,0.57 0.01,0.08 0.05,0.17 0.09,0.24 -0.04,0 -0.09,0.01 -0.13,0.01 -0.46,0.05 -0.93,0.09 -1.39,0.14 0,-0.07 0,-0.14 0,-0.21 0,-0.34 -0.01,-0.68 -0.01,-1.01 0,-0.18 -0.28,-0.18 -0.29,0 0,0.34 -0.01,0.68 -0.01,1.01 0,0.08 0,0.16 0,0.24 -0.41,0.04 -0.82,0.08 -1.22,0.12 -0.09,0.01 -0.18,0.02 -0.26,0.03 -0.02,-0.13 -0.03,-0.26 -0.05,-0.39 -0.04,-0.34 -0.08,-0.68 -0.12,-1.02 -0.01,-0.08 -0.06,-0.14 -0.14,-0.14 -0.07,0 -0.15,0.07 -0.14,0.14 0.02,0.34 0.05,0.68 0.07,1.02 0.01,0.14 0.02,0.29 0.03,0.43 -0.41,0.04 -0.81,0.08 -1.22,0.13 0.05,-0.02 0.08,-0.06 0.08,-0.11 0,-0.03 0,-0.06 -0.01,-0.09 -0.01,-0.04 -0.05,-0.08 -0.06,-0.1 -0.02,-0.03 -0.06,-0.09 -0.09,-0.13 -0.07,-0.1 -0.12,-0.19 -0.15,-0.29 -0.07,-0.21 -0.06,-0.42 0.02,-0.64 0.06,-0.16 -0.21,-0.28 -0.28,-0.12 -0.12,0.27 -0.15,0.57 -0.08,0.85 0.03,0.14 0.09,0.27 0.16,0.39 0.08,0.12 0.22,0.26 0.37,0.25 -0.55,0.06 -1.09,0.11 -1.64,0.17 0,-0.06 0,-0.13 0,-0.19 0,-0.25 0,-0.49 -0.01,-0.74 0,-0.18 -0.27,-0.18 -0.28,0 l -0.01,0.74 c 0,0.07 0,0.15 0,0.22 -0.31,0.03 -0.62,0.06 -0.93,0.1 0,-0.06 -0.01,-0.12 -0.01,-0.18 -0.03,-0.4 -0.06,-0.8 -0.09,-1.2 -0.01,-0.19 -0.31,-0.19 -0.3,0 0.03,0.4 0.05,0.8 0.08,1.2 0,0.07 0.01,0.14 0.01,0.21 -0.26,0.03 -0.51,0.05 -0.77,0.08 0,0 0,-0.01 0,-0.01 -0.02,-0.12 -0.05,-0.24 -0.06,-0.36 -0.03,-0.22 -0.05,-0.45 -0.05,-0.67 -0.01,-0.47 0.05,-0.93 0.16,-1.39 0.05,-0.21 -0.27,-0.3 -0.33,-0.09 -0.13,0.48 -0.19,0.98 -0.19,1.48 0,0.24 0.02,0.48 0.05,0.72 0.02,0.12 0.03,0.24 0.06,0.35 -0.58,0.06 -1.15,0.12 -1.73,0.18 0,-0.02 0,-0.04 0,-0.06 0,-0.23 0,-0.45 0,-0.68 0,-0.17 -0.26,-0.17 -0.26,0 0,0.23 0,0.45 0,0.68 0,0.03 0,0.06 0,0.09 -0.44,0.05 -0.88,0.09 -1.32,0.14 -0.01,-0.03 -0.03,-0.05 -0.04,-0.07 -0.05,-0.2 -0.04,-0.42 0.04,-0.62 0.03,-0.08 -0.03,-0.17 -0.11,-0.19 -0.09,-0.02 -0.16,0.03 -0.19,0.11 -0.1,0.26 -0.11,0.54 -0.05,0.81 -0.45,0.05 -0.9,0.09 -1.35,0.14 -0.04,-0.06 -0.09,-0.13 -0.11,-0.19 -0.08,-0.21 -0.09,-0.44 0,-0.64 0.03,-0.07 0.02,-0.15 -0.05,-0.19 -0.06,-0.04 -0.16,-0.02 -0.19,0.05 -0.12,0.27 -0.14,0.58 -0.04,0.86 0.02,0.05 0.06,0.1 0.08,0.15 -0.07,0.01 -0.13,0.01 -0.2,0.02 -0.43,0.04 -0.85,0.08 -1.28,0.13 -0.02,-0.03 -0.03,-0.05 -0.05,-0.08 -0.02,-0.03 -0.05,-0.07 -0.09,-0.12 -0.03,-0.05 -0.06,-0.1 -0.09,-0.15 -0.02,-0.04 -0.03,-0.07 -0.05,-0.13 -0.02,-0.05 -0.03,-0.1 -0.04,-0.16 0,-0.01 0,-0.01 0,-0.01 0,0 0,0 0,-0.01 0,-0.01 0,-0.03 0,-0.04 0,-0.03 0,-0.06 -0.01,-0.09 0,-0.06 0,-0.11 0,-0.17 0.01,-0.11 -0.15,-0.18 -0.23,-0.09 -0.14,0.17 -0.3,0.33 -0.47,0.49 -0.1,0.09 0.05,0.24 0.15,0.15 0.08,-0.08 0.16,-0.16 0.25,-0.23 0.01,0.15 0.04,0.3 0.1,0.44 0.04,0.09 0.1,0.16 0.15,0.24 -0.43,0.04 -0.85,0.08 -1.28,0.13 -0.46,0.04 -0.91,0.09 -1.37,0.13 -0.11,0.01 -0.22,0.02 -0.32,0.04 0.12,-0.15 0.22,-0.31 0.36,-0.46 0.23,-0.26 0.48,-0.51 0.75,-0.74 0.55,-0.46 1.16,-0.86 1.8,-1.18 2.49,-1.26 5.32,-1.54 8.06,-1.62 1.75,-0.05 3.5,-0.03 5.24,-0.18 0.83,-0.07 1.66,-0.17 2.49,-0.33 0.82,-0.16 1.63,-0.32 2.37,-0.71 0.07,0.1 0.16,0.19 0.23,0.29 0.11,0.14 0.2,0.29 0.28,0.45 0.01,0.02 0.01,0.02 0.01,0.02 0,0 0,0 0.01,0.01 0.02,0.04 0.03,0.07 0.05,0.11 0.04,0.08 0.07,0.16 0.1,0.25 0.02,0.05 0.03,0.09 0.04,0.14 -0.24,0.05 -0.49,0.11 -0.73,0.15 -0.01,0.25 -0.02,0.51 -0.04,0.76 -0.02,-0.01 -0.04,-0.03 -0.06,-0.03 -0.1,0 -0.18,0.08 -0.18,0.18 0,0.19 -0.01,0.39 -0.01,0.58 0,0.06 0,0.11 0,0.17 -0.34,0 -0.68,0.04 -1.02,0.08 z m -23.89,1.34 c -0.03,-0.07 -0.07,-0.14 -0.09,-0.21 -0.08,-0.2 -0.14,-0.41 -0.19,-0.62 -0.09,-0.44 -0.11,-0.9 -0.05,-1.35 0.02,-0.13 -0.18,-0.19 -0.2,-0.05 -0.08,0.47 -0.07,0.95 0.01,1.42 0.04,0.24 0.11,0.47 0.19,0.69 0.02,0.04 0.04,0.09 0.05,0.14 -0.48,0.03 -0.95,0.06 -1.43,0.09 0,-0.01 0,-0.02 0,-0.02 -0.01,-0.36 -0.04,-0.72 -0.06,-1.08 -0.05,-0.73 -0.13,-1.46 -0.19,-2.2 -0.01,-0.13 -0.21,-0.13 -0.2,0 0.05,0.75 0.08,1.49 0.14,2.24 0.03,0.36 0.06,0.71 0.1,1.07 -0.2,0.01 -0.39,0.03 -0.59,0.04 -1,0.06 -2,0.1 -3,0.15 0,-0.01 -0.01,-0.02 -0.01,-0.03 -0.06,-0.19 -0.11,-0.39 -0.17,-0.58 -0.04,-0.15 -0.28,-0.09 -0.24,0.07 0.05,0.18 0.11,0.37 0.16,0.55 -0.45,0.02 -0.9,0.05 -1.35,0.07 0,-0.01 -0.01,-0.01 -0.01,-0.02 -0.08,-0.11 -0.15,-0.23 -0.21,-0.35 -0.11,-0.24 -0.15,-0.51 -0.13,-0.78 0.01,-0.06 -0.05,-0.11 -0.11,-0.11 -0.07,0 -0.1,0.05 -0.11,0.11 -0.03,0.3 0.02,0.61 0.13,0.89 0.04,0.1 0.1,0.18 0.15,0.27 -0.41,0.02 -0.82,0.05 -1.23,0.06 -4.08,0.17 -8.16,0.26 -12.24,0.27 0,-0.04 -0.01,-0.07 -0.01,-0.11 -0.03,-0.24 -0.05,-0.49 -0.08,-0.73 -0.01,-0.07 -0.05,-0.13 -0.13,-0.13 -0.06,0 -0.13,0.06 -0.13,0.13 0.03,0.25 0.05,0.5 0.08,0.75 0,0.03 0.01,0.07 0.01,0.1 -0.56,0 -1.13,0 -1.69,0 -0.01,-0.14 -0.02,-0.28 -0.03,-0.41 -0.03,-0.41 -0.06,-0.83 -0.08,-1.24 -0.01,-0.18 -0.28,-0.18 -0.28,0 0.02,0.42 0.04,0.85 0.06,1.27 0.01,0.13 0.01,0.26 0.02,0.39 -0.32,0 -0.65,0 -0.97,0 0,0 0.01,0 0.01,-0.01 0.04,-0.2 -0.07,-0.42 -0.12,-0.62 -0.06,-0.22 -0.1,-0.44 -0.14,-0.66 -0.07,-0.45 -0.07,-0.9 -0.03,-1.35 0.01,-0.17 -0.24,-0.16 -0.26,0 -0.05,0.46 -0.05,0.93 0.01,1.39 0.03,0.22 0.07,0.44 0.12,0.65 0.04,0.19 0.1,0.45 0.24,0.59 -0.04,0 -0.08,0 -0.12,0 -0.14,0 -0.3,-0.01 -0.45,-0.01 0,-0.15 0,-0.31 -0.01,-0.46 -0.01,-0.45 -0.01,-0.9 -0.02,-1.35 0,-0.17 -0.26,-0.17 -0.26,0 l -0.02,1.35 c 0,0.15 0,0.3 -0.01,0.45 -0.47,-0.02 -0.96,-0.02 -1.43,0 0.01,-0.24 0.02,-0.48 0.03,-0.71 0.02,-0.58 0.03,-1.16 0.05,-1.74 0.01,-0.2 -0.29,-0.19 -0.3,0 -0.04,0.58 -0.07,1.16 -0.11,1.74 -0.01,0.24 -0.03,0.49 -0.04,0.73 -0.31,0.03 -0.62,0.08 -0.91,0.17 -0.01,-0.23 -0.03,-0.46 -0.04,-0.69 -0.02,-0.29 -0.03,-0.57 -0.05,-0.86 0.05,-0.09 0.09,-0.18 0.14,-0.27 0.06,-0.09 0.11,-0.19 0.16,-0.29 0.01,-0.01 0.02,-0.01 0.02,-0.02 0.14,-0.16 0.22,-0.39 0.22,-0.62 0,-0.01 0.01,-0.02 0.01,-0.03 0.04,-0.17 -0.04,-0.31 -0.16,-0.38 -0.02,-0.03 -0.03,-0.06 -0.06,-0.09 -0.69,-0.56 -1.39,-1.11 -2.09,-1.65 -0.3,-0.23 -0.61,-0.47 -0.93,-0.68 0,-0.07 -0.02,-0.13 -0.04,-0.2 0.06,0.08 0.14,0.15 0.24,0.18 1.13,0.32 2.36,0.3 3.52,0.37 1.19,0.08 2.39,0.1 3.58,0.13 2.36,0.06 4.71,0.06 7.07,0.02 4.71,-0.07 9.42,-0.31 14.12,-0.72 1.32,-0.12 2.64,-0.24 3.95,-0.39 0.53,-0.06 1.06,-0.12 1.59,-0.18 -0.2,0.17 -0.39,0.33 -0.59,0.5 -0.67,0.59 -1.32,1.18 -1.97,1.79 -0.03,0.03 -0.04,0.06 -0.06,0.09 -0.12,0.09 -0.18,0.23 -0.14,0.39 0,0.01 0.01,0.02 0.01,0.03 0,0.04 0.01,0.09 0.02,0.13 -0.07,0.01 -0.14,0.05 -0.13,0.13 0.07,0.51 0.14,1.02 0.2,1.53 0.03,0.25 0.07,0.5 0.1,0.75 0,0.01 0,0.02 0.01,0.04 -0.11,0.01 -0.23,0.02 -0.34,0.02 -0.14,0.04 -0.31,0.05 -0.48,0.06 z m 1.19,-0.08 c 0,-0.01 0,-0.02 0,-0.03 -0.04,-0.26 -0.08,-0.52 -0.12,-0.77 -0.06,-0.4 -0.13,-0.81 -0.19,-1.21 0.02,0.02 0.03,0.05 0.05,0.07 0.01,0.01 0.02,0.01 0.02,0.01 0.06,0.09 0.12,0.19 0.18,0.28 0.19,0.27 0.37,0.55 0.53,0.84 0.02,0.04 0.05,0.09 0.07,0.13 0.01,0.01 0.01,0.02 0.01,0.02 0.03,0.07 0.07,0.14 0.1,0.21 0.07,0.15 0.13,0.29 0.19,0.44 -0.29,-0.02 -0.57,-0.01 -0.84,0.01 z m 23.78,-9.75 c 0,0.02 0,0.04 0.01,0.05 0.05,0.08 0.13,0.09 0.21,0.05 0.14,-0.06 0.28,-0.12 0.42,-0.18 0.18,-0.02 0.35,-0.05 0.53,-0.07 0.4,-0.05 0.79,-0.1 1.19,-0.15 0.39,-0.05 0.89,-0.04 1.2,-0.3 0.11,0.04 0.22,0.05 0.33,0.01 0.02,-0.01 0.03,-0.01 0.05,-0.02 -0.1,0.01 -0.1,0 0.02,-0.01 0.1,-0.01 0.19,-0.05 0.27,-0.1 0.12,-0.07 0.2,-0.16 0.29,-0.26 0.13,-0.13 0.25,-0.27 0.38,-0.4 0.26,-0.28 0.52,-0.55 0.77,-0.83 0.25,-0.27 0.5,-0.54 0.74,-0.82 0.06,-0.06 0.11,-0.14 0.16,-0.2 0.03,0.03 0.06,0.05 0.12,0.04 0.49,-0.14 0.97,-0.34 1.42,-0.58 0.17,-0.09 0.34,-0.2 0.51,-0.3 0.09,0 0.18,0.01 0.27,0.01 0.35,0.02 0.71,0.01 1.06,0.02 0,0 -0.01,0.01 -0.01,0.01 -0.1,0.07 -0.2,0.15 -0.3,0.22 -0.2,0.14 -0.39,0.29 -0.59,0.43 0,0 0,0 0,0 -0.98,0.43 -1.93,0.9 -2.9,1.34 -0.06,0.03 -0.01,0.12 0.06,0.1 0.94,-0.43 1.9,-0.83 2.85,-1.27 0.03,0.02 0.07,0.03 0.11,0.01 0.09,-0.06 0.17,-0.12 0.26,-0.18 0.12,-0.06 0.25,-0.11 0.37,-0.17 0.04,-0.02 0.03,-0.06 0.01,-0.09 0.09,-0.06 0.17,-0.12 0.26,-0.18 0.05,-0.04 0.11,-0.07 0.16,-0.11 0.03,-0.03 0.05,-0.06 0.07,-0.09 0.56,0.01 1.11,0.04 1.67,0.03 0.04,0 0.08,0 0.11,-0.01 -0.93,0.63 -1.9,1.2 -2.94,1.69 -2.84,1.35 -5.97,2.16 -9.15,2.71 -0.04,-0.13 -0.09,-0.26 -0.13,-0.39 0.03,-0.01 0.09,-0.01 0.14,-0.01 z m 1.16,-7.38 c 0.01,-0.02 0.01,-0.04 0.02,-0.07 0.6,-0.72 1.18,-1.44 1.78,-2.17 0.37,-0.45 0.73,-0.9 1.08,-1.35 0.2,-0.25 0.4,-0.5 0.59,-0.75 -0.03,0.32 -0.1,0.63 -0.13,0.86 -0.28,2.34 -0.59,5.04 1.13,6.9 -0.02,0.02 -0.05,0.04 -0.07,0.06 -0.28,0.26 -0.55,0.52 -0.82,0.78 -0.26,0.26 -0.52,0.52 -0.78,0.78 -0.11,0.11 -0.22,0.21 -0.32,0.32 -0.05,-0.06 -0.11,-0.11 -0.18,-0.14 -0.22,-0.12 -0.47,-0.17 -0.67,-0.27 -0.21,-0.11 -0.37,-0.24 -0.54,-0.41 -0.31,-0.32 -0.56,-0.72 -0.71,-1.14 -0.2,-0.55 -0.28,-1.13 -0.31,-1.71 -0.04,-0.54 0.04,-1.14 -0.07,-1.69 z m 5.63,3.87 c 0.05,-0.08 0.09,-0.16 0.13,-0.24 0.09,-0.1 0.15,-0.22 0.17,-0.35 0.04,0.01 0.08,0.01 0.12,-0.01 0.01,0 0.02,-0.01 0.03,-0.01 0.29,0.02 0.58,0.04 0.87,0.05 -0.04,0.03 -0.08,0.06 -0.13,0.08 -0.39,0.22 -0.8,0.39 -1.22,0.52 0.01,-0.02 0.02,-0.03 0.03,-0.04 z m 22.95,0.4 c 0.02,0.04 0.03,0.08 0.05,0.12 0.03,0.07 0.05,0.14 0.08,0.2 0.03,0.07 0.07,0.14 0.11,0.21 0.03,0.05 0.07,0.05 0.11,0.04 0,0.03 0.01,0.06 0.02,0.1 -0.41,0.1 -0.82,0.26 -1.2,0.36 -0.28,0.07 -0.56,0.13 -0.83,0.2 -0.05,-0.15 -0.09,-0.31 -0.14,-0.46 -0.06,-0.19 -0.35,-0.11 -0.3,0.08 0.04,0.15 0.08,0.3 0.12,0.46 -0.31,0.08 -0.62,0.16 -0.93,0.23 -0.05,-0.09 -0.1,-0.17 -0.13,-0.26 -0.09,-0.29 -0.09,-0.59 0.01,-0.88 0,-0.01 0,-0.01 0,-0.02 0.15,-0.02 0.31,-0.02 0.46,-0.04 0.81,-0.09 1.61,-0.19 2.41,-0.3 0.05,-0.03 0.1,-0.03 0.16,-0.04 z m 1.01,4.11 c -0.02,0.39 -0.04,0.78 -0.07,1.16 0,0.01 0,0.01 0,0.02 -0.09,0.01 -0.18,0.01 -0.27,0.02 -0.16,0.01 -0.31,0.01 -0.47,0.02 0.06,-0.02 0.12,-0.05 0.14,-0.12 0.03,-0.09 0.05,-0.19 0.07,-0.28 0.01,-0.01 0.03,-0.01 0.03,-0.02 0.01,-0.06 0.01,-0.12 0.01,-0.18 0.01,-0.05 0.03,-0.1 0.03,-0.16 0,-0.03 -0.02,-0.06 -0.04,-0.08 0,-0.11 -0.02,-0.22 -0.03,-0.33 -0.03,-0.25 -0.06,-0.5 -0.09,-0.75 -0.01,-0.04 -0.03,-0.08 -0.06,-0.1 -0.02,-0.02 -0.04,-0.02 -0.07,-0.03 -0.01,0 -0.01,-0.01 -0.01,-0.01 0,0 0,0 0,0 -0.08,-0.01 -0.18,0.03 -0.18,0.14 0,0.29 -0.01,0.58 -0.02,0.87 -0.01,0.29 -0.03,0.58 -0.03,0.87 0,0.1 0.07,0.16 0.15,0.18 -0.16,0.01 -0.31,0.01 -0.47,0.02 0,0 -0.01,0 -0.01,0 0,-0.01 0,-0.02 0,-0.03 -0.01,-0.22 -0.03,-0.43 -0.04,-0.65 -0.03,-0.42 -0.06,-0.85 -0.09,-1.27 0,-0.03 -0.02,-0.05 -0.03,-0.07 0.06,-0.03 0.12,-0.06 0.17,-0.09 0.47,-0.23 0.94,-0.47 1.42,-0.7 -0.01,0.53 -0.02,1.05 -0.04,1.57 z m -13.02,-3.27 c -0.01,-0.07 -0.02,-0.14 -0.03,-0.21 -0.01,-0.21 -0.02,-0.42 -0.01,-0.63 -0.04,-0.01 -0.08,0.01 -0.12,0.01 -0.01,-0.1 -0.01,-0.21 -0.02,-0.3 -0.02,-0.32 -0.04,-0.63 -0.06,-0.95 0.02,0.01 0.04,0.03 0.06,0.05 0.12,0.07 0.25,0.13 0.37,0.21 0.04,0.59 0.09,1.17 0.13,1.76 0,0.01 0,0.01 0,0.02 -0.08,0 -0.17,0.02 -0.24,0.04 -0.03,-0.01 -0.06,0 -0.08,0 z m 3.98,3.07 c -0.2,0.06 -0.32,0.25 -0.3,0.45 0,0.02 0.02,0.03 0.02,0.04 -0.01,0 -0.02,0.02 -0.03,0.03 0,0 -0.01,0 -0.01,0 -0.02,-0.03 -0.02,-0.05 -0.04,-0.08 -0.23,-0.28 -0.45,-0.56 -0.68,-0.85 0.19,0.04 0.37,0.08 0.56,0.11 0.29,0.06 0.59,0.14 0.89,0.15 -0.01,0.01 -0.02,0.01 -0.03,0.02 -0.13,0.06 -0.26,0.1 -0.38,0.13 z m 0.44,-3.18 c 0.02,0 0.04,-0.01 0.06,-0.01 -0.03,0.21 -0.03,0.43 -0.05,0.63 -0.01,0.07 0,0.14 0,0.21 0,-0.06 -0.01,-0.12 -0.01,-0.18 l -0.04,-0.66 c 0.02,0 0.03,0.01 0.04,0.01 z m 1.31,2.79 0.25,-0.09 c 0.03,-0.01 0.04,-0.03 0.06,-0.05 0.21,-0.02 0.42,-0.05 0.63,-0.08 0.01,0.01 0.01,0.02 0.02,0.03 0.06,0.07 0.17,0.02 0.18,-0.06 0.11,-0.02 0.22,-0.03 0.33,-0.05 0.7,-0.1 1.4,-0.23 2.1,-0.39 0.35,-0.08 0.7,-0.19 1.04,-0.28 -0.09,0.05 -0.19,0.1 -0.28,0.14 -0.17,0.09 -0.32,0.18 -0.48,0.28 -0.08,0.05 -0.16,0.09 -0.24,0.14 -0.11,0.08 -0.16,0.16 -0.25,0.26 -0.05,0.05 -0.07,0.12 -0.09,0.19 -0.04,0 -0.08,0 -0.12,0 -0.13,0.01 -0.26,0.04 -0.39,0.06 -0.12,0.02 -0.24,0.06 -0.36,0.1 -0.02,-0.02 -0.04,-0.05 -0.06,-0.06 -0.27,-0.17 -0.57,-0.11 -0.87,-0.08 -0.26,0.03 -0.52,0.05 -0.78,0.09 -0.21,0.03 -0.43,0.07 -0.64,0.1 -0.02,0 -0.04,0.01 -0.06,0.01 0.01,-0.08 0.02,-0.17 0.01,-0.26 z m 2.31,2.5 c 0,0 0,-0.01 0,-0.01 -0.04,-0.37 -0.09,-0.74 -0.15,-1.11 0.11,-0.04 0.23,-0.08 0.34,-0.12 0.02,-0.01 0.04,-0.01 0.05,-0.02 0.07,0.35 0.15,0.69 0.22,1.04 -0.01,0 -0.02,0.01 -0.03,0.01 -0.14,0.06 -0.29,0.13 -0.43,0.21 z m 0.81,-0.36 -0.26,-1.02 c 0.09,-0.03 0.18,-0.06 0.27,-0.1 0.09,-0.04 0.18,-0.08 0.26,-0.13 0.02,-0.01 0.18,-0.12 0.11,-0.08 0.05,-0.03 0.1,-0.06 0.15,-0.09 0.04,-0.03 0.06,-0.07 0.09,-0.11 0.1,0 0.2,0 0.3,-0.02 0.01,0 0.01,-0.01 0.02,-0.01 -0.02,0.27 -0.02,0.55 0.02,0.83 0.02,0.16 0.07,0.32 0.12,0.48 -0.11,-0.06 -0.24,-0.08 -0.36,-0.03 -0.24,0.09 -0.48,0.19 -0.72,0.28 z m 1.5,-0.2 c -0.06,-0.19 -0.12,-0.38 -0.16,-0.58 -0.05,-0.31 -0.04,-0.62 -0.01,-0.93 0.15,-0.06 0.31,-0.12 0.45,-0.19 0.18,-0.09 0.35,-0.17 0.53,-0.26 0.02,0.41 0.03,0.81 0.05,1.22 0.01,0.21 0.02,0.41 0.03,0.62 0,0.02 0,0.04 0,0.06 -0.29,0.01 -0.59,0.03 -0.89,0.06 z m -1.76,-4.07 c 0.02,0.08 0.07,0.14 0.11,0.22 -0.2,0.04 -0.39,0.08 -0.59,0.11 -0.01,-0.05 -0.03,-0.1 -0.04,-0.16 -0.05,-0.34 -0.03,-0.7 0.05,-1.03 0.01,-0.03 -0.01,-0.06 -0.01,-0.08 0.17,-0.02 0.34,-0.03 0.5,-0.05 -0.11,0.32 -0.12,0.67 -0.02,0.99 z m -0.83,0.4 c -0.27,0.05 -0.55,0.11 -0.82,0.16 -0.1,0.02 -0.2,0.03 -0.3,0.05 0,-0.03 -0.01,-0.05 -0.02,-0.08 -0.05,-0.45 -0.04,-0.9 0.03,-1.34 0.13,-0.01 0.27,-0.02 0.4,-0.03 0.25,-0.02 0.5,-0.05 0.75,-0.07 -0.12,0.43 -0.13,0.88 -0.04,1.31 z m -1.49,0.15 c 0,0.04 0.01,0.07 0.02,0.11 -0.19,0.03 -0.38,0.06 -0.58,0.1 0,-0.27 0,-0.54 -0.02,-0.81 -0.02,-0.23 -0.02,-0.48 -0.07,-0.72 0.23,0 0.45,-0.01 0.68,-0.02 -0.06,0.45 -0.08,0.9 -0.03,1.34 z m -2.24,-1.26 c 0.01,0.24 0.03,0.48 0.04,0.73 0.01,0.21 0.02,0.41 0.04,0.62 0.01,0.15 0.04,0.29 0.06,0.43 -0.14,-0.02 -0.28,-0.04 -0.41,-0.06 l -0.28,-0.05 c -0.01,-0.11 -0.05,-0.23 -0.08,-0.34 -0.05,-0.15 -0.1,-0.3 -0.14,-0.44 -0.08,-0.29 -0.15,-0.58 -0.21,-0.87 -0.02,-0.12 -0.03,-0.25 -0.05,-0.37 0.34,0.13 0.68,0.26 1.03,0.35 z m -1.41,-0.5 c 0.02,0.01 0.03,0.01 0.05,0.02 0.02,0.18 0.04,0.37 0.07,0.55 0.05,0.31 0.12,0.61 0.2,0.91 0.05,0.19 0.11,0.44 0.2,0.64 l -0.2,-0.03 c -0.23,-0.04 -0.46,-0.06 -0.7,-0.09 -0.02,-0.14 -0.05,-0.28 -0.07,-0.41 -0.04,-0.3 -0.08,-0.61 -0.11,-0.91 -0.04,-0.32 -0.08,-0.65 -0.12,-0.97 0.23,0.09 0.45,0.2 0.68,0.29 z m -0.98,-0.43 c 0.04,0.38 0.09,0.76 0.13,1.14 0.03,0.3 0.07,0.61 0.1,0.91 0.01,0.1 0.02,0.21 0.03,0.33 -0.02,0 -0.05,-0.01 -0.07,-0.01 -0.06,-0.08 -0.12,-0.16 -0.19,-0.24 -0.19,-0.24 -0.38,-0.5 -0.65,-0.66 -0.02,-0.04 -0.04,-0.09 -0.05,-0.13 -0.03,-0.04 -0.06,-0.08 -0.1,-0.12 -0.06,-0.06 -0.15,-0.1 -0.23,-0.13 l -0.01,-0.07 c -0.05,-0.53 -0.09,-1.07 -0.14,-1.6 0.22,0.12 0.43,0.26 0.66,0.37 0.18,0.07 0.35,0.14 0.52,0.21 z m 9.08,7.75 c -0.08,0.05 -0.13,0.12 -0.18,0.19 -0.2,-0.12 -0.43,-0.19 -0.65,-0.26 -0.28,-0.09 -0.57,-0.16 -0.87,-0.2 -0.29,-0.04 -0.59,-0.07 -0.88,-0.09 0,-0.04 -0.01,-0.09 -0.01,-0.13 0.03,0 0.06,-0.01 0.08,-0.01 0.18,-0.03 0.36,-0.08 0.54,-0.14 0.03,0.11 0.08,0.22 0.16,0.28 0.06,0.04 0.16,0.01 0.2,-0.05 0.05,-0.1 0.04,-0.23 0.01,-0.36 0.25,-0.09 0.5,-0.18 0.75,-0.27 0.06,-0.02 0.12,-0.06 0.17,-0.1 0.54,0.01 1.08,0.02 1.62,0 0.33,-0.01 0.66,-0.02 1,-0.04 0.05,0 0.11,0 0.17,0 -0.02,0.01 -0.05,0.02 -0.07,0.03 -0.03,0.02 -0.04,0.02 -0.03,0.02 -0.05,0.02 -0.15,0.07 -0.17,0.08 -0.05,0.03 -0.11,0.06 -0.16,0.08 -0.18,0.1 -0.37,0.19 -0.55,0.3 -0.4,0.22 -0.76,0.44 -1.13,0.67 z m 1.59,-7.36 c -0.01,-0.03 -0.02,-0.06 -0.04,-0.09 -0.01,-0.03 -0.02,-0.05 -0.03,-0.08 0.03,0 0.06,-0.01 0.09,-0.01 0,0.05 -0.02,0.11 -0.02,0.18 z m 0.84,-3.3 c 0,0.08 0,0.17 0,0.25 0,0.38 0.01,0.76 0.01,1.14 -0.11,0.02 -0.21,0.03 -0.33,0.05 -0.41,0.07 -0.82,0.13 -1.23,0.19 -0.78,0.11 -1.56,0.22 -2.35,0.31 -0.8,0.1 -1.59,0.19 -2.39,0.29 -0.58,0.07 -1.2,0.1 -1.77,0.25 -0.03,-0.36 -0.06,-0.71 -0.1,-1.07 -0.03,-0.24 -0.05,-0.49 -0.08,-0.74 0.11,-0.04 0.19,-0.11 0.26,-0.21 0.47,-0.03 0.93,-0.07 1.4,-0.11 0.8,-0.07 1.59,-0.12 2.39,-0.17 1.39,-0.09 2.79,-0.15 4.19,-0.18 z m -9.6,1.44 c 0.01,0.17 0.03,0.34 0.04,0.51 -0.15,-0.05 -0.3,-0.09 -0.45,-0.15 -0.45,-0.16 -0.88,-0.34 -1.3,-0.52 -0.45,-0.2 -0.9,-0.39 -1.33,-0.61 -0.2,-0.1 -0.4,-0.17 -0.6,-0.25 0,-0.01 0.01,-0.03 0.01,-0.04 -0.01,-0.47 -0.09,-0.94 -0.14,-1.4 -0.02,-0.19 -0.04,-0.39 -0.06,-0.59 0.08,0.06 0.16,0.13 0.25,0.18 0.49,0.32 1.01,0.59 1.52,0.86 0.5,0.27 1.01,0.51 1.52,0.74 0.16,0.07 0.32,0.14 0.49,0.21 -0.02,0.37 0.02,0.73 0.05,1.06 z m -17.49,-9.37 c -0.05,-0.11 -0.11,-0.22 -0.17,-0.33 -0.08,-0.14 -0.16,-0.28 -0.25,-0.43 -0.18,-0.3 -0.36,-0.61 -0.54,-0.91 -0.36,-0.6 -0.72,-1.21 -1.08,-1.81 -0.08,-0.14 -0.3,-0.01 -0.22,0.13 0.35,0.61 0.71,1.22 1.06,1.83 0.18,0.3 0.35,0.61 0.53,0.91 0.08,0.14 0.17,0.28 0.25,0.42 0.04,0.06 0.07,0.12 0.11,0.18 -0.31,0 -0.62,-0.01 -0.92,-0.01 -0.02,-0.06 -0.04,-0.11 -0.06,-0.16 -0.14,-0.35 -0.31,-0.68 -0.53,-0.99 -0.37,-0.53 -0.86,-0.95 -1.4,-1.29 0.01,-0.02 0.02,-0.03 0.03,-0.05 0.14,-0.25 0.06,-0.51 -0.11,-0.69 0,-0.03 0,-0.05 -0.01,-0.08 -0.02,-0.34 -0.03,-0.68 -0.05,-1.02 -0.01,-0.31 -0.02,-0.64 -0.03,-0.96 0.12,0.07 0.25,0.15 0.38,0.22 0.3,0.17 0.6,0.34 0.88,0.55 0.55,0.41 1.08,0.89 1.5,1.44 0.41,0.52 0.77,1.15 1,1.75 0.13,0.34 0.23,0.68 0.31,1.04 0.02,0.11 0.03,0.21 0.05,0.31 -0.26,-0.03 -0.49,-0.04 -0.73,-0.05 z m -4.92,0.07 c -0.02,-0.13 -0.04,-0.25 -0.06,-0.38 0.01,0.05 0.01,0.1 0.02,0.15 -0.01,-0.08 -0.02,-0.16 -0.04,-0.24 0.32,-0.27 0.62,-0.55 0.9,-0.85 0.24,0.23 0.5,0.44 0.72,0.69 0.15,0.17 0.28,0.34 0.42,0.52 -0.64,-0.01 -1.35,-0.06 -1.96,0.11 z m 2.29,-0.1 c -0.17,-0.23 -0.35,-0.46 -0.54,-0.68 -0.24,-0.27 -0.51,-0.5 -0.78,-0.74 0.08,-0.09 0.15,-0.18 0.22,-0.27 0.18,-0.07 0.34,-0.21 0.4,-0.43 0.01,-0.04 0,-0.08 0.01,-0.12 0.5,0.33 0.95,0.74 1.28,1.25 0.19,0.29 0.35,0.59 0.47,0.91 0.01,0.03 0.02,0.06 0.03,0.09 -0.36,0 -0.72,0 -1.09,-0.01 z m 4.35,-1.84 c 0.02,0.03 0.04,0.05 0.08,0.06 -0.01,0.01 -0.02,0.03 -0.03,0.04 -0.02,-0.03 -0.04,-0.06 -0.05,-0.1 z m -6.31,-2.7 c 0,0.09 0,0.18 -0.01,0.27 -0.01,0.28 -0.02,0.56 -0.04,0.84 -0.03,0.05 -0.04,0.1 -0.02,0.16 0,0.01 0.01,0.01 0.01,0.02 -0.01,0.15 -0.02,0.31 -0.03,0.48 -0.35,0.33 -0.7,0.64 -1.07,0.95 -0.01,-0.09 -0.03,-0.19 -0.03,-0.28 -0.01,-0.31 0.04,-0.61 0.15,-0.9 0.03,-0.07 -0.03,-0.16 -0.1,-0.18 -0.08,-0.02 -0.15,0.03 -0.18,0.1 -0.12,0.32 -0.18,0.66 -0.17,1 0,0.16 0.02,0.33 0.05,0.49 -0.22,0.18 -0.43,0.37 -0.67,0.53 -0.07,0.05 -0.15,0.09 -0.22,0.14 0,-0.12 0,-0.24 0,-0.36 l -0.01,-1.43 c 0.88,-0.51 1.68,-1.12 2.34,-1.83 z m -2.63,3.27 c 0,0.18 0,0.37 0,0.55 -0.28,0.18 -0.57,0.35 -0.86,0.5 0,-0.06 0,-0.12 0,-0.18 0,-0.55 -0.01,-1.11 -0.01,-1.66 0,0 0,-0.01 0,-0.01 0.3,-0.15 0.6,-0.31 0.89,-0.47 z m -1.1,0.87 c 0,0.1 0,0.21 0,0.31 -0.11,0.06 -0.21,0.12 -0.32,0.17 -0.18,-0.55 -0.36,-1.1 -0.54,-1.64 0.29,-0.12 0.58,-0.26 0.87,-0.39 -0.01,0.51 -0.01,1.03 -0.01,1.55 z m 2.22,0.85 c 0.04,0.33 0.1,0.66 0.22,0.97 0.04,0.12 0.12,0.22 0.21,0.31 -0.01,0.02 -0.01,0.03 -0.03,0.06 -0.05,0.1 -0.1,0.2 -0.14,0.3 -0.01,0.03 -0.03,0.07 -0.04,0.1 0,0.01 -0.01,0.01 -0.01,0.03 -0.04,0.08 -0.07,0.16 -0.1,0.24 0,0.01 0,0.01 -0.01,0.02 -0.04,0.08 -0.07,0.16 -0.12,0.24 -0.08,0.15 -0.17,0.3 -0.27,0.44 -0.02,0.02 -0.03,0.04 -0.05,0.07 -0.01,0.01 -0.02,0.02 -0.03,0.04 -0.06,0.07 -0.12,0.14 -0.18,0.2 -0.12,0.12 -0.24,0.23 -0.38,0.34 0,0 -0.01,0 -0.01,0.01 -0.04,0.03 -0.08,0.06 -0.12,0.08 -0.06,0.04 -0.13,0.08 -0.19,0.12 -0.27,-0.82 -0.54,-1.63 -0.81,-2.45 0.71,-0.34 1.41,-0.7 2.06,-1.12 z m 2.48,10.9 c -0.13,-0.05 -0.31,-0.01 -0.45,0.01 -0.15,0.02 -0.3,0.03 -0.46,0.05 -0.12,0.01 -0.24,0.02 -0.35,0.04 -0.13,-0.38 -0.25,-0.77 -0.38,-1.15 0.02,0 0.04,0 0.06,-0.01 0.24,-0.1 0.5,-0.15 0.76,-0.15 0.13,0 0.25,0.01 0.37,0.04 0.06,0.01 0.13,0.03 0.19,0.05 0.08,0.02 0.14,0.06 0.22,0.05 0.02,0 0.03,-0.02 0.05,-0.03 0.05,0.19 0.08,0.39 0.16,0.58 0.24,0.59 0.56,1.14 1.01,1.6 0.13,0.13 0.29,0.27 0.45,0.39 -0.27,0.04 -0.53,0.09 -0.8,0.13 -0.5,0.08 -1.01,0.16 -1.51,0.28 -0.03,-0.09 -0.06,-0.17 -0.09,-0.26 0.04,0.01 0.09,0.01 0.13,0.02 0.09,0.01 0.19,0.03 0.28,0.04 0.11,0.02 0.22,0.04 0.33,0.04 0.04,0 0.07,-0.01 0.1,-0.03 0.04,-0.01 0.07,-0.01 0.1,-0.04 0.05,-0.04 0.06,-0.1 0.02,-0.15 -0.02,-0.03 -0.06,-0.05 -0.09,-0.06 -0.02,-0.03 -0.05,-0.05 -0.08,-0.06 -0.1,-0.03 -0.21,-0.03 -0.31,-0.04 -0.1,-0.01 -0.2,-0.02 -0.29,-0.03 l -0.28,-0.03 c -0.1,-0.3 -0.2,-0.61 -0.3,-0.91 0.09,-0.01 0.19,-0.02 0.28,-0.02 0.15,-0.01 0.3,-0.02 0.46,-0.04 0.15,-0.01 0.34,-0.01 0.47,-0.09 0.08,-0.06 0.05,-0.19 -0.05,-0.22 z m -0.61,7.25 c -0.87,0.12 -1.73,0.33 -2.6,0.42 -0.99,0.1 -1.98,0.14 -2.98,0.15 -3.23,0.04 -6.5,-0.09 -9.67,0.67 -1.36,0.33 -2.68,0.83 -3.87,1.55 -0.59,0.35 -1.13,0.77 -1.63,1.23 -0.19,0.17 -0.39,0.36 -0.59,0.56 -0.14,-0.26 -0.27,-0.52 -0.44,-0.77 0,0 -0.01,-0.01 -0.01,-0.01 0,0 -0.01,-0.01 -0.01,-0.01 -0.15,-0.22 -0.32,-0.43 -0.49,-0.63 0.51,-0.49 1.02,-0.98 1.52,-1.48 0.29,-0.29 0.58,-0.56 0.84,-0.87 0.1,-0.12 0.22,-0.25 0.34,-0.4 0.08,-0.04 0.15,-0.08 0.22,-0.14 0.07,-0.07 0.14,-0.14 0.21,-0.21 0.65,0.08 1.34,-0.13 1.99,-0.23 0.8,-0.13 1.6,-0.28 2.4,-0.39 1.6,-0.21 3.21,-0.4 4.82,-0.55 1.64,-0.16 3.29,-0.27 4.93,-0.39 0.77,-0.05 1.55,-0.12 2.32,-0.17 0.69,-0.04 1.42,-0.04 2.11,-0.12 0.19,0.6 0.39,1.19 0.59,1.79 z m -57.72,-2.08 c 0.71,0.08 1.42,0.13 2.13,0.16 1.39,0.07 2.78,0.14 4.17,0.18 2.71,0.1 5.43,0.12 8.15,0.1 5.5,-0.05 10.99,-0.29 16.47,-0.71 1.55,-0.12 3.09,-0.26 4.64,-0.41 1.37,-0.13 2.82,-0.27 4.14,-0.7 -0.57,0.62 -1.16,1.23 -1.75,1.83 -0.26,-0.02 -0.53,0 -0.81,0.03 -0.61,0.07 -1.22,0.14 -1.83,0.21 -1.16,0.13 -2.31,0.24 -3.47,0.35 -2.35,0.21 -4.7,0.39 -7.05,0.52 -4.71,0.27 -9.42,0.36 -14.13,0.32 -1.29,-0.01 -2.58,-0.05 -3.87,-0.07 -1.32,-0.02 -2.71,-0.15 -4.01,0.07 -0.33,0.06 -0.41,0.38 -0.32,0.65 -0.04,-0.07 -0.08,-0.14 -0.15,-0.2 -0.88,-0.76 -1.76,-1.54 -2.62,-2.35 0.09,0 0.2,0.01 0.31,0.02 z m 2.22,9.25 c -0.1,0 -0.2,-0.01 -0.3,-0.01 -0.05,-0.04 -0.09,-0.1 -0.14,-0.13 -0.1,-0.07 -0.2,0.03 -0.2,0.12 -0.24,-0.01 -0.49,-0.01 -0.73,-0.02 -0.07,0 -0.14,0 -0.21,-0.01 -0.01,-0.05 -0.01,-0.11 -0.02,-0.16 -0.03,-0.32 -0.06,-0.63 -0.09,-0.95 -0.02,-0.2 -0.32,-0.2 -0.31,0 0.02,0.32 0.04,0.64 0.06,0.97 0,0.04 0.01,0.09 0.01,0.13 -0.37,-0.01 -0.75,-0.02 -1.12,-0.03 -0.01,-0.14 -0.01,-0.29 0,-0.44 0.02,-0.35 0.11,-0.71 0.25,-1.03 0.04,-0.08 0.02,-0.18 -0.06,-0.22 -0.07,-0.04 -0.19,-0.02 -0.22,0.06 -0.17,0.37 -0.27,0.76 -0.31,1.16 -0.01,0.15 -0.01,0.31 0,0.46 -0.31,-0.01 -0.62,-0.02 -0.93,-0.03 -0.04,0 -0.07,0 -0.11,0 0,-0.13 0,-0.27 0,-0.4 0,-0.32 0,-0.63 0,-0.95 0,-0.2 -0.31,-0.2 -0.31,0 0,0.32 0,0.63 0,0.95 0,0.13 0,0.26 0,0.39 -0.38,-0.01 -0.76,-0.03 -1.14,-0.04 0,-0.07 0.01,-0.15 0.01,-0.22 0,-0.18 0,-0.35 -0.01,-0.53 0,-0.34 -0.01,-0.69 -0.01,-1.03 0,-0.2 -0.31,-0.2 -0.31,0 0,0.34 -0.01,0.69 -0.01,1.03 0,0.17 0,0.34 -0.01,0.51 0,0.08 0,0.15 0,0.23 -0.51,-0.02 -1.02,-0.04 -1.53,-0.06 0,0 0,0 0,0 0.1,-0.12 0.07,-0.33 0.07,-0.47 0,-0.15 0,-0.3 0,-0.46 0,-0.32 0,-0.63 0,-0.95 0,-0.2 -0.31,-0.2 -0.31,0 0,0.32 0,0.63 0,0.95 0,0.15 0,0.3 0,0.46 0,0.15 -0.03,0.35 0.07,0.47 -0.75,-0.03 -1.5,-0.06 -2.26,-0.08 0,-0.06 -0.01,-0.11 -0.05,-0.16 -0.03,-0.06 -0.06,-0.11 -0.09,-0.17 -0.05,-0.11 -0.1,-0.23 -0.13,-0.35 -0.06,-0.24 -0.07,-0.5 -0.02,-0.74 0.01,-0.07 -0.02,-0.15 -0.1,-0.17 -0.07,-0.02 -0.15,0.02 -0.17,0.1 -0.06,0.29 -0.06,0.58 0.01,0.86 0.03,0.14 0.08,0.27 0.14,0.4 0.03,0.07 0.07,0.13 0.1,0.19 0.01,0.01 0.02,0.02 0.03,0.04 -0.38,-0.01 -0.76,-0.03 -1.14,-0.04 -0.03,-0.05 -0.05,-0.11 -0.07,-0.16 -0.06,-0.12 -0.1,-0.25 -0.12,-0.39 -0.05,-0.27 -0.02,-0.55 0.08,-0.8 0.03,-0.09 -0.04,-0.19 -0.12,-0.21 -0.1,-0.03 -0.18,0.03 -0.21,0.12 -0.13,0.31 -0.15,0.65 -0.1,0.98 0.02,0.16 0.07,0.31 0.14,0.45 -0.26,-0.01 -0.53,-0.02 -0.79,-0.03 -0.01,-0.01 -0.01,-0.01 -0.01,-0.02 -0.09,-0.07 -0.17,-0.16 -0.24,-0.24 -0.02,-0.02 -0.06,-0.08 -0.09,-0.13 -0.03,-0.05 -0.06,-0.1 -0.09,-0.16 -0.01,-0.01 -0.01,-0.02 -0.02,-0.03 0.01,0.02 -0.01,-0.02 -0.01,-0.02 -0.01,-0.03 -0.02,-0.05 -0.03,-0.08 -0.02,-0.06 -0.03,-0.12 -0.04,-0.18 0,-0.01 -0.01,-0.04 0,-0.02 0,-0.02 0,-0.03 0,-0.05 0,-0.03 0,-0.06 0,-0.09 0,-0.06 0,-0.13 0.01,-0.19 0.01,-0.08 -0.07,-0.16 -0.15,-0.17 -0.08,-0.01 -0.17,0.04 -0.19,0.12 -0.05,0.3 0,0.59 0.12,0.87 0.06,0.13 0.14,0.25 0.24,0.36 -0.41,-0.01 -0.81,-0.03 -1.22,-0.04 -0.01,-0.07 -0.02,-0.14 -0.02,-0.19 -0.02,-0.14 -0.03,-0.28 -0.05,-0.41 -0.03,-0.29 -0.07,-0.57 -0.1,-0.86 -0.01,-0.07 -0.05,-0.13 -0.13,-0.13 -0.07,0 -0.13,0.06 -0.13,0.13 0.03,0.29 0.05,0.58 0.08,0.88 0.01,0.14 0.02,0.29 0.04,0.43 0,0.05 0.01,0.1 0.02,0.15 -0.33,-0.01 -0.65,-0.02 -0.98,-0.03 -0.03,-0.11 -0.06,-0.23 -0.09,-0.34 -0.05,-0.23 -0.09,-0.47 -0.11,-0.71 -0.05,-0.5 -0.05,-0.99 0.03,-1.48 0,0 0,0 0,0 1.7,0.02 3.39,-0.1 5.09,-0.17 2.74,-0.1 5.59,-0.01 8.15,1.08 0.66,0.28 1.3,0.64 1.88,1.06 0.28,0.21 0.55,0.44 0.8,0.69 0.14,0.14 0.26,0.29 0.39,0.43 -0.14,-0.04 -0.25,-0.04 -0.36,-0.05 z m -17.16,-0.59 c 0,-0.02 0,-0.04 0,-0.07 0,-0.17 0,-0.33 0,-0.5 0,-0.13 -0.21,-0.13 -0.21,0 0,0.17 0,0.33 0,0.5 0,0.02 0,0.04 0,0.06 -0.26,-0.01 -0.52,-0.02 -0.77,-0.03 -0.01,-0.06 -0.02,-0.11 -0.02,-0.16 -0.01,-0.11 -0.03,-0.22 -0.04,-0.33 -0.03,-0.23 -0.06,-0.46 -0.09,-0.69 -0.01,-0.07 -0.06,-0.14 -0.14,-0.14 -0.07,0 -0.15,0.06 -0.14,0.14 0.03,0.23 0.06,0.47 0.08,0.7 0.01,0.11 0.03,0.23 0.04,0.34 0,0.03 0.01,0.08 0.01,0.12 -0.2,-0.01 -0.4,-0.01 -0.6,-0.02 -0.07,0 -0.14,-0.01 -0.2,-0.01 -0.02,-0.11 -0.04,-0.21 -0.06,-0.32 -0.06,-0.28 -0.11,-0.56 -0.17,-0.84 -0.03,-0.15 -0.26,-0.09 -0.23,0.06 0.06,0.28 0.11,0.55 0.17,0.83 0.02,0.09 0.04,0.18 0.06,0.26 -0.53,-0.03 -1.07,-0.06 -1.61,-0.06 -0.02,-0.05 -0.04,-0.1 -0.06,-0.15 -0.08,-0.3 -0.1,-0.61 -0.06,-0.92 0.01,-0.07 -0.06,-0.13 -0.13,-0.13 -0.08,0 -0.12,0.06 -0.13,0.13 -0.04,0.34 -0.01,0.68 0.08,1 0.01,0.03 0.02,0.05 0.03,0.07 -0.08,0 -0.15,0.01 -0.23,0.01 -0.06,-0.17 -0.11,-0.33 -0.15,-0.51 0,0 0,-0.01 0,-0.01 -0.02,-0.33 -0.02,-0.65 -0.02,-0.98 0,0 0,0 0,0 0.01,-0.04 0.01,-0.08 0.02,-0.12 0.02,-0.1 0.04,-0.19 0.07,-0.29 0.02,-0.09 0.05,-0.17 0.08,-0.25 0.01,-0.04 0.03,-0.07 0.04,-0.11 0,-0.01 0,-0.01 0,-0.01 0,-0.01 0,-0.01 0.01,-0.03 0.08,-0.16 0.16,-0.32 0.25,-0.47 0.06,-0.1 0.14,-0.2 0.21,-0.3 0.77,0.34 1.59,0.45 2.42,0.55 0.8,0.1 1.6,0.14 2.4,0.16 -0.08,0.5 -0.12,1.01 -0.09,1.51 0.02,0.26 0.05,0.52 0.1,0.77 0.01,0.08 0.04,0.15 0.05,0.23 -0.32,0.03 -0.64,0.02 -0.97,0.01 z m -6.36,-2.48 c 0.01,-0.12 0,-0.23 0,-0.34 -0.01,-0.24 -0.01,-0.49 -0.02,-0.73 -0.01,-0.45 -0.03,-0.91 -0.04,-1.36 -0.03,-0.89 -0.05,-1.78 -0.08,-2.67 0.72,0.13 1.45,0.26 2.17,0.37 -0.06,-0.54 -0.1,-1.09 -0.12,-1.64 -1.89,-0.29 -3.77,-0.65 -5.65,-1.03 0.53,-0.14 1.06,-0.32 1.54,-0.61 0.8,-0.47 1.4,-1.12 1.86,-1.86 0.37,0.24 0.73,0.48 1.1,0.72 0.45,0.3 0.91,0.63 1.4,0.86 0.06,0.03 0.14,-0.05 0.08,-0.1 -0.41,-0.35 -0.9,-0.63 -1.35,-0.92 l -1.13,-0.72 c 0.15,-0.27 0.29,-0.54 0.4,-0.83 0.14,-0.17 0.23,-0.37 0.28,-0.58 0.13,0.35 0.33,0.67 0.61,0.91 0.02,0.01 0.04,0.03 0.05,0.04 -0.01,0.08 0.05,0.18 0.16,0.16 0.02,0 0.03,-0.01 0.05,-0.01 0.27,0.17 0.58,0.3 0.89,0.29 0.07,0 0.08,-0.1 0.02,-0.11 -0.19,-0.05 -0.37,-0.1 -0.55,-0.18 -0.02,-0.01 -0.04,-0.03 -0.06,-0.04 0.38,-0.06 0.77,-0.12 1.15,-0.18 0.25,-0.04 0.5,-0.08 0.75,-0.11 0.08,-0.01 0.15,-0.02 0.23,-0.04 -0.56,2.15 -1.1,4.3 -1.66,6.45 -0.22,0.82 -0.43,1.64 -0.66,2.46 -0.05,0.18 -0.03,0.34 0.02,0.47 -0.02,0.03 -0.05,0.05 -0.07,0.08 0.03,-0.2 0.02,-0.4 0.02,-0.6 0,-0.23 -0.01,-0.46 -0.01,-0.69 -0.01,-0.47 -0.01,-0.94 -0.01,-1.41 0,-0.18 -0.28,-0.18 -0.28,0 0,0.47 -0.01,0.94 -0.01,1.41 0,0.23 -0.01,0.46 -0.01,0.69 0,0.24 -0.02,0.47 0.03,0.7 0.01,0.06 0.06,0.09 0.12,0.1 -0.11,0.15 -0.2,0.31 -0.28,0.47 0,-0.21 -0.04,-0.43 -0.08,-0.63 -0.05,-0.33 -0.11,-0.66 -0.16,-0.99 -0.11,-0.65 -0.21,-1.3 -0.32,-1.95 -0.03,-0.16 -0.27,-0.09 -0.25,0.07 0.1,0.64 0.19,1.28 0.29,1.91 l 0.15,0.96 c 0.04,0.29 0.05,0.64 0.2,0.89 0.01,0.01 0.03,0.01 0.04,0.02 -0.06,0.13 -0.12,0.27 -0.16,0.4 0,0.01 0,0.02 -0.01,0.03 -0.23,-0.04 -0.44,-0.08 -0.64,-0.13 z m -1.2,-0.26 c -0.03,-0.08 -0.05,-0.16 -0.08,-0.24 -0.11,-0.38 -0.21,-0.76 -0.28,-1.15 -0.15,-0.81 -0.22,-1.63 -0.2,-2.45 0,-0.16 -0.24,-0.16 -0.25,0 -0.04,0.83 0.01,1.66 0.15,2.48 0.07,0.4 0.15,0.8 0.26,1.2 0.01,0.02 0.01,0.05 0.02,0.08 -0.28,-0.06 -0.55,-0.13 -0.83,-0.19 0,-0.09 -0.01,-0.19 -0.01,-0.28 -0.01,-0.4 -0.03,-0.8 -0.04,-1.2 -0.03,-0.8 -0.07,-1.6 -0.1,-2.4 0,-0.1 -0.15,-0.1 -0.16,0 0,0 0,0 0,0 0.01,-0.18 0,-0.36 0,-0.54 0,-0.2 0,-0.41 0,-0.61 0.76,0.15 1.52,0.31 2.28,0.44 0.02,0.92 0.04,1.85 0.06,2.77 0.01,0.47 0.02,0.94 0.03,1.41 0.01,0.27 -0.02,0.6 0.02,0.9 -0.28,-0.09 -0.57,-0.16 -0.87,-0.22 z m -5.77,-19.4 c -0.78,0.02 -1.56,0.22 -2.3,0.54 0.13,-0.09 0.25,-0.18 0.38,-0.26 0.53,-0.3 1.1,-0.53 1.69,-0.68 0.17,-0.04 0.1,-0.31 -0.07,-0.27 -0.61,0.15 -1.21,0.38 -1.76,0.7 -0.18,0.1 -0.35,0.22 -0.52,0.34 0.11,-0.29 0.21,-0.59 0.32,-0.88 0.78,-0.53 1.67,-0.87 2.64,-0.9 0.12,0 0.12,-0.18 0,-0.18 -0.87,-0.01 -1.73,0.24 -2.5,0.67 0.02,-0.05 0.03,-0.09 0.05,-0.14 0.04,-0.05 0.08,-0.11 0.12,-0.15 0.19,-0.22 0.4,-0.44 0.62,-0.63 0.46,-0.4 0.99,-0.72 1.56,-0.94 0.07,-0.03 0.04,-0.14 -0.03,-0.11 -0.59,0.21 -1.13,0.51 -1.62,0.9 -0.18,0.15 -0.34,0.32 -0.5,0.48 0.2,-0.58 0.38,-1.17 0.55,-1.75 0.14,-0.13 0.27,-0.27 0.42,-0.38 0.55,-0.41 1.18,-0.72 1.85,-0.9 0.09,-0.02 0.05,-0.15 -0.04,-0.13 -0.7,0.16 -1.37,0.46 -1.95,0.89 -0.07,0.05 -0.12,0.11 -0.18,0.17 0.07,-0.26 0.15,-0.52 0.21,-0.79 0.12,-0.2 0.24,-0.41 0.38,-0.6 0.11,-0.1 0.22,-0.2 0.34,-0.28 0.59,-0.41 1.31,-0.64 2.04,-0.62 0.14,0 0.17,-0.23 0.03,-0.24 -0.51,-0.07 -1.01,0 -1.49,0.17 0.44,-0.37 0.94,-0.68 1.52,-0.85 0.65,-0.19 1.34,-0.21 2,-0.06 0.34,0.08 0.65,0.2 0.97,0.36 0.23,0.12 0.44,0.27 0.66,0.42 -0.02,0.12 -0.05,0.23 -0.06,0.34 -0.04,0.42 -0.01,0.84 0.05,1.26 0,0.02 0.01,0.04 0.01,0.06 -0.02,-0.02 -0.04,-0.04 -0.06,-0.05 -0.31,-0.21 -0.67,-0.33 -1.04,-0.34 -0.1,0 -0.1,0.16 0,0.16 0.34,0.01 0.67,0.13 0.95,0.33 0.08,0.05 0.14,0.13 0.2,0.19 0.01,0.07 0.02,0.14 0.04,0.21 0.05,0.22 0.11,0.5 0.25,0.68 0.1,0.14 0.24,0.24 0.4,0.28 0.4,0.57 0.93,1.04 1.54,1.43 -0.07,0.23 -0.14,0.46 -0.18,0.71 -0.09,0.45 -0.15,0.9 -0.23,1.35 -0.15,0.93 -0.28,1.87 -0.42,2.81 -0.01,0.1 -0.03,0.19 -0.04,0.29 -0.06,-0.12 -0.15,-0.22 -0.21,-0.33 0.03,-0.02 0.07,-0.04 0.07,-0.08 0,-0.43 -0.28,-0.92 -0.5,-1.28 -0.25,-0.41 -0.57,-0.78 -0.93,-1.09 -0.72,-0.62 -1.61,-0.99 -2.56,-1.05 -0.12,-0.01 -0.11,0.17 0,0.18 0.9,0.08 1.75,0.49 2.43,1.08 0.33,0.29 0.62,0.63 0.85,1 0.12,0.19 0.22,0.4 0.31,0.61 0.03,0.07 0.05,0.15 0.08,0.23 -0.8,-1.12 -1.93,-1.99 -3.22,-2.47 -0.94,-0.35 -2.05,-0.5 -3.12,-0.41 z m 9.88,-0.48 c -0.02,0.07 -0.05,0.14 -0.07,0.22 -0.29,0.09 -0.58,0.18 -0.88,0.24 -0.13,0.02 -0.26,0.05 -0.4,0.07 0.03,-0.24 0.06,-0.48 0.09,-0.72 0.01,-0.11 0.01,-0.21 0.01,-0.32 0.41,0.19 0.83,0.36 1.25,0.51 z m 1.01,8.71 c -0.43,-0.03 -0.84,-0.22 -1.18,-0.5 0.15,-0.02 0.3,-0.03 0.45,-0.05 0.31,-0.04 0.63,-0.06 0.92,-0.18 -0.07,0.24 -0.13,0.48 -0.19,0.73 z m -2.82,-1.13 c -0.01,-0.08 -0.13,-0.08 -0.13,0 0.01,0.18 0.06,0.34 0.12,0.51 -0.19,0.02 -0.38,0.05 -0.56,0.07 0,-0.01 0,-0.02 0.01,-0.04 l 0.19,-1.36 c 0,-0.02 0.01,-0.04 0.01,-0.06 0.23,-0.02 0.46,-0.04 0.7,-0.06 0,0.11 0,0.21 0.04,0.31 0.02,0.05 0.12,0.08 0.13,0 0.01,-0.11 0.02,-0.22 0.02,-0.32 0.06,0 0.11,-0.01 0.17,-0.01 0.01,0.49 0.2,0.95 0.51,1.32 -0.08,0.01 -0.15,0.02 -0.23,0.03 -0.28,0.04 -0.56,0.07 -0.83,0.11 -0.09,-0.16 -0.14,-0.33 -0.15,-0.5 z m 0.05,1.91 c -0.3,-0.26 -0.53,-0.59 -0.64,-0.97 -0.01,-0.02 -0.03,-0.01 -0.04,-0.02 0,-0.01 0.01,-0.02 0.01,-0.04 0.25,-0.03 0.49,-0.06 0.74,-0.09 0.14,0.24 0.32,0.46 0.55,0.63 0.19,0.15 0.4,0.26 0.63,0.33 -0.38,0.07 -0.76,0.14 -1.14,0.2 -0.04,0 -0.08,-0.01 -0.11,-0.04 z m -0.37,-3.12 c 0.03,-0.21 0.06,-0.42 0.09,-0.63 0.04,0 0.08,0.01 0.11,0.01 -0.04,0.07 0.04,0.16 0.12,0.11 0.04,-0.03 0.07,-0.07 0.1,-0.1 0.14,0.01 0.27,0.02 0.41,0.03 -0.04,0.08 -0.08,0.16 -0.11,0.24 -0.03,0.08 -0.04,0.17 -0.05,0.26 -0.23,0.03 -0.45,0.06 -0.67,0.08 z m 1.64,-2.37 c -0.17,0 -0.33,0 -0.5,0.01 -0.1,0 -0.2,0 -0.3,0 0.09,-0.06 0.19,-0.13 0.28,-0.19 0.24,-0.17 0.48,-0.34 0.72,-0.51 0,0.2 0.01,0.39 0.01,0.59 -0.01,0.01 -0.02,0 -0.03,0.01 -0.03,0.03 -0.05,0.06 -0.08,0.08 -0.03,0.02 -0.07,0.01 -0.1,0.01 z m -1.12,-1.37 c 0.06,0 0.12,-0.01 0.17,-0.01 0,0 0,0 0,0 -0.07,0.08 -0.12,0.17 -0.18,0.26 -0.01,0.02 -0.02,0.04 -0.03,0.06 0.01,-0.09 0.02,-0.2 0.04,-0.31 z m -0.19,1.39 c 0,-0.02 0.01,-0.04 0.01,-0.07 0.03,-0.23 0.06,-0.46 0.09,-0.69 0.03,0 0.05,0.01 0.07,-0.01 0.07,-0.07 0.13,-0.14 0.2,-0.22 0.07,-0.07 0.15,-0.13 0.22,-0.2 0.1,-0.09 0.21,-0.17 0.32,-0.25 0.09,0 0.18,-0.01 0.27,-0.01 0.11,-0.01 0.21,-0.01 0.32,-0.02 0,0.14 0,0.29 0,0.43 0,0.03 0,0.05 0,0.08 0,0 0,0 -0.01,0 -0.27,0.19 -0.55,0.39 -0.82,0.58 -0.13,0.09 -0.27,0.19 -0.39,0.29 -0.03,0.02 -0.06,0.05 -0.09,0.07 -0.06,0.02 -0.13,0.02 -0.19,0.02 z m 1.51,-1.77 c -0.01,0 -0.02,0 -0.04,0 0.01,-0.01 0.02,-0.02 0.04,-0.02 0,0 0,0.01 0,0.02 z m -0.08,2.08 c 0.03,0 0.06,0 0.1,0 0,0.1 0,0.2 0,0.31 0.01,0.28 0.03,0.57 0.05,0.85 0,0.04 0.01,0.09 0.01,0.13 -0.24,-0.03 -0.48,-0.05 -0.71,-0.06 0.04,-0.06 0.07,-0.12 0.12,-0.17 0.09,-0.1 -0.06,-0.24 -0.15,-0.15 -0.09,0.09 -0.16,0.2 -0.22,0.31 -0.1,-0.01 -0.2,-0.01 -0.3,-0.02 0.02,-0.03 0.05,-0.05 0.08,-0.07 0.14,-0.15 0.28,-0.31 0.42,-0.46 0.2,-0.23 0.4,-0.45 0.6,-0.67 z m -0.83,1.79 c 0.03,-0.11 0.08,-0.21 0.13,-0.3 0.28,0.02 0.57,0.04 0.86,0.05 -0.02,0.1 -0.03,0.21 -0.02,0.31 -0.25,0.03 -0.5,0.05 -0.75,0.08 -0.04,-0.05 -0.1,-0.06 -0.12,0.01 0,0 0,0 0,0 -0.04,0 -0.08,0.01 -0.12,0.01 0,-0.05 0,-0.11 0.02,-0.16 z m 0.23,0.48 c 0.26,-0.02 0.52,-0.05 0.78,-0.07 0,0 0.01,0 0.01,0 0.05,0.23 0.13,0.45 0.25,0.65 0.08,0.14 0.19,0.27 0.3,0.38 0.08,0.08 0.16,0.15 0.25,0.21 0.01,0.01 0.02,0.01 0.03,0.01 -0.14,0.02 -0.28,0.04 -0.42,0.05 -0.23,0.03 -0.46,0.06 -0.69,0.09 -0.32,-0.38 -0.51,-0.84 -0.51,-1.32 z m 0.69,-4.75 c -0.04,0.01 -0.09,0.02 -0.13,0.04 -0.2,0.08 -0.39,0.18 -0.56,0.31 -0.04,0.03 -0.07,0.07 -0.11,0.1 -0.17,0.01 -0.33,0.02 -0.5,0.03 0.03,-0.22 0.06,-0.44 0.09,-0.66 0.03,0 0.05,0.01 0.08,0.01 0.25,0 0.49,-0.03 0.73,-0.06 0.14,-0.02 0.27,-0.06 0.4,-0.09 0.01,0.1 0.01,0.21 0,0.32 z m -1.57,2.51 c 0,0 0.01,0 0,0 0.04,-0.01 0.06,-0.03 0.09,-0.05 0.26,0 0.51,0.01 0.77,0.01 0.1,0 0.21,0 0.31,0 -0.15,0.17 -0.31,0.34 -0.46,0.5 -0.14,0.15 -0.27,0.3 -0.41,0.45 -0.07,0.08 -0.14,0.16 -0.21,0.24 -0.08,0 -0.17,-0.01 -0.25,-0.01 0.05,-0.38 0.11,-0.76 0.16,-1.14 z m 2.76,4.72 c -0.12,0.02 -0.25,0.05 -0.35,0.07 -0.21,0.04 -0.42,0.08 -0.64,0.12 -0.09,-0.01 -0.18,-0.01 -0.27,-0.04 -0.25,-0.07 -0.48,-0.18 -0.69,-0.34 -0.2,-0.15 -0.36,-0.33 -0.49,-0.53 0.24,-0.03 0.48,-0.06 0.73,-0.09 0.16,-0.02 0.32,-0.04 0.47,-0.06 0.37,0.32 0.83,0.52 1.33,0.53 -0.03,0.12 -0.06,0.23 -0.09,0.34 z m 1.73,-6.69 c -0.01,-0.16 -0.02,-0.32 -0.03,-0.47 l -0.06,-1.13 c 0.16,0.04 0.31,0.09 0.47,0.13 -0.13,0.48 -0.26,0.98 -0.38,1.47 z m 0.77,-2.98 c -0.01,0 -0.01,-0.01 0,0 -0.03,-0.13 -0.06,-0.25 -0.08,-0.37 -0.06,-0.25 -0.11,-0.51 -0.17,-0.76 -0.04,-0.18 -0.31,-0.1 -0.27,0.07 0.06,0.25 0.11,0.51 0.17,0.76 l 0.08,0.37 c 0.02,0.08 0.04,0.16 0.06,0.25 -0.28,-0.07 -0.56,-0.14 -0.85,-0.21 0,-0.08 -0.01,-0.16 -0.01,-0.22 0,-0.2 0,-0.4 0,-0.6 0,-0.39 0,-0.79 -0.01,-1.18 0,-0.16 -0.25,-0.16 -0.25,0 0,0.39 0,0.79 -0.01,1.18 0,0.19 0,0.39 0,0.58 0,0.05 0,0.11 -0.01,0.17 -0.37,-0.09 -0.74,-0.19 -1.12,-0.3 -0.01,-0.11 -0.02,-0.22 -0.03,-0.34 -0.03,-0.22 -0.05,-0.43 -0.08,-0.65 -0.01,-0.05 -0.04,-0.09 -0.09,-0.09 -0.04,0 -0.1,0.04 -0.09,0.09 0.03,0.22 0.06,0.44 0.08,0.66 0.01,0.09 0.03,0.18 0.04,0.27 -0.7,-0.21 -1.39,-0.45 -2.02,-0.76 0,-0.02 0,-0.05 0,-0.07 0,-0.15 -0.09,-0.23 -0.19,-0.29 -0.01,-0.03 -0.02,-0.07 -0.03,-0.1 -0.05,-0.19 -0.09,-0.39 -0.12,-0.59 -0.06,-0.41 -0.06,-0.83 -0.01,-1.24 0.01,-0.11 -0.16,-0.11 -0.17,0 -0.05,0.43 -0.05,0.86 0,1.28 0.03,0.2 0.06,0.4 0.12,0.59 0,0 0,0.01 0,0.01 -0.06,0.01 -0.12,0.03 -0.17,0.07 -0.44,-0.27 -0.84,-0.57 -1.18,-0.94 0.01,-0.05 0.02,-0.09 0.02,-0.14 -0.04,-0.38 -0.21,-0.74 -0.28,-1.12 -0.05,-0.29 -0.07,-0.63 -0.06,-0.99 0,-0.06 0.01,-0.11 0.01,-0.17 0.12,0.13 0.26,0.25 0.4,0.37 0.01,0.19 0.03,0.37 0.05,0.56 0.03,0.28 0.04,0.56 0.11,0.83 0.04,0.15 0.26,0.11 0.26,-0.04 0.01,-0.27 -0.03,-0.54 -0.06,-0.81 -0.01,-0.09 -0.02,-0.19 -0.03,-0.28 1.02,0.76 2.31,1.27 3.54,1.65 0.96,0.3 1.93,0.56 2.9,0.81 -0.16,0.56 -0.31,1.13 -0.45,1.69 z m 1.27,-5.01 c -0.01,0 -0.03,-0.01 -0.04,-0.01 -0.39,-0.09 -0.88,-0.16 -1.19,-0.42 -0.64,-0.54 0.44,-1 0.83,-1.23 0.3,-0.17 0.62,-0.31 0.94,-0.46 -0.19,0.71 -0.36,1.41 -0.54,2.12 z m 4.58,-22.41 c 0.03,0 0.07,0.01 0.1,-0.01 0.04,-0.02 0.07,-0.04 0.11,-0.06 0.02,-0.01 0.04,-0.02 0.06,-0.03 0,0 0,0 0,0 0.01,0 0.02,-0.01 0.04,-0.01 0.08,-0.03 0.17,-0.05 0.26,-0.07 0,0 0,0 0,0 0.01,0 0.02,0 0.02,0 0.02,0 0.05,0 0.07,-0.01 0.05,0 0.09,0 0.14,0 0.08,0 0.16,0.01 0.24,0.01 -0.04,0.16 -0.08,0.32 -0.12,0.47 -0.04,0.01 -0.07,0.01 -0.11,0.02 -0.21,0.04 -0.42,0.08 -0.63,0.12 -0.08,0.01 -0.12,0.11 -0.1,0.18 0.02,0.08 0.1,0.11 0.18,0.1 0.19,-0.03 0.39,-0.07 0.58,-0.1 -0.07,0.26 -0.13,0.53 -0.2,0.79 -0.27,-0.04 -0.54,-0.04 -0.82,0.01 -0.06,0.01 -0.11,0.03 -0.17,0.04 0.11,-0.48 0.23,-0.97 0.35,-1.45 z m -0.67,6.69 c -0.01,-0.02 -0.01,-0.04 -0.03,-0.05 -0.07,-0.05 -0.16,-0.05 -0.25,-0.05 -0.08,-0.01 -0.15,-0.01 -0.23,-0.01 h -0.39 c 0.03,-0.15 0.07,-0.29 0.1,-0.44 0.26,-0.08 0.52,-0.16 0.79,-0.24 0.07,-0.02 0.15,-0.05 0.22,-0.07 -0.07,0.29 -0.14,0.58 -0.21,0.86 z m -0.98,0.22 c 0.01,0 0.01,0.01 0.02,0.01 h 0.45 c 0.07,0 0.15,0 0.22,-0.01 0.08,-0.01 0.17,0 0.24,-0.05 -0.02,0.07 -0.04,0.15 -0.05,0.22 -0.12,0.05 -0.24,0.11 -0.36,0.16 -0.22,0.1 -0.45,0.2 -0.67,0.29 0.05,-0.2 0.1,-0.41 0.15,-0.62 z m 0.1,3.33 c -0.01,0 -0.01,0 0,0 -0.07,-0.01 -0.13,-0.02 -0.2,-0.03 l -0.38,-0.05 c -0.04,-0.01 -0.08,-0.01 -0.12,0.02 -0.03,0.02 -0.06,0.06 -0.07,0.1 -0.02,0.08 0.02,0.18 0.11,0.2 l 0.35,0.05 c -0.01,0.01 -0.03,0.01 -0.04,0.02 -0.22,0.09 -0.44,0.18 -0.67,0.27 0.08,-0.35 0.17,-0.7 0.25,-1.05 0.14,-0.06 0.28,-0.12 0.42,-0.16 0.12,-0.03 0.23,-0.05 0.35,-0.06 0.06,-0.01 0.12,-0.01 0.18,-0.01 -0.07,0.23 -0.13,0.46 -0.18,0.7 z m -1.13,0.98 c 0.12,-0.04 0.23,-0.08 0.35,-0.12 -0.03,0.02 -0.06,0.03 -0.09,0.05 -0.09,0.05 -0.19,0.11 -0.28,0.16 0.01,-0.03 0.01,-0.06 0.02,-0.09 z m -0.22,0.98 c 0.01,0.01 0.02,0.02 0.03,0.02 0.13,0.02 0.25,0.04 0.38,0.06 0.06,0.01 0.11,0.01 0.17,0.02 0.01,0 0.01,0 0.02,0 -0.13,0.02 -0.26,0.06 -0.38,0.1 -0.1,0.03 -0.2,0.1 -0.3,0.14 0.03,-0.11 0.05,-0.23 0.08,-0.34 z m 0.84,0.08 c -0.03,0 -0.07,0.01 -0.1,0.01 0.02,-0.01 0.05,-0.01 0.07,-0.02 0.03,-0.02 0.05,-0.05 0.06,-0.09 -0.02,0.04 -0.02,0.07 -0.03,0.1 z m -1.23,4.93 c -0.26,-0.01 -0.53,-0.01 -0.79,0.01 0.08,-0.23 0.15,-0.46 0.21,-0.7 0,0 0,0 0,0 0.02,-0.01 0.04,-0.02 0.05,-0.04 0.04,-0.02 0.08,-0.05 0.12,-0.07 0.02,-0.01 0.04,-0.02 0.06,-0.03 0.01,0 0.02,-0.01 0.03,-0.01 0.01,0 0.01,0 0.01,0 0,0 0,0 0,0 0,0 0.04,-0.01 0.04,-0.02 0.01,0 0.01,-0.01 0.02,-0.01 0.02,-0.01 0.04,-0.02 0.07,-0.02 0.04,-0.01 0.09,-0.03 0.13,-0.04 0.04,-0.01 0.09,-0.02 0.13,-0.03 0.02,0 0.04,-0.01 0.06,-0.01 0.05,-0.01 0.07,-0.05 0.1,-0.08 0.03,-0.04 0.02,-0.12 -0.02,-0.15 -0.05,-0.05 -0.11,-0.06 -0.19,-0.06 -0.06,0 -0.12,0.01 -0.18,0.02 -0.11,0.02 -0.21,0.05 -0.31,0.1 -0.01,0 -0.02,0.01 -0.03,0.02 0.06,-0.27 0.12,-0.54 0.18,-0.81 0.01,-0.01 0.02,0 0.03,-0.01 0.04,-0.04 0.08,-0.07 0.12,-0.1 0.02,0.11 0.12,0.17 0.22,0.15 0.06,-0.01 0.11,-0.03 0.17,-0.04 0.03,0.02 0.06,0.05 0.1,0.05 0.04,0 0.08,0 0.12,0 -0.13,0.61 -0.29,1.25 -0.45,1.88 z m 0.57,-2.28 c -0.04,0 -0.08,-0.01 -0.11,-0.01 -0.06,-0.03 -0.14,-0.04 -0.21,0 0,0 0,0 0,0 -0.03,0 -0.05,0 -0.08,0.01 0.05,-0.03 0.1,-0.06 0.16,-0.09 0.02,-0.01 0.05,-0.02 0.07,-0.03 0,0 0.02,-0.01 0.03,-0.01 0.01,-0.01 0.03,-0.01 0.04,-0.02 0.05,-0.02 0.1,-0.04 0.15,-0.05 -0.02,0.06 -0.03,0.13 -0.05,0.2 z m 0.16,-0.64 c -0.06,0 -0.13,0.02 -0.19,0.03 -0.14,0.04 -0.28,0.1 -0.41,0.16 -0.11,0.05 -0.2,0.14 -0.31,0.22 0.03,-0.15 0.07,-0.31 0.1,-0.46 0.05,0.04 0.12,0.06 0.18,0.02 0.17,-0.09 0.33,-0.18 0.5,-0.28 0.08,-0.05 0.15,-0.1 0.23,-0.16 0,0 0,0 0.01,-0.01 -0.03,0.17 -0.07,0.32 -0.11,0.48 z m 0.2,-0.79 c -0.08,0.02 -0.15,0.06 -0.23,0.09 -0.09,0.04 -0.17,0.07 -0.26,0.11 -0.15,0.08 -0.3,0.16 -0.44,0.25 0.07,-0.31 0.14,-0.61 0.21,-0.92 0.15,-0.08 0.3,-0.15 0.46,-0.2 0.15,-0.04 0.3,-0.06 0.45,-0.08 -0.07,0.24 -0.13,0.5 -0.19,0.75 z m 0.33,-1.35 c 0,-0.04 -0.01,-0.08 -0.04,-0.11 -0.04,-0.04 -0.07,-0.06 -0.12,-0.08 -0.03,-0.01 -0.05,-0.01 -0.08,-0.01 -0.06,-0.01 -0.11,-0.02 -0.17,-0.03 -0.11,-0.02 -0.23,-0.03 -0.34,-0.05 -0.02,0 -0.04,0.01 -0.06,0.01 0.02,-0.07 0.03,-0.13 0.05,-0.2 0.05,0.02 0.1,0.03 0.16,0 0.13,-0.07 0.26,-0.15 0.39,-0.22 0.06,-0.04 0.13,-0.07 0.19,-0.11 0.07,-0.04 0.13,-0.1 0.2,-0.15 0.05,-0.04 0.05,-0.13 0.02,-0.18 -0.02,-0.03 -0.04,-0.05 -0.07,-0.06 0.04,-0.01 0.08,-0.03 0.12,-0.04 0.02,-0.01 0.05,-0.02 0.07,-0.02 -0.11,0.41 -0.21,0.83 -0.32,1.25 z m 0.75,-3.03 c -0.23,-0.01 -0.47,0.02 -0.7,0.07 -0.09,0.02 -0.16,0.07 -0.25,0.1 0.05,-0.21 0.1,-0.41 0.15,-0.62 0.08,0.01 0.16,0.02 0.25,0.04 0.07,0.01 0.15,0.01 0.22,0.01 0.07,0 0.14,0.01 0.21,-0.01 0.09,-0.03 0.1,-0.14 0.03,-0.2 -0.06,-0.04 -0.13,-0.05 -0.19,-0.07 -0.06,-0.02 -0.12,-0.04 -0.19,-0.05 -0.08,-0.01 -0.17,-0.02 -0.25,-0.04 0.03,-0.12 0.06,-0.25 0.09,-0.37 0.01,0 0.02,0 0.03,0 0.31,-0.13 0.61,-0.26 0.92,-0.39 0.02,-0.01 0.05,-0.02 0.07,-0.03 -0.12,0.51 -0.26,1.04 -0.39,1.56 z m 2.86,-11.52 c -0.08,0.01 -0.17,0.01 -0.25,0.02 -0.19,0.02 -0.38,0.04 -0.57,0.06 -0.09,0.01 -0.16,0.07 -0.16,0.16 0,0.08 0.07,0.17 0.16,0.16 l 0.58,-0.06 c 0.05,-0.01 0.11,-0.01 0.16,-0.02 -0.03,0.13 -0.06,0.26 -0.1,0.39 -0.04,0.01 -0.08,0.03 -0.11,0.04 -0.16,0.06 -0.32,0.11 -0.48,0.17 -0.09,0.03 -0.15,0.12 -0.12,0.22 0.03,0.09 0.12,0.15 0.22,0.12 l 0.4,-0.13 c -0.06,0.26 -0.13,0.52 -0.19,0.77 -0.01,-0.01 -0.03,-0.01 -0.04,-0.02 -0.18,-0.07 -0.39,-0.07 -0.58,-0.04 -0.14,0.02 -0.27,0.09 -0.4,0.14 0.23,-0.96 0.46,-1.92 0.69,-2.88 0.04,0.02 0.08,0.03 0.12,0.01 0.18,-0.07 0.37,-0.15 0.55,-0.22 0.15,-0.06 0.3,-0.12 0.44,-0.2 -0.11,0.44 -0.22,0.88 -0.32,1.31 z m 0.4,-1.64 c -0.02,-0.01 -0.04,-0.02 -0.07,-0.02 -0.21,0.02 -0.41,0.13 -0.61,0.21 -0.14,0.06 -0.29,0.12 -0.43,0.18 0.03,-0.12 0.06,-0.23 0.08,-0.35 0.06,0.02 0.12,0.01 0.17,-0.03 0.14,-0.13 0.35,-0.21 0.54,-0.21 0.12,0 0.19,0 0.3,0.04 0.02,0.01 0.04,0.01 0.06,0.02 -0.01,0.05 -0.03,0.1 -0.04,0.16 z m 0.5,-2.03 c -0.03,0 -0.05,0.01 -0.08,0.02 -0.09,0.02 -0.18,0.04 -0.28,0.06 -0.18,0.04 -0.37,0.08 -0.55,0.11 -0.09,0.02 -0.15,0.13 -0.12,0.22 0.03,0.1 0.12,0.14 0.22,0.12 0.18,-0.04 0.37,-0.07 0.55,-0.11 0.06,-0.01 0.11,-0.02 0.17,-0.03 -0.1,0.39 -0.19,0.78 -0.29,1.17 -0.11,-0.04 -0.23,-0.08 -0.35,-0.08 -0.25,-0.01 -0.49,0.08 -0.7,0.21 0.19,-0.78 0.37,-1.57 0.56,-2.35 0.02,0 0.04,0.01 0.06,0.01 0.21,-0.04 0.43,-0.07 0.64,-0.11 0.13,-0.02 0.25,-0.05 0.38,-0.08 -0.07,0.28 -0.14,0.56 -0.21,0.84 z m 0.29,-1.2 c -0.18,0.02 -0.37,0.04 -0.55,0.07 -0.18,0.03 -0.35,0.06 -0.53,0.09 0.13,-0.54 0.26,-1.09 0.39,-1.63 0.04,-0.18 0.08,-0.35 0.13,-0.53 0.19,-0.07 0.38,-0.1 0.58,-0.08 0.09,0.01 0.21,0.04 0.32,0.07 0.04,0.01 0.09,0.03 0.13,0.04 -0.04,0.18 -0.09,0.36 -0.13,0.54 -0.01,0 -0.01,0 -0.02,0 -0.07,0.02 -0.14,0.04 -0.22,0.05 -0.15,0.04 -0.3,0.08 -0.45,0.11 -0.11,0.03 -0.18,0.15 -0.15,0.26 0.04,0.11 0.14,0.18 0.26,0.15 0.15,-0.04 0.3,-0.08 0.45,-0.11 0,0 0.01,0 0.01,0 -0.06,0.33 -0.14,0.65 -0.22,0.97 z m 0.56,-2.3 c -0.03,-0.01 -0.04,-0.03 -0.07,-0.05 -0.15,-0.06 -0.29,-0.09 -0.45,-0.1 -0.17,-0.01 -0.34,0.01 -0.5,0.06 0.06,-0.23 0.11,-0.46 0.17,-0.69 0.03,0.03 0.07,0.05 0.12,0.05 0.31,-0.02 0.62,-0.03 0.93,-0.06 -0.07,0.26 -0.14,0.52 -0.2,0.79 z m 0.57,-4.44 c 0.17,-0.01 0.34,-0.02 0.51,-0.03 -0.02,0.08 -0.04,0.15 -0.06,0.23 -0.01,0 -0.02,0 -0.03,0.01 -0.07,0.03 -0.15,0.06 -0.22,0.09 -0.13,0.06 -0.26,0.11 -0.39,0.17 -0.06,0.02 -0.07,0.1 -0.06,0.16 -0.01,0 -0.02,0 -0.02,0 -0.01,-0.22 -0.02,-0.43 -0.03,-0.65 0.1,0.01 0.2,0.03 0.3,0.02 z m -0.27,0.98 0.33,-0.04 c -0.11,0.04 -0.22,0.07 -0.33,0.11 0,-0.03 0,-0.05 0,-0.07 z m -0.78,1.81 c 0.24,-0.04 0.54,-0.05 0.75,-0.19 0.11,-0.07 0.18,-0.16 0.24,-0.26 -0.07,0.31 -0.15,0.61 -0.22,0.92 -0.11,0.01 -0.22,0.01 -0.33,0.02 -0.23,0.02 -0.46,0.04 -0.69,0.07 -0.02,0 -0.03,0.02 -0.05,0.02 0.04,-0.18 0.09,-0.37 0.13,-0.55 0.05,-0.01 0.11,-0.02 0.17,-0.03 z m 1.06,-0.74 c 0,-0.04 0.03,-0.08 0.02,-0.13 -0.02,-0.18 -0.13,-0.36 -0.29,-0.48 0.15,-0.04 0.29,-0.08 0.44,-0.12 -0.05,0.24 -0.11,0.48 -0.17,0.73 z m 1.06,-4.42 c 0,-0.01 0,-0.03 0,-0.04 0.01,-0.44 0.02,-0.88 0.03,-1.33 0,-0.15 -0.23,-0.15 -0.23,0 -0.02,0.43 -0.03,0.87 -0.05,1.3 -0.01,0.3 -0.03,0.61 -0.03,0.92 -0.06,0.01 -0.11,0.02 -0.17,0.02 0,-0.23 0,-0.46 0,-0.69 0,-0.55 -0.01,-1.11 -0.01,-1.66 0,-0.13 -0.2,-0.13 -0.21,0 -0.01,0.55 -0.02,1.11 -0.03,1.66 0,0.24 -0.01,0.48 -0.01,0.72 -0.09,0.01 -0.18,0.02 -0.27,0.04 0,-0.03 0,-0.05 0,-0.08 0,-0.26 -0.01,-0.52 -0.02,-0.78 -0.01,-0.25 -0.03,-0.5 -0.04,-0.75 -0.01,-0.25 -0.02,-0.51 -0.07,-0.76 -0.04,-0.19 -0.29,-0.12 -0.31,0.04 -0.03,0.25 0,0.5 0.01,0.75 0.01,0.25 0.02,0.5 0.04,0.75 0.02,0.25 0.03,0.5 0.06,0.75 0,0.04 0.01,0.09 0.01,0.13 -0.05,0.01 -0.1,0.03 -0.15,0.04 -0.04,-0.55 -0.08,-1.09 -0.11,-1.63 -0.02,-0.47 -0.05,-0.93 -0.07,-1.4 0.16,0.02 0.31,0.04 0.47,0.04 l 0.56,0.01 c 0.19,0 0.38,0.01 0.56,0.01 0.09,0 0.17,0 0.26,0.01 h 0.13 c 0.03,0 0.06,-0.01 0.09,-0.01 -0.14,0.66 -0.29,1.3 -0.44,1.94 z m 1.24,-5.4 c -0.01,0 -0.01,-0.01 -0.02,-0.01 -0.04,-0.01 -0.09,-0.02 -0.13,-0.03 -0.11,-0.02 -0.21,-0.03 -0.32,-0.03 -0.19,0 -0.37,0.04 -0.55,0.11 0.08,-0.36 0.17,-0.71 0.25,-1.07 0.02,0.09 0.09,0.17 0.19,0.16 0.16,-0.02 0.33,-0.03 0.49,-0.05 0.1,-0.01 0.21,-0.03 0.31,-0.04 -0.07,0.33 -0.14,0.64 -0.22,0.96 z m 0.32,-1.37 c -0.14,0.01 -0.28,0.03 -0.42,0.04 -0.16,0.02 -0.32,0.04 -0.48,0.06 -0.05,0.01 -0.1,0.03 -0.14,0.06 0.06,-0.27 0.13,-0.54 0.19,-0.82 0.06,-0.03 0.12,-0.06 0.18,-0.08 0.09,-0.03 0.19,-0.06 0.29,-0.07 0.01,0 0.01,0 0.02,0 0,0 0.01,0 0.02,0 0.03,0 0.05,-0.01 0.08,-0.01 0.05,0 0.09,0 0.14,0 0.05,0 0.09,0 0.14,0.01 0.03,0 0.05,0 0.08,0.01 -0.03,0 -0.02,0 0.04,0.01 0.01,0 0.03,0 0.04,-0.01 -0.06,0.26 -0.12,0.53 -0.18,0.8 z m 0.27,-1.17 c -0.01,0 -0.01,0 0,0 -0.11,-0.06 -0.26,-0.06 -0.38,-0.06 -0.12,0 -0.24,0.02 -0.35,0.04 -0.1,0.02 -0.18,0.07 -0.28,0.11 0.05,-0.2 0.09,-0.4 0.14,-0.59 0.14,0 0.28,0.01 0.41,0.01 0.08,0 0.16,0 0.23,0 0.1,0 0.2,0.01 0.29,-0.02 0.03,-0.01 0.05,-0.03 0.07,-0.05 -0.05,0.2 -0.09,0.38 -0.13,0.56 z m 0.17,-0.77 c -0.02,-0.05 -0.06,-0.09 -0.12,-0.11 -0.09,-0.03 -0.19,-0.02 -0.28,-0.02 h -0.24 c -0.11,0 -0.21,0 -0.32,0.01 0.06,-0.24 0.11,-0.48 0.17,-0.72 0.06,-0.02 0.11,-0.04 0.17,-0.05 0.01,0 0.03,-0.01 0.04,-0.01 0.02,0 0.04,0 0.05,-0.01 0.04,0 0.08,0 0.12,0 0.02,0 0.04,0 0.07,0 0.01,0 0.04,0 0.05,0 0.01,0 0.02,0 0.03,0.01 0.02,0 0.04,0.01 0.07,0.01 0.11,0.02 0.25,0.1 0.34,0.02 0.07,-0.06 0.1,-0.12 0.09,-0.22 -0.02,-0.14 -0.21,-0.19 -0.33,-0.21 -0.1,-0.02 -0.21,-0.03 -0.31,-0.03 -0.1,0 -0.19,0.05 -0.29,0.07 0.07,-0.3 0.14,-0.59 0.21,-0.89 0.01,0 0.02,0 0.03,0 0.02,0 0.04,0 0.07,0 0.01,0 0.02,0 0.03,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0.01,0 0,0 0,0 0,0 0.01,0 0.02,0.01 0.02,0 0.02,0 0.04,0.01 0.05,0.01 0.02,0 0.04,0.01 0.07,0.02 0.04,0.01 0.09,0.02 0.13,0.04 0.01,0 0.02,0.01 0.03,0.01 0,0 -0.01,0 -0.01,0 0,0 0.01,0 0.01,0 0,0 0,0 0,0 0,0 0,0 0,0 0.02,0.01 0.03,0.02 0.05,0.02 0.04,0.02 0.08,0.04 0.12,0.06 0.02,0.01 0.04,0.02 0.06,0.04 0.01,0.01 0.02,0.01 0.02,0.02 0,0 0,0 0,0 0.02,0.02 0.05,0.05 0.08,0.07 0.04,0.02 0.09,0.03 0.13,0.03 0.01,0 0.02,-0.01 0.02,-0.01 -0.16,0.62 -0.3,1.23 -0.44,1.84 z m 1.3,-9.71 c 0.04,0.02 0.08,0.03 0.12,0.02 0.25,-0.09 0.51,-0.17 0.76,-0.26 0.03,-0.01 0.07,-0.02 0.1,-0.04 -0.04,0.19 -0.09,0.38 -0.13,0.57 -0.02,-0.01 -0.05,-0.01 -0.08,-0.01 -0.02,0 -0.04,0 -0.06,0 -0.1,0.01 -0.2,0.03 -0.29,0.06 -0.18,0.07 -0.35,0.17 -0.48,0.32 -0.03,0.04 -0.04,0.07 -0.05,0.12 -0.03,-0.01 -0.06,-0.02 -0.09,-0.03 0.08,-0.24 0.14,-0.5 0.2,-0.75 z m 0.33,0.89 c 0,0 0.01,-0.01 0.01,-0.01 0.02,-0.01 0.03,-0.02 0.05,-0.03 0.03,-0.02 0.06,-0.03 0.09,-0.04 0.01,0 0.02,-0.01 0.02,-0.01 0.02,-0.01 0.04,-0.01 0.06,-0.02 0.02,0 0.03,-0.01 0.05,-0.01 0,0 0.01,0 0.01,0 0.04,0 0.07,-0.01 0.11,0 0.01,0 0.02,0 0.02,0 -0.02,0.09 -0.04,0.17 -0.06,0.26 -0.13,-0.04 -0.25,-0.08 -0.38,-0.11 0.01,-0.01 0.02,-0.02 0.02,-0.03 z m 0.95,-2.41 c -0.05,0.24 -0.11,0.48 -0.16,0.72 -0.12,0.04 -0.23,0.09 -0.34,0.13 -0.22,0.08 -0.45,0.17 -0.67,0.25 0.05,-0.22 0.1,-0.44 0.16,-0.67 0.13,-0.56 0.27,-1.12 0.4,-1.68 0.02,0.01 0.04,0.03 0.06,0.03 0.16,0.01 0.33,0.01 0.49,0.02 0.08,0 0.16,0 0.23,0.01 0.03,0 0.07,0 0.11,0 -0.03,0.12 -0.05,0.24 -0.08,0.35 -0.13,0.05 -0.26,0.08 -0.39,0.15 -0.21,0.11 -0.4,0.25 -0.58,0.4 -0.17,0.14 0.05,0.42 0.23,0.3 0.09,-0.06 0.19,-0.11 0.28,-0.17 0.03,-0.02 0,0 0.03,-0.02 0.04,-0.02 0.08,-0.03 0.12,-0.05 0,0 0.03,-0.01 0.04,-0.02 0.02,-0.01 0.04,-0.02 0.07,-0.03 0.02,-0.01 0.05,-0.01 0.07,-0.02 -0.03,0.11 -0.05,0.2 -0.07,0.3 z m 3.74,-19.31 c 0.13,0.04 0.26,0.06 0.39,0.08 0.04,0.01 0.09,0.01 0.13,0.01 0.01,0.04 0.03,0.08 0.04,0.12 -0.03,0.11 -0.05,0.22 -0.08,0.34 -0.07,-0.01 -0.14,-0.03 -0.22,-0.03 -0.13,0 -0.25,0.06 -0.37,0.09 0.04,-0.21 0.07,-0.41 0.11,-0.61 z m -0.17,0.95 c 0.14,-0.05 0.29,-0.08 0.44,-0.08 0.05,0 0.09,0 0.13,0.01 -0.03,0.14 -0.07,0.28 -0.1,0.43 h -0.27 c -0.08,0 -0.16,0.07 -0.16,0.16 0,0.08 0.07,0.15 0.16,0.15 0.07,0 0.13,0 0.2,0 -0.02,0.07 -0.03,0.13 -0.05,0.2 -0.2,0.02 -0.39,0.08 -0.57,0.16 0.08,-0.35 0.15,-0.69 0.22,-1.03 z m -0.3,1.42 c 0.02,0 0.04,0.01 0.06,-0.01 0.16,-0.09 0.34,-0.14 0.51,-0.16 -0.06,0.25 -0.12,0.5 -0.17,0.75 -0.11,0.01 -0.21,0.03 -0.32,0.04 -0.1,0.01 -0.19,0.08 -0.19,0.19 0,0.09 0.08,0.2 0.19,0.19 0.08,-0.01 0.15,-0.02 0.23,-0.02 -0.04,0.17 -0.08,0.34 -0.12,0.51 -0.02,0.01 -0.04,0.01 -0.05,0.02 -0.09,0.03 -0.16,0.12 -0.13,0.22 0.02,0.05 0.05,0.09 0.1,0.11 -0.04,0.19 -0.08,0.38 -0.13,0.58 -0.11,0.02 -0.23,0.03 -0.34,0.05 -0.05,0.01 -0.1,0.02 -0.14,0.06 -0.03,0.03 -0.06,0.09 -0.06,0.14 0,0.1 0.09,0.21 0.2,0.2 0.08,-0.01 0.17,-0.02 0.25,-0.03 -0.04,0.2 -0.09,0.39 -0.13,0.59 -0.09,0.02 -0.18,0.03 -0.26,0.05 -0.11,0.03 -0.2,0.09 -0.31,0.14 0.04,-0.19 0.09,-0.38 0.14,-0.57 0.24,-1.02 0.45,-2.03 0.67,-3.05 z m -1.62,9.66 c -0.08,0.02 -0.17,0.04 -0.25,0.06 -0.17,0.05 -0.35,0.09 -0.52,0.14 0.1,-0.33 0.2,-0.66 0.29,-0.99 0.21,-0.04 0.42,-0.09 0.63,-0.13 0.02,0 0.04,-0.01 0.06,-0.01 -0.07,0.31 -0.14,0.62 -0.21,0.93 z m -0.6,2.63 c -0.1,0.04 -0.2,0.07 -0.29,0.11 -0.21,0.08 -0.43,0.15 -0.64,0.23 0.08,-0.33 0.16,-0.66 0.24,-0.99 0.13,-0.06 0.27,-0.12 0.41,-0.16 0.14,-0.04 0.29,-0.07 0.44,-0.08 0.01,0 0.03,0 0.04,0 -0.06,0.29 -0.13,0.59 -0.2,0.89 z m 1.75,-7.78 c -0.19,0.04 -0.38,0.08 -0.58,0.12 0.04,-0.17 0.08,-0.34 0.12,-0.51 0.18,-0.09 0.34,-0.17 0.55,-0.22 0.01,0 0.03,-0.01 0.04,-0.01 -0.04,0.21 -0.09,0.41 -0.13,0.62 z m -1.3,3.21 c 0.13,-0.01 0.26,-0.03 0.39,-0.04 0.07,-0.01 0.14,-0.02 0.22,-0.03 -0.05,0.23 -0.11,0.46 -0.16,0.7 -0.08,0.02 -0.16,0.04 -0.24,0.06 -0.15,0.04 -0.3,0.08 -0.45,0.12 0.07,-0.27 0.14,-0.54 0.21,-0.82 0.01,0 0.02,0.01 0.03,0.01 z m 0.79,-0.9 c -0.03,0.15 -0.07,0.29 -0.1,0.44 -0.04,0 -0.09,0 -0.12,0.01 -0.08,0.01 -0.15,0.02 -0.23,0.03 -0.09,0.02 -0.18,0.03 -0.27,0.05 0.01,-0.03 0.02,-0.07 0.03,-0.1 0.04,-0.14 0.07,-0.28 0.1,-0.42 l 0.64,-0.17 c -0.02,0.05 -0.04,0.11 -0.05,0.16 z m 0.01,-0.6 c -0.17,0.05 -0.34,0.1 -0.51,0.16 0.12,-0.48 0.23,-0.96 0.35,-1.44 0.04,0.04 0.1,0.06 0.16,0.05 0.13,-0.02 0.27,-0.05 0.4,-0.07 -0.09,0.42 -0.18,0.84 -0.28,1.27 -0.03,0.01 -0.07,0.02 -0.12,0.03 z m -2.24,6.62 c 0.02,0.01 0.03,0.01 0.06,0.01 0.24,-0.06 0.48,-0.13 0.73,-0.19 0.04,-0.01 0.09,-0.02 0.13,-0.03 -0.05,0.2 -0.09,0.4 -0.13,0.6 -0.15,0.04 -0.3,0.1 -0.42,0.19 -0.21,0.16 -0.37,0.36 -0.46,0.6 -0.04,0.09 0.04,0.21 0.13,0.23 0.11,0.03 0.19,-0.03 0.23,-0.13 -0.01,0.02 0,0.01 0,-0.01 0,-0.01 0.01,-0.02 0.01,-0.03 0.01,-0.02 0.02,-0.04 0.04,-0.06 0.01,-0.02 0.03,-0.04 0.04,-0.06 0,0 0.01,-0.01 0.01,-0.01 0.01,-0.01 0.01,-0.02 0.01,-0.02 0.03,-0.04 0.07,-0.07 0.1,-0.11 0.01,-0.01 0.02,-0.01 0.02,-0.02 0,0 0.01,-0.01 0.02,-0.02 0,0 0.01,-0.01 0.01,-0.01 0.01,-0.01 0.02,-0.02 0.03,-0.02 0.03,-0.02 0.06,-0.04 0.1,-0.06 -0.13,0.56 -0.26,1.13 -0.38,1.69 -0.06,0 -0.12,0 -0.18,0 -0.08,0 -0.16,0 -0.24,0.01 -0.16,0 -0.32,0.01 -0.48,0.01 0.21,-0.85 0.42,-1.7 0.62,-2.56 z m 1.26,-1.73 c -0.04,0 -0.08,0 -0.12,0 -0.17,0.02 -0.34,0.06 -0.51,0.11 -0.09,0.03 -0.17,0.07 -0.26,0.11 0.05,-0.19 0.09,-0.37 0.14,-0.56 0.07,-0.18 0.14,-0.37 0.2,-0.55 0.24,-0.05 0.48,-0.1 0.72,-0.15 0.02,0 0.04,-0.01 0.06,-0.01 -0.07,0.35 -0.15,0.7 -0.23,1.05 z m 2.79,-13.84 c -0.1,-0.01 -0.2,-0.03 -0.3,-0.02 0.03,-0.17 0.06,-0.34 0.09,-0.52 0.07,0.18 0.15,0.36 0.21,0.54 z m -2.06,4.56 c -0.02,0.03 -0.05,0.04 -0.06,0.08 -1.23,4.48 -2.25,9.02 -3.37,13.53 -0.29,1.17 -0.59,2.35 -0.88,3.52 -3.54,-1.18 -6.94,-2.76 -10.11,-4.74 0.04,-0.03 0.08,-0.05 0.12,-0.09 0.53,-0.58 1.01,-1.18 1.41,-1.86 0.43,-0.74 0.91,-1.43 1.41,-2.12 0.91,-1.27 1.84,-2.51 2.77,-3.76 1.9,-2.55 3.8,-5.1 5.7,-7.66 1.17,-1.57 2.36,-3.13 3.54,-4.69 0.09,0.17 0.2,0.33 0.29,0.5 0.18,0.34 0.35,0.69 0.52,1.04 -0.45,2.08 -0.88,4.17 -1.34,6.25 z m -32.79,4.16 c -0.29,-0.33 -0.56,-0.67 -0.83,-1.02 -0.49,-0.65 -0.94,-1.34 -1.36,-2.05 -0.53,-0.91 -0.98,-1.85 -1.36,-2.82 0.4,0.35 0.83,0.67 1.29,0.95 0.46,0.94 0.94,1.88 1.49,2.76 0.5,0.8 1.07,1.58 1.78,2.21 -0.23,0.1 -0.46,0.2 -0.7,0.3 -0.11,-0.11 -0.22,-0.22 -0.31,-0.33 z m -16.27,-21.64 c 0,-0.01 -0.01,-0.01 -0.01,-0.02 -0.26,-0.33 -0.52,-0.67 -0.82,-0.96 -0.32,-0.31 -0.68,-0.49 -1.03,-0.75 -0.15,-0.12 -0.32,-0.01 -0.4,0.14 -0.04,-0.09 -0.09,-0.19 -0.13,-0.28 0.58,-0.26 1.15,-0.53 1.71,-0.83 0.22,-0.12 0.45,-0.24 0.68,-0.36 0.24,0.35 0.48,0.71 0.75,1.03 0.24,0.29 0.59,0.27 0.86,0.09 0.13,0.08 0.29,0.11 0.46,0.04 1.51,-0.61 3.01,-1.25 4.51,-1.89 0.05,0.37 0.1,0.75 0.16,1.12 -2.24,0.88 -4.49,1.77 -6.74,2.67 z m -0.28,7.81 c -0.47,0.21 -0.95,0.39 -1.43,0.58 -0.14,0.06 -0.37,0.15 -0.58,0.29 -0.09,-0.19 -0.2,-0.38 -0.29,-0.57 -0.19,-0.4 -0.37,-0.81 -0.53,-1.23 -0.3,-0.76 -0.56,-1.53 -0.79,-2.32 -0.22,-0.78 -0.41,-1.58 -0.56,-2.38 -0.12,-0.63 -0.2,-1.27 -0.31,-1.9 0.07,-0.03 0.14,-0.06 0.21,-0.09 0.03,-0.01 0.06,-0.03 0.09,-0.05 0.02,0.06 0.05,0.12 0.07,0.17 0.15,0.41 0.23,0.83 0.36,1.24 -0.1,-0.01 -0.19,0.03 -0.19,0.16 0,0.43 0.03,0.81 0.13,1.23 0.09,0.38 0.2,0.76 0.33,1.13 0.27,0.79 0.55,1.58 0.93,2.34 0.16,0.33 0.34,0.77 0.65,0.98 0.35,0.23 0.73,0.14 1.07,-0.03 0.38,-0.19 0.75,-0.4 1.12,-0.6 0.39,-0.21 0.84,-0.4 1.17,-0.7 0.36,-0.32 0.04,-0.92 -0.39,-0.91 -0.13,-0.26 -0.26,-0.52 -0.39,-0.78 -0.19,-0.37 -0.35,-0.76 -0.53,-1.14 -0.18,-0.38 -0.35,-0.76 -0.53,-1.14 -0.13,-0.26 -0.27,-0.49 -0.42,-0.73 0.11,-0.14 0.16,-0.31 0.09,-0.49 -0.06,-0.16 -0.15,-0.3 -0.23,-0.45 0.06,0.09 0.13,0.18 0.19,0.27 0.46,0.68 0.87,1.4 1.26,2.12 0.67,1.24 1.19,2.54 1.6,3.88 -0.21,0.13 -0.43,0.26 -0.65,0.39 -0.47,0.26 -0.96,0.51 -1.45,0.73 z m -4.05,-11.71 c 0.07,-0.01 0.13,-0.01 0.2,-0.01 0.05,0.26 0.09,0.53 0.16,0.78 0.14,0.53 0.32,1.05 0.51,1.56 0.19,0.53 0.42,1.04 0.65,1.55 0.09,0.19 0.18,0.39 0.28,0.58 -0.06,0.03 -0.13,0.06 -0.19,0.09 -0.11,0.05 -0.22,0.11 -0.32,0.16 -0.03,0.02 -0.07,0.04 -0.1,0.06 -0.13,-0.3 -0.27,-0.61 -0.39,-0.92 -0.18,-0.45 -0.37,-0.91 -0.56,-1.35 -0.33,-0.74 -0.67,-1.52 -1.17,-2.16 0.02,-0.01 0.04,-0.03 0.07,-0.04 0.05,0 0.09,-0.01 0.14,-0.02 0.08,-0.03 0.15,-0.06 0.22,-0.1 0.05,-0.03 0.11,-0.06 0.16,-0.08 0.1,-0.05 0.22,-0.08 0.34,-0.1 z m 3.06,7.77 c 0,0 0.01,0.01 0.02,0.04 0,0 0,0 0,0.01 0,0.01 0.01,0.02 0.01,0.03 -0.01,-0.01 -0.01,-0.01 -0.01,-0.02 0.01,0.02 0.01,0.04 0.02,0.05 0,0 0,0.02 0.01,0.04 0,0 0,0 0,-0.01 0,-0.01 0,-0.01 0,-0.01 0,0.01 0.01,0.04 0.01,0.05 -0.01,-0.01 -0.01,-0.02 -0.01,-0.03 0,0.03 0,0.07 -0.01,0.1 0,-0.01 0,-0.01 0,-0.02 0,0.02 -0.01,0.03 -0.01,0.05 -0.01,0.04 -0.02,0.09 -0.04,0.13 -0.01,0.01 -0.01,0.02 -0.02,0.03 -0.01,0.03 -0.03,0.06 -0.04,0.08 0.01,-0.01 0.01,0 -0.01,0.02 0,0.01 -0.01,0.01 -0.01,0.01 -0.01,0.01 -0.01,0.02 -0.02,0.03 0,0 0.01,0 0.01,-0.01 0,0 -0.01,0 -0.01,0.01 -0.01,0.01 -0.02,0.01 -0.03,0.02 0,0 0,0 0,0 -0.02,0.01 -0.03,0.02 -0.03,0.02 -0.02,0.01 -0.03,0.02 -0.05,0.03 -0.01,0 -0.02,0 -0.03,0.01 -0.01,0 -0.03,0.01 -0.04,0.01 -0.04,0 -0.08,0 -0.12,0 -0.01,0 -0.02,0 -0.04,-0.01 -0.04,-0.01 -0.1,-0.04 -0.13,-0.04 0.01,0 0.02,0.01 0.03,0.01 0.07,0.03 0.04,0.02 -0.09,-0.04 0,0 0,0 -0.01,0 -0.03,-0.02 -0.07,-0.03 -0.1,-0.05 -0.01,-0.01 -0.03,-0.02 -0.04,-0.03 -0.01,-0.01 -0.03,-0.03 -0.04,-0.04 -0.02,-0.03 -0.04,-0.06 -0.06,-0.1 0,0.01 0,0.01 0,0.01 0,0 0,-0.01 -0.01,-0.02 0,0 0,0 0,0 -0.02,-0.03 -0.01,-0.02 0,-0.01 -0.01,-0.02 -0.01,-0.04 -0.01,-0.05 -0.01,-0.03 -0.01,-0.06 -0.02,-0.08 0,0 0,0 0,0 0,0 0,0 0,0 0,-0.06 0,-0.12 0,-0.17 0,0 0,0 0,0 0,-0.02 0.01,-0.04 0.01,-0.06 0.01,-0.06 0.03,-0.11 0.05,-0.16 0.01,-0.02 0.02,-0.04 0.03,-0.06 0.03,-0.01 0.07,-0.01 0.11,-0.02 0.01,0 0.03,0 0.03,0 0.09,-0.01 0.17,-0.01 0.26,-0.02 0,0 0,0 0,0 0,0 0.01,0 0.01,0 0,0 0,0 0,0 0.02,0 0.04,0.01 0.06,0.01 0.04,0.01 0.08,0.02 0.13,0.04 0.02,0.01 0.03,0.02 0.05,0.03 0.01,0.01 0.03,0.02 0.04,0.03 0,0 0,0 0.01,0.01 0.03,0.03 0.06,0.06 0.09,0.09 0.01,0.01 0.01,0.02 0.02,0.03 0.02,0 0.02,0.02 0.03,0.03 z m -0.69,1.65 c 0.61,0.16 1.28,-0.09 1.58,-0.66 0.01,-0.01 0.01,-0.03 0.01,-0.04 0.1,0.24 0.19,0.48 0.29,0.72 -0.09,0.06 -0.18,0.11 -0.28,0.17 -0.3,0.18 -0.61,0.36 -0.91,0.54 -0.13,0.08 -0.28,0.15 -0.4,0.24 -0.02,-0.03 -0.04,-0.06 -0.05,-0.06 -0.19,-0.3 -0.38,-0.6 -0.56,-0.91 -0.04,-0.06 -0.07,-0.13 -0.1,-0.19 0.12,0.08 0.26,0.15 0.42,0.19 z m 0.59,-2.86 c -0.15,-0.06 -0.33,-0.12 -0.49,-0.12 -0.16,-0.01 -0.37,0 -0.52,0.06 -0.12,0.05 -0.21,0.1 -0.29,0.2 -0.04,0.06 -0.07,0.13 -0.09,0.2 -0.01,0.03 -0.03,0.06 -0.03,0.08 -0.02,0.07 -0.03,0.15 0,0.22 0,0.01 0.01,0.01 0.01,0.02 0,0 -0.01,0.01 -0.01,0.01 -0.13,0.22 -0.2,0.48 -0.21,0.74 -0.05,-0.12 -0.11,-0.24 -0.16,-0.36 -0.12,-0.34 -0.23,-0.67 -0.34,-1.01 -0.07,-0.23 -0.16,-0.45 -0.25,-0.66 0.18,0.1 0.41,0.1 0.58,0 0.07,0.01 0.14,0.01 0.21,-0.01 0.17,-0.05 0.32,-0.1 0.48,-0.17 0.11,-0.05 0.22,-0.1 0.33,-0.15 0.09,-0.04 0.19,-0.08 0.28,-0.12 0.06,0.03 0.12,0.06 0.19,0.06 0.07,0.26 0.13,0.52 0.24,0.78 0.04,0.1 0.09,0.19 0.13,0.29 -0.02,-0.04 -0.04,-0.05 -0.06,-0.06 z m 2.76,-1.46 c -0.02,0.18 -0.02,0.36 -0.03,0.54 0,0.07 0,0.14 0,0.21 -0.19,-0.32 -0.39,-0.63 -0.6,-0.93 0.23,-0.09 0.46,-0.18 0.68,-0.27 -0.02,0.15 -0.04,0.3 -0.05,0.45 z m -0.2,-5.42 c -0.23,-0.08 -0.42,-0.27 -0.48,-0.52 l -0.07,-0.26 c 0,0 0,-0.01 0,-0.01 l -0.04,-0.14 c -0.01,0 -0.03,0 -0.04,0.01 -0.04,0.01 -0.07,0.03 -0.11,0.05 -0.13,-0.2 -0.26,-0.39 -0.38,-0.6 -0.56,-0.98 -1.07,-2 -1.51,-3.05 -0.43,-1.02 -0.8,-2.06 -1.1,-3.13 -0.15,-0.52 -0.29,-1.04 -0.42,-1.56 -0.07,-0.29 -0.13,-0.62 -0.23,-0.94 0.41,-0.15 0.82,-0.32 1.23,-0.47 0.01,0.16 0.03,0.33 0.04,0.49 0.01,0.16 0.02,0.33 0.05,0.48 0.03,0.15 0.05,0.31 0.11,0.46 0.03,0.09 0.18,0.11 0.2,0 0.05,-0.31 0.02,-0.63 -0.01,-0.94 -0.02,-0.21 -0.04,-0.41 -0.06,-0.62 0.41,-0.15 0.81,-0.31 1.22,-0.46 -0.03,0.25 -0.04,0.5 -0.01,0.75 0.03,0.27 0.08,0.58 0.26,0.79 0.06,0.07 0.2,0.01 0.19,-0.08 -0.02,-0.13 -0.06,-0.25 -0.09,-0.37 -0.03,-0.12 -0.06,-0.25 -0.08,-0.37 -0.03,-0.25 -0.03,-0.5 0.01,-0.74 0,-0.03 0,-0.05 -0.01,-0.08 0.6,-0.23 1.19,-0.45 1.79,-0.68 0.01,0.18 0.03,0.36 0.04,0.54 0.01,0.15 0.02,0.3 0.03,0.45 0.01,0.08 0.02,0.16 0.03,0.24 0.01,0.09 0.01,0.17 0.08,0.23 0.05,0.04 0.14,0.06 0.19,0 0.06,-0.08 0.06,-0.14 0.06,-0.23 0,-0.08 -0.01,-0.16 -0.01,-0.24 -0.01,-0.15 -0.03,-0.3 -0.04,-0.45 -0.02,-0.22 -0.04,-0.44 -0.06,-0.66 1.02,-0.4 2.03,-0.81 3.05,-1.22 -0.01,0.02 -0.02,0.04 -0.01,0.07 0.05,0.2 0.11,0.41 0.16,0.61 0.03,0.1 0.05,0.2 0.08,0.3 0.03,0.11 0.05,0.25 0.16,0.31 0.06,0.04 0.14,0.01 0.18,-0.05 0.06,-0.11 0.01,-0.23 -0.02,-0.34 -0.03,-0.1 -0.06,-0.21 -0.08,-0.31 -0.06,-0.2 -0.11,-0.41 -0.17,-0.61 -0.01,-0.04 -0.04,-0.06 -0.07,-0.08 0.62,-0.25 1.25,-0.5 1.87,-0.75 -0.02,0.11 -0.04,0.22 -0.05,0.34 -0.01,0.14 0,0.28 0.03,0.42 0.02,0.13 0.06,0.32 0.16,0.4 0.06,0.05 0.18,0.04 0.2,-0.05 0.01,-0.04 0.01,-0.07 0.01,-0.11 -0.01,-0.03 -0.02,-0.06 -0.02,-0.09 -0.01,-0.06 -0.03,-0.12 -0.04,-0.18 -0.02,-0.12 -0.03,-0.24 -0.03,-0.36 0,-0.17 0.03,-0.33 0.08,-0.5 1.04,-0.42 2.08,-0.85 3.12,-1.28 -0.12,0.48 -0.13,1.05 0.09,1.5 0.03,0.05 0.1,0.07 0.15,0.05 0.06,-0.02 0.08,-0.08 0.07,-0.14 -0.04,-0.23 -0.09,-0.46 -0.1,-0.69 -0.01,-0.23 0.01,-0.47 0.06,-0.69 0.01,-0.05 -0.01,-0.09 -0.04,-0.12 0.07,-0.03 0.14,-0.06 0.21,-0.09 0.09,0.14 0.35,0.1 0.38,-0.11 0,-0.02 0,-0.03 0.01,-0.05 1.13,-0.47 2.27,-0.93 3.4,-1.4 l -0.07,0.36 c -0.02,0.08 -0.03,0.16 -0.05,0.24 -0.02,0.09 -0.03,0.17 -0.03,0.26 0,0.05 0.04,0.1 0.09,0.1 0.05,0.01 0.09,-0.02 0.11,-0.07 0.03,-0.08 0.05,-0.15 0.07,-0.23 0.02,-0.08 0.03,-0.16 0.05,-0.24 0.03,-0.16 0.07,-0.32 0.1,-0.47 0,-0.02 0,-0.04 -0.01,-0.05 1.15,-0.48 2.31,-0.95 3.46,-1.43 0,0.04 0,0.07 0,0.11 0,0.09 0.02,0.17 0.03,0.25 0.01,0.05 0.07,0.1 0.13,0.1 0.05,0 0.12,-0.04 0.13,-0.1 0.01,-0.08 0.03,-0.16 0.03,-0.24 0,-0.08 0,-0.15 -0.01,-0.23 0,0 0,-0.01 0,-0.01 0.16,-0.07 0.32,-0.13 0.49,-0.2 0.33,-0.14 0.67,-0.28 1,-0.41 0,0.2 -0.02,0.41 0.02,0.61 0.02,0.1 0.19,0.1 0.21,0 0.04,-0.21 0.03,-0.42 0.03,-0.63 0,-0.03 0,-0.05 0,-0.08 0.54,-0.22 1.08,-0.45 1.62,-0.67 l -0.01,0.07 c -0.01,0.11 -0.03,0.23 -0.03,0.34 0,0.06 0.01,0.12 0.01,0.18 0.01,0.06 0.01,0.12 0.02,0.17 0.02,0.06 0.11,0.08 0.14,0.02 0.1,-0.22 0.1,-0.46 0.12,-0.69 0,-0.06 0.01,-0.13 0.01,-0.19 0.55,-0.23 1.09,-0.45 1.64,-0.68 0,0.02 0,0.05 0.01,0.07 0.01,0.11 0.02,0.21 0.04,0.32 0.02,0.1 0.04,0.21 0.08,0.3 0.03,0.07 0.14,0.05 0.16,-0.02 0.03,-0.1 0.03,-0.2 0.03,-0.31 0,-0.1 0,-0.2 -0.01,-0.31 -0.01,-0.06 -0.01,-0.12 -0.02,-0.19 0.42,-0.17 0.84,-0.35 1.26,-0.52 -0.04,0.11 -0.07,0.23 -0.07,0.34 0,0.19 0.05,0.43 0.22,0.53 0.04,0.02 0.09,0.02 0.12,-0.01 0.04,-0.03 0.05,-0.07 0.04,-0.12 0,-0.01 0,-0.01 0,-0.01 0,0 0,0 0,-0.01 0,-0.02 0,-0.03 -0.01,-0.04 0,0 -0.02,-0.04 -0.01,-0.02 0,-0.01 -0.01,-0.02 -0.01,-0.02 -0.01,-0.04 -0.02,-0.07 -0.03,-0.11 -0.01,-0.04 -0.02,-0.07 -0.02,-0.11 0,0 0,0 0,0 0,0 0,0 0,0 0,-0.01 0,-0.02 0,-0.02 0,-0.02 0,-0.04 0,-0.06 0,-0.02 0,-0.04 0,-0.06 0,-0.01 0,-0.02 0,-0.02 0,0 0,-0.01 0,-0.01 0.01,-0.04 0.01,-0.07 0.02,-0.1 0.01,-0.02 0.01,-0.04 0.02,-0.06 0,0.01 -0.01,0.01 0,0 0,-0.01 0.01,-0.02 0.01,-0.03 0.02,-0.04 0.04,-0.07 0.06,-0.1 0.02,-0.03 0.02,-0.07 0.01,-0.11 0.62,-0.26 1.24,-0.51 1.86,-0.77 0,0.08 0.01,0.16 0.01,0.24 0.01,0.19 0.02,0.37 0.05,0.55 0.01,0.05 0.09,0.04 0.09,-0.01 0.01,-0.18 -0.01,-0.37 -0.02,-0.55 -0.01,-0.09 -0.01,-0.18 -0.02,-0.28 0.42,-0.17 0.84,-0.35 1.26,-0.52 0.01,0.11 0.02,0.22 0.03,0.33 0.03,0.19 0.08,0.36 0.14,0.54 0.03,0.09 0.08,0.17 0.13,0.25 0.05,0.09 0.09,0.17 0.17,0.25 0.05,0.05 0.14,0.01 0.14,-0.06 0,-0.09 -0.02,-0.17 -0.04,-0.26 -0.02,-0.09 -0.02,-0.18 -0.04,-0.28 -0.04,-0.17 -0.08,-0.35 -0.11,-0.53 -0.03,-0.14 -0.01,-0.27 -0.03,-0.41 0.65,-0.27 1.29,-0.53 1.94,-0.8 0.03,0.32 0.06,0.64 0.08,0.96 0.03,0.33 0.03,0.68 0.15,0.99 0.03,0.09 0.19,0.12 0.21,0 0.06,-0.33 0,-0.66 -0.04,-0.99 -0.04,-0.33 -0.07,-0.67 -0.11,-1 0,-0.02 -0.02,-0.04 -0.03,-0.06 0.46,-0.19 0.93,-0.38 1.4,-0.58 -0.01,0.08 -0.04,0.15 -0.04,0.23 -0.01,0.16 -0.01,0.31 0.02,0.46 0.02,0.15 0.03,0.31 0.11,0.45 0.05,0.08 0.2,0.07 0.21,-0.03 0.02,-0.14 0,-0.29 0,-0.43 0,-0.14 0,-0.29 0.01,-0.43 0,-0.14 0.04,-0.27 0.06,-0.4 0.62,-0.26 1.23,-0.51 1.85,-0.77 0,0.1 -0.01,0.21 -0.01,0.31 0,0.1 0,0.19 0,0.29 0,0.05 0,0.1 0,0.15 0,0.02 0,0.04 0,0.06 0,0.04 0.02,0.07 0.04,0.1 0.04,0.08 0.16,0.07 0.2,0 0.05,-0.09 0.05,-0.21 0.05,-0.31 0.01,-0.1 0.01,-0.19 0.01,-0.29 0,-0.14 0.01,-0.29 0.01,-0.43 0.39,-0.16 0.77,-0.32 1.16,-0.48 0,0.19 0,0.37 0,0.56 0,0.1 -0.01,0.21 0,0.31 0,0.05 0,0.1 0.01,0.15 0.01,0.06 0.03,0.12 0.04,0.18 0.02,0.12 0.21,0.12 0.24,0 0.01,-0.06 0.03,-0.11 0.04,-0.17 0,-0.05 0.01,-0.1 0.01,-0.14 0.01,-0.11 0,-0.21 0,-0.32 0,-0.21 0,-0.42 0,-0.63 0,-0.02 -0.02,-0.04 -0.02,-0.05 0.7,-0.29 1.39,-0.58 2.09,-0.86 -0.02,0.15 -0.05,0.3 -0.04,0.45 0.01,0.12 0.03,0.23 0.06,0.35 0.02,0.05 0.03,0.1 0.05,0.16 0.01,0.03 0.02,0.07 0.04,0.1 0.02,0.03 0.04,0.05 0.07,0.07 0.08,0.08 0.22,0.02 0.22,-0.09 0,-0.11 -0.04,-0.21 -0.07,-0.32 -0.02,-0.09 -0.04,-0.19 -0.05,-0.27 -0.02,-0.2 -0.01,-0.39 0.04,-0.58 0.77,-0.32 1.54,-0.64 2.31,-0.96 0.13,-0.05 0.26,-0.11 0.39,-0.16 0.01,0.06 0.02,0.13 0.03,0.19 0.02,0.09 0.03,0.18 0.05,0.27 0.02,0.1 0.03,0.2 0.08,0.28 0.06,0.09 0.19,0.08 0.23,-0.03 0.03,-0.1 0,-0.2 -0.01,-0.3 -0.01,-0.1 -0.03,-0.19 -0.04,-0.29 -0.01,-0.08 -0.03,-0.16 -0.04,-0.25 0.33,-0.14 0.66,-0.28 0.99,-0.42 0.01,0.05 0.03,0.11 0.04,0.16 0.05,0.17 0.08,0.38 0.18,0.52 0.05,0.07 0.15,0.04 0.16,-0.04 0.02,-0.18 -0.06,-0.37 -0.11,-0.55 -0.02,-0.06 -0.03,-0.13 -0.05,-0.19 0.52,-0.21 1.03,-0.44 1.55,-0.65 0.01,0.13 0.02,0.26 0.03,0.39 0.01,0.09 0.01,0.19 0.02,0.28 0.01,0.1 0.02,0.19 0.04,0.29 0.01,0.06 0.07,0.09 0.13,0.08 0.06,-0.01 0.1,-0.05 0.1,-0.11 0,-0.05 0.01,-0.09 0.01,-0.14 0,-0.05 -0.01,-0.09 -0.01,-0.14 -0.01,-0.09 -0.01,-0.18 -0.02,-0.27 -0.01,-0.17 -0.02,-0.33 -0.03,-0.5 0.5,-0.21 1,-0.42 1.5,-0.63 0,0.05 -0.01,0.1 0,0.15 0.02,0.13 0.04,0.26 0.07,0.39 0.02,0.06 0.04,0.12 0.06,0.18 0.01,0.04 0.02,0.08 0.04,0.11 0.02,0.03 0.05,0.06 0.07,0.09 0.08,0.09 0.23,0.02 0.23,-0.1 0,-0.13 -0.05,-0.24 -0.08,-0.36 -0.03,-0.11 -0.05,-0.22 -0.06,-0.33 -0.01,-0.09 0.01,-0.19 0.01,-0.29 0.96,-0.4 1.92,-0.81 2.88,-1.21 0,0 0,0.01 0.01,0.02 0.08,0.06 0.15,0.12 0.23,0.18 0.04,0.03 0.07,0.06 0.11,0.09 0.02,0.02 0.05,0.04 0.07,0.06 0.02,0.02 0.04,0.03 0.07,0.03 0.02,0 0.04,0 0.07,0 0.04,-0.01 0.08,-0.06 0.08,-0.1 0,-0.02 0,-0.03 -0.01,-0.05 -0.01,-0.03 -0.03,-0.05 -0.05,-0.07 -0.02,-0.02 -0.04,-0.03 -0.06,-0.05 -0.04,-0.03 -0.07,-0.06 -0.11,-0.09 -0.05,-0.04 -0.1,-0.08 -0.15,-0.12 0.28,-0.12 0.55,-0.23 0.83,-0.35 0.02,0.07 0.09,0.13 0.18,0.1 0.11,-0.03 0.12,-0.14 0.08,-0.21 0.19,-0.08 0.37,-0.16 0.56,-0.24 0.12,0.1 0.25,0.18 0.35,0.28 0.11,0.12 0.2,0.25 0.31,0.37 0.12,0.12 0.18,0.28 0.31,0.4 0.1,0.1 0.24,0 0.22,-0.13 -0.03,-0.18 -0.15,-0.32 -0.23,-0.48 -0.08,-0.16 -0.22,-0.3 -0.35,-0.42 -0.07,-0.07 -0.14,-0.12 -0.21,-0.19 0.58,-0.24 1.16,-0.49 1.74,-0.73 0.11,0.12 0.21,0.23 0.34,0.32 0.09,0.07 0.21,-0.06 0.15,-0.15 -0.07,-0.1 -0.15,-0.19 -0.24,-0.28 0.68,-0.29 1.36,-0.57 2.04,-0.86 0.05,0.07 0.1,0.15 0.16,0.22 0.1,0.12 0.19,0.26 0.3,0.37 0.06,0.05 0.14,-0.01 0.11,-0.08 -0.06,-0.15 -0.17,-0.27 -0.25,-0.41 -0.04,-0.06 -0.08,-0.12 -0.12,-0.18 0.63,-0.27 1.26,-0.53 1.88,-0.79 0.05,0.05 0.09,0.11 0.14,0.16 0.08,0.1 0.17,0.23 0.29,0.27 0.1,0.03 0.17,-0.06 0.15,-0.15 -0.01,-0.08 -0.06,-0.12 -0.11,-0.18 -0.04,-0.05 -0.09,-0.1 -0.13,-0.15 l -0.06,-0.07 c 0.62,-0.27 1.25,-0.52 1.88,-0.79 0.05,0.06 0.11,0.11 0.16,0.17 0.07,0.07 0.13,0.14 0.2,0.21 0.03,0.03 0.07,0.07 0.1,0.1 0.04,0.04 0.08,0.07 0.14,0.08 0.04,0 0.08,-0.04 0.08,-0.08 0,-0.06 -0.04,-0.1 -0.07,-0.14 -0.03,-0.04 -0.06,-0.07 -0.09,-0.1 -0.07,-0.07 -0.14,-0.14 -0.21,-0.21 -0.03,-0.04 -0.07,-0.07 -0.1,-0.11 0.5,-0.21 1,-0.42 1.5,-0.63 0,0 0,0 0.01,0.01 0.06,0.05 0.12,0.1 0.19,0.15 l 0.09,0.08 c 0.02,0.01 0.04,0.03 0.06,0.04 0.02,0.01 0.04,0.02 0.06,0.02 0.08,0.02 0.13,-0.07 0.1,-0.13 -0.02,-0.04 -0.05,-0.07 -0.08,-0.1 -0.03,-0.03 -0.06,-0.05 -0.09,-0.08 -0.04,-0.03 -0.07,-0.06 -0.11,-0.09 0.48,-0.21 0.96,-0.4 1.45,-0.61 0.09,0.08 0.18,0.16 0.28,0.24 0.1,0.09 0.22,0.17 0.34,0.24 0.04,0.02 0.08,0.01 0.11,-0.02 0.03,-0.03 0.04,-0.08 0.01,-0.11 -0.04,-0.06 -0.09,-0.11 -0.14,-0.17 -0.04,-0.05 -0.09,-0.09 -0.14,-0.13 -0.06,-0.06 -0.13,-0.11 -0.19,-0.17 0.52,-0.22 1.04,-0.45 1.55,-0.67 0.27,0.13 0.55,0.25 0.82,0.38 0.14,0.06 0.28,0.14 0.43,0.19 0.07,0.02 0.15,0.04 0.22,0.07 0.08,0.03 0.15,0.05 0.23,0.05 0.07,0.01 0.1,-0.09 0.05,-0.13 -0.11,-0.11 -0.25,-0.16 -0.37,-0.25 -0.06,-0.05 -0.14,-0.08 -0.22,-0.11 -0.07,-0.03 -0.14,-0.07 -0.21,-0.1 l -0.58,-0.27 c 0.49,-0.21 0.97,-0.42 1.46,-0.63 0.07,0.07 0.14,0.13 0.2,0.2 0.08,0.07 0.15,0.15 0.23,0.22 0.04,0.04 0.08,0.07 0.12,0.11 0.05,0.04 0.09,0.08 0.16,0.1 0.04,0.01 0.09,-0.01 0.11,-0.04 0.03,-0.04 0.03,-0.08 0.01,-0.12 -0.04,-0.1 -0.14,-0.17 -0.21,-0.25 -0.07,-0.08 -0.15,-0.15 -0.23,-0.22 -0.04,-0.04 -0.08,-0.07 -0.12,-0.11 0.17,-0.07 0.33,-0.14 0.5,-0.22 0.04,0.07 0.08,0.14 0.11,0.21 0.03,0.05 0.06,0.1 0.09,0.16 0.04,0.06 0.07,0.12 0.13,0.15 0.07,0.03 0.18,0.01 0.19,-0.08 0.01,-0.08 -0.01,-0.13 -0.04,-0.2 -0.03,-0.05 -0.05,-0.11 -0.08,-0.16 -0.04,-0.07 -0.08,-0.13 -0.12,-0.2 0.68,-0.29 1.36,-0.59 2.04,-0.88 0.03,0.03 0.06,0.06 0.09,0.09 0.05,0.05 0.11,0.1 0.16,0.14 0.06,0.05 0.12,0.1 0.18,0.14 0.06,0.04 0.14,-0.04 0.1,-0.1 -0.04,-0.07 -0.09,-0.12 -0.14,-0.18 -0.05,-0.06 -0.09,-0.11 -0.14,-0.17 -0.01,-0.01 -0.02,-0.02 -0.02,-0.02 0.25,-0.11 0.51,-0.22 0.76,-0.33 0.3,0.15 0.59,0.33 0.84,0.55 0.19,0.17 0.35,0.36 0.49,0.57 0.07,0.11 0.13,0.22 0.19,0.34 0.05,0.1 0.11,0.23 0.21,0.28 0.02,0.01 0.06,0.01 0.08,-0.02 0.1,-0.22 -0.12,-0.54 -0.22,-0.73 -0.14,-0.24 -0.32,-0.47 -0.51,-0.68 -0.19,-0.2 -0.4,-0.37 -0.63,-0.51 0.43,-0.19 0.87,-0.38 1.3,-0.56 0.12,0.11 0.23,0.21 0.35,0.32 0.1,0.09 0.2,0.18 0.31,0.26 0.11,0.07 0.21,0.17 0.33,0.22 0.06,0.03 0.11,-0.06 0.08,-0.11 -0.07,-0.11 -0.18,-0.21 -0.27,-0.3 -0.09,-0.09 -0.19,-0.17 -0.29,-0.26 -0.09,-0.08 -0.18,-0.15 -0.27,-0.23 0.49,-0.21 0.99,-0.43 1.48,-0.64 0.02,0.01 0.04,0.03 0.06,0.04 0.05,0.03 0.09,0.07 0.14,0.1 0.02,0.02 0.05,0.03 0.07,0.05 0.02,0.02 0.05,0.03 0.08,0.04 0.04,0.02 0.08,0.01 0.11,-0.02 0.03,-0.04 0.02,-0.08 -0.01,-0.11 -0.02,-0.02 -0.04,-0.04 -0.06,-0.06 -0.03,-0.02 -0.06,-0.04 -0.08,-0.06 -0.03,-0.02 -0.06,-0.04 -0.08,-0.06 0.5,-0.22 1,-0.43 1.5,-0.65 0.21,0.18 0.43,0.36 0.66,0.52 0.08,0.05 0.16,-0.06 0.1,-0.13 -0.17,-0.17 -0.37,-0.32 -0.56,-0.48 0.55,-0.24 1.1,-0.47 1.65,-0.71 0.05,0.02 0.1,0.04 0.14,0.07 0.09,0.04 0.16,-0.08 0.08,-0.14 -0.01,-0.01 -0.02,-0.01 -0.02,-0.02 0.53,-0.23 1.06,-0.46 1.58,-0.68 0.11,0.1 0.23,0.2 0.35,0.29 0.07,0.05 0.14,-0.06 0.09,-0.11 -0.09,-0.09 -0.18,-0.17 -0.27,-0.25 1.38,-0.6 2.76,-1.19 4.14,-1.79 0,0 0.01,0.01 0.01,0.01 0.13,0.1 0.25,0.2 0.38,0.3 0.12,0.1 0.25,0.2 0.4,0.25 0.07,0.03 0.13,-0.07 0.09,-0.12 -0.08,-0.13 -0.21,-0.24 -0.33,-0.34 -0.09,-0.07 -0.17,-0.15 -0.26,-0.22 0.49,-0.21 0.97,-0.42 1.46,-0.63 0.01,0 0.02,-0.01 0.03,-0.01 0.07,0.06 0.16,0.1 0.23,0.16 0.08,0.08 0.16,0.17 0.23,0.26 0.08,0.11 0.14,0.23 0.24,0.33 0.04,0.04 0.11,0.05 0.16,0.02 0.05,-0.03 0.07,-0.09 0.06,-0.15 -0.02,-0.14 -0.1,-0.26 -0.18,-0.37 -0.08,-0.12 -0.17,-0.22 -0.27,-0.32 -0.03,-0.03 -0.08,-0.05 -0.11,-0.08 0.54,-0.23 1.07,-0.47 1.61,-0.7 0.06,0.04 0.12,0.07 0.19,0.11 0.12,0.07 0.24,0.15 0.37,0.22 0.06,0.03 0.13,0.07 0.19,0.1 0.08,0.04 0.15,0.08 0.24,0.08 0.11,-0.01 0.17,-0.11 0.12,-0.21 -0.04,-0.08 -0.11,-0.12 -0.18,-0.16 -0.06,-0.04 -0.12,-0.08 -0.18,-0.11 -0.11,-0.07 -0.23,-0.13 -0.34,-0.19 0.56,-0.24 1.12,-0.49 1.67,-0.73 0.11,0.06 0.22,0.13 0.33,0.19 0.07,0.04 0.13,0.07 0.2,0.11 0.03,0.02 0.07,0.04 0.1,0.06 0.04,0.02 0.08,0.04 0.13,0.05 0.09,0.02 0.15,-0.09 0.09,-0.15 -0.03,-0.03 -0.06,-0.06 -0.1,-0.08 -0.03,-0.02 -0.07,-0.04 -0.1,-0.06 -0.07,-0.04 -0.13,-0.08 -0.2,-0.12 -0.06,-0.04 -0.12,-0.07 -0.18,-0.1 0.63,-0.27 1.25,-0.55 1.88,-0.82 0.17,0.09 0.33,0.17 0.5,0.26 0.12,0.06 0.24,0.13 0.36,0.19 0.12,0.06 0.25,0.14 0.38,0.17 0.06,0.01 0.12,-0.07 0.07,-0.11 -0.1,-0.09 -0.23,-0.14 -0.34,-0.2 -0.12,-0.07 -0.25,-0.13 -0.37,-0.19 -0.13,-0.07 -0.26,-0.13 -0.39,-0.19 0.69,-0.3 1.37,-0.6 2.06,-0.9 0.05,0.03 0.09,0.06 0.14,0.09 0.04,0.03 0.08,0.05 0.11,0.08 0.04,0.03 0.09,0.04 0.13,0.06 0.09,0.04 0.18,0.09 0.27,0.13 0.07,0.03 0.11,-0.07 0.07,-0.12 -0.07,-0.07 -0.14,-0.13 -0.21,-0.19 -0.04,-0.04 -0.07,-0.08 -0.12,-0.11 -0.03,-0.02 -0.07,-0.05 -0.1,-0.07 0.56,-0.25 1.12,-0.49 1.69,-0.74 0.1,0.06 0.21,0.09 0.31,0.16 0.13,0.08 0.25,0.18 0.38,0.26 0.14,0.08 0.25,0.21 0.39,0.29 0.1,0.06 0.21,-0.06 0.15,-0.16 -0.08,-0.15 -0.22,-0.25 -0.34,-0.38 -0.12,-0.12 -0.27,-0.22 -0.42,-0.31 -0.02,-0.02 -0.05,-0.02 -0.08,-0.04 0.55,-0.24 1.09,-0.48 1.64,-0.72 0.15,0.09 0.29,0.17 0.44,0.26 0.14,0.08 0.28,0.17 0.42,0.25 0.07,0.04 0.15,0.08 0.23,0.11 0.08,0.03 0.16,0.08 0.24,0.1 0.07,0.01 0.12,-0.07 0.07,-0.12 -0.05,-0.06 -0.13,-0.1 -0.19,-0.15 -0.07,-0.05 -0.14,-0.1 -0.21,-0.14 -0.14,-0.09 -0.29,-0.17 -0.44,-0.25 -0.1,-0.06 -0.2,-0.11 -0.29,-0.17 0.44,-0.19 0.87,-0.38 1.31,-0.57 0.18,0.12 0.37,0.23 0.54,0.37 0.15,0.13 0.29,0.27 0.4,0.43 0.11,0.16 0.21,0.33 0.33,0.49 0.08,0.1 0.24,0.01 0.18,-0.1 -0.1,-0.17 -0.24,-0.32 -0.38,-0.46 -0.15,-0.15 -0.29,-0.3 -0.44,-0.45 -0.13,-0.13 -0.28,-0.26 -0.42,-0.37 0.42,-0.18 0.85,-0.37 1.27,-0.55 0.07,0.06 0.15,0.11 0.22,0.17 0.08,0.06 0.17,0.12 0.25,0.17 0.09,0.06 0.18,0.13 0.29,0.16 0.07,0.02 0.13,-0.06 0.09,-0.12 -0.06,-0.09 -0.15,-0.15 -0.23,-0.22 -0.08,-0.07 -0.16,-0.14 -0.24,-0.2 -0.04,-0.03 -0.07,-0.05 -0.11,-0.08 0.65,-0.28 1.3,-0.57 1.95,-0.85 l 0.19,0.11 c 0.1,0.06 0.2,0.11 0.3,0.16 0.11,0.05 0.22,0.11 0.34,0.14 0.09,0.02 0.15,-0.08 0.08,-0.15 -0.08,-0.08 -0.19,-0.15 -0.28,-0.21 -0.1,-0.07 -0.2,-0.13 -0.3,-0.19 l -0.01,-0.01 c 0.59,-0.26 1.17,-0.51 1.76,-0.77 0.12,0.09 0.24,0.19 0.37,0.28 0.09,0.07 0.17,0.13 0.26,0.19 0.09,0.06 0.18,0.13 0.29,0.16 0.08,0.02 0.15,-0.07 0.11,-0.14 -0.06,-0.09 -0.15,-0.16 -0.23,-0.23 -0.08,-0.07 -0.17,-0.14 -0.26,-0.21 -0.08,-0.06 -0.16,-0.12 -0.24,-0.18 0.57,-0.25 1.15,-0.5 1.72,-0.75 0.26,0.16 0.51,0.32 0.74,0.52 0.13,0.11 0.26,0.23 0.39,0.35 0.06,0.06 0.13,0.11 0.19,0.17 0.07,0.06 0.13,0.13 0.2,0.18 0.07,0.05 0.14,-0.05 0.11,-0.11 -0.04,-0.08 -0.09,-0.15 -0.15,-0.22 -0.06,-0.07 -0.1,-0.15 -0.16,-0.21 -0.12,-0.14 -0.26,-0.26 -0.4,-0.38 -0.19,-0.16 -0.4,-0.29 -0.61,-0.43 0.42,-0.18 0.83,-0.36 1.25,-0.55 l 0.42,0.28 c 0.07,0.05 0.14,0.09 0.21,0.13 0.07,0.05 0.15,0.1 0.23,0.12 0.01,0 0.03,-0.01 0.04,-0.02 0.13,0.22 0.26,0.44 0.38,0.67 0.62,1.14 1.2,2.29 1.69,3.49 0.48,1.17 0.91,2.35 1.26,3.56 0.18,0.61 0.34,1.22 0.48,1.83 0.04,0.15 0.06,0.31 0.09,0.47 -0.2,0.07 -0.39,0.15 -0.58,0.22 -0.01,-0.32 -0.06,-0.65 -0.09,-0.94 -0.06,-0.52 -0.15,-1.04 -0.28,-1.55 -0.25,-1.02 -0.63,-2 -1.11,-2.94 -0.08,-0.15 -0.29,-0.02 -0.22,0.13 0.44,0.92 0.78,1.9 1.01,2.89 0.12,0.5 0.2,1 0.26,1.51 0.03,0.25 0.05,0.49 0.07,0.74 0.01,0.09 0.01,0.19 0.01,0.28 -0.22,0.09 -0.45,0.16 -0.68,0.25 -0.01,-0.3 -0.08,-0.62 -0.14,-0.91 -0.08,-0.4 -0.18,-0.79 -0.3,-1.18 -0.24,-0.76 -0.48,-1.52 -0.79,-2.25 -0.03,-0.08 -0.17,-0.05 -0.14,0.04 0.3,0.72 0.56,1.46 0.74,2.22 0.09,0.38 0.17,0.76 0.24,1.15 0.06,0.33 0.1,0.68 0.19,1.01 -0.32,0.13 -0.64,0.26 -0.96,0.4 0.04,-0.34 -0.02,-0.73 -0.07,-1.06 -0.06,-0.43 -0.15,-0.86 -0.27,-1.28 -0.25,-0.84 -0.62,-1.63 -1.09,-2.37 -0.1,-0.15 -0.33,-0.01 -0.24,0.14 0.45,0.72 0.8,1.49 1.03,2.31 0.11,0.39 0.2,0.79 0.25,1.19 0.03,0.22 0.05,0.45 0.07,0.68 0.01,0.17 0.01,0.34 0.05,0.5 -0.38,0.16 -0.75,0.32 -1.13,0.47 0.02,-0.32 -0.03,-0.65 -0.05,-0.94 -0.05,-0.45 -0.13,-0.89 -0.24,-1.33 -0.23,-0.9 -0.6,-1.76 -1.07,-2.56 -0.09,-0.15 -0.32,-0.01 -0.24,0.14 0.44,0.79 0.76,1.63 0.96,2.51 0.1,0.44 0.17,0.88 0.21,1.32 0.03,0.32 0.02,0.67 0.06,1 -0.02,0.01 -0.03,0.01 -0.05,0.02 -0.23,0.1 -0.47,0.19 -0.7,0.29 0.01,-0.05 0.01,-0.1 0.01,-0.15 0.01,-0.12 0,-0.25 0,-0.38 -0.01,-0.23 -0.03,-0.46 -0.07,-0.68 -0.07,-0.48 -0.21,-0.95 -0.39,-1.39 -0.05,-0.12 -0.26,-0.07 -0.21,0.06 0.16,0.43 0.28,0.89 0.33,1.35 0.03,0.22 0.04,0.45 0.04,0.67 0,0.12 -0.01,0.23 -0.01,0.35 0,0.1 -0.01,0.2 0.01,0.3 -0.26,0.11 -0.53,0.22 -0.79,0.33 0.03,-0.3 0.01,-0.62 -0.02,-0.91 -0.04,-0.4 -0.11,-0.79 -0.21,-1.18 -0.21,-0.81 -0.55,-1.57 -1,-2.28 -0.05,-0.08 -0.17,-0.01 -0.12,0.07 0.42,0.7 0.73,1.47 0.91,2.26 0.09,0.4 0.15,0.8 0.18,1.21 0.02,0.3 0.01,0.62 0.03,0.92 -0.23,0.09 -0.45,0.19 -0.68,0.28 0.01,-0.14 0,-0.28 -0.02,-0.42 -0.03,-0.23 -0.06,-0.45 -0.12,-0.67 -0.11,-0.46 -0.29,-0.91 -0.53,-1.33 -0.08,-0.14 -0.28,-0.01 -0.21,0.12 0.22,0.4 0.38,0.83 0.49,1.27 0.05,0.22 0.09,0.43 0.11,0.66 0.01,0.15 0.03,0.31 0.05,0.46 -0.32,0.13 -0.64,0.27 -0.96,0.4 -0.08,-0.77 -0.28,-1.54 -0.52,-2.27 -0.3,-0.91 -0.7,-1.79 -1.19,-2.61 -0.07,-0.12 -0.25,-0.01 -0.19,0.11 0.47,0.83 0.84,1.71 1.13,2.62 0.24,0.75 0.36,1.51 0.49,2.27 -0.28,0.11 -0.55,0.23 -0.83,0.34 -0.07,-0.43 -0.19,-0.85 -0.29,-1.27 -0.12,-0.48 -0.23,-0.97 -0.35,-1.45 -0.03,-0.14 -0.26,-0.08 -0.22,0.06 l 0.34,1.42 c 0.1,0.44 0.19,0.89 0.33,1.32 -0.17,0.07 -0.34,0.14 -0.51,0.21 -0.27,0.11 -0.53,0.22 -0.8,0.33 0.06,-0.75 -0.12,-1.56 -0.35,-2.25 -0.29,-0.87 -0.75,-1.67 -1.33,-2.38 -0.11,-0.13 -0.29,0.06 -0.18,0.19 0.55,0.69 0.96,1.47 1.23,2.31 0.13,0.42 0.23,0.85 0.29,1.28 0.04,0.32 0.05,0.64 0.08,0.96 -0.24,0.1 -0.48,0.2 -0.72,0.3 -0.02,-0.29 -0.05,-0.58 -0.11,-0.87 -0.12,-0.59 -0.35,-1.14 -0.65,-1.66 -0.09,-0.16 -0.33,-0.02 -0.25,0.15 0.26,0.49 0.43,1.03 0.53,1.58 0.05,0.27 0.07,0.55 0.08,0.83 0,0.05 0,0.09 0,0.14 -0.3,0.12 -0.6,0.25 -0.9,0.38 -0.03,-0.16 -0.06,-0.32 -0.09,-0.48 -0.09,-0.46 -0.22,-0.91 -0.38,-1.36 -0.3,-0.86 -0.72,-1.67 -1.21,-2.43 -0.09,-0.14 -0.33,-0.01 -0.23,0.14 0.47,0.74 0.85,1.55 1.12,2.39 0.13,0.4 0.24,0.82 0.33,1.23 0.05,0.22 0.07,0.44 0.1,0.67 -0.43,0.18 -0.86,0.36 -1.29,0.54 0.02,-0.21 0,-0.43 -0.02,-0.62 -0.03,-0.26 -0.07,-0.51 -0.13,-0.77 -0.11,-0.54 -0.28,-1.06 -0.46,-1.57 -0.06,-0.16 -0.31,-0.09 -0.26,0.07 0.17,0.51 0.29,1.04 0.38,1.56 0.05,0.26 0.09,0.53 0.12,0.79 0.02,0.21 0.04,0.44 0.11,0.64 -0.31,0.13 -0.61,0.26 -0.92,0.38 0.01,-0.04 0.03,-0.08 0.03,-0.13 0,-0.1 -0.01,-0.19 -0.02,-0.29 -0.02,-0.2 -0.04,-0.39 -0.08,-0.58 -0.08,-0.38 -0.2,-0.75 -0.36,-1.1 -0.03,-0.07 -0.13,-0.08 -0.19,-0.05 -0.07,0.04 -0.08,0.12 -0.05,0.19 0.14,0.33 0.25,0.68 0.32,1.04 0.03,0.17 0.06,0.35 0.07,0.53 0.01,0.09 0.01,0.18 0.01,0.27 0,0.08 0.02,0.15 0.05,0.22 -0.37,0.15 -0.74,0.31 -1.11,0.46 0.01,-0.1 0.02,-0.2 0.03,-0.29 0.02,-0.24 0.02,-0.48 0,-0.72 -0.03,-0.47 -0.11,-0.94 -0.24,-1.39 -0.27,-0.9 -0.75,-1.72 -1.4,-2.4 -0.11,-0.11 -0.28,0.06 -0.17,0.17 0.61,0.67 1.05,1.47 1.29,2.35 0.12,0.43 0.19,0.86 0.21,1.31 0.01,0.21 0.01,0.43 -0.01,0.64 -0.01,0.15 -0.03,0.31 -0.04,0.47 -0.26,0.11 -0.51,0.21 -0.77,0.32 -0.01,-0.18 -0.04,-0.37 -0.06,-0.53 -0.05,-0.38 -0.11,-0.75 -0.19,-1.11 -0.17,-0.73 -0.42,-1.44 -0.72,-2.13 -0.07,-0.17 -0.32,-0.02 -0.25,0.15 0.29,0.67 0.5,1.36 0.65,2.07 0.07,0.35 0.13,0.71 0.17,1.07 0.02,0.17 0.03,0.35 0.05,0.52 0,0.04 0.01,0.07 0.01,0.11 -0.34,0.14 -0.69,0.29 -1.03,0.43 -0.05,-1.26 -0.47,-2.52 -1.08,-3.61 -0.09,-0.16 -0.32,-0.02 -0.24,0.14 0.32,0.58 0.57,1.2 0.74,1.84 0.15,0.57 0.23,1.16 0.28,1.75 -0.29,0.12 -0.59,0.24 -0.88,0.37 0,-0.02 -0.01,-0.03 -0.01,-0.04 -0.03,-0.1 -0.06,-0.21 -0.09,-0.31 -0.06,-0.2 -0.12,-0.4 -0.18,-0.6 -0.12,-0.41 -0.23,-0.82 -0.34,-1.23 -0.04,-0.16 -0.3,-0.1 -0.25,0.07 0.11,0.41 0.22,0.82 0.33,1.23 0.05,0.2 0.1,0.4 0.15,0.61 0.02,0.1 0.05,0.19 0.07,0.29 0.01,0.04 0.02,0.07 0.03,0.11 -0.05,0.02 -0.09,0.04 -0.14,0.06 -0.71,0.3 -1.43,0.6 -2.14,0.9 -0.02,-0.13 -0.06,-0.27 -0.08,-0.39 -0.06,-0.26 -0.13,-0.52 -0.21,-0.78 -0.16,-0.51 -0.37,-1 -0.62,-1.46 -0.08,-0.15 -0.3,-0.02 -0.23,0.13 0.23,0.46 0.43,0.94 0.58,1.43 0.07,0.24 0.13,0.48 0.19,0.73 0.03,0.14 0.05,0.3 0.09,0.46 -0.4,0.17 -0.79,0.33 -1.19,0.5 -0.04,-0.21 -0.1,-0.42 -0.15,-0.61 -0.11,-0.45 -0.25,-0.89 -0.42,-1.33 -0.34,-0.87 -0.8,-1.67 -1.33,-2.43 -0.07,-0.09 -0.22,-0.01 -0.15,0.09 0.5,0.75 0.9,1.57 1.22,2.41 0.15,0.41 0.28,0.82 0.38,1.24 0.05,0.2 0.1,0.41 0.14,0.61 0.01,0.04 0.01,0.09 0.02,0.14 -0.25,0.1 -0.5,0.21 -0.75,0.31 0,0 0,0 0,-0.01 -0.02,-0.02 -0.06,-0.04 -0.1,-0.04 -0.04,0 -0.07,0.01 -0.1,0.04 -0.02,0.03 -0.04,0.06 -0.04,0.1 0,0 0,0.01 0,0.01 -0.24,0.1 -0.47,0.2 -0.71,0.3 -0.02,-0.18 -0.07,-0.37 -0.1,-0.52 -0.07,-0.35 -0.17,-0.69 -0.28,-1.02 -0.23,-0.65 -0.53,-1.26 -0.9,-1.84 -0.09,-0.14 -0.31,-0.01 -0.22,0.13 0.35,0.57 0.61,1.19 0.81,1.83 0.09,0.3 0.17,0.61 0.23,0.92 0.03,0.18 0.06,0.35 0.09,0.53 0.01,0.04 0.01,0.08 0.02,0.13 -0.22,0.09 -0.44,0.18 -0.66,0.28 -0.02,-0.1 -0.04,-0.2 -0.06,-0.3 -0.01,-0.07 -0.09,-0.12 -0.16,-0.11 -0.07,0.01 -0.13,0.07 -0.13,0.14 0.01,0.1 0.01,0.21 0.02,0.31 v 0.08 c -0.29,0.12 -0.58,0.24 -0.87,0.37 0.05,-0.68 -0.12,-1.41 -0.31,-2.05 -0.23,-0.78 -0.56,-1.53 -0.98,-2.22 -0.08,-0.14 -0.3,-0.01 -0.22,0.13 0.4,0.68 0.71,1.41 0.92,2.17 0.1,0.36 0.18,0.74 0.24,1.11 0.05,0.32 0.09,0.64 0.15,0.95 -0.35,0.15 -0.7,0.29 -1.04,0.44 0,-0.04 0.01,-0.08 0.01,-0.12 0,-0.24 -0.02,-0.49 -0.07,-0.72 -0.09,-0.47 -0.28,-0.92 -0.54,-1.33 -0.09,-0.13 -0.29,-0.01 -0.21,0.12 0.24,0.38 0.4,0.79 0.48,1.23 0.04,0.21 0.06,0.43 0.05,0.65 0,0.1 -0.01,0.19 -0.02,0.29 -0.39,0.16 -0.78,0.33 -1.16,0.49 -0.02,-0.11 -0.03,-0.21 -0.05,-0.32 -0.07,-0.42 -0.17,-0.82 -0.3,-1.23 -0.24,-0.78 -0.59,-1.5 -0.99,-2.21 -0.06,-0.11 -0.23,-0.01 -0.16,0.1 0.39,0.68 0.68,1.43 0.9,2.18 0.1,0.36 0.19,0.73 0.26,1.1 0.03,0.16 0.05,0.32 0.07,0.49 -0.27,0.11 -0.54,0.23 -0.81,0.34 -0.03,-0.12 -0.05,-0.25 -0.08,-0.37 -0.07,-0.33 -0.15,-0.66 -0.22,-0.99 -0.04,-0.16 -0.28,-0.09 -0.25,0.07 0.07,0.33 0.13,0.66 0.2,1 0.03,0.14 0.05,0.28 0.08,0.41 -0.3,0.13 -0.6,0.25 -0.9,0.38 -0.02,-0.17 -0.05,-0.34 -0.09,-0.5 -0.09,-0.36 -0.24,-0.7 -0.45,-1.01 -0.09,-0.14 -0.31,-0.01 -0.22,0.13 0.19,0.29 0.32,0.61 0.4,0.95 0.04,0.18 0.05,0.36 0.07,0.54 -0.32,0.13 -0.64,0.27 -0.96,0.4 0,-0.01 -0.01,-0.02 -0.01,-0.03 -0.06,-0.25 -0.13,-0.49 -0.21,-0.73 -0.16,-0.48 -0.36,-0.95 -0.6,-1.41 -0.06,-0.12 -0.23,-0.01 -0.18,0.1 0.21,0.45 0.39,0.92 0.54,1.4 0.07,0.23 0.13,0.47 0.19,0.71 0,0.02 0.01,0.05 0.01,0.07 -0.48,0.2 -0.96,0.4 -1.45,0.61 0,-0.01 0,-0.03 -0.01,-0.04 -0.07,-0.37 -0.18,-0.74 -0.32,-1.09 -0.27,-0.67 -0.66,-1.29 -1.15,-1.82 -0.11,-0.12 -0.29,0.06 -0.18,0.18 0.47,0.52 0.84,1.12 1.09,1.78 0.12,0.31 0.21,0.63 0.27,0.96 0.01,0.05 0.01,0.1 0.02,0.15 -0.48,0.2 -0.96,0.4 -1.44,0.6 -0.05,-0.2 -0.09,-0.39 -0.15,-0.59 -0.13,-0.49 -0.26,-0.98 -0.39,-1.47 -0.03,-0.13 -0.22,-0.07 -0.2,0.05 0.11,0.49 0.21,0.97 0.32,1.46 0.05,0.22 0.1,0.44 0.15,0.65 -0.31,0.13 -0.62,0.26 -0.93,0.39 -0.05,-0.41 -0.14,-0.82 -0.25,-1.2 -0.21,-0.75 -0.56,-1.47 -0.98,-2.12 -0.09,-0.14 -0.31,-0.01 -0.22,0.13 0.4,0.64 0.7,1.34 0.9,2.07 0.11,0.41 0.17,0.83 0.22,1.25 -0.32,0.14 -0.64,0.27 -0.96,0.4 -0.01,-0.02 -0.01,-0.04 -0.02,-0.06 -0.06,-0.24 -0.13,-0.47 -0.19,-0.71 -0.13,-0.47 -0.26,-0.94 -0.39,-1.41 -0.04,-0.16 -0.3,-0.1 -0.25,0.07 l 0.38,1.42 c 0.06,0.24 0.13,0.47 0.19,0.71 0.01,0.03 0.02,0.07 0.02,0.1 -0.35,0.15 -0.69,0.29 -1.04,0.44 -0.02,-0.12 -0.04,-0.25 -0.06,-0.37 -0.06,-0.39 -0.15,-0.77 -0.27,-1.14 -0.24,-0.76 -0.61,-1.48 -1.05,-2.14 -0.09,-0.13 -0.29,-0.01 -0.21,0.12 0.42,0.66 0.73,1.36 0.96,2.1 0.11,0.35 0.19,0.7 0.26,1.06 0.03,0.16 0.04,0.33 0.06,0.5 -0.27,0.12 -0.55,0.23 -0.82,0.34 -0.07,0.03 -0.15,0.06 -0.22,0.09 -0.01,-0.05 -0.01,-0.09 -0.02,-0.14 -0.05,-0.24 -0.12,-0.49 -0.19,-0.72 -0.15,-0.47 -0.37,-0.92 -0.61,-1.35 -0.08,-0.13 -0.28,-0.01 -0.21,0.12 0.23,0.42 0.41,0.86 0.55,1.33 0.07,0.22 0.12,0.45 0.17,0.68 0.01,0.07 0.03,0.14 0.04,0.21 -0.4,0.17 -0.8,0.34 -1.21,0.51 -0.01,-0.05 -0.02,-0.11 -0.03,-0.16 -0.07,-0.36 -0.17,-0.72 -0.3,-1.06 -0.24,-0.67 -0.57,-1.3 -0.97,-1.88 -0.07,-0.1 -0.22,-0.01 -0.16,0.09 0.39,0.59 0.68,1.22 0.9,1.89 0.1,0.31 0.19,0.63 0.26,0.95 0.02,0.09 0.03,0.19 0.04,0.28 -0.45,0.19 -0.9,0.38 -1.34,0.57 -0.02,-0.06 -0.04,-0.11 -0.06,-0.17 -0.1,-0.29 -0.2,-0.58 -0.31,-0.87 -0.21,-0.57 -0.43,-1.13 -0.65,-1.69 -0.04,-0.11 -0.21,-0.07 -0.18,0.05 0.17,0.58 0.34,1.15 0.53,1.72 0.09,0.28 0.19,0.56 0.28,0.84 0.03,0.08 0.06,0.16 0.08,0.24 -0.32,0.14 -0.64,0.27 -0.96,0.41 -0.01,-0.02 -0.01,-0.05 -0.02,-0.08 -0.11,-0.4 -0.24,-0.8 -0.4,-1.18 -0.3,-0.74 -0.7,-1.44 -1.16,-2.1 -0.07,-0.1 -0.22,-0.01 -0.16,0.09 0.44,0.68 0.81,1.4 1.09,2.16 0.14,0.36 0.25,0.73 0.35,1.11 0.01,0.04 0.01,0.08 0.02,0.12 -0.3,0.13 -0.6,0.26 -0.9,0.38 -0.06,-0.27 -0.14,-0.55 -0.22,-0.81 -0.19,-0.57 -0.44,-1.12 -0.72,-1.65 -0.05,-0.09 -0.19,-0.01 -0.14,0.08 0.26,0.53 0.47,1.1 0.63,1.67 0.08,0.27 0.15,0.55 0.21,0.82 -0.39,0.17 -0.78,0.33 -1.17,0.5 -0.03,-0.18 -0.07,-0.36 -0.11,-0.54 -0.09,-0.42 -0.2,-0.84 -0.33,-1.26 -0.26,-0.81 -0.6,-1.59 -1.01,-2.33 -0.07,-0.12 -0.25,-0.01 -0.18,0.11 0.39,0.75 0.71,1.53 0.96,2.34 0.12,0.39 0.22,0.78 0.3,1.17 0.04,0.21 0.08,0.42 0.11,0.63 -0.94,0.4 -1.88,0.8 -2.82,1.2 -0.08,-0.51 -0.27,-1.03 -0.44,-1.5 -0.23,-0.62 -0.53,-1.22 -0.86,-1.8 -0.05,-0.09 -0.19,-0.01 -0.14,0.08 0.31,0.58 0.56,1.19 0.78,1.81 0.11,0.3 0.2,0.61 0.28,0.92 0.05,0.19 0.1,0.38 0.15,0.58 -0.37,0.16 -0.75,0.32 -1.12,0.48 -0.01,-0.05 -0.01,-0.09 -0.02,-0.14 -0.04,-0.24 -0.1,-0.47 -0.17,-0.7 -0.15,-0.47 -0.37,-0.92 -0.64,-1.33 -0.07,-0.1 -0.23,-0.01 -0.16,0.1 0.24,0.42 0.43,0.86 0.56,1.33 0.07,0.22 0.12,0.45 0.16,0.68 0.01,0.06 0.02,0.12 0.03,0.17 -0.31,0.13 -0.62,0.26 -0.93,0.39 0,0 0,-0.01 0,-0.02 -0.04,-0.16 -0.09,-0.32 -0.13,-0.48 -0.09,-0.31 -0.17,-0.63 -0.26,-0.94 -0.05,-0.17 -0.31,-0.1 -0.27,0.07 0.08,0.31 0.17,0.63 0.25,0.94 0.04,0.15 0.08,0.31 0.12,0.46 0.01,0.02 0.01,0.05 0.02,0.07 -0.39,0.17 -0.78,0.33 -1.17,0.5 -0.02,-0.13 -0.05,-0.27 -0.07,-0.39 -0.08,-0.42 -0.2,-0.83 -0.36,-1.23 -0.3,-0.78 -0.72,-1.48 -1.23,-2.13 -0.09,-0.12 -0.29,0.04 -0.2,0.16 0.49,0.65 0.87,1.38 1.14,2.14 0.13,0.38 0.24,0.76 0.31,1.16 0.03,0.15 0.04,0.3 0.06,0.45 -0.26,0.11 -0.51,0.22 -0.77,0.33 0.01,-0.04 0.02,-0.07 0.02,-0.11 0,-0.13 -0.04,-0.27 -0.11,-0.38 -0.04,-0.06 -0.13,-0.1 -0.2,-0.05 -0.07,0.04 -0.09,0.13 -0.05,0.2 0.01,0.01 0.01,0.02 0.02,0.03 0,0 0,0.01 0.01,0.01 0.01,0.02 0.02,0.04 0.02,0.07 0,0.01 0.01,0.02 0.01,0.04 0,0 0,0 0,0 0,0 0,0 0,0 0,0.03 0,0.05 0,0.08 0,0.01 0,0.02 0,0.03 0,0 0,0 0,0 0,0 0,0 0,0.01 0,0.03 -0.01,0.05 -0.02,0.07 0,0.01 -0.01,0.02 -0.01,0.03 0,0 0,0.01 -0.01,0.01 -0.01,0.03 -0.03,0.06 -0.03,0.1 0,0 0,0.01 0,0.01 -0.16,0.07 -0.33,0.14 -0.49,0.21 -0.02,-0.07 -0.04,-0.14 -0.07,-0.2 -0.06,-0.18 -0.13,-0.37 -0.19,-0.55 -0.13,-0.38 -0.26,-0.76 -0.39,-1.14 -0.06,-0.19 -0.36,-0.11 -0.3,0.08 0.12,0.39 0.24,0.78 0.35,1.18 0.06,0.19 0.11,0.39 0.17,0.58 0.02,0.07 0.04,0.14 0.07,0.21 -0.43,0.18 -0.86,0.37 -1.29,0.55 -0.03,-0.03 -0.06,-0.04 -0.1,-0.03 -0.12,-0.32 -0.27,-0.64 -0.4,-0.95 -0.18,-0.43 -0.36,-0.86 -0.53,-1.29 -0.06,-0.15 -0.31,-0.09 -0.25,0.07 0.17,0.44 0.34,0.88 0.51,1.33 0.13,0.34 0.26,0.7 0.4,1.04 -0.31,0.13 -0.63,0.27 -0.94,0.4 0,-0.01 -0.01,-0.02 -0.01,-0.03 -0.01,-0.03 -0.02,-0.06 -0.03,-0.09 -0.02,-0.06 -0.04,-0.12 -0.05,-0.18 -0.02,-0.07 -0.09,-0.12 -0.16,-0.09 -0.07,0.02 -0.11,0.09 -0.09,0.16 l 0.04,0.18 c 0.01,0.03 0.01,0.06 0.02,0.09 0.01,0.02 0.01,0.05 0.02,0.07 -0.23,0.1 -0.46,0.2 -0.69,0.3 -0.12,-0.22 -0.24,-0.43 -0.36,-0.65 -0.28,-0.51 -0.56,-1.01 -0.84,-1.52 -0.07,-0.14 -0.28,-0.01 -0.21,0.12 0.26,0.52 0.52,1.03 0.79,1.55 0.11,0.21 0.21,0.42 0.32,0.62 -0.17,0.07 -0.34,0.14 -0.5,0.21 -0.05,-0.11 -0.11,-0.22 -0.16,-0.33 -0.03,-0.06 -0.12,-0.08 -0.18,-0.05 -0.07,0.04 -0.08,0.12 -0.05,0.18 0.05,0.1 0.09,0.2 0.14,0.3 -0.3,0.13 -0.6,0.25 -0.9,0.38 -0.01,-0.02 -0.01,-0.04 -0.02,-0.05 -0.03,-0.06 -0.06,-0.12 -0.09,-0.19 -0.07,-0.14 -0.14,-0.28 -0.21,-0.42 -0.14,-0.27 -0.27,-0.55 -0.41,-0.82 -0.03,-0.07 -0.13,-0.09 -0.2,-0.05 -0.07,0.04 -0.08,0.13 -0.05,0.2 0.13,0.27 0.26,0.54 0.38,0.82 0.06,0.14 0.13,0.27 0.19,0.41 0.04,0.08 0.07,0.16 0.11,0.23 -0.75,0.32 -1.5,0.65 -2.25,0.97 -0.08,-0.26 -0.21,-0.51 -0.32,-0.75 -0.13,-0.32 -0.27,-0.63 -0.41,-0.95 -0.28,-0.63 -0.57,-1.25 -0.83,-1.88 -0.08,-0.19 -0.35,-0.02 -0.27,0.16 0.27,0.63 0.51,1.27 0.77,1.91 0.12,0.31 0.25,0.61 0.38,0.91 0.1,0.24 0.19,0.51 0.32,0.75 -0.32,0.14 -0.64,0.28 -0.96,0.41 -0.07,-0.1 -0.14,-0.19 -0.2,-0.29 -0.08,-0.13 -0.16,-0.27 -0.23,-0.42 -0.14,-0.29 -0.23,-0.6 -0.29,-0.91 -0.01,-0.08 -0.11,-0.12 -0.18,-0.1 -0.08,0.02 -0.12,0.1 -0.1,0.18 0.05,0.34 0.15,0.67 0.28,0.98 0.1,0.24 0.24,0.48 0.39,0.69 -0.32,0.14 -0.65,0.28 -0.97,0.42 -0.04,-0.05 -0.08,-0.1 -0.13,-0.16 -0.11,-0.14 -0.22,-0.29 -0.32,-0.44 -0.2,-0.3 -0.36,-0.61 -0.49,-0.94 -0.06,-0.16 -0.33,-0.09 -0.26,0.07 0.14,0.36 0.3,0.7 0.49,1.03 0.1,0.16 0.2,0.32 0.31,0.47 0.03,0.04 0.06,0.07 0.08,0.11 -0.36,0.16 -0.72,0.31 -1.08,0.47 -0.06,-0.12 -0.13,-0.24 -0.18,-0.36 -0.15,-0.33 -0.31,-0.67 -0.46,-1 -0.3,-0.66 -0.6,-1.31 -0.9,-1.97 -0.07,-0.15 -0.28,-0.02 -0.22,0.13 0.29,0.65 0.58,1.3 0.87,1.94 0.14,0.32 0.29,0.65 0.43,0.97 0.06,0.14 0.12,0.27 0.18,0.4 -0.35,0.15 -0.7,0.3 -1.04,0.45 -0.05,-0.08 -0.11,-0.15 -0.16,-0.23 -0.22,-0.31 -0.45,-0.62 -0.67,-0.92 -0.11,-0.15 -0.35,-0.01 -0.24,0.14 0.22,0.32 0.44,0.63 0.66,0.95 0.04,0.06 0.08,0.12 0.13,0.18 -0.51,0.22 -1.02,0.44 -1.53,0.66 -0.15,-0.19 -0.3,-0.38 -0.46,-0.57 -0.05,-0.06 -0.14,-0.05 -0.19,0 -0.06,0.06 -0.04,0.13 0,0.19 0.13,0.16 0.26,0.32 0.39,0.49 -0.42,0.18 -0.83,0.36 -1.25,0.54 -0.02,-0.07 -0.05,-0.14 -0.08,-0.21 -0.05,-0.09 -0.1,-0.19 -0.15,-0.28 -0.09,-0.17 -0.19,-0.34 -0.28,-0.51 -0.2,-0.35 -0.39,-0.71 -0.59,-1.06 -0.08,-0.14 -0.29,-0.02 -0.22,0.13 0.19,0.36 0.37,0.72 0.56,1.08 0.09,0.17 0.18,0.35 0.27,0.52 0.05,0.09 0.1,0.19 0.15,0.28 0.03,0.06 0.08,0.1 0.12,0.15 -0.4,0.17 -0.81,0.35 -1.21,0.52 -0.04,-0.07 -0.09,-0.14 -0.13,-0.21 -0.12,-0.18 -0.23,-0.36 -0.35,-0.53 -0.24,-0.36 -0.49,-0.72 -0.73,-1.08 -0.1,-0.16 -0.36,-0.01 -0.25,0.15 0.23,0.37 0.47,0.75 0.7,1.12 0.12,0.19 0.23,0.37 0.35,0.56 0.02,0.04 0.05,0.09 0.08,0.13 -0.4,0.17 -0.8,0.35 -1.2,0.52 -0.01,-0.01 -0.02,-0.02 -0.04,-0.03 -0.1,-0.08 -0.21,-0.16 -0.31,-0.24 -0.2,-0.17 -0.38,-0.37 -0.53,-0.58 -0.31,-0.43 -0.53,-0.91 -0.63,-1.43 -0.03,-0.18 -0.3,-0.1 -0.27,0.07 0.1,0.55 0.31,1.09 0.63,1.55 0.16,0.23 0.34,0.44 0.54,0.63 0.08,0.07 0.16,0.13 0.24,0.2 -0.38,0.17 -0.76,0.33 -1.14,0.49 -0.07,-0.06 -0.15,-0.13 -0.22,-0.19 -0.19,-0.18 -0.37,-0.37 -0.54,-0.58 -0.33,-0.41 -0.6,-0.85 -0.81,-1.33 -0.06,-0.14 -0.3,-0.04 -0.25,0.1 0.2,0.51 0.47,0.99 0.8,1.43 0.17,0.21 0.34,0.42 0.54,0.61 0.04,0.04 0.09,0.08 0.13,0.12 -0.46,0.2 -0.92,0.4 -1.38,0.6 -0.16,-0.11 -0.33,-0.21 -0.48,-0.34 -0.17,-0.14 -0.33,-0.3 -0.48,-0.48 -0.3,-0.35 -0.53,-0.75 -0.69,-1.17 -0.05,-0.15 -0.29,-0.09 -0.24,0.07 0.16,0.46 0.4,0.89 0.71,1.27 0.24,0.3 0.55,0.57 0.88,0.78 -0.49,0.21 -0.99,0.43 -1.48,0.64 -0.22,-0.17 -0.44,-0.33 -0.63,-0.53 -0.32,-0.32 -0.6,-0.67 -0.84,-1.05 -0.47,-0.76 -0.78,-1.61 -0.86,-2.49 -0.01,-0.14 -0.23,-0.15 -0.22,0 0.06,0.92 0.34,1.82 0.82,2.61 0.23,0.38 0.51,0.74 0.82,1.06 0.18,0.18 0.38,0.37 0.6,0.54 -0.45,0.19 -0.9,0.39 -1.34,0.58 -0.06,-0.04 -0.12,-0.07 -0.17,-0.11 -0.19,-0.14 -0.37,-0.3 -0.53,-0.48 -0.32,-0.36 -0.55,-0.78 -0.67,-1.25 -0.04,-0.14 -0.25,-0.08 -0.22,0.06 0.12,0.49 0.35,0.96 0.67,1.35 0.16,0.19 0.34,0.36 0.54,0.51 0.02,0.02 0.05,0.03 0.07,0.05 -0.44,0.19 -0.88,0.38 -1.32,0.57 -0.1,-0.09 -0.2,-0.18 -0.29,-0.27 -0.28,-0.3 -0.52,-0.63 -0.71,-0.99 -0.38,-0.71 -0.6,-1.51 -0.6,-2.31 0,-0.13 -0.2,-0.13 -0.21,0 -0.03,0.85 0.17,1.69 0.57,2.45 0.2,0.37 0.44,0.71 0.73,1.02 0.07,0.07 0.14,0.15 0.22,0.23 -0.46,0.2 -0.91,0.4 -1.37,0.6 -0.48,-0.45 -0.92,-0.91 -1.25,-1.49 -0.35,-0.61 -0.59,-1.27 -0.71,-1.96 -0.02,-0.14 -0.23,-0.08 -0.21,0.06 0.2,1.31 0.86,2.64 1.87,3.52 -0.32,0.14 -0.64,0.28 -0.97,0.42 0,0 0,0 0,0 -0.09,-0.04 -0.18,-0.09 -0.27,-0.15 -0.18,-0.12 -0.35,-0.26 -0.5,-0.42 -0.29,-0.32 -0.5,-0.7 -0.61,-1.12 -0.04,-0.15 -0.27,-0.09 -0.23,0.06 0.11,0.46 0.33,0.88 0.65,1.23 0.15,0.17 0.33,0.32 0.51,0.45 0.04,0.03 0.09,0.05 0.14,0.08 -0.27,0.12 -0.55,0.24 -0.82,0.36 -0.2,-0.14 -0.44,-0.25 -0.64,-0.4 -0.26,-0.2 -0.49,-0.44 -0.68,-0.71 -0.37,-0.53 -0.58,-1.16 -0.58,-1.82 0,-0.16 -0.25,-0.16 -0.25,0 -0.01,0.7 0.21,1.4 0.61,1.98 0.19,0.28 0.43,0.54 0.69,0.76 0.15,0.12 0.32,0.25 0.5,0.34 -0.31,0.14 -0.63,0.28 -0.94,0.41 -0.1,-0.09 -0.2,-0.17 -0.29,-0.26 -0.29,-0.3 -0.52,-0.66 -0.67,-1.04 -0.05,-0.13 -0.26,-0.08 -0.21,0.06 0.16,0.42 0.39,0.81 0.67,1.15 0.07,0.08 0.15,0.15 0.23,0.22 -0.18,0.08 -0.35,0.15 -0.53,0.23 -0.13,-0.11 -0.27,-0.21 -0.38,-0.33 -0.32,-0.34 -0.57,-0.74 -0.73,-1.18 -0.05,-0.14 -0.27,-0.08 -0.22,0.06 0.16,0.48 0.41,0.92 0.75,1.3 0.09,0.1 0.21,0.19 0.31,0.28 -0.44,0.19 -0.87,0.38 -1.31,0.57 -0.11,-0.09 -0.22,-0.18 -0.32,-0.28 -0.32,-0.34 -0.6,-0.73 -0.83,-1.14 -0.45,-0.82 -0.7,-1.76 -0.71,-2.7 0,-0.13 -0.2,-0.13 -0.2,0 -0.03,0.98 0.21,1.94 0.67,2.8 0.23,0.42 0.51,0.82 0.83,1.17 0.08,0.09 0.17,0.18 0.26,0.28 -0.41,0.18 -0.81,0.36 -1.22,0.54 -0.02,-0.04 -0.04,-0.07 -0.06,-0.11 -0.12,-0.21 -0.25,-0.42 -0.37,-0.63 -0.26,-0.44 -0.53,-0.86 -0.79,-1.29 -0.07,-0.12 -0.26,-0.01 -0.19,0.11 0.24,0.44 0.48,0.89 0.73,1.33 0.12,0.21 0.24,0.42 0.36,0.63 0.01,0.02 0.03,0.05 0.04,0.07 -0.32,0.14 -0.65,0.28 -0.97,0.43 -0.15,-0.16 -0.31,-0.31 -0.45,-0.48 -0.26,-0.32 -0.48,-0.66 -0.67,-1.02 -0.37,-0.72 -0.61,-1.5 -0.69,-2.31 -0.01,-0.16 -0.26,-0.16 -0.25,0 0.06,0.83 0.27,1.64 0.64,2.39 0.19,0.38 0.42,0.73 0.68,1.07 0.12,0.16 0.26,0.33 0.42,0.5 -0.44,0.19 -0.87,0.38 -1.31,0.57 -0.01,-0.01 -0.02,-0.01 -0.02,-0.02 -0.19,-0.19 -0.35,-0.4 -0.49,-0.63 -0.29,-0.45 -0.48,-0.96 -0.55,-1.5 -0.02,-0.17 -0.29,-0.17 -0.27,0 0.07,0.57 0.25,1.13 0.54,1.63 0.14,0.23 0.31,0.45 0.49,0.65 -0.04,0.02 -0.09,0.04 -0.13,0.06 -0.32,0.14 -0.64,0.28 -0.96,0.42 -0.09,-0.08 -0.19,-0.16 -0.28,-0.25 -0.25,-0.27 -0.47,-0.57 -0.66,-0.89 -0.38,-0.64 -0.59,-1.38 -0.64,-2.12 -0.01,-0.11 -0.18,-0.11 -0.17,0 0.04,0.77 0.26,1.51 0.62,2.2 0.18,0.34 0.39,0.65 0.64,0.94 0.07,0.08 0.16,0.16 0.23,0.25 -0.37,0.16 -0.74,0.33 -1.11,0.49 0,0 -0.01,-0.01 -0.01,-0.01 -0.13,-0.16 -0.26,-0.33 -0.37,-0.5 -0.23,-0.34 -0.43,-0.7 -0.59,-1.07 -0.05,-0.11 -0.22,-0.01 -0.17,0.1 0.17,0.38 0.36,0.75 0.6,1.09 0.11,0.17 0.23,0.33 0.35,0.48 -0.23,0.1 -0.46,0.2 -0.69,0.3 -1.22,-0.85 -2.05,-2.22 -2.19,-3.71 -0.01,-0.12 -0.21,-0.13 -0.2,0 0.13,1.52 0.93,2.91 2.15,3.81 -0.36,0.16 -0.71,0.31 -1.07,0.47 -0.05,-0.11 -0.13,-0.22 -0.19,-0.31 -0.1,-0.15 -0.2,-0.31 -0.3,-0.46 -0.2,-0.31 -0.41,-0.63 -0.61,-0.94 -0.1,-0.15 -0.33,-0.01 -0.24,0.14 0.2,0.32 0.41,0.64 0.61,0.96 0.1,0.16 0.2,0.32 0.31,0.48 0.05,0.08 0.1,0.17 0.16,0.25 -0.27,0.12 -0.54,0.24 -0.82,0.36 -0.25,-0.34 -0.53,-0.65 -0.77,-1 -0.24,-0.35 -0.46,-0.72 -0.65,-1.09 -0.4,-0.78 -0.71,-1.61 -0.91,-2.46 -0.04,-0.17 -0.29,-0.1 -0.25,0.07 0.19,0.87 0.48,1.72 0.88,2.51 0.2,0.39 0.42,0.77 0.67,1.13 0.23,0.33 0.47,0.68 0.76,0.97 -0.21,0.09 -0.42,0.19 -0.63,0.28 -0.01,-0.02 -0.01,-0.04 -0.03,-0.05 -0.67,-0.47 -1.2,-1.08 -1.48,-1.86 -0.05,-0.15 -0.3,-0.09 -0.24,0.07 0.27,0.78 0.79,1.51 1.49,1.97 -0.25,0.11 -0.49,0.23 -0.74,0.34 -0.01,-0.01 -0.01,-0.02 -0.02,-0.03 -0.57,-0.38 -1.01,-0.94 -1.23,-1.58 -0.05,-0.13 -0.26,-0.08 -0.21,0.06 0.22,0.67 0.66,1.25 1.22,1.66 -0.3,0.13 -0.59,0.28 -0.89,0.41 0.01,-0.04 0.02,-0.08 -0.01,-0.11 -0.03,-0.03 -0.07,-0.06 -0.1,-0.08 l -0.1,-0.08 c -0.06,-0.05 -0.13,-0.1 -0.19,-0.15 -0.13,-0.1 -0.26,-0.22 -0.38,-0.33 -0.06,-0.05 -0.14,0.03 -0.09,0.09 0.12,0.12 0.25,0.24 0.36,0.36 0.06,0.06 0.11,0.12 0.17,0.19 0.06,0.06 0.11,0.13 0.18,0.19 -0.29,0.13 -0.58,0.27 -0.87,0.4 -0.25,-0.29 -0.5,-0.58 -0.72,-0.91 -0.27,-0.41 -0.5,-0.85 -0.68,-1.3 -0.06,-0.14 -0.28,-0.08 -0.23,0.06 0.19,0.48 0.42,0.93 0.71,1.36 0.21,0.31 0.45,0.61 0.72,0.88 -0.26,0.12 -0.51,0.23 -0.77,0.35 0.01,-0.04 0.01,-0.08 -0.02,-0.12 -0.1,-0.13 -0.25,-0.23 -0.36,-0.34 -0.12,-0.12 -0.24,-0.25 -0.34,-0.38 -0.22,-0.26 -0.41,-0.53 -0.58,-0.83 -0.06,-0.1 -0.2,-0.01 -0.15,0.09 0.16,0.31 0.34,0.62 0.56,0.89 0.11,0.14 0.23,0.27 0.35,0.4 0.12,0.12 0.24,0.27 0.39,0.35 0,0 0,0 0,0 -0.32,0.15 -0.64,0.29 -0.95,0.44 -0.33,-0.28 -0.62,-0.6 -0.79,-1 -0.04,-0.1 -0.21,-0.03 -0.17,0.07 0.14,0.4 0.37,0.76 0.67,1.06 -0.11,0.05 -0.22,0.1 -0.33,0.15 -0.18,-0.26 -0.35,-0.52 -0.53,-0.78 0.01,-0.01 0.03,-0.02 0.04,-0.04 0.03,-0.03 0.05,-0.06 0.07,-0.1 -0.18,-0.06 -0.22,-0.11 -0.26,-0.17 z m 65.15,-40.58 c -5.84,2.52 -11.68,5.01 -17.53,7.5 -3.13,-5.89 -6.19,-11.82 -9.44,-17.63 2.3,-1.13 4.68,-2.07 7.12,-2.81 5.03,-1.52 10.29,-2.17 15.54,-2 5.25,0.17 10.46,1.17 15.41,2.94 2.76,0.99 5.42,2.24 7.96,3.72 -6.35,2.76 -12.7,5.53 -19.06,8.28 z m -28.18,-9.52 c 2.8,5.59 5.82,11.07 8.76,16.58 0.18,0.33 0.36,0.67 0.54,1 -0.88,0.38 -1.76,0.76 -2.65,1.13 -2.7,-5.12 -5.4,-10.24 -8.15,-15.34 0.24,-0.12 0.48,-0.24 0.72,-0.37 l 0.5,-0.25 c 0.04,0.06 0.06,0.12 0.1,0.17 0.06,0.08 0.17,-0.01 0.15,-0.09 -0.01,-0.06 -0.04,-0.12 -0.06,-0.18 0.22,-0.11 0.49,-0.22 0.68,-0.39 0.06,-0.06 -0.01,-0.15 -0.08,-0.13 -0.23,0.05 -0.46,0.19 -0.68,0.3 -0.03,-0.07 -0.06,-0.14 -0.09,-0.21 -0.09,-0.19 -0.17,-0.38 -0.26,-0.57 0.1,-0.07 0.21,-0.13 0.3,-0.21 0.08,-0.07 -0.01,-0.23 -0.11,-0.19 -0.11,0.04 -0.2,0.1 -0.3,0.16 -0.02,-0.04 -0.04,-0.08 -0.06,-0.12 0.04,-0.07 0.02,-0.18 -0.07,-0.17 0,0 0,0 0,0 -0.09,-0.19 -0.18,-0.38 -0.27,-0.57 0.33,-0.19 0.68,-0.37 1.03,-0.55 z m -1.99,2.45 c 0.04,0.03 0.09,0.05 0.14,0.02 0.07,-0.04 0.13,-0.08 0.2,-0.12 0,0 0,0.01 0,0.01 0.08,0.15 0.16,0.34 0.29,0.45 0.11,0.1 0.27,0 0.24,-0.14 -0.03,-0.17 -0.14,-0.34 -0.23,-0.49 0,0 0,-0.01 -0.01,-0.01 0.11,-0.06 0.21,-0.13 0.32,-0.19 0.08,-0.05 0.17,-0.1 0.26,-0.15 0.11,0.25 0.23,0.5 0.37,0.75 -0.16,0.08 -0.33,0.17 -0.49,0.25 -0.24,0.12 -0.47,0.24 -0.71,0.36 -0.12,-0.25 -0.25,-0.5 -0.38,-0.74 z m 1.11,-0.89 c -0.09,0.06 -0.19,0.12 -0.28,0.17 -0.1,0.06 -0.21,0.13 -0.31,0.19 -0.03,-0.06 -0.07,-0.13 -0.1,-0.19 l -0.03,-0.06 c 0.06,-0.02 0.11,-0.04 0.17,-0.06 0.12,-0.04 0.24,-0.08 0.36,-0.13 0.05,-0.02 0.1,-0.04 0.15,-0.06 0,0.06 0.02,0.1 0.04,0.14 z m -1,0.36 c 0.04,0.07 0.07,0.13 0.11,0.2 -0.07,0.04 -0.14,0.08 -0.21,0.13 -0.05,0.03 -0.06,0.08 -0.05,0.12 -0.09,-0.18 -0.19,-0.35 -0.28,-0.53 0.03,0.04 0.07,0.06 0.13,0.04 0.08,-0.03 0.16,-0.05 0.24,-0.08 0.01,0.03 0.04,0.07 0.06,0.12 z m 0.6,-1.23 c 0.08,0.17 0.15,0.33 0.23,0.5 -0.16,0.04 -0.32,0.1 -0.47,0.15 -0.08,0.03 -0.15,0.05 -0.23,0.08 l -0.18,-0.33 c 0.21,-0.14 0.43,-0.27 0.65,-0.4 z m -0.96,0.57 c 0.05,0.09 0.1,0.18 0.15,0.27 -0.06,0.02 -0.11,0.04 -0.17,0.06 -0.08,0.03 -0.11,0.1 -0.09,0.17 -0.05,-0.09 -0.09,-0.17 -0.14,-0.26 -0.01,-0.03 -0.03,-0.04 -0.05,-0.06 0.1,-0.06 0.2,-0.12 0.3,-0.18 z m -1.21,0.74 c 2.96,5.75 5.98,11.47 9,17.18 -7.5,3.18 -15,6.33 -22.53,9.44 -2.31,0.95 -4.62,1.9 -6.94,2.84 0.89,-3.89 2.25,-7.67 4.06,-11.22 2.73,-5.35 6.43,-10.19 10.95,-14.16 1.72,-1.49 3.55,-2.85 5.46,-4.08 z m 76.37,-9.58 c -0.01,-0.01 -0.03,-0.02 -0.04,-0.03 -0.07,-0.05 -0.14,-0.1 -0.21,-0.15 -0.1,-0.07 -0.2,-0.14 -0.3,-0.2 0.09,-0.04 0.17,-0.07 0.26,-0.11 0.1,0.15 0.2,0.32 0.29,0.49 z m -32.61,29.55 c -0.1,-0.07 -0.2,-0.13 -0.29,-0.2 0.18,-0.21 0.36,-0.41 0.53,-0.63 0.04,0.03 0.08,0.06 0.12,0.09 0.07,0.05 0.15,0.08 0.22,0.13 -0.15,0.23 -0.31,0.45 -0.45,0.68 0,0 0,0.01 -0.01,0.01 -0.05,-0.02 -0.08,-0.05 -0.12,-0.08 z m 3.31,-2.69 c -0.23,0.3 -0.45,0.6 -0.68,0.9 -0.08,-0.05 -0.15,-0.11 -0.23,-0.16 -0.09,-0.06 -0.2,-0.11 -0.29,-0.17 0.23,-0.27 0.47,-0.54 0.72,-0.8 0.15,0.08 0.31,0.16 0.48,0.23 z m -1.95,2.13 c -0.11,-0.05 -0.21,-0.12 -0.31,-0.17 0.04,-0.06 0.07,-0.11 0.11,-0.17 0.22,-0.32 0.46,-0.62 0.7,-0.92 0.09,0.06 0.19,0.11 0.28,0.17 0.08,0.06 0.17,0.12 0.25,0.18 -0.03,0.04 -0.05,0.07 -0.08,0.11 -0.23,0.31 -0.47,0.62 -0.7,0.92 -0.09,-0.04 -0.17,-0.08 -0.25,-0.12 z m -0.06,0.37 c -0.28,0.12 -0.55,0.23 -0.83,0.35 0.12,-0.2 0.26,-0.4 0.39,-0.6 0.11,0.06 0.21,0.13 0.32,0.19 0.04,0.02 0.08,0.03 0.12,0.06 z m -1.5,-1.32 c 0.22,-0.32 0.42,-0.65 0.62,-0.98 0.18,0.06 0.35,0.13 0.53,0.21 -0.25,0.35 -0.52,0.69 -0.79,1.02 -0.11,-0.09 -0.24,-0.17 -0.36,-0.25 z m 1.41,-0.66 c 0.07,0.03 0.14,0.06 0.21,0.1 0.05,0.03 0.1,0.06 0.16,0.09 -0.24,0.29 -0.47,0.58 -0.69,0.89 -0.05,0.07 -0.09,0.14 -0.14,0.21 -0.07,-0.04 -0.15,-0.08 -0.22,-0.12 -0.04,-0.02 -0.07,-0.05 -0.11,-0.08 0.28,-0.36 0.55,-0.72 0.79,-1.09 z m 0.62,-0.12 c -0.07,-0.04 -0.14,-0.09 -0.21,-0.12 -0.07,-0.03 -0.13,-0.06 -0.2,-0.09 0.15,-0.23 0.3,-0.47 0.44,-0.71 0.11,-0.05 0.22,-0.09 0.32,-0.14 0.12,0.09 0.24,0.17 0.37,0.25 -0.24,0.27 -0.49,0.54 -0.72,0.81 z m -0.66,-0.31 c -0.12,-0.05 -0.24,-0.11 -0.36,-0.16 0.22,-0.09 0.43,-0.18 0.65,-0.27 -0.11,0.14 -0.2,0.29 -0.29,0.43 z m -1.19,0.19 c -0.15,0.22 -0.31,0.44 -0.46,0.66 -0.11,-0.09 -0.22,-0.18 -0.33,-0.27 0.02,-0.03 0.05,-0.06 0.07,-0.09 0.24,-0.1 0.48,-0.2 0.72,-0.3 z m -0.97,0.63 c 0.11,0.1 0.22,0.19 0.33,0.29 -0.17,0.24 -0.32,0.48 -0.5,0.71 -0.13,-0.09 -0.27,-0.18 -0.4,-0.27 0.19,-0.25 0.38,-0.49 0.57,-0.73 z m -0.74,0.96 c 0.14,0.09 0.27,0.19 0.41,0.28 -0.03,0.05 -0.06,0.1 -0.1,0.14 -0.32,0.42 -0.65,0.83 -0.99,1.23 -0.16,-0.04 -0.33,-0.09 -0.49,-0.13 0.39,-0.51 0.78,-1.02 1.17,-1.52 z m 0.56,0.65 c 0.04,-0.06 0.08,-0.12 0.13,-0.17 0.07,0.05 0.15,0.1 0.22,0.16 0.01,0.01 0.03,0.02 0.04,0.03 -0.1,0.11 -0.19,0.22 -0.28,0.33 -0.25,0.27 -0.51,0.54 -0.76,0.82 -0.08,-0.02 -0.16,-0.04 -0.23,-0.06 0.3,-0.38 0.6,-0.74 0.88,-1.11 z m 0.53,-0.27 c -0.07,-0.05 -0.15,-0.1 -0.22,-0.15 0.17,-0.22 0.33,-0.45 0.49,-0.67 0.11,0.09 0.23,0.17 0.35,0.25 -0.17,0.21 -0.36,0.42 -0.54,0.62 -0.04,-0.02 -0.06,-0.03 -0.08,-0.05 z m 4.19,-2.57 c -0.01,0 -0.01,0 -0.02,-0.01 -0.2,-0.07 -0.39,-0.15 -0.58,-0.25 -0.03,-0.03 -0.07,-0.06 -0.11,-0.06 -0.1,-0.05 -0.18,-0.11 -0.27,-0.17 0.45,-0.19 0.9,-0.38 1.36,-0.57 0.03,0.02 0.06,0.03 0.09,0.05 0.07,0.04 0.14,0.08 0.21,0.12 -0.24,0.3 -0.46,0.6 -0.68,0.89 z m 0.91,-1.2 c -0.03,-0.01 -0.06,-0.03 -0.08,-0.04 0.06,-0.02 0.11,-0.05 0.17,-0.07 -0.03,0.03 -0.06,0.07 -0.09,0.11 z m -28.99,14.2 c -0.06,-0.1 -0.1,-0.2 -0.15,-0.3 0.21,-0.09 0.43,-0.18 0.65,-0.26 0.12,-0.04 0.23,-0.08 0.35,-0.12 0.01,0.02 0.02,0.04 0.03,0.06 0.04,0.12 0.1,0.23 0.16,0.34 -0.08,0.01 -0.17,0.03 -0.24,0.05 -0.11,0.03 -0.23,0.06 -0.34,0.1 -0.15,0.04 -0.31,0.08 -0.46,0.13 z m -2.3,-1.04 c 0.04,0.06 0.09,0.12 0.14,0.18 -0.11,0.05 -0.22,0.1 -0.33,0.14 -0.04,-0.07 -0.07,-0.13 -0.11,-0.2 0.11,-0.03 0.21,-0.08 0.3,-0.12 z m 1.07,0.91 c -0.16,-0.18 -0.29,-0.38 -0.44,-0.57 0.31,-0.13 0.62,-0.26 0.93,-0.39 0.01,0 0.02,-0.01 0.03,-0.01 0.03,0.21 0.08,0.42 0.15,0.62 -0.23,0.11 -0.45,0.22 -0.67,0.35 z m -0.69,0.47 c -0.13,-0.25 -0.27,-0.51 -0.4,-0.76 0.13,-0.05 0.25,-0.11 0.38,-0.16 0.15,0.21 0.3,0.43 0.47,0.62 -0.16,0.1 -0.31,0.2 -0.45,0.3 z m 1.64,-0.96 c -0.07,-0.2 -0.12,-0.4 -0.14,-0.61 0.2,-0.09 0.4,-0.17 0.6,-0.26 0.06,-0.03 0.13,-0.06 0.19,-0.09 0.1,0.19 0.2,0.38 0.31,0.57 -0.11,0.04 -0.21,0.07 -0.3,0.11 -0.22,0.08 -0.44,0.18 -0.66,0.28 z m 0.39,-1.45 c 0.03,0.06 0.06,0.12 0.09,0.18 -0.06,0.02 -0.11,0.05 -0.17,0.07 -0.16,0.07 -0.31,0.14 -0.47,0.2 0,-0.07 -0.01,-0.14 0,-0.21 0.19,-0.08 0.37,-0.16 0.55,-0.24 z m -0.83,0.36 c 0,0.07 0,0.14 0,0.22 -0.06,0.02 -0.11,0.05 -0.17,0.07 -0.33,0.15 -0.66,0.29 -0.99,0.44 -0.04,-0.06 -0.1,-0.11 -0.13,-0.18 0.42,-0.18 0.85,-0.36 1.29,-0.55 z m -0.56,1.99 c 0.02,0.02 0.04,0.04 0.06,0.06 l -0.3,0.09 c 0.08,-0.05 0.16,-0.1 0.24,-0.15 z m 0.27,-0.16 c 0.19,-0.11 0.38,-0.2 0.58,-0.3 0.04,0.09 0.08,0.18 0.13,0.26 l -0.57,0.16 c -0.05,-0.04 -0.09,-0.08 -0.14,-0.12 z m -18.13,8.16 c 0.11,0 0.14,-0.11 0.11,-0.19 0.18,0.02 0.37,0.03 0.55,0.05 0.45,-0.18 0.9,-0.33 1.35,-0.49 -1.19,0.48 -2.37,0.96 -3.56,1.44 0.01,-0.06 0.01,-0.11 0.02,-0.16 0.02,-0.12 0.05,-0.24 0.09,-0.36 0.01,0 0.02,0 0.03,0 0.29,0.01 0.68,0.08 0.96,-0.02 0.1,-0.04 0.16,-0.21 0.03,-0.26 -0.26,-0.11 -0.59,-0.09 -0.87,-0.09 0.03,-0.07 0.07,-0.15 0.1,-0.22 0.36,0.03 0.72,0.06 1.09,0.1 -0.05,0.07 -0.02,0.2 0.1,0.2 z m 4.43,3.62 c 0.11,0.45 0.17,0.96 0.41,1.37 0.04,0.07 0.13,0.02 0.11,-0.05 -0.07,-0.45 -0.27,-0.87 -0.35,-1.32 -0.08,-0.47 -0.11,-0.95 -0.12,-1.42 -0.02,-0.83 0.05,-1.64 0.21,-2.46 0.24,-0.1 0.47,-0.19 0.71,-0.29 -0.02,0.18 -0.03,0.36 -0.03,0.54 0,0.19 0.02,0.38 0.04,0.57 0.03,0.18 0.05,0.38 0.14,0.54 0.07,0.12 0.24,0.06 0.25,-0.07 0.01,-0.17 -0.04,-0.35 -0.05,-0.52 -0.02,-0.17 -0.03,-0.35 -0.03,-0.53 0,-0.23 0.03,-0.46 0.05,-0.69 0.52,-0.21 1.04,-0.42 1.56,-0.63 -0.06,0.28 -0.14,0.57 -0.17,0.86 -0.02,0.24 -0.03,0.47 -0.02,0.71 0.01,0.24 0.06,0.48 0.1,0.71 0.02,0.09 0.17,0.07 0.16,-0.02 -0.01,-0.23 0.02,-0.46 0.02,-0.69 0,-0.23 0.01,-0.46 0.03,-0.69 0.03,-0.34 0.09,-0.67 0.17,-0.99 0.45,-0.18 0.91,-0.36 1.36,-0.55 -0.05,0.33 -0.08,0.66 -0.07,0.99 0.01,0.22 0.03,0.43 0.06,0.64 0.02,0.11 0.04,0.21 0.07,0.31 0.03,0.1 0.05,0.21 0.12,0.29 0.05,0.06 0.17,0.03 0.18,-0.05 0.02,-0.09 -0.01,-0.18 -0.02,-0.28 -0.02,-0.1 -0.02,-0.2 -0.04,-0.3 -0.04,-0.21 -0.06,-0.41 -0.07,-0.62 -0.02,-0.37 -0.01,-0.74 0.04,-1.11 0.46,-0.18 0.91,-0.37 1.37,-0.55 -0.01,0.01 -0.02,0.01 -0.02,0.03 -0.15,0.89 -0.2,1.88 0.12,2.74 0.03,0.07 0.15,0.07 0.14,-0.02 -0.03,-0.44 -0.09,-0.87 -0.1,-1.31 -0.01,-0.45 0.02,-0.89 0.09,-1.33 0.01,-0.08 -0.04,-0.13 -0.1,-0.15 0.43,-0.17 0.86,-0.34 1.28,-0.51 0.02,0.14 0.05,0.29 0.07,0.43 0.02,0.16 0.05,0.31 0.08,0.47 -0.06,0.01 -0.12,0.02 -0.18,0.04 -0.11,0.03 -0.19,0.09 -0.25,0.15 -0.15,0.03 -0.29,0.13 -0.34,0.34 -0.23,0.89 -0.27,1.84 -0.32,2.76 -0.02,0.03 -0.02,0.04 0,0.07 -0.05,0.96 -0.08,1.92 -0.11,2.88 -0.05,1.86 -0.05,3.73 -0.01,5.59 0.04,1.86 0.08,3.72 0.18,5.58 0.01,0.24 0.04,0.47 0.05,0.71 -0.34,-0.9 -0.63,-1.81 -0.87,-2.74 -0.04,-0.15 -0.27,-0.09 -0.23,0.06 0.29,1.26 0.7,2.49 1.18,3.69 0.03,0.39 0.05,0.77 0.08,1.16 0.04,0.48 0.07,0.96 0.11,1.45 -0.59,-1 -1.12,-2.05 -1.54,-3.13 -0.05,-0.12 -0.24,-0.07 -0.19,0.05 0.44,1.22 0.98,2.41 1.6,3.55 0.08,0.14 0.17,0.28 0.26,0.42 0.03,0.19 0.04,0.38 0.08,0.56 0.07,0.34 0.32,0.52 0.61,0.57 0.03,0.04 0.05,0.08 0.07,0.12 0.19,0.28 0.38,0.55 0.58,0.81 0.06,0.09 0.13,0.19 0.2,0.28 -0.35,0.15 -0.69,0.29 -1.04,0.44 -0.03,-0.03 -0.05,-0.05 -0.08,-0.08 -0.25,-0.28 -0.5,-0.56 -0.73,-0.85 -0.5,-0.63 -0.96,-1.3 -1.36,-2 -0.79,-1.37 -1.4,-2.86 -1.76,-4.4 -0.04,-0.19 -0.33,-0.11 -0.29,0.08 0.37,1.6 0.94,3.12 1.75,4.55 0.4,0.69 0.84,1.35 1.33,1.98 0.24,0.31 0.49,0.6 0.75,0.89 -0.31,0.13 -0.62,0.26 -0.93,0.39 -0.25,-0.29 -0.5,-0.58 -0.74,-0.88 -0.5,-0.62 -0.98,-1.27 -1.42,-1.94 -0.86,-1.32 -1.61,-2.72 -2.2,-4.18 -0.06,-0.15 -0.3,-0.09 -0.24,0.07 0.65,1.65 1.45,3.22 2.41,4.7 0.48,0.74 1,1.45 1.56,2.13 0.07,0.09 0.15,0.18 0.22,0.28 -0.15,0.06 -0.3,0.13 -0.45,0.19 -0.09,-0.13 -0.21,-0.25 -0.31,-0.37 -0.14,-0.16 -0.27,-0.32 -0.41,-0.49 -0.26,-0.32 -0.51,-0.65 -0.76,-0.98 -0.48,-0.66 -0.93,-1.34 -1.35,-2.04 -0.07,-0.12 -0.26,-0.01 -0.19,0.11 0.43,0.73 0.89,1.43 1.39,2.12 0.24,0.33 0.49,0.65 0.74,0.96 0.21,0.26 0.43,0.55 0.67,0.78 -0.35,0.15 -0.69,0.29 -1.04,0.44 -0.36,-0.38 -0.74,-0.75 -1.08,-1.14 -0.43,-0.49 -0.83,-1 -1.2,-1.53 -0.74,-1.04 -1.38,-2.15 -1.91,-3.31 -0.07,-0.15 -0.29,-0.02 -0.22,0.13 0.54,1.19 1.19,2.32 1.95,3.39 0.36,0.51 0.75,1 1.16,1.48 0.33,0.38 0.67,0.75 1.04,1.1 -0.39,0.17 -0.79,0.33 -1.18,0.5 -0.12,-0.09 -0.24,-0.18 -0.35,-0.27 -0.26,-0.22 -0.5,-0.45 -0.73,-0.7 -0.45,-0.52 -0.83,-1.1 -1.12,-1.72 -0.05,-0.1 -0.2,-0.01 -0.15,0.09 0.3,0.63 0.68,1.21 1.13,1.73 0.23,0.26 0.47,0.51 0.73,0.74 0.09,0.08 0.18,0.15 0.27,0.22 -0.35,0.15 -0.69,0.29 -1.04,0.44 -0.18,-0.17 -0.37,-0.32 -0.54,-0.49 -0.3,-0.28 -0.59,-0.57 -0.86,-0.87 -0.54,-0.59 -1.04,-1.23 -1.48,-1.9 -0.88,-1.37 -1.54,-2.87 -1.96,-4.44 -0.04,-0.15 -0.26,-0.08 -0.23,0.06 0.4,1.6 1.06,3.13 1.95,4.52 0.43,0.68 0.91,1.32 1.44,1.93 0.28,0.32 0.57,0.63 0.87,0.92 0.14,0.14 0.29,0.29 0.44,0.43 -0.39,0.16 -0.77,0.33 -1.16,0.49 -0.15,-0.14 -0.3,-0.27 -0.44,-0.4 -0.24,-0.24 -0.48,-0.48 -0.71,-0.73 -0.47,-0.53 -0.91,-1.1 -1.3,-1.69 -0.76,-1.17 -1.36,-2.44 -1.75,-3.77 -0.04,-0.12 -0.22,-0.07 -0.18,0.05 0.39,1.36 0.97,2.66 1.73,3.85 0.37,0.58 0.79,1.14 1.23,1.66 0.23,0.27 0.47,0.53 0.72,0.78 0.12,0.12 0.25,0.26 0.38,0.39 -0.31,0.13 -0.62,0.27 -0.94,0.4 -0.21,-0.11 -0.42,-0.22 -0.61,-0.39 -0.26,-0.24 -0.5,-0.51 -0.73,-0.77 -0.52,-0.6 -1.02,-1.22 -1.48,-1.87 -0.91,-1.27 -1.73,-2.6 -2.41,-4.01 -0.06,-0.12 -0.24,-0.01 -0.18,0.11 0.69,1.5 1.5,2.95 2.47,4.29 0.46,0.64 0.96,1.27 1.48,1.87 0.27,0.32 0.62,0.71 1.01,0.97 -0.31,0.13 -0.61,0.26 -0.92,0.39 -0.47,-0.42 -0.95,-0.84 -1.39,-1.3 -0.55,-0.56 -1.06,-1.17 -1.52,-1.81 -0.93,-1.27 -1.77,-2.65 -2.36,-4.11 -0.03,-0.06 -0.13,-0.04 -0.11,0.03 0.57,1.52 1.27,2.96 2.22,4.28 0.8,1.1 1.73,2.19 2.79,3.07 -0.33,0.14 -0.67,0.28 -1,0.43 -0.16,-0.16 -0.33,-0.31 -0.49,-0.47 -0.27,-0.26 -0.52,-0.53 -0.77,-0.81 -0.52,-0.58 -1.01,-1.18 -1.47,-1.81 -0.89,-1.24 -1.65,-2.6 -2.23,-4.01 -0.05,-0.11 -0.24,-0.07 -0.19,0.05 0.57,1.45 1.28,2.82 2.15,4.11 0.43,0.63 0.89,1.24 1.39,1.82 0.25,0.29 0.52,0.58 0.79,0.86 0.13,0.13 0.26,0.29 0.41,0.43 -0.24,0.1 -0.49,0.21 -0.73,0.31 -0.17,-0.18 -0.35,-0.35 -0.51,-0.53 -0.26,-0.27 -0.51,-0.56 -0.76,-0.84 -0.51,-0.6 -0.98,-1.23 -1.4,-1.89 -0.41,-0.64 -0.78,-1.3 -1.11,-1.97 -0.35,-0.71 -0.7,-1.43 -0.95,-2.18 -0.02,-0.05 -0.09,-0.03 -0.07,0.02 0.23,0.73 0.45,1.46 0.77,2.16 0.33,0.73 0.71,1.43 1.13,2.11 0.41,0.65 0.85,1.28 1.33,1.89 0.24,0.31 0.5,0.61 0.76,0.9 0.15,0.16 0.3,0.33 0.46,0.49 -0.14,0.06 -0.28,0.12 -0.42,0.18 -1.53,-1.84 -2.93,-3.81 -4.16,-5.87 0.12,-1.77 -0.23,-3.56 -0.94,-5.18 -0.72,-1.63 -1.88,-3.01 -3.32,-4.01 -0.28,-0.82 -0.55,-1.65 -0.78,-2.49 -0.24,-0.87 -0.45,-1.76 -0.57,-2.65 -0.12,-0.88 -0.04,-1.71 0.05,-2.58 0.17,-0.07 0.34,-0.14 0.52,-0.21 -0.01,0.12 -0.02,0.24 -0.03,0.34 -0.03,0.31 -0.04,0.62 -0.02,0.92 0.02,0.29 0.05,0.59 0.1,0.88 0.05,0.28 0.1,0.61 0.25,0.86 0.06,0.09 0.19,0.05 0.2,-0.05 0.02,-0.28 -0.07,-0.59 -0.09,-0.88 -0.02,-0.28 -0.04,-0.55 -0.04,-0.83 0,-0.28 0,-0.56 0.01,-0.83 0.01,-0.14 0.02,-0.28 0.03,-0.42 0.01,-0.06 0.01,-0.1 0.01,-0.15 1.14,-0.46 2.28,-0.92 3.43,-1.37 -0.11,0.4 -0.14,0.85 -0.16,1.24 -0.03,0.53 -0.04,1.07 0.01,1.6 0.05,0.5 0.19,0.98 0.29,1.47 0.1,0.48 0.12,1.05 0.38,1.48 0.03,0.06 0.14,0.04 0.13,-0.04 -0.03,-0.47 -0.25,-0.93 -0.35,-1.39 -0.11,-0.51 -0.08,-1.04 -0.1,-1.56 -0.02,-0.49 -0.03,-0.97 -0.01,-1.46 0.01,-0.25 0.03,-0.5 0.06,-0.75 0.02,-0.23 0.07,-0.47 0.07,-0.71 0.46,-0.18 0.92,-0.37 1.37,-0.55 -0.16,0.38 -0.26,0.77 -0.29,1.19 -0.03,0.5 0.05,1.05 0.31,1.48 0.05,0.08 0.2,0.05 0.19,-0.05 -0.03,-0.24 -0.06,-0.47 -0.08,-0.71 -0.03,-0.23 -0.03,-0.47 -0.03,-0.7 0.01,-0.46 0.09,-0.91 0.24,-1.35 0.61,-0.25 1.23,-0.49 1.84,-0.74 -0.06,0.32 -0.12,0.65 -0.13,0.98 -0.01,0.2 0.01,0.39 0.03,0.59 0.01,0.09 0.02,0.19 0.03,0.28 0.01,0.1 0.05,0.2 0.09,0.3 0.04,0.12 0.22,0.1 0.22,-0.03 0,-0.09 0.01,-0.18 0.01,-0.27 0,-0.09 -0.01,-0.18 -0.01,-0.27 -0.01,-0.19 0,-0.38 0,-0.57 0.01,-0.37 0.04,-0.74 0.11,-1.1 0,-0.01 -0.01,-0.02 -0.01,-0.03 0.5,-0.2 1.01,-0.4 1.51,-0.61 -0.03,0.03 -0.05,0.06 -0.06,0.11 l -0.11,1.17 c -0.02,0.19 -0.04,0.37 -0.05,0.56 0,0.1 0,0.2 0,0.3 0,0.1 -0.01,0.2 0.03,0.3 0.03,0.1 0.19,0.14 0.24,0.03 0.08,-0.17 0.09,-0.4 0.11,-0.58 0.02,-0.19 0.03,-0.39 0.04,-0.58 0.02,-0.4 0.04,-0.79 0.06,-1.19 0.01,-0.11 -0.07,-0.16 -0.15,-0.16 0.52,-0.21 1.04,-0.42 1.57,-0.63 -0.02,0.21 -0.04,0.41 -0.06,0.62 -0.02,0.2 -0.04,0.4 -0.05,0.61 -0.01,0.1 0,0.21 0,0.31 0,0.1 -0.01,0.2 0.01,0.3 0.02,0.1 0.18,0.13 0.22,0.03 0.04,-0.09 0.05,-0.19 0.07,-0.29 0.02,-0.1 0.04,-0.21 0.05,-0.31 0.02,-0.21 0.04,-0.42 0.06,-0.63 0.02,-0.26 0.04,-0.52 0.06,-0.79 0.58,-0.23 1.15,-0.46 1.73,-0.69 -0.03,0.34 -0.06,0.68 -0.09,1.03 -0.02,0.21 -0.03,0.43 -0.04,0.65 -0.01,0.22 -0.02,0.46 0.02,0.67 0.02,0.11 0.18,0.09 0.21,0 0.07,-0.21 0.09,-0.45 0.11,-0.67 0.02,-0.22 0.04,-0.43 0.05,-0.65 0.02,-0.39 0.04,-0.77 0.06,-1.16 0.46,-0.18 0.92,-0.37 1.38,-0.55 -0.17,0.78 -0.25,1.59 -0.19,2.37 0.07,0.44 0.15,0.9 0.26,1.36 z m 7.82,21.59 c -0.1,-0.04 -0.2,-0.08 -0.3,-0.13 -0.09,-0.04 -0.19,-0.03 -0.24,0.06 -0.04,0.07 -0.02,0.2 0.06,0.24 0.09,0.04 0.17,0.07 0.26,0.11 -0.12,0.16 -0.23,0.31 -0.35,0.47 -0.02,0 -0.04,-0.01 -0.06,0 -0.01,0 -0.03,0.01 -0.04,0.01 0,0 -0.01,0 -0.02,0 -0.05,0.01 -0.11,0.01 -0.16,0 -0.01,0 -0.03,0 -0.04,0 -0.03,0 0,0 -0.01,0 -0.03,0 -0.05,-0.01 -0.08,-0.02 -0.03,-0.01 -0.05,-0.01 -0.08,-0.02 -0.01,0 -0.02,-0.01 -0.03,-0.01 0,0 -0.02,-0.01 -0.02,-0.01 -0.1,-0.05 -0.18,-0.1 -0.25,-0.17 -0.03,-0.03 -0.05,-0.06 -0.07,-0.09 0.14,-0.19 0.28,-0.37 0.42,-0.56 0.53,-0.23 1.07,-0.45 1.6,-0.68 -0.2,0.28 -0.39,0.54 -0.59,0.8 z m -4.52,6.08 c -0.08,-0.02 -0.16,-0.03 -0.24,-0.04 -0.13,-0.03 -0.26,-0.06 -0.38,-0.09 -0.23,-0.07 -0.45,-0.16 -0.66,-0.26 0.28,-0.3 0.54,-0.6 0.81,-0.91 0.1,0.05 0.2,0.11 0.3,0.15 0.27,0.11 0.56,0.23 0.85,0.25 -0.23,0.29 -0.46,0.59 -0.68,0.9 z m -3.01,0.84 c -0.12,-0.07 -0.24,-0.14 -0.36,-0.21 0.23,-0.28 0.45,-0.56 0.68,-0.84 0.08,0.05 0.16,0.1 0.23,0.16 0.09,0.06 0.18,0.12 0.27,0.18 -0.24,0.26 -0.47,0.52 -0.71,0.78 -0.03,-0.03 -0.07,-0.05 -0.11,-0.07 z m 4.95,-6.37 c -0.34,0.31 -0.67,0.63 -1,0.94 -0.16,-0.11 -0.32,-0.21 -0.48,-0.32 0.49,-0.2 0.99,-0.41 1.48,-0.62 z m 1.16,-0.49 c -0.05,0.06 -0.1,0.12 -0.15,0.18 -0.03,-0.03 -0.07,-0.05 -0.12,-0.03 -0.07,0.02 -0.12,0.1 -0.09,0.16 0.01,0.03 0.03,0.05 0.04,0.07 -0.18,0.23 -0.37,0.45 -0.56,0.68 -0.01,-0.02 -0.04,-0.03 -0.05,-0.05 -0.09,-0.15 -0.32,-0.02 -0.23,0.14 0.03,0.05 0.08,0.08 0.11,0.12 -0.16,0.19 -0.32,0.39 -0.48,0.58 -0.01,0 -0.01,-0.01 -0.02,-0.01 -0.12,-0.08 -0.24,-0.16 -0.36,-0.24 0.36,-0.35 0.72,-0.71 1.1,-1.05 0.07,-0.07 0.04,-0.15 -0.02,-0.2 0.28,-0.11 0.55,-0.23 0.83,-0.35 z M 263,368.01 C 262.99,368 262.98,368 262.97,368 c -0.18,-0.1 -0.33,-0.23 -0.49,-0.36 0.23,-0.24 0.45,-0.48 0.68,-0.72 0.1,0.08 0.2,0.15 0.29,0.23 0.05,0.04 0.1,0.08 0.16,0.12 -0.2,0.24 -0.39,0.49 -0.59,0.72 C 263.01,368 263,368 263,368.01 Z m -3.01,2.01 c -0.13,-0.09 -0.27,-0.18 -0.4,-0.26 0.12,-0.13 0.23,-0.27 0.35,-0.4 0.1,0.12 0.22,0.22 0.33,0.32 -0.09,0.11 -0.18,0.21 -0.27,0.32 0,0.01 0,0.01 -0.01,0.02 z m -0.88,-0.58 c 0.4,-0.51 0.79,-1.02 1.19,-1.53 0.08,0.09 0.18,0.16 0.26,0.24 -0.38,0.5 -0.76,0.99 -1.12,1.51 -0.1,-0.08 -0.21,-0.15 -0.33,-0.22 z m 1,-0.26 c 0,0 0,0 0,0 0.22,-0.27 0.45,-0.54 0.68,-0.82 0.12,0.1 0.23,0.19 0.36,0.28 -0.24,0.28 -0.48,0.56 -0.71,0.85 -0.11,-0.1 -0.23,-0.2 -0.33,-0.31 z m 0.83,-1 c 0.16,-0.2 0.33,-0.4 0.49,-0.6 0.09,-0.11 0.18,-0.23 0.28,-0.34 0.11,0.14 0.22,0.28 0.35,0.41 -0.18,0.19 -0.37,0.38 -0.55,0.57 -0.07,0.08 -0.13,0.16 -0.2,0.24 -0.13,-0.09 -0.25,-0.19 -0.37,-0.28 z m 1.96,-2.36 c 0.19,0.13 0.37,0.25 0.56,0.38 -0.12,0.11 -0.24,0.22 -0.36,0.34 -0.18,-0.14 -0.35,-0.27 -0.53,-0.41 0.07,-0.08 0.13,-0.17 0.19,-0.26 0.05,-0.01 0.1,-0.03 0.14,-0.05 z m -0.49,0.53 c 0.17,0.13 0.34,0.26 0.5,0.39 -0.23,0.23 -0.45,0.47 -0.67,0.7 -0.14,-0.13 -0.26,-0.27 -0.37,-0.42 0.18,-0.22 0.36,-0.45 0.54,-0.67 z m -0.65,2.05 c 0.17,-0.19 0.36,-0.37 0.53,-0.56 0.16,0.14 0.33,0.28 0.51,0.39 -0.22,0.25 -0.44,0.49 -0.66,0.73 -0.09,-0.05 -0.19,-0.08 -0.29,-0.14 -0.1,-0.06 -0.19,-0.13 -0.29,-0.2 0.07,-0.07 0.13,-0.14 0.2,-0.22 z m 1.86,-1.46 c -0.09,-0.07 -0.18,-0.14 -0.27,-0.21 0.12,-0.12 0.25,-0.23 0.37,-0.35 0.13,0.09 0.27,0.18 0.4,0.27 0,0 0,0 0.01,0 -0.11,0.14 -0.22,0.28 -0.34,0.41 -0.06,-0.04 -0.12,-0.08 -0.17,-0.12 z m -1.52,-0.78 c -0.33,0.41 -0.65,0.84 -0.98,1.25 -0.14,0.18 -0.27,0.37 -0.41,0.56 -0.09,-0.08 -0.18,-0.15 -0.26,-0.24 0.34,-0.43 0.67,-0.86 1.01,-1.29 0.21,-0.1 0.42,-0.19 0.64,-0.28 z m -3.15,3.49 c 0.12,0.08 0.24,0.16 0.36,0.24 0,0.05 0.05,0.09 0.1,0.06 0.14,0.09 0.28,0.19 0.42,0.28 -0.23,0.29 -0.45,0.58 -0.67,0.87 -0.28,-0.17 -0.57,-0.33 -0.85,-0.5 -0.03,-0.02 -0.07,-0.02 -0.1,-0.01 0.25,-0.3 0.49,-0.62 0.74,-0.94 z m 1.49,0.66 c -0.07,-0.05 -0.15,-0.1 -0.22,-0.15 0.01,-0.01 0.02,-0.03 0.04,-0.04 0.07,-0.09 0.15,-0.17 0.22,-0.25 0.16,0.14 0.34,0.25 0.52,0.36 -0.09,0.09 -0.17,0.19 -0.26,0.28 -0.1,-0.07 -0.2,-0.13 -0.3,-0.2 z m 0.19,-0.63 c 0.25,-0.29 0.51,-0.58 0.76,-0.87 0.11,0.07 0.21,0.16 0.33,0.23 0.08,0.04 0.16,0.07 0.24,0.12 -0.27,0.29 -0.53,0.59 -0.8,0.89 -0.18,-0.12 -0.36,-0.23 -0.53,-0.37 z m 2.89,-0.15 c -0.01,-0.01 0,-0.03 -0.02,-0.04 -0.26,-0.12 -0.55,-0.17 -0.81,-0.27 -0.09,-0.03 -0.18,-0.09 -0.27,-0.13 0.22,-0.25 0.44,-0.49 0.66,-0.74 0.17,0.08 0.34,0.18 0.52,0.24 0.13,0.04 0.27,0.09 0.41,0.11 0.03,0.01 0.08,0.01 0.12,0.02 -0.21,0.27 -0.41,0.54 -0.61,0.81 z m 0.79,-1.06 c -0.07,-0.01 -0.14,-0.03 -0.21,-0.04 -0.13,-0.03 -0.26,-0.06 -0.39,-0.1 -0.15,-0.05 -0.29,-0.13 -0.44,-0.19 0.19,-0.22 0.37,-0.46 0.56,-0.68 0.05,0.04 0.11,0.08 0.16,0.13 0.09,0.07 0.18,0.14 0.26,0.2 0.09,0.07 0.18,0.15 0.3,0.17 0.07,0.01 0.13,-0.08 0.11,-0.14 -0.04,-0.11 -0.13,-0.17 -0.22,-0.23 -0.09,-0.07 -0.17,-0.13 -0.26,-0.2 -0.06,-0.04 -0.11,-0.09 -0.17,-0.13 0.12,-0.14 0.23,-0.28 0.35,-0.43 0.12,0.08 0.24,0.16 0.35,0.24 0.11,0.07 0.21,0.14 0.32,0.22 0.04,0.02 0.08,0.05 0.11,0.08 -0.27,0.35 -0.55,0.72 -0.83,1.1 z m 1,-1.35 c -0.03,-0.02 -0.06,-0.06 -0.1,-0.08 -0.11,-0.07 -0.21,-0.14 -0.32,-0.21 -0.12,-0.08 -0.24,-0.16 -0.36,-0.24 0.14,-0.18 0.29,-0.35 0.43,-0.52 0.13,0.1 0.28,0.18 0.44,0.22 0.15,0.04 0.31,0.05 0.47,0.03 0.01,0 0.02,-0.01 0.03,-0.01 -0.19,0.28 -0.39,0.54 -0.59,0.81 z m 0.86,-1.16 c -0.05,0.01 -0.09,0.02 -0.14,0.03 -0.07,0.02 -0.13,0.03 -0.19,0.03 -0.11,0.01 -0.24,0.01 -0.35,-0.02 -0.13,-0.03 -0.24,-0.08 -0.35,-0.16 0.17,-0.22 0.33,-0.45 0.5,-0.67 0.1,0.12 0.21,0.22 0.35,0.28 0.13,0.06 0.26,0.1 0.4,0.11 0.03,0 0.05,0 0.08,0 -0.1,0.15 -0.2,0.27 -0.3,0.4 z m 2.14,-4.52 c -0.18,-0.24 -0.36,-0.49 -0.54,-0.73 0.12,-0.05 0.24,-0.11 0.32,-0.21 0.08,0.01 0.16,0.03 0.24,0.04 0.12,0.39 0.36,0.76 0.6,1.11 -0.11,0.05 -0.22,0.1 -0.34,0.14 -0.09,-0.12 -0.19,-0.23 -0.28,-0.35 z m -23.52,11.69 c -0.09,-0.05 -0.19,-0.09 -0.27,-0.14 -0.16,-0.09 -0.31,-0.18 -0.45,-0.28 -0.3,-0.21 -0.57,-0.47 -0.81,-0.74 -0.28,-0.32 -0.5,-0.68 -0.68,-1.06 0.35,-0.12 0.7,-0.25 1.03,-0.4 0.09,-0.04 0.17,-0.09 0.26,-0.13 0.22,0.43 0.48,0.84 0.8,1.2 0.23,0.26 0.5,0.5 0.78,0.72 0.14,0.11 0.28,0.21 0.43,0.3 0.03,0.02 0.06,0.03 0.09,0.05 -0.39,0.16 -0.78,0.32 -1.18,0.48 z m 1.7,-0.69 c -0.05,0.02 -0.11,0.04 -0.17,0.07 -0.08,-0.05 -0.16,-0.11 -0.24,-0.16 -0.14,-0.09 -0.28,-0.18 -0.42,-0.29 -0.27,-0.2 -0.51,-0.43 -0.74,-0.67 -0.32,-0.34 -0.58,-0.73 -0.81,-1.14 0.42,-0.22 0.82,-0.45 1.2,-0.72 0.24,0.51 0.54,0.98 0.93,1.39 0.23,0.24 0.49,0.46 0.77,0.66 0.14,0.1 0.28,0.19 0.43,0.28 0.04,0.02 0.1,0.06 0.16,0.09 -0.37,0.17 -0.74,0.34 -1.11,0.49 z m 1.43,-0.63 c -0.09,-0.07 -0.21,-0.12 -0.3,-0.17 -0.14,-0.08 -0.27,-0.16 -0.4,-0.25 -0.28,-0.19 -0.54,-0.4 -0.78,-0.64 -0.4,-0.39 -0.73,-0.84 -1,-1.33 0.36,-0.26 0.7,-0.55 1.01,-0.86 0.44,1.19 1.27,2.2 2.36,2.85 -0.29,0.14 -0.59,0.27 -0.89,0.4 z m 1.74,-0.76 c -0.05,-0.02 -0.11,-0.02 -0.15,0.04 0,0.01 0,0.02 -0.01,0.02 -0.08,0.03 -0.15,0.07 -0.23,0.1 -1.17,-0.62 -2.12,-1.62 -2.59,-2.86 0.29,-0.3 0.56,-0.61 0.81,-0.94 0.34,0.57 0.71,1.12 1.11,1.65 0.39,0.52 0.81,1.07 1.31,1.48 0.13,0.1 0.28,-0.05 0.18,-0.18 -0.2,-0.25 -0.43,-0.48 -0.64,-0.73 -0.21,-0.24 -0.42,-0.49 -0.62,-0.74 -0.41,-0.51 -0.78,-1.05 -1.13,-1.61 -0.02,-0.03 -0.05,-0.05 -0.08,-0.06 0.16,-0.22 0.3,-0.44 0.44,-0.66 0.11,0.18 0.22,0.36 0.33,0.54 0.69,1.12 1.6,2.52 2.78,3.25 -0.41,0.19 -0.81,0.38 -1.22,0.57 -0.1,0.05 -0.2,0.09 -0.29,0.13 z m -0.82,-6.1 c 0.07,-0.19 0.12,-0.38 0.17,-0.57 0.13,0.21 0.26,0.43 0.39,0.63 0.93,1.45 1.96,2.83 3.02,4.19 -1.35,-0.34 -2.28,-2 -2.97,-3.04 -0.23,-0.35 -0.45,-0.71 -0.67,-1.07 0.02,-0.05 0.04,-0.09 0.06,-0.14 z m -5.76,-12.9 c -0.25,-0.91 -0.48,-1.82 -0.67,-2.73 -0.19,-0.93 -0.31,-1.88 -0.28,-2.84 0.01,-0.45 0.09,-0.86 0.2,-1.26 0.07,-0.02 0.14,-0.05 0.21,-0.07 0.13,-0.04 0.23,-0.11 0.31,-0.19 0.03,0.04 0.07,0.09 0.1,0.13 -0.58,1.52 -0.36,3.43 -0.02,4.97 0.16,0.73 0.36,1.45 0.58,2.16 -0.15,-0.06 -0.29,-0.11 -0.43,-0.17 z M 235.92,346 c -0.82,0.33 -1.62,0.68 -2.43,1.03 -0.01,-0.11 -0.02,-0.22 -0.04,-0.32 3.31,-1.46 6.62,-2.94 9.93,-4.4 1.25,0.12 2.49,0.24 3.74,0.35 -1.29,0.52 -2.57,1.04 -3.86,1.56 -0.08,0.03 -0.16,0.06 -0.23,0.09 -0.02,-0.19 -0.11,-0.37 -0.24,-0.49 0,0 0,0 0,0 0.19,-0.49 -0.58,-0.94 -0.9,-0.52 -0.15,0.2 -0.28,0.41 -0.4,0.62 -1.87,0.66 -3.73,1.34 -5.57,2.08 z m -5.74,3.23 c 0.02,0.06 0.05,0.12 0.09,0.16 -0.05,0.02 -0.09,0.04 -0.14,0.05 0.02,-0.06 0.04,-0.13 0.05,-0.21 z m 0.03,-0.33 c -0.02,0.02 -0.02,0.05 -0.02,0.08 -0.06,-0.28 -0.48,-0.32 -0.67,-0.1 -0.12,0.14 -0.21,0.3 -0.3,0.47 -0.03,-0.25 -0.07,-0.5 -0.1,-0.75 0.73,-0.32 1.47,-0.64 2.2,-0.96 0.01,0.11 0.03,0.21 0.04,0.32 -0.47,0.25 -0.9,0.54 -1.15,0.94 z m 23.06,-9.69 c -0.22,0 -0.43,-0.01 -0.65,-0.01 -0.16,0 -0.31,-0.01 -0.47,-0.01 0.04,-0.11 0.07,-0.22 0.12,-0.32 0.38,0.03 0.76,0.07 1.14,0.1 -0.04,0.08 -0.1,0.16 -0.14,0.24 z m -1.36,1.52 c 0,-0.01 0,-0.02 0,-0.02 0,-0.06 0,-0.12 0,-0.18 0,0 0,0 0,0 0.14,0.01 0.28,0.02 0.41,0.03 -0.13,0.06 -0.27,0.11 -0.41,0.17 z m -4.57,0.15 c 0.02,-0.11 0.04,-0.22 0.06,-0.32 0.21,-0.09 0.43,-0.18 0.64,-0.28 0.09,0.01 0.18,0.01 0.27,0.02 l -0.06,0.16 c -0.06,0.16 -0.12,0.33 -0.18,0.49 -0.06,0.16 -0.17,0.37 -0.09,0.54 0.01,0.03 0.04,0.05 0.07,0.07 -0.28,-0.03 -0.56,-0.05 -0.84,-0.08 0.01,-0.05 0.02,-0.11 0.03,-0.16 0.04,-0.15 0.07,-0.3 0.1,-0.44 z m 1.78,0.77 c -0.32,-0.03 -0.64,-0.06 -0.96,-0.09 0.02,-0.01 0.04,0 0.06,-0.02 0.04,-0.04 0.08,-0.06 0.11,-0.11 0.02,-0.04 0.03,-0.08 0.05,-0.12 0.03,-0.08 0.06,-0.17 0.09,-0.26 0.05,-0.17 0.11,-0.33 0.16,-0.5 0.03,-0.08 0.05,-0.16 0.08,-0.24 0.17,0.01 0.34,0.02 0.51,0.03 -0.02,0.11 -0.05,0.22 -0.07,0.33 -0.03,0.17 -0.05,0.35 -0.06,0.52 -0.01,0.17 -0.03,0.33 0.03,0.46 z m 0.41,0.04 c -0.04,0 -0.08,-0.01 -0.12,-0.01 0.08,-0.12 0.08,-0.29 0.09,-0.43 0.02,-0.17 0.04,-0.34 0.06,-0.51 0.02,-0.12 0.05,-0.23 0.07,-0.35 0.17,0.01 0.35,0.02 0.52,0.03 0.15,0.01 0.3,0.02 0.46,0.03 -0.01,0.08 -0.03,0.16 -0.04,0.24 -0.01,0.15 -0.02,0.3 -0.02,0.45 0,0.05 0,0.09 0,0.13 -0.34,0.14 -0.68,0.28 -1.02,0.42 z m 1.44,-2.69 c -0.02,0.05 -0.03,0.1 -0.05,0.16 -0.1,0 -0.2,0 -0.29,-0.01 0.11,-0.05 0.23,-0.1 0.34,-0.15 z m -1.12,0.49 c 0.21,-0.09 0.42,-0.18 0.62,-0.27 -0.06,0.09 -0.02,0.24 0.12,0.25 0.07,0 0.15,0.01 0.22,0.01 -0.03,0.11 -0.08,0.21 -0.11,0.32 -0.02,0.09 -0.03,0.18 -0.04,0.28 -0.17,-0.01 -0.34,-0.02 -0.52,-0.03 -0.15,-0.01 -0.3,-0.02 -0.45,-0.02 0.02,-0.07 0.02,-0.14 0.04,-0.21 0.05,-0.12 0.09,-0.22 0.12,-0.33 z m 1.21,0.6 c 0.01,-0.06 0.01,-0.13 0.03,-0.19 0.03,-0.14 0.08,-0.27 0.13,-0.41 0.14,0.01 0.28,0.01 0.42,0.02 -0.05,0.2 -0.08,0.41 -0.1,0.61 -0.16,-0.01 -0.32,-0.02 -0.48,-0.03 z m -0.1,0.68 c 0.01,-0.1 0.03,-0.2 0.04,-0.3 0.17,0.01 0.34,0.02 0.51,0.03 0,0.06 -0.01,0.12 0,0.18 0.01,0.06 0.02,0.13 0.03,0.19 -0.2,0.08 -0.4,0.16 -0.6,0.24 0.01,-0.11 0.01,-0.22 0.02,-0.34 z m 2.06,-0.57 c -0.35,-0.03 -0.71,-0.03 -1.05,-0.05 -0.01,0 -0.02,0 -0.03,0 0.02,-0.2 0.04,-0.39 0.08,-0.59 0,-0.01 0.01,-0.02 0.01,-0.03 0.18,0.01 0.37,0.02 0.55,0.02 0.19,0.01 0.39,0.02 0.58,0.02 -0.05,0.17 -0.12,0.34 -0.14,0.52 0,0.03 0,0.07 0,0.11 z m -1.27,-1.02 c -0.15,0 -0.29,-0.01 -0.44,-0.01 0.05,-0.13 0.11,-0.25 0.16,-0.37 0.14,0.01 0.27,0.02 0.41,0.04 -0.04,0.11 -0.09,0.22 -0.13,0.34 z m -2.39,0.52 c -0.03,0.1 -0.04,0.2 -0.06,0.29 -0.16,-0.01 -0.32,-0.02 -0.47,-0.02 0,-0.01 0.01,-0.03 0.01,-0.04 0.17,-0.08 0.35,-0.15 0.52,-0.23 0,0 0,0 0,0 z m -2.33,1.01 c -0.01,0.03 -0.01,0.05 -0.02,0.08 -0.03,0.14 -0.06,0.28 -0.08,0.41 -0.01,0.07 -0.03,0.14 -0.04,0.21 0,0.01 0,0.02 0,0.03 -0.42,-0.04 -0.84,-0.08 -1.26,-0.12 0.47,-0.2 0.93,-0.4 1.4,-0.61 z m -17.18,10.22 c 0.01,0 0.01,0 0,0 0.01,-0.04 0.02,-0.08 0.02,-0.11 0,0 0,0 0,0 0.01,-0.05 0.01,-0.11 0.02,-0.16 0.02,-0.13 0.08,-0.26 0.13,-0.37 0.03,-0.06 0.07,-0.12 0.1,-0.17 0.03,-0.04 0.06,-0.08 0.09,-0.12 0,0 0,0 0,0.01 0,0.01 0,0.04 0,0.02 0,0.02 0,0.03 0,0.05 0,0.07 0,0.14 0.02,0.21 0.02,0.07 0.13,0.1 0.17,0.02 0.03,-0.06 0.05,-0.12 0.07,-0.18 0.02,-0.06 0.06,-0.1 0.08,-0.17 0.01,-0.03 0.02,-0.06 0.03,-0.09 0,-0.01 0.01,-0.02 0.01,-0.03 0,0 0.01,-0.03 0.01,-0.03 0.02,-0.06 0.05,-0.11 0.08,-0.17 0.03,-0.07 0.07,-0.13 0.11,-0.19 0.07,-0.02 0.15,-0.03 0.22,-0.03 0.01,0 0.03,0 0.04,0 0.07,0 0.15,0.02 0.22,0.03 0.12,-0.03 0.25,-0.07 0.37,-0.11 -0.04,0.11 -0.07,0.21 -0.1,0.32 -0.03,0.12 -0.09,0.25 -0.07,0.38 0.02,0.08 0.12,0.1 0.18,0.05 0.05,-0.05 0.07,-0.11 0.09,-0.18 0.02,-0.06 0.04,-0.12 0.06,-0.18 0.04,-0.11 0.08,-0.22 0.11,-0.34 0.02,-0.06 0.03,-0.11 0.05,-0.17 0.37,-0.14 0.74,-0.32 1.08,-0.47 -0.01,0.05 -0.02,0.11 -0.03,0.16 -0.03,0.14 -0.06,0.28 -0.09,0.42 -0.01,0.07 -0.02,0.14 -0.03,0.21 -0.01,0.08 -0.03,0.16 0,0.23 0.02,0.06 0.1,0.09 0.15,0.04 0.05,-0.06 0.06,-0.13 0.09,-0.2 0.02,-0.07 0.04,-0.14 0.06,-0.22 0.03,-0.14 0.06,-0.28 0.08,-0.42 l 0.07,-0.36 c 0.01,0 0.01,-0.01 0.02,-0.01 0.41,-0.17 0.82,-0.33 1.22,-0.5 -0.14,0.25 -0.25,0.52 -0.31,0.8 -0.03,0.14 -0.06,0.28 -0.07,0.42 -0.01,0.08 0,0.15 0.01,0.22 0.01,0.07 0.01,0.14 0.05,0.21 0.03,0.06 0.11,0.03 0.13,-0.02 0.02,-0.06 0.02,-0.13 0.03,-0.19 0.01,-0.07 0.02,-0.13 0.03,-0.2 0.01,-0.13 0.03,-0.26 0.06,-0.39 0.06,-0.26 0.15,-0.51 0.28,-0.74 0.04,-0.08 -0.01,-0.14 -0.08,-0.16 0.56,-0.23 1.12,-0.46 1.68,-0.68 0.06,-0.02 0.12,-0.05 0.19,-0.07 -0.01,0.1 -0.03,0.2 -0.04,0.3 -0.02,0.18 -0.04,0.36 -0.05,0.54 0,0.08 0,0.16 0.01,0.23 0.02,0.08 0.01,0.18 0.02,0.27 0.01,0.09 0.12,0.11 0.15,0.02 0.03,-0.08 0.04,-0.18 0.08,-0.26 0.03,-0.07 0.05,-0.14 0.06,-0.22 0.03,-0.18 0.05,-0.36 0.07,-0.54 0.01,-0.16 0.03,-0.32 0.04,-0.47 0.49,-0.19 0.98,-0.38 1.47,-0.56 -0.05,0.38 -0.11,0.76 -0.15,1.13 -0.06,0.49 -0.13,0.99 -0.1,1.48 0.01,0.09 0.13,0.11 0.15,0.02 0.15,-0.46 0.19,-0.96 0.25,-1.44 0.05,-0.43 0.09,-0.87 0.14,-1.3 0.52,-0.19 1.04,-0.38 1.55,-0.57 -0.06,0.33 -0.13,0.66 -0.19,1 -0.08,0.41 -0.16,0.84 -0.15,1.26 0,0.08 0.12,0.13 0.16,0.04 0.17,-0.39 0.24,-0.8 0.31,-1.22 0.07,-0.4 0.14,-0.8 0.21,-1.2 0.13,-0.05 0.26,-0.09 0.39,-0.13 -0.13,0.97 -0.07,1.99 0.06,2.9 0.14,1.02 0.38,2.03 0.64,3.03 -0.25,-0.06 -0.51,-0.11 -0.76,-0.15 0.01,-0.01 0.03,-0.02 0.03,-0.03 -0.05,-0.54 -0.24,-1.07 -0.38,-1.6 -0.04,-0.14 -0.25,-0.08 -0.21,0.06 0.14,0.52 0.25,1.07 0.48,1.57 -0.21,-0.03 -0.43,-0.05 -0.65,-0.06 -0.04,-0.14 -0.08,-0.29 -0.11,-0.43 -0.1,-0.45 -0.16,-0.91 -0.18,-1.38 -0.01,-0.13 -0.2,-0.13 -0.2,0 0,0.47 0.04,0.95 0.14,1.42 0.03,0.13 0.06,0.25 0.1,0.37 -0.48,-0.02 -0.96,0 -1.44,0.04 -0.01,-0.05 -0.03,-0.1 -0.04,-0.15 -0.07,-0.27 -0.07,-0.56 -0.04,-0.84 0,-0.04 -0.06,-0.04 -0.07,0 -0.03,0.29 -0.03,0.58 -0.01,0.87 0,0.04 0.01,0.09 0.02,0.13 -0.5,0.05 -1,0.14 -1.48,0.26 -0.01,-0.6 -0.08,-1.2 -0.15,-1.79 -0.02,-0.14 -0.24,-0.15 -0.22,0 0.06,0.61 0.12,1.23 0.25,1.83 -0.51,0.13 -1.02,0.29 -1.5,0.5 -0.09,0.04 -0.17,0.08 -0.25,0.12 0,-0.01 0,-0.02 0,-0.03 0,-0.03 0,-0.05 0,-0.08 0,-0.06 -0.01,-0.11 -0.02,-0.17 -0.01,-0.11 -0.02,-0.22 -0.04,-0.33 -0.01,-0.07 -0.06,-0.14 -0.14,-0.14 -0.07,0 -0.15,0.06 -0.14,0.14 l 0.03,0.33 c 0.01,0.06 0.01,0.11 0.02,0.17 0.01,0.06 0.02,0.15 0.06,0.2 0,0 0.01,0 0.01,0.01 -0.41,0.2 -0.81,0.43 -1.17,0.71 -0.53,0.4 -0.92,0.91 -1.37,1.39 -0.29,0.31 -0.55,0.65 -0.79,1 -0.12,0.16 -0.21,0.34 -0.32,0.51 -0.01,-0.07 -0.03,-0.13 -0.04,-0.2 -0.08,-0.42 -0.16,-0.84 -0.24,-1.25 -0.03,-0.14 -0.23,-0.08 -0.21,0.06 0.08,0.42 0.16,0.84 0.24,1.25 0.03,0.13 0.05,0.27 0.08,0.4 -0.13,0.21 -0.29,0.42 -0.41,0.64 -0.17,-0.62 -0.33,-1.25 -0.47,-1.87 -0.21,-1 -0.36,-2.02 -0.33,-3.05 0,-0.38 0.05,-0.74 0.11,-1.11 z m 1.09,8.73 c 0.22,-1.1 0.63,-2.15 1.24,-3.1 0.26,-0.41 0.57,-0.79 0.91,-1.14 0.4,-0.41 0.93,-0.67 1.41,-0.96 3.72,-2.26 8.98,-1.77 11.57,1.97 1.27,1.84 1.85,4.16 1.53,6.38 -0.32,2.19 -1.52,4.08 -3.29,5.39 -1.78,1.31 -3.95,1.97 -6.16,1.75 -2.2,-0.22 -4.22,-1.48 -5.62,-3.16 -0.28,-0.33 -0.53,-0.69 -0.76,-1.06 -0.83,-1.93 -1.26,-3.95 -0.83,-6.07 z m 7.54,14.4 c -0.6,-0.51 -1.1,-1.14 -1.52,-1.79 -0.26,-0.4 -0.51,-0.82 -0.74,-1.24 0.36,0.12 0.72,0.21 1.08,0.28 0.22,0.87 0.73,1.63 1.32,2.31 0.33,0.38 0.69,0.71 1.09,1.01 0.14,0.1 0.29,0.2 0.44,0.3 -0.6,-0.22 -1.15,-0.43 -1.67,-0.87 z m 2.36,0.48 c -0.08,-0.17 -0.37,-0.05 -0.3,0.13 0.03,0.07 0.07,0.13 0.1,0.2 -0.01,0.01 -0.03,0.01 -0.04,0.02 -0.24,-0.13 -0.48,-0.27 -0.7,-0.43 -0.39,-0.29 -0.74,-0.63 -1.06,-0.99 -0.52,-0.6 -0.87,-1.34 -1.17,-2.08 0.27,0.04 0.54,0.07 0.81,0.08 0.26,0.65 0.59,1.29 1.06,1.8 0.27,0.3 0.58,0.57 0.9,0.82 0.24,0.19 0.49,0.36 0.74,0.53 -0.08,0.04 -0.16,0.08 -0.24,0.11 -0.04,-0.07 -0.07,-0.13 -0.1,-0.19 z m 0.66,-0.07 c -0.02,-0.03 -0.03,-0.07 -0.05,-0.1 -0.04,-0.05 -0.13,-0.04 -0.13,0.03 0,0.02 0.01,0.04 0.01,0.07 -0.28,-0.14 -0.56,-0.29 -0.8,-0.48 -0.3,-0.24 -0.58,-0.52 -0.82,-0.82 -0.43,-0.52 -0.78,-1.08 -1.05,-1.69 0.42,0.02 0.84,0.02 1.26,-0.02 -0.01,0.02 -0.04,0.02 -0.03,0.05 0.14,0.67 0.45,1.3 0.91,1.81 0.22,0.25 0.48,0.47 0.75,0.67 0.14,0.1 0.28,0.19 0.43,0.28 0,0 0,0 0,0 -0.15,0.06 -0.32,0.13 -0.48,0.2 z m 0.65,-0.28 c -0.03,-0.02 -0.07,-0.03 -0.1,-0.05 -0.14,-0.08 -0.27,-0.16 -0.4,-0.25 -0.27,-0.19 -0.51,-0.43 -0.72,-0.69 -0.42,-0.51 -0.73,-1.1 -0.89,-1.74 0,-0.02 -0.02,-0.01 -0.03,-0.02 0.41,-0.04 0.81,-0.1 1.21,-0.18 0,0.01 -0.02,0.02 -0.01,0.04 0.09,0.13 0.19,0.26 0.28,0.38 0.05,0.06 0.09,0.13 0.14,0.19 0.05,0.06 0.09,0.13 0.15,0.19 0.04,0.04 0.09,-0.01 0.07,-0.05 -0.04,-0.07 -0.08,-0.14 -0.13,-0.2 -0.04,-0.06 -0.09,-0.12 -0.13,-0.18 -0.09,-0.13 -0.18,-0.25 -0.27,-0.38 0.33,-0.07 0.65,-0.16 0.97,-0.25 0.19,0.42 0.42,0.83 0.72,1.18 0.25,0.3 0.54,0.56 0.85,0.79 0.16,0.12 0.32,0.22 0.49,0.32 0.01,0 0.02,0.01 0.03,0.02 -0.74,0.28 -1.49,0.57 -2.23,0.88 z m 4.9,-0.41 c 1.13,-0.47 2.26,-0.96 3.38,-1.46 0.56,-0.25 1.12,-0.51 1.67,-0.76 0.57,-0.27 1.21,-0.5 1.74,-0.85 0.03,-0.02 0.05,-0.05 0.08,-0.08 0.23,-0.15 0.32,-0.37 0.31,-0.61 0.13,-0.17 0.19,-0.38 0.16,-0.59 1.44,-0.61 2.88,-1.22 4.31,-1.83 -2.98,3.89 -5.94,7.79 -8.95,11.67 -0.05,0.06 -0.07,0.13 -0.1,0.2 -0.88,-0.74 -1.75,-1.49 -2.57,-2.29 -0.43,-0.49 -0.84,-0.99 -1.26,-1.47 -0.3,-0.34 -0.58,-0.69 -0.87,-1.04 0.7,-0.3 1.4,-0.6 2.1,-0.89 z m 3.72,6.4 c 0.24,-0.31 0.49,-0.62 0.73,-0.94 0,0 0,0 0,0 0.21,0.27 0.43,0.54 0.65,0.82 0.21,0.27 0.41,0.56 0.66,0.8 0.05,0.05 0.13,-0.01 0.09,-0.07 -0.18,-0.3 -0.42,-0.56 -0.63,-0.83 l -0.65,-0.83 c -0.01,-0.01 -0.02,0 -0.03,0 1.61,-2.09 3.22,-4.17 4.85,-6.25 0.4,0.24 0.8,0.48 1.2,0.72 0.23,0.14 0.47,0.28 0.7,0.42 0.11,0.06 0.22,0.13 0.33,0.19 0.12,0.07 0.23,0.15 0.36,0.18 0.1,0.02 0.17,-0.09 0.1,-0.17 -0.09,-0.1 -0.22,-0.16 -0.34,-0.23 -0.11,-0.07 -0.22,-0.13 -0.33,-0.2 -0.23,-0.14 -0.47,-0.27 -0.71,-0.41 -0.4,-0.23 -0.79,-0.46 -1.19,-0.69 0.23,-0.29 0.45,-0.58 0.67,-0.87 0.43,0.27 0.85,0.53 1.28,0.8 0.22,0.14 0.44,0.28 0.66,0.41 0.1,0.06 0.21,0.13 0.31,0.19 0.11,0.07 0.22,0.16 0.35,0.18 0.08,0.02 0.19,-0.08 0.13,-0.17 -0.14,-0.18 -0.41,-0.3 -0.6,-0.42 -0.23,-0.14 -0.46,-0.28 -0.68,-0.43 -0.42,-0.26 -0.85,-0.53 -1.27,-0.79 0.24,-0.31 0.48,-0.61 0.71,-0.92 -0.01,0.05 0,0.09 0.05,0.12 0.28,0.16 0.55,0.33 0.83,0.49 -0.12,0.16 -0.24,0.33 -0.34,0.5 -0.05,0.08 0.06,0.17 0.13,0.1 0.14,-0.16 0.27,-0.32 0.4,-0.49 0.13,0.08 0.26,0.16 0.39,0.23 l 0.06,0.04 c -0.17,0.19 -0.34,0.37 -0.51,0.56 -0.07,0.07 0.03,0.17 0.11,0.11 0.2,-0.18 0.38,-0.38 0.58,-0.57 l 0.46,0.27 c 0.23,0.13 0.45,0.27 0.7,0.36 0,0 0.01,0 0.01,0 -0.06,0.13 -0.12,0.25 -0.18,0.38 -0.02,0.05 0.04,0.09 0.07,0.04 0.24,-0.42 0.46,-0.85 0.67,-1.29 0.04,-0.08 -0.08,-0.15 -0.12,-0.07 -0.13,0.26 -0.25,0.52 -0.37,0.77 -0.2,-0.17 -0.42,-0.3 -0.65,-0.43 -0.13,-0.08 -0.27,-0.16 -0.4,-0.24 0.25,-0.24 0.5,-0.48 0.75,-0.74 0.32,0.22 0.64,0.44 0.98,0.62 0.12,0.06 0.27,-0.1 0.15,-0.2 -0.29,-0.23 -0.6,-0.44 -0.91,-0.64 0.09,-0.09 0.19,-0.18 0.28,-0.27 0.24,0.12 0.49,0.23 0.75,0.3 0.13,0.04 0.27,0.07 0.41,0.1 0.04,0.01 0.09,0.02 0.14,0.03 -0.76,1.01 -1.53,2.03 -2.29,3.04 -1.05,1.4 -2.08,2.82 -3.15,4.2 -0.55,0.71 -1.07,1.48 -1.7,2.12 -0.65,0.66 -1.15,1.37 -1.63,2.17 -0.03,0.06 -0.04,0.11 -0.06,0.17 -0.17,-0.12 -0.35,-0.23 -0.53,-0.35 -0.86,-0.6 -1.7,-1.25 -2.52,-1.9 0.02,0.04 0.06,0.03 0.09,-0.02 z m 23.03,-48.4 c -0.09,-0.08 -0.19,-0.16 -0.28,-0.24 -0.01,-0.01 -0.02,-0.02 -0.04,-0.03 0.14,-0.04 0.28,-0.07 0.42,-0.11 0.02,0 0.04,-0.01 0.05,-0.01 0.05,0.08 0.11,0.17 0.18,0.26 -0.1,0.03 -0.21,0.08 -0.33,0.13 z m 0.65,-0.27 c -0.02,-0.03 -0.05,-0.06 -0.07,-0.09 -0.03,-0.04 -0.06,-0.09 -0.09,-0.13 0.12,-0.03 0.24,-0.06 0.35,-0.09 0.12,-0.03 0.25,-0.06 0.37,-0.1 0.1,-0.03 0.2,-0.07 0.29,-0.12 0.03,0.04 0.05,0.1 0.08,0.14 -0.31,0.13 -0.62,0.26 -0.93,0.39 z m 21.09,-9.49 c 0.16,0.04 0.32,0.09 0.48,0.13 -0.16,0.19 -0.33,0.38 -0.49,0.57 -0.26,0.11 -0.51,0.21 -0.77,0.32 0.26,-0.34 0.52,-0.68 0.78,-1.02 z m 0.84,0.23 c 0.04,0.01 0.09,0.02 0.13,0.04 0.01,0 0.02,0.01 0.03,0.01 -0.04,0.02 -0.08,0.03 -0.12,0.05 -0.07,0.03 -0.13,0.05 -0.2,0.08 0.06,-0.06 0.11,-0.12 0.16,-0.18 z m 1.01,-0.31 c 0.16,-0.16 0.31,-0.32 0.46,-0.48 0.11,-0.12 0.21,-0.25 0.32,-0.38 0.1,0.07 0.21,0.15 0.31,0.22 0.05,0.03 0.1,0.06 0.14,0.09 -0.01,0.01 -0.01,0.02 -0.02,0.04 -0.4,0.16 -0.81,0.34 -1.21,0.51 z m 23.6,-10.06 c -0.48,-0.65 -0.97,-1.29 -1.49,-1.92 0.25,-0.1 0.5,-0.2 0.74,-0.31 0.23,0.32 0.46,0.64 0.69,0.96 0.21,0.29 0.42,0.57 0.63,0.86 0.03,0.04 0.06,0.08 0.09,0.12 -0.22,0.1 -0.44,0.19 -0.66,0.29 z m 0.94,-0.4 c -0.05,-0.07 -0.1,-0.14 -0.15,-0.2 -0.2,-0.28 -0.41,-0.55 -0.61,-0.83 -0.22,-0.3 -0.44,-0.59 -0.66,-0.89 0.25,-0.1 0.51,-0.21 0.76,-0.31 0.27,0.33 0.53,0.67 0.8,1.01 0.16,0.2 0.32,0.4 0.48,0.6 0.07,0.09 0.14,0.18 0.22,0.28 -0.3,0.1 -0.57,0.22 -0.84,0.34 z m 1.09,-0.47 c 0,0 -0.01,-0.01 -0.01,-0.01 -0.08,-0.11 -0.17,-0.21 -0.25,-0.31 -0.17,-0.21 -0.33,-0.41 -0.5,-0.62 -0.25,-0.31 -0.5,-0.62 -0.75,-0.93 0.26,-0.1 0.51,-0.21 0.77,-0.32 0.49,0.62 0.96,1.25 1.42,1.89 -0.23,0.1 -0.45,0.2 -0.68,0.3 z m 16.63,-11.35 c 0.04,0.17 0.09,0.34 0.16,0.51 -0.29,0.19 -0.52,0.52 -0.69,0.8 -0.09,0.15 -0.16,0.31 -0.23,0.48 -0.09,-0.47 -0.19,-0.94 -0.32,-1.41 0.37,-0.11 0.73,-0.24 1.08,-0.38 z m 1.75,-1.21 c 0.02,0.1 0.04,0.2 0.06,0.3 0.06,0.24 0.13,0.48 0.21,0.72 0.11,0.33 0.22,0.67 0.33,1 -0.02,0.01 -0.05,0.03 -0.07,0.04 -0.07,0.03 -0.14,0.04 -0.21,0.06 -0.05,0 -0.09,0.01 -0.14,0.01 -0.04,0 -0.07,0 -0.11,0 -0.01,0 -0.02,0 -0.03,0 0,0 0,0 0,0 -0.01,0 -0.01,0 -0.02,0 0,0 -0.01,0 -0.01,0 0,0 0,0 0,0 -0.07,-0.01 -0.14,0 -0.21,0.02 -0.02,-0.02 -0.04,-0.05 -0.05,-0.07 0.06,0.08 -0.02,-0.03 -0.03,-0.05 -0.14,-0.2 -0.27,-0.41 -0.38,-0.63 -0.02,-0.04 -0.04,-0.08 -0.06,-0.12 0,0.01 -0.04,-0.11 -0.05,-0.12 -0.02,-0.06 -0.05,-0.11 -0.07,-0.17 -0.01,-0.01 -0.01,-0.01 -0.01,-0.02 -0.02,-0.05 -0.04,-0.1 -0.06,-0.14 -0.05,-0.13 -0.08,-0.26 -0.14,-0.38 0.07,-0.01 0.13,-0.04 0.19,-0.07 0.04,-0.02 0.09,-0.04 0.13,-0.06 0.03,-0.02 0.07,-0.04 0.1,-0.06 0.12,-0.07 0.24,-0.13 0.37,-0.19 0.1,-0.03 0.18,-0.05 0.26,-0.07 z m -5.68,-7.54 c 0.23,-0.08 0.45,-0.17 0.68,-0.25 0.06,0.09 0.12,0.18 0.17,0.28 0.07,0.11 0.13,0.21 0.2,0.32 0.04,0.05 0.08,0.11 0.12,0.16 0.04,0.05 0.07,0.11 0.13,0.13 0.06,0.02 0.12,0 0.13,-0.07 0,-0.06 -0.03,-0.12 -0.06,-0.18 -0.03,-0.06 -0.06,-0.12 -0.09,-0.17 -0.06,-0.11 -0.13,-0.21 -0.2,-0.32 -0.05,-0.08 -0.1,-0.16 -0.15,-0.24 0.19,-0.07 0.38,-0.14 0.57,-0.21 0.51,-0.2 1.01,-0.41 1.51,-0.62 0.32,-0.13 0.64,-0.26 0.96,-0.41 0.02,0.04 0.05,0.07 0.07,0.11 0.06,0.09 0.12,0.19 0.18,0.28 0.07,0.11 0.14,0.22 0.24,0.29 0.02,0.02 0.05,0.03 0.08,0.04 0.12,0.19 0.24,0.38 0.36,0.58 0.39,0.66 0.74,1.35 1.06,2.05 0.32,0.7 0.6,1.41 0.84,2.14 0.22,0.67 0.37,1.36 0.56,2.04 l -0.37,0.16 c -0.02,-0.2 -0.04,-0.4 -0.08,-0.6 -0.09,-0.52 -0.22,-1.04 -0.4,-1.53 -0.35,-0.97 -0.88,-1.84 -1.54,-2.62 -0.08,-0.09 -0.2,0.04 -0.13,0.13 0.63,0.79 1.09,1.7 1.42,2.65 0.15,0.45 0.27,0.9 0.34,1.37 0.04,0.24 0.06,0.49 0.08,0.74 l -0.45,0.19 c -0.01,0 -0.02,-0.02 -0.03,-0.02 -0.01,-0.06 -0.02,-0.13 -0.03,-0.18 -0.05,-0.33 -0.12,-0.65 -0.21,-0.97 -0.17,-0.64 -0.43,-1.25 -0.71,-1.85 -0.06,-0.13 -0.26,-0.02 -0.2,0.12 0.27,0.59 0.45,1.22 0.6,1.85 0.07,0.31 0.14,0.62 0.18,0.94 0,0.03 0,0.06 0.01,0.08 -0.12,0.02 -0.23,0.04 -0.34,0.07 -0.2,0.05 -0.39,0.13 -0.57,0.22 -0.02,0.01 -0.04,0.03 -0.06,0.04 0,-0.04 0.01,-0.08 0.01,-0.11 0.01,-0.35 -0.02,-0.7 -0.09,-1.04 -0.13,-0.7 -0.41,-1.36 -0.82,-1.94 -0.1,-0.14 -0.33,-0.01 -0.23,0.14 0.38,0.55 0.64,1.16 0.76,1.81 0.06,0.33 0.09,0.66 0.08,1 0,0.12 -0.02,0.25 -0.04,0.37 -0.03,0.02 -0.06,0.04 -0.09,0.06 -0.09,0.08 -0.18,0.21 -0.24,0.34 -0.01,-0.02 -0.02,-0.05 -0.03,-0.07 -0.03,0.01 -0.07,0.03 -0.1,0.05 -0.02,-0.06 -0.04,-0.13 -0.05,-0.19 -0.08,-0.31 -0.18,-0.61 -0.3,-0.92 -0.22,-0.6 -0.51,-1.18 -0.81,-1.74 -0.07,-0.13 -0.27,-0.01 -0.2,0.12 0.3,0.56 0.53,1.14 0.73,1.74 0.1,0.29 0.19,0.59 0.27,0.89 0.02,0.07 0.04,0.16 0.05,0.24 -0.19,0.08 -0.37,0.16 -0.56,0.25 -0.1,-0.73 -0.25,-1.45 -0.51,-2.15 -0.35,-0.93 -0.84,-1.74 -1.44,-2.52 -0.08,-0.1 -0.26,-0.01 -0.18,0.11 0.51,0.78 0.94,1.64 1.28,2.51 0.27,0.7 0.48,1.44 0.62,2.18 -0.14,0.07 -0.29,0.15 -0.43,0.22 -0.09,-0.28 -0.18,-0.56 -0.27,-0.84 -0.45,-1.37 -1.01,-2.72 -1.65,-4.01 -0.49,-1 -1.05,-1.96 -1.65,-2.9 0.02,0 0.04,-0.01 0.07,-0.01 0.07,0.06 0.14,0.12 0.21,0.18 0.11,0.1 0.22,0.19 0.33,0.29 0.12,0.1 0.22,0.19 0.37,0.25 0.08,0.03 0.14,-0.07 0.11,-0.14 -0.08,-0.14 -0.19,-0.22 -0.31,-0.32 -0.11,-0.09 -0.22,-0.18 -0.33,-0.27 -0.03,-0.02 -0.06,-0.04 -0.08,-0.07 0.22,-0.09 0.44,-0.18 0.65,-0.25 z m -4.89,-2.13 c 0.14,-0.05 0.28,-0.11 0.41,-0.16 0.09,-0.03 0.18,-0.07 0.27,-0.1 0.18,0.34 0.43,0.66 0.61,0.94 0.35,0.54 0.73,1.07 1.07,1.62 0.73,1.18 1.39,2.4 1.97,3.66 0.57,1.23 1.04,2.5 1.44,3.79 0.39,1.27 0.63,2.56 0.94,3.84 -0.08,0.04 -0.17,0.08 -0.25,0.12 l -0.31,0.16 c -0.01,0.01 -0.02,0.01 -0.03,0.02 -0.14,-1.18 -0.51,-2.39 -0.86,-3.52 -0.4,-1.29 -0.87,-2.56 -1.43,-3.79 -0.55,-1.2 -1.17,-2.37 -1.87,-3.49 -0.59,-0.94 -1.24,-1.92 -2.08,-2.65 -0.01,-0.03 -0.02,-0.05 -0.03,-0.08 -0.01,0.01 -0.03,0.01 -0.04,0.02 -0.09,-0.08 -0.17,-0.16 -0.26,-0.23 0.17,-0.04 0.31,-0.1 0.45,-0.15 z m -0.71,0.48 c 0,-0.01 0,-0.02 0,-0.03 0.02,0.05 0.04,0.1 0.06,0.15 -0.01,0 -0.02,0.01 -0.03,0.01 -0.01,-0.04 -0.03,-0.08 -0.03,-0.13 z m -95.65,27.9 c 2.99,-5.86 7.04,-11.16 11.99,-15.5 5.43,-4.77 11.94,-8.33 18.86,-10.42 5.51,-1.66 11.26,-2.38 17.01,-2.19 5.75,0.18 11.46,1.28 16.87,3.22 4.04,1.45 7.9,3.41 11.47,5.8 -0.18,0.08 -0.36,0.16 -0.54,0.24 -0.17,-0.25 -0.38,-0.49 -0.59,-0.69 -0.26,-0.25 -0.54,-0.49 -0.84,-0.7 -0.6,-0.41 -1.28,-0.72 -1.97,-0.93 -0.12,-0.04 -0.16,0.14 -0.05,0.18 0.68,0.23 1.29,0.57 1.85,1.01 0.27,0.21 0.53,0.43 0.77,0.68 0.18,0.19 0.35,0.39 0.52,0.59 -0.3,0.13 -0.6,0.27 -0.89,0.4 -2.25,-2.24 -5.19,-3.86 -8.19,-4.82 -0.91,-0.29 -1.83,-0.54 -2.78,-0.7 -0.15,-0.02 -0.22,0.21 -0.07,0.24 1.64,0.32 3.23,0.76 4.76,1.43 1.49,0.66 2.89,1.51 4.19,2.49 0.62,0.47 1.19,0.98 1.76,1.5 -0.17,0.07 -0.34,0.15 -0.51,0.22 -0.22,-0.18 -0.46,-0.34 -0.68,-0.49 -0.44,-0.32 -0.9,-0.62 -1.38,-0.89 -0.92,-0.53 -1.89,-0.98 -2.9,-1.33 -0.16,-0.06 -0.23,0.2 -0.07,0.25 1,0.35 1.96,0.8 2.86,1.33 0.44,0.26 0.86,0.53 1.27,0.83 0.19,0.14 0.38,0.29 0.57,0.43 -0.07,0.03 -0.14,0.06 -0.22,0.09 -0.68,-0.42 -1.36,-0.85 -2.06,-1.23 -4.77,-2.63 -9.98,-4.47 -15.33,-5.46 -5.37,-1 -10.86,-1.15 -16.28,-0.44 -6.03,0.79 -11.89,2.73 -17.22,5.67 -5.76,3.18 -10.81,7.54 -14.81,12.76 -3.73,4.87 -6.57,10.41 -8.32,16.29 -0.42,1.42 -0.76,2.86 -1.05,4.31 -0.24,0.1 -0.49,0.2 -0.73,0.3 0.04,-0.3 0.09,-0.6 0.14,-0.9 0.16,-0.85 0.36,-1.68 0.57,-2.52 0.43,-1.69 1.13,-3.3 1.88,-4.86 0.06,-0.12 -0.11,-0.22 -0.17,-0.1 -0.85,1.55 -1.47,3.2 -2.02,4.88 -0.28,0.84 -0.49,1.72 -0.66,2.59 -0.07,0.37 -0.13,0.74 -0.19,1.11 -0.27,0.11 -0.55,0.22 -0.82,0.33 0.09,-0.66 0.18,-1.32 0.3,-1.98 0.18,-0.96 0.39,-1.91 0.63,-2.85 0.25,-0.94 0.52,-1.87 0.84,-2.79 0.31,-0.92 0.61,-1.84 0.97,-2.74 0.02,-0.06 -0.08,-0.1 -0.11,-0.04 -0.32,0.68 -0.65,1.36 -0.91,2.07 -0.26,0.71 -0.51,1.43 -0.73,2.16 -0.45,1.47 -0.81,2.96 -1.08,4.47 -0.11,0.62 -0.22,1.24 -0.29,1.87 -0.24,0.1 -0.47,0.19 -0.71,0.29 0.89,-5.39 2.62,-10.62 5.09,-15.46 z m -22.21,25.43 c 0.15,-0.04 0.29,-0.09 0.43,-0.15 0.14,-0.05 0.27,-0.1 0.41,-0.16 0.02,-0.01 0.04,-0.02 0.06,-0.02 0.03,0.09 0.06,0.17 0.09,0.26 0.07,0.18 0.13,0.36 0.2,0.54 l 0.1,0.28 c 0.01,0.02 0.02,0.05 0.03,0.07 -0.12,0.05 -0.24,0.1 -0.36,0.15 -0.18,0.08 -0.37,0.14 -0.54,0.24 -0.02,0.01 -0.04,0.03 -0.06,0.04 -0.05,-0.12 -0.12,-0.24 -0.18,-0.36 l -0.24,-0.45 c -0.07,-0.14 -0.15,-0.27 -0.24,-0.4 0.09,-0.01 0.2,-0.01 0.3,-0.04 z m -0.55,5.97 c -0.35,-0.73 -0.64,-1.51 -0.8,-2.31 -0.07,-0.36 -0.1,-0.73 -0.1,-1.09 0,-0.19 0.01,-0.37 0.02,-0.56 0,-0.01 0,-0.01 0,-0.02 0.26,-0.1 0.52,-0.22 0.76,-0.32 0.05,0.12 0.11,0.23 0.2,0.3 0.16,0.13 0.35,0.18 0.55,0.11 0.01,0.01 0.02,0.03 0.04,0.04 0.11,0.06 0.22,0.09 0.35,0.09 0.11,-0.01 0.23,-0.04 0.34,-0.07 0.15,-0.04 0.3,-0.1 0.45,-0.15 0.31,-0.12 0.61,-0.23 0.92,-0.35 0.14,-0.05 0.25,-0.12 0.32,-0.25 0.07,-0.11 0.09,-0.28 0.05,-0.41 -0.01,-0.04 -0.03,-0.07 -0.05,-0.1 0,-0.02 0.02,-0.04 0.02,-0.06 -0.01,-0.12 -0.04,-0.23 -0.08,-0.35 0.18,-0.07 0.35,-0.13 0.53,-0.2 0.44,-0.16 0.93,-0.28 1.38,-0.45 0.26,0.94 0.55,1.87 0.91,2.77 0.51,1.29 1.13,2.6 1.85,3.84 -0.08,0.05 -0.16,0.1 -0.25,0.16 -0.02,-0.04 -0.04,-0.08 -0.05,-0.11 -0.05,-0.1 -0.1,-0.2 -0.15,-0.3 -0.11,-0.23 -0.22,-0.46 -0.34,-0.68 -0.22,-0.44 -0.45,-0.89 -0.67,-1.33 -0.07,-0.15 -0.3,-0.02 -0.22,0.13 0.21,0.44 0.42,0.88 0.62,1.33 0.1,0.22 0.21,0.44 0.32,0.66 0.05,0.1 0.1,0.2 0.15,0.3 0.03,0.05 0.05,0.12 0.08,0.17 -0.01,0.01 -0.03,0.02 -0.04,0.02 -0.01,0.01 -0.03,0.01 -0.04,0.02 -0.04,-0.05 -0.09,-0.1 -0.12,-0.14 -0.14,-0.18 -0.27,-0.37 -0.4,-0.57 -0.24,-0.38 -0.46,-0.77 -0.64,-1.18 -0.38,-0.84 -0.64,-1.75 -0.76,-2.67 -0.01,-0.1 -0.19,-0.08 -0.18,0.02 0.08,0.95 0.32,1.87 0.7,2.74 0.19,0.44 0.42,0.86 0.68,1.26 0.13,0.21 0.28,0.41 0.43,0.6 0.02,0.02 0.04,0.05 0.05,0.07 -0.18,0.1 -0.37,0.2 -0.55,0.29 -0.01,-0.01 -0.02,-0.02 -0.03,-0.02 -0.06,-0.05 -0.12,-0.1 -0.17,-0.14 -0.11,-0.1 -0.22,-0.2 -0.33,-0.31 -0.06,-0.06 -0.15,0.03 -0.09,0.09 0.1,0.11 0.21,0.22 0.3,0.34 0.04,0.05 0.08,0.1 0.12,0.15 -0.17,0.09 -0.34,0.19 -0.52,0.28 -0.02,-0.06 -0.05,-0.12 -0.07,-0.18 -0.1,-0.26 -0.21,-0.51 -0.31,-0.77 -0.04,-0.11 -0.1,-0.2 -0.15,-0.29 0,-0.06 0.03,-0.12 0.01,-0.18 -0.06,-0.26 -0.33,-0.42 -0.59,-0.44 -0.01,-0.04 -0.03,-0.08 -0.04,-0.11 -0.18,-0.46 -0.37,-0.91 -0.56,-1.36 -0.06,-0.14 -0.28,-0.08 -0.23,0.06 0.18,0.47 0.36,0.93 0.55,1.4 0,0.01 0.01,0.02 0.01,0.03 -0.09,0.01 -0.19,0.02 -0.28,0.04 -0.24,0.05 -0.48,0.16 -0.68,0.29 -0.06,0.04 -0.11,0.08 -0.17,0.13 -0.09,0.07 -0.14,0.13 -0.21,0.23 -0.04,0.06 -0.06,0.13 -0.07,0.21 -0.11,-0.19 -0.23,-0.37 -0.32,-0.58 -0.24,-0.56 -0.41,-1.13 -0.46,-1.73 -0.01,-0.1 -0.17,-0.1 -0.16,0 0.04,0.6 0.17,1.2 0.4,1.75 0.11,0.25 0.24,0.51 0.4,0.76 -0.07,0.05 -0.11,0.13 -0.09,0.23 0.11,0.56 0.33,1.09 0.56,1.62 -0.04,0.02 -0.09,0.03 -0.13,0.05 -0.01,0 -0.03,-0.01 -0.04,-0.01 0.02,-0.04 0.02,-0.08 0,-0.11 -0.08,-0.12 -0.18,-0.23 -0.27,-0.34 -0.09,-0.11 -0.18,-0.21 -0.26,-0.32 -0.04,-0.04 -0.11,-0.04 -0.15,-0.01 -0.04,0.03 -0.06,0.1 -0.03,0.15 l 0.25,0.33 c 0.08,0.1 0.15,0.2 0.23,0.3 -0.03,0.01 -0.06,0 -0.09,0.01 -0.61,0.19 -1.04,-0.03 -1.4,-0.57 -0.48,-0.71 -0.85,-1.49 -1.21,-2.23 z m 3.33,4.04 c 0,-0.01 0,-0.01 0,0 0.05,-0.02 0.1,-0.04 0.15,-0.05 -0.01,0.01 -0.02,0.01 -0.03,0.02 -0.02,0.02 -0.05,0.04 -0.07,0.05 -0.04,0.03 -0.08,0.06 -0.11,0.09 -0.03,0 -0.05,-0.01 -0.07,-0.01 0.04,-0.04 0.09,-0.06 0.13,-0.1 z m -26.5,34.47 c -0.84,-0.99 -1.5,-2.2 -2.06,-3.36 -0.52,-1.07 -0.99,-2.23 -1.27,-3.39 -0.18,-0.74 -0.17,-1.56 0.08,-2.29 0.11,-0.04 0.21,-0.08 0.32,-0.12 0.13,-0.05 0.25,-0.09 0.38,-0.14 -0.02,0.04 -0.05,0.08 -0.06,0.13 -0.02,0.09 -0.04,0.18 -0.04,0.28 0,0.05 0.02,0.09 0.03,0.13 -0.05,-0.06 -0.16,-0.06 -0.18,0.04 -0.07,0.27 -0.1,0.55 -0.08,0.82 0.01,0.28 0.06,0.56 0.18,0.81 0.05,0.11 0.21,0.03 0.19,-0.08 -0.05,-0.25 -0.12,-0.49 -0.14,-0.74 -0.02,-0.24 0,-0.48 0.05,-0.72 0,0.01 0,0.02 0,0.02 0.02,0.06 0.07,0.1 0.13,0.09 0.06,-0.01 0.1,-0.06 0.11,-0.12 0,-0.02 0,-0.04 0,-0.06 0,-0.01 0,-0.04 0,-0.01 0,-0.02 0,-0.03 0.01,-0.05 0,-0.04 0,-0.08 0,-0.12 0,-0.04 0,-0.08 0.01,-0.12 0,-0.01 0,-0.02 0,-0.03 0,0 0,0 0,-0.01 0,0 0,0 0,0 0,-0.02 0.01,-0.04 0.01,-0.06 0.01,-0.04 0.02,-0.07 0.03,-0.11 0.01,-0.02 0.01,-0.04 0.02,-0.06 0,-0.01 0.01,-0.02 0.01,-0.03 0,0 0.01,-0.03 0.01,-0.01 -0.01,0.01 0.01,-0.02 0.01,-0.02 0,-0.01 0.01,-0.02 0.01,-0.02 0.01,-0.02 0.02,-0.04 0.03,-0.05 0,0 0,-0.01 0.01,-0.01 l 0.13,-0.05 c 0,0.04 0,0.07 0.01,0.11 0.15,1.69 0.7,3.32 1.42,4.84 0.73,1.54 1.63,2.99 2.54,4.42 0.15,0.24 0.33,0.49 0.52,0.75 -0.12,0.06 -0.23,0.12 -0.35,0.17 -0.22,-0.25 -0.45,-0.49 -0.65,-0.76 -0.62,-0.83 -1.14,-1.72 -1.55,-2.67 -0.04,-0.09 -0.2,-0.03 -0.17,0.07 0.4,0.99 0.9,1.93 1.54,2.8 0.18,0.24 0.38,0.46 0.57,0.69 -0.03,0.01 -0.05,0.03 -0.07,0.04 -0.08,-0.01 -0.15,-0.02 -0.23,-0.03 -0.46,-0.57 -0.9,-1.18 -1.31,-1.79 -0.04,-0.06 -0.13,-0.01 -0.1,0.06 0.31,0.59 0.68,1.13 1.07,1.66 -0.48,-0.17 -0.86,-0.53 -1.17,-0.9 z m 17.98,-4.82 c -0.09,0.04 -0.18,0.07 -0.26,0.11 -0.27,-0.38 -0.55,-0.76 -0.8,-1.16 -0.71,-1.14 -1.33,-2.33 -1.86,-3.57 -0.05,-0.11 -0.24,-0.03 -0.19,0.08 0.49,1.26 1.09,2.48 1.8,3.63 0.24,0.39 0.5,0.76 0.76,1.13 -0.18,0.08 -0.37,0.15 -0.55,0.23 -0.07,-0.08 -0.14,-0.15 -0.21,-0.23 -0.42,-0.52 -0.76,-1.1 -1.02,-1.72 -0.05,-0.11 -0.23,-0.03 -0.19,0.08 0.25,0.64 0.58,1.26 0.99,1.81 0.04,0.06 0.1,0.12 0.15,0.18 -0.14,0.06 -0.27,0.11 -0.41,0.17 -1.03,-1.19 -1.79,-2.61 -2.15,-4.13 -0.04,-0.16 -0.28,-0.09 -0.25,0.07 0.33,1.56 1.06,2.99 2.08,4.2 -0.23,0.1 -0.46,0.19 -0.69,0.29 -0.47,-0.53 -0.85,-1.14 -1.12,-1.79 -0.06,-0.14 -0.29,-0.08 -0.23,0.06 0.27,0.67 0.67,1.27 1.12,1.83 -0.25,0.1 -0.49,0.21 -0.74,0.31 -0.15,-0.15 -0.31,-0.29 -0.45,-0.46 -0.52,-0.65 -0.92,-1.39 -1.16,-2.19 -0.04,-0.12 -0.23,-0.07 -0.2,0.05 0.23,0.83 0.63,1.61 1.16,2.29 0.12,0.15 0.26,0.27 0.39,0.41 -0.19,0.08 -0.38,0.16 -0.57,0.24 -0.04,0.02 -0.09,0.03 -0.13,0.05 -0.32,-0.37 -0.6,-0.79 -0.79,-1.25 -0.04,-0.1 -0.21,-0.06 -0.17,0.05 0.18,0.47 0.43,0.89 0.74,1.29 -0.22,0.09 -0.45,0.18 -0.67,0.27 -0.18,-0.2 -0.37,-0.39 -0.53,-0.6 -0.5,-0.67 -0.9,-1.39 -1.19,-2.18 -0.02,-0.06 -0.12,-0.04 -0.1,0.03 0.28,0.8 0.66,1.59 1.16,2.27 0.14,0.2 0.31,0.37 0.47,0.56 -0.22,0.09 -0.44,0.18 -0.66,0.26 -0.01,-0.01 -0.02,-0.02 -0.03,-0.03 -0.39,-0.49 -0.67,-1.06 -0.82,-1.66 -0.03,-0.12 -0.21,-0.07 -0.19,0.05 0.13,0.63 0.4,1.22 0.78,1.74 -0.17,0.06 -0.34,0.13 -0.51,0.2 -0.22,-0.25 -0.43,-0.51 -0.61,-0.79 -0.55,-0.84 -0.97,-1.77 -1.21,-2.75 -0.01,-0.05 -0.09,-0.03 -0.07,0.02 0.29,1.3 0.91,2.53 1.75,3.57 -0.21,0.08 -0.42,0.16 -0.63,0.24 -0.38,-0.48 -0.72,-1.01 -0.96,-1.58 -0.06,-0.14 -0.29,-0.08 -0.23,0.06 0.23,0.58 0.53,1.12 0.89,1.64 -0.2,0.08 -0.4,0.15 -0.61,0.23 -0.2,-0.19 -0.4,-0.38 -0.58,-0.6 -0.58,-0.69 -1.04,-1.49 -1.37,-2.33 -0.04,-0.11 -0.22,-0.07 -0.18,0.05 0.3,0.86 0.74,1.65 1.3,2.37 0.17,0.22 0.37,0.41 0.56,0.61 -0.22,0.08 -0.44,0.17 -0.66,0.26 -0.23,-0.27 -0.44,-0.56 -0.6,-0.89 -0.03,-0.06 -0.12,-0.01 -0.09,0.05 0.14,0.32 0.33,0.61 0.53,0.9 -0.15,0.06 -0.29,0.11 -0.44,0.17 -0.09,-0.1 -0.19,-0.18 -0.27,-0.28 -0.45,-0.55 -0.81,-1.17 -1.09,-1.82 -0.02,-0.04 -0.09,-0.01 -0.08,0.03 0.27,0.67 0.62,1.3 1.04,1.88 0.06,0.09 0.14,0.17 0.21,0.26 -0.17,0.07 -0.34,0.13 -0.51,0.2 -0.25,-0.31 -0.47,-0.65 -0.61,-1.03 -0.04,-0.09 -0.19,-0.06 -0.15,0.04 0.13,0.38 0.34,0.73 0.57,1.06 -0.2,0.08 -0.4,0.17 -0.61,0.25 -0.14,-0.13 -0.28,-0.26 -0.4,-0.4 -0.55,-0.62 -0.96,-1.36 -1.18,-2.16 -0.02,-0.07 -0.12,-0.04 -0.11,0.03 0.21,0.81 0.61,1.57 1.16,2.21 0.12,0.14 0.27,0.25 0.41,0.38 -0.12,0.05 -0.25,0.11 -0.37,0.16 -0.07,-0.08 -0.14,-0.15 -0.21,-0.22 -0.41,-0.46 -0.77,-0.96 -1.06,-1.5 -0.02,-0.03 -0.07,0 -0.05,0.03 0.28,0.56 0.6,1.11 0.98,1.61 0.05,0.06 0.1,0.11 0.15,0.17 -0.1,0.04 -0.2,0.09 -0.29,0.13 -0.03,-0.01 -0.06,-0.03 -0.09,-0.03 -0.08,-0.01 -0.14,-0.02 -0.2,-0.04 -0.01,-0.01 -0.02,-0.02 -0.03,-0.03 -0.48,-0.58 -0.85,-1.28 -1.1,-1.99 -0.03,-0.09 -0.17,-0.06 -0.15,0.04 0.16,0.69 0.47,1.3 0.88,1.87 -0.14,-0.06 -0.27,-0.15 -0.43,-0.32 -0.37,-0.4 -0.64,-0.89 -0.93,-1.35 -0.75,-1.17 -1.47,-2.37 -2.09,-3.62 -0.59,-1.19 -1.08,-2.43 -1.35,-3.72 -0.11,-0.53 -0.2,-1.07 -0.23,-1.62 0.01,-0.04 -0.01,-0.09 -0.01,-0.13 0,-0.04 -0.01,-0.09 -0.01,-0.13 0,-0.23 0.01,-0.5 0.08,-0.76 0.14,-0.04 0.29,-0.08 0.43,-0.13 0,0.06 0.01,0.12 0.01,0.17 0.01,0.15 0.02,0.3 0.04,0.45 0.02,0.15 0.03,0.31 0.06,0.46 0.02,0.15 0.02,0.33 0.09,0.47 0.05,0.09 0.18,0.06 0.21,-0.03 0.05,-0.13 0.01,-0.3 0.01,-0.44 0,-0.16 -0.01,-0.31 -0.01,-0.47 0,-0.15 -0.02,-0.3 -0.03,-0.45 -0.01,-0.08 -0.01,-0.19 -0.04,-0.28 0.48,-0.17 0.96,-0.35 1.44,-0.54 -0.01,0.23 -0.02,0.47 -0.01,0.7 0.02,0.49 0.07,0.99 0.26,1.45 0.03,0.07 0.15,0.03 0.15,-0.04 -0.02,-0.47 -0.11,-0.94 -0.13,-1.41 -0.01,-0.28 0.02,-0.55 0.04,-0.83 0.3,-0.12 0.61,-0.24 0.91,-0.36 l 0.02,0.81 c 0,0.16 0,0.32 0.02,0.47 0.01,0.15 0.01,0.33 0.06,0.48 0.03,0.08 0.15,0.09 0.17,0 0.04,-0.14 0.03,-0.31 0.03,-0.46 0,-0.16 -0.01,-0.33 -0.01,-0.49 -0.01,-0.31 -0.02,-0.61 -0.03,-0.92 0.38,-0.15 0.76,-0.3 1.13,-0.45 0,0.16 0,0.33 -0.01,0.49 v 0.39 c 0,0.07 0,0.13 0,0.2 0,0.07 0.02,0.14 0.03,0.2 0.02,0.08 0.14,0.08 0.15,0 0.02,-0.07 0.04,-0.13 0.04,-0.2 0,-0.06 0,-0.12 0,-0.18 0,-0.14 0,-0.27 0,-0.41 0,-0.19 0,-0.39 0.01,-0.58 0.25,-0.1 0.5,-0.2 0.76,-0.3 -0.04,0.19 -0.06,0.38 -0.06,0.58 0,0.21 0.03,0.41 0.08,0.61 0.03,0.1 0.06,0.21 0.1,0.3 0.04,0.09 0.09,0.21 0.18,0.26 0.06,0.03 0.14,0.01 0.15,-0.06 0.02,-0.09 -0.02,-0.17 -0.05,-0.26 -0.03,-0.09 -0.05,-0.18 -0.08,-0.27 -0.05,-0.18 -0.08,-0.37 -0.09,-0.56 -0.01,-0.24 0.02,-0.49 0.08,-0.72 0.36,-0.14 0.72,-0.29 1.09,-0.43 -0.03,0.02 -0.05,0.04 -0.06,0.08 -0.04,0.29 -0.05,0.57 -0.01,0.86 0.02,0.14 0.04,0.27 0.08,0.4 0.02,0.07 0.04,0.14 0.07,0.21 0.03,0.07 0.05,0.15 0.13,0.19 0.07,0.03 0.14,0 0.16,-0.07 0.02,-0.07 -0.01,-0.13 -0.03,-0.19 -0.02,-0.06 -0.04,-0.12 -0.06,-0.18 -0.04,-0.13 -0.06,-0.26 -0.08,-0.39 -0.03,-0.25 -0.03,-0.51 0,-0.76 0.01,-0.07 -0.02,-0.15 -0.1,-0.17 -0.03,-0.01 -0.06,0 -0.09,0.01 0.2,-0.08 0.41,-0.16 0.61,-0.24 0.73,-0.29 1.46,-0.58 2.18,-0.87 -0.03,0.35 -0.02,0.69 0.02,1.04 0.05,0.4 0.14,0.82 0.32,1.19 0.05,0.11 0.23,0.03 0.2,-0.08 -0.06,-0.19 -0.13,-0.38 -0.18,-0.58 -0.05,-0.19 -0.09,-0.39 -0.12,-0.58 -0.05,-0.36 -0.05,-0.71 -0.02,-1.07 0.35,-0.14 0.69,-0.28 1.04,-0.41 l -0.01,0.18 c -0.01,0.12 -0.01,0.23 -0.02,0.35 0,0.12 -0.03,0.27 0.03,0.37 0.04,0.06 0.15,0.09 0.2,0.02 0.05,-0.06 0.06,-0.12 0.07,-0.19 0.01,-0.06 0.01,-0.12 0.02,-0.18 0.01,-0.12 0.02,-0.24 0.03,-0.36 l 0.02,-0.32 c 0.13,-0.05 0.25,-0.1 0.38,-0.15 0.41,-0.16 0.82,-0.33 1.22,-0.5 0.27,1 0.6,1.98 0.95,2.94 0.69,1.91 1.52,3.76 2.51,5.54 0.61,1.1 1.27,2.19 2.02,3.22 0,0.03 -0.05,0.05 -0.1,0.07 z m 12,-0.15 c -0.06,-0.04 -0.11,-0.08 -0.17,-0.12 -0.17,-0.12 -0.33,-0.25 -0.49,-0.38 -0.3,-0.24 -0.6,-0.5 -0.88,-0.76 -0.57,-0.53 -1.11,-1.09 -1.61,-1.69 -1,-1.21 -1.86,-2.54 -2.52,-3.96 -0.06,-0.12 -0.22,-0.01 -0.17,0.1 0.62,1.46 1.43,2.83 2.43,4.07 0.5,0.61 1.04,1.19 1.62,1.73 0.28,0.27 0.58,0.52 0.88,0.76 0.14,0.11 0.29,0.23 0.43,0.34 0.03,0.02 0.07,0.05 0.1,0.08 -0.7,0.3 -1.39,0.6 -2.09,0.89 -0.34,-0.23 -0.68,-0.46 -1,-0.73 -0.4,-0.34 -0.77,-0.71 -1.11,-1.12 -0.69,-0.83 -1.23,-1.76 -1.6,-2.77 -0.04,-0.1 -0.2,-0.06 -0.16,0.04 0.36,1.02 0.88,1.98 1.55,2.83 0.34,0.43 0.72,0.83 1.13,1.2 0.26,0.24 0.55,0.47 0.85,0.68 -0.27,0.12 -0.55,0.23 -0.82,0.35 -0.07,0.03 -0.14,0.06 -0.22,0.09 -0.81,-0.82 -1.57,-1.68 -2.24,-2.61 -0.87,-1.21 -1.59,-2.52 -2.18,-3.89 -0.02,-0.04 -0.08,-0.01 -0.07,0.03 1.01,2.41 2.46,4.65 4.23,6.58 -0.34,0.14 -0.68,0.29 -1.03,0.44 -0.16,-0.13 -0.32,-0.27 -0.47,-0.41 -0.31,-0.28 -0.61,-0.57 -0.91,-0.88 -0.6,-0.63 -1.15,-1.3 -1.65,-2.01 -0.99,-1.42 -1.78,-3.01 -2.34,-4.65 -0.03,-0.1 -0.19,-0.06 -0.16,0.04 0.47,1.71 1.23,3.3 2.24,4.76 0.49,0.71 1.04,1.39 1.64,2.02 0.31,0.33 0.63,0.64 0.96,0.94 0.12,0.11 0.25,0.22 0.38,0.33 -0.19,0.09 -0.37,0.19 -0.56,0.28 -0.26,-0.17 -0.54,-0.3 -0.83,-0.41 -0.51,-0.38 -0.92,-0.9 -1.3,-1.4 -0.69,-0.92 -1.3,-1.89 -1.9,-2.87 -0.05,-0.09 -0.18,-0.01 -0.14,0.08 0.56,1.13 1.25,2.18 2.02,3.17 0.16,0.2 0.32,0.42 0.49,0.62 0,0.01 0,0.01 0,0.02 -0.34,-0.2 -0.65,-0.43 -0.95,-0.68 0.01,0 0.02,0.01 0.03,0.01 0.06,0.03 0.12,0.07 0.19,0.09 0.06,0.02 0.12,-0.06 0.08,-0.11 -0.04,-0.06 -0.09,-0.11 -0.15,-0.16 0,-0.01 0,-0.01 0,-0.02 -0.01,-0.03 -0.04,-0.05 -0.07,-0.06 -0.02,-0.02 -0.05,-0.03 -0.07,-0.05 -0.04,-0.03 -0.09,-0.06 -0.13,-0.1 -0.03,-0.02 -0.07,-0.02 -0.1,-0.01 -0.03,0.01 -0.06,0.03 -0.08,0.06 -0.01,0.02 -0.01,0.05 -0.01,0.08 -0.11,-0.1 -0.22,-0.19 -0.32,-0.29 0,0 0,0 0,0 0,0 0.01,0 0.01,-0.01 -0.01,0 -0.01,0 -0.02,0 -1.09,-1.09 -1.93,-2.39 -2.72,-3.71 -1.87,-3.13 -3.2,-6.49 -4.12,-10.02 -0.25,-0.97 -0.42,-1.91 -0.38,-2.91 0.01,-0.39 0.1,-0.81 0.24,-1.22 0.21,-0.01 0.42,-0.07 0.64,-0.14 -0.01,0.08 -0.04,0.15 -0.05,0.23 -0.04,0.41 -0.03,0.83 0.14,1.21 0.06,0.15 0.28,0.06 0.28,-0.08 0.01,-0.36 -0.02,-0.73 0.03,-1.09 0.02,-0.15 0.06,-0.3 0.1,-0.45 0.09,-0.04 0.19,-0.07 0.27,-0.1 0.64,-0.22 1.27,-0.48 1.9,-0.73 0.3,-0.12 0.6,-0.25 0.9,-0.37 0,0.12 -0.01,0.24 -0.01,0.36 -0.01,0.27 -0.04,0.55 0.02,0.81 0.03,0.13 0.24,0.13 0.27,0 0.06,-0.26 0.04,-0.54 0.04,-0.81 0,-0.16 0,-0.33 0,-0.49 0.27,-0.11 0.54,-0.22 0.81,-0.34 -0.12,0.67 -0.12,1.34 -0.01,2.02 0.14,0.82 0.45,1.73 1,2.37 0.08,0.09 0.2,-0.03 0.16,-0.12 -0.37,-0.75 -0.71,-1.45 -0.86,-2.28 -0.13,-0.69 -0.1,-1.41 0.01,-2.1 0.42,-0.17 0.84,-0.34 1.25,-0.52 -0.05,0.57 -0.07,1.14 -0.06,1.7 0.01,0.39 0.03,0.78 0.07,1.17 0.03,0.35 0.05,0.77 0.18,1.1 0.04,0.11 0.2,0.1 0.21,-0.03 0.03,-0.38 -0.07,-0.78 -0.1,-1.16 -0.03,-0.37 -0.05,-0.75 -0.06,-1.12 -0.01,-0.59 0,-1.19 0.04,-1.78 0.4,-0.17 0.79,-0.34 1.19,-0.5 -0.24,0.9 -0.31,1.81 -0.18,2.74 0.07,0.52 0.2,1.04 0.38,1.54 0.17,0.45 0.37,0.99 0.73,1.33 0.05,0.05 0.15,0 0.13,-0.07 -0.15,-0.46 -0.43,-0.87 -0.6,-1.32 -0.18,-0.47 -0.31,-0.96 -0.38,-1.46 -0.15,-0.94 -0.1,-1.91 0.12,-2.84 0.44,-0.18 0.88,-0.37 1.32,-0.56 -0.1,0.47 -0.17,0.94 -0.18,1.42 -0.01,0.29 0,0.58 0.03,0.87 0.02,0.28 0.06,0.6 0.18,0.85 0.04,0.09 0.17,0.04 0.18,-0.05 0.03,-0.28 -0.03,-0.58 -0.05,-0.86 -0.02,-0.27 -0.03,-0.54 -0.02,-0.81 0.01,-0.52 0.07,-1.04 0.17,-1.55 0.18,-0.08 0.36,-0.15 0.53,-0.22 0.24,1.94 0.87,3.86 1.49,5.7 1.51,4.46 3.58,8.74 6.15,12.69 0.37,0.57 0.75,1.19 1.2,1.75 0,0 -0.01,0 -0.01,0.01 -0.24,-0.25 -0.47,-0.5 -0.69,-0.77 -0.45,-0.54 -0.87,-1.11 -1.26,-1.7 -0.78,-1.18 -1.44,-2.43 -1.97,-3.74 -0.04,-0.1 -0.19,-0.06 -0.16,0.04 0.51,1.33 1.15,2.61 1.92,3.82 0.38,0.59 0.78,1.16 1.22,1.7 0.2,0.25 0.41,0.52 0.63,0.78 -0.14,0.06 -0.28,0.12 -0.41,0.17 -0.24,-0.27 -0.47,-0.54 -0.7,-0.82 -0.5,-0.62 -0.96,-1.26 -1.39,-1.93 -0.88,-1.33 -1.63,-2.74 -2.22,-4.22 -0.05,-0.11 -0.23,-0.07 -0.19,0.05 0.56,1.5 1.25,2.94 2.09,4.3 0.41,0.66 0.87,1.3 1.35,1.91 0.23,0.29 0.46,0.58 0.71,0.86 -0.22,0.09 -0.44,0.19 -0.66,0.28 -0.08,-0.07 -0.15,-0.16 -0.21,-0.24 -0.08,-0.12 -0.19,-0.23 -0.28,-0.34 -0.09,-0.12 -0.18,-0.24 -0.26,-0.37 -0.06,-0.1 -0.21,-0.01 -0.15,0.09 0.07,0.14 0.15,0.27 0.23,0.4 0.09,0.12 0.18,0.26 0.3,0.35 0.07,0.05 0.14,0.11 0.22,0.17 -0.11,0.05 -0.22,0.09 -0.33,0.14 -2.49,-1.93 -4.4,-4.59 -5.47,-7.55 -0.03,-0.08 -0.16,-0.05 -0.14,0.04 0.97,3.01 2.82,5.66 5.27,7.65 -0.25,0.1 -0.51,0.2 -0.76,0.31 z m 7.19,-1.8 c -0.03,0.01 -0.07,0.03 -0.1,0.04 -0.11,-0.08 -0.25,-0.14 -0.39,-0.15 -0.05,0 -0.1,0.01 -0.15,0.01 -0.12,-0.11 -0.24,-0.23 -0.36,-0.34 -0.25,-0.24 -0.49,-0.5 -0.73,-0.75 -0.5,-0.54 -0.96,-1.1 -1.4,-1.69 -0.84,-1.13 -1.57,-2.35 -2.2,-3.61 -0.05,-0.11 -0.2,-0.01 -0.16,0.09 0.58,1.33 1.31,2.57 2.18,3.73 0.42,0.56 0.86,1.1 1.33,1.61 0.24,0.26 0.48,0.51 0.73,0.76 0.09,0.09 0.18,0.17 0.27,0.26 -0.05,0.01 -0.1,0.02 -0.15,0.04 -0.12,0.04 -0.22,0.07 -0.35,0.07 -0.4,-0.02 -0.71,-0.31 -0.96,-0.59 -0.64,-0.7 -1.13,-1.57 -1.64,-2.37 -1.11,-1.73 -2.13,-3.53 -3.03,-5.38 -1.72,-3.5 -3.16,-7.25 -3.98,-11.06 -0.18,-0.82 -0.24,-1.63 -0.2,-2.46 0.02,-0.36 0.04,-0.68 0.18,-1.03 0.07,-0.17 0.16,-0.33 0.25,-0.49 0.1,0.46 0.2,0.91 0.32,1.36 0.02,0.09 0.06,0.18 0.09,0.27 -0.02,0.25 -0.04,0.49 -0.04,0.74 0,0.37 0.01,0.73 0.03,1.1 0.02,0.36 0.03,0.79 0.16,1.13 0.04,0.09 0.21,0.13 0.23,0 0.05,-0.34 -0.02,-0.71 -0.04,-1.05 -0.02,-0.32 -0.03,-0.64 -0.03,-0.96 0.14,0.42 0.25,0.85 0.41,1.27 0.11,0.29 0.22,0.6 0.35,0.92 0.14,0.62 0.28,1.25 0.43,1.87 0.16,0.65 0.29,1.31 0.54,1.93 0.03,0.06 0.14,0.06 0.13,-0.02 -0.06,-0.66 -0.24,-1.3 -0.4,-1.95 -0.06,-0.25 -0.13,-0.51 -0.19,-0.76 0.09,0.15 0.18,0.29 0.29,0.41 0.3,0.35 0.76,0.16 0.93,-0.17 0.05,0.01 0.1,0.01 0.15,0.01 0.08,0.33 0.16,0.65 0.25,0.98 0.05,0.21 0.11,0.43 0.16,0.64 0.05,0.2 0.09,0.45 0.22,0.61 0.05,0.06 0.18,0.03 0.19,-0.05 0.03,-0.19 -0.05,-0.42 -0.1,-0.61 -0.06,-0.22 -0.12,-0.44 -0.18,-0.67 -0.08,-0.31 -0.16,-0.61 -0.25,-0.92 0.22,-0.04 0.44,-0.09 0.61,-0.13 0.18,-0.04 0.35,-0.11 0.52,-0.17 0.01,0.09 0.02,0.17 0.04,0.26 0.05,0.21 0.11,0.41 0.19,0.61 0.04,0.09 0.08,0.18 0.14,0.26 0.06,0.09 0.1,0.2 0.19,0.26 0.07,0.06 0.17,0 0.15,-0.09 -0.01,-0.09 -0.07,-0.18 -0.11,-0.26 -0.04,-0.09 -0.07,-0.19 -0.11,-0.29 -0.07,-0.19 -0.14,-0.37 -0.18,-0.57 -0.02,-0.09 -0.03,-0.18 -0.04,-0.27 0.27,-0.1 0.54,-0.22 0.81,-0.33 0.11,-0.05 0.21,-0.1 0.31,-0.15 0.02,0.11 0.05,0.21 0.07,0.32 0.09,0.38 0.15,0.79 0.31,1.15 0.02,0.06 0.13,0.06 0.12,-0.02 -0.02,-0.39 -0.13,-0.79 -0.22,-1.17 -0.03,-0.13 -0.06,-0.25 -0.09,-0.38 0.3,-0.14 0.61,-0.28 0.9,-0.44 0.06,-0.03 0.12,-0.07 0.19,-0.11 0.05,0.2 0.09,0.4 0.14,0.59 0.05,0.22 0.1,0.45 0.15,0.67 0.02,0.11 0.05,0.22 0.07,0.32 0.03,0.13 0.09,0.24 0.14,0.36 0.03,0.07 0.14,0.07 0.14,-0.02 -0.01,-0.12 -0.01,-0.24 -0.03,-0.35 -0.02,-0.11 -0.05,-0.22 -0.07,-0.32 -0.06,-0.23 -0.11,-0.47 -0.17,-0.7 -0.05,-0.23 -0.11,-0.45 -0.16,-0.68 0.09,-0.06 0.19,-0.11 0.28,-0.17 0.05,-0.03 0.1,-0.07 0.16,-0.1 0.21,-0.02 0.42,-0.11 0.56,-0.27 0.08,0.26 0.16,0.51 0.25,0.77 0.06,0.18 0.12,0.37 0.18,0.55 0.03,0.09 0.07,0.18 0.1,0.27 0.04,0.09 0.06,0.17 0.12,0.25 0.05,0.07 0.15,0.01 0.15,-0.06 0.01,-0.1 -0.03,-0.2 -0.05,-0.29 -0.02,-0.09 -0.04,-0.17 -0.07,-0.26 -0.06,-0.18 -0.12,-0.37 -0.18,-0.55 -0.11,-0.35 -0.23,-0.7 -0.34,-1.06 0.01,-0.09 0.01,-0.17 -0.02,-0.27 -0.46,-1.61 -1.1,-3.16 -1.93,-4.62 0.03,-0.08 0.04,-0.17 0.06,-0.25 0.02,-0.09 0.04,-0.17 0.05,-0.26 0.03,-0.17 0.06,-0.35 0.08,-0.52 0.02,-0.2 0.04,-0.4 0.05,-0.61 0.24,-0.09 0.48,-0.19 0.72,-0.28 -0.01,0.08 -0.04,0.16 -0.04,0.24 -0.01,0.18 -0.01,0.36 0,0.54 0.01,0.09 0.03,0.18 0.04,0.27 0.01,0.09 0.03,0.17 0.07,0.25 0.03,0.07 0.15,0.05 0.17,-0.02 0.01,-0.09 0.01,-0.17 0,-0.26 0,-0.08 0,-0.16 0,-0.24 -0.01,-0.17 -0.01,-0.35 0,-0.52 0,-0.12 0.04,-0.24 0.05,-0.37 0.15,-0.06 0.3,-0.12 0.45,-0.18 -0.02,0.4 -0.02,0.79 -0.01,1.19 0.01,0.37 0.03,0.74 0.07,1.1 0.04,0.34 0.06,0.72 0.18,1.04 0.03,0.09 0.17,0.08 0.17,-0.02 0.02,-0.36 -0.04,-0.74 -0.07,-1.1 -0.03,-0.35 -0.05,-0.71 -0.06,-1.07 -0.01,-0.42 0.01,-0.84 0.01,-1.26 0.26,-0.1 0.53,-0.2 0.79,-0.31 -0.11,0.99 -0.1,1.99 0.04,2.99 0.09,0.68 0.24,1.36 0.45,2.02 0.2,0.64 0.45,1.32 0.82,1.89 0.04,0.07 0.17,0.03 0.14,-0.06 -0.21,-0.63 -0.47,-1.23 -0.66,-1.86 -0.19,-0.64 -0.33,-1.28 -0.43,-1.94 -0.15,-1.03 -0.17,-2.1 -0.08,-3.14 0.41,-0.16 0.83,-0.32 1.24,-0.48 -0.09,0.76 -0.15,1.52 -0.12,2.29 0.02,0.49 0.07,0.98 0.17,1.46 0.11,0.51 0.2,1.04 0.38,1.53 0.02,0.05 0.09,0.03 0.08,-0.02 -0.08,-0.5 -0.21,-0.98 -0.26,-1.49 -0.05,-0.49 -0.09,-0.98 -0.12,-1.48 -0.04,-0.79 -0.01,-1.58 0.07,-2.37 0.28,-0.11 0.55,-0.21 0.83,-0.32 -0.14,1.2 -0.12,2.41 0.05,3.61 0.12,0.8 0.3,1.59 0.55,2.36 0.13,0.38 0.27,0.76 0.42,1.13 0.13,0.32 0.27,0.73 0.51,0.97 0.08,0.08 0.19,-0.01 0.17,-0.1 -0.06,-0.36 -0.3,-0.73 -0.44,-1.07 -0.15,-0.36 -0.28,-0.73 -0.4,-1.1 -0.23,-0.71 -0.4,-1.45 -0.51,-2.19 -0.19,-1.23 -0.2,-2.49 -0.08,-3.73 0.03,-0.01 0.05,-0.02 0.08,-0.03 0.19,-0.07 0.38,-0.15 0.56,-0.22 0.02,0.63 0.04,1.26 0.06,1.9 0.02,0.5 0.04,1 0.06,1.5 0.02,0.48 0,1.01 0.11,1.48 0.03,0.14 0.21,0.09 0.23,-0.03 0.07,-0.5 -0.01,-1.04 -0.03,-1.55 -0.02,-0.48 -0.04,-0.97 -0.07,-1.45 -0.03,-0.65 -0.07,-1.3 -0.11,-1.95 0.12,-0.05 0.24,-0.09 0.36,-0.14 0,0.04 -0.01,0.07 -0.01,0.11 -0.1,0.96 -0.03,1.94 0.1,2.9 0.21,1.47 0.61,2.92 1.05,4.34 -0.78,2.43 -0.48,5 0.69,7.26 0.51,1 1.2,1.9 2,2.69 0.39,1.17 0.89,2.31 1.51,3.38 0.42,0.74 0.89,1.45 1.4,2.12 0.25,0.33 0.5,0.65 0.77,0.96 0.1,0.11 0.2,0.22 0.3,0.34 -0.24,0.1 -0.48,0.2 -0.71,0.31 -0.17,-0.29 -0.48,-0.53 -0.71,-0.78 -0.24,-0.26 -0.46,-0.52 -0.68,-0.79 -0.48,-0.58 -0.92,-1.2 -1.32,-1.84 -0.78,-1.25 -1.46,-2.6 -1.92,-4 -0.04,-0.11 -0.21,-0.07 -0.18,0.05 0.45,1.44 1.04,2.82 1.84,4.1 0.39,0.63 0.82,1.23 1.28,1.8 0.24,0.29 0.48,0.58 0.73,0.86 0.2,0.23 0.43,0.52 0.69,0.7 -0.3,0.13 -0.59,0.26 -0.89,0.38 -0.07,-0.11 -0.17,-0.2 -0.27,-0.29 -0.17,-0.15 -0.33,-0.31 -0.49,-0.47 -0.3,-0.3 -0.58,-0.61 -0.86,-0.93 -0.56,-0.65 -1.06,-1.35 -1.5,-2.09 -0.89,-1.48 -1.55,-3.11 -1.93,-4.79 -0.03,-0.15 -0.26,-0.09 -0.23,0.06 0.37,1.74 1.01,3.4 1.92,4.92 0.45,0.75 0.96,1.46 1.52,2.12 0.29,0.34 0.6,0.67 0.92,0.99 0.16,0.16 0.32,0.31 0.49,0.46 0.05,0.05 0.1,0.09 0.15,0.13 -0.27,0.11 -0.53,0.23 -0.8,0.34 -0.24,-0.34 -0.55,-0.64 -0.81,-0.95 -0.34,-0.4 -0.67,-0.81 -0.99,-1.23 -0.61,-0.79 -1.19,-1.61 -1.72,-2.45 -0.06,-0.1 -0.22,-0.01 -0.16,0.1 0.53,0.88 1.09,1.74 1.71,2.57 0.29,0.39 0.6,0.77 0.91,1.14 0.26,0.31 0.53,0.65 0.84,0.93 -0.38,0.17 -0.77,0.33 -1.15,0.5 -0.07,-0.07 -0.14,-0.14 -0.21,-0.21 -0.3,-0.32 -0.59,-0.64 -0.87,-0.97 -0.6,-0.71 -1.14,-1.46 -1.64,-2.24 -0.98,-1.53 -1.8,-3.2 -2.38,-4.92 -0.04,-0.12 -0.22,-0.07 -0.19,0.05 0.43,1.39 0.98,2.71 1.68,3.99 0.7,1.27 1.53,2.46 2.47,3.56 0.25,0.3 0.51,0.61 0.79,0.91 -0.24,0.11 -0.48,0.21 -0.73,0.32 -0.04,-0.04 -0.09,-0.08 -0.13,-0.12 -0.26,-0.26 -0.51,-0.52 -0.75,-0.79 -0.49,-0.54 -0.94,-1.11 -1.37,-1.7 -0.84,-1.16 -1.57,-2.41 -2.17,-3.71 -0.06,-0.14 -0.26,-0.02 -0.2,0.12 0.58,1.35 1.3,2.63 2.16,3.82 0.41,0.57 0.86,1.13 1.33,1.66 0.24,0.27 0.49,0.54 0.74,0.79 0.02,0.02 0.05,0.05 0.07,0.07 -0.32,0.14 -0.64,0.28 -0.96,0.42 -0.17,-0.14 -0.34,-0.29 -0.5,-0.44 -0.3,-0.27 -0.59,-0.55 -0.86,-0.84 -0.54,-0.58 -1.03,-1.2 -1.47,-1.86 -0.88,-1.33 -1.55,-2.81 -1.96,-4.35 -0.04,-0.14 -0.24,-0.08 -0.21,0.06 0.39,1.59 1.04,3.11 1.94,4.48 0.44,0.67 0.94,1.31 1.48,1.9 0.38,0.41 0.79,0.85 1.24,1.21 -0.26,0.11 -0.51,0.23 -0.77,0.34 -1.71,-1.63 -3.12,-3.6 -4.01,-5.79 -0.04,-0.09 -0.19,-0.06 -0.15,0.04 0.85,2.23 2.17,4.22 3.88,5.88 -0.36,0.16 -0.71,0.31 -1.07,0.47 -1.17,-1.11 -2.24,-2.29 -3.13,-3.64 -0.98,-1.48 -1.77,-3.09 -2.36,-4.76 -0.04,-0.12 -0.23,-0.07 -0.19,0.05 0.53,1.72 1.32,3.35 2.3,4.85 0.86,1.31 1.87,2.57 3.03,3.65 -0.16,0.07 -0.32,0.14 -0.48,0.21 -0.16,0.19 -0.42,0.34 -0.7,0.46 z m 24.84,5.68 c -2.36,-1.63 -4.6,-3.47 -6.69,-5.47 -0.47,-0.54 -0.92,-1.08 -1.38,-1.61 -0.72,-0.82 -1.4,-1.67 -2.07,-2.53 0.19,-0.04 0.33,-0.14 0.43,-0.28 0.12,-0.03 0.24,-0.06 0.36,-0.1 0.46,0.88 0.97,1.74 1.59,2.53 0.45,0.59 0.93,1.17 1.51,1.63 0.59,0.47 1.1,1.03 1.69,1.5 0.65,0.52 1.35,1.03 2.1,1.4 0.13,0.06 0.23,-0.11 0.11,-0.19 -0.6,-0.41 -1.22,-0.79 -1.8,-1.22 -0.59,-0.44 -1.23,-0.87 -1.7,-1.43 -0.94,-1.12 -1.9,-2.23 -2.67,-3.48 -0.17,-0.27 -0.32,-0.55 -0.48,-0.83 0.22,-0.07 0.43,-0.13 0.65,-0.2 0.33,0.45 0.66,0.91 1,1.36 0.23,0.3 0.45,0.6 0.68,0.9 0.12,0.15 0.24,0.3 0.37,0.44 0.13,0.14 0.25,0.29 0.39,0.41 0.1,0.08 0.23,-0.02 0.18,-0.14 -0.07,-0.17 -0.19,-0.33 -0.29,-0.49 -0.1,-0.16 -0.22,-0.32 -0.33,-0.47 -0.23,-0.31 -0.47,-0.61 -0.7,-0.91 -0.32,-0.41 -0.64,-0.81 -0.97,-1.22 0.25,-0.09 0.51,-0.17 0.76,-0.27 0.44,0.54 0.87,1.09 1.33,1.61 0.89,1.01 1.9,1.89 2.87,2.82 0.18,0.17 0.39,0.22 0.58,0.2 3.58,3.19 7.62,5.86 11.98,7.86 1.47,0.67 2.98,1.24 4.51,1.76 -0.01,0.02 -0.01,0.04 -0.02,0.06 0.08,0.01 0.16,0.02 0.24,0.03 0.03,0.01 0.05,0.01 0.08,0.02 0.07,0.03 0.18,0.07 0.26,0.12 0.08,0.05 0.16,0.11 0.22,0.18 0.01,-0.05 0.02,-0.1 0.04,-0.15 0.29,0.09 0.58,0.2 0.87,0.28 -0.07,0.29 -0.13,0.58 -0.2,0.87 -0.04,-0.01 -0.07,-0.02 -0.11,-0.03 -0.3,-0.09 -0.59,-0.18 -0.89,-0.27 -0.6,-0.18 -1.19,-0.36 -1.78,-0.57 -1.19,-0.43 -2.37,-0.9 -3.52,-1.41 -0.13,-0.06 -0.25,0.14 -0.12,0.2 1.14,0.52 2.3,1 3.48,1.44 0.58,0.22 1.17,0.45 1.75,0.65 0.31,0.11 0.62,0.21 0.93,0.31 0.06,0.02 0.11,0.04 0.17,0.05 -0.08,0.35 -0.16,0.69 -0.24,1.04 -0.16,-0.03 -0.33,-0.06 -0.48,-0.1 -0.33,-0.09 -0.65,-0.2 -0.97,-0.33 -0.67,-0.27 -1.31,-0.61 -1.91,-1 -0.12,-0.08 -0.24,0.12 -0.11,0.2 0.6,0.4 1.23,0.74 1.9,1.02 0.34,0.14 0.68,0.27 1.03,0.39 0.15,0.05 0.31,0.12 0.48,0.17 -0.02,0.1 -0.05,0.21 -0.07,0.31 -0.3,-0.09 -0.6,-0.17 -0.89,-0.26 0.03,-0.12 0.06,-0.24 0.08,-0.35 -0.04,0.02 -0.08,0.04 -0.12,0.05 0,0 -0.01,0 -0.01,0.01 -0.14,0.04 -0.29,0.04 -0.43,0 -0.06,-0.03 -0.13,-0.05 -0.19,-0.08 -0.05,-0.03 -0.1,-0.07 -0.15,-0.11 -0.02,0.07 -0.04,0.14 -0.05,0.22 -4.72,-1.55 -9.19,-3.72 -13.28,-6.54 z m 14.63,8.8 c -0.02,0.09 -0.04,0.18 -0.06,0.27 -0.05,-0.06 -0.11,-0.12 -0.17,-0.16 -0.09,-0.07 -0.19,-0.11 -0.29,-0.15 -0.14,-0.04 -0.28,-0.05 -0.42,-0.04 0.02,-0.06 0.03,-0.13 0.05,-0.2 0.29,0.1 0.59,0.19 0.89,0.28 z m -2.42,6.14 c 0.04,0.02 0.09,0.04 0.14,0.02 0.08,-0.03 0.17,-0.05 0.26,-0.07 0.01,0 0.02,0 0.03,0 0,0 0.01,0 0.02,0 0.02,0 0.04,0 0.06,0 0.04,0 0.09,0 0.13,0 0.04,0 0.09,0 0.13,0.01 0.01,0 0.01,0 0.01,0 0,0 0,0 0.01,0 0.03,0 0.05,0.01 0.08,0.01 0.04,0.01 0.09,0.02 0.13,0.03 0.01,0 0.01,0 0.02,0.01 0,0 0,0 0,0 -0.05,0.2 -0.09,0.4 -0.14,0.6 -0.14,0.02 -0.28,0.05 -0.42,0.09 -0.14,0.04 -0.28,0.08 -0.42,0.12 -0.11,0.03 -0.19,0.16 -0.16,0.28 0.04,0.12 0.15,0.18 0.28,0.16 0.14,-0.03 0.29,-0.06 0.43,-0.09 0.06,-0.01 0.12,-0.04 0.19,-0.05 -0.04,0.19 -0.08,0.37 -0.13,0.56 -0.02,0 -0.03,-0.01 -0.05,-0.01 -0.01,0 -0.03,0 -0.04,0 -0.06,-0.01 -0.13,0.01 -0.19,0.03 -0.05,0.02 -0.09,0.03 -0.14,0.04 l -0.28,0.07 c -0.04,0 -0.07,0 -0.11,0 -0.08,0 -0.17,0 -0.25,0.01 0.13,-0.62 0.27,-1.22 0.41,-1.82 z m -0.6,1.81 c -0.05,0 -0.09,0 -0.14,0 -0.19,0 -0.38,0.01 -0.56,0.01 -0.05,0 -0.1,0.01 -0.15,0.01 0.26,-0.18 0.58,-0.18 0.85,-0.02 z m -3.19,7.27 c -0.05,0.01 -0.1,0.03 -0.15,0.05 0,-0.04 0.01,-0.08 0,-0.12 -0.01,-0.07 -0.02,-0.14 -0.04,-0.2 0.06,0.02 0.15,0 0.18,-0.06 0.01,-0.02 0.02,-0.04 0.03,-0.05 0,0 0,0 0,0 0,0 0.01,-0.01 0.01,-0.01 0.01,-0.01 0.02,-0.02 0.04,-0.03 0,0 0,0 0,0 0.01,0 0.01,-0.01 0.02,-0.01 0.02,-0.01 0.03,-0.02 0.05,-0.02 -0.05,0.03 0,0 0.02,0 0.02,-0.01 0.04,-0.01 0.05,-0.01 0,0 0,0 0,0 0.01,0 0.01,0 0.02,0 0.02,0 0.04,0 0.06,0 0.01,0 0.02,0 0.03,0 0.03,0.01 0.07,0.02 0.1,0.03 0.01,0 0.01,0.01 0.02,0.01 0.02,0.01 0.03,0.01 0.05,0.02 0,0 0,0 0,0 0.04,0.02 0.08,0.04 0.12,0.05 0.01,0.01 0.01,0.01 0.02,0.02 0.02,0.02 0.04,0.04 0.07,0.06 0.06,0.04 0.13,0 0.15,-0.06 0.02,-0.07 0,-0.14 -0.03,-0.2 -0.01,-0.07 -0.06,-0.12 -0.12,-0.17 -0.05,-0.04 -0.11,-0.07 -0.17,-0.08 -0.11,-0.03 -0.22,-0.03 -0.33,-0.01 -0.19,0.03 -0.33,0.15 -0.42,0.3 -0.05,-0.26 -0.09,-0.52 -0.14,-0.77 0.11,-0.01 0.21,-0.02 0.32,-0.03 0.09,-0.01 0.17,-0.02 0.26,-0.03 0.11,-0.01 0.23,-0.01 0.3,-0.11 0.03,-0.05 0.02,-0.11 -0.02,-0.15 -0.08,-0.08 -0.2,-0.05 -0.3,-0.04 l -0.25,0.03 c -0.12,0.01 -0.24,0.03 -0.36,0.04 -0.02,-0.09 -0.04,-0.19 -0.05,-0.28 0.09,-0.01 0.19,-0.02 0.28,-0.03 0.08,-0.01 0.17,-0.02 0.25,-0.03 0.04,0 0.08,-0.01 0.11,-0.01 0.05,-0.01 0.1,-0.02 0.15,-0.04 0.06,-0.02 0.1,-0.07 0.09,-0.13 -0.01,-0.06 -0.06,-0.1 -0.12,-0.1 -0.04,-0.01 -0.08,-0.01 -0.12,-0.01 -0.04,0 -0.08,0.01 -0.12,0.01 -0.08,0.01 -0.16,0.02 -0.24,0.03 -0.11,0.01 -0.21,0.03 -0.32,0.04 -0.08,-0.54 -0.13,-1.08 -0.18,-1.62 0.16,0 0.31,0.01 0.47,0.01 0.09,0 0.18,0.01 0.28,0 0.1,0 0.25,0.02 0.32,-0.07 0.05,-0.06 0.05,-0.13 0,-0.2 -0.07,-0.09 -0.21,-0.07 -0.31,-0.07 -0.1,0 -0.19,0 -0.29,0 -0.17,0 -0.33,0.01 -0.5,0.01 -0.02,-0.2 -0.05,-0.4 -0.06,-0.6 0.03,0.03 0.07,0.04 0.11,0.05 0.35,0.03 0.71,0.04 1.06,0.03 0.1,0 0.19,-0.08 0.19,-0.19 0,-0.1 -0.08,-0.19 -0.19,-0.19 -0.35,-0.01 -0.71,0 -1.06,0.03 -0.05,0 -0.09,0.03 -0.12,0.06 -0.04,-0.72 -0.06,-1.44 -0.05,-2.16 0.01,-0.47 0.02,-0.94 0.03,-1.42 0.12,0.05 0.24,0.09 0.37,0.12 0.13,0.03 0.26,0.05 0.39,0.07 0.13,0.02 0.26,0.04 0.39,0.06 0.13,0.02 0.28,0.04 0.42,0.05 -0.04,1.17 0.1,2.37 0.15,3.51 0.06,1.46 0.04,2.96 0.19,4.41 -0.16,0.03 -0.32,0.06 -0.48,0.1 -0.23,0 -0.43,0.04 -0.63,0.11 z m -8.89,31.27 c 0.8,-0.21 1.61,-0.36 2.42,-0.47 0.16,0.06 0.31,0.03 0.45,-0.07 0.35,-0.04 0.74,-0.07 1.13,-0.11 -0.07,0.27 -0.13,0.55 -0.2,0.82 -0.71,0.11 -1.4,0.31 -2.04,0.64 -0.47,0.25 -0.96,0.54 -1.25,0.99 -0.34,0.51 -0.34,1.16 -0.03,1.69 0.44,0.76 1.33,1.05 2.19,1.24 -0.02,0.06 -0.03,0.12 -0.05,0.19 -0.05,0.22 -0.11,0.43 -0.17,0.65 -0.32,-0.07 -0.64,-0.15 -0.95,-0.23 -2.1,-0.54 -4.8,-1.07 -6.26,-2.74 0.02,-0.03 0.04,-0.07 0.04,-0.11 0.01,-0.31 0.41,-0.77 0.65,-0.95 0.38,-0.27 0.84,-0.44 1.26,-0.61 0.92,-0.36 1.86,-0.68 2.81,-0.93 z m -5.93,-0.69 c 0.43,0.17 0.83,0.4 1.21,0.67 0.2,0.14 0.37,0.3 0.54,0.43 -0.01,0 -0.02,0.01 -0.03,0.01 -0.1,0.05 -0.19,0.13 -0.29,0.19 -0.28,-0.23 -0.64,-0.38 -0.95,-0.52 -0.35,-0.15 -0.7,-0.26 -1.07,-0.35 0.19,-0.07 0.31,-0.25 0.33,-0.46 0,-0.02 0,-0.04 0,-0.05 0.09,0.02 0.17,0.04 0.26,0.08 z m -1.02,-2.18 c -0.06,0.5 -0.11,1 -0.16,1.5 -0.01,0 -0.02,0.01 -0.02,0.01 -0.05,0.05 -0.11,0.1 -0.16,0.14 -0.07,0.02 -0.15,0.04 -0.22,0.06 0,0 -0.1,0.02 -0.15,0.02 -0.06,0 -0.12,0 -0.17,-0.01 -0.03,0 -0.05,-0.01 -0.08,-0.01 0.01,0 0.02,0 0.02,0 -0.06,-0.01 -0.12,-0.02 -0.18,-0.04 -0.06,-0.01 -0.11,-0.03 -0.17,-0.05 0,0 -0.01,0 -0.01,0 -0.01,-0.01 -0.04,-0.02 -0.05,-0.02 -0.06,-0.03 -0.11,-0.06 -0.17,-0.09 -0.03,-0.02 -0.05,-0.03 -0.08,-0.05 0,0 0,0 0,0 -0.04,-0.05 -0.12,-0.1 -0.16,-0.14 -0.01,-0.01 -0.02,-0.01 -0.02,-0.02 -0.01,-0.02 -0.05,-0.04 -0.07,-0.06 -0.05,-0.04 -0.09,-0.09 -0.13,-0.13 0,0 0,0 0,0 0,0 0,0 0,0 -0.02,-0.03 -0.04,-0.05 -0.07,-0.08 -0.01,-0.02 -0.02,-0.03 -0.03,-0.05 -0.01,-0.01 -0.02,-0.01 -0.03,-0.03 -0.02,-0.2 -0.03,-0.41 -0.05,-0.61 -0.03,-0.35 -0.05,-0.7 -0.08,-1.05 0.24,0.33 0.57,0.6 0.95,0.73 0.35,0.12 0.77,0.14 1.13,0.04 0.04,-0.01 0.1,-0.04 0.16,-0.06 z m -2.15,2.5 c 0.01,-0.02 0.02,-0.05 0.03,-0.08 0.04,0.03 0.08,0.06 0.12,0.09 -0.06,0.01 -0.13,0.02 -0.19,0.03 0.01,-0.02 0.03,-0.02 0.04,-0.04 z m 0.36,-3.96 c 0,0 0.01,-0.01 0.01,-0.01 0.06,-0.04 0.12,-0.08 0.19,-0.11 0.01,0 0.06,-0.03 0.08,-0.04 0.02,-0.01 0.04,-0.02 0.06,-0.02 0.08,-0.03 0.15,-0.04 0.23,-0.06 0,0 0,0 0.01,0 0,0 0,0 0,0 0.04,0 0.07,0 0.11,-0.01 0.04,0 0.09,0 0.13,0 0,0 0,0 0.01,0 0.07,0.02 0.14,0.03 0.2,0.05 0.03,0.01 0.07,0.02 0.1,0.03 0.01,0 0.01,0 0.02,0 0,0 0,0 0.01,0 0.06,0.03 0.13,0.07 0.19,0.1 0.01,0 0.02,0.02 0.04,0.03 0.02,0.02 0.04,0.03 0.06,0.05 0.06,0.05 0.11,0.11 0.16,0.17 0,0 0,0 0.01,0.01 0.01,0.01 0.01,0.01 0.02,0.02 -0.01,0.01 -0.02,0.01 -0.03,0.02 -0.06,0.04 -0.11,0.07 -0.17,0.1 -0.03,0.01 -0.06,0.02 -0.08,0.03 -0.06,0.02 -0.11,0.03 -0.17,0.05 -0.03,0.01 -0.06,0.02 -0.1,0.02 -0.01,0 -0.06,0.01 -0.07,0.01 0,0 -0.01,0 -0.01,0 -0.03,0 -0.07,0 -0.1,0 -0.03,0 -0.07,0 -0.1,0 0,0 0,0 -0.01,0 -0.12,-0.02 -0.23,-0.05 -0.34,-0.09 0,0 -0.05,-0.02 -0.06,-0.03 -0.01,-0.01 -0.03,-0.02 -0.03,-0.02 -0.05,-0.03 -0.1,-0.06 -0.15,-0.1 -0.01,-0.01 -0.02,-0.02 -0.03,-0.03 -0.02,-0.02 -0.05,-0.04 -0.07,-0.07 -0.04,-0.04 -0.07,-0.08 -0.11,-0.12 -0.02,0.03 -0.02,0.03 -0.01,0.02 0,0 0,0 0,0 z m -3.44,4.76 c 0.33,-0.31 0.68,-0.58 1.07,-0.81 0.33,-0.19 0.68,-0.34 1.03,-0.46 0.02,0.17 0.05,0.34 0.15,0.47 0.06,0.08 0.14,0.14 0.23,0.18 -0.15,0.04 -0.3,0.08 -0.45,0.13 -0.91,0.33 -1.76,0.84 -2.47,1.5 -0.09,0.09 -0.18,0.19 -0.27,0.28 0.04,-0.15 0.08,-0.31 0.12,-0.46 0.02,-0.09 0.03,-0.17 0.05,-0.26 0.17,-0.19 0.34,-0.39 0.54,-0.57 z m -1.04,3.33 c 0.38,-0.53 0.68,-1.11 1.15,-1.58 0.61,-0.61 1.34,-1.09 2.17,-1.35 0.83,-0.26 1.78,-0.26 2.64,-0.11 0.42,0.07 0.85,0.19 1.25,0.36 0.23,0.1 0.45,0.25 0.69,0.38 -0.07,0.14 -0.1,0.28 -0.11,0.41 0,0 0,0 0,0 -0.11,-0.02 -0.22,0 -0.31,0.05 -0.52,-0.29 -1.11,-0.49 -1.64,-0.59 -0.91,-0.18 -1.87,-0.14 -2.76,0.17 -1.37,0.48 -2.56,1.58 -3,2.97 -0.01,0.01 -0.02,0.01 -0.03,0.02 -0.03,0.06 -0.06,0.13 -0.09,0.19 -0.01,-0.3 0.01,-0.61 0.04,-0.92 z m -2.81,10.01 c 0.46,-1.08 1.36,-1.93 2.42,-2.43 0.72,-0.15 1.41,-0.29 2.12,-0.33 -0.21,0.09 -0.4,0.2 -0.58,0.35 -0.1,0.09 0.04,0.23 0.15,0.15 0.35,-0.28 0.79,-0.43 1.24,-0.45 0.22,-0.01 0.43,0.01 0.65,0.07 0.1,0.03 0.21,0.06 0.31,0.1 0.1,0.04 0.2,0.11 0.31,0.13 0.06,0.01 0.11,-0.04 0.11,-0.1 1.1,0.34 2.09,0.96 2.8,1.88 1.45,1.87 1.33,4.61 -0.45,6.24 -1.88,1.74 -5.26,1.57 -7.32,0.28 -1.94,-1.21 -2.63,-3.83 -1.76,-5.89 z m -3.38,1.66 c 0.37,-0.41 0.77,-0.8 1.23,-1.1 0.24,-0.17 0.5,-0.32 0.76,-0.45 -0.58,1.87 -0.26,4.02 0.93,5.58 -0.99,-0.48 -1.93,-1.06 -2.74,-1.81 -0.38,-0.36 -0.71,-0.76 -1.01,-1.18 0.28,-0.33 0.53,-0.7 0.83,-1.04 z m -0.16,3.51 c -0.01,-0.04 -0.01,-0.08 -0.02,-0.12 0.04,0.04 0.09,0.08 0.13,0.12 -0.04,-0.02 -0.08,-0.02 -0.11,0 z m -0.34,-0.41 c 0.04,0.38 0.09,0.75 0.14,1.12 0.03,0.2 0.06,0.41 0.09,0.61 0.02,0.13 0.06,0.26 0.09,0.39 0,0.05 0,0.1 0.01,0.15 0.01,0.29 0.02,0.58 0.04,0.87 0.02,0.27 0.02,0.58 0.1,0.83 0.03,0.08 0.16,0.09 0.18,0 0.06,-0.26 0.03,-0.56 0.03,-0.83 -0.01,-0.29 -0.02,-0.58 -0.04,-0.87 -0.03,-0.58 -0.06,-1.16 -0.09,-1.74 0,-0.03 -0.02,-0.04 -0.03,-0.06 0.72,0.62 1.52,1.14 2.37,1.59 -0.09,0.33 -0.14,0.68 -0.11,1.03 0.01,0.18 0.04,0.38 0.1,0.55 0.07,0.18 0.14,0.35 0.24,0.52 0.05,0.1 0.19,0.01 0.15,-0.09 -0.07,-0.16 -0.12,-0.32 -0.15,-0.5 -0.03,-0.18 -0.07,-0.34 -0.09,-0.52 -0.02,-0.3 0.02,-0.59 0.09,-0.88 0.52,0.26 1.05,0.5 1.59,0.72 -0.02,0.02 -0.03,0.05 -0.03,0.08 0.02,0.39 0.05,0.77 0.07,1.16 0.01,0.19 0.02,0.39 0.03,0.58 0.01,0.18 0,0.39 0.07,0.56 0.03,0.09 0.17,0.1 0.19,0 0.04,-0.18 0.01,-0.38 0,-0.56 -0.01,-0.19 -0.03,-0.39 -0.04,-0.58 -0.03,-0.39 -0.06,-0.77 -0.09,-1.16 0.29,0.11 0.59,0.21 0.89,0.31 -0.04,0.32 -0.05,0.64 -0.01,0.95 0.05,0.42 0.14,0.88 0.37,1.24 0.07,0.11 0.26,0.04 0.22,-0.09 -0.11,-0.39 -0.26,-0.76 -0.31,-1.17 -0.03,-0.28 -0.02,-0.56 0,-0.84 0.78,0.26 1.58,0.48 2.37,0.7 -0.01,0.5 -0.02,1 0.02,1.49 0.01,0.13 0.19,0.13 0.2,0 0.04,-0.47 0.03,-0.95 0.02,-1.42 0.61,0.16 1.22,0.3 1.83,0.45 0,0 0,0 0,0 0.03,0.39 0.05,0.77 0.08,1.16 0.03,0.38 0.04,0.77 0.1,1.15 0.02,0.13 0.22,0.09 0.22,-0.03 0.01,-0.38 -0.03,-0.76 -0.05,-1.14 l -0.07,-1.07 c 0.51,0.12 1.01,0.23 1.52,0.34 0,0.22 0,0.45 0,0.67 0,0.18 -0.01,0.36 0,0.54 0.01,0.17 0,0.36 0.05,0.52 0.03,0.1 0.16,0.1 0.2,0 0.04,-0.13 0.05,-0.29 0.05,-0.43 0.01,0.77 0.01,1.55 0.03,2.32 0.01,0.4 0.02,0.8 0.02,1.2 0,0.07 0,0.14 0,0.22 -0.35,-0.09 -0.7,-0.18 -1.06,-0.27 0,-0.19 0,-0.38 0,-0.57 0,-0.45 0,-0.9 -0.01,-1.35 0,-0.15 -0.23,-0.15 -0.23,0 0,0.45 0,0.9 -0.01,1.35 0,0.17 0,0.34 0,0.51 -0.53,-0.14 -1.07,-0.27 -1.6,-0.41 0,-0.07 -0.01,-0.14 -0.01,-0.21 0.02,-0.39 0.02,-0.77 0.01,-1.16 -0.03,-0.79 -0.06,-1.57 -0.09,-2.36 -0.01,-0.14 -0.22,-0.14 -0.21,0 0.02,0.79 0.04,1.57 0.06,2.36 0.01,0.39 0.04,0.77 0.09,1.16 0.01,0.06 0,0.11 0.01,0.17 -0.08,-0.02 -0.17,-0.04 -0.25,-0.07 -0.2,-0.06 -0.4,-0.11 -0.6,-0.17 0,0 0,-0.01 0,-0.01 -0.03,-0.28 -0.06,-0.55 -0.09,-0.83 -0.01,-0.06 -0.05,-0.11 -0.11,-0.11 -0.06,0 -0.12,0.05 -0.11,0.11 0.02,0.26 0.05,0.51 0.07,0.77 -0.38,-0.11 -0.77,-0.22 -1.15,-0.34 0,-0.09 0.01,-0.18 0.01,-0.27 0,-0.22 0,-0.43 0,-0.65 0,-0.14 -0.22,-0.14 -0.22,0 0,0.22 0,0.43 0,0.65 0,0.07 0.01,0.13 0.01,0.2 -0.48,-0.15 -0.97,-0.32 -1.44,-0.5 -0.01,-0.11 -0.01,-0.22 -0.02,-0.33 -0.02,-0.26 -0.03,-0.52 -0.05,-0.77 -0.04,-0.51 -0.07,-1.01 -0.11,-1.52 -0.01,-0.11 -0.17,-0.11 -0.17,0 0.02,0.51 0.04,1.01 0.06,1.52 0.01,0.25 0.02,0.5 0.03,0.75 0,0.09 0.01,0.17 0.01,0.26 -0.35,-0.14 -0.7,-0.28 -1.04,-0.44 0,-0.01 0.01,-0.01 0.01,-0.02 -0.02,-0.07 -0.08,-0.13 -0.12,-0.18 l -0.12,-0.16 -0.25,-0.32 c -0.03,-0.05 -0.1,-0.07 -0.15,-0.04 -0.05,0.03 -0.08,0.1 -0.04,0.15 0.08,0.11 0.16,0.22 0.24,0.33 0.01,0.02 0.03,0.04 0.04,0.06 -0.58,-0.28 -1.13,-0.6 -1.66,-0.95 0,-0.07 -0.01,-0.14 -0.01,-0.21 -0.02,-0.26 -0.04,-0.53 -0.06,-0.79 -0.04,-0.4 -0.08,-0.8 -0.13,-1.19 0.04,0.06 0.07,0.13 0.12,0.18 0.07,0.06 0.18,0 0.16,-0.09 -0.02,-0.11 -0.09,-0.21 -0.13,-0.31 -0.04,-0.1 -0.08,-0.19 -0.12,-0.29 -0.08,-0.2 -0.14,-0.42 -0.18,-0.63 -0.08,-0.43 -0.08,-0.88 0,-1.32 0.03,-0.17 -0.23,-0.24 -0.26,-0.07 -0.09,0.47 -0.1,0.95 -0.01,1.42 0.04,0.22 0.1,0.44 0.18,0.65 -0.02,0.02 -0.04,0.05 -0.04,0.09 0.05,0.53 0.09,1.05 0.16,1.58 0.03,0.25 0.06,0.5 0.1,0.75 0.01,0.03 0.01,0.06 0.01,0.1 -0.48,-0.34 -0.95,-0.71 -1.37,-1.14 -0.04,-0.04 -0.07,-0.09 -0.11,-0.13 -0.01,-0.16 -0.01,-0.32 0.02,-0.48 0.03,-0.14 -0.18,-0.2 -0.22,-0.06 -0.02,0.09 -0.02,0.18 -0.03,0.27 -0.29,-0.34 -0.56,-0.71 -0.79,-1.1 0.19,-0.4 0.09,-0.96 0.08,-1.38 -0.01,-0.59 -0.03,-1.17 -0.04,-1.76 -0.01,-0.25 -0.01,-0.51 -0.02,-0.76 0.09,0.07 0.19,0.18 0.3,0.29 z m -2.23,6.89 c 0.26,-0.85 0.89,-1.44 1.38,-2.13 1.57,2.36 4.18,3.83 6.8,4.83 1.68,0.64 3.4,1.18 5.14,1.65 0.28,0.13 0.56,0.25 0.84,0.38 0.22,0.1 0.44,0.2 0.66,0.29 0.21,0.09 0.42,0.21 0.65,0.26 0.11,0.03 0.17,-0.12 0.08,-0.19 -0.2,-0.13 -0.44,-0.21 -0.65,-0.31 -0.06,-0.03 -0.12,-0.05 -0.19,-0.08 1.08,0.27 2.16,0.53 3.24,0.77 0.02,0.34 0.06,0.69 0.16,1.01 0.06,0.19 0.2,0.35 0.37,0.44 0.03,0.2 0.17,0.37 0.44,0.42 0.95,0.19 1.94,0.18 2.91,0.23 0.98,0.05 1.96,0.1 2.94,0.15 1.96,0.1 3.92,0.2 5.88,0.29 1.96,0.09 3.92,0.19 5.88,0.28 0.98,0.05 1.96,0.11 2.94,0.16 0.46,0.03 0.92,0.05 1.37,0.08 0.53,0.03 1.09,0.12 1.47,-0.33 0.19,-0.22 0.3,-0.58 0.11,-0.84 -0.02,-0.02 -0.04,-0.04 -0.06,-0.06 0.08,-0.01 0.16,-0.04 0.23,-0.08 0.14,-0.02 0.27,-0.07 0.37,-0.18 0.28,-0.31 0.33,-0.74 0.46,-1.13 0.05,-0.16 0.1,-0.31 0.16,-0.47 0.03,-0.07 0.06,-0.15 0.09,-0.22 0,-0.01 0.01,-0.01 0.01,-0.02 0.02,-0.04 0.04,-0.09 0.06,-0.13 0.03,-0.07 0.07,-0.13 0.11,-0.2 0.01,0.16 0.02,0.32 0.03,0.48 0.02,0.28 0.03,0.55 0.04,0.83 -0.32,0.31 -0.24,0.88 0.24,1.05 0.96,0.33 2.09,0.23 3.09,0.25 1.04,0.02 2.08,0.03 3.11,0.03 2.04,0 4.09,-0.02 6.13,-0.06 4.12,-0.08 8.24,-0.25 12.35,-0.49 1.17,-0.07 2.33,-0.14 3.5,-0.23 0.55,-0.04 1.14,-0.02 1.67,-0.15 0.22,-0.05 0.44,-0.11 0.65,-0.18 0.01,0.03 0.01,0.07 0.02,0.11 0.05,0.12 0.23,0.14 0.27,0 0.02,-0.07 0.02,-0.15 0.02,-0.23 0.07,0.03 0.14,0.04 0.21,0.05 -0.02,0.02 -0.04,0.04 -0.05,0.06 -0.17,0.27 -0.04,0.63 0.17,0.83 0.42,0.42 0.96,0.3 1.49,0.23 0.45,-0.06 0.91,-0.11 1.36,-0.17 0.97,-0.12 1.95,-0.24 2.92,-0.36 1.95,-0.23 3.9,-0.45 5.85,-0.68 1.24,-0.14 2.48,-0.29 3.71,-0.44 -0.52,0.15 -1.05,0.29 -1.58,0.41 -1.36,0.3 -2.75,0.48 -4.14,0.57 -0.16,0.01 -0.16,0.25 0,0.25 1.41,-0.05 2.8,-0.23 4.18,-0.52 0.69,-0.15 1.37,-0.32 2.05,-0.52 0.37,-0.11 0.74,-0.23 1.11,-0.37 0.18,-0.02 0.35,-0.04 0.53,-0.06 0.98,-0.12 1.95,-0.23 2.93,-0.35 0.96,-0.11 1.95,-0.17 2.89,-0.42 0.27,-0.07 0.39,-0.25 0.41,-0.45 0.17,-0.1 0.3,-0.27 0.34,-0.46 0.03,-0.14 0.04,-0.28 0.06,-0.42 5.39,-1.19 10.73,-3.25 14.06,-7.69 0.06,0.11 0.11,0.23 0.17,0.35 -0.01,0.01 -0.03,0 -0.03,0.02 -0.49,1.21 -1.18,2.29 -2.17,3.14 -0.48,0.42 -1.01,0.79 -1.58,1.06 -0.29,0.14 -0.59,0.25 -0.9,0.35 -0.32,0.1 -0.64,0.14 -0.96,0.22 -0.05,0.01 -0.04,0.09 0.01,0.09 0.63,-0.01 1.3,-0.24 1.88,-0.48 0.62,-0.26 1.21,-0.6 1.73,-1.02 1,-0.81 1.82,-1.97 2.11,-3.23 0.1,0.19 0.2,0.38 0.29,0.58 0.03,0.06 0.06,0.12 0.08,0.18 0.01,0.03 0.03,0.06 0.04,0.09 0,0 0,0 0,0.01 0.03,0.08 0.07,0.17 0.11,0.25 0,0 0,0 0,0 0,-0.01 0,-0.01 0,0 -0.64,1.02 -1.41,1.96 -2.33,2.74 -0.51,0.44 -1.07,0.82 -1.65,1.16 -0.28,0.17 -0.57,0.32 -0.87,0.47 -0.3,0.15 -0.63,0.27 -0.93,0.43 -0.07,0.04 -0.02,0.14 0.05,0.13 0.32,-0.06 0.66,-0.2 0.96,-0.34 0.32,-0.14 0.65,-0.3 0.95,-0.48 0.58,-0.34 1.13,-0.73 1.64,-1.16 0.91,-0.77 1.67,-1.68 2.27,-2.7 0.03,0.08 0.06,0.16 0.09,0.25 0.05,0.15 0.09,0.32 0.18,0.46 0.11,0.16 0.3,0.27 0.5,0.27 0.05,0.02 0.09,0.05 0.14,0.06 -1,1.81 -2.69,3.12 -4.65,3.81 -0.11,0.04 -0.06,0.19 0.05,0.17 2.12,-0.47 3.9,-2.04 4.89,-3.95 0.17,-0.01 0.34,-0.03 0.5,-0.06 0.28,-0.04 0.56,-0.09 0.84,-0.13 0.17,-0.03 0.33,-0.07 0.5,-0.1 -0.15,0.25 -0.3,0.5 -0.47,0.74 -0.03,-0.05 -0.12,-0.08 -0.16,-0.01 -0.56,0.85 -1.27,1.58 -2.07,2.21 -0.8,0.63 -1.69,1.09 -2.62,1.5 -0.1,0.04 -0.03,0.2 0.07,0.17 0.97,-0.28 1.87,-0.79 2.66,-1.43 -1.01,0.89 -2.14,1.64 -3.32,2.29 -3.5,1.93 -7.34,3.31 -11.17,4.41 -8.02,2.31 -16.36,3.22 -24.66,3.78 -8.65,0.59 -17.33,1.05 -26,1.16 -8.74,0.11 -17.55,-0.17 -26.21,-1.5 -4.29,-0.66 -8.55,-1.55 -12.72,-2.75 -2.34,-0.67 -4.79,-1.44 -6.92,-2.71 -0.17,-0.18 -0.37,-0.33 -0.57,-0.49 -0.4,-0.33 -0.83,-0.6 -1.23,-0.93 -0.76,-0.62 -1.43,-1.33 -1.78,-2.27 -0.31,-0.85 -0.48,-1.69 -0.21,-2.58 z m 97,13.3 c 0,0 0,0 0,0 -0.03,-0.17 -0.06,-0.34 -0.09,-0.5 -0.01,-0.07 -0.1,-0.11 -0.16,-0.09 -0.07,0.02 -0.1,0.09 -0.09,0.16 l 0.08,0.49 v 0 c -0.32,0.08 -0.64,0.14 -0.95,0.21 -0.04,-0.17 -0.03,-0.35 0.03,-0.5 0.03,-0.07 0.02,-0.15 -0.05,-0.19 -0.06,-0.03 -0.16,-0.02 -0.19,0.05 -0.1,0.22 -0.12,0.46 -0.07,0.7 -0.31,0.07 -0.62,0.14 -0.92,0.21 -0.01,-0.09 -0.02,-0.18 -0.03,-0.27 -0.03,-0.25 -0.05,-0.5 -0.08,-0.75 -0.01,-0.07 -0.06,-0.13 -0.13,-0.13 -0.07,0 -0.14,0.06 -0.13,0.13 0.03,0.25 0.05,0.5 0.08,0.75 0.01,0.11 0.02,0.22 0.03,0.32 -0.68,0.14 -1.36,0.26 -2.03,0.39 0,-0.11 0,-0.21 0,-0.32 0,-0.06 -0.09,-0.06 -0.09,0 0,0.11 0,0.22 0,0.34 -5.47,1 -11.03,1.54 -16.57,1.92 -8.65,0.59 -17.33,1.05 -26,1.16 -8.74,0.11 -17.55,-0.17 -26.21,-1.5 -1.72,-0.26 -3.44,-0.58 -5.15,-0.92 -0.02,-0.05 -0.04,-0.1 -0.06,-0.15 -0.05,-0.21 -0.05,-0.43 0,-0.64 0.04,-0.15 -0.19,-0.21 -0.23,-0.06 -0.07,0.25 -0.07,0.52 -0.01,0.78 0,0.01 0.01,0.02 0.01,0.03 -1.37,-0.28 -2.73,-0.58 -4.09,-0.92 0,-0.02 0,-0.04 -0.01,-0.06 -0.04,-0.23 -0.09,-0.47 -0.13,-0.7 -0.09,-0.47 -0.17,-0.94 -0.26,-1.41 -0.03,-0.17 -0.28,-0.1 -0.25,0.07 0.08,0.46 0.15,0.92 0.23,1.39 0.04,0.21 0.07,0.42 0.11,0.63 -0.39,-0.1 -0.78,-0.21 -1.17,-0.31 l -0.01,-0.1 c -0.03,-0.22 -0.06,-0.44 -0.08,-0.66 -0.01,-0.06 -0.05,-0.11 -0.11,-0.11 -0.05,0 -0.12,0.05 -0.11,0.11 l 0.08,0.68 v 0.02 c -0.33,-0.09 -0.67,-0.17 -1,-0.27 -0.01,-0.04 -0.03,-0.08 -0.05,-0.12 -0.03,-0.06 -0.07,-0.13 -0.1,-0.19 -0.06,-0.13 -0.1,-0.26 -0.13,-0.39 -0.06,-0.27 -0.06,-0.56 0,-0.83 0.03,-0.15 -0.2,-0.21 -0.23,-0.06 -0.07,0.31 -0.07,0.63 -0.01,0.94 0.03,0.15 0.08,0.3 0.14,0.44 0.02,0.04 0.04,0.08 0.06,0.14 -0.05,-0.01 -0.1,-0.03 -0.15,-0.04 -0.83,-0.24 -1.69,-0.49 -2.53,-0.77 0,-0.01 0,-0.03 0.01,-0.04 0.02,-0.14 0.03,-0.28 0.04,-0.42 0.03,-0.29 0.05,-0.57 0.08,-0.86 0.01,-0.07 -0.06,-0.13 -0.13,-0.13 -0.07,0 -0.12,0.06 -0.13,0.13 -0.03,0.28 -0.06,0.56 -0.09,0.84 -0.01,0.13 -0.03,0.26 -0.04,0.39 -2.43,-0.83 -4.81,-1.92 -6.62,-3.74 -0.28,-0.28 -0.53,-0.58 -0.77,-0.88 -0.01,-0.03 -0.02,-0.07 -0.02,-0.1 -0.08,-0.34 -0.17,-0.68 -0.28,-1.02 -0.21,-0.68 -0.43,-1.35 -0.56,-2.05 -0.03,-0.16 -0.05,-0.32 -0.07,-0.49 0.19,0.25 0.4,0.49 0.62,0.72 0.03,0.44 0.09,0.89 0.15,1.33 0.03,0.22 0.05,0.44 0.08,0.66 0.03,0.21 0.04,0.46 0.13,0.66 0.05,0.1 0.22,0.08 0.24,-0.03 0.04,-0.21 -0.01,-0.44 -0.03,-0.65 -0.02,-0.23 -0.06,-0.46 -0.08,-0.69 -0.04,-0.31 -0.08,-0.62 -0.13,-0.94 0.06,0.06 0.12,0.11 0.18,0.16 1.42,1.51 3.24,2.6 5.16,3.45 0.01,0.14 0.02,0.27 0.04,0.41 0.04,0.22 0.11,0.44 0.19,0.65 0.07,0.19 0.17,0.43 0.32,0.57 0.08,0.08 0.21,0 0.18,-0.11 -0.05,-0.2 -0.17,-0.39 -0.24,-0.58 -0.07,-0.19 -0.13,-0.39 -0.17,-0.59 -0.02,-0.08 -0.02,-0.15 -0.03,-0.23 0.25,0.11 0.5,0.22 0.76,0.32 2.86,1.11 5.86,1.93 8.87,2.62 -0.07,0 -0.16,0.05 -0.14,0.15 0.05,0.36 0.1,0.72 0.15,1.08 0.03,0.18 0.05,0.36 0.08,0.54 0.01,0.08 0.03,0.16 0.05,0.25 0.02,0.09 0.03,0.19 0.08,0.26 0.05,0.07 0.16,0.06 0.19,-0.02 0.03,-0.09 0.01,-0.18 0,-0.28 -0.01,-0.08 -0.02,-0.16 -0.03,-0.25 -0.03,-0.19 -0.06,-0.37 -0.09,-0.56 -0.06,-0.37 -0.12,-0.73 -0.18,-1.1 -0.01,-0.04 -0.02,-0.06 -0.05,-0.07 1.14,0.26 2.29,0.5 3.42,0.73 8.83,1.76 17.85,2.42 26.84,2.48 8.98,0.06 17.96,-0.36 26.92,-0.9 8.57,-0.52 17.2,-1.29 25.55,-3.43 -0.02,0.02 -0.03,0.05 -0.03,0.08 0.03,0.48 0.05,0.96 0.08,1.44 0.01,0.23 0.02,0.47 0.04,0.7 -0.59,0.15 -1.16,0.31 -1.73,0.44 z m 17.03,-6.97 c 0,-0.04 0,-0.08 0,-0.12 0,-0.29 0,-0.57 0,-0.86 0,-0.18 -0.28,-0.18 -0.28,0 0,0.29 0,0.57 0,0.86 0,0.11 0,0.22 0,0.34 -0.28,0.2 -0.55,0.41 -0.83,0.6 0,-0.14 0,-0.29 0,-0.43 0,-0.4 -0.01,-0.8 -0.01,-1.21 0,-0.19 -0.3,-0.19 -0.3,0 0,0.4 -0.01,0.8 -0.01,1.21 0,0.19 0,0.39 0,0.58 0,0.02 0,0.03 0,0.05 -0.33,0.21 -0.65,0.41 -0.99,0.6 0,-0.01 0,-0.02 0,-0.03 0,-0.48 -0.01,-0.96 -0.01,-1.44 0,-0.18 -0.28,-0.18 -0.28,0 0,0.48 -0.01,0.96 -0.01,1.44 0,0.06 0,0.13 0,0.19 -0.38,0.21 -0.78,0.39 -1.17,0.59 v -0.91 c 0,-0.18 -0.29,-0.18 -0.29,0 v 1.01 c 0,0.01 0,0.03 0,0.04 -0.4,0.2 -0.8,0.41 -1.21,0.6 l -0.15,-0.88 c -0.03,-0.17 -0.28,-0.1 -0.25,0.07 0.05,0.3 0.1,0.61 0.15,0.91 -1.53,0.68 -3.09,1.28 -4.68,1.82 0,-0.02 0,-0.03 0,-0.05 0.03,-0.31 0.05,-0.62 0.08,-0.93 0.01,-0.08 -0.07,-0.14 -0.14,-0.14 -0.08,0 -0.14,0.07 -0.14,0.14 -0.03,0.3 -0.06,0.61 -0.09,0.91 -0.01,0.06 -0.01,0.12 -0.02,0.17 -0.35,0.12 -0.7,0.22 -1.06,0.34 -0.01,-0.04 -0.03,-0.09 -0.04,-0.13 -0.06,-0.17 -0.11,-0.34 -0.17,-0.51 -0.02,-0.07 -0.09,-0.11 -0.17,-0.09 -0.07,0.02 -0.12,0.1 -0.09,0.17 0.06,0.17 0.11,0.34 0.17,0.51 0.02,0.05 0.03,0.09 0.05,0.14 -0.43,0.13 -0.85,0.27 -1.28,0.39 -0.01,-0.06 -0.01,-0.12 -0.02,-0.17 -0.03,-0.25 -0.06,-0.5 -0.08,-0.75 -0.01,-0.07 -0.06,-0.14 -0.14,-0.14 -0.07,0 -0.15,0.06 -0.14,0.14 0.03,0.25 0.06,0.51 0.08,0.76 0.01,0.08 0.02,0.16 0.03,0.24 -0.08,0.02 -0.15,0.05 -0.22,0.07 -0.43,0.12 -0.87,0.23 -1.31,0.35 -0.01,-0.22 -0.03,-0.44 -0.04,-0.66 -0.03,-0.47 -0.05,-0.94 -0.08,-1.41 0,-0.07 -0.05,-0.11 -0.11,-0.12 4.1,-1.06 8.11,-2.46 11.93,-4.28 1.67,-0.79 3.26,-1.71 4.71,-2.86 0.85,-0.68 1.73,-1.49 2.4,-2.41 -0.01,0.38 -0.02,0.77 -0.07,1.14 -0.03,0.19 -0.08,0.39 -0.12,0.59 -0.01,-0.17 -0.02,-0.35 -0.03,-0.52 -0.01,-0.16 -0.25,-0.16 -0.25,0 0,0.24 0.01,0.48 0,0.72 0,0.12 -0.01,0.24 -0.01,0.36 0,0.11 -0.01,0.23 0,0.34 -0.08,0.09 -0.14,0.18 -0.22,0.26 -0.16,0.16 -0.34,0.3 -0.51,0.45 0,-0.01 -0.01,-0.02 -0.01,-0.02 -0.01,-0.02 -0.01,-0.04 -0.02,-0.06 0,-0.01 -0.01,-0.02 -0.01,-0.03 -0.01,-0.03 0,-0.02 0,0 0,-0.02 0,-0.05 -0.01,-0.07 0,-0.02 0,-0.04 0,-0.07 0,0 0,0 0,0 0,-0.01 0,-0.02 0.01,-0.03 0,-0.02 0.01,-0.04 0.02,-0.06 0,0 0,-0.01 0.01,-0.02 0,0 0,-0.01 0,-0.01 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0.01,-0.02 0.02,-0.04 0.03,-0.06 0,0 0.01,-0.01 0.01,-0.02 0,0 0,0 0,0 l 0.01,-0.01 c 0.01,-0.02 0.03,-0.03 0.05,-0.04 0,0 0,0 0,0 0,0 0,0 0,0 0.01,-0.01 0.02,-0.01 0.03,-0.02 0.07,-0.04 0.1,-0.15 0.06,-0.22 -0.05,-0.08 -0.14,-0.1 -0.22,-0.06 -0.23,0.12 -0.35,0.37 -0.36,0.62 0,0.13 0.02,0.26 0.08,0.37 0.01,0.02 0.03,0.03 0.04,0.05 -0.21,0.17 -0.41,0.35 -0.62,0.5 0,-0.13 -0.01,-0.26 -0.01,-0.4 -0.01,-0.34 -0.01,-0.68 -0.02,-1.01 0,-0.21 -0.32,-0.21 -0.32,0 -0.01,0.34 -0.01,0.68 -0.02,1.01 0,0.17 -0.01,0.33 -0.01,0.5 0,0.06 0,0.11 0,0.17 -0.22,0.15 -0.43,0.31 -0.65,0.44 -0.22,0.19 -0.44,0.33 -0.65,0.5 z m 10.3,-1.8 c -0.01,0 -0.02,0 -0.04,0.01 -0.12,0.01 -0.23,0.03 -0.35,0.04 0.12,-0.02 -0.12,0.01 -0.14,0.01 -0.06,0.01 -0.12,0.01 -0.18,0.01 -0.15,0.01 -0.31,0.01 -0.46,0 -0.07,0 -0.14,-0.01 -0.21,-0.01 -0.02,0 -0.16,-0.02 -0.17,-0.02 -0.13,-0.02 -0.27,-0.05 -0.4,-0.07 -0.09,-0.01 -0.2,-0.04 -0.3,-0.06 0,-0.1 0,-0.19 -0.01,-0.28 -0.01,-0.2 -0.02,-0.4 -0.04,-0.6 -0.01,-0.16 -0.02,-0.31 -0.04,-0.46 0.25,0.01 0.51,0.04 0.76,0.05 0.6,0.02 1.21,0.02 1.81,0.01 -0.01,0.17 -0.02,0.34 -0.02,0.5 0,0.29 0.02,0.57 0.03,0.86 -0.04,0 -0.08,0 -0.11,0 -0.06,0 -0.1,0 -0.13,0.01 z m 3.12,-3.92 c -0.1,0.07 -0.2,0.15 -0.31,0.22 -0.21,0.15 -0.43,0.3 -0.63,0.46 -0.18,0.14 -0.35,0.29 -0.52,0.43 -0.05,-0.02 -0.09,-0.03 -0.14,-0.04 0,-0.01 -0.01,-0.03 -0.01,-0.04 -0.07,-0.3 -0.2,-0.59 -0.32,-0.87 0.02,-0.02 0.04,-0.05 0.05,-0.08 0.15,0.05 0.31,0.05 0.45,-0.04 l 1.11,-0.72 c 0.3,-0.2 0.58,-0.42 0.86,-0.65 -0.01,0.1 -0.03,0.21 -0.04,0.31 -0.02,0.23 -0.03,0.46 -0.05,0.69 0,0.03 0,0.06 0,0.1 -0.01,0 -0.02,0 -0.02,0 -0.17,0.07 -0.3,0.14 -0.43,0.23 z m -3.86,-12.74 c -0.83,0.06 -1.66,0.16 -2.49,0.26 -0.54,0.07 -1.08,0.15 -1.61,0.26 -0.12,-0.05 -0.24,-0.1 -0.35,-0.15 -0.24,-0.1 -0.48,-0.21 -0.72,-0.32 -0.51,-0.23 -1.03,-0.48 -1.53,-0.73 -0.49,-0.25 -0.97,-0.51 -1.45,-0.78 -0.26,-0.14 -0.52,-0.27 -0.78,-0.39 -0.11,-0.05 -0.22,-0.1 -0.33,-0.14 -0.01,0 -0.02,-0.02 -0.03,-0.02 -0.02,-0.01 -0.03,0 -0.05,-0.01 -0.01,0 -0.01,-0.01 -0.02,-0.01 0,-0.03 0,-0.05 0.01,-0.08 0.13,0.09 0.27,0.18 0.41,0.24 0.38,0.17 0.78,0.29 1.19,0.35 0.44,0.06 0.89,0.02 1.33,-0.06 0.33,-0.06 0.64,-0.2 0.91,-0.38 0.02,0 0.03,0.01 0.05,0.01 0.66,0.48 1.45,0.79 2.21,1.06 0.9,0.32 1.82,0.56 2.76,0.71 0.26,0.04 0.52,-0.03 0.68,-0.23 0.59,0 1.18,-0.06 1.77,-0.12 0.46,-0.04 0.92,-0.09 1.38,-0.14 0.01,0.16 0.04,0.32 0.09,0.47 -1.15,0.05 -2.29,0.11 -3.43,0.2 z m 3.21,-2.73 c 0.01,0.24 0,0.49 0.02,0.73 0.01,0.1 0.02,0.21 0.03,0.31 -0.45,0.05 -0.9,0.1 -1.34,0.15 -0.61,0.07 -1.22,0.14 -1.82,0.27 -0.04,-0.04 -0.1,-0.06 -0.15,-0.09 -0.02,-0.12 -0.04,-0.25 -0.07,-0.36 -0.03,-0.17 -0.06,-0.35 -0.1,-0.52 -0.03,-0.11 -0.05,-0.23 -0.08,-0.34 0.63,-0.03 1.27,-0.07 1.9,-0.1 0.38,-0.02 0.76,-0.03 1.13,-0.04 0.16,0 0.32,-0.01 0.48,-0.01 z m -4.59,0.22 c 0.01,0.14 0.02,0.28 0.03,0.42 0.01,0.15 0.04,0.31 0.06,0.46 -0.52,-0.12 -1.03,-0.25 -1.54,-0.41 -0.67,-0.22 -1.33,-0.52 -2,-0.74 -0.02,-0.52 -0.05,-1.05 -0.08,-1.57 0,0 0.01,0.01 0.01,0.01 0.17,0.11 0.35,0.21 0.52,0.3 0.36,0.2 0.74,0.38 1.12,0.57 0.36,0.18 0.72,0.37 1.08,0.55 0.25,0.14 0.52,0.29 0.8,0.41 z m -2.29,-2.64 c 0.31,-0.05 0.61,-0.09 0.92,-0.14 0.31,-0.05 0.66,-0.06 0.95,-0.17 0.01,0 0.02,-0.01 0.04,-0.02 0.75,0.45 1.59,0.75 2.4,1.08 0.5,0.21 1.01,0.41 1.51,0.62 -0.23,0.04 -0.46,0.08 -0.68,0.11 -0.68,0.1 -1.37,0.19 -2.05,0.29 -0.09,-0.15 -0.24,-0.26 -0.42,-0.23 -0.01,0 -0.02,0.01 -0.03,0.02 -0.21,-0.1 -0.43,-0.2 -0.63,-0.3 l -1.13,-0.56 c -0.36,-0.18 -0.72,-0.37 -1.09,-0.53 -0.08,-0.04 -0.17,-0.07 -0.25,-0.11 0.16,-0.02 0.31,-0.04 0.46,-0.06 z m -2.46,-0.77 c 0.01,0.38 0.02,0.76 0.04,1.13 0.02,0.64 0.04,1.28 0.06,1.92 -0.21,0.06 -0.43,0.13 -0.64,0.18 -0.18,0.04 -0.28,0.06 -0.42,0.07 -0.18,0.02 -0.36,0.02 -0.55,0.01 -0.58,0 -1.18,-0.14 -1.71,-0.4 0,-0.01 0,-0.01 0,-0.02 -0.02,-0.39 -0.03,-0.78 -0.05,-1.18 0,-0.02 0,-0.03 0,-0.05 0.25,0 0.5,0 0.75,0 0.08,0 0.17,0 0.25,0 0.01,0.09 0.02,0.17 0.02,0.26 0.01,0.11 0.02,0.22 0.02,0.33 -0.23,0.02 -0.47,0.03 -0.7,0.05 -0.17,0.01 -0.17,0.28 0,0.27 0.24,-0.02 0.48,-0.04 0.72,-0.05 0.02,0.2 0.04,0.4 0.1,0.58 0.04,0.13 0.22,0.1 0.24,-0.03 0.02,-0.18 0.01,-0.38 -0.01,-0.57 0.23,-0.02 0.46,-0.03 0.69,-0.06 0.02,0.22 0.04,0.44 0.12,0.65 0.02,0.06 0.12,0.07 0.13,0 0.05,-0.23 0.02,-0.46 0,-0.69 0.1,-0.03 0.08,-0.17 -0.02,-0.2 -0.03,-0.27 -0.05,-0.54 -0.08,-0.81 -0.04,-0.36 -0.07,-0.72 -0.11,-1.08 0.07,-0.04 0.15,-0.06 0.21,-0.11 0.07,-0.05 0.03,-0.18 -0.06,-0.15 -0.06,0.02 -0.11,0.04 -0.17,0.06 -0.02,-0.16 -0.03,-0.31 -0.05,-0.47 -0.01,-0.14 -0.23,-0.14 -0.22,0 0.02,0.18 0.03,0.37 0.05,0.55 -0.23,0.09 -0.47,0.17 -0.72,0.23 -0.04,-0.35 -0.07,-0.7 -0.11,-1.05 0.75,-0.05 1.5,-0.13 2.25,-0.24 -0.05,0.29 -0.03,0.6 -0.03,0.87 z m -2.01,-5.91 c 1.1,-0.02 2.21,0.01 3.31,0.07 0.54,0.03 1.07,0.06 1.61,0.09 0.24,0.01 0.5,0.02 0.74,0.06 -2.01,0.42 -4.02,0.7 -6.08,0.79 -1.13,0.05 -2.26,0.05 -3.39,0.02 -0.65,-0.02 -1.45,0 -2.1,-0.26 0.85,-0.17 1.68,-0.38 2.54,-0.51 1.11,-0.17 2.24,-0.24 3.37,-0.26 z m -5.76,3.78 c -0.18,-0.06 -0.42,-0.17 -0.61,-0.31 0.08,-0.09 0.12,-0.21 0.13,-0.34 0.02,-0.24 -0.05,-0.49 -0.1,-0.72 -0.03,-0.19 -0.07,-0.38 -0.1,-0.57 -0.01,-0.07 -0.03,-0.14 -0.04,-0.21 0.52,0.35 1.15,0.5 1.83,0.57 1.25,0.12 2.51,0.12 3.76,0.09 2.43,-0.06 4.89,-0.31 7.29,-0.74 0,0.04 0,0.08 0,0.12 v 0.63 c 0,0.1 0,0.21 0,0.31 -2.24,0.74 -4.55,1.22 -6.91,1.37 -1.19,0.08 -2.38,0.08 -3.57,0.02 -0.55,-0.03 -1.15,-0.03 -1.68,-0.22 z m 4.62,1.58 c 0.22,-0.01 0.45,-0.03 0.67,-0.05 0.03,0.36 0.07,0.72 0.1,1.08 -0.32,0.05 -0.64,0.07 -0.96,0.04 -0.02,-0.35 -0.02,-0.76 -0.16,-1.08 0.11,0 0.23,0.01 0.35,0.01 z m -2.69,3.32 c 0,0.01 0,0.02 0,0.03 0.01,0.17 0.01,0.34 0.02,0.5 0.01,0.21 0,0.42 0.08,0.62 0,0.01 0.02,0.02 0.02,0.03 -0.11,0 -0.21,0.01 -0.32,0.02 -1.01,0.04 -2.02,0.07 -3.02,0.07 -0.09,0 -0.18,0 -0.27,0 0.17,-0.11 0.27,-0.31 0.21,-0.52 -0.04,-0.12 -0.07,-0.25 -0.1,-0.37 0.1,0.01 0.21,0.03 0.31,0.04 0.79,0.07 1.59,0.01 2.36,-0.18 0.24,-0.05 0.47,-0.15 0.71,-0.24 z m -3.42,-0.7 c 0.1,-0.09 0.27,-0.11 0.39,-0.14 0.19,-0.05 0.39,-0.09 0.59,-0.13 0.58,-0.11 1.16,-0.15 1.75,-0.19 0.02,0.06 0.05,0.11 0.09,0.15 -0.27,0.09 -0.54,0.16 -0.82,0.22 -0.33,0.07 -0.67,0.12 -1.01,0.15 -0.3,0.02 -0.71,0.05 -0.96,0 0,0 -0.04,-0.01 -0.08,-0.01 0.02,-0.02 0.03,-0.04 0.05,-0.05 z m -0.93,0.82 c 0.02,0.3 0.06,0.6 0.15,0.89 0.03,0.11 0.11,0.2 0.2,0.26 -0.25,0 -0.51,0 -0.76,-0.01 0.02,-0.06 0.04,-0.12 0.05,-0.19 0.02,-0.31 0.01,-0.62 -0.01,-0.93 0.12,0 0.25,0 0.37,-0.02 z m -2.24,0.09 c 0.26,0.01 0.52,0.01 0.78,-0.03 -0.01,0.3 -0.03,0.6 -0.01,0.89 0,0.06 0.02,0.12 0.05,0.18 -0.13,0 -0.25,0 -0.38,0 -0.89,-0.02 -1.82,-0.09 -2.72,-0.03 0.03,-0.26 0.05,-0.53 0.09,-0.79 0.01,-0.1 0.03,-0.21 0.04,-0.31 0.35,0.02 0.7,0.03 1.04,0.04 0.37,0.02 0.74,0.04 1.11,0.05 z m -0.41,-1.27 c 0.06,0.01 0.11,0.03 0.17,0.04 -0.25,-0.01 -0.49,-0.01 -0.74,-0.02 -0.34,-0.01 -0.69,-0.02 -1.03,-0.03 0,-0.07 0.01,-0.13 0.01,-0.19 0.18,0.02 0.37,0.05 0.55,0.07 0.35,0.03 0.69,0.06 1.04,0.13 z m -8.55,-13.08 c 0.28,-0.62 0.77,-1.12 1.38,-1.4 1.42,-0.67 3.03,-0.31 4.4,0.29 2.34,1.02 5.43,3.08 4.99,6.05 -0.16,1.1 -0.91,1.92 -1.89,2.23 0.93,-0.62 0.98,-2.14 0.77,-3.12 -0.26,-1.26 -1.07,-2.27 -2.08,-3.03 -1.02,-0.77 -2.26,-1.26 -3.48,-1.58 -0.81,-0.21 -1.69,-0.26 -2.47,-0.01 -0.13,-0.15 -0.34,-0.23 -0.54,-0.11 -0.16,0.1 -0.33,0.2 -0.46,0.34 -0.14,0.16 -0.28,0.33 -0.4,0.5 -0.13,0.18 -0.25,0.37 -0.38,0.55 0.01,-0.23 0.05,-0.46 0.16,-0.71 z m -1.55,3.42 c 0.04,0.15 0.13,0.29 0.28,0.37 0.13,0.07 0.28,0.09 0.43,0.06 0.14,0.11 0.27,0.22 0.38,0.37 0.03,0.04 0.05,0.09 0.07,0.13 -0.62,0.59 -1.25,1.17 -1.96,1.66 -0.81,0.56 -1.69,1.03 -2.59,1.44 -0.07,-0.21 -0.14,-0.41 -0.2,-0.62 -0.03,-0.08 -0.05,-0.16 -0.08,-0.24 0.15,-0.09 0.31,-0.17 0.44,-0.29 0.6,-0.51 0.86,-1.36 0.41,-2.06 -0.42,-0.66 -1.17,-0.91 -1.92,-0.98 -0.15,-0.46 -0.29,-0.92 -0.44,-1.38 0.89,0.18 1.77,0.37 2.64,0.62 0.84,0.27 1.73,0.53 2.54,0.92 z m -5.73,-3.2 c -0.3,-0.93 -0.6,-1.86 -0.9,-2.79 0.13,0 0.25,-0.01 0.38,-0.01 0.18,-0.01 0.37,-0.03 0.55,-0.04 0.1,-0.01 0.2,-0.02 0.3,-0.02 0.02,0 0.04,0 0.05,0 0.02,0.22 0.04,0.45 0.05,0.67 0.04,0.6 0.12,1.29 -0.16,1.85 -0.06,0.12 -0.16,0.23 -0.27,0.34 z m -0.61,-6.4 c 0.1,0.12 0.24,0.21 0.41,0.19 0.15,-0.02 0.29,-0.06 0.41,-0.13 -0.03,0.23 -0.06,0.47 -0.05,0.72 0.01,0.35 0.06,0.71 0.09,1.06 0.01,0.12 0.02,0.24 0.03,0.36 -0.1,0.01 -0.19,0.02 -0.29,0.04 -0.23,0.03 -0.46,0.05 -0.68,0.09 -0.18,0.03 -0.36,0.06 -0.54,0.1 -0.01,0 -0.03,0.01 -0.04,0.01 -0.18,-0.55 -0.36,-1.1 -0.53,-1.66 0.04,-0.27 0.06,-0.55 0.06,-0.83 0.37,0.02 0.75,0.05 1.13,0.05 z m 2.52,11.17 c 0,0.02 0,0.05 0,0.07 0,0 0,0 0,0.02 -0.03,0.11 -0.13,0.22 -0.24,0.32 -0.1,-0.29 -0.19,-0.59 -0.28,-0.88 0.1,0.04 0.21,0.06 0.3,0.13 -0.03,-0.02 0.1,0.09 0.13,0.12 0.05,0.05 0.05,0.05 0.09,0.14 -0.05,-0.09 0,0.1 0,0.08 z m 0.34,-18.06 c 0,0.29 0.02,0.59 0.02,0.84 0.01,0.63 0.01,1.25 0.03,1.88 0.01,0.63 0.03,1.25 0.04,1.88 0.01,0.3 0,0.6 0.01,0.89 -0.09,0.01 -0.19,0.02 -0.27,0.02 -0.46,0.02 -0.92,0.04 -1.38,0.06 -0.13,0.01 -0.25,0.01 -0.38,0.02 -0.04,-0.9 -0.08,-1.8 -0.12,-2.69 -0.03,-0.59 -0.06,-1.19 -0.08,-1.78 -0.02,-0.35 -0.02,-0.75 -0.07,-1.13 0.05,0 0.11,0 0.16,0 0.68,0.01 1.36,0.01 2.04,0.01 z m -3.22,-0.04 c 0,0.13 0,0.27 0,0.39 0,0.27 0,0.55 0.01,0.82 0.02,0.59 0.04,1.19 0.06,1.78 0.03,0.89 0.06,1.79 0.1,2.68 -0.33,0.02 -0.67,0.07 -1,0.12 -0.03,-0.31 -0.05,-0.62 -0.06,-0.92 -0.05,-1.08 -0.09,-2.16 -0.15,-3.24 -0.03,-0.57 -0.06,-1.14 -0.09,-1.71 0.38,0.05 0.75,0.07 1.13,0.08 z m -3.53,-4.32 c 0.37,0 0.74,0.01 1.11,-0.01 -0.05,0.39 -0.04,0.78 -0.04,1.17 0.01,0.52 0.03,1.05 0.05,1.57 0.04,1.08 0.08,2.16 0.12,3.24 0.02,0.59 0.05,1.18 0.08,1.76 -0.33,-1.04 -0.67,-2.08 -1,-3.12 -0.49,-1.54 -0.98,-3.08 -1.48,-4.62 0.38,-0.01 0.77,0 1.16,0.01 z m -0.45,7.56 c 2.08,6.56 4.18,13.12 6.32,19.66 1.78,5.44 3.61,10.87 5.4,16.31 -0.54,-0.01 -1.09,0.01 -1.61,0.01 -0.84,0 -1.68,0 -2.52,0.03 -1.61,0.05 -3.23,0.17 -4.84,0.3 -1.64,0.14 -3.28,0.31 -4.92,0.51 -0.8,0.1 -1.61,0.17 -2.41,0.28 0,0 0,0 0,0 0.19,-0.2 0.38,-0.4 0.57,-0.61 0.02,0.01 0.04,0.03 0.06,0.02 1.3,-0.06 2.6,-0.14 3.9,-0.22 0.63,-0.04 1.27,-0.09 1.9,-0.13 0.32,-0.02 0.65,-0.04 0.97,-0.07 0.31,-0.02 0.67,-0.01 0.97,-0.12 0.14,-0.05 0.17,-0.28 0,-0.31 -0.3,-0.06 -0.62,-0.01 -0.92,0.01 l -0.97,0.07 c -0.65,0.05 -1.3,0.09 -1.95,0.14 -1.22,0.09 -2.45,0.19 -3.67,0.3 0.42,-0.47 0.83,-0.97 1.23,-1.47 0.01,0 0.01,0.01 0.02,0.01 0.19,0.03 0.38,0.02 0.57,0.01 0.17,0 0.35,-0.01 0.53,-0.02 0.18,-0.01 0.35,-0.03 0.53,-0.04 0.17,-0.01 0.39,-0.02 0.54,-0.11 0.06,-0.04 0.07,-0.15 0,-0.18 -0.16,-0.08 -0.36,-0.07 -0.54,-0.07 -0.17,0 -0.35,0 -0.53,0 -0.18,0.01 -0.35,0.02 -0.53,0.03 -0.1,0.01 -0.21,0.01 -0.32,0.02 0.83,-1.09 1.56,-2.24 2.12,-3.49 0.6,-1.34 0.99,-2.77 1.09,-4.24 0.12,-1.74 -0.14,-3.46 -0.51,-5.16 -0.78,-3.49 -1.81,-6.94 -2.74,-10.4 -0.93,-3.45 -1.86,-6.9 -2.8,-10.35 -1.88,-6.93 -3.81,-13.85 -5.8,-20.75 -1.97,-6.87 -3.95,-13.74 -5.9,-20.61 -1.96,-6.91 -3.92,-13.82 -5.97,-20.7 -0.11,-0.38 -0.47,-0.46 -0.75,-0.34 -1.81,-0.25 -3.62,-0.42 -5.46,-0.39 -0.91,0.02 -1.83,0.07 -2.73,0.18 -0.75,0.09 -1.62,0.14 -2.35,0.41 -0.26,-0.03 -0.52,0.08 -0.6,0.41 -1.58,7.01 -3.07,14.03 -4.56,21.06 -1.49,6.99 -3,13.98 -4.5,20.96 -1.52,7.02 -2.98,14.05 -4.39,21.09 -0.7,3.51 -1.4,7.01 -2.09,10.52 -0.69,3.51 -1.5,7.02 -2.03,10.56 -0.26,1.72 -0.4,3.45 -0.17,5.18 0.19,1.39 0.64,2.71 1.28,3.96 0.02,0.14 0.08,0.28 0.2,0.37 1.21,2.19 2.95,4.05 4.79,5.74 0,0 0,0 0,0 -0.81,-0.05 -1.61,-0.07 -2.42,-0.11 -1.65,-0.09 -3.29,-0.15 -4.94,-0.18 -1.61,-0.03 -3.24,-0.03 -4.85,0.02 -0.84,0.03 -1.68,0.09 -2.52,0.14 -0.53,0.03 -1.07,0.06 -1.61,0.11 1.43,-5.55 2.89,-11.1 4.3,-16.65 1.69,-6.67 3.35,-13.35 4.98,-20.04 1.63,-6.69 3.12,-13.41 4.69,-20.12 1.57,-6.7 3.1,-13.41 4.61,-20.13 1.5,-6.72 2.97,-13.45 4.36,-20.19 0.08,-0.38 0.15,-0.76 0.22,-1.14 0.32,-0.13 0.58,-0.52 0.44,-0.86 -0.06,-0.14 -0.13,-0.28 -0.19,-0.43 0,-0.02 0.01,-0.05 0.01,-0.07 0.05,-0.29 -0.11,-0.5 -0.31,-0.61 -0.32,-0.72 -0.67,-1.42 -1.04,-2.11 0,0 0,0 0,0 -0.05,-0.09 -0.09,-0.19 -0.15,-0.28 0.34,0.02 0.68,0.03 1.02,0.05 0.18,0.01 0.37,0.02 0.55,0.03 0.18,0.01 0.36,0.03 0.54,0 0.09,-0.02 0.08,-0.16 0,-0.18 -0.17,-0.05 -0.36,-0.04 -0.54,-0.05 -0.18,-0.01 -0.37,-0.02 -0.55,-0.03 -0.37,-0.02 -0.74,-0.03 -1.11,-0.05 -0.02,0 -0.02,0.01 -0.04,0.01 -0.31,-0.54 -0.64,-1.08 -0.99,-1.59 -0.13,-0.19 -0.26,-0.39 -0.4,-0.59 1.21,0.13 2.43,0.2 3.64,0.27 2.03,0.12 4.06,0.2 6.09,0.24 4.07,0.08 8.13,-0.01 12.19,-0.28 1.16,-0.07 2.32,-0.16 3.47,-0.27 0.56,-0.05 1.13,-0.08 1.71,-0.12 -0.48,0.44 -0.93,0.92 -1.34,1.47 -0.66,0.87 -1.18,1.83 -1.64,2.82 -0.29,0.06 -0.55,0.32 -0.45,0.69 0.03,0.11 0.06,0.23 0.09,0.34 0,0.13 0.04,0.25 0.1,0.36 0.15,0.59 0.31,1.17 0.47,1.76 1.84,6.63 3.75,13.25 5.7,19.85 1.95,6.6 3.94,13.19 5.95,19.78 2.03,6.6 3.98,13.21 6.05,19.77 z m 21.64,-77.03 c -0.99,5.9 -2.99,11.6 -5.86,16.85 -2.87,5.24 -6.56,10.03 -10.95,14.09 -4.27,3.96 -9.18,7.18 -14.52,9.51 -0.09,-0.3 -0.18,-0.6 -0.27,-0.9 0.84,-0.38 1.67,-0.75 2.5,-1.15 l 1.49,-0.71 c 0.26,-0.13 0.53,-0.25 0.79,-0.38 0.24,-0.12 0.51,-0.23 0.7,-0.42 0.09,-0.09 0.03,-0.29 -0.12,-0.28 -0.26,0.02 -0.49,0.15 -0.73,0.26 -0.25,0.12 -0.49,0.24 -0.74,0.36 -0.52,0.26 -1.04,0.51 -1.57,0.77 -0.81,0.4 -1.62,0.82 -2.42,1.24 -0.09,-0.3 -0.18,-0.6 -0.27,-0.91 0.43,-0.18 0.86,-0.36 1.28,-0.55 0.36,-0.16 0.72,-0.32 1.08,-0.48 0.34,-0.15 0.73,-0.33 1.01,-0.58 0.06,-0.06 0.02,-0.18 -0.07,-0.17 -0.35,0.04 -0.71,0.2 -1.03,0.33 -0.38,0.16 -0.75,0.34 -1.12,0.51 -0.42,0.19 -0.84,0.39 -1.26,0.59 -0.02,-0.07 -0.04,-0.14 -0.06,-0.21 2.42,-1.05 4.76,-2.29 6.97,-3.73 4.73,-3.08 8.91,-6.99 12.35,-11.47 3.47,-4.53 6.2,-9.6 8.02,-15 1.82,-5.4 2.71,-11.1 2.57,-16.79 -0.03,-1.37 -0.14,-2.73 -0.28,-4.09 0.15,-0.06 0.31,-0.13 0.46,-0.19 0.01,0.05 0.02,0.1 0.03,0.15 0.07,0.42 0.13,0.84 0.18,1.26 0.1,0.83 0.16,1.67 0.19,2.51 0.03,0.84 0.06,1.68 0.03,2.51 -0.01,0.22 -0.01,0.44 -0.01,0.66 0,0.21 0.04,0.43 0,0.64 -0.04,0.22 -0.1,0.42 -0.14,0.64 -0.03,0.2 -0.04,0.41 -0.06,0.61 -0.02,0.17 0.28,0.22 0.31,0.04 0.03,-0.2 0.07,-0.4 0.09,-0.61 0.02,-0.22 -0.01,-0.44 -0.01,-0.66 0,-0.24 0.08,-0.48 0.11,-0.72 0.02,-0.17 0.04,-0.34 0.05,-0.51 0.05,-0.87 0.09,-1.74 0.05,-2.61 -0.03,-0.85 -0.1,-1.71 -0.2,-2.55 -0.05,-0.41 -0.11,-0.82 -0.17,-1.23 -0.02,-0.1 -0.03,-0.2 -0.05,-0.3 0.07,-0.03 0.13,-0.06 0.2,-0.08 0.23,-0.1 0.46,-0.19 0.69,-0.29 0.04,0.86 0.07,1.72 0.12,2.58 0.04,0.73 0.08,1.46 0.12,2.19 0.04,0.73 0.04,1.47 0.21,2.18 0.03,0.14 0.21,0.09 0.23,-0.03 0.08,-0.73 0,-1.47 -0.05,-2.19 -0.04,-0.73 -0.09,-1.46 -0.13,-2.2 -0.05,-0.89 -0.12,-1.78 -0.19,-2.66 0.24,-0.1 0.48,-0.2 0.73,-0.31 0.58,4.8 0.52,9.7 -0.28,14.48 z m 14.43,-22.25 c -0.03,-0.32 -0.08,-0.64 -0.12,-0.94 -0.1,-0.74 -0.24,-1.47 -0.42,-2.19 -0.36,-1.43 -0.92,-2.79 -1.62,-4.09 -0.06,-0.11 -0.22,-0.01 -0.16,0.1 0.64,1.3 1.12,2.67 1.47,4.07 0.17,0.69 0.31,1.39 0.41,2.1 0.05,0.35 0.09,0.71 0.11,1.07 0,0.01 0,0.02 0,0.02 -0.53,0.23 -1.07,0.45 -1.6,0.68 -0.02,-0.3 -0.04,-0.6 -0.07,-0.89 -0.06,-0.74 -0.16,-1.48 -0.29,-2.21 -0.27,-1.49 -0.69,-2.95 -1.29,-4.34 -0.34,-0.81 -0.74,-1.59 -1.19,-2.35 -0.07,-0.11 -0.24,-0.01 -0.17,0.1 0.91,1.69 1.61,3.51 2.06,5.38 0.22,0.93 0.38,1.87 0.48,2.82 0.05,0.48 0.08,0.97 0.09,1.45 0,0.06 0,0.12 0,0.19 -0.54,0.23 -1.08,0.46 -1.62,0.69 -0.03,-1 -0.16,-2.01 -0.38,-2.97 -0.38,-1.67 -1.08,-3.25 -2.01,-4.68 -0.08,-0.12 -0.26,-0.01 -0.19,0.11 0.86,1.43 1.47,3 1.83,4.63 0.23,1.03 0.32,2.06 0.33,3.09 -0.53,0.22 -1.06,0.45 -1.59,0.67 0,-0.25 -0.01,-0.51 -0.02,-0.76 -0.04,-0.75 -0.13,-1.49 -0.25,-2.23 -0.25,-1.49 -0.66,-2.95 -1.25,-4.34 -0.34,-0.8 -0.74,-1.57 -1.18,-2.31 -0.07,-0.11 -0.23,-0.01 -0.17,0.1 0.91,1.67 1.59,3.47 2.02,5.32 0.21,0.92 0.36,1.85 0.43,2.79 0.04,0.48 0.05,0.95 0.06,1.43 0,0.05 0,0.11 0,0.16 -0.36,0.15 -0.73,0.31 -1.09,0.46 -0.03,-0.27 -0.06,-0.53 -0.09,-0.79 -0.1,-0.74 -0.24,-1.47 -0.43,-2.19 -0.38,-1.45 -0.96,-2.81 -1.7,-4.11 -0.05,-0.09 -0.18,-0.01 -0.13,0.08 0.69,1.29 1.2,2.69 1.55,4.11 0.18,0.71 0.31,1.43 0.39,2.16 0.03,0.3 0.05,0.6 0.07,0.9 -0.33,0.14 -0.65,0.28 -0.98,0.42 0,-0.38 -0.05,-0.78 -0.09,-1.14 -0.06,-0.57 -0.16,-1.14 -0.3,-1.69 -0.29,-1.14 -0.74,-2.24 -1.31,-3.27 -0.06,-0.1 -0.22,-0.01 -0.16,0.09 0.56,1.02 0.97,2.11 1.23,3.24 0.13,0.57 0.23,1.14 0.29,1.72 0.03,0.27 0.04,0.54 0.05,0.82 0,0.12 0,0.23 0.01,0.35 -0.34,0.14 -0.67,0.29 -1.01,0.43 -0.45,-3.28 -1.58,-6.49 -3.2,-9.36 -0.07,-0.13 -0.26,-0.01 -0.19,0.11 1.6,2.93 2.57,6.1 3.08,9.38 -0.28,0.12 -0.57,0.24 -0.85,0.36 0.01,-0.33 -0.03,-0.67 -0.06,-0.98 -0.05,-0.44 -0.11,-0.88 -0.2,-1.31 -0.19,-0.9 -0.47,-1.79 -0.82,-2.64 -0.04,-0.09 -0.2,-0.06 -0.16,0.04 0.33,0.83 0.57,1.69 0.73,2.57 0.08,0.44 0.15,0.89 0.19,1.34 0.03,0.35 0.02,0.74 0.07,1.1 -0.42,0.18 -0.83,0.35 -1.25,0.53 -0.03,-0.24 -0.07,-0.49 -0.11,-0.72 -0.07,-0.43 -0.15,-0.86 -0.23,-1.29 -0.17,-0.83 -0.39,-1.65 -0.64,-2.45 -0.5,-1.63 -1.18,-3.2 -1.99,-4.7 -0.06,-0.12 -0.24,-0.01 -0.18,0.11 0.77,1.51 1.39,3.09 1.88,4.71 0.24,0.79 0.44,1.6 0.6,2.41 0.08,0.4 0.15,0.8 0.22,1.2 0.05,0.29 0.08,0.58 0.12,0.87 -0.06,0.03 -0.12,0.05 -0.18,0.08 -0.32,0.14 -0.65,0.28 -0.97,0.41 -0.06,-0.41 -0.13,-0.83 -0.21,-1.23 -0.11,-0.6 -0.24,-1.19 -0.39,-1.77 -0.31,-1.17 -0.68,-2.33 -1.08,-3.47 -0.02,-0.04 -0.09,-0.03 -0.07,0.02 0.39,1.13 0.7,2.29 0.95,3.46 0.12,0.58 0.24,1.16 0.34,1.74 0.08,0.45 0.14,0.91 0.21,1.36 -0.2,0.08 -0.4,0.17 -0.6,0.25 0,-0.01 0,-0.02 0,-0.03 -0.02,-0.18 -0.29,-0.19 -0.29,0 0,0.05 0.01,0.1 0.01,0.15 -0.08,0.03 -0.15,0.07 -0.23,0.1 -0.06,-0.45 -0.13,-0.9 -0.22,-1.34 -0.18,-0.95 -0.41,-1.89 -0.71,-2.81 -0.58,-1.84 -1.38,-3.61 -2.43,-5.24 -0.08,-0.12 -0.26,-0.01 -0.19,0.11 0.94,1.65 1.73,3.4 2.3,5.21 0.28,0.89 0.51,1.8 0.69,2.72 0.09,0.49 0.16,0.98 0.23,1.48 -0.45,0.19 -0.89,0.38 -1.34,0.57 -0.07,-0.34 -0.13,-0.68 -0.21,-1.02 -0.18,-0.8 -0.39,-1.6 -0.64,-2.38 -0.48,-1.55 -1.07,-3.08 -1.8,-4.53 -0.42,-0.83 -0.87,-1.64 -1.36,-2.44 -0.08,-0.12 -0.27,-0.01 -0.19,0.11 1.62,2.79 2.86,5.81 3.61,8.95 0.11,0.44 0.2,0.88 0.29,1.32 0.01,0.03 0.01,0.07 0.02,0.1 -0.55,0.23 -1.09,0.46 -1.64,0.7 -0.01,-0.03 -0.01,-0.07 -0.02,-0.1 -0.11,-0.61 -0.24,-1.21 -0.39,-1.8 -0.31,-1.21 -0.76,-2.38 -1.24,-3.53 -0.02,-0.06 -0.12,-0.03 -0.09,0.03 0.46,1.14 0.8,2.33 1.08,3.53 0.14,0.58 0.26,1.17 0.36,1.77 0.01,0.08 0.02,0.16 0.03,0.24 -0.65,0.28 -1.31,0.56 -1.96,0.83 -0.03,-0.6 -0.08,-1.2 -0.15,-1.79 -0.12,-0.94 -0.3,-1.86 -0.54,-2.78 -0.49,-1.85 -1.25,-3.63 -2.23,-5.28 -0.09,-0.15 -0.31,-0.01 -0.23,0.13 0.95,1.64 1.66,3.4 2.15,5.23 0.24,0.91 0.42,1.84 0.54,2.78 0.08,0.61 0.1,1.23 0.12,1.84 -0.41,0.17 -0.82,0.35 -1.23,0.52 -0.23,-3.11 -1.17,-6.19 -2.58,-8.95 -0.07,-0.13 -0.26,-0.02 -0.2,0.12 0.7,1.54 1.26,3.16 1.68,4.8 0.35,1.38 0.56,2.79 0.72,4.2 -0.38,0.16 -0.77,0.33 -1.15,0.49 -0.43,-2.66 -1.15,-5.27 -2.21,-7.74 -0.37,-0.87 -0.78,-1.72 -1.21,-2.55 -0.07,-0.13 -0.27,-0.01 -0.2,0.12 1.46,2.88 2.53,5.95 3.16,9.12 0.08,0.39 0.13,0.78 0.19,1.18 -0.32,0.14 -0.64,0.27 -0.96,0.41 -0.01,-0.08 -0.02,-0.16 -0.03,-0.24 -0.06,-0.52 -0.15,-1.04 -0.26,-1.56 -0.23,-1.03 -0.57,-2.03 -1.01,-2.99 -0.06,-0.14 -0.27,-0.02 -0.21,0.12 0.42,0.94 0.74,1.93 0.95,2.94 0.11,0.51 0.19,1.02 0.25,1.53 0.01,0.11 0.01,0.21 0.02,0.32 -0.51,0.22 -1.02,0.43 -1.53,0.65 -0.06,-0.5 -0.14,-0.99 -0.23,-1.47 -0.17,-0.96 -0.41,-1.91 -0.71,-2.84 -0.59,-1.84 -1.42,-3.6 -2.46,-5.23 -0.08,-0.12 -0.27,-0.01 -0.19,0.11 1,1.62 1.8,3.37 2.38,5.19 0.28,0.9 0.51,1.82 0.68,2.75 0.09,0.47 0.16,0.94 0.21,1.41 0.01,0.07 0.01,0.14 0.02,0.21 -0.49,0.21 -0.99,0.42 -1.48,0.63 -0.15,-1 -0.35,-1.99 -0.62,-2.94 -0.47,-1.68 -1.12,-3.3 -1.93,-4.85 -0.06,-0.12 -0.24,-0.01 -0.18,0.1 0.77,1.54 1.37,3.16 1.8,4.82 0.26,1 0.43,2 0.56,3.02 -0.47,0.2 -0.95,0.4 -1.42,0.6 -0.01,-1.86 -0.48,-3.74 -1.33,-5.37 -0.05,-0.09 -0.19,-0.01 -0.14,0.08 0.51,0.99 0.88,2.05 1.08,3.15 0.14,0.74 0.17,1.49 0.16,2.24 -0.38,0.16 -0.76,0.32 -1.14,0.49 -0.07,-0.45 -0.15,-0.9 -0.23,-1.35 -0.16,-0.83 -0.36,-1.64 -0.59,-2.45 -0.45,-1.59 -1.07,-3.1 -1.79,-4.59 -0.05,-0.11 -0.21,-0.01 -0.16,0.1 0.7,1.48 1.25,3.04 1.7,4.61 0.21,0.76 0.4,1.54 0.55,2.31 0.1,0.49 0.17,0.99 0.24,1.49 -0.27,0.11 -0.54,0.23 -0.81,0.34 -0.15,-0.55 -0.31,-1.1 -0.46,-1.65 -0.24,-0.85 -0.47,-1.71 -0.71,-2.56 -0.04,-0.14 -0.26,-0.08 -0.22,0.06 0.23,0.85 0.46,1.71 0.69,2.56 0.15,0.56 0.29,1.13 0.45,1.69 -0.44,0.19 -0.89,0.38 -1.33,0.57 -0.03,-0.36 -0.07,-0.72 -0.12,-1.08 -0.12,-0.88 -0.3,-1.75 -0.53,-2.61 -0.46,-1.71 -1.14,-3.32 -1.99,-4.86 -0.05,-0.09 -0.19,-0.01 -0.14,0.08 0.82,1.53 1.44,3.18 1.87,4.85 0.22,0.85 0.39,1.71 0.5,2.58 0.05,0.39 0.09,0.78 0.11,1.17 -0.45,0.19 -0.91,0.39 -1.36,0.58 -0.38,-3.26 -1.46,-6.4 -3.13,-9.23 -0.04,-0.07 -0.15,-0.01 -0.11,0.06 1.62,2.84 2.61,6.04 2.96,9.29 -0.49,0.21 -0.98,0.42 -1.48,0.63 -0.02,-0.4 -0.06,-0.8 -0.11,-1.2 -0.11,-0.83 -0.28,-1.66 -0.53,-2.46 -0.49,-1.61 -1.26,-3.17 -2.2,-4.56 -0.04,-0.05 -0.12,0 -0.09,0.05 0.94,1.4 1.61,2.9 2.06,4.52 0.22,0.8 0.39,1.62 0.5,2.44 0.05,0.41 0.09,0.82 0.11,1.24 0,0.03 0,0.05 0,0.08 -0.43,0.18 -0.87,0.37 -1.3,0.55 -0.01,0 -0.02,0.01 -0.03,0.01 -0.02,-0.13 -0.04,-0.26 -0.07,-0.39 -0.08,-0.43 -0.17,-0.87 -0.28,-1.3 -0.22,-0.86 -0.55,-1.68 -0.88,-2.51 -0.03,-0.09 -0.18,-0.05 -0.14,0.04 0.32,0.8 0.55,1.65 0.75,2.49 0.1,0.41 0.19,0.83 0.27,1.25 0.03,0.18 0.06,0.35 0.08,0.53 -0.35,0.15 -0.7,0.3 -1.06,0.45 -0.06,-0.37 -0.13,-0.75 -0.21,-1.12 -0.18,-0.83 -0.4,-1.64 -0.65,-2.45 -0.52,-1.62 -1.19,-3.19 -2,-4.69 -0.06,-0.12 -0.24,-0.01 -0.18,0.11 0.79,1.5 1.43,3.08 1.92,4.7 0.24,0.79 0.44,1.6 0.61,2.41 0.08,0.39 0.15,0.77 0.21,1.16 -0.41,0.17 -0.82,0.35 -1.23,0.52 -0.01,-0.08 -0.02,-0.16 -0.03,-0.24 -0.03,-0.29 -0.07,-0.57 -0.12,-0.85 -0.11,-0.62 -0.25,-1.22 -0.43,-1.82 -0.36,-1.17 -0.88,-2.26 -1.51,-3.3 -0.06,-0.09 -0.2,-0.01 -0.15,0.09 0.61,1.04 1.08,2.17 1.42,3.33 0.16,0.56 0.29,1.12 0.39,1.69 0.05,0.32 0.09,0.64 0.12,0.96 0.01,0.09 0.01,0.18 0.02,0.27 -0.51,0.22 -1.02,0.43 -1.53,0.65 -0.04,-0.53 -0.11,-1.06 -0.19,-1.58 -0.14,-0.89 -0.33,-1.78 -0.58,-2.64 -0.24,-0.85 -0.53,-1.69 -0.88,-2.5 -0.36,-0.85 -0.81,-1.64 -1.27,-2.44 -0.04,-0.06 -0.13,-0.01 -0.1,0.06 0.87,1.54 1.52,3.25 1.99,4.95 0.23,0.84 0.4,1.7 0.53,2.56 0.08,0.58 0.12,1.16 0.16,1.73 -0.3,0.13 -0.6,0.26 -0.91,0.38 -0.03,-0.34 -0.07,-0.67 -0.12,-1 -0.09,-0.65 -0.2,-1.29 -0.35,-1.93 -0.29,-1.26 -0.73,-2.45 -1.28,-3.62 -0.03,-0.07 -0.15,-0.02 -0.12,0.05 0.48,1.16 0.85,2.37 1.13,3.6 0.14,0.62 0.25,1.26 0.33,1.89 0.05,0.38 0.07,0.76 0.09,1.14 -0.18,0.08 -0.35,0.15 -0.53,0.23 0,-0.02 -0.01,-0.05 -0.01,-0.07 -0.06,-0.4 -0.13,-0.79 -0.2,-1.19 -0.15,-0.79 -0.36,-1.57 -0.58,-2.35 -0.06,-0.23 -0.14,-0.45 -0.21,-0.67 0,-0.11 0,-0.22 -0.01,-0.33 -0.04,-0.97 -0.07,-1.95 -0.15,-2.92 -0.07,-0.84 -0.04,-1.83 -0.38,-2.63 0.04,-0.1 0.07,-0.21 0.07,-0.31 0,-0.49 -0.37,-0.78 -0.8,-0.82 -0.15,-0.02 -0.3,-0.03 -0.45,-0.05 -0.13,-0.24 -0.26,-0.48 -0.39,-0.72 -0.05,-0.09 -0.18,-0.01 -0.14,0.08 0.09,0.2 0.17,0.4 0.25,0.61 -7.96,-0.87 -16.04,-1.11 -24.02,-0.48 -1.13,0.09 -2.27,0.19 -3.4,0.31 -0.46,0.05 -0.92,0.1 -1.39,0.15 0.01,-0.02 0.04,-0.02 0.04,-0.04 0.01,-0.1 0.01,-0.18 0,-0.28 -0.01,-0.08 -0.02,-0.16 -0.04,-0.24 -0.03,-0.17 -0.05,-0.35 -0.09,-0.52 -0.02,-0.09 -0.03,-0.19 -0.05,-0.28 0.24,-0.1 0.49,-0.2 0.73,-0.3 0.01,0.04 0.01,0.09 0.02,0.13 0.02,0.14 0.05,0.27 0.07,0.41 0.01,0.07 0.03,0.14 0.04,0.2 0.01,0.08 0.02,0.15 0.07,0.22 0.07,0.1 0.2,0.08 0.25,-0.03 0.05,-0.12 0,-0.29 -0.01,-0.42 -0.02,-0.15 -0.03,-0.3 -0.05,-0.45 -0.01,-0.07 -0.02,-0.14 -0.03,-0.21 0.48,-0.19 0.96,-0.39 1.43,-0.58 0.03,0.18 0.07,0.36 0.1,0.54 0.05,0.25 0.08,0.51 0.2,0.74 0.05,0.08 0.15,0.04 0.16,-0.04 0.03,-0.26 -0.04,-0.52 -0.09,-0.77 -0.04,-0.19 -0.08,-0.38 -0.11,-0.57 0.5,-0.2 0.99,-0.4 1.49,-0.6 0.03,0.11 0.06,0.22 0.09,0.33 0.02,0.06 0.03,0.11 0.05,0.17 0.02,0.07 0.05,0.13 0.07,0.2 0.04,0.12 0.07,0.25 0.14,0.35 0.03,0.06 0.13,0.03 0.13,-0.03 0,-0.12 -0.04,-0.25 -0.06,-0.37 -0.01,-0.06 -0.01,-0.13 -0.03,-0.19 -0.02,-0.06 -0.03,-0.12 -0.05,-0.19 -0.03,-0.12 -0.07,-0.24 -0.1,-0.36 0.55,-0.22 1.11,-0.45 1.66,-0.68 l 0.08,0.28 c 0.04,0.16 0.09,0.32 0.13,0.48 0.02,0.08 0.04,0.16 0.07,0.24 0.03,0.08 0.05,0.17 0.12,0.23 0.06,0.06 0.16,0.03 0.19,-0.05 0.03,-0.08 0,-0.17 -0.01,-0.25 -0.01,-0.08 -0.03,-0.15 -0.05,-0.22 -0.05,-0.17 -0.09,-0.33 -0.14,-0.5 -0.03,-0.11 -0.06,-0.21 -0.09,-0.32 0.39,-0.16 0.78,-0.32 1.17,-0.48 0.02,0.06 0.05,0.12 0.07,0.18 0.06,0.16 0.12,0.33 0.23,0.46 0.04,0.05 0.12,0.01 0.12,-0.05 -0.01,-0.17 -0.07,-0.33 -0.13,-0.48 -0.03,-0.07 -0.05,-0.13 -0.07,-0.2 0.28,-0.12 0.57,-0.23 0.85,-0.35 0.15,0.22 0.3,0.45 0.45,0.67 0.08,0.12 0.16,0.24 0.26,0.35 0.09,0.1 0.17,0.21 0.29,0.28 0.07,0.04 0.14,-0.03 0.13,-0.1 -0.02,-0.14 -0.1,-0.26 -0.16,-0.38 -0.06,-0.12 -0.14,-0.23 -0.22,-0.34 -0.15,-0.2 -0.29,-0.4 -0.44,-0.61 1.7,-0.69 3.4,-1.39 5.1,-2.09 0.12,0.18 0.23,0.35 0.35,0.53 0.06,0.1 0.13,0.19 0.19,0.29 0.06,0.09 0.13,0.22 0.23,0.28 0.07,0.05 0.14,-0.03 0.13,-0.1 -0.01,-0.06 -0.04,-0.11 -0.08,-0.16 -0.03,-0.05 -0.06,-0.1 -0.1,-0.15 -0.06,-0.09 -0.12,-0.19 -0.19,-0.28 -0.11,-0.16 -0.22,-0.33 -0.33,-0.49 0.27,-0.11 0.54,-0.22 0.81,-0.34 0.01,0 0.01,0 0.02,0 0.05,0.01 0.09,0.02 0.14,0.04 0.01,0 0.02,0.01 0.04,0.01 0,0 0,0 0,0 0,0 0,0 0,0 0.02,0.01 0.04,0.02 0.06,0.03 0.04,0.02 0.08,0.05 0.12,0.07 0.01,0.01 0.04,0.02 0,0 0.01,0 0.02,0.01 0.02,0.02 0.02,0.01 0.04,0.03 0.05,0.04 0.04,0.03 0.07,0.07 0.11,0.1 0.02,0.02 0.03,0.03 0.05,0.05 0.01,0.01 0.01,0.02 0.02,0.02 0,0 0,0 0,0 0,0 0,0.01 0.01,0.01 0.03,0.04 0.05,0.08 0.08,0.13 0.02,0.04 0.08,0.08 0.13,0.07 0.04,0 0.06,-0.01 0.09,-0.03 0.01,0 0.01,-0.01 0.02,-0.01 0.04,-0.03 0.05,-0.1 0.04,-0.15 -0.08,-0.23 -0.23,-0.42 -0.44,-0.56 -0.03,-0.02 -0.07,-0.03 -0.11,-0.05 0.32,-0.13 0.65,-0.27 0.97,-0.4 0.08,0.12 0.15,0.23 0.23,0.35 0.06,0.1 0.13,0.19 0.21,0.28 0.08,0.09 0.14,0.19 0.23,0.27 0.06,0.06 0.18,0 0.15,-0.09 -0.04,-0.12 -0.11,-0.22 -0.16,-0.32 -0.02,-0.05 -0.04,-0.09 -0.07,-0.14 -0.03,-0.05 -0.07,-0.1 -0.1,-0.15 -0.07,-0.1 -0.14,-0.21 -0.21,-0.31 0.54,-0.22 1.08,-0.45 1.62,-0.67 0.18,0.15 0.36,0.3 0.54,0.45 0.12,0.1 0.24,0.21 0.37,0.3 0.13,0.09 0.26,0.19 0.4,0.26 0.07,0.03 0.18,-0.05 0.12,-0.12 -0.1,-0.13 -0.22,-0.22 -0.33,-0.34 -0.11,-0.11 -0.24,-0.2 -0.36,-0.3 -0.15,-0.12 -0.3,-0.24 -0.45,-0.36 0.66,-0.27 1.33,-0.55 1.99,-0.82 0.01,0.01 0.01,0.03 0.03,0.04 0.21,0.13 0.4,0.3 0.56,0.5 0.08,0.09 0.15,0.19 0.21,0.29 0.03,0.05 0.06,0.1 0.09,0.16 0.03,0.06 0.08,0.11 0.12,0.17 0.06,0.1 0.2,0.03 0.18,-0.08 -0.01,-0.07 -0.01,-0.14 -0.04,-0.2 -0.03,-0.07 -0.06,-0.14 -0.09,-0.2 -0.07,-0.13 -0.15,-0.25 -0.24,-0.36 -0.15,-0.17 -0.33,-0.31 -0.53,-0.43 1.85,-0.77 3.71,-1.53 5.56,-2.3 0.01,0.03 0.02,0.05 0.05,0.07 0.68,0.45 1.26,1.02 1.72,1.69 0.22,0.32 0.41,0.65 0.57,1.01 0.08,0.19 0.16,0.38 0.22,0.57 0.06,0.18 0.1,0.37 0.19,0.54 0.05,0.09 0.19,0.05 0.19,-0.05 0.01,-0.37 -0.2,-0.8 -0.34,-1.13 -0.17,-0.4 -0.39,-0.78 -0.64,-1.13 -0.47,-0.66 -1.06,-1.21 -1.73,-1.66 2.05,-0.85 4.1,-1.71 6.14,-2.57 0.66,0.44 1.26,0.98 1.71,1.62 0.24,0.34 0.45,0.7 0.62,1.08 0.19,0.42 0.29,0.87 0.46,1.29 0.03,0.07 0.14,0.07 0.14,-0.02 -0.01,-0.43 -0.16,-0.86 -0.33,-1.25 -0.19,-0.44 -0.43,-0.86 -0.71,-1.25 -0.46,-0.63 -1.04,-1.14 -1.69,-1.56 0.46,-0.19 0.92,-0.39 1.38,-0.58 0.01,0.04 0.03,0.08 0.07,0.11 0.39,0.26 0.76,0.56 1.06,0.92 0.15,0.17 0.28,0.36 0.4,0.56 0.06,0.1 0.11,0.2 0.17,0.3 0.06,0.1 0.1,0.23 0.19,0.31 0.1,0.08 0.23,0.02 0.24,-0.1 0.02,-0.12 -0.05,-0.24 -0.09,-0.35 -0.05,-0.12 -0.11,-0.24 -0.18,-0.36 -0.13,-0.22 -0.28,-0.43 -0.44,-0.62 -0.31,-0.37 -0.69,-0.67 -1.11,-0.89 1.03,-0.43 2.05,-0.86 3.08,-1.29 0.19,0.04 0.38,0.08 0.55,0.15 0.12,0.05 0.24,0.11 0.36,0.18 0.06,0.03 0.12,0.06 0.18,0.09 0.06,0.03 0.13,0.07 0.19,0.09 0.07,0.02 0.14,-0.07 0.1,-0.13 -0.04,-0.06 -0.09,-0.11 -0.14,-0.15 -0.06,-0.05 -0.12,-0.11 -0.19,-0.14 -0.13,-0.08 -0.27,-0.14 -0.41,-0.19 -0.07,-0.03 -0.15,-0.03 -0.23,-0.05 0.64,-0.27 1.28,-0.54 1.92,-0.81 0.21,0.07 0.41,0.16 0.59,0.29 0.14,0.1 0.27,0.22 0.4,0.34 0.06,0.06 0.13,0.12 0.19,0.19 0.06,0.07 0.12,0.14 0.18,0.21 0.06,0.06 0.17,0 0.15,-0.09 -0.05,-0.18 -0.17,-0.37 -0.3,-0.52 -0.13,-0.15 -0.28,-0.27 -0.45,-0.38 -0.12,-0.08 -0.25,-0.14 -0.38,-0.2 0.16,-0.07 0.32,-0.14 0.48,-0.2 0.01,0.01 0.01,0.03 0.02,0.04 0.35,0.28 0.72,0.53 1.07,0.83 0.17,0.14 0.33,0.28 0.49,0.44 0.08,0.08 0.17,0.16 0.26,0.24 0.07,0.07 0.16,0.15 0.25,0.2 0.04,0.03 0.11,-0.02 0.09,-0.07 -0.03,-0.1 -0.09,-0.2 -0.15,-0.28 -0.07,-0.09 -0.13,-0.19 -0.21,-0.28 -0.15,-0.18 -0.31,-0.35 -0.48,-0.51 -0.3,-0.28 -0.65,-0.55 -1.01,-0.75 0.67,-0.28 1.34,-0.57 2,-0.85 0.2,0.16 0.39,0.31 0.59,0.47 0.16,0.12 0.31,0.24 0.47,0.36 0.16,0.12 0.32,0.22 0.49,0.32 0.1,0.06 0.21,-0.08 0.12,-0.16 -0.14,-0.13 -0.28,-0.27 -0.44,-0.39 -0.16,-0.12 -0.31,-0.24 -0.47,-0.36 -0.16,-0.12 -0.32,-0.24 -0.49,-0.36 0.73,-0.31 1.46,-0.62 2.18,-0.93 0.06,0.07 0.11,0.14 0.17,0.2 0.1,0.12 0.21,0.24 0.32,0.35 0.11,0.11 0.23,0.26 0.37,0.31 0.09,0.03 0.19,-0.07 0.16,-0.16 -0.03,-0.09 -0.08,-0.15 -0.15,-0.22 -0.05,-0.06 -0.1,-0.12 -0.15,-0.17 -0.11,-0.11 -0.22,-0.22 -0.33,-0.34 -0.03,-0.03 -0.07,-0.06 -0.1,-0.1 0.37,-0.16 0.73,-0.31 1.1,-0.47 0.2,0.14 0.4,0.29 0.61,0.42 0.13,0.09 0.27,0.17 0.4,0.25 0.07,0.04 0.15,0.08 0.22,0.12 0.08,0.04 0.15,0.08 0.23,0.1 0.08,0.02 0.19,-0.08 0.12,-0.16 -0.05,-0.07 -0.12,-0.12 -0.19,-0.17 -0.06,-0.05 -0.12,-0.1 -0.19,-0.14 -0.14,-0.09 -0.28,-0.18 -0.42,-0.27 -0.16,-0.1 -0.32,-0.18 -0.48,-0.27 0.62,-0.26 1.23,-0.52 1.85,-0.78 -0.01,0.04 -0.01,0.09 0.03,0.12 0.2,0.16 0.39,0.32 0.59,0.48 0.1,0.08 0.2,0.16 0.3,0.24 0.1,0.08 0.2,0.18 0.33,0.22 0.1,0.03 0.18,-0.08 0.13,-0.17 -0.06,-0.11 -0.18,-0.18 -0.28,-0.26 -0.1,-0.08 -0.19,-0.15 -0.29,-0.23 -0.2,-0.15 -0.39,-0.31 -0.59,-0.46 -0.01,-0.01 -0.02,-0.01 -0.03,-0.01 0.58,-0.25 1.17,-0.49 1.75,-0.74 0.67,-0.29 1.34,-0.58 2.01,-0.86 0.2,0.24 0.4,0.47 0.6,0.7 0.27,0.31 0.52,0.61 0.83,0.88 0.1,0.08 0.27,-0.03 0.19,-0.15 -0.23,-0.34 -0.51,-0.63 -0.79,-0.94 -0.19,-0.21 -0.38,-0.41 -0.57,-0.61 0.43,-0.18 0.85,-0.37 1.28,-0.55 0.54,0.44 1.03,0.92 1.51,1.42 0.27,0.28 0.52,0.57 0.75,0.88 0.22,0.29 0.42,0.61 0.65,0.89 0.03,0.04 0.1,0 0.08,-0.05 -0.28,-0.69 -0.79,-1.33 -1.26,-1.9 -0.42,-0.51 -0.92,-0.96 -1.44,-1.37 0.5,-0.22 1,-0.43 1.51,-0.65 0.17,0.1 0.33,0.21 0.5,0.31 0.12,0.07 0.24,0.14 0.36,0.21 0.13,0.07 0.26,0.17 0.4,0.19 0.12,0.02 0.2,-0.11 0.12,-0.2 -0.09,-0.11 -0.24,-0.18 -0.36,-0.25 -0.12,-0.08 -0.25,-0.14 -0.37,-0.21 -0.11,-0.06 -0.22,-0.12 -0.33,-0.18 0.57,-0.24 1.13,-0.49 1.7,-0.73 0.22,0.09 0.44,0.18 0.65,0.3 0.33,0.18 0.62,0.41 0.89,0.67 0.26,0.26 0.48,0.54 0.67,0.86 0.1,0.16 0.18,0.33 0.26,0.5 0.07,0.18 0.1,0.36 0.19,0.53 0.05,0.11 0.21,0.05 0.21,-0.06 0,-0.2 -0.07,-0.39 -0.13,-0.57 -0.06,-0.19 -0.14,-0.37 -0.23,-0.55 -0.18,-0.36 -0.43,-0.69 -0.71,-0.98 -0.28,-0.29 -0.61,-0.54 -0.96,-0.73 -0.12,-0.06 -0.25,-0.12 -0.38,-0.17 0.53,-0.23 1.06,-0.46 1.59,-0.68 0.15,0.12 0.31,0.25 0.46,0.36 0.19,0.15 0.39,0.31 0.63,0.38 0.07,0.02 0.15,-0.07 0.1,-0.14 -0.14,-0.2 -0.35,-0.34 -0.55,-0.48 -0.12,-0.08 -0.24,-0.16 -0.36,-0.25 0.38,-0.17 0.77,-0.33 1.15,-0.49 0.2,0.19 0.4,0.38 0.6,0.58 0.12,0.12 0.25,0.23 0.38,0.35 0.12,0.11 0.27,0.26 0.43,0.31 0.07,0.02 0.15,-0.05 0.12,-0.12 -0.06,-0.16 -0.21,-0.29 -0.34,-0.41 -0.13,-0.12 -0.25,-0.23 -0.38,-0.35 -0.18,-0.16 -0.36,-0.32 -0.54,-0.48 1.17,-0.51 2.35,-1.01 3.52,-1.51 0.17,0.1 0.34,0.19 0.51,0.3 0.24,0.16 0.46,0.36 0.7,0.51 0.23,0.15 0.44,0.36 0.64,0.55 0.22,0.21 0.36,0.46 0.55,0.7 0.04,0.05 0.11,-0.02 0.08,-0.07 -0.12,-0.27 -0.32,-0.5 -0.48,-0.75 -0.08,-0.12 -0.17,-0.25 -0.26,-0.37 -0.1,-0.11 -0.21,-0.22 -0.3,-0.33 -0.18,-0.23 -0.45,-0.41 -0.69,-0.56 -0.1,-0.07 -0.21,-0.11 -0.31,-0.17 0.46,-0.2 0.92,-0.4 1.38,-0.6 0.18,0.18 0.36,0.36 0.55,0.53 0.12,0.11 0.25,0.23 0.37,0.34 0.07,0.06 0.13,0.11 0.2,0.17 0.07,0.06 0.14,0.12 0.24,0.12 0.07,0 0.14,-0.06 0.14,-0.13 -0.01,-0.1 -0.07,-0.16 -0.14,-0.23 -0.06,-0.06 -0.12,-0.12 -0.19,-0.18 -0.12,-0.11 -0.25,-0.22 -0.38,-0.33 -0.16,-0.14 -0.33,-0.27 -0.5,-0.41 0.42,-0.18 0.84,-0.36 1.25,-0.54 0.14,0.14 0.29,0.27 0.43,0.41 0.13,0.12 0.25,0.24 0.38,0.36 0.13,0.11 0.26,0.25 0.41,0.32 0.11,0.05 0.24,-0.06 0.17,-0.17 -0.08,-0.15 -0.23,-0.27 -0.35,-0.38 -0.12,-0.12 -0.26,-0.23 -0.39,-0.35 -0.12,-0.1 -0.23,-0.21 -0.35,-0.31 0.41,-0.18 0.82,-0.36 1.23,-0.53 0.23,0.18 0.46,0.35 0.69,0.53 0.13,0.09 0.26,0.2 0.39,0.28 0.07,0.04 0.15,0.08 0.22,0.12 0.07,0.04 0.14,0.09 0.23,0.11 0.09,0.03 0.17,-0.08 0.12,-0.16 -0.04,-0.07 -0.1,-0.12 -0.16,-0.17 -0.06,-0.06 -0.12,-0.12 -0.18,-0.18 -0.12,-0.12 -0.27,-0.22 -0.4,-0.32 -0.17,-0.13 -0.35,-0.25 -0.53,-0.38 0.14,-0.06 0.27,-0.12 0.41,-0.18 0.07,0.08 0.13,0.15 0.2,0.23 0.24,0.29 0.46,0.6 0.65,0.92 0.18,0.31 0.36,0.65 0.49,0.96 0.06,0.16 0.12,0.32 0.17,0.48 0,0.02 -0.01,0.03 -0.01,0.05 0.03,0.06 0.05,0.13 0.08,0.19 0.04,0.17 0.09,0.35 0.19,0.49 0.01,0.02 0.03,0.02 0.04,0.04 0.02,0.04 0.03,0.09 0.07,0.13 0.02,0.02 0.06,0.02 0.08,0.01 0.1,0.07 0.22,0.12 0.37,0.1 0,0 0.01,0 0.01,0 0.08,0.22 0.3,0.41 0.56,0.32 0.03,-0.01 0.07,-0.03 0.1,-0.04 0.14,0.14 0.28,0.29 0.42,0.43 0.13,0.13 0.26,0.27 0.39,0.4 0.06,0.06 0.13,0.12 0.19,0.17 0.07,0.06 0.13,0.13 0.22,0.16 0.07,0.02 0.14,-0.05 0.12,-0.12 -0.03,-0.09 -0.1,-0.15 -0.16,-0.22 -0.06,-0.07 -0.11,-0.13 -0.17,-0.19 -0.13,-0.13 -0.26,-0.26 -0.39,-0.39 -0.11,-0.11 -0.23,-0.23 -0.34,-0.34 0.51,-0.18 1,-0.37 1.5,-0.56 0.05,0.17 0.13,0.33 0.25,0.46 0.07,0.08 0.14,0.14 0.23,0.2 0.09,0.06 0.18,0.11 0.29,0.12 0.07,0 0.1,-0.08 0.05,-0.13 -0.06,-0.06 -0.14,-0.1 -0.2,-0.16 -0.07,-0.06 -0.13,-0.13 -0.19,-0.2 -0.09,-0.11 -0.15,-0.24 -0.19,-0.38 0.2,-0.08 0.4,-0.15 0.61,-0.22 0.18,-0.07 0.36,-0.14 0.54,-0.21 0.12,0.15 0.24,0.31 0.36,0.46 0.07,0.1 0.15,0.19 0.22,0.29 0.08,0.1 0.15,0.21 0.25,0.28 0.07,0.05 0.18,-0.03 0.15,-0.12 -0.04,-0.11 -0.12,-0.21 -0.19,-0.3 -0.07,-0.09 -0.15,-0.19 -0.22,-0.28 -0.11,-0.14 -0.22,-0.28 -0.33,-0.42 0.18,-0.07 0.36,-0.14 0.54,-0.21 0.3,-0.12 0.68,-0.21 1,-0.35 l 0.16,0.27 c 0.07,0.12 0.14,0.24 0.21,0.36 0.07,0.12 0.14,0.26 0.28,0.31 0.06,0.02 0.13,-0.02 0.14,-0.08 0.03,-0.15 -0.07,-0.27 -0.14,-0.39 -0.07,-0.12 -0.14,-0.24 -0.22,-0.36 -0.06,-0.09 -0.11,-0.18 -0.17,-0.27 0.05,-0.04 0.11,-0.07 0.15,-0.11 0.19,-0.19 0.19,-0.46 0.08,-0.68 0,-0.1 -0.01,-0.19 -0.05,-0.28 -0.04,-0.18 -0.06,-0.36 -0.12,-0.54 -0.06,-0.19 -0.12,-0.38 -0.18,-0.57 -0.04,-0.12 -0.13,-0.2 -0.24,-0.26 -0.37,-0.79 -0.81,-1.55 -1.32,-2.27 0.38,-0.18 0.76,-0.37 1.14,-0.56 0.04,0.06 0.07,0.12 0.11,0.18 0.23,0.37 0.45,0.74 0.67,1.11 0.44,0.75 0.86,1.5 1.28,2.27 0.8,1.47 1.56,2.96 2.26,4.48 1.41,3.06 2.6,6.23 3.56,9.47 0.46,1.54 0.87,3.11 1.2,4.68 -0.2,0.08 -0.4,0.17 -0.6,0.25 0,0 0,-0.01 0,-0.01 -0.03,-0.1 -0.05,-0.21 -0.05,-0.32 -0.02,-0.22 0.01,-0.45 -0.01,-0.67 -0.04,-0.44 -0.11,-0.89 -0.17,-1.33 -0.02,-0.17 -0.32,-0.13 -0.3,0.04 0.03,0.45 0.04,0.89 0.09,1.34 0.03,0.23 0.1,0.44 0.12,0.67 0.01,0.14 0.01,0.28 0,0.42 -0.11,0.05 -0.22,0.09 -0.33,0.14 -0.01,-0.12 -0.02,-0.24 -0.03,-0.36 -0.04,-0.48 -0.1,-0.97 -0.16,-1.45 -0.13,-0.97 -0.33,-1.94 -0.57,-2.89 -0.49,-1.9 -1.18,-3.75 -2.04,-5.51 -0.08,-0.16 -0.32,-0.02 -0.24,0.14 0.84,1.74 1.49,3.58 1.94,5.46 0.22,0.92 0.4,1.86 0.53,2.8 0.07,0.48 0.12,0.96 0.16,1.43 0.01,0.17 0.02,0.35 0.03,0.52 -0.44,0.19 -0.87,0.37 -1.31,0.56 0,-0.72 -0.07,-1.45 -0.16,-2.15 -0.11,-0.87 -0.28,-1.72 -0.5,-2.57 -0.45,-1.71 -1.12,-3.34 -1.98,-4.89 -0.07,-0.12 -0.26,-0.01 -0.19,0.11 0.83,1.52 1.45,3.17 1.88,4.85 0.22,0.85 0.38,1.71 0.49,2.58 0.09,0.73 0.11,1.46 0.15,2.19 -0.24,0.11 -0.49,0.21 -0.74,0.31 -0.01,-0.12 -0.02,-0.25 -0.03,-0.37 -0.09,-0.74 -0.22,-1.47 -0.4,-2.2 -0.37,-1.46 -0.93,-2.87 -1.67,-4.19 -0.07,-0.13 -0.27,-0.01 -0.2,0.12 0.72,1.3 1.27,2.69 1.62,4.14 0.18,0.73 0.31,1.47 0.39,2.22 0.01,0.13 0.02,0.26 0.03,0.39 -0.26,0.11 -0.51,0.22 -0.77,0.33 -0.09,-0.44 -0.19,-0.89 -0.3,-1.33 -0.25,-0.98 -0.54,-1.95 -0.88,-2.9 -0.04,-0.1 -0.19,-0.06 -0.16,0.04 0.3,0.95 0.55,1.91 0.76,2.88 0.1,0.47 0.19,0.94 0.27,1.42 0,0.01 0,0.01 0,0.02 -0.37,0.16 -0.75,0.32 -1.12,0.49 -0.02,-0.17 -0.03,-0.34 -0.05,-0.51 -0.08,-0.73 -0.19,-1.46 -0.34,-2.18 -0.29,-1.48 -0.73,-2.93 -1.29,-4.33 -0.06,-0.15 -0.31,-0.09 -0.25,0.07 0.53,1.38 0.93,2.8 1.22,4.25 0.14,0.73 0.26,1.46 0.34,2.19 0.02,0.21 0.04,0.43 0.06,0.65 -0.43,0.19 -0.86,0.37 -1.29,0.56 -0.01,-0.16 -0.02,-0.32 -0.03,-0.47 -0.03,-0.4 -0.07,-0.8 -0.12,-1.2 -0.09,-0.78 -0.22,-1.57 -0.39,-2.34 -0.33,-1.54 -0.8,-3.06 -1.43,-4.5 -0.36,-0.84 -0.78,-1.65 -1.22,-2.44 -0.08,-0.14 -0.29,-0.01 -0.21,0.13 1.46,2.74 2.41,5.83 2.82,8.91 0.06,0.44 0.1,0.87 0.14,1.31 0.02,0.25 0.03,0.51 0.05,0.78 -0.38,0.16 -0.75,0.33 -1.13,0.49 0.02,-0.05 -0.02,-0.04 -0.05,-0.02 z m 13.52,-3.69 c -0.06,0.03 -0.12,0.07 -0.18,0.1 -0.06,-0.58 -0.15,-1.16 -0.24,-1.72 -0.14,-0.89 -0.33,-1.78 -0.54,-2.66 -0.41,-1.75 -0.95,-3.46 -1.63,-5.13 -0.05,-0.13 -0.26,-0.07 -0.21,0.06 0.63,1.66 1.17,3.36 1.57,5.09 0.2,0.87 0.36,1.74 0.5,2.62 0.07,0.46 0.14,0.92 0.19,1.38 0.02,0.17 0.04,0.34 0.05,0.52 -0.17,0.09 -0.34,0.18 -0.51,0.26 -0.01,-0.06 -0.02,-0.12 -0.03,-0.17 -0.06,-0.41 -0.13,-0.82 -0.2,-1.22 -0.16,-0.85 -0.34,-1.68 -0.57,-2.51 -0.44,-1.64 -1.01,-3.24 -1.72,-4.78 -0.04,-0.09 -0.21,-0.03 -0.17,0.07 0.65,1.55 1.2,3.15 1.63,4.78 0.21,0.8 0.39,1.61 0.54,2.42 0.07,0.41 0.14,0.82 0.2,1.23 0.02,0.11 0.02,0.22 0.03,0.33 -0.08,0.04 -0.15,0.08 -0.24,0.11 -0.39,0.15 -0.81,0.24 -1.21,0.12 0.12,-0.05 0.24,-0.1 0.36,-0.15 -0.01,-0.02 -0.02,-0.05 -0.02,-0.07 0.15,-0.16 0.23,-0.37 0.17,-0.64 -0.82,-3.35 -1.7,-6.65 -2.9,-9.89 -1.18,-3.2 -2.58,-6.31 -4.19,-9.32 -0.45,-0.85 -0.93,-1.68 -1.42,-2.5 -0.25,-0.43 -0.51,-0.85 -0.77,-1.27 -0.25,-0.4 -0.46,-0.88 -0.89,-1.1 -0.15,-0.08 -0.33,-0.07 -0.48,-0.02 -0.03,-0.03 -0.06,-0.06 -0.1,-0.09 0.02,-0.02 0.02,-0.06 0.04,-0.08 0.14,-0.19 0.36,-0.33 0.6,-0.44 0.56,0.5 1.08,1.06 1.5,1.69 0.21,0.32 0.41,0.65 0.58,1 0.17,0.35 0.29,0.75 0.53,1.05 0.07,0.08 0.21,0.07 0.21,-0.06 0.01,-0.38 -0.18,-0.76 -0.34,-1.1 -0.18,-0.38 -0.39,-0.75 -0.62,-1.1 -0.4,-0.61 -0.88,-1.17 -1.41,-1.67 0.25,-0.08 0.51,-0.15 0.76,-0.23 0.2,0.34 0.44,0.66 0.68,0.97 0.12,0.16 0.25,0.32 0.37,0.48 0.06,0.08 0.14,0.15 0.21,0.23 0.07,0.08 0.14,0.16 0.22,0.22 0.07,0.05 0.21,0.01 0.17,-0.1 -0.04,-0.09 -0.09,-0.17 -0.14,-0.26 -0.06,-0.09 -0.1,-0.18 -0.16,-0.27 -0.12,-0.17 -0.25,-0.34 -0.38,-0.5 -0.22,-0.3 -0.46,-0.59 -0.71,-0.86 0.21,-0.06 0.41,-0.14 0.61,-0.22 0.19,0.33 0.38,0.67 0.58,1 0.13,0.23 0.27,0.45 0.4,0.68 0.13,0.22 0.29,0.45 0.46,0.64 0.07,0.07 0.21,0 0.17,-0.1 -0.08,-0.23 -0.21,-0.47 -0.34,-0.68 -0.14,-0.24 -0.28,-0.47 -0.43,-0.7 -0.2,-0.32 -0.4,-0.64 -0.61,-0.96 0.22,-0.11 0.42,-0.24 0.62,-0.4 0.84,1.53 1.78,3 2.63,4.52 0.92,1.64 1.77,3.31 2.57,5.01 1.6,3.43 2.92,6.98 3.98,10.62 0.5,1.74 0.87,3.5 1.28,5.25 -0.15,0.04 -0.29,0.1 -0.44,0.17 -0.03,-0.17 -0.06,-0.33 -0.09,-0.48 -0.07,-0.46 -0.15,-0.91 -0.24,-1.36 -0.17,-0.89 -0.36,-1.78 -0.58,-2.66 -0.44,-1.78 -0.98,-3.53 -1.63,-5.24 -0.37,-0.96 -0.77,-1.91 -1.22,-2.84 -0.06,-0.12 -0.23,-0.01 -0.18,0.11 1.41,3.34 2.55,6.77 3.22,10.34 0.09,0.48 0.18,0.97 0.25,1.46 0.04,0.25 0.08,0.5 0.11,0.76 0,0.03 0.01,0.06 0.01,0.08 -0.06,0.08 -0.16,0.13 -0.26,0.18 z m 4.1,-0.34 c -0.02,0.02 -0.06,0.05 -0.07,0.05 -0.05,0.04 -0.11,0.07 -0.16,0.11 -0.02,-0.5 -0.09,-1.01 -0.17,-1.49 -0.12,-0.76 -0.24,-1.51 -0.41,-2.26 -0.34,-1.49 -0.83,-2.94 -1.48,-4.32 -0.04,-0.08 -0.19,-0.02 -0.15,0.06 0.58,1.4 1.06,2.84 1.39,4.32 0.17,0.75 0.31,1.51 0.37,2.28 0.04,0.54 0.07,1.08 0.12,1.63 -0.01,0.01 -0.02,0.02 -0.04,0.03 -0.08,0.05 -0.17,0.1 -0.26,0.14 -0.03,0.02 -0.07,0.03 -0.1,0.05 0,0 -0.08,0.04 -0.1,0.04 -0.09,0.03 -0.18,0.06 -0.28,0.09 0,0 -0.01,0 -0.02,0 0.01,-0.07 0.02,-0.15 0.01,-0.23 -0.29,-1.9 -0.85,-3.8 -1.38,-5.65 -0.53,-1.87 -1.13,-3.71 -1.81,-5.53 -1.34,-3.61 -2.94,-7.13 -4.8,-10.5 -1.05,-1.9 -2.14,-3.82 -3.52,-5.49 -0.01,-0.02 -0.03,-0.02 -0.04,-0.04 0.24,-0.12 0.48,-0.22 0.73,-0.29 0.18,0.25 0.37,0.5 0.55,0.75 0.15,0.2 0.29,0.39 0.45,0.58 0.08,0.1 0.16,0.18 0.24,0.28 0.08,0.09 0.15,0.19 0.25,0.27 0.1,0.08 0.23,-0.02 0.18,-0.14 -0.05,-0.11 -0.13,-0.21 -0.19,-0.31 -0.07,-0.1 -0.13,-0.21 -0.21,-0.31 -0.15,-0.2 -0.3,-0.39 -0.45,-0.59 -0.16,-0.21 -0.33,-0.42 -0.5,-0.62 0.21,-0.05 0.44,-0.08 0.66,-0.12 0.31,0.55 0.7,1.07 1,1.56 0.57,0.91 1.12,1.82 1.66,2.74 1.07,1.82 2.06,3.68 2.97,5.58 1.8,3.74 3.29,7.62 4.47,11.6 0.53,1.8 1,3.64 1.43,5.48 -0.09,0.06 -0.18,0.12 -0.27,0.19 0.03,-0.02 -0.04,0.03 -0.07,0.06 z m 8.39,-3.08 c -0.07,0.04 -0.14,0.07 -0.2,0.11 0,-0.16 0,-0.33 0.01,-0.49 0.01,-0.54 0.01,-1.07 0.02,-1.61 0,-0.21 -0.33,-0.21 -0.33,0 -0.01,0.53 -0.02,1.05 -0.03,1.58 -0.01,0.24 -0.01,0.47 -0.01,0.71 -0.29,0.15 -0.57,0.3 -0.86,0.45 0.14,-1.38 0.08,-2.79 -0.11,-4.15 -0.22,-1.58 -0.63,-3.12 -1.26,-4.58 -0.04,-0.09 -0.2,-0.03 -0.17,0.07 0.53,1.45 0.94,2.96 1.16,4.49 0.11,0.78 0.17,1.56 0.19,2.35 0.01,0.66 -0.02,1.31 -0.07,1.96 -0.23,0.12 -0.46,0.25 -0.7,0.36 -0.11,0.05 -0.23,0.1 -0.34,0.16 0,-0.04 0,-0.08 0.01,-0.12 0.03,-0.41 0.04,-0.83 0.04,-1.25 0,-0.86 -0.1,-1.71 -0.22,-2.56 -0.12,-0.85 -0.28,-1.7 -0.54,-2.52 -0.13,-0.41 -0.22,-0.83 -0.32,-1.25 -0.11,-0.4 -0.32,-0.8 -0.49,-1.18 -0.05,-0.12 -0.25,-0.03 -0.21,0.09 0.15,0.38 0.25,0.8 0.42,1.17 0.18,0.39 0.33,0.76 0.43,1.17 0.2,0.84 0.38,1.69 0.49,2.55 0.1,0.82 0.11,1.66 0.11,2.49 0,0.42 -0.02,0.83 -0.05,1.25 -0.01,0.11 -0.03,0.23 -0.04,0.34 -0.24,0.11 -0.49,0.22 -0.73,0.32 0,-0.56 -0.01,-1.13 -0.04,-1.68 -0.04,-0.91 -0.13,-1.82 -0.26,-2.72 -0.26,-1.86 -0.7,-3.69 -1.31,-5.47 -0.34,-0.99 -0.73,-1.96 -1.18,-2.92 -0.07,-0.14 -0.27,-0.02 -0.21,0.12 1.54,3.36 2.45,7.01 2.66,10.71 0.03,0.52 0.05,1.04 0.05,1.55 0,0.17 0,0.35 -0.01,0.52 -0.36,0.15 -0.71,0.3 -1.07,0.44 0,-0.07 0,-0.14 0,-0.2 0.01,-0.34 0.01,-0.67 0.01,-1.01 -0.01,-0.66 -0.05,-1.32 -0.13,-1.97 -0.07,-0.63 -0.17,-1.27 -0.31,-1.89 -0.15,-0.66 -0.36,-1.3 -0.56,-1.94 -0.01,-0.04 -0.08,-0.02 -0.07,0.02 0.36,1.25 0.55,2.57 0.67,3.86 0.06,0.63 0.09,1.25 0.1,1.88 0,0.32 0,0.64 -0.01,0.97 -0.01,0.14 -0.02,0.29 -0.04,0.44 -0.15,0.06 -0.3,0.12 -0.45,0.18 -0.04,-0.92 -0.14,-1.85 -0.3,-2.76 -0.2,-1.13 -0.48,-2.24 -0.88,-3.32 -0.03,-0.08 -0.16,-0.05 -0.13,0.04 0.31,1.07 0.58,2.16 0.76,3.25 0.16,0.96 0.22,1.93 0.27,2.91 -0.08,0.03 -0.16,0.07 -0.24,0.1 -0.35,-1.8 -0.76,-3.58 -1.27,-5.35 -0.59,-2.06 -1.26,-4.09 -2.02,-6.09 -1.51,-3.97 -3.35,-7.83 -5.49,-11.5 -0.6,-1.03 -1.23,-2.04 -1.89,-3.04 -0.34,-0.51 -0.68,-1.02 -1.04,-1.51 -0.1,-0.14 -0.21,-0.28 -0.32,-0.43 0.01,-0.2 -0.06,-0.4 -0.18,-0.55 0.26,-0.11 0.51,-0.23 0.77,-0.37 -0.01,0.05 0,0.11 0.06,0.15 0.33,0.18 0.62,0.41 0.89,0.67 0.13,0.13 0.25,0.26 0.37,0.4 0.06,0.07 0.11,0.16 0.18,0.22 0.07,0.06 0.13,0.14 0.18,0.22 0.09,0.12 0.27,0.02 0.21,-0.12 -0.04,-0.08 -0.08,-0.17 -0.12,-0.25 -0.04,-0.1 -0.11,-0.18 -0.17,-0.27 -0.12,-0.16 -0.26,-0.31 -0.41,-0.45 -0.29,-0.27 -0.63,-0.5 -0.98,-0.68 0,0 0,0 -0.01,0 0.35,-0.19 0.7,-0.39 1.05,-0.56 0.52,-0.26 1.06,-0.49 1.6,-0.73 0.85,0.77 1.63,1.62 2.27,2.56 0.71,1.02 1.2,2.13 1.72,3.25 0.05,0.1 0.2,0.03 0.17,-0.07 -0.28,-1.21 -0.94,-2.37 -1.64,-3.38 -0.64,-0.93 -1.42,-1.75 -2.28,-2.47 0.22,-0.1 0.43,-0.2 0.65,-0.3 0.52,-0.22 1.05,-0.42 1.58,-0.62 0,0.03 0.01,0.05 0.03,0.07 0.34,0.38 0.79,0.68 1.17,1.01 0.4,0.35 0.78,0.72 1.15,1.11 0.35,0.38 0.69,0.77 1.01,1.18 0.16,0.21 0.32,0.42 0.48,0.64 0.15,0.21 0.28,0.46 0.46,0.64 0.07,0.07 0.2,0 0.17,-0.1 -0.07,-0.24 -0.24,-0.47 -0.38,-0.69 -0.15,-0.24 -0.31,-0.47 -0.47,-0.7 -0.31,-0.43 -0.65,-0.85 -1.01,-1.24 -0.37,-0.4 -0.77,-0.78 -1.18,-1.14 -0.37,-0.32 -0.78,-0.66 -1.23,-0.87 0.25,-0.09 0.5,-0.2 0.75,-0.29 0.42,-0.15 0.84,-0.28 1.25,-0.44 0.21,-0.08 0.44,-0.19 0.66,-0.32 0.23,0.2 0.47,0.4 0.69,0.6 -0.01,0.04 0,0.07 0.03,0.11 0.16,0.18 0.32,0.36 0.48,0.54 0.08,0.09 0.16,0.18 0.24,0.27 0.08,0.09 0.18,0.16 0.27,0.25 0.02,0.02 0.05,0.01 0.07,0 0.53,0.66 0.99,1.37 1.43,2.09 1.11,1.84 2.14,3.73 3.08,5.67 1.88,3.9 3.35,7.99 4.38,12.19 0.53,2.17 0.96,4.37 1.27,6.59 -0.05,0.01 -0.09,0.02 -0.14,0.03 -0.22,0.05 -0.36,0.18 -0.46,0.32 -0.09,0.02 -0.17,0.05 -0.26,0.08 0,-0.02 0,-0.05 0,-0.07 -0.02,-0.42 -0.04,-0.83 -0.07,-1.25 -0.01,-0.2 -0.32,-0.21 -0.32,0 l 0.03,1.25 c 0,0.07 0,0.14 0.01,0.21 -0.36,0.17 -0.69,0.35 -0.99,0.51 z m 3.7,-1.68 c -1.3,-8.54 -4.3,-16.91 -8.87,-24.24 -0.71,-1.13 -1.53,-2.48 -2.6,-3.43 0.17,-0.08 0.32,-0.16 0.47,-0.28 0.18,0.26 0.38,0.51 0.57,0.76 0.32,0.42 0.63,0.84 0.93,1.27 0.59,0.83 1.17,1.67 1.72,2.54 1.09,1.73 2.06,3.53 2.95,5.37 1.76,3.66 3.11,7.54 3.99,11.5 0.25,1.11 0.46,2.23 0.64,3.35 0.09,0.59 0.15,1.18 0.24,1.77 0.06,0.38 0.13,0.79 0.23,1.18 -0.1,0.07 -0.18,0.13 -0.27,0.21 z" + id="path336" /> + <path + class="st1" + d="m 344.47,303.81 c 0,0 0,0 0,0 0.03,0.03 0.07,0.04 0,0 z" + id="path338" /> + <path + class="st1" + d="m 345.39,303.73 c 0,-0.01 0.01,-0.02 0.02,-0.03 -0.01,0.01 -0.02,0.02 -0.02,0.03 -0.01,0.01 0,0.01 0,0 z" + id="path340" /> + <path + class="st1" + d="m 344.39,303.72 c 0.01,0.01 0.02,0.02 0.03,0.03 0,0 -0.01,-0.01 -0.03,-0.03 0,0 0,0 0,0 z" + id="path342" /> + <path + class="st1" + d="m 345.27,302.86 c 0,0 0,-0.01 0,0 0.04,0.05 0.04,0.02 0,0 z" + id="path344" /> + <polygon + class="st1" + points="" + id="polygon346" /> + <path + class="st1" + d="m 218.94,357.31 c -0.01,-0.01 -0.02,-0.03 -0.02,-0.04 0,-0.01 0.01,0.01 0.02,0.04 0,0 0,0 0,0 z" + id="path348" /> + <path + class="st1" + d="m 218.05,357.64 c 0,0 0.01,0.01 0.01,0.01 0,-0.01 -0.01,-0.02 -0.01,-0.02 0,0 0,0.01 0,0.01 z" + id="path350" /> + <path + class="st1" + d="m 218.84,357.83 c 0.01,-0.01 0.01,-0.01 0.01,-0.02 0,-0.01 0.01,-0.01 0.01,-0.02 -0.01,0.01 -0.02,0.02 -0.02,0.04 -0.01,0.01 -0.01,0 0,0 z" + id="path352" /> + <path + class="st1" + d="m 218.83,357.84 c -0.01,0.01 -0.02,0.02 -0.03,0.03 0,0 0,0 -0.01,0 0.01,0 0.01,-0.01 0.02,-0.01 0.01,-0.01 0.01,-0.01 0.02,-0.02 z" + id="path354" /> + <path + class="st1" + d="m 218.96,357.52 c 0,0 0,-0.01 0,0 -0.03,0.09 0,0.04 0,0 z" + id="path356" /> + <path + class="st1" + d="m 233.06,363.97 c 1.17,2.88 4.4,4.66 7.46,4.06 1.61,-0.32 3.04,-1.28 4.01,-2.6 0.99,-1.35 1.28,-2.93 1.1,-4.58 -0.35,-3.3 -2.98,-5.86 -6.3,-6.06 -1.84,-0.11 -3.61,0.57 -4.94,1.83 -0.63,0.6 -1.13,1.36 -1.49,2.15 -0.18,0.41 -0.26,0.75 -0.26,1.19 0,0.35 -0.04,0.68 -0.01,1.03 -0.08,1.02 0.05,2.04 0.43,2.98 z m 0.6,-4.3 c 0.04,-0.07 0.09,-0.15 0.12,-0.22 0.29,-0.6 0.67,-1.12 1.14,-1.61 0.91,-0.95 2.04,-1.58 3.36,-1.78 2.73,-0.4 5.55,1.2 6.35,3.89 0.83,2.79 -0.79,5.83 -3.5,6.84 -2.5,0.93 -5.42,-0.22 -6.84,-2.44 -0.9,-1.4 -1.05,-3.1 -0.63,-4.68 z" + id="path358" /> + <path + class="st1" + d="m 237.57,359.37 c -0.66,0.45 -1.07,1.19 -1.03,2 0.01,0.11 0.02,0.21 0.06,0.32 0.01,0.03 0.02,0.06 0.03,0.09 0.01,0.03 0.02,0.07 0.04,0.1 0.03,0.05 0.03,0.07 0.01,0.04 0.03,0.12 0.07,0.23 0.12,0.35 0.07,0.27 0.19,0.53 0.36,0.76 0.83,1.1 2.48,1.34 3.57,0.47 1.01,-0.81 1.19,-2.45 0.44,-3.49 -0.8,-1.11 -2.48,-1.41 -3.6,-0.64 z m 1.76,0.66 c 0.01,0 0.03,0 0.04,0.01 0.07,0.01 0.14,0.03 0.21,0.05 0.05,0.02 0.11,0.03 0.16,0.05 0,0 0,0 0,0 0,0 0,0 0,0 0.02,0.01 0.04,0.02 0.06,0.03 0.06,0.03 0.11,0.06 0.16,0.09 0.03,0.02 0.15,0.11 0.09,0.06 0.05,0.04 0.1,0.08 0.14,0.13 0.02,0.02 0.03,0.03 0.05,0.05 0.01,0.01 0.03,0.03 0.04,0.04 0.01,0.01 0.01,0.01 0.01,0.02 0.02,0.03 0.04,0.05 0.05,0.08 0.04,0.06 0.07,0.12 0.1,0.18 0.01,0.02 0.02,0.03 0.02,0.05 0,0.01 0.01,0.02 0.01,0.02 0.02,0.06 0.04,0.12 0.06,0.18 0.01,0.05 0.02,0.11 0.03,0.16 0,0 0,0 0,0.01 0,0.03 0.01,0.06 0.01,0.09 0.01,0.12 0,0.24 -0.01,0.36 0,0.01 0,0.02 0,0.03 0,0.02 -0.01,0.03 -0.01,0.05 -0.02,0.07 -0.03,0.14 -0.05,0.21 -0.02,0.05 -0.03,0.11 -0.05,0.16 0,0 0,0 0,0 0,0 0,0 0,0.01 -0.01,0.02 -0.02,0.04 -0.03,0.06 -0.03,0.06 -0.06,0.11 -0.09,0.16 -0.02,0.03 -0.03,0.05 -0.05,0.08 0,0 0,0 -0.01,0.01 -0.04,0.05 -0.08,0.1 -0.13,0.14 -0.02,0.02 -0.03,0.03 -0.05,0.05 -0.01,0.01 -0.03,0.03 -0.04,0.04 -0.01,0.01 -0.01,0.01 -0.01,0.01 -0.03,0.02 -0.05,0.04 -0.08,0.05 -0.06,0.04 -0.12,0.08 -0.18,0.11 -0.02,0.01 -0.09,0.04 -0.1,0.04 -0.05,0.02 -0.1,0.04 -0.15,0.05 -0.05,0.02 -0.11,0.03 -0.16,0.04 -0.02,0 -0.05,0.01 -0.07,0.01 -0.01,0 -0.01,0 -0.02,0 0,0 -0.01,0 -0.02,0 -0.12,0.01 -0.24,0.01 -0.36,0 -0.03,0 -0.06,0 -0.09,-0.01 -0.07,-0.01 -0.14,-0.02 -0.21,-0.04 -0.24,-0.06 -0.36,-0.11 -0.58,-0.25 -0.04,-0.03 -0.19,-0.16 -0.22,-0.2 -0.08,-0.1 -0.14,-0.21 -0.2,-0.32 -0.06,-0.14 -0.11,-0.33 -0.13,-0.51 0.07,-0.23 0.12,-0.46 0.19,-0.68 0,-0.01 0.01,-0.02 0.01,-0.03 0.01,-0.01 0.01,-0.02 0.02,-0.04 0.03,-0.05 0.05,-0.1 0.08,-0.15 0.03,-0.06 0.06,-0.11 0.1,-0.17 0.01,-0.02 0.03,-0.04 0.04,-0.06 0,-0.01 0,0 0,-0.01 0,0 0,0 0.01,-0.01 0.04,-0.05 0.09,-0.1 0.13,-0.14 0.01,-0.01 0.07,-0.06 0.09,-0.08 0.02,-0.01 0.08,-0.05 0.1,-0.06 0.06,-0.04 0.12,-0.07 0.19,-0.1 0.01,0 0.02,-0.01 0.03,-0.01 0.01,0 0.02,-0.01 0.03,-0.01 0.06,-0.02 0.12,-0.04 0.18,-0.06 0.05,-0.01 0.11,-0.02 0.16,-0.04 0.01,0 0.02,0 0.03,0 0.01,0 0.05,-0.01 0.07,-0.01 0.12,0 0.24,0 0.36,0 0.01,0.02 0.02,0.02 0.04,0.02 z" + id="path360" /> + <path + class="st1" + d="m 209.95,371.51 c -0.61,-0.12 -1.27,-0.01 -1.78,0.36 -0.15,0.11 -0.28,0.23 -0.39,0.36 -0.33,0.25 -0.55,0.66 -0.69,1.05 -0.18,0.52 -0.19,1.14 0.02,1.66 0.46,1.14 1.68,1.82 2.89,1.58 1.15,-0.22 2.05,-1.39 2.02,-2.55 -0.04,-1.16 -0.94,-2.23 -2.07,-2.46 z m 0.83,2.62 c 0,0.01 0,0.02 0,0.03 -0.01,0.05 -0.02,0.09 -0.03,0.14 -0.01,0.05 -0.03,0.1 -0.04,0.16 0,0 -0.03,0.06 -0.03,0.09 -0.01,0.03 -0.03,0.07 -0.03,0.07 -0.03,0.06 -0.07,0.12 -0.11,0.19 -0.01,0.01 -0.01,0.01 -0.01,0.02 0,0 0,0 -0.01,0.01 -0.03,0.04 -0.06,0.07 -0.09,0.1 -0.04,0.04 -0.08,0.08 -0.12,0.12 0,0 -0.03,0.03 -0.06,0.05 -0.03,0.02 -0.07,0.05 -0.07,0.05 -0.05,0.03 -0.09,0.06 -0.14,0.08 -0.04,0.02 -0.07,0.04 -0.11,0.06 -0.01,0 -0.06,0.02 -0.09,0.03 -0.05,0.02 -0.11,0.03 -0.16,0.04 -0.01,0 -0.02,0.01 -0.03,0.01 -0.01,0 -0.01,0 -0.02,0 -0.09,0 -0.18,0 -0.27,0 -0.01,0 -0.02,0 -0.03,0 -0.01,0 -0.01,0 -0.03,-0.01 -0.03,-0.01 -0.07,-0.01 -0.1,-0.02 -0.05,-0.01 -0.1,-0.03 -0.15,-0.04 -0.03,-0.01 -0.05,-0.02 -0.08,-0.03 -0.01,0 -0.01,0 -0.02,-0.01 -0.08,-0.04 -0.16,-0.08 -0.23,-0.13 -0.01,-0.01 -0.07,-0.05 -0.08,-0.06 -0.02,-0.02 -0.05,-0.04 -0.07,-0.06 -0.06,-0.06 -0.12,-0.12 -0.18,-0.18 -0.02,-0.02 -0.05,-0.07 -0.06,-0.07 -0.03,-0.04 -0.06,-0.09 -0.08,-0.14 -0.01,-0.01 -0.03,-0.07 -0.04,-0.09 -0.02,-0.05 -0.03,-0.09 -0.05,-0.14 -0.01,-0.04 -0.02,-0.09 -0.03,-0.13 0,-0.01 0,-0.01 0,-0.02 0,-0.03 -0.01,-0.06 -0.01,-0.09 0,-0.03 0,-0.05 0,-0.08 0.28,-0.06 0.45,-0.28 0.47,-0.56 0,-0.01 0,-0.01 0,-0.01 0,-0.01 0,-0.01 0.01,-0.01 0.01,-0.03 0.04,-0.14 0.01,-0.07 0.01,-0.04 0.03,-0.09 0.05,-0.13 0,-0.01 0.01,-0.01 0.02,-0.03 0.01,-0.01 0.02,-0.04 0.04,-0.07 0.01,-0.02 0.03,-0.03 0.04,-0.05 0.04,-0.04 0.09,-0.11 0.15,-0.16 0.02,-0.02 0.04,-0.03 0.07,-0.05 0.03,-0.02 0.05,-0.03 0.08,-0.05 0.01,-0.01 0.04,-0.03 0.07,-0.04 0.03,-0.01 0.05,-0.02 0.08,-0.03 0.08,-0.03 0.15,-0.04 0.23,-0.06 0,0 0,0 0,0 0.01,0 0.01,0 0.02,0 0.05,0 0.09,0 0.14,0 0.02,0 0.09,0.01 0.1,0.01 0.03,0.01 0.06,0.01 0.1,0.02 0.03,0.01 0.07,0.02 0.1,0.03 0.01,0 0.02,0 0.03,0.01 0.01,0 0.01,0.01 0.02,0.01 0.09,0.04 0.17,0.09 0.25,0.14 0.01,0.01 0.03,0.02 0.05,0.03 0.04,0.04 0.09,0.08 0.13,0.12 0.03,0.03 0.06,0.06 0.09,0.09 0.01,0.01 0.02,0.03 0.03,0.04 0.06,0.08 0.11,0.16 0.15,0.24 0.02,0.03 0.03,0.06 0.05,0.09 -0.07,-0.13 0,0.01 0.01,0.04 0.03,0.08 0.05,0.17 0.06,0.26 0,0.03 0.01,0.08 0.01,0.09 0,0.04 0,0.09 0,0.15 z" + id="path362" /> + <path + class="st1" + d="m 268.78,349.16 c 0.02,0.06 0.1,0.04 0.11,-0.01 0.03,-0.22 -0.01,-0.44 -0.03,-0.65 -0.02,-0.22 -0.04,-0.43 -0.06,-0.65 -0.01,-0.08 -0.14,-0.09 -0.13,0 0.01,0.22 0.03,0.44 0.04,0.66 0.01,0.22 0,0.44 0.07,0.65 z" + id="path364" /> + <path + class="st1" + d="m 268.73,350.99 -0.01,0.88 c 0,0.15 0,0.29 0,0.44 0,0.14 0,0.29 0.03,0.43 0.01,0.06 0.11,0.06 0.12,0 0.03,-0.14 0.03,-0.29 0.03,-0.43 0,-0.15 0,-0.29 0,-0.44 l -0.01,-0.88 c 0,-0.1 -0.16,-0.1 -0.16,0 z" + id="path366" /> + <path + class="st1" + d="m 270.28,351.1 c 0.03,-0.65 -0.05,-1.3 -0.09,-1.95 -0.01,-0.12 -0.19,-0.12 -0.19,0 0.03,0.66 0.02,1.32 0.13,1.97 0.01,0.09 0.14,0.07 0.15,-0.02 z" + id="path368" /> + <path + class="st1" + d="m 271.55,352.4 c 0.02,-0.31 0,-0.61 0,-0.92 v -0.92 c 0,-0.04 -0.07,-0.04 -0.07,0 v 0.92 c 0,0.31 -0.01,0.62 0,0.92 0.01,0.04 0.07,0.04 0.07,0 z" + id="path370" /> + <path + class="st1" + d="m 272.9,350.37 c 0.07,-0.48 0.06,-0.97 0.05,-1.46 -0.01,-0.5 -0.03,-0.99 -0.05,-1.49 0,-0.1 -0.15,-0.1 -0.16,0 -0.02,0.5 -0.05,0.99 -0.05,1.49 -0.01,0.49 -0.02,0.97 0.05,1.46 0.02,0.07 0.15,0.07 0.16,0 z" + id="path372" /> + <path + class="st1" + d="m 272.74,352.08 c -0.01,0.37 -0.01,0.74 -0.02,1.11 0,0.18 0,0.36 0,0.54 0,0.18 0,0.36 0.03,0.54 0.01,0.07 0.12,0.07 0.13,0 0.03,-0.17 0.03,-0.36 0.03,-0.54 0,-0.18 0,-0.36 0,-0.54 l -0.02,-1.11 c 0.01,-0.11 -0.15,-0.11 -0.15,0 z" + id="path374" /> + <path + class="st1" + d="m 275.02,351.43 c 0.01,-0.25 0.01,-0.51 0.01,-0.76 0,-0.04 -0.07,-0.04 -0.07,0 0,0.25 0,0.51 0.01,0.76 -0.01,0.03 0.05,0.03 0.05,0 z" + id="path376" /> + <path + class="st1" + d="m 276.37,350.8 c 0.04,-0.17 0.02,-0.37 0.02,-0.54 0,-0.18 -0.01,-0.36 -0.01,-0.54 -0.01,-0.37 -0.03,-0.74 -0.03,-1.11 0,-0.06 -0.1,-0.06 -0.1,0 -0.01,0.37 -0.02,0.74 -0.03,1.11 -0.01,0.18 -0.01,0.36 -0.01,0.54 0,0.18 -0.03,0.37 0.02,0.54 0,0.08 0.12,0.08 0.14,0 z" + id="path378" /> + <path + class="st1" + d="m 277.91,353.62 c 0.09,-0.6 0.07,-1.22 0.08,-1.83 0.01,-0.63 0.03,-1.25 0.04,-1.88 0,-0.13 -0.2,-0.13 -0.2,0 -0.02,0.61 -0.04,1.23 -0.05,1.84 -0.02,0.61 -0.08,1.24 -0.02,1.84 0.01,0.08 0.14,0.12 0.15,0.03 z" + id="path380" /> + <path + class="st1" + d="m 279.07,354.14 c 0.05,-0.41 0.01,-0.84 0.01,-1.25 0,-0.42 -0.01,-0.83 -0.01,-1.25 0,-0.09 -0.15,-0.1 -0.15,0 0,0.42 -0.01,0.83 -0.01,1.25 0,0.41 -0.03,0.84 0.01,1.25 0.02,0.09 0.14,0.09 0.15,0 z" + id="path382" /> + <path + class="st1" + d="m 288.49,354.77 c 0.02,-0.57 0.01,-1.14 -0.01,-1.71 0,-0.07 -0.11,-0.07 -0.11,0 -0.01,0.57 -0.02,1.14 -0.01,1.71 0.01,0.28 0.01,0.56 0.01,0.84 0,0.27 -0.05,0.56 -0.01,0.82 0.01,0.06 0.12,0.06 0.13,0 0.04,-0.27 -0.01,-0.55 -0.01,-0.82 0.01,-0.28 0,-0.56 0.01,-0.84 z" + id="path384" /> + <path + class="st1" + d="m 289.51,350.67 c -0.02,0.61 -0.05,1.22 -0.07,1.82 -0.01,0.3 -0.02,0.61 -0.03,0.91 -0.01,0.28 -0.03,0.59 0.02,0.86 0.01,0.07 0.13,0.07 0.15,0 0.06,-0.27 0.06,-0.58 0.07,-0.86 0.01,-0.3 0.02,-0.61 0.02,-0.91 0.01,-0.61 0.02,-1.22 0.04,-1.82 -0.01,-0.12 -0.2,-0.12 -0.2,0 z" + id="path386" /> + <path + class="st1" + d="m 290.89,353.1 c 0.07,-0.17 0.06,-0.38 0.07,-0.56 0.01,-0.21 0.01,-0.42 0.02,-0.63 0.01,-0.41 0.02,-0.83 0.03,-1.24 0,-0.11 -0.16,-0.1 -0.16,0 -0.03,0.41 -0.06,0.81 -0.08,1.22 -0.01,0.2 -0.03,0.41 -0.04,0.61 -0.01,0.18 -0.05,0.41 0.01,0.58 0.01,0.06 0.12,0.09 0.15,0.02 z" + id="path388" /> + <path + class="st1" + d="m 292.77,351.45 v 0.54 c 0,0.18 0,0.37 0.03,0.54 0.02,0.08 0.15,0.08 0.16,0 0.03,-0.18 0.03,-0.36 0.03,-0.54 0,-0.18 0,-0.36 0,-0.54 0,-0.37 0,-0.74 -0.01,-1.11 0,-0.13 -0.21,-0.13 -0.21,0 z" + id="path390" /> + <path + class="st1" + d="m 294.73,350.67 c 0,-0.15 -0.23,-0.15 -0.23,0 -0.01,0.64 -0.02,1.29 -0.02,1.93 0,0.62 -0.02,1.27 0.08,1.88 0.01,0.06 0.11,0.06 0.12,0 0.1,-0.61 0.08,-1.26 0.08,-1.88 -0.01,-0.64 -0.02,-1.29 -0.03,-1.93 z" + id="path392" /> + <path + class="st1" + d="m 296.21,351.77 c 0.1,-0.44 0.1,-0.9 0.11,-1.35 0.01,-0.46 0.02,-0.92 0.03,-1.38 0,-0.14 -0.21,-0.14 -0.21,0 -0.02,0.46 -0.05,0.92 -0.08,1.38 -0.03,0.45 -0.06,0.9 0,1.35 0.01,0.08 0.13,0.08 0.15,0 z" + id="path394" /> + <path + class="st1" + d="m 296.18,353.6 c -0.02,0.16 -0.04,0.33 -0.06,0.49 -0.01,0.08 -0.02,0.16 -0.03,0.24 0,0.04 0,0.08 0,0.11 0,0.05 0,0.09 0,0.13 0.01,0.05 0.07,0.07 0.09,0.01 0.02,-0.04 0.02,-0.09 0.03,-0.13 0.01,-0.04 0.02,-0.07 0.02,-0.11 0.01,-0.08 0.02,-0.17 0.03,-0.25 0.02,-0.17 0.03,-0.33 0.05,-0.5 0,-0.04 -0.04,-0.07 -0.07,-0.07 -0.03,0.01 -0.05,0.04 -0.06,0.08 z" + id="path396" /> + <path + class="st1" + d="m 296.07,356.6 c 0.02,0.13 0.03,0.25 0.07,0.38 0.02,0.08 0.14,0.06 0.14,-0.02 0.01,-0.13 0,-0.26 0,-0.39 0,-0.12 0,-0.25 0,-0.37 -0.02,-0.25 -0.04,-0.51 -0.06,-0.76 -0.01,-0.08 -0.06,-0.14 -0.14,-0.14 -0.07,0 -0.15,0.06 -0.14,0.14 0.02,0.26 0.04,0.52 0.07,0.77 0.01,0.14 0.04,0.26 0.06,0.39 z" + id="path398" /> + <path + class="st1" + d="m 297.62,349.82 c 0.03,-0.17 0.02,-0.35 0.02,-0.52 v -0.51 c 0,-0.35 0,-0.7 -0.01,-1.05 0,-0.12 -0.19,-0.12 -0.19,0 0,0.35 0,0.7 -0.01,1.05 v 0.51 c 0,0.17 -0.01,0.35 0.02,0.52 0.02,0.08 0.16,0.08 0.17,0 z" + id="path400" /> + <path + class="st1" + d="m 297.5,352.19 c 0,0.99 0.01,1.99 0.03,2.98 0.01,0.24 0.04,0.49 0.03,0.73 -0.01,0.24 -0.04,0.49 -0.05,0.73 -0.01,0.5 -0.01,1.01 0,1.52 0,0.16 0.24,0.16 0.24,0 0,-0.49 -0.01,-0.98 -0.03,-1.47 -0.01,-0.26 -0.05,-0.52 -0.07,-0.78 -0.01,-0.24 0.02,-0.49 0.02,-0.73 0,-0.99 0,-1.99 -0.03,-2.98 0.02,-0.1 -0.14,-0.1 -0.14,0 z" + id="path402" /> + <path + class="st1" + d="m 276.67,340.59 c 0.01,0.05 0.02,0.11 0.02,0.16 0.01,0.06 0.02,0.1 0.07,0.13 0.03,0.02 0.08,0.01 0.11,-0.01 0.04,-0.04 0.04,-0.09 0.04,-0.15 0,-0.05 0,-0.1 -0.01,-0.15 -0.01,-0.09 -0.02,-0.18 -0.03,-0.28 -0.02,-0.19 -0.04,-0.38 -0.06,-0.57 -0.01,-0.06 -0.05,-0.12 -0.12,-0.12 -0.06,0 -0.13,0.06 -0.12,0.12 0.02,0.19 0.04,0.39 0.06,0.58 0.02,0.1 0.03,0.2 0.04,0.29 z" + id="path404" /> + <path + class="st1" + d="m 275.18,341.91 c 0.04,-0.15 0.03,-0.33 0.03,-0.48 0,-0.17 0,-0.33 0,-0.5 0,-0.33 0,-0.66 -0.01,-0.99 0,-0.13 -0.2,-0.13 -0.2,0 0,0.33 0,0.66 -0.01,0.99 0,0.17 0,0.33 0,0.5 0,0.15 -0.01,0.33 0.03,0.48 0.02,0.08 0.14,0.08 0.16,0 z" + id="path406" /> + <path + class="st1" + d="m 273.2,343.08 c 0.01,0.07 0.1,0.07 0.1,0 0.03,-0.29 0.01,-0.58 0.02,-0.87 0,-0.29 0,-0.58 0,-0.87 0,-0.09 -0.14,-0.09 -0.14,0 0,0.29 0,0.58 0,0.87 0.01,0.29 -0.01,0.58 0.02,0.87 z" + id="path408" /> + <path + class="st1" + d="m 287.92,340.25 c -0.03,-0.15 -0.05,-0.29 -0.08,-0.44 -0.01,-0.03 -0.05,-0.06 -0.08,-0.05 -0.03,0.01 -0.06,0.05 -0.05,0.08 0.04,0.14 0.09,0.28 0.13,0.43 0.01,0.06 0.08,0.04 0.08,-0.02 z" + id="path410" /> + <path + class="st1" + d="m 289.42,342.56 c 0.03,0.1 0.16,0.1 0.2,0 0.04,-0.12 0.03,-0.25 0.03,-0.37 0.01,-0.11 0.01,-0.23 0.01,-0.34 0,-0.25 0,-0.5 -0.01,-0.75 0,-0.5 -0.01,-0.99 -0.01,-1.49 0,-0.15 -0.23,-0.15 -0.24,0 0,0.5 -0.01,0.99 -0.01,1.49 0,0.25 -0.01,0.5 -0.01,0.75 0,0.12 0,0.23 0.01,0.34 0,0.13 -0.01,0.26 0.03,0.37 z" + id="path412" /> + <path + class="st1" + d="m 289.42,343.87 c 0.03,0.14 0.06,0.29 0.09,0.43 0.03,0.14 0.05,0.29 0.1,0.43 0.02,0.06 0.08,0.11 0.15,0.09 0.07,-0.02 0.1,-0.09 0.09,-0.15 -0.02,-0.14 -0.07,-0.28 -0.11,-0.42 -0.04,-0.14 -0.08,-0.28 -0.12,-0.42 -0.04,-0.14 -0.23,-0.09 -0.2,0.04 z" + id="path414" /> + <path + class="st1" + d="m 291.01,342.4 c 0.01,0.16 0.01,0.34 0.06,0.48 0.03,0.08 0.15,0.09 0.18,0 0.04,-0.15 0.02,-0.33 0.02,-0.48 -0.01,-0.17 -0.02,-0.33 -0.03,-0.5 -0.02,-0.33 -0.04,-0.66 -0.06,-1 -0.01,-0.15 -0.24,-0.15 -0.24,0 0.01,0.33 0.03,0.66 0.05,1 0,0.17 0.01,0.34 0.02,0.5 z" + id="path416" /> + <path + class="st1" + d="m 291.24,344.77 c 0,-0.06 0,-0.11 0,-0.17 0,-0.05 -0.04,-0.1 -0.1,-0.1 -0.05,0 -0.1,0.04 -0.1,0.1 0,0.06 0,0.11 0,0.17 0,0.03 0,0.06 0,0.08 0,0.01 0,0.03 0,0.04 0,0.03 0.01,0.05 0.03,0.08 0.03,0.06 0.12,0.06 0.15,0 0.01,-0.02 0.03,-0.05 0.03,-0.08 0,-0.01 0,-0.03 0,-0.04 0,-0.03 0,-0.05 -0.01,-0.08 z" + id="path418" /> + <path + class="st1" + d="m 292.63,343.75 c 0.06,-0.43 0.11,-0.86 0.12,-1.3 0.01,-0.44 0.03,-0.88 0.04,-1.33 0,-0.16 -0.24,-0.16 -0.25,0 -0.02,0.43 -0.05,0.87 -0.07,1.3 -0.02,0.44 -0.02,0.86 0.01,1.3 0,0.09 0.13,0.12 0.15,0.03 z" + id="path420" /> + <path + class="st1" + d="m 292.68,345.77 c -0.01,-0.35 -0.02,-0.71 -0.02,-1.06 0,-0.14 -0.21,-0.14 -0.21,0 0,0.35 -0.01,0.71 -0.02,1.06 -0.01,0.16 0.25,0.16 0.25,0 z" + id="path422" /> + <path + class="st1" + d="m 294.68,342.15 c 0.03,-0.06 0.07,-0.14 0.07,-0.21 0.01,-0.06 0.01,-0.13 0.02,-0.19 0.01,-0.14 0.03,-0.29 0.03,-0.43 0.01,-0.28 0.02,-0.56 0.04,-0.85 0.01,-0.19 -0.27,-0.18 -0.29,0 l -0.07,0.83 c -0.01,0.14 -0.02,0.28 -0.02,0.41 0,0.06 -0.01,0.13 -0.01,0.19 0,0.07 0.02,0.15 0.04,0.22 0.03,0.08 0.15,0.11 0.19,0.03 z" + id="path424" /> + <path + class="st1" + d="m 294.78,343.84 c 0,0.18 0,0.36 0,0.54 0,0.18 -0.01,0.36 0.01,0.54 0.01,0.05 0.08,0.05 0.08,0 0.02,-0.18 0.01,-0.36 0.01,-0.54 0,-0.18 0,-0.36 0,-0.54 0,-0.06 -0.1,-0.06 -0.1,0 z" + id="path426" /> + <path + class="st1" + d="m 269.43,342.02 c 0.02,-0.13 0.04,-0.25 0.04,-0.38 0,-0.13 0,-0.26 0,-0.39 v -0.77 c 0,-0.14 -0.22,-0.14 -0.22,0 0,0.26 0,0.52 0,0.77 0,0.13 0,0.26 0,0.39 0,0.13 0.02,0.25 0.04,0.38 0,0.08 0.13,0.08 0.14,0 z" + id="path428" /> + <path + class="st1" + d="m 269.46,344.32 c 0,0 0,-0.01 0,-0.01 0,0 0,-0.01 0,-0.01 0.01,0.01 0,0.02 0,0.02 z" + id="path430" /> + <polygon + class="st1" + points="269.47,344.3 269.47,344.31 " + id="polygon432" /> + <path + class="st1" + d="m 269.47,344.31 c 0,0 0,0 0,0 v 0 c 0,0.01 0,0.02 0,0.03 0,0 0,0 0,0 0,0 0,0.01 0,0.01 0,0 0,0.01 -0.01,0.01 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 -0.01,0 0,0 0,0 0,0 0,0 0,-0.01 0,-0.01 0,0 0,-0.01 0,-0.01 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,-0.01 0.01,-0.01 0.01,-0.02 0.01,-0.05 0.01,-0.06 -0.01,-0.02 -0.01,-0.03 -0.03,-0.04 -0.03,-0.02 -0.08,-0.02 -0.11,0.01 -0.04,0.04 -0.06,0.09 -0.05,0.14 0,0.03 0.01,0.06 0.03,0.09 0.01,0.02 0.02,0.04 0.04,0.05 0.02,0.02 0.05,0.04 0.08,0.04 0.04,0.01 0.08,0.01 0.12,-0.02 0.02,-0.01 0.04,-0.03 0.06,-0.04 0.02,-0.02 0.04,-0.05 0.05,-0.08 0.01,-0.02 0.01,-0.05 0.01,-0.08 0,-0.01 0,-0.02 -0.01,-0.03 0,-0.02 -0.02,-0.03 -0.03,-0.05 -0.01,-0.01 -0.02,-0.02 -0.03,-0.03 -0.01,-0.01 -0.02,-0.01 -0.04,-0.01 -0.02,0 -0.03,0.01 -0.04,0.02 -0.05,0.02 -0.06,0.04 -0.05,0.07 0,0 0,0 0,0 0,0 0,0 0,0 z" + id="path434" /> + <polygon + class="st1" + points="" + id="polygon436" /> + <path + class="st1" + d="m 271.27,342.54 c 0.03,-0.29 0.01,-0.58 0.01,-0.87 0,-0.29 0,-0.58 0,-0.87 0,-0.1 -0.16,-0.1 -0.16,0 0,0.29 0,0.58 0,0.87 0,0.29 -0.02,0.58 0.01,0.87 0,0.09 0.13,0.09 0.14,0 z" + id="path438" /> + <path + class="st1" + d="m 271.23,345.74 c 0,0.04 0,0.09 0,0.13 0,0.05 0.01,0.09 0.01,0.14 0.01,0.07 0.11,0.08 0.12,0 0,-0.05 0.01,-0.09 0.01,-0.14 0,-0.04 0,-0.09 0,-0.13 0,-0.09 0,-0.18 0,-0.27 0,-0.09 -0.14,-0.09 -0.14,0 0,0.09 0,0.18 0,0.27 z" + id="path440" /> + <path + class="st1" + d="m 272.72,361.99 c -0.19,-0.02 -0.39,-0.03 -0.58,-0.03 -0.39,-0.02 -0.77,-0.04 -1.16,-0.05 -0.2,-0.01 -0.2,0.3 0,0.31 0.39,0.02 0.77,0.04 1.16,0.06 0.37,0.02 0.77,0.06 1.14,0 0.1,-0.02 0.09,-0.17 0,-0.2 -0.18,-0.07 -0.37,-0.08 -0.56,-0.09 z" + id="path442" /> + <path + class="st1" + d="m 275.75,362.33 c 0.08,0 0.08,-0.12 0,-0.12 -0.08,0 -0.08,0.12 0,0.12 z" + id="path444" /> + <path + class="st1" + d="m 277.1,363.02 c -0.27,0.02 -0.54,0.03 -0.81,0.05 -0.11,0.01 -0.11,0.18 0,0.17 0.28,-0.02 0.55,-0.03 0.83,-0.05 0.27,-0.02 0.55,-0.02 0.81,-0.08 0.07,-0.02 0.05,-0.11 -0.02,-0.12 -0.26,-0.02 -0.54,0.01 -0.81,0.03 z" + id="path446" /> + <path + class="st1" + d="m 278.18,361.72 c 0.39,0.01 0.78,0.03 1.17,0.04 0.39,0.01 0.8,0.05 1.19,-0.02 0.08,-0.01 0.07,-0.13 0,-0.15 -0.37,-0.09 -0.76,-0.08 -1.14,-0.1 -0.39,-0.01 -0.78,-0.02 -1.17,-0.04 -0.79,-0.02 -1.59,-0.05 -2.38,-0.08 -1.59,-0.06 -3.17,-0.12 -4.76,-0.16 -0.16,0 -0.16,0.25 0,0.25 1.59,0.06 3.17,0.12 4.76,0.16 0.78,0.04 1.56,0.07 2.33,0.1 z" + id="path448" /> + <path + class="st1" + d="m 281.71,361.75 c 0.54,0.01 1.08,0 1.63,-0.01 0.54,-0.02 1.09,0.01 1.63,-0.04 0.09,-0.01 0.09,-0.13 0,-0.14 -0.54,-0.05 -1.08,-0.02 -1.63,-0.04 -0.54,-0.02 -1.08,-0.02 -1.63,-0.01 -0.16,-0.02 -0.16,0.23 0,0.24 z" + id="path450" /> + <path + class="st1" + d="m 286.26,361.65 c 0.04,0 0.04,-0.06 0,-0.06 -0.18,-0.01 -0.36,-0.02 -0.54,-0.02 -0.07,0 -0.07,0.12 0,0.11 0.18,-0.01 0.36,-0.02 0.54,-0.03 z" + id="path452" /> + <path + class="st1" + d="m 287.84,361.71 c 0.31,0.01 0.62,0.04 0.92,0 0.12,-0.02 0.12,-0.18 0,-0.19 -0.3,-0.04 -0.62,-0.01 -0.92,0 -0.31,0.01 -0.61,0.03 -0.92,0.04 -0.07,0 -0.07,0.11 0,0.11 0.3,0.02 0.61,0.04 0.92,0.04 z" + id="path454" /> + <path + class="st1" + d="m 290.49,361.8 c 0.07,0.01 0.14,0.01 0.21,0.01 0.03,0 0.07,0 0.1,0 0.04,0 0.08,-0.01 0.12,-0.01 0.09,-0.01 0.09,-0.13 0,-0.14 -0.04,0 -0.08,-0.01 -0.11,-0.01 -0.03,0 -0.07,0 -0.1,0 -0.07,0 -0.14,0.01 -0.22,0.01 -0.14,0.01 -0.29,0.02 -0.43,0.02 -0.06,0 -0.06,0.09 0,0.09 0.14,0.01 0.29,0.01 0.43,0.03 z" + id="path456" /> + <path + class="st1" + d="m 292.99,361.88 0.66,0.06 c 0.22,0.02 0.45,0.06 0.67,-0.01 0.08,-0.03 0.11,-0.15 0.03,-0.19 -0.21,-0.11 -0.45,-0.11 -0.68,-0.13 -0.23,-0.02 -0.45,-0.03 -0.68,-0.05 -0.08,-0.01 -0.16,0.08 -0.16,0.16 0,0.1 0.07,0.16 0.16,0.16 z" + id="path458" /> + <path + class="st1" + d="m 284.78,362.58 c -0.51,-0.09 -1.06,-0.05 -1.58,-0.06 -0.55,-0.01 -1.1,-0.02 -1.65,-0.02 -1.1,-0.01 -2.2,0 -3.3,0.01 -0.15,0 -0.15,0.23 0,0.24 1.1,0.03 2.2,0.06 3.3,0.07 0.53,0.01 1.07,0.01 1.6,0.01 0.54,0 1.1,0.06 1.63,-0.03 0.11,-0.01 0.11,-0.2 0,-0.22 z" + id="path460" /> + <path + class="st1" + d="m 281.17,363.43 c -0.4,0 -0.8,0 -1.19,0 -0.18,0 -0.18,0.27 0,0.27 0.4,0 0.8,0 1.19,0 0.4,0 0.8,0.02 1.19,-0.03 0.14,-0.02 0.14,-0.2 0,-0.22 -0.39,-0.04 -0.79,-0.02 -1.19,-0.02 z" + id="path462" /> + <path + class="st1" + d="m 285.69,363.4 c -0.35,0.02 -0.7,0.04 -1.05,0.06 -0.16,0.01 -0.16,0.26 0,0.25 0.35,-0.02 0.7,-0.03 1.05,-0.05 0.18,-0.01 0.35,-0.01 0.53,-0.03 0.17,-0.01 0.35,-0.01 0.51,-0.06 0.1,-0.02 0.11,-0.19 0,-0.21 -0.34,-0.03 -0.7,0.02 -1.04,0.04 z" + id="path464" /> + <path + class="st1" + d="m 291.55,363.61 c 0.28,0 0.54,0 0.81,-0.06 0.08,-0.02 0.09,-0.15 0,-0.17 -0.27,-0.06 -0.53,-0.06 -0.81,-0.06 -0.29,0 -0.57,0 -0.86,0.01 -0.57,0.02 -1.14,0.03 -1.71,0.03 -0.14,0 -0.14,0.22 0,0.22 0.57,0 1.14,0.01 1.71,0.03 0.28,0 0.57,0 0.86,0 z" + id="path466" /> + <path + class="st1" + d="m 289,362.7 c -0.22,-0.06 -0.45,-0.07 -0.68,-0.1 -0.22,-0.03 -0.45,-0.04 -0.68,-0.06 -0.46,-0.04 -0.92,-0.07 -1.38,-0.11 -0.18,-0.01 -0.18,0.27 0,0.28 0.45,0.04 0.9,0.07 1.36,0.11 0.22,0.02 0.44,0.04 0.66,0.05 0.23,0.01 0.46,0.03 0.69,0.01 0.11,0 0.14,-0.15 0.03,-0.18 z" + id="path468" /> + <path + class="st1" + d="m 291.36,362.96 c 0.24,-0.02 0.49,-0.04 0.73,-0.05 0.12,-0.01 0.24,-0.01 0.36,-0.02 0.13,-0.01 0.26,-0.01 0.38,-0.06 0.1,-0.04 0.07,-0.21 -0.03,-0.23 -0.12,-0.03 -0.24,-0.01 -0.37,0 -0.12,0.01 -0.24,0.03 -0.36,0.04 -0.24,0.03 -0.48,0.05 -0.72,0.07 -0.07,0.01 -0.13,0.05 -0.13,0.13 0.01,0.06 0.07,0.12 0.14,0.12 z" + id="path470" /> + <path + class="st1" + d="m 276.86,364.51 c -0.42,0 -0.85,0.01 -1.27,0.01 -0.85,0 -1.7,0.06 -2.55,0.09 -0.16,0.01 -0.16,0.25 0,0.25 0.87,-0.02 1.73,-0.02 2.6,-0.08 0.42,-0.03 0.85,-0.05 1.27,-0.07 0.41,-0.03 0.84,-0.01 1.24,-0.07 0.08,-0.01 0.05,-0.12 -0.02,-0.13 -0.41,-0.05 -0.85,0 -1.27,0 z" + id="path472" /> + <path + class="st1" + d="m 277.07,365.11 c -0.27,0.01 -0.53,0.03 -0.8,0.05 -0.53,0.03 -1.07,0.07 -1.6,0.1 -0.19,0.01 -0.2,0.32 0,0.3 0.53,-0.03 1.07,-0.07 1.6,-0.1 0.27,-0.02 0.53,-0.03 0.8,-0.05 0.12,-0.01 0.25,-0.03 0.37,-0.04 0.13,-0.02 0.27,-0.02 0.39,-0.07 0.08,-0.03 0.1,-0.16 0,-0.18 -0.23,-0.05 -0.52,-0.03 -0.76,-0.01 z" + id="path474" /> + <path + class="st1" + d="m 281.72,365.05 c -0.19,-0.01 -0.39,0 -0.58,0 -0.39,0.01 -0.77,0.02 -1.16,0.03 -0.15,0 -0.15,0.24 0,0.24 0.39,0.01 0.77,0.02 1.16,0.03 0.19,0 0.39,0.01 0.58,0 0.18,-0.01 0.39,-0.01 0.56,-0.06 0.09,-0.03 0.09,-0.16 0,-0.18 -0.18,-0.05 -0.38,-0.05 -0.56,-0.06 z" + id="path476" /> + <path + class="st1" + d="m 290.3,365.41 c 0,0.04 0.04,0.08 0.08,0.08 0.14,0 0.29,-0.01 0.43,-0.02 0.03,0 0.06,-0.03 0.06,-0.06 0,-0.04 -0.03,-0.06 -0.06,-0.06 -0.14,-0.01 -0.29,-0.02 -0.43,-0.02 -0.04,0 -0.08,0.04 -0.08,0.08 z" + id="path478" /> + <path + class="st1" + d="m 293.18,365.64 c 0.05,0 0.1,-0.01 0.15,-0.02 0.04,-0.01 0.08,-0.06 0.08,-0.1 0,-0.04 -0.03,-0.09 -0.08,-0.1 -0.05,-0.01 -0.1,-0.02 -0.15,-0.02 -0.05,0 -0.09,0 -0.14,0 -0.09,0 -0.18,0 -0.28,0 -0.06,0 -0.12,0.05 -0.12,0.12 0,0.07 0.05,0.12 0.12,0.12 0.09,0 0.18,0 0.28,0 0.05,0 0.1,0 0.14,0 z" + id="path480" /> + <path + class="st1" + d="m 284.64,368.43 c -0.16,0 -0.16,0.25 0,0.25 0.16,0 0.16,-0.25 0,-0.25 z" + id="path482" /> + <path + class="st1" + d="m 283.01,372.26 c 0.08,0 0.15,0 0.23,0 0.05,0 0.09,0 0.14,-0.01 0.05,-0.01 0.11,-0.01 0.14,-0.05 0.04,-0.05 0.04,-0.1 0,-0.15 -0.03,-0.04 -0.09,-0.04 -0.13,-0.05 -0.05,-0.01 -0.09,-0.01 -0.14,-0.01 -0.08,0 -0.15,0 -0.23,0 -0.07,0 -0.13,0.06 -0.13,0.13 0,0.09 0.05,0.14 0.12,0.14 z" + id="path484" /> + <path + class="st1" + d="m 284.68,373.83 c 0.12,-0.01 0.25,-0.01 0.37,-0.02 0,0.02 0,0.05 0,0.07 -0.01,0.15 -0.02,0.29 -0.03,0.44 -0.01,0.14 -0.03,0.29 0,0.42 0.01,0.05 0.07,0.04 0.09,0 0.04,-0.13 0.04,-0.28 0.04,-0.42 0.01,-0.15 0.02,-0.29 0.02,-0.44 0,-0.03 0,-0.05 0,-0.08 0,0 0,0 0.01,0 0.16,-0.01 0.33,0 0.47,-0.09 0.05,-0.03 0.04,-0.1 -0.02,-0.12 -0.15,-0.06 -0.3,-0.02 -0.45,0.01 0.01,-0.2 0.02,-0.4 0.03,-0.6 0,-0.08 -0.11,-0.07 -0.12,0 -0.01,0.21 -0.03,0.41 -0.04,0.62 -0.13,0.02 -0.27,0.05 -0.4,0.07 -0.33,0.06 -0.67,0.11 -1,0.16 -0.03,0 -0.02,0.06 0.01,0.06 0.34,-0.04 0.68,-0.06 1.02,-0.08 z" + id="path486" /> + <path + class="st1" + d="m 285.24,375.15 c 0.01,0 0.02,0 0.02,0 l -0.01,0.53 c 0,0.23 0,0.45 0,0.68 0,0.23 -0.01,0.46 0.03,0.68 0.02,0.12 0.21,0.12 0.23,0 0.04,-0.23 0.03,-0.45 0.03,-0.68 0,-0.23 0,-0.45 0,-0.68 0,-0.17 0,-0.35 -0.01,-0.52 0.18,0.01 0.37,0.01 0.54,-0.03 0.07,-0.02 0.07,-0.12 0,-0.14 -0.17,-0.04 -0.35,-0.04 -0.54,-0.03 0,-0.22 -0.01,-0.44 -0.01,-0.66 0,-0.16 -0.24,-0.16 -0.25,0 l -0.01,0.67 c -0.01,0 -0.02,0 -0.03,0 -0.28,0 -0.56,0.01 -0.84,0.01 -0.57,0.01 -1.14,0.01 -1.71,0.02 -0.08,0 -0.08,0.12 0,0.12 0.57,0.01 1.14,0.01 1.71,0.02 0.29,0.01 0.57,0.01 0.85,0.01 z" + id="path488" /> + <path + class="st1" + d="m 286.59,377.22 c -0.02,0 -0.04,0 -0.05,0 0.01,-0.24 0.01,-0.48 0.02,-0.72 0.01,-0.59 -0.04,-1.18 -0.03,-1.77 0,-0.04 -0.06,-0.04 -0.06,0 -0.04,0.59 -0.13,1.18 -0.16,1.77 -0.01,0.25 -0.02,0.49 -0.03,0.74 -0.1,0.01 -0.19,0.03 -0.28,0.04 -0.1,0.01 -0.2,0.03 -0.3,0.04 0,-0.11 0,-0.21 0,-0.32 0,-0.1 -0.16,-0.1 -0.16,0 0,0.11 0,0.23 0,0.34 -0.05,0.01 -0.1,0.01 -0.15,0.02 -0.28,0.04 -0.57,0.08 -0.85,0.12 0.01,-0.31 0.02,-0.62 0.01,-0.94 0.18,-0.01 0.36,-0.02 0.54,-0.04 0.07,-0.01 0.12,-0.09 0.12,-0.15 0,-0.01 0,-0.03 -0.01,-0.04 -0.01,-0.07 -0.09,-0.12 -0.15,-0.12 -0.17,0 -0.34,0.03 -0.51,0.04 0,-0.18 -0.01,-0.36 -0.01,-0.54 0,-0.14 -0.22,-0.14 -0.22,0 0,0.19 -0.01,0.37 -0.01,0.56 -0.18,0.02 -0.35,0.04 -0.53,0.06 -0.08,0.01 -0.14,0.06 -0.14,0.14 0,0.07 0.06,0.15 0.14,0.14 0.18,-0.01 0.35,-0.02 0.53,-0.03 -0.01,0.32 0,0.63 0.01,0.95 -0.05,0.01 -0.09,0.01 -0.14,0.02 -0.18,0.02 -0.1,0.29 0.07,0.27 0.03,0 0.05,-0.01 0.08,-0.01 0.01,0.13 0,0.27 0.01,0.4 0.01,0.11 0.16,0.11 0.17,0 0.01,-0.14 0.01,-0.28 0.01,-0.43 0.3,-0.04 0.61,-0.08 0.91,-0.13 0.03,0 0.06,-0.01 0.1,-0.01 0,0.16 0,0.32 0,0.48 0,0.18 0,0.36 -0.01,0.54 0,0.09 0,0.17 -0.01,0.26 0,0.09 -0.02,0.2 0.01,0.28 0.03,0.08 0.13,0.08 0.17,0 0.03,-0.08 0.02,-0.18 0.01,-0.26 0,-0.09 -0.01,-0.19 -0.01,-0.28 0,-0.18 -0.01,-0.36 -0.01,-0.54 0,-0.17 0,-0.33 0,-0.5 0.11,-0.01 0.22,-0.03 0.33,-0.04 0.08,-0.01 0.16,-0.03 0.24,-0.04 -0.01,0.23 -0.02,0.47 0.03,0.69 0.02,0.08 0.13,0.07 0.15,0 0.07,-0.23 0.08,-0.49 0.08,-0.74 0.03,-0.01 0.06,-0.01 0.09,-0.02 0.17,-0.02 0.15,-0.22 0,-0.23 z" + id="path490" /> + <path + class="st1" + d="m 284.73,378.44 c -0.02,0 -0.03,0 -0.05,0.01 -0.02,0.01 -0.05,0.01 -0.07,0.02 -0.05,0.01 -0.1,0.04 -0.15,0.06 -0.1,0.04 -0.19,0.08 -0.29,0.12 -0.03,0.01 -0.05,0.03 -0.07,0.05 -0.01,0.02 -0.02,0.06 -0.01,0.09 0.02,0.05 0.08,0.1 0.14,0.08 0.1,-0.04 0.19,-0.08 0.29,-0.12 0.05,-0.02 0.11,-0.04 0.16,-0.06 0.02,-0.01 0.04,-0.02 0.07,-0.04 0.02,-0.01 0.03,-0.02 0.05,-0.03 0.02,-0.02 0.02,-0.04 0.03,-0.06 0.01,-0.03 -0.01,-0.08 -0.04,-0.1 -0.02,-0.01 -0.04,-0.02 -0.06,-0.02 z" + id="path492" /> + <path + class="st1" + d="m 281.25,372.35 c 0,0.18 -0.01,0.36 0,0.54 0,0.03 0.05,0.03 0.05,0 0.01,-0.18 0,-0.36 0,-0.54 0.01,-0.03 -0.05,-0.03 -0.05,0 z" + id="path494" /> + <path + class="st1" + d="m 283.96,374.39 c -0.02,-0.05 -0.07,-0.08 -0.12,-0.07 -0.05,0.02 -0.08,0.07 -0.07,0.12 l 0.05,0.17 c 0.01,0.03 0.02,0.07 0.03,0.1 0.02,0.03 0.04,0.06 0.06,0.08 0.02,0.02 0.06,0.03 0.08,0.02 0.03,-0.01 0.04,-0.04 0.05,-0.07 0,-0.04 0,-0.07 0,-0.11 -0.01,-0.03 -0.02,-0.05 -0.03,-0.08 -0.01,-0.05 -0.03,-0.1 -0.05,-0.16 z" + id="path496" /> + <path + class="st1" + d="m 285.72,375.85 c 0.04,0 0.04,-0.06 0,-0.06 -0.03,0 -0.04,0.06 0,0.06 z" + id="path498" /> + <path + class="st1" + d="m 285.51,379.78 c 0.07,0 0.07,-0.11 0,-0.11 -0.08,0 -0.08,0.11 0,0.11 z" + id="path500" /> + <path + class="st1" + d="m 274.25,367.01 c 0.26,0.01 0.53,0.02 0.78,-0.08 0.11,-0.04 0.11,-0.19 0,-0.23 -0.25,-0.09 -0.52,-0.08 -0.78,-0.08 -0.26,0.01 -0.52,0.02 -0.77,0.04 -0.2,0.01 -0.2,0.29 0,0.3 0.25,0.03 0.51,0.05 0.77,0.05 z" + id="path502" /> + <path + class="st1" + d="m 276.59,367.1 c -0.01,-0.01 -0.02,-0.02 -0.03,-0.03 -0.01,-0.01 -0.03,-0.01 -0.05,-0.01 -0.02,0 -0.05,0.01 -0.07,0.03 -0.01,0.01 -0.02,0.02 -0.02,0.03 -0.01,0.01 -0.01,0.02 -0.01,0.04 0,0.02 0,0.03 0.01,0.05 0.01,0.01 0.02,0.02 0.03,0.03 l 0.12,0.08 c 0,0 0.01,0 0.01,0.01 0.01,0 0.02,0 0.02,0 0.01,0 0.03,-0.01 0.04,-0.02 0.01,-0.01 0.01,-0.02 0.02,-0.03 0,-0.01 0,-0.02 0,-0.02 0,-0.01 0,-0.02 -0.01,-0.02 -0.01,-0.06 -0.04,-0.1 -0.06,-0.14 z" + id="path504" /> + <path + class="st1" + d="m 274.72,368.33 c -0.2,0 -0.4,0 -0.6,0 -0.16,0 -0.16,0.25 0,0.25 0.2,0 0.4,0 0.6,0 0.2,0 0.4,-0.01 0.6,-0.02 0.12,-0.01 0.12,-0.19 0,-0.19 -0.2,-0.03 -0.4,-0.04 -0.6,-0.04 z" + id="path506" /> + <path + class="st1" + d="m 274.49,369.63 c -0.1,0 -0.2,-0.01 -0.3,-0.01 -0.2,0 -0.41,0 -0.61,0 -0.17,0 -0.17,0.27 0,0.27 0.2,0 0.41,0 0.61,0 0.1,0 0.2,-0.01 0.3,-0.01 0.1,0 0.21,0 0.31,-0.03 0.09,-0.03 0.09,-0.15 0,-0.18 -0.1,-0.04 -0.21,-0.04 -0.31,-0.04 z" + id="path508" /> + <path + class="st1" + d="m 275.64,369.95 c 0.12,0 0.12,-0.18 0,-0.18 -0.12,0 -0.12,0.18 0,0.18 z" + id="path510" /> + <path + class="st1" + d="m 274.2,370.91 c -0.13,-0.02 -0.25,-0.04 -0.38,-0.06 -0.05,-0.01 -0.09,0.02 -0.1,0.07 -0.01,0.05 0.03,0.08 0.08,0.09 0.13,0.02 0.25,0.03 0.38,0.05 0.12,0.01 0.25,0.03 0.38,0.03 0.05,0 0.06,-0.08 0.01,-0.09 -0.12,-0.05 -0.25,-0.07 -0.37,-0.09 z" + id="path512" /> + <path + class="st1" + d="m 275.21,370.96 c -0.25,0 -0.25,0.39 0,0.39 0.25,0 0.25,-0.39 0,-0.39 z" + id="path514" /> + <path + class="st1" + d="m 273.09,375.69 c -0.25,-0.03 -0.49,-0.02 -0.73,0.04 -0.13,0.04 -0.08,0.24 0.06,0.21 0.21,-0.05 0.43,-0.07 0.64,-0.04 0.11,0.02 0.22,0.04 0.32,0.08 0.1,0.04 0.2,0.08 0.31,0.11 0.08,0.02 0.13,-0.07 0.07,-0.13 -0.17,-0.17 -0.44,-0.24 -0.67,-0.27 z" + id="path516" /> + <path + class="st1" + d="m 273.91,376.24 c 0.12,0 0.12,-0.18 0,-0.18 -0.12,-0.01 -0.12,0.18 0,0.18 z" + id="path518" /> + <path + class="st1" + d="m 273.38,377.26 c -0.04,-0.01 -0.08,-0.02 -0.12,-0.03 -0.02,0 -0.05,0 -0.07,-0.01 -0.03,-0.01 -0.04,-0.02 -0.07,-0.02 -0.08,0 -0.16,0 -0.24,0 -0.17,0 -0.33,0 -0.5,0 -0.08,0 -0.14,0.06 -0.14,0.14 0,0.08 0.06,0.14 0.14,0.14 h 0.5 c 0.08,0 0.16,0 0.24,0 0.03,0 0.04,-0.01 0.07,-0.02 0.02,-0.01 0.04,-0.01 0.06,-0.01 0.04,-0.01 0.09,-0.01 0.13,-0.03 0.08,-0.03 0.08,-0.13 0,-0.16 z" + id="path520" /> + <path + class="st1" + d="m 273.69,377.41 c 0.09,0 0.09,-0.14 0,-0.14 -0.09,0 -0.09,0.14 0,0.14 z" + id="path522" /> + <path + class="st1" + d="m 271.09,379.08 c 0.17,0 0.33,0.01 0.5,0.01 0.08,0 0.17,0 0.25,0 0.09,0 0.17,-0.01 0.26,-0.02 0.1,-0.01 0.1,-0.18 0,-0.19 -0.09,-0.01 -0.17,-0.02 -0.26,-0.02 -0.08,0 -0.17,0 -0.25,0 -0.17,0 -0.33,0.01 -0.5,0.01 -0.15,-0.02 -0.15,0.21 0,0.21 z" + id="path524" /> + <path + class="st1" + d="m 273.47,379.16 c 0.11,0 0.11,-0.18 0,-0.18 -0.11,0 -0.11,0.18 0,0.18 z" + id="path526" /> + <path + class="st1" + d="m 273.05,380.19 c -0.14,0 -0.28,-0.03 -0.42,-0.03 -0.13,0 -0.27,0.01 -0.4,0.02 -0.27,0.02 -0.55,0.04 -0.82,0.05 -0.17,0.01 -0.17,0.27 0,0.27 0.27,-0.01 0.55,-0.02 0.82,-0.03 0.13,-0.01 0.27,-0.01 0.4,-0.02 0.11,-0.01 0.22,-0.04 0.33,-0.06 -0.01,0.01 -0.03,0.02 -0.05,0.02 -0.05,0.01 -0.04,0.08 0,0.09 0.13,0.05 0.27,-0.12 0.22,-0.25 0,-0.03 -0.04,-0.06 -0.08,-0.06 z" + id="path528" /> + <path + class="st1" + d="m 271.78,381.22 c -0.12,0.01 -0.23,0.01 -0.34,0.02 -0.23,0.02 -0.45,0.04 -0.68,0.06 -0.08,0.01 -0.15,0.06 -0.15,0.15 0,0.08 0.07,0.15 0.15,0.15 0.23,-0.02 0.46,-0.03 0.69,-0.05 0.11,-0.01 0.22,-0.02 0.33,-0.03 0.12,-0.01 0.27,-0.01 0.37,-0.09 0.06,-0.05 0.04,-0.15 -0.02,-0.19 -0.11,-0.05 -0.24,-0.02 -0.35,-0.02 z" + id="path530" /> + <path + class="st1" + d="m 272.5,381.65 c 0.1,0 0.1,-0.16 0,-0.16 -0.11,0 -0.11,0.16 0,0.16 z" + id="path532" /> + <path + class="st1" + d="m 271.35,383.19 c -0.05,-0.01 -0.1,-0.02 -0.15,-0.02 h -0.15 c -0.2,0 -0.41,0 -0.61,0 -0.17,0 -0.17,0.27 0,0.27 0.2,0 0.41,0 0.61,0 0.05,0 0.09,0 0.14,0 0.06,0 0.11,-0.02 0.16,-0.02 0.1,-0.01 0.2,-0.02 0.3,-0.04 0.07,-0.02 0.07,-0.12 0,-0.14 -0.1,-0.03 -0.2,-0.03 -0.3,-0.05 z" + id="path534" /> + <path + class="st1" + d="m 270.11,386.37 c 0.22,0.02 0.44,0.04 0.66,0.06 0.11,0.01 0.22,0.01 0.33,0.01 0.11,0 0.22,0.01 0.33,-0.02 0.07,-0.02 0.09,-0.12 0.02,-0.15 -0.1,-0.04 -0.21,-0.06 -0.31,-0.08 -0.12,-0.02 -0.23,-0.04 -0.35,-0.05 -0.23,-0.02 -0.45,-0.04 -0.68,-0.05 -0.08,-0.01 -0.14,0.07 -0.14,0.14 0,0.08 0.06,0.14 0.14,0.14 z" + id="path536" /> + <path + class="st1" + d="m 271.95,386.42 c -0.17,0 -0.17,0.26 0,0.26 0.17,0.01 0.17,-0.26 0,-0.26 z" + id="path538" /> + <path + class="st1" + d="m 271.19,387.82 c -0.12,0 -0.24,0 -0.36,0.01 -0.24,0 -0.48,0.01 -0.72,0.01 -0.16,0 -0.16,0.25 0,0.25 0.24,0 0.48,0.01 0.72,0.01 0.12,0 0.24,0.01 0.36,0.01 0.12,0 0.25,0.01 0.36,-0.03 0.11,-0.04 0.11,-0.18 0,-0.22 -0.11,-0.05 -0.24,-0.04 -0.36,-0.04 z" + id="path540" /> + <path + class="st1" + d="m 268.59,389.85 c 0.31,0 0.63,0.01 0.94,0.01 0.15,0 0.31,0.01 0.46,0 0.15,-0.01 0.34,0.01 0.47,-0.05 0.11,-0.05 0.11,-0.18 0,-0.22 -0.14,-0.06 -0.32,-0.04 -0.47,-0.05 -0.15,-0.01 -0.31,0 -0.46,0 -0.31,0 -0.63,0.01 -0.94,0.01 -0.19,0 -0.19,0.3 0,0.3 z" + id="path542" /> + <path + class="st1" + d="m 271.28,389.73 c -0.01,-0.01 -0.02,-0.02 -0.04,-0.02 -0.01,-0.01 -0.03,-0.01 -0.04,-0.01 -0.01,0 -0.02,0 -0.03,0 -0.02,0.01 -0.04,0.02 -0.05,0.03 -0.01,0.01 -0.01,0.02 -0.02,0.02 -0.01,0.02 -0.02,0.04 -0.02,0.06 0,0.02 0,0.04 0,0.06 0,0.02 0,0.03 0.01,0.04 0,0 0,0.01 0,0.01 0,0.01 0.01,0.02 0.01,0.03 0,0.01 0.01,0.01 0.01,0.02 0.01,0.01 0.01,0.02 0.02,0.03 0.01,0.01 0.01,0.01 0.02,0.01 0.01,0.01 0.02,0.01 0.04,0.01 0.01,0 0.02,0 0.02,0 0.01,0 0.01,-0.01 0.02,-0.01 0.02,-0.01 0.04,-0.03 0.04,-0.06 0,-0.01 0.01,-0.02 0.01,-0.03 0,0 0,-0.01 0,-0.01 0,-0.01 0.01,-0.02 0.01,-0.04 0,-0.02 0,-0.04 0,-0.06 0,-0.02 0,-0.03 -0.01,-0.04 0.02,-0.02 0.01,-0.03 0,-0.04 z" + id="path544" /> + <path + class="st1" + d="m 270.4,390.9 c -0.11,0 -0.21,0.02 -0.32,0.03 -0.21,0.02 -0.41,0.04 -0.62,0.06 -0.07,0.01 -0.13,0.05 -0.13,0.13 0,0.07 0.06,0.14 0.13,0.13 0.21,-0.02 0.41,-0.04 0.62,-0.06 0.11,-0.01 0.21,-0.02 0.31,-0.03 0.05,-0.01 0.1,-0.01 0.14,-0.02 -0.11,0.01 -0.11,0.18 0.01,0.18 0.12,0 0.12,-0.17 0,-0.18 0.05,-0.01 0.11,-0.01 0.15,-0.04 0.05,-0.04 0.07,-0.13 0,-0.17 -0.08,-0.06 -0.19,-0.04 -0.29,-0.03 z" + id="path546" /> + <path + class="st1" + d="m 269.04,392.75 c -0.22,-0.02 -0.44,-0.03 -0.66,-0.05 -0.07,-0.01 -0.13,0.06 -0.13,0.13 0,0.07 0.06,0.12 0.13,0.13 0.22,0.02 0.43,0.03 0.65,0.05 0.21,0.02 0.44,0.05 0.65,0.03 0.11,-0.01 0.15,-0.17 0.03,-0.21 -0.22,-0.07 -0.45,-0.07 -0.67,-0.08 z" + id="path548" /> + <path + class="st1" + d="m 269.16,394.37 c -0.06,-0.01 -0.12,-0.03 -0.18,-0.03 h -0.16 c -0.11,0 -0.22,0 -0.33,0 -0.07,0 -0.14,0.06 -0.14,0.14 0,0.07 0.06,0.14 0.14,0.14 l 0.33,-0.01 c 0.05,0 0.11,0 0.16,0 0.06,0 0.12,-0.02 0.18,-0.03 0.1,-0.04 0.1,-0.19 0,-0.21 z" + id="path550" /> + <path + class="st1" + d="m 269.57,394.62 c -0.03,0.01 -0.05,0.01 -0.08,0.02 -0.06,0.01 -0.11,0.03 -0.17,0.04 -0.04,0.01 -0.06,0.03 -0.08,0.06 -0.02,0.04 -0.02,0.08 -0.01,0.12 0.01,0.03 0.04,0.06 0.07,0.07 0.02,0.01 0.03,0.01 0.05,0.01 0.03,0 0.05,-0.01 0.07,-0.02 0.05,-0.02 0.1,-0.05 0.15,-0.07 0.03,-0.01 0.05,-0.02 0.08,-0.03 0.03,-0.01 0.05,-0.03 0.07,-0.04 0.03,-0.02 0.06,-0.07 0.04,-0.11 -0.01,-0.04 -0.05,-0.07 -0.09,-0.07 -0.03,0.01 -0.06,0.01 -0.1,0.02 z" + id="path552" /> + <path + class="st1" + d="m 267.43,403.01 c -0.03,0 -0.06,0 -0.09,-0.01 -0.07,-0.01 -0.13,-0.01 -0.2,-0.02 -0.13,0 -0.26,0 -0.39,0 -0.08,0 -0.16,0.07 -0.15,0.15 0,0.08 0.07,0.15 0.15,0.15 0.13,0 0.26,0 0.39,0 0.06,0 0.13,-0.01 0.19,-0.02 0.03,0 0.06,0 0.1,-0.01 0.05,0 0.08,-0.02 0.13,-0.04 0.07,-0.03 0.07,-0.15 0,-0.18 -0.04,0 -0.08,-0.01 -0.13,-0.02 z" + id="path554" /> + <path + class="st1" + d="m 268.27,403.33 c -0.03,0 -0.05,0.01 -0.07,0.02 -0.03,0.01 -0.06,0.03 -0.09,0.04 -0.01,0.01 -0.03,0.02 -0.03,0.03 -0.01,0.02 -0.01,0.03 -0.01,0.05 0,0.02 0,0.03 0.01,0.05 0.01,0.01 0.02,0.03 0.03,0.03 0.03,0.01 0.06,0.03 0.09,0.04 0.02,0.01 0.05,0.02 0.07,0.02 0.03,0 0.05,-0.01 0.07,-0.02 0.04,-0.03 0.07,-0.07 0.07,-0.12 0,-0.05 -0.03,-0.1 -0.07,-0.12 -0.02,-0.02 -0.05,-0.02 -0.07,-0.02 z" + id="path556" /> + <path + class="st1" + d="m 266.53,405.1 c -0.13,0 -0.13,0.21 0,0.21 0.14,-0.01 0.14,-0.21 0,-0.21 z" + id="path558" /> + <path + class="st1" + d="m 268.05,405.26 c 0.07,0 0.07,-0.11 0,-0.11 -0.07,0 -0.07,0.11 0,0.11 z" + id="path560" /> + <path + class="st1" + d="m 264.69,407.51 c 0.22,0 0.44,0 0.66,0 0.22,0 0.46,0.02 0.67,-0.03 0.11,-0.03 0.11,-0.19 0,-0.22 -0.21,-0.06 -0.45,-0.03 -0.67,-0.03 -0.22,0 -0.44,0 -0.66,0 -0.18,0 -0.18,0.28 0,0.28 z" + id="path562" /> + <path + class="st1" + d="m 267.32,407.28 c -0.05,-0.01 -0.09,-0.02 -0.14,-0.03 -0.09,-0.02 -0.19,-0.03 -0.28,-0.05 -0.04,-0.01 -0.08,-0.01 -0.12,0.02 -0.03,0.02 -0.06,0.06 -0.07,0.09 -0.02,0.08 0.02,0.17 0.11,0.19 0.09,0.02 0.19,0.04 0.28,0.07 0.05,0.01 0.09,0.02 0.14,0.03 0.03,0.01 0.07,0.02 0.11,0.02 0.05,0 0.09,-0.03 0.13,-0.06 0.04,-0.04 0.04,-0.1 0.02,-0.15 -0.02,-0.05 -0.06,-0.08 -0.11,-0.1 -0.02,-0.02 -0.04,-0.02 -0.07,-0.03 z" + id="path564" /> + <path + class="st1" + d="m 265.73,408.88 c -0.13,0 -0.26,0 -0.39,0 -0.06,0 -0.12,0.05 -0.12,0.12 0,0.06 0.05,0.12 0.12,0.12 0.13,0 0.26,0 0.39,0 0.06,0 0.13,-0.01 0.19,-0.01 0.07,-0.01 0.14,0 0.2,-0.03 0.07,-0.03 0.07,-0.12 0,-0.15 -0.06,-0.02 -0.13,-0.02 -0.2,-0.03 -0.06,-0.01 -0.13,-0.02 -0.19,-0.02 z" + id="path566" /> + <path + class="st1" + d="m 266.64,408.87 c -0.16,0 -0.16,0.25 0,0.25 0.16,0 0.16,-0.25 0,-0.25 z" + id="path568" /> + <path + class="st1" + d="m 264.75,410.83 c 0.07,-0.04 0.07,-0.15 0,-0.19 -0.09,-0.05 -0.19,-0.04 -0.29,-0.05 -0.1,-0.01 -0.19,-0.01 -0.29,-0.01 -0.19,0 -0.38,0 -0.56,0 -0.08,0 -0.15,0.07 -0.15,0.15 0,0.08 0.07,0.15 0.15,0.15 0.19,0 0.38,0 0.56,0 0.09,0 0.18,0 0.28,-0.01 0.1,0 0.21,0.01 0.3,-0.04 z" + id="path570" /> + <path + class="st1" + d="m 265.96,410.71 c -0.06,-0.01 -0.11,-0.01 -0.17,-0.01 -0.11,0 -0.23,0 -0.34,0 -0.07,0 -0.14,0.06 -0.14,0.14 0,0.07 0.06,0.13 0.14,0.14 0.11,0 0.23,0 0.34,0 0.06,0 0.11,-0.01 0.17,-0.01 0.07,-0.01 0.13,-0.01 0.19,-0.04 0.06,-0.04 0.06,-0.13 0,-0.16 -0.06,-0.05 -0.13,-0.05 -0.19,-0.06 z" + id="path572" /> + <path + class="st1" + d="m 265.25,412.23 c -0.07,-0.03 -0.14,-0.05 -0.22,-0.07 -0.14,-0.04 -0.28,-0.08 -0.42,-0.12 -0.05,-0.01 -0.1,0.01 -0.14,0.05 0.04,-0.08 0.01,-0.19 -0.11,-0.19 -0.17,0 -0.17,0.26 0,0.26 0.03,0 0.05,-0.02 0.08,-0.03 0,0 -0.01,0 -0.01,0.01 -0.02,0.08 0.02,0.15 0.1,0.18 0.14,0.04 0.28,0.08 0.42,0.12 0.07,0.02 0.15,0.04 0.22,0.05 0.04,0.01 0.08,0.02 0.12,0.02 0.06,0 0.12,-0.04 0.13,-0.09 0.02,-0.06 -0.02,-0.12 -0.07,-0.15 -0.02,-0.02 -0.06,-0.03 -0.1,-0.04 z" + id="path574" /> + <path + class="st1" + d="m 263.72,421.36 c -0.09,-0.02 -0.18,-0.05 -0.27,-0.06 -0.19,-0.03 -0.37,-0.06 -0.56,-0.1 -0.08,-0.01 -0.18,0.02 -0.2,0.11 -0.02,0.08 0.02,0.18 0.11,0.2 0.19,0.04 0.37,0.08 0.56,0.13 0.09,0.02 0.19,0.03 0.28,0.04 0.11,0.02 0.22,0.04 0.32,0.01 0.05,-0.01 0.09,-0.06 0.09,-0.11 0.01,-0.06 -0.02,-0.1 -0.06,-0.13 -0.07,-0.05 -0.17,-0.07 -0.27,-0.09 z" + id="path576" /> + <path + class="st1" + d="m 264.68,421.58 c -0.01,-0.01 -0.03,-0.02 -0.04,-0.03 -0.02,-0.01 -0.03,-0.01 -0.05,-0.01 -0.05,0 -0.09,0.03 -0.12,0.07 -0.02,0.04 -0.05,0.09 -0.07,0.13 0,0.01 -0.01,0.02 -0.01,0.02 0,0.01 0,0.03 0,0.04 0,0.01 0,0.02 0.01,0.02 0,0.01 0.01,0.02 0.02,0.03 0.01,0 0.01,0.01 0.02,0.01 0.01,0 0.02,0.01 0.02,0.01 0.01,0 0.03,0 0.04,0 0.01,0 0.02,0 0.04,-0.01 0.04,-0.02 0.09,-0.05 0.13,-0.07 0.04,-0.02 0.07,-0.07 0.07,-0.12 v -0.04 c -0.03,-0.01 -0.05,-0.03 -0.06,-0.05 z" + id="path578" /> + <path + class="st1" + d="m 260.79,424.11 c 0.2,0 0.41,0 0.61,0 0.1,0 0.2,0 0.3,0 0.05,0 0.1,0 0.14,0 0.06,0 0.11,-0.03 0.17,-0.05 0.1,-0.03 0.1,-0.18 0,-0.21 -0.05,-0.01 -0.1,-0.04 -0.15,-0.05 -0.05,-0.01 -0.11,0 -0.16,-0.01 -0.1,0 -0.2,0 -0.3,0 h -0.61 c -0.2,0.02 -0.2,0.32 0,0.32 z" + id="path580" /> + <path + class="st1" + d="m 263.37,424.14 c -0.01,-0.02 -0.01,-0.04 -0.03,-0.05 -0.01,-0.01 -0.03,-0.02 -0.05,-0.03 -0.01,0 -0.02,0 -0.03,0 -0.02,0 -0.04,-0.01 -0.06,-0.01 -0.02,-0.01 -0.04,-0.01 -0.07,0 -0.02,0.01 -0.04,0.02 -0.06,0.03 -0.01,0.01 -0.01,0.02 -0.02,0.03 -0.01,0.02 -0.02,0.04 -0.02,0.06 0,0.02 0,0.03 0.01,0.05 0.01,0.02 0.01,0.03 0.03,0.04 0.02,0.02 0.03,0.03 0.06,0.03 0.02,0.01 0.04,0.01 0.07,0 l 0.06,-0.01 c 0.01,0 0.02,0 0.03,0 0.02,-0.01 0.04,-0.01 0.05,-0.03 0.01,-0.01 0.02,-0.02 0.02,-0.04 0,-0.01 0,-0.01 0.01,-0.01 0,-0.01 0,-0.02 0,-0.03 0,-0.01 0,-0.01 0,-0.03 0,0.01 0,0 0,0 z" + id="path582" /> + <path + class="st1" + d="m 262.43,425.39 c -0.07,0.01 -0.15,0.02 -0.22,0.03 -0.15,0.02 -0.29,0.04 -0.44,0.06 -0.07,0.01 -0.12,0.05 -0.12,0.12 0,0.06 0.06,0.13 0.12,0.12 0.15,-0.02 0.3,-0.04 0.45,-0.05 0.08,-0.01 0.15,-0.02 0.23,-0.03 0.08,-0.01 0.17,-0.02 0.24,-0.06 0.07,-0.05 0.06,-0.15 -0.02,-0.18 -0.09,-0.03 -0.16,-0.02 -0.24,-0.01 z" + id="path584" /> + <path + class="st1" + d="m 263.06,425.66 c 0.1,0 0.1,-0.16 0,-0.16 -0.1,0.01 -0.1,0.16 0,0.16 z" + id="path586" /> + <path + class="st1" + d="m 259.53,427.68 c 0.24,-0.04 0.49,-0.05 0.74,-0.01 0.12,0.02 0.25,0.05 0.37,0.08 0.12,0.03 0.25,0.1 0.38,0.1 0.1,0 0.14,-0.11 0.08,-0.19 -0.05,-0.06 -0.11,-0.09 -0.18,-0.12 -0.07,-0.03 -0.14,-0.06 -0.21,-0.09 -0.13,-0.05 -0.27,-0.07 -0.41,-0.09 -0.28,-0.04 -0.57,-0.02 -0.84,0.03 -0.08,0.02 -0.12,0.11 -0.1,0.18 0.01,0.09 0.09,0.13 0.17,0.11 z" + id="path588" /> + <path + class="st1" + d="m 262.61,427.75 c -0.02,-0.01 -0.03,-0.01 -0.06,-0.01 0,0 -0.01,0 -0.01,0 h -0.13 c -0.03,0 -0.06,0.01 -0.09,0.04 -0.02,0.02 -0.04,0.06 -0.04,0.09 0,0.03 0.01,0.06 0.04,0.09 0.02,0.02 0.05,0.04 0.09,0.04 h 0.11 c 0.03,0 0.05,0 0.08,-0.01 0.02,-0.01 0.05,-0.02 0.07,-0.03 0.06,-0.04 0.06,-0.13 0,-0.17 -0.02,-0.02 -0.04,-0.03 -0.06,-0.04 z" + id="path590" /> + <path + class="st1" + d="m 261.37,429.14 c -0.06,0 -0.13,0 -0.19,0 -0.13,0 -0.26,0 -0.39,0 -0.07,0 -0.14,0.06 -0.13,0.13 0,0.07 0.06,0.13 0.13,0.13 0.13,0 0.26,0 0.39,0 0.06,0 0.13,0 0.19,0 0.07,0 0.14,-0.01 0.21,-0.03 0.1,-0.02 0.1,-0.17 0,-0.2 -0.08,-0.02 -0.14,-0.02 -0.21,-0.03 z" + id="path592" /> + <path + class="st1" + d="m 259.59,431.08 c -0.07,0.01 -0.14,0.06 -0.14,0.14 0,0.07 0.06,0.14 0.14,0.14 0.2,-0.02 0.41,-0.04 0.61,-0.06 0.2,-0.02 0.42,-0.02 0.62,-0.08 0.13,-0.04 0.09,-0.21 -0.03,-0.23 -0.2,-0.02 -0.4,0.01 -0.6,0.03 -0.2,0.03 -0.4,0.05 -0.6,0.06 z" + id="path594" /> + <path + class="st1" + d="m 261.87,431.4 c 0.09,0 0.09,-0.15 0,-0.15 -0.09,0.01 -0.09,0.15 0,0.15 z" + id="path596" /> + <path + class="st1" + d="m 260.77,432.58 c -0.14,0 -0.28,0 -0.42,0.01 -0.29,0.01 -0.58,0.02 -0.86,0.02 -0.17,0 -0.17,0.26 0,0.26 0.29,0 0.58,0.01 0.86,0.02 0.14,0.01 0.28,0.01 0.42,0.01 0.12,0 0.36,0.02 0.36,-0.16 0,-0.18 -0.24,-0.16 -0.36,-0.16 z" + id="path598" /> + <path + class="st1" + d="m 261.44,432.85 c -0.01,-0.02 -0.03,-0.03 -0.05,-0.03 -0.02,-0.01 -0.04,-0.01 -0.06,-0.01 -0.01,0 -0.03,0 -0.04,0.01 -0.03,0.01 -0.05,0.02 -0.07,0.04 -0.01,0.01 -0.02,0.02 -0.02,0.03 -0.01,0.02 -0.02,0.05 -0.02,0.08 0,0.02 0,0.04 0,0.06 v 0.01 c 0,0 0,0.01 0,0.01 0,0.02 0,0.04 0.01,0.06 0.01,0.02 0.02,0.03 0.03,0.05 0.01,0.01 0.03,0.02 0.04,0.03 0.02,0.01 0.04,0.02 0.06,0.02 0.02,0 0.04,-0.01 0.06,-0.02 0.01,-0.01 0.03,-0.02 0.04,-0.03 0.01,-0.01 0.02,-0.02 0.02,-0.03 0.01,-0.02 0.02,-0.05 0.02,-0.08 0,0 0,0 0,-0.01 v -0.02 c 0,-0.02 0,-0.04 0,-0.06 0,-0.02 0,-0.04 -0.01,-0.06 0.01,-0.02 0,-0.04 -0.01,-0.05 z" + id="path600" /> + <path + class="st1" + d="m 260.19,434.57 c -0.23,-0.02 -0.47,-0.03 -0.7,-0.05 -0.08,-0.01 -0.15,0.07 -0.15,0.15 0,0.09 0.07,0.14 0.15,0.15 0.23,0.02 0.46,0.04 0.69,0.05 0.11,0.01 0.22,0.02 0.33,0.03 0.06,0 0.12,0 0.18,-0.01 0.06,-0.01 0.12,-0.01 0.17,-0.06 0.03,-0.03 0.04,-0.09 0.02,-0.12 -0.07,-0.1 -0.23,-0.11 -0.34,-0.12 -0.12,0 -0.24,-0.01 -0.35,-0.02 z" + id="path602" /> + <path + class="st1" + d="m 258.04,442.19 c 0.17,-0.09 0.36,-0.12 0.55,-0.11 0.09,0.01 0.18,0.03 0.27,0.05 0.1,0.03 0.18,0.09 0.28,0.12 0.09,0.02 0.17,-0.08 0.12,-0.16 -0.07,-0.11 -0.19,-0.17 -0.31,-0.21 -0.11,-0.05 -0.23,-0.07 -0.36,-0.08 -0.24,-0.02 -0.49,0.04 -0.7,0.16 -0.14,0.08 0,0.31 0.15,0.23 z" + id="path604" /> + <path + class="st1" + d="m 259.7,442.37 c 0.12,0 0.12,-0.18 0,-0.18 -0.11,0 -0.11,0.18 0,0.18 z" + id="path606" /> + <path + class="st1" + d="m 256.02,445.02 c 0.23,0 0.47,0.01 0.7,0.01 0.11,0 0.23,0 0.35,0 0.12,0 0.24,-0.03 0.36,-0.04 0.14,-0.02 0.14,-0.2 0,-0.22 -0.12,-0.01 -0.24,-0.03 -0.36,-0.04 -0.11,0 -0.23,0 -0.35,0 -0.23,0 -0.47,0.01 -0.7,0.01 -0.18,0 -0.19,0.28 0,0.28 z" + id="path608" /> + <path + class="st1" + d="m 259.33,445.03 c -0.02,-0.03 -0.04,-0.05 -0.07,-0.06 -0.01,0 -0.01,0 -0.02,-0.01 -0.03,-0.01 -0.06,-0.02 -0.08,-0.03 l -0.17,-0.07 c -0.03,-0.01 -0.08,0 -0.1,0.01 -0.03,0.02 -0.05,0.05 -0.06,0.08 -0.02,0.07 0.02,0.14 0.09,0.16 0.06,0.02 0.12,0.03 0.17,0.05 0.03,0.01 0.06,0.02 0.09,0.02 0.01,0 0.01,0 0.02,0.01 0.04,0.01 0.06,0 0.1,-0.01 0.01,0 0.02,-0.01 0.03,-0.01 0.02,-0.01 0.03,-0.03 0.04,-0.05 0.01,-0.02 0,-0.04 -0.01,-0.07 -0.02,0 -0.03,-0.01 -0.03,-0.02 z" + id="path610" /> + <path + class="st1" + d="m 256.88,446.55 c -0.11,-0.01 -0.22,-0.02 -0.33,-0.04 -0.02,0 -0.06,0.01 -0.07,0.03 -0.02,0.02 -0.03,0.05 -0.03,0.07 0,0.03 0.01,0.06 0.03,0.07 0.02,0.02 0.05,0.03 0.07,0.03 0.11,-0.01 0.22,-0.02 0.33,-0.04 0.04,0 0.07,-0.03 0.07,-0.07 0,-0.02 -0.03,-0.05 -0.07,-0.05 z" + id="path612" /> + <path + class="st1" + d="m 258.73,446.53 c -0.11,0 -0.11,0.17 0,0.17 0.11,0 0.11,-0.17 0,-0.17 z" + id="path614" /> + <path + class="st1" + d="m 255.04,447.93 c 0.24,0.02 0.48,0.04 0.72,0.06 0.12,0.01 0.24,0.02 0.36,0.03 0.06,0 0.11,0.01 0.17,0.01 0.07,0.01 0.13,0 0.2,-0.01 0.12,-0.02 0.1,-0.19 0,-0.22 -0.12,-0.04 -0.24,-0.04 -0.36,-0.05 -0.12,-0.01 -0.24,-0.02 -0.36,-0.03 -0.24,-0.02 -0.48,-0.04 -0.72,-0.06 -0.07,-0.01 -0.14,0.07 -0.14,0.14 0,0.07 0.06,0.12 0.13,0.13 z" + id="path616" /> + <path + class="st1" + d="m 258.72,448.12 c 0.02,-0.01 0.03,-0.02 0.04,-0.03 0.05,-0.04 0.05,-0.1 0,-0.14 -0.01,-0.01 -0.03,-0.02 -0.04,-0.03 -0.03,-0.01 -0.06,-0.02 -0.09,-0.02 -0.04,0 -0.08,-0.01 -0.11,-0.01 -0.07,-0.01 -0.15,0 -0.23,0 -0.07,0 -0.13,0.06 -0.13,0.13 0,0.07 0.06,0.13 0.13,0.13 0.07,0 0.15,0.01 0.23,0 0.04,0 0.07,-0.01 0.11,-0.01 0.03,0 0.06,-0.01 0.09,-0.02 z" + id="path618" /> + <path + class="st1" + d="m 258.29,449.16 c -0.08,0 -0.08,0.12 0,0.12 0.08,0 0.08,-0.12 0,-0.12 z" + id="path620" /> + <path + class="st1" + d="m 254.5,451.07 c 0.38,0.02 0.76,0.04 1.14,0.05 0.19,0.01 0.37,0.02 0.56,0.02 0.19,0 0.39,-0.02 0.58,-0.03 0.08,0 0.11,-0.14 0.02,-0.15 -0.19,-0.03 -0.37,-0.07 -0.56,-0.08 -0.19,-0.02 -0.39,-0.03 -0.58,-0.04 -0.39,-0.02 -0.77,-0.03 -1.16,-0.05 -0.18,0 -0.18,0.28 0,0.28 z" + id="path622" /> + <path + class="st1" + d="m 258.05,451.11 c -0.01,0.04 -0.01,0.08 0.01,0.11 0.02,0.03 0.05,0.05 0.09,0.07 0.05,0.02 0.1,0.04 0.15,0.05 0.03,0.01 0.05,0.01 0.08,0.02 0.03,0.01 0.06,0.01 0.08,0.02 0.03,0.01 0.07,0.01 0.1,-0.01 0.02,-0.02 0.04,-0.04 0.05,-0.06 0.02,-0.06 0,-0.14 -0.05,-0.17 -0.06,-0.03 -0.11,-0.06 -0.18,-0.08 -0.05,-0.02 -0.1,-0.03 -0.16,-0.05 -0.06,-0.03 -0.15,0.02 -0.17,0.1 z" + id="path624" /> + <path + class="st1" + d="m 256.87,452.47 c -0.36,-0.02 -0.71,-0.03 -1.07,-0.05 -0.18,-0.01 -0.17,0.26 0,0.27 0.36,0.02 0.71,0.04 1.07,0.06 0.18,0.01 0.35,0.02 0.53,0.03 0.16,0.01 0.38,0.05 0.52,-0.03 0.07,-0.04 0.06,-0.14 0,-0.18 -0.07,-0.05 -0.17,-0.05 -0.26,-0.06 -0.08,-0.01 -0.16,-0.01 -0.24,-0.02 -0.19,0 -0.37,-0.01 -0.55,-0.02 z" + id="path626" /> + <path + class="st1" + d="m 253.49,454.84 c 0.26,0.04 0.51,0.08 0.77,0.12 0.26,0.04 0.52,0.09 0.78,0.07 0.11,-0.01 0.12,-0.14 0.02,-0.18 -0.24,-0.09 -0.49,-0.12 -0.75,-0.16 -0.25,-0.04 -0.51,-0.07 -0.76,-0.11 -0.07,-0.01 -0.14,0.02 -0.16,0.09 -0.01,0.07 0.03,0.16 0.1,0.17 z" + id="path628" /> + <path + class="st1" + d="m 256.89,454.94 c -0.11,0 -0.22,-0.01 -0.33,-0.01 -0.07,0 -0.15,0.07 -0.14,0.14 0,0.08 0.06,0.14 0.14,0.14 0.11,0 0.22,-0.01 0.33,-0.01 0.06,0 0.11,0 0.17,0 0.06,0 0.12,-0.02 0.18,-0.04 0.09,-0.02 0.09,-0.16 0,-0.19 -0.06,-0.01 -0.12,-0.03 -0.18,-0.04 -0.06,0.01 -0.11,0.01 -0.17,0.01 z" + id="path630" /> + <path + class="st1" + d="m 253.42,456.72 c 0.37,0 0.74,0 1.11,0 0.18,0 0.37,0 0.55,0 0.09,0 0.17,-0.02 0.26,-0.02 0.09,-0.01 0.18,-0.01 0.28,-0.03 0.07,-0.02 0.07,-0.13 0,-0.15 -0.09,-0.02 -0.18,-0.02 -0.28,-0.03 -0.09,-0.01 -0.17,-0.02 -0.26,-0.02 -0.18,0 -0.37,0 -0.55,0 -0.37,0 -0.74,0 -1.11,0 -0.17,-0.01 -0.17,0.25 0,0.25 z" + id="path632" /> + <path + class="st1" + d="m 258.11,456.94 c 0.07,-0.01 0.13,-0.01 0.17,-0.08 0.02,-0.03 0.02,-0.08 0,-0.11 -0.05,-0.07 -0.1,-0.07 -0.17,-0.08 -0.06,0 -0.12,0 -0.18,0 -0.11,0 -0.23,0 -0.34,0 -0.23,0 -0.47,0.01 -0.7,0.01 -0.16,0 -0.16,0.25 0,0.25 0.23,0 0.47,0.01 0.7,0.01 0.11,0 0.23,0 0.34,0 0.06,0.01 0.12,0.01 0.18,0 z" + id="path634" /> + <path + class="st1" + d="m 252.98,461.18 c 0.76,0.03 1.52,0.08 2.28,0.01 0.07,-0.01 0.11,-0.13 0.02,-0.14 -0.76,-0.14 -1.53,-0.16 -2.3,-0.19 -0.21,-0.02 -0.21,0.31 0,0.32 z" + id="path636" /> + <path + class="st1" + d="m 256.95,461.09 c -0.03,-0.01 -0.05,-0.02 -0.08,-0.02 -0.06,-0.02 -0.11,-0.03 -0.17,-0.05 -0.06,-0.02 -0.14,0.02 -0.15,0.09 -0.02,0.07 0.02,0.13 0.09,0.15 0.06,0.02 0.11,0.04 0.17,0.06 0.03,0.01 0.05,0.02 0.08,0.03 0.01,0 0.03,0.01 0.04,0.01 0.01,0 0.01,0 0.02,0 0.02,0.01 0.04,0.01 0.07,0 0,0 0.01,0 0.01,0 0.04,-0.01 0.07,-0.05 0.08,-0.08 0.01,-0.04 0,-0.08 -0.03,-0.11 -0.04,-0.05 -0.09,-0.07 -0.13,-0.08 z" + id="path638" /> + <path + class="st1" + d="m 252.55,462.82 c 0.07,0 0.15,0 0.22,0 0.04,0 0.07,0 0.11,0 0.03,0 0.06,0 0.08,-0.01 0.02,-0.01 0.04,-0.01 0.05,-0.02 0.05,-0.02 0.1,-0.07 0.1,-0.13 0,-0.06 -0.04,-0.11 -0.1,-0.13 -0.02,-0.01 -0.04,-0.01 -0.05,-0.02 -0.03,-0.01 -0.05,-0.01 -0.08,-0.01 -0.04,0 -0.07,0 -0.11,0 -0.07,0 -0.15,0 -0.22,0 -0.09,0 -0.17,0.08 -0.16,0.16 0,0.09 0.07,0.17 0.16,0.16 z" + id="path640" /> + <path + class="st1" + d="m 255.58,462.75 c 0.12,0 0.12,-0.18 0,-0.18 -0.12,0 -0.12,0.18 0,0.18 z" + id="path642" /> + <path + class="st1" + d="m 255.63,463.48 c -0.47,0 -0.94,-0.01 -1.4,-0.02 -0.92,-0.02 -1.84,0 -2.76,0.01 -0.22,0 -0.22,0.33 0,0.33 0.92,0.02 1.84,0.04 2.76,0.01 0.45,-0.01 0.9,-0.02 1.36,-0.02 0.42,0 0.93,0.07 1.34,-0.04 0.11,-0.03 0.11,-0.19 0,-0.23 -0.41,-0.11 -0.89,-0.04 -1.3,-0.04 z" + id="path644" /> + <path + class="st1" + d="m 258.21,463.75 0.04,-0.02 c 0.04,-0.01 0.06,-0.06 0.06,-0.1 0,-0.04 -0.02,-0.08 -0.06,-0.1 -0.01,-0.01 -0.02,-0.01 -0.04,-0.02 -0.01,-0.01 -0.03,-0.01 -0.04,-0.02 -0.02,0 -0.03,0 -0.05,-0.01 h -0.08 c -0.06,0 -0.11,0 -0.17,0 -0.04,0 -0.08,0.02 -0.1,0.04 -0.02,0.02 -0.04,0.07 -0.04,0.1 0,0.04 0.01,0.08 0.04,0.1 0.03,0.03 0.06,0.04 0.1,0.04 0.06,0 0.11,0 0.17,0 h 0.08 c 0.02,0 0.03,0 0.05,-0.01 0.01,0.02 0.02,0.01 0.04,0 z" + id="path646" /> + <path + class="st1" + d="m 259.38,463.8 0.83,-0.05 c 0.14,-0.01 0.28,-0.02 0.41,-0.02 0.14,-0.01 0.29,0 0.42,-0.03 0.07,-0.02 0.12,-0.09 0.11,-0.17 -0.01,-0.08 -0.07,-0.12 -0.15,-0.13 -0.13,-0.02 -0.28,0.01 -0.41,0.02 -0.13,0.01 -0.27,0.02 -0.4,0.03 -0.27,0.02 -0.54,0.04 -0.81,0.06 -0.19,0.01 -0.19,0.3 0,0.29 z" + id="path648" /> + <path + class="st1" + d="m 256.82,464.55 c -0.32,-0.12 -0.75,-0.06 -1.09,-0.05 -0.38,0.01 -0.76,0.01 -1.13,0.02 -0.76,0.03 -1.51,0.06 -2.27,0.15 -0.13,0.01 -0.13,0.19 0,0.2 0.77,0.06 1.54,0.07 2.31,0.07 0.38,0 0.76,-0.01 1.13,-0.01 0.34,0 0.76,0.04 1.08,-0.1 0.14,-0.06 0.07,-0.23 -0.03,-0.28 z" + id="path650" /> + <path + class="st1" + d="m 258.89,464.72 c -0.07,-0.01 -0.14,-0.03 -0.21,-0.04 -0.13,0 -0.26,0 -0.39,0 -0.08,0 -0.16,0.07 -0.15,0.15 0,0.08 0.07,0.15 0.15,0.15 0.13,0 0.26,0 0.39,0 0.07,0 0.14,-0.03 0.21,-0.04 0.06,-0.01 0.12,-0.02 0.18,-0.03 0.08,-0.02 0.08,-0.13 0,-0.16 -0.06,-0.02 -0.12,-0.02 -0.18,-0.03 z" + id="path652" /> + <path + class="st1" + d="m 259.7,465 c 0.64,0.01 1.29,-0.01 1.93,-0.02 0.32,-0.01 0.64,0.01 0.97,0.02 0.29,0 0.65,0.05 0.93,-0.04 0.12,-0.04 0.12,-0.21 0,-0.25 -0.27,-0.1 -0.64,-0.05 -0.93,-0.04 -0.32,0 -0.64,0.02 -0.97,0.02 -0.64,-0.01 -1.29,-0.03 -1.93,-0.02 -0.22,-0.01 -0.22,0.33 0,0.33 z" + id="path654" /> + <path + class="st1" + d="m 252.44,464.99 c -0.25,-0.01 -0.51,-0.02 -0.76,-0.02 h -0.76 c -0.25,0 -0.25,0.39 0,0.39 h 0.76 c 0.25,0 0.51,-0.02 0.76,-0.02 0.22,-0.02 0.22,-0.35 0,-0.35 z" + id="path656" /> + <path + class="st1" + d="m 291.3,367.61 c 0.06,0 0.13,0 0.19,0 0.07,-0.01 0.15,-0.03 0.22,-0.04 0.1,-0.02 0.1,-0.18 0,-0.19 -0.07,-0.01 -0.15,-0.03 -0.22,-0.04 -0.06,-0.01 -0.13,0 -0.19,0 -0.14,0 -0.28,-0.01 -0.41,-0.01 -0.28,0 -0.55,0 -0.83,0 -0.19,0 -0.19,0.29 0,0.29 0.28,0 0.55,0 0.83,0 0.14,0 0.27,0 0.41,-0.01 z" + id="path658" /> + <path + class="st1" + d="m 293.24,367.19 c -0.05,0 -0.1,0 -0.15,0 -0.04,0 -0.09,0.02 -0.12,0.05 -0.03,0.03 -0.05,0.08 -0.05,0.12 0,0.04 0.02,0.09 0.05,0.12 0.03,0.03 0.07,0.05 0.12,0.05 h 0.15 c 0.02,0 0.05,0 0.07,0 0.05,0 0.1,0 0.15,-0.03 0.05,-0.03 0.08,-0.08 0.08,-0.14 0,-0.06 -0.03,-0.11 -0.08,-0.14 -0.04,-0.03 -0.1,-0.03 -0.14,-0.03 -0.03,0 -0.05,0 -0.08,0 z" + id="path660" /> + <path + class="st1" + d="m 292.23,368.59 c -0.07,-0.01 -0.14,-0.02 -0.21,-0.03 -0.07,-0.01 -0.14,0 -0.21,0 -0.13,0 -0.27,0.01 -0.4,0.02 -0.27,0.02 -0.54,0.03 -0.81,0.05 -0.17,0.01 -0.17,0.28 0,0.27 0.28,-0.02 0.55,-0.04 0.83,-0.06 0.14,-0.01 0.28,-0.02 0.41,-0.03 0.06,-0.01 0.13,-0.01 0.19,-0.02 0.07,-0.02 0.14,-0.04 0.21,-0.06 0.1,-0.01 0.07,-0.13 -0.01,-0.14 z" + id="path662" /> + <path + class="st1" + d="m 292.88,368.77 c 0.01,0.01 0.02,0.02 0.03,0.02 0.02,0.01 0.05,0.02 0.07,0.02 0.02,0 0.03,0 0.05,0 0.01,0 0.01,0 0.02,0 0.02,0 0.04,0 0.06,-0.01 0.01,0 0.02,-0.01 0.03,-0.01 0.02,-0.01 0.03,-0.02 0.04,-0.04 0.01,-0.01 0.01,-0.02 0.02,-0.03 0.01,-0.02 0.01,-0.03 0.01,-0.05 0,-0.01 0,-0.02 0,-0.04 l -0.01,-0.03 c -0.01,-0.02 -0.02,-0.03 -0.04,-0.04 -0.01,-0.01 -0.03,-0.02 -0.05,-0.02 -0.01,0 -0.01,0 -0.02,0 -0.01,0 -0.01,0 -0.02,0 0,0 0,0 -0.01,0 0,0 -0.01,0 -0.01,0 -0.01,0 -0.01,0 -0.02,0 -0.02,0 -0.03,0 -0.05,0 -0.02,0 -0.04,0 -0.06,0.01 -0.02,0.01 -0.03,0.02 -0.05,0.03 -0.01,0.01 -0.02,0.03 -0.03,0.05 -0.01,0.02 -0.01,0.04 -0.01,0.06 0,0.01 0,0.03 0.01,0.04 0.01,0 0.03,0.02 0.04,0.04 z" + id="path664" /> + <path + class="st1" + d="m 291.58,369.71 c -0.19,0 -0.19,0.3 0,0.3 0.19,0 0.19,-0.3 0,-0.3 z" + id="path666" /> + <path + class="st1" + d="m 292.72,370.17 c 0.01,-0.01 0.02,-0.02 0.03,-0.03 0.01,-0.02 0.03,-0.04 0.02,-0.07 0,-0.02 -0.01,-0.04 -0.02,-0.06 -0.01,-0.02 -0.04,-0.05 -0.07,-0.05 l -0.2,-0.04 c -0.03,-0.01 -0.06,-0.01 -0.09,0 -0.03,0.01 -0.05,0.02 -0.07,0.04 -0.03,0.03 -0.05,0.07 -0.05,0.11 0,0.04 0.02,0.08 0.05,0.11 0.04,0.04 0.1,0.05 0.16,0.04 0.07,-0.01 0.14,-0.03 0.2,-0.04 0.02,0 0.03,0 0.04,-0.01 z" + id="path668" /> + <path + class="st1" + d="m 294.58,375.13 c 0.2,0.01 0.4,0.01 0.6,0.03 0.11,0.01 0.12,-0.15 0.02,-0.18 -0.19,-0.06 -0.38,-0.12 -0.58,-0.16 -0.2,-0.04 -0.41,-0.05 -0.62,-0.06 -0.41,-0.02 -0.82,0.02 -1.23,0.07 -0.16,0.02 -0.17,0.27 0,0.25 0.4,-0.04 0.8,-0.03 1.21,-0.01 0.2,0.03 0.4,0.05 0.6,0.06 z" + id="path670" /> + <path + class="st1" + d="m 293.96,376.82 c 0.16,0 0.16,-0.25 0,-0.25 -0.16,-0.01 -0.16,0.25 0,0.25 z" + id="path672" /> + <path + class="st1" + d="m 294.67,378.19 c 0.09,-0.04 0.07,-0.19 -0.03,-0.2 -0.04,-0.01 -0.09,-0.02 -0.13,-0.01 -0.03,0 -0.07,0.01 -0.1,0.01 -0.07,0.01 -0.15,0.02 -0.22,0.03 -0.15,0.02 -0.29,0.04 -0.44,0.06 -0.07,0.01 -0.14,0.06 -0.13,0.13 0,0.06 0.06,0.14 0.13,0.13 0.15,-0.02 0.3,-0.04 0.45,-0.06 0.07,-0.01 0.15,-0.02 0.22,-0.03 0.04,0 0.07,-0.01 0.11,-0.01 0.05,0 0.09,-0.02 0.14,-0.05 z" + id="path674" /> + <path + class="st1" + d="m 295.7,378.21 c 0.04,0 0.08,-0.01 0.11,-0.01 0.03,0 0.05,-0.01 0.08,-0.01 0.01,0 0.02,0 0.03,-0.01 0.02,-0.01 0.04,-0.02 0.05,-0.03 0.03,-0.03 0.03,-0.08 0,-0.1 -0.01,-0.01 -0.03,-0.03 -0.05,-0.03 -0.01,0 -0.02,0 -0.03,-0.01 -0.02,-0.01 -0.05,-0.01 -0.08,-0.01 -0.04,0 -0.08,-0.01 -0.11,-0.01 -0.03,0 -0.06,0.02 -0.08,0.03 -0.02,0.02 -0.04,0.05 -0.03,0.08 0,0.03 0.01,0.06 0.03,0.08 0.02,0.02 0.05,0.04 0.08,0.03 z" + id="path676" /> + <path + class="st1" + d="m 295.05,379.49 c -0.07,0 -0.15,-0.01 -0.22,-0.01 -0.07,0 -0.14,0.07 -0.14,0.14 0,0.07 0.06,0.14 0.14,0.14 l 0.22,-0.01 c 0.04,0 0.07,0 0.11,-0.01 0.04,0 0.09,-0.01 0.13,-0.02 0.1,-0.02 0.1,-0.17 0,-0.2 -0.04,-0.01 -0.08,-0.02 -0.13,-0.02 -0.04,-0.01 -0.07,-0.01 -0.11,-0.01 z" + id="path678" /> + <path + class="st1" + d="m 296.37,379.66 c 0.01,0.01 0.01,0.02 0.02,0.03 0.01,0.01 0.02,0.01 0.03,0.02 0.01,0 0.03,0.01 0.04,0.01 0.01,0 0.01,0 0.02,0 0.01,0 0.01,0 0.02,0 0,0 0.01,0 0.01,0 0.02,0.01 0.04,0.01 0.06,0 0.02,-0.01 0.04,-0.02 0.05,-0.03 0.01,-0.01 0.01,-0.02 0.02,-0.02 0.01,-0.02 0.02,-0.04 0.02,-0.06 0,-0.02 0,-0.03 -0.01,-0.05 0,-0.01 -0.01,-0.03 -0.02,-0.04 -0.01,-0.01 -0.03,-0.02 -0.05,-0.03 -0.02,-0.01 -0.04,-0.01 -0.06,0 0,0 -0.01,0 -0.01,0 -0.01,0 -0.01,0 -0.02,0 -0.01,0 -0.01,0 -0.02,0 -0.01,0 -0.03,0.01 -0.04,0.01 -0.01,0 -0.02,0.01 -0.02,0.01 -0.01,0.01 -0.02,0.01 -0.03,0.02 -0.01,0.01 -0.01,0.01 -0.01,0.02 -0.01,0.01 -0.01,0.02 -0.01,0.04 v 0.03 c 0.01,0.03 0.01,0.04 0.01,0.04 z" + id="path680" /> + <path + class="st1" + d="m 295.95,384.01 c 0.07,0 0.15,-0.01 0.22,-0.02 0.08,-0.01 0.16,-0.01 0.24,-0.06 0.08,-0.05 0.09,-0.18 0,-0.22 -0.13,-0.06 -0.3,-0.04 -0.44,-0.03 -0.15,0.01 -0.31,0.03 -0.46,0.04 -0.3,0.03 -0.6,0.05 -0.9,0.07 -0.17,0.01 -0.17,0.27 0,0.26 0.3,-0.01 0.6,-0.03 0.9,-0.04 0.15,0.01 0.3,0 0.44,0 z" + id="path682" /> + <path + class="st1" + d="m 296.88,384.05 c 0.01,0 0.02,0 0.03,0.01 0.02,0 0.04,0.01 0.05,0.01 0.02,0.01 0.04,0.01 0.07,0 0.02,-0.01 0.04,-0.02 0.05,-0.03 0.01,-0.01 0.01,-0.02 0.02,-0.02 0.01,-0.02 0.02,-0.04 0.02,-0.06 0,-0.02 0,-0.03 -0.01,-0.05 0,-0.02 -0.01,-0.03 -0.03,-0.04 -0.02,-0.02 -0.03,-0.03 -0.05,-0.03 -0.02,-0.01 -0.04,-0.01 -0.07,0 -0.02,0 -0.04,0.01 -0.05,0.01 -0.01,0 -0.02,0 -0.03,0.01 -0.02,0 -0.04,0.01 -0.05,0.03 l -0.02,0.02 c 0,0 0,0 0,0 0,0 0,0 0,0.01 -0.02,0.03 -0.02,0.06 0,0.09 0,0 0,0 0,0.01 0.02,0.01 0.04,0.03 0.07,0.03 z" + id="path684" /> + <path + class="st1" + d="m 296.77,385.43 c 0.19,-0.01 0.39,-0.02 0.58,-0.02 0.17,-0.01 0.41,0 0.57,-0.08 0.06,-0.03 0.07,-0.15 0,-0.18 -0.16,-0.07 -0.37,-0.04 -0.54,-0.04 -0.2,0.01 -0.4,0.02 -0.6,0.03 -0.39,0.02 -0.79,0.04 -1.18,0.06 -0.18,0.01 -0.18,0.28 0,0.28 0.38,-0.02 0.78,-0.03 1.17,-0.05 z" + id="path686" /> + <path + class="st1" + d="m 297.14,386.77 c -0.12,-0.04 -0.25,-0.03 -0.37,-0.03 -0.12,0 -0.23,0 -0.35,0 -0.24,0 -0.48,0.01 -0.72,0.01 -0.17,0 -0.17,0.26 0,0.26 0.24,0 0.48,0.01 0.72,0.01 0.12,0 0.23,0 0.35,0 0.12,0 0.25,0.01 0.37,-0.03 0.11,-0.03 0.11,-0.19 0,-0.22 z" + id="path688" /> + <path + class="st1" + d="m 298.41,387.11 c 0.16,0 0.16,-0.24 0,-0.24 -0.16,0 -0.16,0.24 0,0.24 z" + id="path690" /> + <path + class="st1" + d="m 297.21,388.63 c 0.17,0 0.17,-0.26 0,-0.26 -0.16,0.01 -0.16,0.26 0,0.26 z" + id="path692" /> + <path + class="st1" + d="m 298.46,390.88 c 0.14,-0.01 0.31,0 0.43,-0.09 -0.02,0.01 -0.04,0.02 -0.06,0.04 0.06,-0.02 0.13,-0.03 0.18,-0.06 0.06,-0.04 0.07,-0.13 0,-0.17 -0.06,-0.03 -0.13,-0.04 -0.19,-0.04 -0.11,-0.04 -0.26,-0.02 -0.37,-0.01 -0.14,0.01 -0.27,0.03 -0.41,0.04 -0.27,0.03 -0.54,0.05 -0.82,0.07 -0.18,0.02 -0.18,0.29 0,0.28 0.28,-0.01 0.56,-0.02 0.83,-0.03 0.13,-0.02 0.27,-0.02 0.41,-0.03 z" + id="path694" /> + <path + class="st1" + d="m 299.58,390.67 c 0,0.07 0.06,0.13 0.13,0.13 0.08,0 0.15,0 0.23,0 0.04,0 0.07,0 0.11,0 0.04,0 0.07,0 0.11,-0.02 0.02,-0.01 0.04,-0.03 0.05,-0.04 0.04,-0.03 0.04,-0.1 0,-0.13 -0.02,-0.01 -0.04,-0.03 -0.05,-0.04 -0.03,-0.02 -0.07,-0.02 -0.11,-0.02 h -0.11 c -0.08,0 -0.15,0 -0.23,0 -0.07,0 -0.13,0.05 -0.13,0.12 z" + id="path696" /> + <path + class="st1" + d="m 299.62,392.15 c 0.07,-0.02 0.07,-0.12 0,-0.14 -0.06,-0.02 -0.13,-0.02 -0.2,-0.03 -0.07,-0.01 -0.14,-0.02 -0.21,-0.02 -0.14,-0.01 -0.27,-0.01 -0.41,-0.01 -0.28,-0.01 -0.55,-0.01 -0.83,-0.01 -0.17,0 -0.17,0.27 0,0.27 0.28,0 0.55,0 0.83,-0.01 0.14,0 0.27,0 0.41,-0.01 0.07,0 0.13,-0.02 0.2,-0.02 0.07,0 0.14,0 0.21,-0.02 z" + id="path698" /> + <path + class="st1" + d="m 299.49,396.09 c -0.15,0 -0.15,0.23 0,0.23 h 0.44 c 0.15,0 0.31,0.01 0.45,-0.04 0.08,-0.02 0.08,-0.13 0,-0.16 -0.14,-0.04 -0.3,-0.04 -0.45,-0.04 h -0.44 z" + id="path700" /> + <path + class="st1" + d="m 301.44,396.17 c -0.05,0 -0.05,0.07 0,0.07 0.05,0 0.05,-0.07 0,-0.07 z" + id="path702" /> + <path + class="st1" + d="m 300.2,397.65 c -0.13,0.02 -0.26,0.03 -0.39,0.05 -0.08,0.01 -0.14,0.06 -0.13,0.15 0.01,0.08 0.08,0.12 0.16,0.11 l 0.38,-0.06 c 0.06,-0.01 0.13,-0.02 0.19,-0.04 0.03,-0.01 0.06,-0.01 0.09,-0.02 0.04,-0.01 0.07,-0.02 0.1,-0.04 0.06,-0.03 0.05,-0.14 -0.02,-0.15 -0.04,-0.01 -0.07,-0.01 -0.11,-0.01 -0.03,0 -0.06,0 -0.09,0.01 -0.05,-0.01 -0.11,-0.01 -0.18,0 z" + id="path704" /> + <path + class="st1" + d="m 301.66,397.75 c -0.11,0 -0.11,0.17 0,0.17 0.11,-0.01 0.11,-0.17 0,-0.17 z" + id="path706" /> + <path + class="st1" + d="m 300.41,399.69 h -0.16 c -0.04,0 -0.09,0.04 -0.09,0.09 0,0.05 0.04,0.09 0.09,0.09 h 0.16 c 0.05,0 0.11,-0.01 0.16,-0.01 0.02,0 0.04,-0.01 0.05,-0.02 0.01,-0.01 0.02,-0.03 0.02,-0.05 0,-0.04 -0.03,-0.07 -0.07,-0.07 -0.05,-0.02 -0.1,-0.03 -0.16,-0.03 z" + id="path708" /> + <path + class="st1" + d="m 301.55,401.52 c 0.15,0 0.15,-0.23 0,-0.23 -0.15,0 -0.15,0.23 0,0.23 z" + id="path710" /> + <path + class="st1" + d="m 302.24,408.49 c 0.26,-0.06 0.53,-0.09 0.8,-0.08 0.27,0.01 0.54,0.08 0.81,0.04 0.08,-0.01 0.11,-0.13 0.05,-0.18 -0.24,-0.19 -0.57,-0.22 -0.86,-0.21 -0.3,0.01 -0.6,0.05 -0.88,0.14 -0.19,0.06 -0.11,0.34 0.08,0.29 z" + id="path712" /> + <path + class="st1" + d="m 304.3,408.53 c 0.01,0.01 0.03,0.02 0.05,0.03 0.02,0 0.04,0 0.05,0 l 0.06,-0.01 c 0,0 0.01,0 0.01,0 0.02,-0.01 0.05,-0.02 0.06,-0.04 0.01,-0.01 0.01,-0.03 0.01,-0.04 0,-0.02 -0.01,-0.03 -0.01,-0.04 -0.01,-0.02 -0.03,-0.04 -0.06,-0.04 0,0 -0.01,0 -0.01,0 l -0.06,-0.01 c -0.02,0 -0.04,0 -0.05,0 -0.02,0 -0.03,0.01 -0.05,0.03 -0.02,0.02 -0.03,0.04 -0.03,0.07 0,0.01 0,0.03 0.01,0.04 0,-0.01 0.01,0 0.02,0.01 z" + id="path714" /> + <path + class="st1" + d="m 303.51,409.73 c -0.18,0.02 -0.37,0.04 -0.55,0.06 -0.08,0.01 -0.16,0.06 -0.16,0.16 0,0.08 0.07,0.16 0.16,0.16 l 0.56,-0.05 c 0.09,-0.01 0.18,-0.02 0.28,-0.03 0.11,-0.01 0.22,-0.01 0.31,-0.07 0.1,-0.06 0.07,-0.2 -0.03,-0.24 -0.09,-0.04 -0.19,-0.02 -0.29,-0.01 -0.09,0 -0.19,0.01 -0.28,0.02 z" + id="path716" /> + <path + class="st1" + d="m 303.26,411.18 c -0.06,0.01 -0.11,0.02 -0.17,0.03 -0.06,0.02 -0.11,0.03 -0.16,0.05 -0.03,0.01 -0.06,0.03 -0.08,0.06 -0.02,0.03 -0.02,0.07 -0.01,0.11 0.01,0.03 0.03,0.06 0.06,0.08 0.03,0.02 0.07,0.03 0.11,0.01 0.05,-0.02 0.11,-0.04 0.16,-0.06 0.06,-0.02 0.12,-0.05 0.18,-0.08 0.05,-0.02 0.06,-0.09 0.04,-0.13 -0.01,-0.02 -0.02,-0.04 -0.04,-0.05 -0.03,-0.02 -0.06,-0.02 -0.09,-0.02 z" + id="path718" /> + <path + class="st1" + d="m 304.8,411.39 c 0.15,0 0.15,-0.23 0,-0.23 -0.14,0 -0.14,0.23 0,0.23 z" + id="path720" /> + <path + class="st1" + d="m 303.9,413.2 c -0.07,0.01 -0.11,0.1 -0.09,0.16 0.02,0.07 0.09,0.11 0.16,0.09 0.23,-0.04 0.46,-0.04 0.69,0 0.11,0.02 0.23,0.05 0.34,0.08 0.11,0.03 0.23,0.08 0.34,0.08 0.05,0 0.09,-0.06 0.06,-0.1 -0.08,-0.1 -0.19,-0.16 -0.31,-0.21 -0.13,-0.05 -0.25,-0.09 -0.39,-0.11 -0.26,-0.04 -0.53,-0.04 -0.8,0.01 z" + id="path722" /> + <path + class="st1" + d="m 306.34,413.75 c 0.06,0 0.11,0 0.17,0 0.06,0 0.14,0.01 0.19,-0.04 0.03,-0.03 0.03,-0.08 0,-0.1 -0.05,-0.05 -0.12,-0.04 -0.18,-0.04 -0.06,0 -0.12,0 -0.18,0 l -0.34,0.01 c -0.11,0 -0.11,0.16 0,0.17 z" + id="path724" /> + <path + class="st1" + d="m 305.67,415.1 c 0.19,0 0.19,-0.29 0,-0.29 -0.18,0 -0.19,0.29 0,0.29 z" + id="path726" /> + <path + class="st1" + d="m 306.54,415.27 c -0.15,0 -0.15,0.24 0,0.24 0.15,0 0.15,-0.24 0,-0.24 z" + id="path728" /> + <path + class="st1" + d="m 306.43,421.35 c 0.29,0.02 0.59,0.04 0.88,0.05 0.15,0 0.3,0.01 0.44,0.01 0.14,0 0.28,0.01 0.42,-0.03 0.03,-0.01 0.04,-0.06 0.01,-0.07 -0.13,-0.06 -0.27,-0.06 -0.4,-0.08 -0.15,-0.02 -0.3,-0.03 -0.45,-0.05 -0.3,-0.03 -0.6,-0.04 -0.9,-0.06 -0.16,-0.02 -0.15,0.22 0,0.23 z" + id="path730" /> + <path + class="st1" + d="m 308.49,421.31 c -0.06,0 -0.06,0.09 0,0.09 0.05,0 0.05,-0.09 0,-0.09 z" + id="path732" /> + <path + class="st1" + d="m 306.12,419.85 c -0.06,0.04 -0.05,0.14 -0.01,0.19 0.04,0.05 0.13,0.08 0.19,0.04 0.03,-0.02 0.07,-0.05 0.1,-0.06 0.02,-0.01 0.04,-0.02 0.06,-0.03 0,0 0,0 0,0 0,0 0,0 0,0 0.01,0 0.02,-0.01 0.03,-0.01 0.04,-0.01 0.08,-0.03 0.12,-0.03 0.02,0 0.04,-0.01 0.06,-0.01 0,0 0.01,0 0.02,0 0.01,0 0.03,0 0.03,0 0.04,0 0.08,0 0.12,0 0.02,0 0.04,0 0.06,0 0,0 0.01,0 0.01,0 0.01,0 0.02,0 0.02,0 0.03,0 0.06,0.01 0.09,0.01 0,0 0.01,0 0.01,0 0,0 0,0 0,0 0.01,0 0.02,0 0.03,0.01 0.04,0.01 0.07,0.01 0.11,0 0.01,0 0.02,0 0.02,-0.01 0,0 0.02,-0.01 0.03,-0.01 0.07,-0.03 0.1,-0.09 0.06,-0.16 -0.05,-0.11 -0.19,-0.16 -0.31,-0.17 -0.1,-0.01 -0.21,-0.01 -0.31,0.01 -0.19,0.02 -0.38,0.11 -0.54,0.23 z" + id="path734" /> + <path + class="st1" + d="m 307.89,424.09 c -0.09,0.01 -0.18,0.01 -0.27,0.02 -0.18,0.02 -0.36,0.04 -0.54,0.05 -0.06,0.01 -0.12,0.05 -0.12,0.12 0,0.06 0.05,0.12 0.12,0.12 0.18,-0.02 0.37,-0.04 0.55,-0.06 0.1,-0.01 0.19,-0.02 0.28,-0.04 0.09,-0.01 0.18,-0.04 0.27,-0.06 0.09,-0.02 0.06,-0.15 -0.02,-0.15 -0.09,0.01 -0.18,0 -0.27,0 z" + id="path736" /> + <path + class="st1" + d="m 309.36,424.13 c 0.05,-0.01 0.1,-0.02 0.16,-0.04 0.05,-0.01 0.1,-0.02 0.15,-0.02 0.07,0 0.12,-0.07 0.1,-0.13 -0.02,-0.06 -0.1,-0.1 -0.16,-0.06 -0.09,0.06 -0.19,0.11 -0.29,0.14 -0.1,0.04 -0.21,0.08 -0.31,0.12 -0.05,0.02 -0.03,0.1 0.02,0.08 0.12,-0.03 0.22,-0.06 0.33,-0.09 z" + id="path738" /> + <path + class="st1" + d="m 308.04,425.4 c -0.02,0.03 -0.03,0.08 -0.01,0.11 0.02,0.08 0.1,0.12 0.18,0.1 0.09,-0.02 0.18,-0.04 0.27,-0.07 0.05,-0.01 0.09,-0.02 0.14,-0.03 0.05,-0.01 0.1,-0.04 0.15,-0.06 0.04,-0.02 0.06,-0.08 0.05,-0.12 -0.01,-0.04 -0.05,-0.08 -0.1,-0.08 -0.02,0 -0.05,0 -0.07,0 -0.03,0 -0.06,0 -0.09,0.01 -0.05,0.01 -0.09,0.02 -0.14,0.02 -0.09,0.02 -0.19,0.03 -0.28,0.05 -0.05,0.01 -0.08,0.05 -0.1,0.07 z" + id="path740" /> + <path + class="st1" + d="m 309.79,425.66 c 0.1,0 0.1,-0.16 0,-0.16 -0.1,0 -0.1,0.16 0,0.16 z" + id="path742" /> + <path + class="st1" + d="m 309.4,426.89 c -0.11,-0.05 -0.25,-0.06 -0.37,-0.08 -0.13,-0.01 -0.27,-0.02 -0.4,-0.03 -0.26,-0.02 -0.53,-0.04 -0.79,-0.05 -0.18,-0.01 -0.17,0.26 0,0.27 0.26,0.02 0.52,0.03 0.77,0.05 0.13,0.01 0.26,0.02 0.39,0.02 0.12,0.01 0.26,0.02 0.38,-0.02 0.07,-0.02 0.1,-0.13 0.02,-0.16 z" + id="path744" /> + <path + class="st1" + d="m 310.22,427.11 c 0.08,0 0.15,0 0.23,0 0.04,0 0.07,0 0.11,0 0.03,0 0.05,-0.01 0.08,-0.02 0.03,-0.01 0.07,-0.02 0.08,-0.06 0.02,-0.03 0.02,-0.06 0,-0.09 -0.02,-0.03 -0.05,-0.05 -0.08,-0.06 -0.03,-0.01 -0.05,-0.02 -0.08,-0.02 -0.04,0 -0.07,0 -0.11,0 -0.08,0 -0.15,0 -0.23,0 -0.06,0 -0.12,0.06 -0.12,0.12 0.01,0.08 0.06,0.13 0.12,0.13 z" + id="path746" /> + <path + class="st1" + d="m 309.26,428.63 c -0.02,0.02 -0.04,0.07 -0.04,0.1 0,0.04 0.01,0.08 0.04,0.1 0.03,0.02 0.06,0.05 0.1,0.04 l 0.17,-0.02 0.08,-0.01 c 0.02,0 0.04,0 0.06,-0.01 0.01,0 0.03,-0.01 0.04,-0.01 0.04,-0.01 0.07,-0.05 0.07,-0.09 0,-0.04 -0.03,-0.08 -0.07,-0.09 -0.01,0 -0.03,-0.01 -0.04,-0.01 -0.02,-0.01 -0.04,-0.01 -0.06,-0.01 -0.03,0 -0.05,-0.01 -0.08,-0.01 -0.06,-0.01 -0.11,-0.01 -0.17,-0.02 -0.04,-0.01 -0.08,0.01 -0.1,0.04 z" + id="path748" /> + <path + class="st1" + d="m 310.44,428.96 c 0.16,0 0.16,-0.25 0,-0.25 -0.16,0 -0.16,0.25 0,0.25 z" + id="path750" /> + <path + class="st1" + d="m 309.2,430.35 c 0,0.08 0.07,0.16 0.16,0.16 0.21,-0.02 0.41,-0.04 0.62,-0.06 0.11,-0.01 0.22,-0.01 0.32,-0.04 0.1,-0.02 0.22,-0.04 0.3,-0.09 0.07,-0.05 0.05,-0.14 -0.02,-0.17 -0.09,-0.04 -0.21,-0.03 -0.3,-0.03 -0.1,-0.01 -0.2,0.01 -0.3,0.02 -0.2,0.02 -0.41,0.04 -0.61,0.06 -0.1,0.01 -0.17,0.06 -0.17,0.15 z" + id="path752" /> + <path + class="st1" + d="m 311.21,430.57 c 0.01,0.01 0.02,0.01 0.03,0.02 0.01,0 0.01,0.01 0.02,0.01 0.02,0.01 0.03,0.01 0.05,0.02 0.02,0 0.05,0 0.07,0 0.01,0 0.02,0 0.03,0 0.02,0 0.04,0 0.05,-0.01 0.02,-0.01 0.03,-0.03 0.03,-0.05 0,-0.02 0,-0.04 -0.02,-0.05 0,-0.01 -0.01,-0.01 -0.01,-0.02 -0.01,-0.02 -0.03,-0.04 -0.04,-0.06 -0.02,-0.03 -0.05,-0.04 -0.08,-0.06 -0.02,-0.01 -0.04,-0.02 -0.06,-0.03 -0.03,-0.01 -0.06,-0.02 -0.09,-0.01 -0.03,0.01 -0.06,0.03 -0.07,0.06 -0.01,0.03 -0.02,0.06 -0.01,0.09 0.01,0.03 0.03,0.06 0.06,0.07 0,0 0.02,0.01 0.04,0.02 z" + id="path754" /> + <path + class="st1" + d="m 309.79,431.72 c -0.16,0.01 -0.17,0.27 0,0.26 0.28,-0.02 0.56,-0.03 0.85,-0.05 0.14,-0.01 0.28,-0.01 0.41,-0.03 0.07,-0.01 0.14,-0.01 0.21,-0.03 0.07,-0.01 0.15,-0.02 0.2,-0.05 0.05,-0.03 0.06,-0.12 0,-0.15 -0.06,-0.03 -0.13,-0.03 -0.2,-0.03 -0.06,0 -0.13,0 -0.19,0 -0.14,0.01 -0.29,0.02 -0.43,0.03 -0.29,0.01 -0.57,0.03 -0.85,0.05 z" + id="path756" /> + <path + class="st1" + d="m 311.85,432 c 0.04,0 0.08,0 0.12,0 0.03,0 0.06,0 0.09,-0.01 0.02,-0.01 0.04,-0.01 0.05,-0.02 0.02,-0.01 0.03,-0.03 0.05,-0.05 0.02,-0.03 0.02,-0.07 0,-0.1 -0.01,-0.02 -0.03,-0.04 -0.05,-0.05 -0.02,-0.01 -0.03,-0.01 -0.05,-0.02 -0.03,-0.01 -0.06,-0.01 -0.09,-0.01 -0.04,0 -0.08,0 -0.12,0 -0.03,0 -0.07,0.01 -0.09,0.04 -0.02,0.02 -0.04,0.06 -0.04,0.09 0,0.03 0.01,0.07 0.04,0.09 0.03,0.02 0.06,0.04 0.09,0.04 z" + id="path758" /> + <path + class="st1" + d="m 310.87,433.26 c -0.17,0 -0.17,0.26 0,0.26 0.17,0 0.17,-0.26 0,-0.26 z" + id="path760" /> + <path + class="st1" + d="m 311.74,434.07 c 0.18,0 0.18,-0.27 0,-0.27 -0.17,-0.01 -0.17,0.27 0,0.27 z" + id="path762" /> + <path + class="st1" + d="m 311.2,435.46 c 0.15,0 0.15,-0.23 0,-0.23 -0.15,0 -0.15,0.23 0,0.23 z" + id="path764" /> + <path + class="st1" + d="m 311.2,436.33 c 0.33,-0.01 0.66,-0.03 1,-0.04 0.17,-0.01 0.33,-0.01 0.5,-0.02 0.08,-0.01 0.15,-0.01 0.23,-0.02 0.09,-0.01 0.17,-0.04 0.26,-0.06 0.13,-0.03 0.09,-0.2 -0.03,-0.21 -0.08,-0.01 -0.16,-0.03 -0.25,-0.03 -0.08,0 -0.17,0.01 -0.25,0.01 -0.16,0 -0.32,0.02 -0.48,0.03 -0.33,0.02 -0.65,0.04 -0.98,0.06 -0.18,0.01 -0.19,0.29 0,0.28 z" + id="path766" /> + <path + class="st1" + d="m 311.63,438.03 c -0.16,0 -0.16,0.25 0,0.25 0.17,0.01 0.17,-0.25 0,-0.25 z" + id="path768" /> + <path + class="st1" + d="m 314.13,437.85 c -0.12,0 -0.12,0.19 0,0.19 0.12,0 0.12,-0.19 0,-0.19 z" + id="path770" /> + <path + class="st1" + d="m 312.39,439.76 c 0.39,-0.03 0.78,-0.05 1.16,-0.09 0.19,-0.02 0.39,-0.05 0.58,-0.07 0.09,-0.01 0.18,-0.02 0.27,-0.02 0.1,0 0.2,0.01 0.29,-0.02 0.07,-0.03 0.09,-0.14 0,-0.16 -0.09,-0.02 -0.18,0 -0.27,0.02 -0.1,0.01 -0.19,0.02 -0.29,0.03 -0.19,0.01 -0.39,0.01 -0.58,0.03 -0.39,0.03 -0.77,0.07 -1.16,0.11 -0.11,0.01 -0.11,0.18 0,0.17 z" + id="path772" /> + <path + class="st1" + d="m 313.53,440.88 c 0.05,0 0.11,0 0.16,0 0.07,0 0.13,0.01 0.19,-0.04 0.03,-0.03 0.04,-0.09 0.02,-0.12 -0.04,-0.06 -0.1,-0.07 -0.17,-0.08 -0.06,-0.01 -0.13,-0.02 -0.2,-0.02 -0.13,0 -0.26,0.01 -0.38,0.03 -0.25,0.04 -0.49,0.11 -0.71,0.22 -0.07,0.03 -0.09,0.13 -0.05,0.2 0.04,0.07 0.13,0.09 0.2,0.05 0.2,-0.1 0.41,-0.16 0.63,-0.2 0.09,-0.03 0.2,-0.04 0.31,-0.04 z" + id="path774" /> + <path + class="st1" + d="m 314.54,447.04 h -0.41 c -0.06,0 -0.12,0.06 -0.12,0.12 0,0.07 0.05,0.12 0.12,0.12 h 0.41 c 0.05,0 0.1,-0.01 0.15,-0.02 0.1,-0.02 0.1,-0.18 0,-0.2 -0.05,-0.01 -0.1,-0.02 -0.15,-0.02 z" + id="path776" /> + <path + class="st1" + d="m 314.89,448.78 c 0.14,0 0.14,-0.22 0,-0.22 -0.14,0.01 -0.14,0.22 0,0.22 z" + id="path778" /> + <path + class="st1" + d="m 314.68,450.77 c -0.18,0.02 -0.37,0.04 -0.55,0.05 -0.07,0.01 -0.13,0.06 -0.13,0.13 0,0.07 0.06,0.14 0.13,0.13 0.19,-0.02 0.38,-0.04 0.56,-0.06 0.09,-0.01 0.18,-0.02 0.28,-0.03 0.1,-0.01 0.2,-0.02 0.3,-0.06 0.08,-0.04 0.06,-0.16 -0.02,-0.19 -0.09,-0.03 -0.19,-0.01 -0.28,0 -0.11,0.01 -0.2,0.02 -0.29,0.03 z" + id="path780" /> + <path + class="st1" + d="m 316.4,450.9 h 0.33 0.16 c 0.07,0 0.18,-0.02 0.23,-0.08 0.05,-0.06 0.05,-0.14 0,-0.2 -0.05,-0.06 -0.16,-0.08 -0.23,-0.08 h -0.16 c -0.11,0 -0.22,0 -0.33,0 -0.09,0 -0.17,0.08 -0.17,0.17 0.01,0.12 0.08,0.19 0.17,0.19 z" + id="path782" /> + <path + class="st1" + d="m 314.87,452.36 c 0,0.06 0.06,0.13 0.13,0.13 0.17,-0.02 0.34,-0.04 0.51,-0.06 0.08,-0.01 0.17,-0.02 0.25,-0.03 0.09,-0.01 0.19,-0.01 0.27,-0.06 0.08,-0.05 0.06,-0.16 -0.02,-0.19 -0.09,-0.03 -0.17,-0.01 -0.26,0 -0.08,0.01 -0.17,0.02 -0.25,0.03 -0.17,0.02 -0.33,0.04 -0.5,0.06 -0.07,0 -0.13,0.05 -0.13,0.12 z" + id="path784" /> + <path + class="st1" + d="m 317.12,452.36 c -0.01,0.01 -0.01,0.03 -0.02,0.04 0,0.01 0,0.01 -0.01,0.02 0,0.01 -0.01,0.02 -0.01,0.03 0,0.01 0,0.03 0,0.04 0,0.01 0.01,0.02 0.02,0.03 0.01,0.01 0.02,0.02 0.03,0.02 0.01,0 0.03,0 0.04,0 0.01,0 0.02,-0.01 0.03,-0.01 0.02,-0.01 0.04,-0.01 0.06,-0.02 0.02,-0.01 0.04,-0.02 0.07,-0.04 0.04,-0.02 0.06,-0.07 0.06,-0.11 0,-0.01 0,-0.02 0,-0.03 -0.01,-0.02 -0.02,-0.04 -0.03,-0.06 -0.01,-0.01 -0.03,-0.02 -0.04,-0.03 -0.02,-0.01 -0.03,-0.01 -0.05,-0.01 -0.04,0 -0.09,0.02 -0.11,0.06 -0.01,0.03 -0.02,0.05 -0.04,0.07 z" + id="path786" /> + <path + class="st1" + d="m 317.05,454.48 c -0.43,-0.03 -0.87,-0.09 -1.3,-0.11 -0.43,-0.02 -0.87,-0.01 -1.3,-0.02 -0.18,0 -0.18,0.28 0,0.29 0.43,0 0.87,0.01 1.3,0 0.43,-0.01 0.87,-0.06 1.3,-0.09 0.05,0 0.05,-0.06 0,-0.07 z" + id="path788" /> + <path + class="st1" + d="m 317.7,454.49 c -0.06,0 -0.06,0.09 0,0.09 0.06,-0.01 0.06,-0.09 0,-0.09 z" + id="path790" /> + <path + class="st1" + d="m 312.39,457.62 c 0.39,-0.02 0.77,-0.04 1.16,-0.05 0.19,-0.01 0.39,-0.02 0.58,-0.04 0.19,-0.02 0.39,-0.01 0.57,-0.06 0.11,-0.03 0.12,-0.21 0,-0.23 -0.19,-0.04 -0.38,-0.01 -0.57,-0.02 -0.19,0 -0.39,0 -0.58,0.01 -0.39,0.02 -0.77,0.03 -1.16,0.05 -0.22,-0.01 -0.23,0.35 0,0.34 z" + id="path792" /> + <path + class="st1" + d="m 317.31,456.95 c -0.04,0.02 -0.07,0.04 -0.11,0.06 -0.03,0.01 -0.06,0.05 -0.06,0.08 -0.01,0.02 -0.01,0.04 0,0.06 0,0.02 0.01,0.04 0.02,0.05 0.02,0.03 0.05,0.06 0.08,0.06 0.04,0.01 0.07,0 0.11,-0.01 0.04,-0.02 0.07,-0.04 0.11,-0.06 0.02,-0.01 0.04,-0.02 0.05,-0.03 0.01,-0.01 0.03,-0.02 0.04,-0.03 0.01,-0.01 0.02,-0.02 0.03,-0.03 0.01,-0.01 0.01,-0.02 0.02,-0.02 0.02,-0.03 0.02,-0.08 0,-0.12 -0.02,-0.04 -0.06,-0.06 -0.1,-0.06 -0.01,0 -0.02,0 -0.03,0 -0.03,0 -0.06,0.01 -0.09,0.02 -0.03,0.01 -0.05,0.02 -0.07,0.03 z" + id="path794" /> + <path + class="st1" + d="m 313.48,458.77 c 0.01,0.07 0.07,0.1 0.13,0.09 0.32,-0.05 0.64,-0.09 0.96,-0.16 0.06,-0.01 0.04,-0.1 -0.01,-0.1 -0.33,0.01 -0.65,0.04 -0.98,0.06 -0.06,0 -0.1,0.05 -0.1,0.11 z" + id="path796" /> + <path + class="st1" + d="m 317.49,458.39 c -0.01,0.01 -0.01,0.03 -0.01,0.05 0,0.02 0,0.03 0.01,0.05 0,0.01 0.01,0.03 0.02,0.04 0.01,0.01 0.02,0.01 0.02,0.02 0.02,0.01 0.04,0.02 0.06,0.02 0.01,0 0.02,0 0.03,0 0.02,-0.01 0.04,-0.02 0.05,-0.03 0.02,-0.02 0.04,-0.04 0.06,-0.06 0.01,-0.01 0.02,-0.02 0.03,-0.03 0.01,-0.01 0.02,-0.02 0.02,-0.03 0,-0.01 0.01,-0.02 0.01,-0.03 v -0.03 c 0,0 0,0 0,0 0,0 0,-0.01 0,-0.01 0,-0.01 0,-0.03 -0.01,-0.04 0,-0.01 -0.01,-0.02 -0.02,-0.03 -0.02,-0.02 -0.04,-0.03 -0.07,-0.03 h -0.01 c 0,0 0,0 0,0 -0.01,0 -0.01,0 -0.02,0 -0.02,0 -0.03,0.01 -0.04,0.01 -0.01,0.01 -0.02,0.01 -0.02,0.02 0,0 0,0 0,0 0,0 0,0 0,0 l -0.09,0.08 c -0.01,0 -0.02,0.01 -0.02,0.03 z" + id="path798" /> + <path + class="st1" + d="m 312.32,460.84 c 0.31,-0.06 0.63,-0.11 0.94,-0.17 0.16,-0.03 0.31,-0.05 0.47,-0.09 0.15,-0.03 0.32,-0.05 0.46,-0.12 0.09,-0.05 0.08,-0.22 -0.03,-0.23 -0.16,-0.02 -0.31,0.02 -0.47,0.04 -0.16,0.02 -0.33,0.05 -0.49,0.08 -0.32,0.06 -0.64,0.11 -0.96,0.17 -0.08,0.01 -0.13,0.12 -0.11,0.2 0.02,0.1 0.11,0.14 0.19,0.12 z" + id="path800" /> + <path + class="st1" + d="m 317.16,460.1 c -0.1,0.01 -0.19,0.08 -0.17,0.2 0.01,0.05 0.03,0.08 0.07,0.11 0.05,0.04 0.09,0.04 0.15,0.03 0.15,-0.02 0.29,-0.04 0.44,-0.06 0.07,-0.01 0.14,-0.03 0.22,-0.04 0.03,-0.01 0.07,-0.01 0.1,-0.02 0.04,-0.01 0.08,-0.03 0.12,-0.05 0.09,-0.05 0.07,-0.19 -0.03,-0.21 -0.04,-0.01 -0.09,-0.02 -0.13,-0.02 h -0.1 c -0.07,0 -0.15,0 -0.22,0.01 -0.15,0.02 -0.3,0.04 -0.45,0.05 z" + id="path802" /> + <path + class="st1" + d="m 318.93,460.3 c 0.03,-0.01 0.06,-0.02 0.1,-0.02 0.01,0 0.01,0 0,0 0.01,0 0.02,0 0.03,0 0.02,0 0.03,0 0.05,0 0.02,0 0.03,0 0.05,0 0.01,0 0.03,0 0.03,0 0.03,0 0.06,0.01 0.09,0.02 0.01,0 0.03,0.01 0.04,0.01 0.01,0 0.02,0.01 0.03,0.01 0.02,0.01 -0.02,-0.01 0,0 0.04,0.02 0.07,0.03 0.11,0.05 0.01,0 -0.01,-0.01 0.01,0 0.01,0 0.01,0.01 0.02,0.01 0.01,0.01 0.03,0.02 0.04,0.02 0.03,0.02 0.06,0.04 0.1,0.05 0.06,0.01 0.1,-0.04 0.09,-0.09 -0.01,-0.07 -0.09,-0.14 -0.15,-0.19 -0.07,-0.06 -0.15,-0.09 -0.24,-0.12 -0.16,-0.04 -0.33,-0.04 -0.49,0.01 -0.06,0.02 -0.11,0.08 -0.08,0.15 0.04,0.06 0.11,0.11 0.17,0.09 z" + id="path804" /> + <path + class="st1" + d="m 313.8,461.81 c 0.16,0 0.16,-0.25 0,-0.25 -0.16,0 -0.16,0.25 0,0.25 z" + id="path806" /> + <path + class="st1" + d="m 316.58,461.5 c 0.03,-0.01 0.06,-0.01 0.09,-0.02 0.04,-0.01 0.07,-0.02 0.11,-0.04 0.07,-0.04 0.06,-0.15 -0.02,-0.17 -0.04,-0.01 -0.07,-0.02 -0.11,-0.01 -0.03,0 -0.06,0.01 -0.09,0.01 -0.06,0.01 -0.13,0.01 -0.19,0.02 -0.13,0.02 -0.26,0.03 -0.39,0.05 -0.08,0.01 -0.14,0.06 -0.13,0.15 0.01,0.09 0.09,0.12 0.17,0.11 0.13,-0.02 0.26,-0.04 0.39,-0.06 0.04,-0.01 0.11,-0.03 0.17,-0.04 z" + id="path808" /> + <path + class="st1" + d="m 318.51,461.3 c 0.19,-0.04 0.38,-0.07 0.56,-0.11 0.1,-0.02 0.2,-0.04 0.29,-0.08 0.04,-0.02 0.08,-0.03 0.12,-0.04 0.06,-0.02 0.1,-0.04 0.14,-0.07 0.06,-0.05 0.02,-0.15 -0.04,-0.17 -0.09,-0.03 -0.19,0 -0.28,0 -0.1,0 -0.21,0.03 -0.31,0.04 -0.19,0.03 -0.37,0.08 -0.56,0.12 -0.09,0.02 -0.13,0.12 -0.11,0.2 0.01,0.09 0.1,0.13 0.19,0.11 z" + id="path810" /> + <path + class="st1" + d="m 320.52,461.06 c 0.18,0 0.35,0.01 0.53,0.01 0.18,0 0.35,0.02 0.53,0.01 0.2,-0.01 0.2,-0.29 0,-0.31 -0.18,-0.01 -0.35,0 -0.53,0.01 -0.18,0 -0.35,0.01 -0.53,0.01 -0.17,0.01 -0.17,0.26 0,0.27 z" + id="path812" /> + <path + class="st1" + d="m 313.98,462.54 c -0.52,0.06 -1.04,0.11 -1.57,0.15 -0.51,0.04 -1.02,0.06 -1.53,0.08 -0.51,0.02 -1.06,-0.04 -1.56,0.07 -0.12,0.03 -0.12,0.21 0,0.24 0.49,0.13 1.06,0.06 1.56,0.04 0.54,-0.02 1.08,-0.05 1.62,-0.1 0.51,-0.05 1.01,-0.1 1.51,-0.17 0.52,-0.07 1.07,-0.11 1.55,-0.32 0.07,-0.03 0.03,-0.13 -0.04,-0.14 -0.5,-0.03 -1.02,0.09 -1.54,0.15 z" + id="path814" /> + <path + class="st1" + d="m 316.98,462.31 c 0.02,-0.01 0.03,-0.03 0.05,-0.05 0.02,-0.03 0.02,-0.08 -0.01,-0.11 -0.02,-0.01 -0.03,-0.03 -0.06,-0.04 -0.02,0 -0.03,0 -0.05,0 -0.01,0 -0.02,0 -0.04,0 -0.01,0 -0.03,0 -0.04,0 0,0 0,0 -0.01,0 -0.02,-0.01 -0.04,-0.01 -0.07,0 -0.03,0 -0.07,0 -0.1,0.01 -0.1,0.02 -0.19,0.04 -0.29,0.06 -0.07,0.02 -0.12,0.11 -0.1,0.18 0.03,0.08 0.1,0.11 0.18,0.1 0.1,-0.02 0.19,-0.03 0.29,-0.05 0.02,0 0.05,-0.01 0.07,-0.02 0.02,-0.01 0.04,-0.01 0.06,-0.02 0,0 0.01,-0.01 0.01,-0.01 0.01,0 0.01,0 -0.01,0 0.02,0 0.05,-0.02 0.07,-0.03 0.02,0 0.03,-0.01 0.05,-0.02 z" + id="path816" /> + <path + class="st1" + d="m 317.27,462.3 c 0.83,-0.02 1.65,-0.02 2.48,-0.03 0.41,-0.01 0.81,-0.01 1.22,-0.02 0.2,-0.01 0.41,-0.02 0.61,-0.02 0.19,-0.01 0.37,0.01 0.54,-0.08 0.09,-0.05 0.1,-0.2 0,-0.25 -0.18,-0.08 -0.35,-0.05 -0.54,-0.05 -0.19,0.01 -0.37,0.02 -0.56,0.02 -0.42,0.02 -0.84,0.05 -1.26,0.08 -0.83,0.05 -1.65,0.12 -2.48,0.17 -0.13,0 -0.13,0.18 -0.01,0.18 z" + id="path818" /> + <path + class="st1" + d="m 317.16,462.96 c -0.02,-0.01 -0.05,-0.01 -0.07,-0.01 -0.04,0 -0.08,-0.01 -0.12,-0.01 -0.07,-0.01 -0.15,-0.01 -0.22,0 -0.15,0.01 -0.31,0.01 -0.46,0.02 -0.07,0 -0.13,0.06 -0.13,0.13 0,0.07 0.06,0.13 0.13,0.13 0.15,0.01 0.31,0.01 0.46,0.02 0.07,0 0.15,0 0.22,0 0.04,0 0.08,-0.01 0.12,-0.01 0.02,0 0.05,0 0.07,-0.01 0.03,-0.01 0.05,-0.03 0.08,-0.05 0.05,-0.04 0.04,-0.13 0,-0.16 -0.02,-0.02 -0.04,-0.04 -0.08,-0.05 z" + id="path820" /> + <path + class="st1" + d="m 317.81,462.95 c -0.19,0.02 -0.2,0.32 0,0.31 0.79,-0.05 1.58,-0.1 2.38,-0.17 0.78,-0.07 1.56,-0.1 2.32,-0.3 0.15,-0.04 0.11,-0.25 -0.04,-0.26 -0.78,-0.05 -1.55,0.07 -2.33,0.15 -0.78,0.07 -1.55,0.17 -2.33,0.27 z" + id="path822" /> + <path + class="st1" + d="m 264.56,395.16 c 0,0 0,0 0,0 0,0 0.01,0 0,0 0,0 0,0 0,0 z" + id="path824" /> + <path + class="st1" + d="m 259.17,406.62 c -0.02,-0.01 -0.04,-0.01 -0.06,-0.01 -0.02,0 -0.04,0 -0.06,-0.01 -0.05,0 -0.1,-0.01 -0.14,0 -0.09,0 -0.19,0 -0.28,0 -0.06,0 -0.12,0.05 -0.12,0.12 0,0.07 0.05,0.12 0.12,0.12 h 0.28 c 0.05,0 0.09,0 0.14,0 0.02,0 0.05,0 0.07,-0.01 0.02,0 0.03,0 0.05,-0.01 0.02,0 0.03,-0.02 0.05,-0.03 0.06,-0.04 0.06,-0.12 0,-0.16 -0.03,0 -0.04,0 -0.05,-0.01 z" + id="path826" /> + <path + class="st1" + d="m 276.83,399.81 c 0.13,0 0.26,0 0.39,0 0.06,0 0.13,-0.01 0.19,-0.01 0.07,0 0.14,0 0.21,-0.03 0.1,-0.04 0.1,-0.16 0,-0.2 -0.07,-0.03 -0.14,-0.03 -0.21,-0.03 -0.06,0 -0.13,-0.01 -0.19,-0.01 -0.13,0 -0.26,0 -0.39,0 -0.07,0 -0.14,0.06 -0.14,0.14 0,0.08 0.06,0.14 0.14,0.14 z" + id="path828" /> + <path + class="st1" + d="m 276.92,401.27 c 0,0.07 0.06,0.14 0.13,0.13 0.24,-0.01 0.48,-0.03 0.72,-0.04 0.12,-0.01 0.25,-0.01 0.37,-0.03 0.12,-0.02 0.23,-0.06 0.34,-0.09 0.06,-0.02 0.08,-0.13 0,-0.14 -0.12,-0.02 -0.23,-0.03 -0.35,-0.04 -0.12,-0.01 -0.24,0.01 -0.36,0.02 l -0.72,0.07 c -0.07,0 -0.13,0.05 -0.13,0.12 z" + id="path830" /> + <path + class="st1" + d="m 288.43,399.48 c -0.11,0 -0.11,0.17 0,0.17 0.11,0 0.11,-0.17 0,-0.17 z" + id="path832" /> + <path + class="st1" + d="m 277.27,405.73 c -0.07,0 -0.11,0.06 -0.12,0.12 -0.02,0.14 -0.04,0.29 -0.06,0.43 -0.01,0.07 -0.01,0.14 -0.02,0.21 -0.01,0.08 -0.01,0.15 -0.01,0.22 0.01,0.1 0.14,0.12 0.18,0.02 0.03,-0.07 0.04,-0.14 0.05,-0.22 0.01,-0.07 0.02,-0.15 0.04,-0.22 0.02,-0.15 0.04,-0.31 0.06,-0.46 0.01,-0.04 -0.06,-0.1 -0.12,-0.1 z" + id="path834" /> + <path + class="st1" + d="m 287.78,405.09 c -0.02,0.33 -0.04,0.66 -0.06,0.99 -0.02,0.33 -0.05,0.65 0,0.98 0.01,0.09 0.14,0.08 0.16,0 0.08,-0.32 0.09,-0.65 0.1,-0.98 0.02,-0.33 0.04,-0.66 0.05,-0.99 0.02,-0.16 -0.24,-0.16 -0.25,0 z" + id="path836" /> + <path + class="st1" + d="m 271.63,403.16 c 0.17,0 0.17,-0.26 0,-0.26 -0.17,0 -0.17,0.26 0,0.26 z" + id="path838" /> + <path + class="st1" + d="m 271.2,405.87 c 0.02,0 0.04,-0.01 0.06,-0.02 0.01,-0.01 0.03,-0.01 0.04,-0.02 0.01,0 0.01,-0.01 0.02,-0.01 0,0 0,0 0.01,0 0.01,0 0.01,-0.01 0.02,-0.01 v 0 c 0,0 0,0 0.01,-0.01 0.01,-0.02 0.02,-0.04 0.02,-0.06 0,-0.01 0,-0.01 0,-0.02 0,-0.01 -0.01,-0.03 -0.02,-0.04 -0.01,-0.01 -0.02,-0.02 -0.03,-0.03 -0.01,0 -0.01,-0.01 -0.02,-0.01 -0.01,-0.01 -0.03,-0.01 -0.04,-0.02 -0.02,-0.01 -0.04,-0.02 -0.06,-0.02 -0.02,0 -0.04,0.01 -0.06,0.02 -0.04,0.02 -0.06,0.06 -0.06,0.11 0,0.05 0.02,0.09 0.06,0.11 0,0.02 0.02,0.03 0.05,0.03 z" + id="path840" /> + <path + class="st1" + d="m 271.07,408.52 c 0.01,0 0.01,0.01 0.02,0.01 0.01,0.01 0.03,0.02 0.04,0.03 0.02,0.01 0.04,0.02 0.06,0.02 0.02,0 0.04,-0.01 0.06,-0.02 0.04,-0.02 0.06,-0.06 0.06,-0.11 0,-0.04 -0.02,-0.09 -0.06,-0.11 -0.02,-0.01 -0.04,-0.02 -0.06,-0.02 -0.02,0 -0.04,0.01 -0.06,0.02 -0.01,0.01 -0.03,0.02 -0.04,0.03 -0.01,0 -0.01,0.01 -0.02,0.01 -0.01,0.01 -0.02,0.02 -0.03,0.02 -0.01,0.01 -0.01,0.01 -0.01,0.02 0,0.01 -0.01,0.02 -0.01,0.02 0,0.02 0.01,0.04 0.02,0.05 0.01,0.02 0.02,0.03 0.03,0.03 z" + id="path842" /> + <path + class="st1" + d="m 273.49,410.09 c 0.07,-0.01 0.11,-0.09 0.1,-0.15 -0.01,-0.06 -0.07,-0.13 -0.14,-0.12 -0.28,0.03 -0.57,0.07 -0.85,0.11 -0.07,0.01 -0.14,0.06 -0.14,0.14 0,0.07 0.06,0.15 0.14,0.14 0.3,-0.04 0.6,-0.07 0.89,-0.12 z" + id="path844" /> + <path + class="st1" + d="m 271.95,409.68 c 0.29,0 0.59,0.01 0.88,0.01 0.15,0 0.29,0 0.44,0 0.14,0 0.3,0.02 0.44,-0.03 0.12,-0.04 0.12,-0.2 0,-0.24 -0.14,-0.05 -0.3,-0.03 -0.44,-0.03 -0.15,0 -0.29,0 -0.44,0 -0.29,0 -0.59,0.01 -0.88,0.01 -0.17,0 -0.17,0.27 0,0.28 z" + id="path846" /> + <path + class="st1" + d="m 275.75,409.65 c 0.13,0 0.26,0 0.39,0 0.06,0 0.13,-0.01 0.19,-0.01 0.07,0 0.13,-0.01 0.2,-0.02 0.07,-0.02 0.07,-0.12 0,-0.14 -0.07,-0.02 -0.13,-0.02 -0.2,-0.02 -0.06,0 -0.13,-0.01 -0.19,-0.01 -0.13,-0.01 -0.26,-0.01 -0.39,0 -0.06,0 -0.11,0.05 -0.11,0.11 0,0.04 0.05,0.09 0.11,0.09 z" + id="path848" /> + <path + class="st1" + d="m 278.24,409.9 0.72,-0.04 c 0.12,-0.01 0.24,-0.01 0.36,-0.02 0.12,-0.01 0.25,0 0.36,-0.05 0.1,-0.04 0.12,-0.19 0,-0.22 -0.12,-0.03 -0.24,-0.01 -0.36,0 -0.12,0.01 -0.24,0.02 -0.36,0.03 -0.24,0.02 -0.48,0.04 -0.72,0.06 -0.07,0.01 -0.13,0.06 -0.13,0.13 0,0.05 0.06,0.12 0.13,0.11 z" + id="path850" /> + <path + class="st1" + d="m 293.66,397.99 c 0.02,0 0.04,0 0.06,0 0.04,0 0.09,0 0.13,-0.01 0.06,-0.01 0.12,-0.05 0.13,-0.11 0.01,-0.07 -0.03,-0.12 -0.09,-0.14 -0.04,-0.01 -0.09,-0.02 -0.13,-0.03 -0.02,0 -0.04,-0.01 -0.06,-0.01 0.01,0 0.01,0 -0.01,-0.01 -0.01,-0.01 -0.03,-0.01 -0.04,-0.01 -0.09,-0.02 -0.19,-0.03 -0.28,-0.04 -0.17,-0.01 -0.33,-0.01 -0.5,0 -0.15,0 -0.18,0.22 -0.04,0.26 0.16,0.04 0.31,0.08 0.48,0.1 0.09,0.01 0.19,0.02 0.28,0.02 0.03,-0.01 0.1,-0.03 0.07,-0.02 z" + id="path852" /> + <path + class="st1" + d="m 294.94,397.93 c 0.2,-0.02 0.4,-0.04 0.6,-0.05 0.2,-0.02 0.41,-0.01 0.6,-0.06 0.13,-0.03 0.09,-0.21 -0.03,-0.22 -0.1,-0.01 -0.19,0.01 -0.29,0.02 -0.1,0.01 -0.19,0.02 -0.29,0.03 l -0.58,0.05 c -0.07,0.01 -0.12,0.05 -0.12,0.12 -0.02,0.05 0.04,0.12 0.11,0.11 z" + id="path854" /> + <path + class="st1" + d="m 293.7,398.7 c 0,0.08 0.07,0.15 0.15,0.15 0.15,0 0.3,0 0.45,0 0.07,0 0.15,0 0.22,-0.01 0.08,-0.01 0.18,0 0.25,-0.05 0.07,-0.05 0.07,-0.13 0,-0.18 -0.07,-0.05 -0.16,-0.04 -0.24,-0.05 -0.08,-0.01 -0.15,-0.01 -0.23,-0.01 -0.15,0 -0.3,0 -0.45,0 -0.07,0 -0.15,0.07 -0.15,0.15 z" + id="path856" /> + <path + class="st1" + d="m 294.72,399.43 c -0.07,0.01 -0.14,0.06 -0.14,0.14 0,0.07 0.06,0.14 0.14,0.14 l 0.73,-0.05 c 0.12,-0.01 0.24,-0.02 0.36,-0.03 0.13,-0.01 0.26,-0.01 0.37,-0.07 0.09,-0.05 0.06,-0.18 -0.03,-0.2 -0.11,-0.04 -0.24,-0.01 -0.36,-0.01 -0.12,0.01 -0.24,0.02 -0.36,0.03 z" + id="path858" /> + <path + class="st1" + d="m 294.83,401.75 c 0.32,-0.02 0.64,-0.03 0.96,-0.05 0.16,-0.01 0.31,-0.02 0.47,-0.02 0.08,0 0.16,-0.01 0.23,-0.03 0.08,-0.01 0.16,-0.01 0.23,-0.06 0.05,-0.04 0.07,-0.13 0,-0.16 -0.07,-0.04 -0.15,-0.03 -0.23,-0.04 -0.07,0 -0.14,-0.01 -0.22,0 -0.16,0.01 -0.33,0.02 -0.49,0.03 -0.32,0.02 -0.64,0.04 -0.96,0.07 -0.15,0.02 -0.15,0.27 0.01,0.26 z" + id="path860" /> + <path + class="st1" + d="m 297.14,401.87 c 0.07,-0.02 0.15,-0.04 0.22,-0.06 0.04,-0.01 0.07,-0.02 0.11,-0.03 0.05,-0.01 0.09,-0.04 0.13,-0.06 0.04,-0.03 0.07,-0.09 0.06,-0.14 -0.02,-0.05 -0.06,-0.09 -0.12,-0.09 -0.05,0 -0.09,0 -0.14,0.01 -0.04,0.01 -0.08,0.02 -0.11,0.03 l -0.22,0.06 c -0.07,0.02 -0.12,0.1 -0.1,0.17 0.02,0.08 0.1,0.13 0.17,0.11 z" + id="path862" /> + <path + class="st1" + d="m 295.5,403.23 c -0.29,0 -0.59,0.01 -0.88,0.01 -0.15,0 -0.15,0.23 0,0.23 0.29,0 0.59,0.01 0.88,0.01 0.29,0 0.58,0.01 0.86,-0.08 0.05,-0.02 0.05,-0.08 0,-0.09 -0.28,-0.09 -0.57,-0.08 -0.86,-0.08 z" + id="path864" /> + <path + class="st1" + d="m 296.67,403.39 c 0.01,0.05 0.05,0.1 0.11,0.1 0.17,-0.01 0.34,-0.03 0.51,-0.04 0.08,-0.01 0.17,-0.01 0.25,-0.02 0.1,-0.01 0.19,-0.01 0.28,-0.06 0.08,-0.05 0.06,-0.17 -0.03,-0.2 -0.09,-0.03 -0.18,-0.01 -0.27,0.01 -0.09,0.01 -0.17,0.02 -0.26,0.03 -0.17,0.02 -0.34,0.05 -0.5,0.07 -0.06,0 -0.09,0.06 -0.09,0.11 z" + id="path866" /> + <path + class="st1" + d="m 295.49,404.48 c 0.09,0 0.18,-0.01 0.28,-0.01 0.1,0 0.19,0 0.28,-0.03 0.1,-0.04 0.1,-0.17 0,-0.21 -0.09,-0.03 -0.19,-0.03 -0.28,-0.03 -0.09,0 -0.18,-0.01 -0.28,-0.01 -0.18,0 -0.37,0 -0.55,0 -0.18,0 -0.18,0.28 0,0.28 0.18,0.01 0.37,0.01 0.55,0.01 z" + id="path868" /> + <path + class="st1" + d="m 297.42,404.28 c -0.01,-0.01 -0.02,-0.02 -0.03,-0.03 -0.01,-0.01 -0.02,-0.02 -0.04,-0.02 l -0.1,-0.02 c -0.02,-0.01 -0.05,-0.01 -0.07,0 -0.02,0.01 -0.04,0.02 -0.06,0.03 -0.01,0.01 -0.01,0.02 -0.02,0.03 -0.01,0.02 -0.02,0.04 -0.02,0.07 0,0.02 0,0.04 0.01,0.05 0.01,0.02 0.01,0.03 0.03,0.04 0.02,0.02 0.04,0.03 0.06,0.03 0.02,0.01 0.05,0.01 0.07,0 l 0.1,-0.02 0.03,-0.01 c 0.01,-0.01 0.02,-0.02 0.03,-0.03 0.01,-0.01 0.01,-0.02 0.01,-0.02 0.01,-0.01 0.01,-0.03 0.01,-0.04 0,-0.01 0,-0.02 0,-0.03 z" + id="path870" /> + <path + class="st1" + d="m 294.29,405.3 c -0.07,0 -0.12,0.06 -0.12,0.12 0,0.07 0.06,0.12 0.12,0.12 0.15,0 0.29,0 0.44,0 0.07,0 0.15,0 0.22,-0.01 0.07,-0.01 0.15,-0.03 0.22,-0.04 0.07,-0.01 0.07,-0.12 0,-0.14 -0.07,-0.02 -0.15,-0.04 -0.22,-0.04 -0.07,-0.01 -0.15,-0.01 -0.22,-0.01 -0.15,-0.01 -0.3,-0.01 -0.44,0 z" + id="path872" /> + <path + class="st1" + d="m 295.56,406.28 c -0.06,0.01 -0.09,0.08 -0.07,0.13 0.02,0.06 0.07,0.08 0.13,0.07 0.22,-0.04 0.44,-0.07 0.66,-0.11 0.11,-0.02 0.22,-0.04 0.33,-0.05 0.05,-0.01 0.1,-0.02 0.15,-0.03 0.06,-0.01 0.11,-0.04 0.17,-0.06 0.09,-0.04 0.04,-0.17 -0.05,-0.17 -0.22,-0.01 -0.45,0.05 -0.67,0.1 -0.21,0.03 -0.43,0.07 -0.65,0.12 z" + id="path874" /> + <path + class="st1" + d="m 297.76,406.1 c -0.1,0 -0.1,0.16 0,0.16 0.1,0 0.1,-0.16 0,-0.16 z" + id="path876" /> + <path + class="st1" + d="m 294.18,407.1 c -0.17,0.02 -0.18,0.29 0,0.27 0.76,-0.07 1.51,-0.13 2.27,-0.19 0.38,-0.03 0.76,-0.06 1.13,-0.1 0.36,-0.03 0.72,-0.05 1.08,-0.13 0.12,-0.03 0.09,-0.21 -0.03,-0.21 -0.38,-0.02 -0.76,0.03 -1.13,0.07 -0.36,0.03 -0.73,0.06 -1.09,0.1 -0.75,0.06 -1.49,0.12 -2.23,0.19 z" + id="path878" /> + <path + class="st1" + d="m 297.57,407.89 c -0.09,-0.03 -0.18,0.01 -0.27,0.03 -0.09,0.03 -0.18,0.05 -0.28,0.07 -0.18,0.04 -0.36,0.07 -0.54,0.09 -0.15,0.02 -0.31,0 -0.46,0 -0.02,-0.05 -0.06,-0.08 -0.11,-0.09 -0.02,0 -0.05,0 -0.07,0 -0.03,0 -0.06,0 -0.09,0.01 -0.05,0.01 -0.09,0.02 -0.14,0.03 -0.09,0.02 -0.18,0.04 -0.28,0.05 -0.01,0 -0.02,0.02 -0.03,0.03 -0.01,0.01 -0.03,0.01 -0.03,0.03 -0.03,0.04 -0.05,0.09 -0.04,0.13 0.02,0.06 0.08,0.09 0.14,0.1 0,0 0,0 0.01,0 0.01,0 0.02,0 0.02,0 0.01,0 0.01,0 0.02,0 0,0 0.01,0 0.01,0 0.37,0.04 0.75,0.05 1.13,0.01 0.19,-0.02 0.38,-0.05 0.56,-0.09 0.17,-0.04 0.43,-0.06 0.54,-0.21 0.05,-0.07 -0.01,-0.16 -0.09,-0.19 z" + id="path880" /> + <path + class="st1" + d="m 284.1,409.8 c 0.24,0 0.49,0 0.73,0 0.12,0 0.24,0 0.36,0 0.06,0 0.12,0 0.18,0 0.03,0 0.06,0 0.08,0 0.04,0 0.08,-0.02 0.12,-0.04 0.08,-0.03 0.08,-0.17 0,-0.21 -0.07,-0.03 -0.12,-0.04 -0.2,-0.04 -0.06,0 -0.11,0 -0.17,0 -0.12,0 -0.25,0 -0.37,0 -0.24,0 -0.49,0 -0.73,0 -0.2,-0.01 -0.2,0.29 0,0.29 z" + id="path882" /> + <path + class="st1" + d="m 287.67,409.67 c 0.18,0 0.37,0 0.55,0 0.19,0 0.37,0 0.55,-0.06 0.07,-0.02 0.07,-0.13 0,-0.15 -0.18,-0.06 -0.37,-0.06 -0.55,-0.06 -0.18,0 -0.37,0 -0.55,0 -0.16,0.01 -0.16,0.27 0,0.27 z" + id="path884" /> + <path + class="st1" + d="m 290.82,409.69 c 0.18,0 0.37,0 0.55,0.01 0.09,0 0.18,0 0.28,0 0.1,0 0.19,0 0.29,-0.03 0.12,-0.04 0.12,-0.19 0,-0.24 -0.09,-0.04 -0.19,-0.03 -0.29,-0.03 -0.09,0 -0.18,0 -0.28,0 -0.18,0 -0.37,0 -0.55,0.01 -0.19,-0.02 -0.19,0.28 0,0.28 z" + id="path886" /> + <path + class="st1" + d="m 293.64,409.48 c 0.23,-0.02 0.45,-0.04 0.68,-0.06 0.11,-0.01 0.23,-0.02 0.34,-0.03 0.1,-0.02 0.28,-0.01 0.28,-0.16 0,-0.16 -0.19,-0.13 -0.3,-0.13 -0.11,0 -0.22,0.02 -0.33,0.03 -0.23,0.02 -0.45,0.05 -0.68,0.07 -0.08,0.01 -0.14,0.06 -0.14,0.14 0.01,0.07 0.07,0.14 0.15,0.14 z" + id="path888" /> + <path + class="st1" + d="m 297.76,408.42 c -0.07,0.01 -0.14,0.06 -0.14,0.14 0,0.07 0.06,0.15 0.14,0.14 0.23,-0.02 0.45,-0.03 0.68,-0.05 0.11,-0.01 0.22,-0.01 0.33,-0.03 0.1,-0.01 0.29,-0.05 0.29,-0.17 0,-0.13 -0.19,-0.14 -0.29,-0.14 -0.11,0 -0.22,0.02 -0.33,0.03 -0.23,0.03 -0.46,0.06 -0.68,0.08 z" + id="path890" /> + <path + class="st1" + d="m 294.31,400.51 c 0.06,-0.01 0.12,-0.07 0.13,-0.13 0.01,-0.06 0.01,-0.09 -0.02,-0.14 -0.03,-0.05 -0.1,-0.1 -0.16,-0.09 -0.26,0.03 -0.52,0.08 -0.78,0.12 -0.04,0.01 -0.09,0.05 -0.11,0.08 -0.02,0.04 -0.03,0.1 -0.02,0.14 0.01,0.04 0.04,0.09 0.08,0.11 0.05,0.02 0.09,0.03 0.14,0.02 0.12,-0.02 0.24,-0.03 0.37,-0.05 0.12,-0.03 0.25,-0.04 0.37,-0.06 z" + id="path892" /> + <path + class="st1" + d="M 294.07,403.04 C 294.04,403.01 294,403 293.96,403 c -0.04,0 -0.07,-0.01 -0.11,0 -0.04,0 -0.07,0.01 -0.11,0.01 -0.07,0.01 -0.14,0.02 -0.22,0.03 -0.04,0 -0.08,0.01 -0.11,0.03 -0.02,0.01 -0.03,0.02 -0.05,0.04 -0.05,0.05 -0.07,0.12 -0.06,0.19 0.01,0.06 0.04,0.11 0.08,0.15 0.05,0.04 0.13,0.07 0.2,0.04 0.07,-0.03 0.14,-0.06 0.21,-0.08 0.03,-0.01 0.07,-0.03 0.1,-0.04 0.03,-0.01 0.06,-0.02 0.08,-0.04 0.02,-0.01 0.03,-0.02 0.05,-0.03 0.05,-0.04 0.09,-0.1 0.07,-0.17 0.01,-0.05 -0.01,-0.07 -0.02,-0.09 z" + id="path894" /> + <path + class="st1" + d="m 274.88,412.37 c 0.17,0 0.35,0 0.52,0.01 0.17,0 0.35,0.01 0.52,0.01 0.17,0 0.18,-0.27 0,-0.27 -0.17,0 -0.35,0 -0.52,0.01 -0.17,0 -0.35,0 -0.52,0.01 -0.16,-0.01 -0.16,0.23 0,0.23 z" + id="path896" /> + <path + class="st1" + d="m 272.71,411.56 c -0.18,0.01 -0.18,0.3 0,0.29 0.28,-0.02 0.55,-0.04 0.83,-0.06 0.14,-0.01 0.28,-0.02 0.41,-0.03 0.14,-0.01 0.28,-0.01 0.41,-0.05 0.1,-0.03 0.12,-0.2 0,-0.22 -0.14,-0.02 -0.27,-0.01 -0.41,0 -0.14,0.01 -0.28,0.02 -0.41,0.03 z" + id="path898" /> + <path + class="st1" + d="m 276.18,414.6 c -0.08,0 -0.17,0 -0.25,0 -0.17,0 -0.34,0 -0.51,0 -0.08,0 -0.14,0.07 -0.14,0.14 0,0.08 0.07,0.14 0.14,0.14 0.17,0 0.34,0 0.51,0 0.08,0 0.17,0 0.25,0 0.09,0 0.19,0.01 0.27,-0.05 0.07,-0.05 0.07,-0.14 0,-0.19 -0.07,-0.05 -0.17,-0.04 -0.27,-0.04 z" + id="path900" /> + <path + class="st1" + d="m 277.16,415.4 c 0.13,-0.01 0.25,-0.03 0.38,-0.04 0.06,-0.01 0.12,-0.01 0.19,-0.02 0.07,-0.01 0.15,-0.01 0.22,-0.04 0.07,-0.02 0.11,-0.08 0.1,-0.15 -0.01,-0.07 -0.07,-0.12 -0.14,-0.12 -0.07,0 -0.14,0.01 -0.22,0.03 l -0.18,0.03 c -0.13,0.02 -0.25,0.04 -0.38,0.06 -0.06,0.01 -0.1,0.08 -0.09,0.14 0,0.05 0.05,0.11 0.12,0.11 z" + id="path902" /> + <path + class="st1" + d="m 277.69,416.86 c 0.09,-0.01 0.19,-0.01 0.28,-0.05 0.1,-0.05 0.07,-0.21 -0.03,-0.23 -0.08,-0.02 -0.18,0 -0.26,0.01 -0.08,0.01 -0.16,0.02 -0.24,0.03 -0.16,0.02 -0.33,0.04 -0.49,0.06 -0.07,0.01 -0.13,0.05 -0.13,0.13 0,0.06 0.06,0.13 0.13,0.13 0.17,-0.02 0.33,-0.03 0.5,-0.05 0.07,-0.02 0.15,-0.02 0.24,-0.03 z" + id="path904" /> + <path + class="st1" + d="m 278.5,417.66 c -0.02,-0.02 -0.03,-0.04 -0.06,-0.06 -0.02,-0.01 -0.04,-0.03 -0.06,-0.04 -0.1,-0.05 -0.22,-0.08 -0.34,-0.08 -0.23,-0.01 -0.45,0.07 -0.61,0.24 -0.05,0.05 -0.05,0.14 0,0.19 0.05,0.05 0.14,0.05 0.19,0 0.02,-0.01 0.03,-0.03 0.05,-0.04 -0.02,0.02 0.01,-0.01 0.01,-0.01 0.01,0 0.01,-0.01 0.02,-0.01 0.02,-0.01 0.04,-0.02 0.06,-0.03 0,0 0,0 0,0 0,0 0,0 0.01,0 0.01,0 0.02,-0.01 0.03,-0.01 0.02,-0.01 0.04,-0.01 0.06,-0.02 0.01,0 0.02,0 0.03,-0.01 0,0 0.04,-0.01 0.02,0 -0.02,0 0.02,0 0.02,0 0.01,0 0.03,0 0.04,0 0.02,0 0.04,0 0.06,0 0.01,0 0.02,0 0.03,0 0,0 0,0 0,0 0,0 0,0 0,0 0.02,0 0.04,0.01 0.06,0.01 0.04,0.01 0.08,0.02 0.11,0.04 0.01,0 0.02,0.01 0.02,0.01 0.01,0 0.02,0.01 0.02,0.01 0.02,0.01 0.04,0.02 0.06,0.02 0.02,0 0,0 0.01,0 0.05,0.02 0.08,0.05 0.14,0.06 0.05,0 0.08,-0.04 0.09,-0.09 0,-0.07 -0.05,-0.12 -0.08,-0.17 0.03,0.02 0.01,0 0.01,-0.01 z" + id="path906" /> + <path + class="st1" + d="m 277.98,419.7 h -0.5 c -0.07,0 -0.14,0.06 -0.14,0.14 0,0.07 0.06,0.14 0.14,0.14 h 0.5 c 0.17,0 0.34,0.02 0.51,-0.03 0.11,-0.03 0.11,-0.19 0,-0.22 -0.17,-0.05 -0.34,-0.03 -0.51,-0.03 z" + id="path908" /> + <path + class="st1" + d="m 277.48,411.94 c 0.63,-0.01 1.26,-0.01 1.88,-0.13 0.15,-0.03 0.1,-0.25 -0.03,-0.26 -0.61,-0.05 -1.23,0.03 -1.84,0.08 -0.2,0.03 -0.2,0.32 -0.01,0.31 z" + id="path910" /> + <path + class="st1" + d="m 282.36,411.72 c 0.29,0 0.58,0 0.87,0 0.14,0 0.28,-0.01 0.43,-0.02 0.15,-0.01 0.3,-0.01 0.44,-0.03 0.1,-0.01 0.1,-0.15 0,-0.16 -0.15,-0.02 -0.29,-0.02 -0.44,-0.03 -0.14,-0.01 -0.28,-0.02 -0.43,-0.02 -0.29,0 -0.58,0 -0.87,0 -0.16,0.02 -0.16,0.26 0,0.26 z" + id="path912" /> + <path + class="st1" + d="m 293.42,412.39 c 0.19,0 0.19,-0.29 0,-0.29 -0.19,0 -0.19,0.29 0,0.29 z" + id="path914" /> + <path + class="st1" + d="m 291.63,413.65 c -0.18,0.01 -0.35,0.02 -0.53,0.03 -0.35,0.02 -0.7,0.04 -1.05,0.05 -0.16,0.01 -0.16,0.25 0,0.25 0.35,-0.02 0.7,-0.03 1.05,-0.05 0.18,-0.01 0.35,-0.02 0.53,-0.03 0.17,-0.01 0.35,0 0.51,-0.05 0.09,-0.02 0.11,-0.18 0,-0.2 -0.17,-0.03 -0.33,-0.01 -0.51,0 z" + id="path916" /> + <path + class="st1" + d="m 291.03,415.16 c -0.01,0 -0.02,0 -0.02,0 -0.01,0 -0.02,0.01 -0.03,0.01 h -0.03 c -0.02,0 -0.05,0 -0.07,0.01 -0.02,0 -0.04,0.02 -0.06,0.02 -0.01,0.01 -0.03,0.01 -0.04,0.02 -0.02,0.01 -0.04,0.04 -0.04,0.07 0,0.03 0.01,0.06 0.04,0.07 0.01,0.01 0.02,0.01 0.04,0.02 0.02,0.01 0.04,0.02 0.06,0.03 0.02,0.01 0.05,0 0.07,0.01 0.01,0 0.02,0 0.03,0 0.01,0 0.02,0.01 0.03,0.01 0.01,0 0.02,0 0.02,0 0.03,0 0.07,-0.02 0.09,-0.04 0.02,-0.02 0.04,-0.06 0.04,-0.09 0,-0.03 -0.01,-0.07 -0.04,-0.09 -0.02,-0.04 -0.05,-0.06 -0.09,-0.05 z" + id="path918" /> + <path + class="st1" + d="m 289.17,416.38 c -0.43,0.01 -0.85,0.03 -1.28,0.04 -0.17,0.01 -0.17,0.28 0,0.27 0.43,-0.02 0.85,-0.04 1.28,-0.05 0.21,-0.01 0.43,-0.02 0.64,-0.03 0.14,-0.01 0.28,-0.01 0.41,-0.03 -0.01,0.06 0.06,0.11 0.11,0.08 0.06,-0.03 0.1,-0.08 0.14,-0.13 0.05,-0.05 0.03,-0.15 -0.04,-0.16 -0.41,-0.06 -0.85,-0.01 -1.26,0.01 z" + id="path920" /> + <path + class="st1" + d="m 289.22,417.79 c -0.04,-0.01 -0.07,-0.03 -0.12,-0.04 -0.04,-0.01 -0.09,0 -0.13,0 -0.07,0 -0.14,0.01 -0.22,0.01 -0.16,0.01 -0.31,0.02 -0.47,0.03 -0.31,0.02 -0.63,0.04 -0.94,0.06 -0.19,0.01 -0.19,0.3 0,0.29 0.32,-0.02 0.64,-0.03 0.96,-0.05 0.16,-0.01 0.31,-0.02 0.47,-0.02 0.08,0 0.16,-0.01 0.23,-0.02 0.04,0 0.08,0 0.11,-0.01 0.04,-0.01 0.08,-0.04 0.12,-0.06 0.1,-0.04 0.07,-0.17 -0.01,-0.19 z" + id="path922" /> + <path + class="st1" + d="m 288.13,419.07 c -0.03,0 -0.06,0.01 -0.09,0.01 -0.07,0.01 -0.15,0.01 -0.22,0.02 -0.13,0.02 -0.26,0.04 -0.39,0.06 -0.07,0.01 -0.12,0.11 -0.1,0.17 0.03,0.08 0.09,0.11 0.17,0.1 0.13,-0.02 0.26,-0.04 0.39,-0.06 0.06,-0.01 0.13,-0.02 0.19,-0.04 0.03,-0.01 0.06,-0.01 0.09,-0.02 0.04,-0.01 0.07,-0.02 0.11,-0.04 0.07,-0.05 0.06,-0.16 -0.02,-0.19 -0.06,-0.01 -0.09,-0.01 -0.13,-0.01 z" + id="path924" /> + <path + class="st1" + d="m 290.31,419.27 c -0.15,-0.03 -0.31,-0.03 -0.46,-0.03 -0.15,0 -0.29,0 -0.44,0 -0.09,0 -0.17,0.07 -0.16,0.16 0,0.09 0.07,0.16 0.16,0.16 0.15,0 0.29,0 0.44,0 0.15,0 0.31,0 0.46,-0.03 0.14,-0.01 0.14,-0.24 0,-0.26 z" + id="path926" /> + <path + class="st1" + d="m 280.75,417.01 c 0,0 -0.01,0 -0.01,-0.01 -0.01,-0.01 -0.01,-0.01 -0.02,-0.02 0,0 -0.01,0 -0.01,-0.01 0,0 -0.01,-0.01 -0.01,-0.01 0,-0.01 -0.01,-0.01 -0.01,-0.02 0,-0.01 0,-0.01 -0.01,-0.02 0,0 0,-0.01 0,-0.01 0,0 0,0 0,-0.01 0,0 0,0 0,0 0,0 0.01,-0.01 0.01,-0.01 0,0 -0.01,0 -0.01,0.01 0,0 0,0 0,0 0,0 0,0 0,0.01 0,0 0,0 0,0 0.02,-0.01 0.03,-0.02 0.03,-0.04 0,-0.02 0,-0.04 -0.01,-0.06 -0.02,-0.03 -0.06,-0.05 -0.1,-0.03 -0.06,0.03 -0.09,0.09 -0.09,0.16 0,0.06 0.02,0.12 0.06,0.17 0.01,0.01 0.02,0.02 0.03,0.03 0.02,0.01 0.04,0.02 0.06,0.02 0.01,0 0.02,0 0.04,-0.01 -0.01,0 -0.01,0 -0.02,0 0.03,0 0.07,-0.01 0.09,-0.03 0.01,-0.01 0.02,-0.03 0.02,-0.05 0,-0.02 -0.01,-0.04 -0.03,-0.05 0.01,0 0,-0.01 -0.01,-0.01 z" + id="path928" /> + <path + class="st1" + d="m 283.36,417.84 c 0,0 0,0 0,0 -0.01,-0.01 -0.01,-0.02 -0.01,-0.03 -0.01,-0.01 -0.01,-0.02 -0.02,-0.02 0,0 -0.01,-0.01 -0.01,-0.01 0,0 0,0 0,-0.01 0,0 0,-0.01 0,-0.01 0,0 0,-0.01 -0.01,-0.01 -0.01,-0.01 -0.01,-0.02 -0.02,-0.03 -0.01,-0.02 0,0.01 0,0 0,0 0,-0.01 -0.01,-0.01 0,-0.01 -0.01,-0.02 -0.01,-0.03 0,-0.01 0,-0.02 -0.01,-0.03 0,-0.01 0,0.01 0,0 0,-0.01 0,-0.01 0,-0.02 0,-0.02 0,-0.04 0,-0.06 0,0 0,0 0,-0.01 0,0 0,-0.01 0,-0.01 0,-0.01 0,-0.02 0.01,-0.03 0,0 0,-0.01 0,-0.01 0.01,-0.02 0,0.01 0,0 0,-0.01 0.01,-0.02 0.02,-0.03 0.02,-0.03 0.01,-0.07 -0.02,-0.08 -0.03,-0.02 -0.07,-0.01 -0.08,0.02 -0.06,0.08 -0.08,0.18 -0.06,0.28 0.01,0.05 0.02,0.11 0.04,0.16 0.01,0.03 0.03,0.06 0.06,0.08 0.03,0.01 0.05,0.04 0.08,0.04 0.04,0 0.07,-0.03 0.07,-0.07 0,-0.02 -0.01,-0.04 -0.02,-0.05 0,-0.01 0,-0.01 0,-0.02 z" + id="path930" /> + <path + class="st1" + d="m 284.42,416.74 c 0.07,0 0.07,-0.1 0,-0.1 -0.06,0 -0.06,0.1 0,0.1 z" + id="path932" /> + <path + class="st1" + d="m 285.7,417.67 c 0,-0.22 -0.01,-0.43 -0.01,-0.65 0,-0.09 -0.15,-0.09 -0.15,0 -0.01,0.22 -0.01,0.43 -0.01,0.65 0,0.11 0.17,0.11 0.17,0 z" + id="path934" /> + <path + class="st1" + d="m 283.83,417.07 c -0.16,0.01 -0.33,0.02 -0.49,0.03 -0.08,0.01 -0.14,0.07 -0.13,0.15 0.01,0.09 0.09,0.12 0.17,0.11 0.16,-0.02 0.32,-0.05 0.48,-0.07 0.16,-0.02 0.32,-0.04 0.48,-0.08 0.09,-0.03 0.07,-0.16 -0.02,-0.16 -0.17,-0.01 -0.33,0.01 -0.49,0.02 z" + id="path936" /> + <path + class="st1" + d="m 272.93,421.92 c 0.11,0 0.23,0.01 0.34,0.01 0.06,0 0.11,0 0.17,0.01 0.03,0 0.05,0 0.08,0 0.05,0 0.09,-0.02 0.13,-0.04 0.08,-0.04 0.08,-0.18 0,-0.22 -0.04,-0.02 -0.08,-0.04 -0.13,-0.04 -0.03,0 -0.05,0 -0.08,0 -0.06,0 -0.11,0 -0.17,0.01 -0.11,0 -0.23,0.01 -0.34,0.01 -0.07,0 -0.13,0.06 -0.13,0.13 0,0.07 0.06,0.12 0.13,0.13 z" + id="path938" /> + <path + class="st1" + d="m 271.84,422.68 c 0.31,0 0.63,0 0.94,-0.02 0.08,-0.01 0.15,-0.01 0.23,-0.02 0.08,-0.01 0.16,-0.04 0.24,-0.06 0.07,-0.02 0.14,-0.03 0.21,-0.04 0.08,-0.01 0.17,-0.01 0.24,-0.05 0.06,-0.02 0.07,-0.11 0,-0.13 -0.09,-0.03 -0.19,-0.02 -0.29,-0.02 -0.1,0 -0.2,-0.02 -0.31,-0.03 0.02,0.01 0.05,0.01 0.07,0.02 -0.1,-0.05 -0.22,-0.04 -0.33,-0.04 -0.11,0 -0.23,0.01 -0.34,0.02 -0.22,0.02 -0.45,0.04 -0.67,0.07 -0.18,0.01 -0.19,0.3 0.01,0.3 z" + id="path940" /> + <path + class="st1" + d="m 273.44,422.87 c 0,0.08 0.06,0.14 0.14,0.14 0.15,0 0.29,0 0.44,0 0.07,0 0.14,0 0.22,0 0.08,0 0.16,-0.01 0.24,-0.03 0.12,-0.02 0.12,-0.22 0,-0.24 -0.08,-0.01 -0.16,-0.03 -0.24,-0.03 -0.07,0 -0.14,0 -0.22,0 -0.15,0 -0.29,0 -0.44,0 -0.07,0.02 -0.15,0.09 -0.14,0.16 z" + id="path942" /> + <path + class="st1" + d="m 281.31,422.06 c 0.16,0 0.31,-0.01 0.47,-0.02 0.16,-0.01 0.32,-0.02 0.48,-0.05 0.15,-0.03 0.31,-0.03 0.46,-0.08 0.09,-0.03 0.11,-0.18 0,-0.2 -0.15,-0.03 -0.31,-0.02 -0.46,-0.02 -0.16,-0.01 -0.33,0 -0.49,0 -0.16,0.01 -0.31,0.02 -0.47,0.04 -0.16,0.02 -0.32,0.06 -0.48,0.08 -0.13,0.02 -0.09,0.22 0.03,0.22 0.15,0.01 0.31,0.03 0.46,0.03 z" + id="path944" /> + <path + class="st1" + d="m 284.75,421.93 c 0.33,0.01 0.65,0.01 0.98,0.02 0.16,0 0.32,0.01 0.48,0 0.15,0 0.35,0.02 0.47,-0.09 0.04,-0.04 0.04,-0.12 0,-0.16 -0.12,-0.1 -0.3,-0.08 -0.45,-0.09 -0.17,0 -0.33,0 -0.5,0 -0.33,0 -0.65,0.01 -0.98,0.02 -0.19,0.02 -0.19,0.3 0,0.3 z" + id="path946" /> + <path + class="st1" + d="m 297.36,421.6 c 0.11,-0.04 0.23,-0.07 0.34,-0.11 0.06,-0.02 0.11,-0.04 0.17,-0.05 0.07,-0.02 0.17,-0.04 0.21,-0.11 0.03,-0.06 0.02,-0.15 -0.05,-0.18 -0.04,-0.02 -0.07,-0.03 -0.11,-0.02 -0.01,0 -0.03,0.01 -0.04,0.01 -0.03,0.01 -0.06,0.02 -0.09,0.03 l -0.17,0.06 c -0.11,0.04 -0.22,0.08 -0.34,0.11 -0.07,0.02 -0.12,0.1 -0.1,0.17 0.03,0.06 0.11,0.11 0.18,0.09 z" + id="path948" /> + <path + class="st1" + d="m 299.06,421.81 c -0.44,0.05 -0.88,0.15 -1.32,0.21 -0.42,0.05 -0.85,0.07 -1.28,0.09 -0.87,0.04 -1.74,0.08 -2.61,0.08 -0.19,0 -0.18,0.27 0,0.29 0.89,0.07 1.77,0.09 2.66,0.02 0.44,-0.03 0.88,-0.09 1.32,-0.14 0.43,-0.05 0.86,-0.07 1.28,-0.15 0.22,-0.05 0.17,-0.43 -0.05,-0.4 z" + id="path950" /> + <path + class="st1" + d="m 271.83,426.75 c -0.18,-0.14 -0.45,-0.08 -0.66,-0.07 -0.23,0.02 -0.46,0.04 -0.69,0.06 -0.23,0.02 -0.45,0.06 -0.68,0.1 -0.23,0.04 -0.47,0.05 -0.7,0.12 -0.12,0.04 -0.09,0.2 0.03,0.21 0.24,0.03 0.47,0 0.71,0 0.22,0 0.44,0 0.66,-0.01 0.22,-0.01 0.44,-0.03 0.66,-0.05 0.2,-0.02 0.52,0 0.66,-0.16 0.06,-0.05 0.08,-0.15 0.01,-0.2 z" + id="path952" /> + <path + class="st1" + d="m 272.06,427.01 c 0.16,0.01 0.33,0.02 0.49,0.04 0.08,0.01 0.16,0.02 0.24,0.01 0.09,-0.01 0.19,0 0.27,-0.06 h 0.01 c 0.11,-0.04 0.11,-0.18 0,-0.22 0,0 -0.01,0 -0.01,0 -0.08,-0.05 -0.17,-0.05 -0.27,-0.06 -0.08,0 -0.16,0 -0.24,0.01 -0.16,0.02 -0.32,0.03 -0.49,0.04 -0.16,0 -0.16,0.23 0,0.24 z" + id="path954" /> + <path + class="st1" + d="m 273.36,427.02 c 0.16,-0.01 0.33,-0.01 0.49,-0.02 0.09,0 0.18,-0.01 0.26,-0.03 0.08,-0.01 0.15,-0.02 0.21,-0.05 0.07,-0.02 0.15,-0.03 0.2,-0.09 0.05,-0.06 0.04,-0.14 -0.02,-0.18 -0.05,-0.04 -0.13,-0.04 -0.2,-0.04 -0.07,-0.03 -0.15,-0.02 -0.23,-0.01 -0.09,0.01 -0.18,0.01 -0.27,0.03 -0.16,0.03 -0.32,0.05 -0.48,0.08 -0.08,0.01 -0.12,0.1 -0.11,0.17 0.01,0.08 0.07,0.15 0.15,0.14 z" + id="path956" /> + <path + class="st1" + d="m 294.46,426.68 c 0.26,0.05 0.53,0.02 0.8,0.01 0.13,-0.01 0.26,-0.01 0.39,-0.02 0.07,-0.01 0.14,-0.02 0.21,-0.04 0.05,-0.01 0.09,-0.03 0.13,-0.06 0.04,-0.02 0.08,-0.04 0.11,-0.09 0.02,-0.04 0.01,-0.08 -0.01,-0.11 -0.02,-0.03 -0.06,-0.04 -0.09,-0.06 -0.05,-0.04 -0.11,-0.05 -0.18,-0.05 -0.06,0 -0.12,-0.01 -0.18,-0.01 -0.13,0.01 -0.26,0.02 -0.39,0.03 -0.26,0.02 -0.53,0.03 -0.78,0.11 -0.14,0.04 -0.16,0.26 -0.01,0.29 z" + id="path958" /> + <path + class="st1" + d="m 296.89,426.48 c 0.15,0.01 0.3,0.03 0.45,0.03 0.15,0 0.28,-0.04 0.42,-0.07 0.08,-0.02 0.15,0 0.22,0.03 0.01,-0.01 0.02,-0.01 0.03,0.02 0.01,0.01 0.03,0.02 0.05,0.03 0.03,0.01 0.06,0.03 0.09,0.04 0.13,0.03 0.34,0.06 0.44,-0.05 0.03,-0.03 0.05,-0.09 0.02,-0.13 -0.09,-0.12 -0.27,-0.13 -0.41,-0.12 -0.04,0 -0.09,0.01 -0.13,0.03 0.04,-0.02 -0.1,0.05 -0.05,0.03 -0.09,0.04 -0.18,0.03 -0.27,0 -0.06,-0.02 -0.11,-0.04 -0.17,-0.06 -0.07,-0.03 -0.15,-0.04 -0.23,-0.05 -0.15,-0.02 -0.31,-0.03 -0.46,-0.03 -0.08,0 -0.16,0.07 -0.16,0.16 0.01,0.07 0.08,0.13 0.16,0.14 z" + id="path960" /> + <path + class="st1" + d="m 267.24,425.52 c -0.02,-0.01 -0.04,-0.02 -0.06,-0.03 -0.03,-0.02 -0.06,-0.02 -0.1,-0.03 -0.09,-0.02 -0.19,-0.04 -0.28,-0.05 -0.04,-0.01 -0.08,-0.01 -0.12,0.02 -0.03,0.02 -0.06,0.06 -0.07,0.1 -0.02,0.08 0.02,0.18 0.11,0.2 l 0.28,0.05 c 0.03,0.01 0.07,0.02 0.1,0.02 0.03,0 0.06,-0.01 0.1,-0.01 0.02,0 0.04,-0.01 0.06,-0.01 0.02,0 0.04,-0.01 0.06,-0.02 0.05,-0.02 0.08,-0.09 0.04,-0.13 -0.04,-0.06 -0.08,-0.08 -0.12,-0.11 z" + id="path962" /> + <path + class="st1" + d="m 271.41,429.17 c 0.33,0 0.66,0.01 0.99,0.01 0.17,0 0.33,0.01 0.5,0 0.16,-0.01 0.33,0 0.48,-0.04 0.09,-0.02 0.09,-0.16 0,-0.18 -0.16,-0.04 -0.32,-0.03 -0.48,-0.04 -0.17,-0.01 -0.33,0 -0.5,0 -0.33,0 -0.66,0.01 -0.99,0.01 -0.15,0.01 -0.15,0.24 0,0.24 z" + id="path964" /> + <path + class="st1" + d="m 275.42,429.42 h 0.83 c 0.14,0 0.28,0 0.41,-0.01 0.14,0 0.28,0 0.41,-0.03 0.11,-0.03 0.11,-0.19 0,-0.22 -0.13,-0.04 -0.27,-0.03 -0.41,-0.03 -0.14,0 -0.28,-0.01 -0.41,-0.01 h -0.83 c -0.19,0 -0.19,0.3 0,0.3 z" + id="path966" /> + <path + class="st1" + d="m 279.98,429.28 c 0.09,0 0.18,0 0.28,0 0.05,0 0.09,0 0.14,0 0.05,0 0.1,-0.01 0.15,-0.02 0.09,-0.02 0.09,-0.17 0,-0.19 -0.05,-0.01 -0.1,-0.02 -0.15,-0.02 -0.05,0 -0.09,0 -0.14,0 -0.09,0 -0.18,0 -0.28,0 -0.06,0 -0.12,0.05 -0.12,0.12 0,0.05 0.05,0.11 0.12,0.11 z" + id="path968" /> + <path + class="st1" + d="m 293.2,428.98 c 0.2,0 0.41,0 0.61,0 0.1,0 0.2,0 0.3,0 0.11,0 0.21,-0.01 0.31,-0.03 0.12,-0.02 0.12,-0.22 0,-0.23 -0.11,-0.01 -0.21,-0.03 -0.31,-0.03 -0.1,0 -0.2,0 -0.3,0 -0.2,0 -0.41,0 -0.61,0 -0.19,0 -0.19,0.29 0,0.29 z" + id="path970" /> + <path + class="st1" + d="m 297.14,428.86 c 0.11,-0.02 0.22,-0.05 0.33,-0.07 0.05,-0.01 0.11,-0.02 0.16,-0.03 l 0.08,-0.02 c 0.03,-0.01 0.06,-0.02 0.09,-0.04 0.07,-0.04 0.06,-0.16 -0.02,-0.17 -0.03,-0.01 -0.07,-0.01 -0.1,-0.01 -0.03,0 -0.05,0.01 -0.08,0.01 -0.06,0.01 -0.11,0.01 -0.17,0.02 -0.11,0.01 -0.22,0.03 -0.33,0.04 -0.04,0 -0.07,0.01 -0.1,0.04 -0.03,0.03 -0.04,0.07 -0.04,0.11 0.02,0.09 0.1,0.14 0.18,0.12 z" + id="path972" /> + <path + class="st1" + d="m 299.6,428.76 c 0.46,0.01 0.92,0.01 1.38,0 0.23,-0.01 0.45,-0.02 0.68,-0.03 0.23,-0.01 0.46,0.03 0.68,-0.01 0.11,-0.02 0.11,-0.2 0,-0.22 -0.22,-0.04 -0.45,0 -0.68,-0.01 -0.23,-0.01 -0.45,-0.02 -0.68,-0.03 -0.46,-0.01 -0.92,0 -1.38,0 -0.19,0.02 -0.19,0.3 0,0.3 z" + id="path974" /> + <path + class="st1" + d="m 301.88,426.29 c 0.21,0 0.21,-0.32 0,-0.32 -0.21,0 -0.21,0.32 0,0.32 z" + id="path976" /> + <path + class="st1" + d="m 284.78,446.35 c -0.01,-0.03 -0.02,-0.06 -0.03,-0.08 -0.01,-0.02 -0.02,-0.04 -0.03,-0.05 -0.01,-0.01 -0.02,-0.01 -0.02,-0.02 -0.03,-0.02 -0.07,-0.02 -0.11,-0.01 -0.03,0.01 -0.05,0.03 -0.06,0.06 -0.01,0.03 -0.02,0.08 0.01,0.11 0.01,0.01 0.02,0.03 0.03,0.04 -0.25,0.05 -0.5,0.11 -0.74,0.21 -0.13,0.06 -0.04,0.29 0.1,0.23 0.27,-0.11 0.56,-0.19 0.85,-0.21 0.15,-0.01 0.29,-0.01 0.43,-0.01 0.07,0 0.13,-0.01 0.2,-0.02 0,0.12 0,0.24 0.02,0.35 0.01,0.09 0.16,0.09 0.18,0 0.02,-0.12 0.02,-0.24 0.02,-0.36 0.01,0 0.02,0 0.03,0 0.08,-0.02 0.09,-0.14 0.02,-0.18 -0.01,-0.01 -0.03,-0.01 -0.05,-0.01 0,-0.12 -0.01,-0.25 -0.01,-0.37 0,-0.31 0,-0.63 0,-0.94 0,-0.13 -0.2,-0.13 -0.2,0 0,0.31 0,0.63 0,0.94 0,0.1 0,0.21 -0.01,0.31 -0.06,-0.01 -0.12,-0.03 -0.18,-0.04 -0.16,0 -0.31,0.02 -0.45,0.05 z" + id="path978" /> + <path + class="st1" + d="m 267.62,434.6 c 0.22,-0.02 0.44,-0.04 0.66,-0.05 0.22,-0.02 0.45,-0.02 0.66,-0.11 0.07,-0.03 0.08,-0.14 0,-0.15 -0.22,-0.05 -0.44,-0.02 -0.66,0 -0.22,0.02 -0.44,0.04 -0.66,0.06 -0.07,0.01 -0.13,0.05 -0.13,0.13 0,0.06 0.06,0.13 0.13,0.12 z" + id="path980" /> + <path + class="st1" + d="m 270.87,434.58 c 0.14,0 0.14,-0.22 0,-0.22 -0.14,0 -0.14,0.22 0,0.22 z" + id="path982" /> + <path + class="st1" + d="m 266.55,435.49 c -0.34,-0.07 -0.68,-0.08 -1.03,-0.07 -0.35,0 -0.7,0 -1.05,0 -0.19,0 -0.19,0.29 0,0.29 0.35,0 0.7,0 1.05,0 0.35,0 0.69,0 1.03,-0.07 0.07,-0.03 0.07,-0.14 0,-0.15 z" + id="path984" /> + <path + class="st1" + d="m 268.27,435.53 c -0.18,0 -0.18,0.28 0,0.28 0.18,-0.01 0.18,-0.28 0,-0.28 z" + id="path986" /> + <path + class="st1" + d="m 269.89,435.58 c 0.44,0.01 0.88,0.01 1.33,0.02 0.22,0 0.44,0.01 0.66,0 0.1,0 0.2,-0.01 0.31,-0.02 0.11,-0.01 0.23,-0.01 0.33,-0.04 0.09,-0.03 0.09,-0.15 0,-0.19 -0.1,-0.04 -0.22,-0.03 -0.33,-0.04 -0.1,-0.01 -0.2,-0.02 -0.31,-0.02 -0.22,0 -0.44,0 -0.66,0 -0.44,0.01 -0.88,0.01 -1.33,0.02 -0.17,0.01 -0.17,0.27 0,0.27 z" + id="path988" /> + <path + class="st1" + d="m 274.77,435.56 c 0.09,0 0.18,0 0.28,0 0.05,0 0.09,0 0.14,0 0.05,0 0.1,-0.01 0.16,-0.02 0.09,-0.02 0.09,-0.17 0,-0.18 -0.05,-0.01 -0.1,-0.02 -0.16,-0.02 -0.05,0 -0.09,0 -0.14,0 -0.09,0 -0.18,0 -0.28,0 -0.06,0 -0.12,0.05 -0.12,0.12 0.01,0.05 0.06,0.1 0.12,0.1 z" + id="path990" /> + <path + class="st1" + d="m 277.37,435.69 c 0.18,0 0.37,0.01 0.55,0.01 0.09,0 0.18,0 0.28,0 0.1,0 0.19,-0.01 0.29,-0.03 0.12,-0.02 0.12,-0.22 0,-0.24 -0.1,-0.02 -0.19,-0.03 -0.29,-0.03 -0.09,0 -0.18,0 -0.28,0 -0.18,0 -0.37,0.01 -0.55,0.01 -0.16,0.02 -0.16,0.28 0,0.28 z" + id="path992" /> + <path + class="st1" + d="m 281.06,435.55 c 0.13,0 0.13,-0.2 0,-0.2 -0.13,0 -0.13,0.2 0,0.2 z" + id="path994" /> + <path + class="st1" + d="m 273.8,436.87 c 1.19,0.02 2.38,0.08 3.57,0.05 0.59,-0.02 1.17,-0.05 1.76,-0.04 0.58,0.01 1.16,0.06 1.73,-0.06 0.06,-0.01 0.06,-0.12 0,-0.13 -0.55,-0.11 -1.12,-0.06 -1.68,-0.06 -0.6,0.01 -1.21,-0.02 -1.81,-0.04 -1.19,-0.03 -2.38,0.02 -3.57,0.05 -0.15,0 -0.15,0.22 0,0.23 z" + id="path996" /> + <path + class="st1" + d="m 282.47,437.09 c 0.09,0 0.18,0 0.28,0 h 0.14 c 0.05,0 0.1,-0.01 0.16,-0.02 0.09,-0.02 0.09,-0.17 0,-0.18 -0.05,-0.01 -0.1,-0.02 -0.16,-0.02 h -0.14 -0.28 c -0.06,0 -0.12,0.06 -0.12,0.12 0,0.04 0.05,0.1 0.12,0.1 z" + id="path998" /> + <path + class="st1" + d="m 284.24,437.09 c 0.18,-0.04 0.37,-0.07 0.55,-0.11 0.09,-0.02 0.18,-0.04 0.27,-0.07 0.09,-0.03 0.18,-0.05 0.27,-0.09 0.08,-0.04 0.03,-0.14 -0.04,-0.15 -0.09,-0.01 -0.18,0.01 -0.28,0.02 -0.1,0.01 -0.19,0.02 -0.29,0.04 -0.18,0.04 -0.37,0.08 -0.55,0.12 -0.07,0.01 -0.1,0.09 -0.09,0.15 0.02,0.07 0.09,0.1 0.16,0.09 z" + id="path1000" /> + <path + class="st1" + d="m 286.59,436.85 c 0.12,0 0.12,-0.19 0,-0.19 -0.12,-0.01 -0.12,0.19 0,0.19 z" + id="path1002" /> + <path + class="st1" + d="m 273.47,437.73 c 0.61,-0.03 1.23,-0.07 1.84,-0.1 0.18,-0.01 0.18,-0.3 0,-0.29 -0.61,0.03 -1.23,0.07 -1.84,0.11 -0.18,0.02 -0.18,0.29 0,0.28 z" + id="path1004" /> + <path + class="st1" + d="m 291.36,437.3 c 0.26,0.01 0.52,0.01 0.77,0.02 0.13,0 0.26,0.01 0.39,0.01 0.13,0 0.26,0.01 0.39,-0.02 0.11,-0.03 0.11,-0.19 0,-0.22 -0.13,-0.04 -0.26,-0.02 -0.39,-0.02 -0.13,0 -0.26,0 -0.39,0.01 -0.26,0.01 -0.52,0.01 -0.77,0.02 -0.14,-0.03 -0.14,0.19 0,0.2 z" + id="path1006" /> + <path + class="st1" + d="m 295.05,437.39 c 0.55,-0.02 1.1,0 1.65,-0.04 0.57,-0.04 1.13,-0.12 1.7,-0.15 0.55,-0.02 1.1,-0.01 1.65,-0.04 0.26,-0.01 0.52,-0.02 0.78,-0.07 0.28,-0.05 0.55,-0.14 0.84,-0.19 0.03,-0.01 0.02,-0.05 -0.01,-0.05 -0.28,-0.02 -0.57,-0.08 -0.85,-0.1 -0.27,-0.02 -0.54,0.01 -0.8,0.02 -0.55,0.03 -1.1,0.1 -1.65,0.14 -0.53,0.04 -1.07,0.02 -1.6,0.04 -0.57,0.02 -1.13,0.1 -1.7,0.15 -0.19,0.02 -0.2,0.3 -0.01,0.29 z" + id="path1008" /> + <path + class="st1" + d="m 302.99,436.76 c -0.03,0 -0.06,-0.01 -0.09,-0.01 -0.04,0 -0.06,-0.02 -0.1,-0.02 -0.03,0 -0.06,0 -0.1,0 -0.13,0 -0.26,0.01 -0.39,0.01 -0.06,0 -0.13,0.06 -0.12,0.12 0,0.07 0.05,0.12 0.12,0.12 0.13,0 0.26,0.01 0.39,0.01 0.03,0 0.06,0 0.1,0 0.04,0 0.07,-0.01 0.1,-0.02 0.07,-0.01 0.14,-0.01 0.21,-0.04 0.05,-0.02 0.05,-0.12 0,-0.14 -0.04,-0.02 -0.07,-0.03 -0.12,-0.03 z" + id="path1010" /> + <path + class="st1" + d="m 304.39,436.78 c -0.07,-0.01 -0.14,-0.02 -0.21,-0.03 -0.02,-0.01 -0.04,-0.01 -0.06,0 -0.02,0.01 -0.04,0.02 -0.05,0.03 -0.02,0.02 -0.03,0.05 -0.03,0.08 0,0.03 0.01,0.06 0.03,0.08 0.01,0.01 0.03,0.02 0.05,0.03 0.02,0.01 0.04,0.01 0.06,0 0.07,-0.01 0.14,-0.02 0.21,-0.03 l 0.02,-0.01 c 0.01,-0.01 0.02,-0.01 0.02,-0.02 0.01,-0.01 0.02,-0.03 0.02,-0.05 0,-0.01 0,-0.03 -0.01,-0.04 -0.01,-0.02 -0.03,-0.04 -0.05,-0.04 z" + id="path1012" /> + <path + class="st1" + d="m 304.98,436.86 c 0.01,0.07 0.07,0.14 0.15,0.13 0.15,-0.02 0.31,-0.03 0.47,-0.05 0.07,-0.01 0.14,-0.03 0.22,-0.05 0.07,-0.02 0.14,-0.04 0.21,-0.07 0.11,-0.04 0.08,-0.19 -0.03,-0.19 -0.07,0 -0.15,-0.01 -0.22,-0.01 -0.07,0 -0.15,0 -0.22,0.01 -0.16,0.01 -0.31,0.04 -0.47,0.07 -0.08,0.01 -0.12,0.09 -0.11,0.16 z" + id="path1014" /> + <path + class="st1" + d="m 306.87,436.85 c 0.02,0 0.04,0 0.06,0 0.01,0 0.03,0 0.04,0 0.01,0 0.02,-0.01 0.03,-0.01 0.01,0 0.02,-0.01 0.02,-0.01 0.03,-0.01 0.04,-0.05 0.04,-0.07 0,-0.02 -0.02,-0.06 -0.04,-0.07 -0.01,0 -0.02,-0.01 -0.02,-0.01 -0.01,0 -0.02,-0.01 -0.03,-0.01 -0.01,0 -0.02,0 -0.03,0 -0.02,0 -0.04,0 -0.06,0 -0.04,0 -0.08,0 -0.11,0 -0.02,0 -0.05,0.01 -0.07,0.03 -0.02,0.02 -0.03,0.04 -0.03,0.07 0,0.05 0.04,0.09 0.1,0.1 0.02,-0.02 0.06,-0.02 0.1,-0.02 z" + id="path1016" /> + <path + class="st1" + d="m 291.79,435.12 c 0.39,0.02 0.77,0.06 1.16,0.09 0.19,0.02 0.39,0.04 0.58,0.04 0.19,0 0.39,0.02 0.57,-0.02 0.14,-0.03 0.12,-0.22 0,-0.26 -0.18,-0.06 -0.38,-0.06 -0.57,-0.07 -0.19,-0.01 -0.39,-0.01 -0.58,-0.01 -0.39,-0.01 -0.77,0 -1.16,-0.02 -0.15,0 -0.15,0.24 0,0.25 z" + id="path1018" /> + <path + class="st1" + d="m 296.67,435.37 c 0.21,-0.02 0.41,-0.03 0.62,-0.06 0.1,-0.01 0.2,-0.02 0.3,-0.04 0.11,-0.01 0.23,-0.01 0.32,-0.07 0.08,-0.05 0.06,-0.16 -0.03,-0.19 -0.1,-0.03 -0.21,-0.01 -0.31,0 -0.1,0.01 -0.2,0.01 -0.3,0.02 -0.2,0.01 -0.41,0.04 -0.61,0.05 -0.08,0.01 -0.14,0.06 -0.14,0.14 0.01,0.08 0.08,0.16 0.15,0.15 z" + id="path1020" /> + <path + class="st1" + d="m 298.84,435.14 c 0.22,0.01 0.44,0.02 0.66,0.02 0.11,0 0.22,0 0.33,-0.01 0.11,-0.01 0.23,-0.02 0.34,-0.06 0.08,-0.03 0.08,-0.14 0,-0.17 -0.1,-0.04 -0.23,-0.05 -0.34,-0.06 -0.11,-0.01 -0.22,-0.01 -0.33,-0.01 -0.22,0 -0.44,0.01 -0.66,0.02 -0.16,0.02 -0.16,0.27 0,0.27 z" + id="path1022" /> + <path + class="st1" + d="m 300.9,435.2 c 0.32,-0.01 0.64,0 0.96,-0.01 0.16,-0.01 0.31,-0.02 0.47,-0.04 0.09,-0.01 0.16,-0.04 0.24,-0.05 0.08,-0.01 0.15,-0.04 0.23,-0.07 0.09,-0.04 0.05,-0.17 -0.02,-0.19 -0.08,-0.03 -0.16,-0.04 -0.24,-0.04 -0.07,0 -0.14,-0.03 -0.22,-0.03 -0.16,0 -0.31,0 -0.47,0.02 -0.31,0.03 -0.63,0.07 -0.94,0.1 -0.22,0 -0.22,0.31 -0.01,0.31 z" + id="path1024" /> + <path + class="st1" + d="m 304.04,434.97 c 0.13,0 0.26,0 0.39,0.01 0.07,0 0.13,0 0.2,-0.01 0.03,0 0.06,0 0.09,0 0.02,0 0.05,0 0.07,-0.01 0.03,-0.01 0.05,-0.02 0.07,-0.04 0.09,-0.06 0.09,-0.17 0,-0.23 -0.02,-0.01 -0.03,-0.02 -0.05,-0.03 -0.03,-0.01 -0.06,-0.01 -0.09,-0.02 -0.03,0 -0.06,0 -0.09,0 -0.07,0 -0.13,-0.01 -0.2,-0.01 -0.13,0 -0.26,0 -0.39,0.01 -0.09,0 -0.17,0.08 -0.17,0.17 0.01,0.08 0.08,0.15 0.17,0.16 z" + id="path1026" /> + <path + class="st1" + d="m 303.61,437.93 c -0.16,0 -0.16,0.25 0,0.25 0.16,0 0.16,-0.25 0,-0.25 z" + id="path1028" /> + <path + class="st1" + d="m 306.65,438.21 0.35,-0.04 c 0.03,0 0.06,-0.01 0.08,-0.01 0.05,-0.01 0.1,0 0.14,-0.03 0.01,0 0,0 0.01,-0.01 0,0 0,0 0,0 0.02,0 0.03,-0.01 0.05,-0.02 0.02,-0.01 0.04,-0.01 0.06,-0.02 0.03,-0.01 0.04,-0.04 0.06,-0.06 0.02,-0.04 0.02,-0.1 -0.02,-0.13 -0.02,-0.02 -0.04,-0.04 -0.07,-0.04 -0.02,-0.01 -0.04,0 -0.06,0 -0.01,0 -0.03,0 -0.04,0 0,0 -0.01,0 -0.01,0 0,0 0,0 -0.01,0 -0.05,-0.01 -0.1,0 -0.15,0.01 -0.03,0.01 -0.05,0.01 -0.08,0.02 -0.12,0.02 -0.23,0.04 -0.35,0.07 -0.07,0.01 -0.11,0.09 -0.1,0.15 0.01,0.05 0.07,0.11 0.14,0.11 z" + id="path1030" /> + <path + class="st1" + d="m 301.88,436.33 c 0.55,-0.01 1.11,-0.03 1.66,-0.04 0.54,-0.01 1.09,0.01 1.62,-0.1 0.12,-0.02 0.08,-0.19 -0.03,-0.2 -0.54,-0.07 -1.09,-0.01 -1.63,0.02 -0.54,0.03 -1.08,0.05 -1.63,0.07 -0.15,0.01 -0.15,0.26 0.01,0.25 z" + id="path1032" /> + <path + class="st1" + d="m 266.94,443.54 c -0.05,-0.02 -0.09,-0.03 -0.15,-0.04 -0.05,0 -0.09,-0.01 -0.14,-0.01 -0.18,-0.02 -0.37,-0.03 -0.55,-0.05 -0.08,-0.01 -0.14,0.07 -0.14,0.14 0,0.08 0.06,0.13 0.14,0.14 0.18,0.02 0.37,0.04 0.55,0.06 0.04,0 0.08,0.01 0.13,0.01 0.05,0 0.1,-0.01 0.15,-0.01 0.09,-0.01 0.18,-0.01 0.27,-0.02 0.08,-0.01 0.06,-0.12 0,-0.14 -0.08,-0.03 -0.17,-0.05 -0.26,-0.08 z" + id="path1034" /> + <path + class="st1" + d="m 266.32,444.35 c -0.13,0 -0.13,0.2 0,0.2 0.13,0 0.13,-0.2 0,-0.2 z" + id="path1036" /> + <path + class="st1" + d="m 266.91,445.76 c -0.01,0 -0.03,-0.01 -0.04,-0.01 -0.01,0 -0.03,-0.01 0,0 -0.01,0 -0.01,-0.01 -0.02,-0.01 -0.03,-0.01 -0.05,-0.03 -0.08,-0.05 -0.01,0 -0.01,-0.01 -0.02,-0.01 0.03,0.02 0.01,0.01 0,0 -0.01,-0.01 -0.02,-0.02 -0.03,-0.03 -0.02,-0.02 -0.04,-0.04 -0.06,-0.06 0,0 -0.01,-0.01 -0.01,-0.01 0,0 0,0 0,0 -0.01,-0.01 -0.02,-0.02 -0.02,-0.04 -0.01,-0.01 -0.01,-0.03 -0.02,-0.04 0,0 0,-0.01 -0.01,-0.01 -0.01,-0.01 -0.01,-0.03 -0.01,-0.04 0.01,0 0.02,0.01 0.02,0.01 0.03,0.01 0.06,0.01 0.08,0.01 0.01,0 0.03,0 0.04,0 0.06,0 0.12,-0.04 0.14,-0.1 0.01,-0.03 0.01,-0.06 -0.01,-0.09 -0.01,-0.03 -0.03,-0.05 -0.06,-0.07 -0.01,-0.01 -0.02,-0.02 -0.04,-0.03 -0.04,-0.02 -0.08,-0.04 -0.12,-0.05 -0.06,-0.02 -0.12,-0.04 -0.17,-0.06 -0.04,-0.01 -0.09,0 -0.12,0.02 -0.03,0.02 -0.06,0.06 -0.07,0.09 -0.01,0.04 -0.01,0.09 0.02,0.12 0.02,0.03 0.05,0.05 0.08,0.06 -0.02,0.03 -0.06,0.05 -0.06,0.1 0.03,0.15 0.12,0.3 0.25,0.39 0.06,0.04 0.13,0.07 0.19,0.09 0.04,0.01 0.08,0.02 0.12,0.02 0.04,0 0.08,0 0.12,-0.01 0.08,-0.02 0.08,-0.15 0,-0.17 -0.04,0 -0.07,-0.01 -0.09,-0.02 z" + id="path1038" /> + <path + class="st1" + d="m 268.27,442.14 c -0.04,-0.01 -0.09,-0.01 -0.13,-0.02 -0.09,-0.01 -0.18,-0.02 -0.27,-0.03 -0.19,-0.03 -0.39,-0.05 -0.58,-0.07 -0.08,-0.01 -0.17,0.08 -0.16,0.16 0,0.1 0.07,0.15 0.16,0.16 0.18,0.02 0.37,0.03 0.55,0.05 0.09,0.01 0.18,0.01 0.28,0.02 0.04,0 0.09,0.01 0.13,0.01 0.06,0 0.11,0 0.16,-0.02 0.09,-0.02 0.12,-0.18 0.03,-0.22 -0.06,-0.01 -0.11,-0.03 -0.17,-0.04 z" + id="path1040" /> + <path + class="st1" + d="m 271.42,442.14 c -0.09,-0.01 -0.17,-0.01 -0.26,-0.01 -0.17,-0.01 -0.34,0 -0.51,0 -0.08,0 -0.16,0.07 -0.16,0.16 0,0.08 0.07,0.16 0.16,0.16 0.17,0 0.34,0 0.51,0 0.17,-0.01 0.36,0.01 0.52,-0.07 0.06,-0.03 0.06,-0.13 0,-0.16 -0.08,-0.06 -0.18,-0.07 -0.26,-0.08 z" + id="path1042" /> + <path + class="st1" + d="m 272.9,442.38 c -0.03,0 -0.06,0.03 -0.07,0.06 -0.02,0.03 -0.02,0.07 -0.01,0.1 0.02,0.06 0.09,0.1 0.15,0.09 0.18,-0.05 0.36,-0.09 0.53,-0.15 0.04,-0.01 0.06,-0.05 0.06,-0.09 -0.01,-0.04 -0.04,-0.07 -0.08,-0.07 -0.2,0 -0.39,0.03 -0.58,0.06 z" + id="path1044" /> + <path + class="st1" + d="m 303.11,441.6 c -0.11,0 -0.23,0 -0.34,0.01 -0.23,0 -0.45,0.01 -0.68,0.01 -0.15,0 -0.15,0.23 0,0.23 0.23,0 0.45,0.01 0.68,0.01 0.11,0 0.23,0 0.34,0.01 0.11,0 0.24,0.01 0.34,-0.04 0.07,-0.04 0.07,-0.14 0,-0.18 -0.1,-0.06 -0.24,-0.05 -0.34,-0.05 z" + id="path1046" /> + <path + class="st1" + d="m 305.51,441.51 c -0.05,0 -0.11,-0.01 -0.16,-0.01 -0.11,0 -0.22,0 -0.33,0 -0.06,0 -0.12,0.05 -0.12,0.12 0,0.06 0.05,0.12 0.12,0.12 0.11,0 0.22,0 0.33,0 0.05,0 0.11,0 0.16,-0.01 0.06,0 0.12,0 0.18,-0.02 0.09,-0.04 0.09,-0.15 0,-0.18 -0.05,-0.02 -0.11,-0.01 -0.18,-0.02 z" + id="path1048" /> + <path + class="st1" + d="m 307.48,441.73 c 0.08,0.02 0.17,0.03 0.25,0.05 0.04,0.01 0.08,0.02 0.12,0.02 0.02,0 0.04,0.01 0.06,0.01 0.05,0.01 0.09,0 0.12,-0.03 0.01,0 0.02,-0.01 0.02,-0.01 0.03,-0.01 0.05,-0.03 0.06,-0.06 0.01,-0.03 0,-0.06 -0.02,-0.08 -0.01,-0.01 -0.02,-0.01 -0.03,-0.02 -0.01,-0.01 -0.01,-0.02 -0.01,-0.03 -0.01,-0.02 -0.05,-0.03 -0.07,-0.04 -0.02,0 -0.04,-0.01 -0.06,-0.01 -0.04,-0.01 -0.08,-0.01 -0.12,-0.02 -0.08,-0.01 -0.17,-0.02 -0.25,-0.04 -0.04,-0.01 -0.07,-0.01 -0.1,0.01 -0.03,0.02 -0.05,0.05 -0.06,0.08 -0.01,0.08 0.02,0.16 0.09,0.17 z" + id="path1050" /> + <path + class="st1" + d="m 306.52,442.39 c 0.05,0 0.1,-0.01 0.15,-0.02 0.04,-0.01 0.07,-0.05 0.07,-0.09 0,-0.04 -0.03,-0.08 -0.07,-0.09 -0.05,-0.01 -0.1,-0.02 -0.15,-0.02 h -0.14 c -0.09,0 -0.18,0 -0.28,0 -0.06,0 -0.12,0.05 -0.12,0.12 0,0.06 0.05,0.12 0.12,0.12 0.09,0 0.18,0 0.28,0 z" + id="path1052" /> + <path + class="st1" + d="m 308.16,442.11 c -0.04,0 -0.08,0.01 -0.1,0.04 -0.03,0.03 -0.04,0.07 -0.04,0.1 0,0.04 0.01,0.08 0.04,0.1 0.03,0.03 0.06,0.05 0.1,0.04 l 0.16,-0.01 c 0.03,0 0.05,0 0.08,-0.01 0.02,0 0.04,0 0.05,-0.01 0.02,0 0.03,-0.01 0.04,-0.02 0.01,-0.01 0.02,-0.01 0.03,-0.02 0.04,-0.02 0.06,-0.06 0.06,-0.1 0,-0.04 -0.02,-0.09 -0.06,-0.1 -0.04,-0.02 -0.08,-0.04 -0.13,-0.04 -0.03,0 -0.05,0 -0.08,0 z" + id="path1054" /> + <path + class="st1" + d="m 307.76,443.26 c 0.13,-0.01 0.26,-0.02 0.39,-0.02 0.11,0 0.28,0.01 0.38,-0.05 0.04,-0.03 0.05,-0.09 0,-0.11 -0.11,-0.05 -0.25,-0.02 -0.36,-0.01 -0.13,0.02 -0.27,0.03 -0.4,0.03 -0.26,0.01 -0.53,0.03 -0.79,0.05 -0.11,0.01 -0.11,0.18 0,0.17 0.25,-0.02 0.52,-0.04 0.78,-0.06 z" + id="path1056" /> + <path + class="st1" + d="m 307.21,444.24 c 0.08,0 0.22,0.01 0.27,-0.08 0.02,-0.03 0.02,-0.06 0,-0.09 -0.05,-0.08 -0.18,-0.08 -0.27,-0.08 -0.09,0 -0.17,0 -0.26,0.01 -0.18,0 -0.35,0.01 -0.53,0.01 -0.14,0 -0.14,0.21 0,0.21 0.18,0 0.35,0.01 0.53,0.01 0.09,0.01 0.18,0.01 0.26,0.01 z" + id="path1058" /> + <path + class="st1" + d="m 308.06,444.12 c -0.14,0 -0.14,0.22 0,0.22 0.14,0 0.14,-0.22 0,-0.22 z" + id="path1060" /> + <path + class="st1" + d="m 306.97,444.87 c -0.16,0 -0.16,0.25 0,0.25 0.16,-0.01 0.16,-0.25 0,-0.25 z" + id="path1062" /> + <path + class="st1" + d="m 308.4,444.86 -0.37,0.04 c -0.24,0.03 -0.49,0.06 -0.73,0.08 -0.07,0.01 -0.13,0.06 -0.13,0.13 0,0.07 0.06,0.14 0.13,0.13 0.24,-0.02 0.49,-0.03 0.73,-0.04 0.12,0 0.24,-0.01 0.36,-0.01 0.12,0 0.28,-0.02 0.38,-0.09 0.07,-0.05 0.09,-0.16 0,-0.21 -0.1,-0.05 -0.25,-0.05 -0.37,-0.03 z" + id="path1064" /> + <path + class="st1" + d="m 261.58,457.05 c 0.01,0.03 0.04,0.06 0.08,0.06 0.04,0 0.07,-0.02 0.08,-0.06 0.01,-0.02 0.01,-0.03 0.02,-0.05 0.01,-0.02 0,-0.05 0,-0.08 v -0.11 c 0,-0.02 -0.01,-0.05 -0.03,-0.07 -0.02,-0.02 -0.04,-0.03 -0.07,-0.03 -0.05,0 -0.09,0.04 -0.09,0.09 v 0.11 c 0,0.03 0,0.05 0,0.08 -0.01,0.02 0,0.04 0.01,0.06 z" + id="path1066" /> + <path + class="st1" + d="m 262.94,454.33 c 0.01,0.07 0.02,0.14 0.05,0.22 0.03,0.08 0.14,0.07 0.15,-0.02 0.01,-0.14 -0.01,-0.29 -0.03,-0.43 -0.01,-0.14 -0.04,-0.29 -0.06,-0.43 -0.01,-0.05 -0.04,-0.1 -0.1,-0.1 -0.05,0 -0.11,0.05 -0.1,0.1 0.02,0.15 0.03,0.3 0.06,0.45 0.01,0.07 0.02,0.14 0.03,0.21 z" + id="path1068" /> + <path + class="st1" + d="m 263.91,455.64 c 0.05,-0.16 0.04,-0.35 0.04,-0.51 0,-0.18 -0.01,-0.35 -0.01,-0.53 -0.01,-0.35 -0.02,-0.7 -0.04,-1.05 0,-0.1 -0.16,-0.1 -0.16,0 -0.01,0.35 -0.03,0.7 -0.04,1.05 0,0.18 -0.01,0.35 -0.01,0.53 0,0.16 -0.01,0.35 0.04,0.51 0.03,0.09 0.16,0.09 0.18,0 z" + id="path1070" /> + <path + class="st1" + d="m 263.89,457.3 c -0.01,0.01 -0.02,0.03 -0.02,0.04 0,0.02 0.01,0.03 0.02,0.04 0.02,0.02 0.04,0.03 0.06,0.05 0.01,0.01 0.02,0.02 0.03,0.02 0.01,0.01 0.02,0.01 0.02,0.02 0.01,0 0.01,0.01 0.02,0.01 0.02,0.01 0.04,0.01 0.05,-0.01 0.01,-0.01 0.02,-0.03 0.01,-0.05 l -0.01,-0.02 c 0,-0.01 -0.01,-0.02 -0.02,-0.02 -0.01,-0.01 -0.02,-0.02 -0.02,-0.03 -0.02,-0.02 -0.03,-0.04 -0.05,-0.06 -0.01,-0.01 -0.01,-0.01 -0.02,-0.01 -0.01,0 -0.02,-0.01 -0.02,-0.01 -0.02,0.02 -0.04,0.02 -0.05,0.03 z" + id="path1072" /> + <path + class="st1" + d="m 265.23,456.87 c -0.06,0 -0.06,0.1 0,0.1 0.06,0 0.06,-0.1 0,-0.1 z" + id="path1074" /> + <path + class="st1" + d="m 266.77,455.64 c 0.02,0.09 0.15,0.09 0.17,0 0.04,-0.12 0.03,-0.26 0.04,-0.38 0.01,-0.13 0.01,-0.26 0.01,-0.39 0,-0.26 0,-0.52 0,-0.77 0,-0.17 -0.26,-0.17 -0.26,0 0,0.26 0,0.52 0,0.77 0,0.13 0,0.26 0.01,0.39 0,0.12 0,0.26 0.03,0.38 z" + id="path1076" /> + <path + class="st1" + d="m 266.86,457.13 c -0.14,0 -0.14,0.21 0,0.21 0.14,0.01 0.14,-0.21 0,-0.21 z" + id="path1078" /> + <path + class="st1" + d="m 268.4,458.11 c 0,0.02 0.02,0.04 0.03,0.05 0.03,0.03 0.08,0.03 0.1,0 0,0 0,0 0.01,-0.01 0.01,-0.01 0.02,-0.03 0.03,-0.04 0,-0.01 0,-0.02 0.01,-0.03 0,-0.02 0.01,-0.04 0.01,-0.05 0.01,-0.02 0.01,-0.04 0,-0.06 -0.01,-0.02 -0.01,-0.03 -0.03,-0.05 -0.02,-0.02 -0.05,-0.03 -0.07,-0.03 -0.01,0 -0.03,0 -0.04,0.01 -0.01,0 -0.02,0.01 -0.03,0.02 -0.01,0.01 -0.02,0.03 -0.03,0.05 -0.01,0.02 -0.01,0.04 0,0.06 0,0.02 0.01,0.04 0.01,0.05 0,0.01 0,0.02 0,0.03 z" + id="path1080" /> + <path + class="st1" + d="m 269.9,455.21 c 0.02,0.1 0.19,0.1 0.21,0 0.01,-0.03 0.01,-0.07 0.02,-0.1 0.01,-0.04 0,-0.07 0,-0.11 0,-0.06 0,-0.13 0,-0.19 0,-0.13 0,-0.26 0,-0.39 0,-0.07 -0.06,-0.13 -0.13,-0.13 -0.07,0 -0.13,0.06 -0.13,0.13 0,0.13 0,0.26 0,0.39 0,0.06 0,0.13 0,0.19 0,0.04 0,0.07 0,0.11 0.01,0.03 0.02,0.07 0.03,0.1 z" + id="path1082" /> + <path + class="st1" + d="m 271.82,457.44 c 0.01,0.05 0.01,0.09 0.02,0.14 0.01,0.05 0.01,0.1 0.04,0.14 0.03,0.04 0.11,0.06 0.14,0 0.04,-0.08 0.02,-0.18 0.02,-0.28 0,-0.1 -0.02,-0.19 -0.03,-0.29 -0.02,-0.19 -0.04,-0.38 -0.06,-0.56 -0.01,-0.06 -0.05,-0.11 -0.11,-0.11 -0.06,0 -0.12,0.05 -0.11,0.11 l 0.06,0.56 c 0.01,0.1 0.01,0.19 0.03,0.29 z" + id="path1084" /> + <path + class="st1" + d="m 272.03,458.69 0.06,0.23 c 0.01,0.04 0.02,0.08 0.03,0.11 0.01,0.04 0.02,0.07 0.05,0.1 0.02,0.02 0.04,0.03 0.06,0.04 0.05,0.03 0.11,0.01 0.14,-0.04 0.01,-0.02 0.02,-0.04 0.03,-0.07 0.01,-0.04 0.01,-0.08 0,-0.12 -0.01,-0.04 -0.02,-0.07 -0.03,-0.11 -0.02,-0.08 -0.04,-0.15 -0.06,-0.23 -0.02,-0.07 -0.11,-0.13 -0.18,-0.1 -0.08,0.03 -0.12,0.11 -0.1,0.19 z" + id="path1086" /> + <path + class="st1" + d="m 275.05,457.19 c 0.04,-0.04 0.04,-0.09 0.04,-0.14 0,-0.05 0,-0.1 0,-0.15 0,-0.09 0,-0.18 0,-0.28 0,-0.19 0,-0.38 0,-0.57 0,-0.11 -0.18,-0.11 -0.18,0 v 0.57 c 0,0.09 0,0.18 0,0.28 0,0.05 0,0.1 0,0.15 0,0.06 0,0.1 0.04,0.14 0.01,0.03 0.07,0.03 0.1,0 z" + id="path1088" /> + <path + class="st1" + d="m 276.04,457.8 c 0,0 0.01,0.01 0.01,0.01 0.01,0 0.01,0.01 0.02,0.01 0.01,0 0.01,0 0.02,-0.01 0.01,0 0.02,-0.01 0.02,-0.02 0,-0.03 0.01,-0.07 0.01,-0.1 0,-0.01 0,-0.02 0,-0.03 0,-0.01 -0.01,-0.02 -0.01,-0.02 -0.01,-0.01 -0.02,-0.02 -0.04,-0.02 -0.01,0 -0.03,0.01 -0.04,0.02 -0.01,0.01 -0.01,0.01 -0.01,0.02 0,0.01 0,0.02 0,0.03 0.01,0.03 0.01,0.07 0.02,0.11 0,0 0,0 0,0 z" + id="path1090" /> + <path + class="st1" + d="m 280.17,454.98 v 0.11 c 0,0.05 0.01,0.09 0.03,0.14 0.03,0.07 0.15,0.07 0.18,0 0.02,-0.05 0.03,-0.08 0.03,-0.14 0,-0.03 0,-0.07 0,-0.1 0,-0.08 0,-0.15 0,-0.23 0,-0.15 0,-0.3 0,-0.45 0,-0.07 -0.06,-0.14 -0.14,-0.14 -0.07,0 -0.14,0.06 -0.14,0.14 0,0.15 0,0.3 0,0.45 0.04,0.08 0.04,0.15 0.04,0.22 z" + id="path1092" /> + <path + class="st1" + d="m 282.04,456.54 c 0.02,0 0.05,-0.03 0.05,-0.05 -0.02,-0.15 -0.04,-0.31 -0.06,-0.46 0,-0.02 -0.03,-0.05 -0.05,-0.06 -0.02,-0.01 -0.05,-0.02 -0.08,-0.01 -0.05,0.02 -0.09,0.07 -0.07,0.13 0.05,0.14 0.1,0.28 0.15,0.42 0.01,0.01 0.04,0.03 0.06,0.03 z" + id="path1094" /> + <path + class="st1" + d="m 283.88,457.34 c 0.13,0 0.13,-0.21 0,-0.21 -0.13,0.01 -0.13,0.21 0,0.21 z" + id="path1096" /> + <path + class="st1" + d="m 282.25,459.02 c -0.09,0 -0.09,0.13 0,0.13 0.09,0 0.09,-0.13 0,-0.13 z" + id="path1098" /> + <path + class="st1" + d="m 262.91,457.13 c 0.02,0.3 0.04,0.6 0.05,0.9 0.01,0.15 0.01,0.3 0.03,0.44 0.01,0.07 0.02,0.15 0.03,0.22 0.01,0.07 0.02,0.15 0.05,0.22 0.04,0.07 0.13,0.04 0.16,-0.02 0.03,-0.07 0.02,-0.15 0.02,-0.23 0,-0.07 0.01,-0.14 0.01,-0.2 0,-0.15 -0.02,-0.3 -0.03,-0.44 -0.02,-0.29 -0.04,-0.59 -0.06,-0.88 0,-0.18 -0.27,-0.18 -0.26,-0.01 z" + id="path1100" /> + <path + class="st1" + d="m 288.05,458.32 c 0.02,-0.25 0.01,-0.51 0.02,-0.76 0,-0.09 -0.14,-0.09 -0.14,0 0,0.25 0,0.51 0.02,0.76 0,0.07 0.1,0.07 0.1,0 z" + id="path1102" /> + <path + class="st1" + d="m 289.19,459.72 c 0.13,0 0.13,-0.2 0,-0.2 -0.12,0.01 -0.12,0.2 0,0.2 z" + id="path1104" /> + <path + class="st1" + d="m 290.33,458.58 c 0.02,0.11 0.02,0.23 0.07,0.33 0.03,0.06 0.12,0.04 0.13,-0.02 0.03,-0.1 0.02,-0.22 0.02,-0.33 0,-0.11 -0.01,-0.22 -0.01,-0.33 -0.02,-0.22 -0.03,-0.44 -0.05,-0.66 0,-0.07 -0.05,-0.12 -0.12,-0.12 -0.06,0 -0.13,0.06 -0.12,0.12 l 0.05,0.68 c 0.01,0.11 0.01,0.22 0.03,0.33 z" + id="path1106" /> + <path + class="st1" + d="m 291.91,459.46 c 0.01,0.04 0.02,0.07 0.03,0.11 0.01,0.02 0.01,0.03 0.02,0.05 0.01,0.04 0.03,0.06 0.05,0.09 0.06,0.08 0.22,0.04 0.24,-0.06 0.01,-0.08 -0.01,-0.18 -0.03,-0.26 -0.02,-0.08 -0.04,-0.15 -0.06,-0.22 -0.04,-0.15 -0.08,-0.29 -0.12,-0.44 -0.02,-0.08 -0.11,-0.13 -0.19,-0.11 -0.08,0.03 -0.12,0.1 -0.11,0.19 0.04,0.15 0.07,0.3 0.11,0.44 0.03,0.06 0.05,0.14 0.06,0.21 z" + id="path1108" /> + <path + class="st1" + d="m 293.45,458.85 c 0.04,0.21 0.07,0.47 0.21,0.63 0.04,0.05 0.15,0.03 0.16,-0.04 0.04,-0.22 -0.05,-0.46 -0.08,-0.67 -0.04,-0.22 -0.06,-0.45 -0.08,-0.68 -0.04,-0.46 -0.03,-0.93 0.02,-1.39 0.02,-0.18 -0.26,-0.18 -0.29,0 -0.06,0.48 -0.07,0.96 -0.04,1.44 0.03,0.24 0.06,0.47 0.1,0.71 z" + id="path1110" /> + <path + class="st1" + d="m 286.74,454.9 c 0.01,0.1 0.01,0.2 0.1,0.26 0.04,0.02 0.1,0.02 0.13,-0.02 0.07,-0.07 0.05,-0.17 0.04,-0.26 -0.01,-0.07 -0.02,-0.15 -0.03,-0.22 -0.02,-0.15 -0.04,-0.31 -0.05,-0.46 -0.01,-0.07 -0.06,-0.14 -0.14,-0.14 -0.07,0 -0.15,0.06 -0.14,0.14 0.02,0.16 0.04,0.31 0.06,0.47 0.01,0.08 0.02,0.16 0.03,0.23 z" + id="path1112" /> + <path + class="st1" + d="m 286.9,456.09 c 0.02,0.07 0.06,0.14 0.12,0.19 0.06,0.05 0.13,0.1 0.21,0.09 0.08,-0.01 0.11,-0.09 0.06,-0.15 -0.01,-0.02 0.01,0.02 0,0 -0.01,-0.01 -0.02,-0.02 -0.03,-0.03 -0.01,-0.01 -0.02,-0.01 -0.03,-0.02 -0.01,-0.01 -0.02,-0.02 -0.02,-0.03 0,0 -0.01,-0.01 -0.01,-0.01 -0.01,-0.02 -0.03,-0.04 -0.04,-0.06 -0.01,-0.01 -0.01,-0.02 -0.02,-0.04 0,0 0,0 0,0 0,0 0,-0.01 0,-0.01 -0.01,-0.02 -0.01,-0.05 -0.02,-0.07 0,0 0,-0.01 0,-0.01 0,-0.01 0,-0.03 0,-0.04 0,0 0,-0.01 0,-0.01 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,-0.01 0,-0.02 0.01,-0.03 0,-0.01 0.01,-0.02 0.01,-0.04 0,0 0,0 0,0 0,-0.01 0.01,-0.01 0.01,-0.02 0.03,-0.06 0.02,-0.14 -0.05,-0.17 -0.06,-0.03 -0.14,-0.02 -0.17,0.05 -0.07,0.12 -0.08,0.27 -0.03,0.41 z" + id="path1114" /> + <path + class="st1" + d="m 287.13,455.88 c 0,-0.02 0,-0.02 0,0 0,0 0,0 0,0 0,0 0,0 0,0 z" + id="path1116" /> + <path + class="st1" + d="m 297.11,455.53 c -0.11,0 -0.11,0.17 0,0.17 0.1,0 0.1,-0.17 0,-0.17 z" + id="path1118" /> + <path + class="st1" + d="m 301.77,455.65 c -0.09,0 -0.09,0.14 0,0.14 0.09,0 0.09,-0.14 0,-0.14 z" + id="path1120" /> + <path + class="st1" + d="m 305.24,455.8 c 0,0 0.01,0.01 0,0 0.02,0.06 0.05,0.08 0.09,0.08 0.01,0 0.01,0 0.02,0 0,0 0,0 0,0 0.04,0 0.08,-0.02 0.09,-0.07 0,0 0,0 0,-0.01 0,0 0,-0.01 0,-0.01 0,-0.01 0.01,-0.03 0.01,-0.04 0.06,-0.19 -0.29,-0.19 -0.23,0 0.01,0.02 0.02,0.03 0.02,0.05 0,0 0,0 0,0 z" + id="path1122" /> + <path + class="st1" + d="m 309.07,456.28 c 0.01,0.07 0.13,0.07 0.14,0 0.08,-0.5 0.05,-1.01 0.05,-1.51 0,-0.52 0,-1.03 0,-1.55 0,-0.15 -0.24,-0.15 -0.24,0 0,0.52 0,1.03 0,1.55 0,0.51 -0.03,1.02 0.05,1.51 z" + id="path1124" /> + <path + class="st1" + d="m 296.99,458.55 c 0.02,0.13 0.03,0.27 0.1,0.38 0.06,0.09 0.21,0.08 0.24,-0.03 0.04,-0.13 0.01,-0.26 -0.01,-0.39 -0.02,-0.14 -0.04,-0.28 -0.06,-0.42 -0.04,-0.26 -0.08,-0.53 -0.11,-0.79 -0.01,-0.09 -0.12,-0.13 -0.2,-0.11 -0.09,0.03 -0.12,0.11 -0.11,0.2 0.03,0.26 0.07,0.52 0.1,0.78 0.02,0.13 0.03,0.26 0.05,0.38 z" + id="path1126" /> + <path + class="st1" + d="m 229.92,474.18 c -0.03,-0.39 -0.06,-0.77 -0.08,-1.16 -0.01,-0.11 -0.18,-0.11 -0.17,0 0.03,0.39 0.05,0.77 0.08,1.16 0.01,0.19 0.03,0.39 0.04,0.58 0.02,0.18 0.02,0.37 0.08,0.55 0.01,0.04 0.08,0.05 0.09,0 0.03,-0.18 0.01,-0.37 0,-0.55 -0.01,-0.2 -0.02,-0.39 -0.04,-0.58 z" + id="path1128" /> + <path + class="st1" + d="m 230.07,475.62 c 0,0.05 0,0.11 0.01,0.16 0,0.02 0.01,0.03 0.03,0.03 0.02,0 0.03,-0.01 0.03,-0.03 0,-0.05 0,-0.11 0.01,-0.16 0,-0.02 -0.02,-0.04 -0.04,-0.04 -0.02,0 -0.04,0.02 -0.04,0.04 z" + id="path1130" /> + <path + class="st1" + d="m 230.84,474.62 c -0.02,-0.12 -0.19,-0.07 -0.17,0.05 0.05,0.33 0.1,0.65 0.15,0.98 0.05,0.32 0.08,0.66 0.18,0.97 0.03,0.09 0.17,0.08 0.17,-0.02 -0.01,-0.33 -0.09,-0.66 -0.15,-0.98 -0.06,-0.34 -0.12,-0.67 -0.18,-1 z" + id="path1132" /> + <path + class="st1" + d="m 232.92,477.22 c -0.02,-0.14 -0.03,-0.29 -0.05,-0.43 -0.03,-0.28 -0.06,-0.56 -0.1,-0.84 -0.01,-0.13 -0.21,-0.13 -0.2,0 0.03,0.29 0.05,0.57 0.08,0.86 0.01,0.14 0.02,0.28 0.04,0.41 0.01,0.07 0.01,0.15 0.02,0.22 0.01,0.07 0,0.14 0.06,0.19 0.05,0.04 0.11,0.03 0.15,-0.02 0.05,-0.06 0.03,-0.13 0.02,-0.21 0,-0.05 -0.01,-0.12 -0.02,-0.18 z" + id="path1134" /> + <path + class="st1" + d="m 234.82,478.09 c 0,-0.02 -0.01,-0.04 -0.02,-0.07 -0.03,-0.06 -0.06,-0.11 -0.09,-0.16 -0.03,-0.05 -0.1,-0.07 -0.14,-0.04 -0.05,0.03 -0.06,0.09 -0.04,0.14 0.03,0.06 0.05,0.11 0.08,0.17 0.01,0.02 0.03,0.03 0.04,0.05 0.01,0.01 0.02,0.02 0.03,0.03 0.01,0.01 0.02,0.02 0.03,0.03 0.01,0.02 0.03,0.03 0.04,0.04 0.04,0.03 0.09,-0.01 0.09,-0.05 0,-0.04 -0.01,-0.07 -0.02,-0.1 0.01,-0.01 0,-0.03 0,-0.04 z" + id="path1136" /> + <path + class="st1" + d="m 237.78,477.57 c -0.01,-0.08 -0.12,-0.08 -0.12,0 0.02,0.33 0.04,0.66 0.06,1 0.02,0.32 0.02,0.66 0.1,0.97 0.01,0.05 0.07,0.03 0.08,-0.01 0.04,-0.32 -0.01,-0.66 -0.04,-0.98 -0.02,-0.33 -0.05,-0.65 -0.08,-0.98 z" + id="path1138" /> + <path + class="st1" + d="m 248.54,481 c -0.03,-0.11 -0.06,-0.23 -0.09,-0.34 -0.06,-0.23 -0.12,-0.46 -0.17,-0.69 -0.04,-0.16 -0.29,-0.09 -0.25,0.07 0.06,0.23 0.11,0.46 0.17,0.69 0.03,0.11 0.05,0.23 0.08,0.34 0.03,0.11 0.06,0.24 0.15,0.32 0.04,0.03 0.1,0.01 0.12,-0.03 0.06,-0.11 0.02,-0.25 -0.01,-0.36 z" + id="path1140" /> + <path + class="st1" + d="m 248.64,481.69 c -0.13,0 -0.13,0.21 0,0.21 0.14,0 0.14,-0.21 0,-0.21 z" + id="path1142" /> + <path + class="st1" + d="m 250.6,481.55 c 0.1,0 0.1,-0.16 0,-0.16 -0.11,0 -0.11,0.16 0,0.16 z" + id="path1144" /> + <path + class="st1" + d="m 252.51,481.6 c -0.05,-0.16 -0.11,-0.33 -0.16,-0.49 -0.02,-0.07 -0.09,-0.11 -0.16,-0.09 -0.07,0.02 -0.12,0.1 -0.09,0.16 0.06,0.17 0.11,0.33 0.17,0.5 0.03,0.08 0.05,0.16 0.08,0.24 0.03,0.09 0.07,0.17 0.11,0.26 0.02,0.05 0.09,0.07 0.14,0.05 0.05,-0.02 0.08,-0.08 0.06,-0.13 -0.02,-0.08 -0.03,-0.16 -0.06,-0.25 -0.03,-0.09 -0.06,-0.17 -0.09,-0.25 z" + id="path1146" /> + <path + class="st1" + d="m 254.5,481.18 c -0.16,0 -0.16,0.25 0,0.25 0.16,0 0.16,-0.25 0,-0.25 z" + id="path1148" /> + <path + class="st1" + d="m 255.29,481.74 c -0.14,-0.11 -0.28,-0.22 -0.41,-0.33 -0.03,-0.02 -0.06,-0.03 -0.09,0 -0.02,0.02 -0.03,0.07 0,0.09 0.14,0.11 0.28,0.22 0.41,0.33 0.07,0.05 0.13,0.11 0.2,0.16 0.04,0.03 0.07,0.05 0.11,0.08 0.04,0.03 0.07,0.06 0.11,0.07 0.03,0.02 0.09,-0.02 0.06,-0.06 -0.05,-0.07 -0.12,-0.12 -0.19,-0.18 -0.06,-0.05 -0.13,-0.1 -0.2,-0.16 z" + id="path1150" /> + <path + class="st1" + d="m 256.94,482.65 c -0.02,-0.01 -0.04,-0.03 -0.06,-0.04 -0.04,-0.03 -0.08,-0.06 -0.12,-0.09 -0.08,-0.06 -0.17,-0.12 -0.25,-0.17 -0.06,-0.04 -0.16,-0.01 -0.19,0.05 -0.04,0.07 -0.01,0.15 0.05,0.19 0.08,0.06 0.17,0.11 0.25,0.17 0.04,0.03 0.08,0.06 0.12,0.08 0.02,0.01 0.04,0.03 0.06,0.04 0.04,0.02 0.07,0.02 0.12,0.03 0.04,0 0.08,-0.03 0.1,-0.06 0.02,-0.04 0.02,-0.08 0,-0.11 -0.01,-0.01 -0.01,-0.02 -0.02,-0.03 -0.01,-0.03 -0.03,-0.04 -0.06,-0.06 z" + id="path1152" /> + <path + class="st1" + d="m 257.91,482.67 c -0.13,0 -0.13,0.21 0,0.21 0.14,0 0.14,-0.21 0,-0.21 z" + id="path1154" /> + <path + class="st1" + d="m 233.92,465.4 c 0.03,0.09 0.14,0.09 0.17,0 0.04,-0.09 0.03,-0.21 0.03,-0.31 0,-0.1 0.01,-0.19 0.01,-0.29 0,-0.21 0,-0.41 -0.01,-0.62 0,-0.41 -0.01,-0.83 -0.01,-1.24 0,-0.14 -0.22,-0.14 -0.22,0 0,0.41 -0.01,0.83 -0.01,1.24 0,0.21 0,0.41 -0.01,0.62 0,0.1 0,0.19 0.01,0.29 0.01,0.1 0,0.21 0.04,0.31 z" + id="path1156" /> + <path + class="st1" + d="m 237.47,465.22 c 0.06,-0.44 0.05,-0.88 0.05,-1.31 0,-0.12 -0.19,-0.12 -0.19,0 0,0.44 -0.01,0.88 0.05,1.31 0,0.05 0.09,0.05 0.09,0 z" + id="path1158" /> + <path + class="st1" + d="m 272.16,474.69 c 0.01,-0.01 0.01,-0.03 0.02,-0.04 0.01,-0.02 0.02,-0.04 0.03,-0.06 0,-0.01 0,-0.03 0.01,-0.04 0,-0.01 0.01,-0.03 0.02,-0.04 0.02,-0.06 0.04,-0.11 0.07,-0.17 0.01,-0.02 -0.01,-0.05 -0.03,-0.06 -0.02,-0.01 -0.05,0 -0.07,0.02 -0.03,0.05 -0.07,0.1 -0.1,0.15 0,0.01 -0.01,0.01 -0.01,0.02 0,0 0,0.01 -0.01,0.01 0,0.01 0,0.01 0,0 0.01,-0.01 -0.01,0.01 -0.01,0.01 0,0.01 -0.01,0.01 -0.01,0.02 -0.02,0.03 -0.04,0.06 -0.06,0.09 -0.02,0.04 -0.01,0.1 0.03,0.13 0.03,0.02 0.09,0.01 0.12,-0.04 z" + id="path1160" /> + <path + class="st1" + d="m 273.7,467.81 c -0.01,0.44 -0.01,0.88 -0.02,1.33 0,0.22 0,0.43 0,0.65 0,0.1 0,0.2 0.02,0.3 0.02,0.11 0.01,0.24 0.05,0.35 0.03,0.09 0.15,0.09 0.18,0 0.04,-0.1 0.03,-0.21 0.05,-0.32 0.02,-0.11 0.02,-0.22 0.02,-0.33 0,-0.22 0.01,-0.43 0,-0.65 -0.01,-0.44 -0.01,-0.88 -0.02,-1.33 0.02,-0.19 -0.28,-0.19 -0.28,0 z" + id="path1162" /> + <path + class="st1" + d="m 273.96,471.06 c 0,-0.06 -0.05,-0.11 -0.11,-0.11 -0.06,0 -0.1,0.05 -0.11,0.11 0,0.11 -0.01,0.22 -0.01,0.33 0,0.05 0,0.1 0,0.16 0,0.06 -0.01,0.13 0.01,0.19 0.02,0.05 0.06,0.09 0.11,0.08 0.05,0 0.09,-0.04 0.11,-0.08 0.02,-0.06 0.01,-0.12 0.01,-0.18 0,-0.05 0,-0.11 0,-0.16 -0.01,-0.12 -0.01,-0.23 -0.01,-0.34 z" + id="path1164" /> + <path + class="st1" + d="m 295.64,470.12 c 0.04,0 0.04,-0.06 0,-0.06 -0.04,0 -0.04,0.06 0,0.06 z" + id="path1166" /> + <path + class="st1" + d="m 297.27,471.95 c 0.1,0 0.1,-0.16 0,-0.16 -0.1,0.01 -0.1,0.16 0,0.16 z" + id="path1168" /> + <path + class="st1" + d="m 330.16,465.05 c -0.03,-0.49 -0.05,-0.98 -0.08,-1.46 -0.01,-0.18 -0.29,-0.18 -0.28,0 0.03,0.5 0.05,0.99 0.08,1.49 0.01,0.25 0.03,0.5 0.04,0.75 0.01,0.24 0.02,0.48 0.07,0.72 0.03,0.13 0.2,0.08 0.21,-0.03 0.03,-0.25 0,-0.5 -0.01,-0.75 -0.01,-0.24 -0.02,-0.48 -0.03,-0.72 z" + id="path1170" /> + <path + class="st1" + d="m 331.8,464.4 v 1.08 c 0,0.18 0,0.36 0,0.54 0,0.17 0.01,0.35 0.04,0.52 0.01,0.07 0.12,0.07 0.14,0 0.04,-0.16 0.04,-0.35 0.04,-0.52 0,-0.18 0,-0.36 0,-0.54 0,-0.36 0,-0.72 0,-1.08 0,-0.14 -0.22,-0.14 -0.22,0 z" + id="path1172" /> + <path + class="st1" + d="m 333.83,463.09 c 0,-0.17 -0.27,-0.17 -0.27,0 0,0.3 0,0.61 0,0.91 0,0.15 0,0.3 0,0.46 0,0.15 -0.01,0.31 0.03,0.45 0.03,0.1 0.18,0.1 0.21,0 0.04,-0.14 0.03,-0.3 0.03,-0.45 0,-0.15 0,-0.3 0,-0.46 0,-0.3 0,-0.6 0,-0.91 z" + id="path1174" /> + <path + class="st1" + d="m 331.17,444.01 c 0.03,0.24 0,0.49 0.04,0.73 0.01,0.06 0.11,0.06 0.12,0 0.05,-0.24 0.01,-0.53 -0.02,-0.78 -0.03,-0.26 -0.08,-0.51 -0.15,-0.76 -0.14,-0.51 -0.37,-1 -0.66,-1.44 -0.05,-0.08 -0.18,0 -0.13,0.07 0.29,0.43 0.51,0.9 0.64,1.4 0.08,0.26 0.13,0.52 0.16,0.78 z" + id="path1176" /> + <path + class="st1" + d="m 342.48,448.25 c -0.05,0 -0.05,0.08 0,0.08 0.05,0.01 0.05,-0.08 0,-0.08 z" + id="path1178" /> + <path + class="st1" + d="m 260.35,471.93 c 0,-0.34 -0.01,-0.69 -0.01,-1.03 0,-0.19 -0.29,-0.19 -0.29,0 l -0.01,1.03 c 0,0.17 0,0.33 0,0.5 0,0.09 0,0.18 0,0.27 0,0.09 0,0.18 0.07,0.24 0.06,0.05 0.12,0.05 0.18,0 0.08,-0.06 0.07,-0.15 0.07,-0.24 0,-0.09 0,-0.18 0,-0.27 -0.01,-0.16 -0.01,-0.33 -0.01,-0.5 z" + id="path1180" /> + <path + class="st1" + d="m 306.38,472.24 c 0.05,0 0.05,-0.07 0,-0.07 -0.05,0 -0.05,0.07 0,0.07 z" + id="path1182" /> + <path + class="st1" + d="m 248,447.81 c -0.03,-0.33 -0.05,-0.65 -0.08,-0.98 -0.01,-0.11 -0.18,-0.11 -0.18,0 0.03,0.33 0.06,0.66 0.08,0.99 0.01,0.17 0.03,0.33 0.04,0.5 0.01,0.16 0.04,0.32 0.07,0.48 0.01,0.07 0.12,0.05 0.12,-0.02 0,-0.17 0,-0.33 -0.02,-0.5 0,-0.15 -0.02,-0.31 -0.03,-0.47 z" + id="path1184" /> + <path + class="st1" + d="m 245.08,452.03 c -0.16,-0.38 -0.37,-0.74 -0.63,-1.07 -0.51,-0.65 -1.19,-1.15 -1.96,-1.45 -0.12,-0.05 -0.17,0.14 -0.05,0.19 0.73,0.3 1.37,0.81 1.84,1.44 0.23,0.31 0.43,0.65 0.58,1.01 0.07,0.17 0.13,0.34 0.18,0.52 0.03,0.09 0.05,0.18 0.08,0.27 0.03,0.09 0.03,0.19 0.09,0.26 0.03,0.05 0.1,0.04 0.12,-0.02 0.06,-0.16 -0.01,-0.4 -0.04,-0.56 -0.06,-0.2 -0.13,-0.39 -0.21,-0.59 z" + id="path1186" /> + <path + class="st1" + d="m 244.32,449.55 c -0.59,-0.55 -1.27,-0.98 -2.02,-1.27 -0.08,-0.03 -0.12,0.1 -0.04,0.13 0.73,0.3 1.39,0.73 1.95,1.28 0.28,0.27 0.53,0.56 0.76,0.87 0.11,0.15 0.21,0.31 0.31,0.47 0.1,0.17 0.18,0.35 0.29,0.52 0.05,0.07 0.17,0.03 0.14,-0.06 -0.11,-0.37 -0.37,-0.73 -0.6,-1.04 -0.23,-0.32 -0.5,-0.63 -0.79,-0.9 z" + id="path1188" /> + <path + class="st1" + d="m 241.65,447.17 c 0.87,0.08 1.71,0.45 2.39,1 0.69,0.56 1.15,1.27 1.48,2.09 0.05,0.13 0.25,0.08 0.22,-0.06 -0.23,-0.89 -0.85,-1.69 -1.56,-2.24 -0.73,-0.57 -1.6,-0.92 -2.52,-0.99 -0.15,-0.02 -0.14,0.19 -0.01,0.2 z" + id="path1190" /> + <path + class="st1" + d="m 235.05,455.42 c -0.09,0.25 -0.17,0.5 -0.26,0.74 -0.04,0.12 -0.08,0.24 -0.12,0.36 -0.02,0.07 -0.03,0.13 -0.04,0.2 -0.01,0.06 -0.03,0.12 -0.03,0.19 0,0.07 0.09,0.08 0.12,0.03 0.04,-0.06 0.06,-0.12 0.09,-0.18 0.03,-0.06 0.06,-0.12 0.08,-0.18 0.04,-0.12 0.08,-0.24 0.12,-0.36 0.08,-0.25 0.16,-0.5 0.24,-0.75 0.04,-0.12 -0.16,-0.17 -0.2,-0.05 z" + id="path1192" /> + <path + class="st1" + d="m 234.64,458.46 c -0.05,0.01 -0.06,0.06 -0.06,0.1 0.05,0.27 0.09,0.54 0.14,0.8 0.01,0.06 0.08,0.09 0.13,0.07 0.06,-0.02 0.09,-0.07 0.07,-0.13 -0.06,-0.26 -0.12,-0.53 -0.18,-0.79 -0.01,-0.03 -0.06,-0.06 -0.1,-0.05 z" + id="path1194" /> + <path + class="st1" + d="m 235.68,458.55 c 0,-0.51 -0.07,-1.01 -0.02,-1.52 0.05,-0.52 0.19,-1.04 0.4,-1.52 0.05,-0.12 -0.13,-0.23 -0.18,-0.11 -0.23,0.49 -0.38,1.01 -0.44,1.54 -0.07,0.52 -0.08,1.12 0.12,1.62 0.02,0.07 0.12,0.06 0.12,-0.01 z" + id="path1196" /> + <path + class="st1" + d="m 235.96,457.47 c -0.07,-0.01 -0.17,0.05 -0.13,0.13 0.08,0.2 0.16,0.4 0.24,0.59 0.04,0.1 0.08,0.2 0.13,0.3 0.05,0.1 0.09,0.21 0.16,0.28 0.06,0.06 0.17,0.02 0.17,-0.07 -0.01,-0.11 -0.05,-0.2 -0.09,-0.3 -0.04,-0.11 -0.09,-0.21 -0.13,-0.31 -0.03,-0.06 -0.05,-0.11 -0.08,-0.17 0,-0.01 0.01,-0.01 0.02,-0.01 0.03,-0.1 0.01,-0.2 0.01,-0.3 0,-0.11 0.01,-0.22 0.02,-0.33 0.02,-0.21 0.07,-0.42 0.13,-0.63 0.13,-0.41 0.34,-0.8 0.64,-1.12 0.1,-0.11 -0.06,-0.28 -0.17,-0.17 -0.33,0.34 -0.58,0.75 -0.73,1.19 -0.08,0.22 -0.12,0.45 -0.15,0.68 -0.04,0.09 -0.04,0.17 -0.04,0.24 z" + id="path1198" /> + <path + class="st1" + d="m 237.23,457.98 c 0.03,0.21 0.1,0.41 0.21,0.59 0.25,0.39 0.61,0.66 1.04,0.82 0.84,0.32 1.78,-0.04 2.22,-0.82 0.41,-0.74 0.37,-1.77 -0.29,-2.36 -0.37,-0.33 -0.85,-0.5 -1.34,-0.5 -0.28,0 -0.53,0.07 -0.79,0.18 -0.12,0.05 -0.22,0.12 -0.32,0.2 -0.09,0.07 -0.15,0.16 -0.19,0.26 0,0.01 0,0.02 -0.01,0.03 -0.06,0.06 -0.1,0.14 -0.16,0.21 0.07,-0.14 0.15,-0.27 0.25,-0.39 0.12,-0.14 -0.08,-0.34 -0.2,-0.2 -0.22,0.26 -0.39,0.57 -0.48,0.9 -0.09,0.32 -0.14,0.7 -0.03,1.02 0.02,0.04 0.05,0.04 0.09,0.06 z m 0.94,-0.54 c 0,0 0,-0.01 0,-0.03 0,0 0,0 0,-0.01 0.01,-0.04 0.02,-0.08 0.03,-0.12 0,-0.01 0,-0.01 0.01,-0.02 0.03,-0.02 0.07,-0.03 0.1,-0.04 0,0 0.01,0 0.01,0 0.11,0 0.22,-0.04 0.32,-0.08 0,0 0,0 0.01,0 0.04,-0.02 0.07,-0.03 0.1,-0.05 0,0 0,0 0.01,0 0.02,-0.01 0.04,-0.01 0.06,-0.02 0.06,-0.02 0.13,-0.03 0.19,-0.04 -0.02,0 -0.04,0.01 -0.04,0 0.01,-0.01 0.04,-0.01 0.07,-0.01 0.01,0 0.02,0 0.03,0 -0.01,0 -0.01,0 -0.03,0 0.02,0 0.03,0 0.04,0 0.05,0 0.1,0 0.15,0.01 0.04,0.01 0.07,0.02 0.11,0.03 0.02,0.01 0.04,0.01 0.06,0.02 0.04,0.02 0.09,0.05 0.13,0.08 0.02,0.02 0.04,0.04 0.06,0.06 0.02,0.03 0.04,0.05 0.05,0.08 0.01,0.01 0.01,0.02 0.02,0.03 0,0.01 0,0.01 0.01,0.02 0.01,0.03 0.02,0.06 0.03,0.09 0,0.01 0.01,0.03 0.01,0.05 0,0.02 0,0.03 0,0.04 0,0.03 0,0.06 0,0.1 0,0.02 0,0.05 0,0.07 -0.01,0.06 -0.03,0.12 -0.05,0.18 0,0.01 -0.01,0.02 -0.01,0.03 -0.01,0.02 -0.02,0.04 -0.03,0.06 -0.03,0.05 -0.06,0.09 -0.08,0.13 -0.03,0.03 -0.05,0.05 -0.08,0.08 0,0 -0.01,0.01 -0.02,0.01 -0.02,0.01 -0.04,0.03 -0.05,0.03 -0.03,0.02 -0.05,0.03 -0.08,0.04 -0.06,0.02 -0.12,0.03 -0.17,0.05 -0.04,0 -0.08,0 -0.12,0 -0.02,0 -0.05,-0.01 -0.08,-0.01 -0.07,-0.01 -0.14,-0.04 -0.21,-0.06 -0.03,-0.02 -0.06,-0.03 -0.09,-0.05 -0.03,-0.02 -0.06,-0.03 -0.09,-0.05 -0.01,-0.01 -0.02,-0.01 -0.02,-0.02 -0.04,-0.04 -0.09,-0.08 -0.13,-0.12 -0.01,-0.01 -0.02,-0.02 -0.03,-0.03 -0.02,-0.02 -0.04,-0.06 -0.05,-0.07 -0.03,-0.06 -0.07,-0.12 -0.1,-0.17 -0.01,-0.01 -0.01,-0.03 -0.02,-0.04 0,0 0,0 0,-0.01 0,0 0,0 0,-0.01 0,0 0,0 0,0.01 -0.02,-0.03 -0.01,-0.02 0,-0.01 -0.01,-0.02 -0.01,-0.04 -0.02,-0.06 0,-0.01 0,-0.03 0,-0.03 -0.01,-0.05 -0.01,-0.09 -0.01,-0.14 z" + id="path1200" /> + <path + class="st1" + d="m 240.94,456.46 c 0.25,0.42 0.36,0.91 0.32,1.4 -0.02,0.23 -0.07,0.47 -0.16,0.68 -0.04,0.11 -0.1,0.22 -0.15,0.33 -0.05,0.11 -0.12,0.2 -0.16,0.31 -0.02,0.05 0.05,0.11 0.1,0.08 0.19,-0.13 0.32,-0.4 0.39,-0.61 0.09,-0.25 0.14,-0.51 0.15,-0.78 0.02,-0.52 -0.11,-1.04 -0.4,-1.48 -0.03,-0.04 -0.12,0.01 -0.09,0.07 z" + id="path1202" /> + <path + class="st1" + d="m 241.91,458.63 c -0.03,0.15 -0.08,0.3 -0.13,0.45 -0.05,0.14 -0.13,0.28 -0.18,0.42 -0.02,0.05 0.06,0.1 0.09,0.06 0.21,-0.22 0.33,-0.58 0.4,-0.88 0.07,-0.33 0.09,-0.67 0.06,-1 -0.06,-0.66 -0.33,-1.29 -0.79,-1.78 -0.06,-0.07 -0.16,0.03 -0.1,0.1 0.42,0.48 0.66,1.1 0.71,1.73 0.03,0.3 0.01,0.61 -0.06,0.9 z" + id="path1204" /> + <path + class="st1" + d="m 242.66,458.32 c -0.1,0.31 -0.29,0.57 -0.4,0.87 -0.03,0.07 0.07,0.1 0.12,0.07 0.25,-0.2 0.4,-0.58 0.49,-0.88 0.1,-0.33 0.15,-0.69 0.14,-1.04 -0.02,-0.69 -0.26,-1.37 -0.69,-1.9 -0.05,-0.07 -0.17,0.02 -0.12,0.09 0.41,0.53 0.61,1.17 0.61,1.84 -0.01,0.32 -0.06,0.64 -0.15,0.95 z" + id="path1206" /> + <path + class="st1" + d="m 243.23,459 c -0.03,0.08 0.07,0.18 0.13,0.1 0.36,-0.46 0.49,-1.09 0.48,-1.67 -0.01,-0.6 -0.18,-1.19 -0.51,-1.69 -0.06,-0.09 -0.19,-0.01 -0.14,0.08 0.3,0.47 0.45,1.02 0.45,1.58 0,0.58 -0.18,1.09 -0.41,1.6 z" + id="path1208" /> + <path + class="st1" + d="m 240.27,459.77 c 0.07,-0.07 -0.03,-0.17 -0.11,-0.11 -0.63,0.5 -1.54,0.59 -2.2,0.1 -0.04,-0.03 -0.1,0.04 -0.06,0.07 0.67,0.54 1.76,0.56 2.37,-0.06 z" + id="path1210" /> + <path + class="st1" + d="m 240.98,459.63 c -0.15,0.08 -0.26,0.22 -0.4,0.32 -0.14,0.1 -0.29,0.19 -0.45,0.26 -0.33,0.15 -0.69,0.24 -1.05,0.27 -0.71,0.05 -1.47,-0.14 -2.03,-0.58 -0.09,-0.07 -0.21,0.05 -0.12,0.12 0.61,0.51 1.37,0.75 2.16,0.68 0.38,-0.03 0.76,-0.13 1.11,-0.29 0.3,-0.14 0.74,-0.37 0.89,-0.68 0.02,-0.07 -0.05,-0.14 -0.11,-0.1 z" + id="path1212" /> + <path + class="st1" + d="m 239.71,461.32 c -0.28,0.11 -0.58,0.17 -0.87,0.2 -0.59,0.06 -1.2,-0.11 -1.7,-0.43 -0.07,-0.04 -0.13,0.06 -0.06,0.11 0.53,0.35 1.15,0.5 1.79,0.49 0.59,-0.01 1.3,-0.21 1.7,-0.66 0.05,-0.06 -0.01,-0.14 -0.08,-0.1 -0.27,0.13 -0.51,0.28 -0.78,0.39 z" + id="path1214" /> + <path + class="st1" + d="m 237.66,455.52 c 0.3,-0.25 0.68,-0.4 1.07,-0.44 0.19,-0.02 0.38,-0.02 0.57,0.01 0.09,0.02 0.19,0.03 0.28,0.06 0.09,0.02 0.18,0.07 0.28,0.07 0.08,0.01 0.11,-0.1 0.06,-0.15 -0.07,-0.08 -0.18,-0.11 -0.28,-0.15 -0.1,-0.04 -0.2,-0.07 -0.31,-0.09 -0.22,-0.03 -0.44,-0.04 -0.66,-0.01 -0.43,0.06 -0.84,0.25 -1.17,0.54 -0.09,0.11 0.06,0.25 0.16,0.16 z" + id="path1216" /> + <path + class="st1" + d="m 240.07,454.19 c -0.22,-0.08 -0.46,-0.12 -0.69,-0.13 -0.47,-0.02 -0.93,0.11 -1.32,0.37 -0.11,0.07 -0.01,0.25 0.1,0.18 0.36,-0.23 0.79,-0.34 1.22,-0.32 0.21,0.01 0.42,0.05 0.61,0.13 0.1,0.04 0.2,0.08 0.29,0.13 0.09,0.05 0.17,0.12 0.28,0.13 0.08,0.01 0.11,-0.08 0.08,-0.14 -0.04,-0.09 -0.17,-0.16 -0.25,-0.2 -0.11,-0.06 -0.21,-0.11 -0.32,-0.15 z" + id="path1218" /> + <path + class="st1" + d="m 239.41,453.62 c 0.3,0.03 0.6,0.08 0.88,0.16 0.28,0.08 0.57,0.24 0.85,0.28 0.07,0.01 0.15,-0.08 0.08,-0.14 -0.22,-0.2 -0.56,-0.29 -0.84,-0.36 -0.3,-0.08 -0.61,-0.14 -0.92,-0.17 -0.64,-0.05 -1.29,0.02 -1.9,0.2 -0.1,0.03 -0.06,0.18 0.04,0.16 0.6,-0.15 1.2,-0.19 1.81,-0.13 z" + id="path1220" /> + <path + class="st1" + d="m 245.72,462.4 c -0.05,0 -0.05,0.08 0,0.08 0.11,0 0.22,0 0.33,-0.01 0.04,0 0.04,-0.07 0,-0.07 -0.12,0.01 -0.22,0.01 -0.33,0 z" + id="path1222" /> + <path + class="st1" + d="m 248.64,461.36 c 0.07,-0.01 0.07,-0.1 0,-0.1 -0.22,-0.02 -0.43,-0.01 -0.65,-0.01 h -0.65 c -0.08,0 -0.08,0.13 0,0.13 h 0.65 c 0.22,-0.01 0.44,-0.01 0.65,-0.02 z" + id="path1224" /> + <path + class="st1" + d="m 240.77,475.09 c 0.6,0.13 1.21,0.24 1.81,0.34 0.32,0.05 0.64,0.1 0.96,0.15 0.29,0.04 0.6,0.12 0.9,0.09 0.1,-0.01 0.11,-0.13 0.02,-0.17 -0.24,-0.1 -0.5,-0.13 -0.76,-0.17 -0.27,-0.05 -0.54,-0.1 -0.81,-0.15 -0.53,-0.1 -1.06,-0.19 -1.58,-0.3 -1.03,-0.21 -2.07,-0.45 -3.08,-0.77 -1.81,-0.56 -3.57,-1.37 -5.06,-2.56 -0.8,-0.64 -1.52,-1.38 -2.11,-2.22 -0.07,-0.09 -0.22,-0.01 -0.16,0.09 2.19,3.33 6.12,4.88 9.87,5.67 z" + id="path1226" /> + <path + class="st1" + d="m 241.85,473.77 c 0.9,0.23 1.81,0.42 2.73,0.48 0.09,0.01 0.12,-0.15 0.02,-0.17 -1.58,-0.35 -3.16,-0.64 -4.7,-1.16 -1.55,-0.51 -3.05,-1.17 -4.49,-1.95 -0.81,-0.44 -1.59,-0.91 -2.35,-1.43 -0.1,-0.07 -0.19,0.09 -0.09,0.16 2.67,1.91 5.7,3.28 8.88,4.07 z" + id="path1228" /> + <path + class="st1" + d="m 240.84,471.6 c 0.8,0.26 1.61,0.48 2.44,0.67 0.78,0.18 1.62,0.42 2.43,0.41 0.1,0 0.12,-0.14 0.02,-0.17 -0.4,-0.13 -0.82,-0.19 -1.23,-0.27 -0.38,-0.08 -0.77,-0.16 -1.15,-0.25 -0.81,-0.19 -1.6,-0.41 -2.39,-0.66 -1.58,-0.5 -3.12,-1.13 -4.62,-1.84 -0.13,-0.06 -0.25,0.13 -0.11,0.2 1.48,0.78 3.03,1.41 4.61,1.91 z" + id="path1230" /> + <path + class="st1" + d="m 277.43,474.92 c 0.44,0.01 0.88,0.01 1.33,0.02 0.22,0.01 0.44,0.01 0.66,0 0.21,-0.01 0.43,-0.01 0.64,-0.06 0.08,-0.02 0.08,-0.15 0,-0.17 -0.21,-0.05 -0.43,-0.04 -0.64,-0.06 -0.22,-0.01 -0.44,0 -0.66,0 -0.44,0.01 -0.88,0.02 -1.33,0.02 -0.15,0.02 -0.15,0.25 0,0.25 z" + id="path1232" /> + <path + class="st1" + d="m 282.65,475 c 0.9,-0.19 1.82,-0.33 2.74,-0.41 0.44,-0.04 0.89,-0.07 1.33,-0.08 0.22,-0.01 0.44,-0.01 0.67,0 0.22,0 0.44,0.03 0.65,-0.02 0.11,-0.03 0.1,-0.19 0,-0.22 -0.22,-0.07 -0.47,-0.05 -0.7,-0.05 -0.22,0 -0.44,0 -0.67,0.01 -0.46,0.01 -0.92,0.04 -1.38,0.09 -0.91,0.09 -1.81,0.26 -2.7,0.49 -0.13,0.03 -0.08,0.22 0.06,0.19 z" + id="path1234" /> + <path + class="st1" + d="m 282.02,476.23 c 0.79,0.03 1.57,0.03 2.36,0.02 0.77,-0.01 1.57,0.01 2.33,-0.11 0.06,-0.01 0.04,-0.1 -0.01,-0.11 -0.78,-0.05 -1.58,0.03 -2.36,0.04 -0.79,0.01 -1.57,0 -2.36,-0.02 -1.57,-0.04 -3.15,-0.14 -4.71,-0.31 -0.08,-0.01 -0.08,0.11 0,0.12 1.57,0.2 3.16,0.32 4.75,0.37 z" + id="path1236" /> + <path + class="st1" + d="m 286.43,477.51 c 1.01,-0.03 2.03,-0.07 3.03,-0.2 0.07,-0.01 0.08,-0.12 0,-0.12 -1.78,0.07 -3.56,0.21 -5.35,0.21 -1.77,0 -3.54,-0.07 -5.3,-0.2 -1.01,-0.08 -2.02,-0.18 -3.02,-0.3 -0.11,-0.01 -0.1,0.15 0,0.17 3.54,0.42 7.09,0.56 10.64,0.44 z" + id="path1238" /> + <path + class="st1" + d="m 270.92,478.17 c 5.86,0.76 11.83,0.9 17.72,0.47 0.83,-0.06 1.67,-0.13 2.5,-0.22 0.23,-0.02 0.46,-0.05 0.69,-0.08 -0.01,0.01 -0.02,0.02 -0.02,0.04 0,0.02 0.01,0.04 0.02,0.06 0.02,0.01 0.04,0.03 0.06,0.02 l 0.16,-0.01 c 0.02,0 0.04,-0.01 0.05,-0.02 0.01,-0.01 0.02,-0.03 0.02,-0.05 0,-0.02 -0.01,-0.04 -0.02,-0.05 -0.01,-0.01 -0.02,-0.01 -0.03,-0.01 0.5,-0.06 1,-0.13 1.49,-0.24 0.13,-0.03 0.1,-0.24 -0.03,-0.24 -1.47,0.05 -2.94,0.28 -4.41,0.4 -1.47,0.12 -2.95,0.21 -4.43,0.26 -2.92,0.11 -5.85,0.05 -8.77,-0.13 -1.67,-0.1 -3.33,-0.24 -4.99,-0.43 -0.15,-0.01 -0.15,0.21 -0.01,0.23 z" + id="path1240" /> + <path + class="st1" + d="m 321.83,473.53 c 0.98,-0.23 1.97,-0.46 2.94,-0.77 0.12,-0.04 0.07,-0.22 -0.05,-0.2 -1.71,0.39 -3.41,0.85 -5.13,1.2 -1.7,0.35 -3.42,0.65 -5.14,0.9 -1.01,0.15 -2.02,0.29 -3.03,0.4 -0.11,0.01 -0.11,0.18 0,0.17 3.51,-0.33 6.98,-0.9 10.41,-1.7 z" + id="path1242" /> + <path + class="st1" + d="m 316.1,476.04 c -1.12,0.14 -2.25,0.25 -3.38,0.34 -0.09,0.01 -0.09,0.15 0,0.14 4.05,-0.26 8.06,-0.88 11.99,-1.86 1.11,-0.28 2.23,-0.56 3.32,-0.92 0.13,-0.04 0.08,-0.24 -0.06,-0.21 -1.95,0.53 -3.87,1.08 -5.85,1.5 -1.99,0.43 -4,0.76 -6.02,1.01 z" + id="path1244" /> + <path + class="st1" + d="m 253.52,381.53 c 0.09,0 0.09,-0.14 0,-0.14 -0.09,0 -0.09,0.14 0,0.14 z" + id="path1246" /> + <path + class="st1" + d="m 253.63,379.55 c 0.1,0.08 0.22,0.18 0.35,0.22 0.09,0.02 0.16,-0.07 0.12,-0.15 -0.07,-0.11 -0.21,-0.2 -0.31,-0.28 l -0.34,-0.26 c -0.22,-0.17 -0.45,-0.34 -0.67,-0.5 -0.06,-0.04 -0.15,-0.01 -0.18,0.05 -0.04,0.07 -0.01,0.14 0.05,0.18 0.22,0.17 0.44,0.33 0.66,0.5 0.1,0.08 0.21,0.16 0.32,0.24 z" + id="path1248" /> + <path + class="st1" + d="m 254.28,378.04 c 0.14,0.12 0.27,0.24 0.41,0.37 0.07,0.06 0.14,0.12 0.2,0.18 0.07,0.06 0.13,0.13 0.22,0.17 0.06,0.03 0.13,-0.03 0.1,-0.1 -0.04,-0.08 -0.11,-0.13 -0.18,-0.19 -0.07,-0.06 -0.14,-0.12 -0.2,-0.18 -0.14,-0.13 -0.28,-0.25 -0.42,-0.38 -0.28,-0.25 -0.55,-0.49 -0.83,-0.74 -0.09,-0.08 -0.21,0.05 -0.13,0.13 0.28,0.24 0.56,0.49 0.83,0.74 z" + id="path1250" /> + <path + class="st1" + d="m 254.68,377.14 c 0.09,0.08 0.19,0.16 0.28,0.24 0.1,0.08 0.19,0.18 0.3,0.24 0.07,0.03 0.16,-0.04 0.11,-0.11 -0.07,-0.1 -0.18,-0.18 -0.27,-0.26 -0.1,-0.08 -0.2,-0.17 -0.29,-0.25 -0.19,-0.16 -0.39,-0.33 -0.58,-0.49 -0.09,-0.08 -0.22,0.05 -0.13,0.13 0.2,0.17 0.39,0.34 0.58,0.5 z" + id="path1252" /> + <path + class="st1" + d="m 255.93,376.8 c 0.07,0.04 0.13,-0.07 0.07,-0.11 -0.26,-0.17 -0.54,-0.34 -0.81,-0.5 -0.09,-0.05 -0.17,0.08 -0.08,0.14 0.27,0.15 0.54,0.32 0.82,0.47 z" + id="path1254" /> + <path + class="st1" + d="m 257.09,375.75 c -0.12,-0.04 -0.24,-0.08 -0.36,-0.12 -0.25,-0.08 -0.5,-0.16 -0.75,-0.25 -0.08,-0.03 -0.11,0.1 -0.03,0.12 0.25,0.08 0.5,0.17 0.74,0.25 0.12,0.04 0.24,0.08 0.36,0.12 0.12,0.04 0.25,0.1 0.38,0.11 0.06,0.01 0.07,-0.08 0.03,-0.11 -0.11,-0.06 -0.25,-0.08 -0.37,-0.12 z" + id="path1256" /> + <path + class="st1" + d="m 256.81,374.74 c 0.18,0.11 0.36,0.22 0.53,0.34 0.16,0.1 0.35,0.26 0.54,0.29 0.08,0.01 0.18,-0.07 0.12,-0.16 -0.11,-0.16 -0.32,-0.26 -0.49,-0.35 -0.19,-0.11 -0.37,-0.22 -0.56,-0.33 -0.37,-0.22 -0.73,-0.44 -1.1,-0.66 -0.13,-0.08 -0.24,0.12 -0.12,0.2 0.37,0.22 0.73,0.45 1.08,0.67 z" + id="path1258" /> + <path + class="st1" + d="m 324.09,345.47 c -0.12,0.39 -0.23,0.79 -0.35,1.18 -0.06,0.19 -0.11,0.39 -0.17,0.58 -0.03,0.1 -0.06,0.2 -0.08,0.3 -0.02,0.1 -0.06,0.2 -0.03,0.3 0.03,0.1 0.15,0.12 0.22,0.06 0.08,-0.07 0.1,-0.17 0.13,-0.26 0.03,-0.1 0.06,-0.2 0.09,-0.3 0.06,-0.19 0.11,-0.39 0.17,-0.58 0.11,-0.39 0.22,-0.79 0.33,-1.18 0.07,-0.22 -0.25,-0.31 -0.31,-0.1 z" + id="path1260" /> + <path + class="st1" + d="m 247.97,341.44 c 0,0.02 0.01,0.03 0.02,0.04 -0.01,-0.03 -0.01,-0.05 -0.02,-0.08 z" + id="path1262" /> + <polygon + class="st1" + points="247.99,341.48 247.99,341.49 247.99,341.48 " + id="polygon1264" /> + <path + class="st1" + d="m 258.38,304.35 c -0.03,-0.06 -0.06,-0.11 -0.08,-0.16 -0.01,-0.02 -0.04,-0.03 -0.07,-0.02 -0.02,0.01 -0.03,0.04 -0.02,0.07 0.03,0.05 0.05,0.11 0.08,0.16 0.01,0.03 0.03,0.05 0.04,0.08 0.02,0.03 0.03,0.05 0.05,0.08 0.01,0.02 0.03,0.02 0.05,0.02 0.02,-0.01 0.03,-0.03 0.02,-0.05 -0.01,-0.03 -0.02,-0.06 -0.04,-0.09 0,-0.04 -0.02,-0.07 -0.03,-0.09 z" + id="path1266" /> + <path + class="st1" + d="m 259.05,303.64 c -0.11,0 -0.11,0.17 0,0.17 0.11,0 0.11,-0.17 0,-0.17 z" + id="path1268" /> + <path + class="st1" + d="m 258.56,303.6 c 0.05,0 0.05,-0.08 0,-0.08 -0.05,0 -0.05,0.08 0,0.08 z" + id="path1270" /> + <path + class="st1" + d="m 258.89,305.1 c 0.09,0 0.09,-0.14 0,-0.14 -0.09,0 -0.09,0.14 0,0.14 z" + id="path1272" /> + <path + class="st1" + d="m 259.94,305.65 c 0.11,-0.06 0.22,-0.11 0.32,-0.17 0.05,-0.03 0.11,-0.06 0.16,-0.08 0.05,-0.03 0.1,-0.07 0.15,-0.1 0.05,-0.04 0.08,-0.09 0.05,-0.15 -0.02,-0.06 -0.09,-0.09 -0.14,-0.07 -0.07,0.02 -0.13,0.04 -0.19,0.07 -0.06,0.03 -0.11,0.05 -0.17,0.08 -0.11,0.05 -0.22,0.11 -0.33,0.16 -0.07,0.04 -0.1,0.15 -0.06,0.21 0.05,0.07 0.14,0.09 0.21,0.05 z" + id="path1274" /> + <path + class="st1" + d="m 260.52,306.84 c -0.18,0 -0.18,0.27 0,0.27 0.17,0 0.17,-0.27 0,-0.27 z" + id="path1276" /> + <path + class="st1" + d="m 260.58,307.36 c 0.11,0.16 0.27,0.27 0.45,0.31 0.1,0.02 0.19,0.03 0.29,0 0.05,-0.01 0.09,-0.03 0.13,-0.05 0.05,-0.02 0.09,-0.05 0.12,-0.1 0.04,-0.06 -0.01,-0.15 -0.08,-0.15 -0.04,0 -0.08,0.01 -0.12,0.02 -0.02,0 -0.03,0.01 -0.05,0.01 0,0 0,0 0,0 0,0 0,0 0,0 -0.01,0 -0.01,0 -0.02,0 -0.04,0 -0.07,0 -0.11,0 -0.02,0 -0.04,0 -0.05,0 0.03,0 0,0 -0.01,0 -0.01,0 -0.02,0 -0.03,-0.01 -0.03,-0.01 -0.07,-0.02 -0.1,-0.03 0,0 0,0 0,0 -0.01,0 -0.02,-0.01 -0.02,-0.01 -0.02,-0.01 -0.03,-0.02 -0.05,-0.03 -0.01,0 -0.01,-0.01 -0.02,-0.01 0,0 -0.01,-0.01 -0.01,-0.01 0,0 -0.01,-0.01 -0.01,-0.01 -0.01,-0.01 -0.01,-0.01 -0.02,-0.02 -0.01,-0.01 -0.02,-0.03 -0.04,-0.04 0,0 0,0 -0.01,-0.01 0,-0.01 -0.01,-0.01 -0.01,-0.02 -0.04,-0.06 -0.12,-0.09 -0.18,-0.05 -0.06,0.06 -0.09,0.14 -0.05,0.21 z" + id="path1278" /> + <path + class="st1" + d="m 261.12,309.53 c 0.21,-0.2 0.46,-0.37 0.72,-0.5 0.13,-0.06 0.26,-0.12 0.39,-0.16 0.14,-0.05 0.29,-0.08 0.43,-0.13 0.14,-0.05 0.12,-0.26 -0.04,-0.26 -0.32,-0.01 -0.66,0.13 -0.94,0.28 -0.29,0.14 -0.56,0.33 -0.8,0.56 -0.14,0.13 0.09,0.35 0.24,0.21 z" + id="path1280" /> + <path + class="st1" + d="m 262.48,310.01 c -0.14,0.08 -0.28,0.16 -0.42,0.24 -0.06,0.04 -0.09,0.13 -0.05,0.19 0,0 0.01,0.01 0.01,0.01 0.02,0.04 0.04,0.07 0.08,0.08 0.16,0.05 0.33,0.09 0.49,0.14 0.06,0.02 0.13,-0.02 0.14,-0.08 0.02,-0.07 -0.02,-0.12 -0.08,-0.14 -0.08,-0.03 -0.16,-0.06 -0.25,-0.09 0.06,-0.04 0.13,-0.08 0.19,-0.12 0.07,-0.04 0.13,-0.08 0.2,-0.12 0.03,-0.02 0.07,-0.04 0.1,-0.06 0.04,-0.03 0.07,-0.06 0.11,-0.09 0.07,-0.07 0,-0.2 -0.1,-0.17 -0.04,0.02 -0.09,0.03 -0.13,0.05 -0.03,0.02 -0.07,0.04 -0.1,0.06 -0.05,0.03 -0.12,0.06 -0.19,0.1 z" + id="path1282" /> + <path + class="st1" + d="m 262.84,312.25 c 0.04,0.06 0.13,0.1 0.19,0.05 0.17,-0.12 0.33,-0.24 0.49,-0.37 0.04,-0.03 0.04,-0.1 0.01,-0.13 -0.03,-0.04 -0.09,-0.05 -0.13,-0.03 -0.17,0.09 -0.34,0.19 -0.51,0.29 -0.07,0.04 -0.09,0.13 -0.05,0.19 z" + id="path1284" /> + <path + class="st1" + d="m 263.12,313.22 c 0.05,0.08 0.16,0.11 0.24,0.06 0.23,-0.15 0.45,-0.29 0.68,-0.44 0.11,-0.07 0.22,-0.14 0.33,-0.22 0.06,-0.04 0.11,-0.08 0.17,-0.12 0.03,-0.02 0.07,-0.04 0.1,-0.07 0.03,-0.03 0.04,-0.07 0.06,-0.11 0.04,-0.09 -0.05,-0.18 -0.14,-0.18 -0.14,0 -0.28,0.11 -0.39,0.18 -0.11,0.07 -0.21,0.14 -0.32,0.21 -0.22,0.15 -0.44,0.29 -0.66,0.44 -0.09,0.07 -0.12,0.17 -0.07,0.25 z" + id="path1286" /> + <path + class="st1" + d="m 263.81,314.18 c -0.15,0.16 0.09,0.4 0.24,0.24 0.21,-0.21 0.45,-0.38 0.71,-0.51 0.13,-0.06 0.25,-0.11 0.39,-0.16 0.07,-0.02 0.14,-0.04 0.22,-0.06 0.08,-0.02 0.17,-0.03 0.24,-0.07 0.11,-0.06 0.1,-0.26 -0.04,-0.29 -0.16,-0.03 -0.35,0.03 -0.5,0.08 -0.16,0.05 -0.32,0.11 -0.47,0.19 -0.29,0.15 -0.56,0.34 -0.79,0.58 z" + id="path1288" /> + <path + class="st1" + d="m 265.05,315.35 c -0.22,0.09 -0.45,0.17 -0.67,0.26 -0.06,0.02 -0.09,0.07 -0.1,0.12 -0.01,0.01 0,0.02 -0.01,0.04 0,0.01 -0.01,0.02 -0.01,0.04 0,0.01 0.01,0.01 0.02,0.02 0,0.01 0,0.01 0,0.02 0.01,0.01 0.02,0.02 0.03,0.03 0.01,0.01 0.02,0.02 0.04,0.03 0.21,0.25 0.51,0.39 0.84,0.4 0.29,0.01 0.56,-0.07 0.77,-0.25 0,0 0,0.01 0,0.02 0,0 -0.01,0.02 0,0.01 0,0 0,0 0,0 -0.02,0.02 -0.03,0.04 -0.04,0.07 0,0.01 0,0.01 0,0.01 -0.04,0.09 0.01,0.2 0.12,0.2 0.19,0.01 0.29,-0.2 0.29,-0.37 0,-0.19 -0.11,-0.36 -0.29,-0.4 -0.08,-0.02 -0.17,0.01 -0.22,0.09 -0.06,0.1 -0.15,0.18 -0.27,0.24 -0.1,0.05 -0.24,0.09 -0.36,0.1 -0.19,0.01 -0.37,-0.07 -0.52,-0.18 0.16,-0.06 0.32,-0.12 0.47,-0.17 0.11,-0.04 0.23,-0.08 0.34,-0.12 0.12,-0.04 0.29,-0.07 0.35,-0.19 0.05,-0.09 0,-0.17 -0.08,-0.21 -0.12,-0.05 -0.26,0.04 -0.37,0.08 -0.11,0.02 -0.22,0.06 -0.33,0.11 z" + id="path1290" /> + <path + class="st1" + d="m 265.56,317.27 c 0.02,0.08 0.12,0.15 0.2,0.11 0.22,-0.08 0.44,-0.16 0.66,-0.24 0.11,-0.04 0.22,-0.1 0.33,-0.15 0.11,-0.05 0.22,-0.1 0.31,-0.17 0.04,-0.03 0.06,-0.07 0.05,-0.11 -0.01,-0.04 -0.05,-0.08 -0.1,-0.07 -0.12,0.01 -0.24,0.04 -0.35,0.08 -0.11,0.03 -0.22,0.06 -0.33,0.1 -0.22,0.08 -0.44,0.17 -0.66,0.25 -0.08,0.03 -0.13,0.11 -0.11,0.2 z" + id="path1292" /> + <path + class="st1" + d="m 236.04,315.84 c 0.18,-0.17 0.34,-0.39 0.49,-0.59 0.15,-0.2 0.3,-0.41 0.44,-0.62 0.29,-0.42 0.57,-0.85 0.86,-1.27 0.09,-0.12 -0.11,-0.23 -0.2,-0.12 -0.3,0.41 -0.6,0.81 -0.91,1.21 -0.15,0.2 -0.29,0.39 -0.43,0.59 -0.14,0.21 -0.3,0.43 -0.4,0.66 -0.04,0.12 0.07,0.21 0.15,0.14 z" + id="path1294" /> + <path + class="st1" + d="m 234.22,319.55 c 0.16,-0.16 0.28,-0.39 0.38,-0.59 0.11,-0.2 0.21,-0.4 0.32,-0.6 0.21,-0.42 0.43,-0.83 0.64,-1.25 0.07,-0.13 -0.13,-0.25 -0.2,-0.12 -0.23,0.41 -0.45,0.82 -0.68,1.23 -0.11,0.2 -0.22,0.4 -0.32,0.6 -0.11,0.2 -0.23,0.43 -0.28,0.65 -0.01,0.08 0.08,0.14 0.14,0.08 z" + id="path1296" /> + <path + class="st1" + d="m 237.3,316.16 c 0.35,-0.21 0.62,-0.54 0.84,-0.88 0.22,-0.34 0.39,-0.72 0.52,-1.11 0.04,-0.12 -0.15,-0.17 -0.19,-0.05 -0.13,0.37 -0.31,0.71 -0.53,1.03 -0.22,0.32 -0.49,0.59 -0.73,0.89 -0.06,0.06 0.01,0.17 0.09,0.12 z" + id="path1298" /> + <path + class="st1" + d="m 235.71,319.55 c 0.04,-0.05 0.08,-0.08 0.1,-0.15 0.02,-0.04 0.04,-0.08 0.05,-0.12 0.04,-0.1 0.08,-0.19 0.12,-0.29 0.08,-0.19 0.16,-0.37 0.24,-0.56 0.16,-0.38 0.32,-0.76 0.49,-1.14 0.07,-0.15 -0.16,-0.29 -0.23,-0.13 -0.17,0.39 -0.33,0.77 -0.5,1.16 -0.08,0.19 -0.17,0.39 -0.25,0.58 -0.04,0.09 -0.08,0.19 -0.12,0.28 -0.02,0.04 -0.04,0.08 -0.05,0.12 -0.02,0.06 -0.02,0.11 -0.03,0.18 0,0.1 0.12,0.15 0.18,0.07 z" + id="path1300" /> + <path + class="st1" + d="m 235.36,319.76 c -0.15,0.33 -0.29,0.67 -0.44,1 -0.07,0.16 -0.15,0.33 -0.21,0.49 -0.03,0.08 -0.06,0.17 -0.09,0.25 -0.03,0.08 -0.08,0.18 -0.07,0.27 0.01,0.07 0.09,0.15 0.16,0.09 0.08,-0.06 0.1,-0.13 0.15,-0.22 0.04,-0.09 0.08,-0.17 0.12,-0.26 0.07,-0.16 0.14,-0.33 0.2,-0.5 0.14,-0.34 0.27,-0.69 0.41,-1.03 0.06,-0.12 -0.17,-0.22 -0.23,-0.09 z" + id="path1302" /> + <path + class="st1" + d="m 295.45,292.94 c 0.09,0.02 0.18,0.05 0.27,0.08 0.02,0.02 0.05,0.03 0.08,0.04 0.03,0.01 0.06,0.01 0.1,0.02 0.07,0.01 0.14,0.02 0.21,0.03 0.06,0.01 0.12,0.01 0.18,0.02 0.03,0 0.06,0.01 0.1,0.01 0.04,0 0.07,-0.01 0.11,-0.02 0.11,-0.03 0.12,-0.17 0.03,-0.24 -0.1,-0.07 -0.25,-0.08 -0.37,-0.11 -0.06,-0.01 -0.12,-0.02 -0.18,-0.03 -0.03,-0.01 -0.06,-0.01 -0.1,-0.02 -0.04,-0.01 -0.07,0 -0.1,0.01 -0.1,0 -0.19,0 -0.29,-0.01 -0.14,-0.01 -0.16,0.19 -0.04,0.22 z" + id="path1304" /> + <path + class="st1" + d="m 301.34,295.97 c 0.12,0.07 0.24,0.13 0.36,0.19 0.06,0.03 0.13,0.05 0.19,0.08 0.07,0.03 0.14,0.06 0.21,0.09 0.09,0.04 0.16,-0.07 0.08,-0.14 -0.06,-0.04 -0.12,-0.08 -0.18,-0.13 -0.06,-0.04 -0.11,-0.09 -0.18,-0.13 -0.12,-0.07 -0.23,-0.14 -0.35,-0.21 -0.24,-0.14 -0.49,-0.27 -0.73,-0.41 -0.15,-0.08 -0.28,0.14 -0.13,0.23 0.24,0.16 0.48,0.3 0.73,0.43 z" + id="path1306" /> + <path + class="st1" + d="m 248.97,384.13 c 0.09,0 0.09,-0.14 0,-0.14 -0.09,0 -0.09,0.14 0,0.14 z" + id="path1308" /> + <path + class="st1" + d="m 246.46,380.29 c -0.1,-0.1 -0.22,-0.19 -0.33,-0.29 -0.23,-0.19 -0.45,-0.37 -0.68,-0.56 -0.09,-0.07 -0.21,0.05 -0.12,0.12 0.21,0.2 0.43,0.39 0.64,0.59 0.1,0.1 0.21,0.2 0.32,0.28 0.06,0.05 0.11,0.09 0.18,0.13 0.07,0.04 0.12,0.09 0.19,0.12 0.04,0.02 0.1,-0.02 0.07,-0.07 -0.04,-0.06 -0.09,-0.11 -0.13,-0.16 -0.04,-0.05 -0.08,-0.1 -0.14,-0.16 z" + id="path1310" /> + <path + class="st1" + d="m 249.52,383.22 c -0.05,-0.05 -0.11,-0.09 -0.17,-0.13 -0.11,-0.08 -0.22,-0.16 -0.33,-0.24 -0.03,-0.03 -0.09,-0.01 -0.11,0.03 -0.02,0.04 -0.01,0.08 0.03,0.11 0.11,0.08 0.22,0.16 0.32,0.25 0.05,0.04 0.1,0.09 0.16,0.12 0.06,0.03 0.12,0.07 0.18,0.1 0.05,0.03 0.11,-0.04 0.07,-0.08 -0.05,-0.07 -0.1,-0.12 -0.15,-0.16 z" + id="path1312" /> + <path + class="st1" + d="m 258.85,389.45 c -0.03,-0.03 -0.07,-0.06 -0.1,-0.08 -0.07,-0.06 -0.14,-0.11 -0.21,-0.17 -0.13,-0.11 -0.27,-0.22 -0.4,-0.33 -0.05,-0.04 -0.11,-0.05 -0.16,0 -0.04,0.04 -0.05,0.12 0,0.16 0.14,0.11 0.27,0.23 0.41,0.34 0.07,0.05 0.13,0.11 0.2,0.16 0.04,0.03 0.08,0.07 0.12,0.09 0.04,0.03 0.08,0.05 0.11,0.07 0.1,0.06 0.2,-0.08 0.12,-0.16 -0.03,-0.02 -0.06,-0.05 -0.09,-0.08 z" + id="path1314" /> + <path + class="st1" + d="m 261.08,390.4 c -0.02,-0.01 -0.04,-0.03 -0.07,-0.04 -0.04,-0.01 -0.08,-0.01 -0.12,-0.02 -0.11,-0.01 -0.22,-0.03 -0.33,-0.03 -0.23,-0.01 -0.46,-0.01 -0.69,-0.02 -0.09,-0.01 -0.12,0.15 -0.02,0.17 0.23,0.04 0.45,0.11 0.67,0.15 0.11,0.02 0.23,0.04 0.35,0.05 0.03,0 0.06,0.01 0.09,0.01 0.03,0 0.06,-0.01 0.09,-0.02 0.06,-0.01 0.12,0 0.17,-0.03 0.05,-0.03 0.06,-0.1 0.02,-0.14 -0.05,-0.05 -0.11,-0.05 -0.16,-0.08 z" + id="path1316" /> + <path + class="st1" + d="m 258.26,387.89 c 0.06,-0.02 0.09,-0.08 0.06,-0.14 -0.03,-0.06 -0.08,-0.08 -0.14,-0.1 -0.06,-0.03 -0.11,-0.05 -0.17,-0.07 -0.12,-0.04 -0.23,-0.09 -0.35,-0.13 -0.23,-0.08 -0.46,-0.17 -0.69,-0.25 -0.06,-0.02 -0.13,0.02 -0.14,0.08 -0.02,0.06 0.02,0.12 0.08,0.14 l 0.67,0.26 c 0.11,0.04 0.22,0.09 0.34,0.13 0.06,0.02 0.11,0.04 0.17,0.06 0.06,0.02 0.11,0.04 0.17,0.02 z" + id="path1318" /> + <path + class="st1" + d="m 276.44,392.54 c -0.07,0 -0.14,0 -0.21,0 -0.14,0 -0.28,0 -0.42,0.01 -0.07,0 -0.14,0.06 -0.13,0.13 0,0.07 0.06,0.13 0.13,0.13 0.14,0 0.28,0 0.42,0.01 0.07,0 0.14,0 0.21,0 0.08,0 0.16,0.01 0.24,-0.04 0.08,-0.05 0.08,-0.16 0,-0.2 -0.08,-0.05 -0.16,-0.04 -0.24,-0.04 z" + id="path1320" /> + <path + class="st1" + d="m 278.61,392.95 c 0.05,-0.03 0.06,-0.1 0.02,-0.15 -0.06,-0.06 -0.16,-0.08 -0.24,-0.1 -0.08,-0.03 -0.17,-0.04 -0.26,-0.05 -0.17,-0.03 -0.34,-0.05 -0.51,-0.08 -0.08,-0.01 -0.16,0.02 -0.18,0.1 -0.02,0.07 0.02,0.16 0.1,0.18 0.17,0.03 0.34,0.06 0.52,0.08 0.09,0.01 0.18,0.03 0.27,0.03 0.09,0.01 0.2,0.03 0.28,-0.01 z" + id="path1322" /> + <path + class="st1" + d="m 280.38,392.76 c -0.21,-0.07 -0.44,-0.07 -0.66,-0.07 -0.22,0 -0.44,0.01 -0.66,0.01 -0.18,0 -0.18,0.27 0,0.28 0.22,0 0.44,0.01 0.66,0.01 0.22,0 0.45,0 0.66,-0.07 0.07,-0.03 0.07,-0.13 0,-0.16 z" + id="path1324" /> + <path + class="st1" + d="m 279.25,393.63 c -0.07,-0.02 -0.14,-0.03 -0.21,-0.04 -0.14,-0.03 -0.29,-0.05 -0.43,-0.08 -0.09,-0.02 -0.19,0.02 -0.21,0.12 -0.02,0.09 0.03,0.19 0.12,0.21 0.15,0.03 0.29,0.06 0.44,0.09 0.08,0.02 0.16,0.03 0.25,0.04 0.04,0 0.07,0.01 0.11,0.01 0.07,0.01 0.11,-0.01 0.16,-0.06 0.05,-0.04 0.05,-0.12 0.02,-0.17 -0.03,-0.06 -0.08,-0.09 -0.14,-0.1 -0.04,0 -0.08,-0.01 -0.11,-0.02 z" + id="path1326" /> + <path + class="st1" + d="m 282.53,393.81 c 0.11,0 0.22,-0.01 0.33,-0.01 0.11,-0.01 0.22,0 0.32,-0.06 0.1,-0.06 0.06,-0.19 -0.03,-0.23 -0.1,-0.04 -0.23,-0.01 -0.34,-0.01 -0.1,0.01 -0.2,0.02 -0.31,0.03 -0.22,0.02 -0.46,0.08 -0.68,0.07 -0.21,-0.01 -0.43,-0.03 -0.64,-0.01 -0.22,0.01 -0.44,0.05 -0.66,0.07 -0.18,0.02 -0.19,0.3 0,0.29 0.22,0 0.44,0 0.66,-0.02 0.23,-0.02 0.45,-0.07 0.68,-0.1 0.22,-0.04 0.45,-0.02 0.67,-0.02 z" + id="path1328" /> + <path + class="st1" + d="m 286.38,393.01 c 0.22,-0.01 0.45,-0.02 0.68,-0.04 0.12,-0.01 0.24,-0.03 0.35,-0.05 0.09,-0.01 0.22,-0.03 0.28,-0.1 0.01,0 0.01,-0.01 0.02,-0.01 0.05,-0.02 0.08,-0.05 0.08,-0.11 0,-0.04 -0.03,-0.1 -0.08,-0.11 -0.02,0 -0.03,0 -0.05,-0.01 -0.08,-0.05 -0.2,-0.04 -0.29,-0.03 -0.12,0.01 -0.25,0.02 -0.37,0.04 -0.22,0.04 -0.44,0.09 -0.66,0.13 -0.15,0.05 -0.12,0.3 0.04,0.29 z" + id="path1330" /> + <path + class="st1" + d="m 287.02,393.33 c -0.21,0 -0.21,0.32 0,0.33 0.23,0 0.45,0 0.68,0.01 0.11,0 0.22,0 0.33,-0.01 0.11,-0.01 0.27,0.01 0.36,-0.05 0.08,-0.06 0.08,-0.16 0,-0.22 -0.09,-0.07 -0.24,-0.05 -0.34,-0.05 -0.12,-0.01 -0.23,-0.01 -0.34,-0.01 -0.24,0 -0.46,0 -0.69,0 z" + id="path1332" /> + <path + class="st1" + d="m 306.67,385.74 c -0.05,0.01 -0.09,0.03 -0.13,0.06 -0.04,0.03 -0.07,0.05 -0.11,0.08 -0.08,0.06 -0.16,0.12 -0.23,0.18 -0.14,0.11 -0.28,0.22 -0.42,0.33 -0.07,0.05 -0.06,0.17 0,0.23 0.07,0.06 0.16,0.06 0.23,0 l 0.41,-0.33 c 0.07,-0.05 0.13,-0.11 0.2,-0.17 0.07,-0.06 0.15,-0.12 0.19,-0.21 0.05,-0.09 -0.03,-0.19 -0.14,-0.17 z" + id="path1334" /> + <path + class="st1" + d="m 308.21,385.09 c 0.05,-0.03 0.1,-0.06 0.14,-0.11 0.03,-0.04 0.07,-0.06 0.11,-0.1 0.02,-0.02 0.04,-0.03 0.06,-0.05 0.03,-0.02 0.04,-0.05 0.06,-0.08 0.02,-0.04 0.02,-0.09 -0.01,-0.12 -0.03,-0.04 -0.07,-0.05 -0.12,-0.04 -0.03,0 -0.06,0.01 -0.08,0.03 -0.02,0.01 -0.04,0.02 -0.06,0.03 -0.04,0.02 -0.08,0.04 -0.12,0.07 -0.02,0.01 -0.05,0.02 -0.07,0.03 -0.02,0.01 -0.05,0.03 -0.07,0.05 -0.05,0.03 -0.09,0.06 -0.14,0.09 -0.04,0.02 -0.06,0.06 -0.08,0.1 -0.01,0.04 -0.01,0.09 0.02,0.13 0.05,0.07 0.15,0.11 0.22,0.06 0.06,-0.03 0.1,-0.06 0.14,-0.09 z" + id="path1336" /> + <path + class="st1" + d="m 309.3,385.56 c -0.08,0 -0.13,0.03 -0.19,0.07 -0.05,0.03 -0.1,0.06 -0.15,0.09 -0.1,0.06 -0.2,0.14 -0.29,0.21 -0.19,0.15 -0.38,0.29 -0.58,0.44 -0.07,0.05 -0.1,0.13 -0.06,0.21 0.04,0.07 0.14,0.1 0.21,0.06 0.2,-0.14 0.41,-0.27 0.61,-0.41 0.11,-0.07 0.21,-0.14 0.31,-0.23 0.05,-0.04 0.09,-0.08 0.14,-0.12 0.06,-0.05 0.1,-0.09 0.13,-0.16 0.02,-0.08 -0.05,-0.16 -0.13,-0.16 z" + id="path1338" /> + <path + class="st1" + d="m 312.68,382.92 c -0.33,0.26 -0.66,0.53 -0.99,0.78 -0.33,0.26 -0.67,0.51 -1.01,0.77 -0.33,0.26 -0.64,0.54 -0.96,0.82 -0.11,0.09 0.04,0.28 0.15,0.2 0.33,-0.24 0.67,-0.47 0.98,-0.74 0.32,-0.27 0.64,-0.54 0.96,-0.81 0.32,-0.26 0.63,-0.52 0.95,-0.77 0.34,-0.27 0.68,-0.53 0.98,-0.85 0.06,-0.06 -0.02,-0.16 -0.09,-0.12 -0.35,0.21 -0.66,0.47 -0.97,0.72 z" + id="path1340" /> + <path + class="st1" + d="m 331.49,348.03 c 0.04,-0.04 0.05,-0.09 0.07,-0.15 0.01,-0.05 0.02,-0.1 0.03,-0.15 0.01,-0.1 0.03,-0.19 0.04,-0.29 0.03,-0.2 0.05,-0.41 0.08,-0.62 0.02,-0.14 -0.22,-0.17 -0.24,-0.03 -0.03,0.2 -0.07,0.4 -0.1,0.6 -0.01,0.1 -0.03,0.19 -0.04,0.29 -0.01,0.06 -0.01,0.11 -0.01,0.17 0,0.06 0,0.11 0.02,0.16 0.02,0.06 0.11,0.07 0.15,0.02 z" + id="path1342" /> + <path + class="st1" + d="m 331.18,349.74 c 0,0.12 -0.07,0.27 -0.01,0.38 0.03,0.06 0.13,0.06 0.17,0 0.06,-0.11 0,-0.25 -0.01,-0.36 0,-0.13 0.03,-0.26 0.04,-0.39 0.02,-0.25 0.02,-0.51 0.02,-0.76 0,-0.18 -0.28,-0.18 -0.28,0 0,0.25 0,0.51 0.02,0.76 0.02,0.12 0.05,0.25 0.05,0.37 z" + id="path1344" /> + <path + class="st1" + d="m 331.01,352.1 c 0.03,-0.03 0.05,-0.06 0.07,-0.09 0.02,-0.02 0.03,-0.05 0.05,-0.07 0.03,-0.05 0.07,-0.1 0.1,-0.15 0.02,-0.03 0.02,-0.08 0.01,-0.11 -0.01,-0.04 -0.05,-0.08 -0.09,-0.1 -0.04,-0.02 -0.08,-0.02 -0.11,0 -0.04,0.02 -0.07,0.05 -0.09,0.1 -0.02,0.06 -0.04,0.11 -0.06,0.17 -0.01,0.03 -0.02,0.06 -0.03,0.08 -0.01,0.03 -0.02,0.06 -0.02,0.09 -0.01,0.04 0,0.09 0.04,0.11 0.05,0 0.1,0 0.13,-0.03 z" + id="path1346" /> + <path + class="st1" + d="m 333.18,344.54 c -0.01,-0.17 -0.26,-0.17 -0.26,0 -0.01,0.17 -0.01,0.34 -0.02,0.52 0,0.08 -0.01,0.17 -0.01,0.25 0,0.04 0,0.09 0,0.13 0,0.03 0,0.05 0.01,0.08 0.01,0.04 0.03,0.06 0.06,0.09 0.04,0.05 0.15,0.05 0.19,0 0.02,-0.03 0.05,-0.05 0.06,-0.09 0.01,-0.03 0.01,-0.05 0.01,-0.08 0,-0.04 0,-0.09 0,-0.13 0,-0.08 0,-0.17 -0.01,-0.25 -0.02,-0.17 -0.03,-0.34 -0.03,-0.52 z" + id="path1348" /> + <path + class="st1" + d="m 333.07,346.47 c -0.1,-0.02 -0.2,0.03 -0.24,0.13 -0.06,0.2 -0.13,0.41 -0.19,0.61 -0.02,0.06 -0.04,0.11 -0.04,0.17 0,0.02 0,0.03 -0.01,0.05 0,-0.02 0,-0.01 -0.01,0.01 -0.01,0.02 -0.01,0.05 -0.02,0.08 -0.01,0.05 -0.02,0.1 -0.03,0.15 -0.02,0.09 -0.01,0.16 0.05,0.23 0.03,0.04 0.1,0.05 0.15,0.04 0.08,-0.03 0.12,-0.08 0.15,-0.16 0.02,-0.05 0.04,-0.1 0.05,-0.15 0.04,-0.1 0.07,-0.19 0.1,-0.31 0.05,-0.21 0.11,-0.41 0.16,-0.62 0.04,-0.1 -0.02,-0.21 -0.12,-0.23 z" + id="path1350" /> + <path + class="st1" + d="m 332.09,350.36 c -0.06,0.22 -0.11,0.44 -0.17,0.66 -0.03,0.11 -0.07,0.23 -0.08,0.34 -0.01,0.11 -0.02,0.23 -0.02,0.34 0,0.07 0.1,0.1 0.14,0.04 0.05,-0.09 0.09,-0.2 0.14,-0.29 0.05,-0.11 0.07,-0.23 0.1,-0.34 0.06,-0.22 0.11,-0.44 0.17,-0.66 0.04,-0.19 -0.23,-0.27 -0.28,-0.09 z" + id="path1352" /> + <path + class="st1" + d="m 331.6,353.12 c -0.08,0.25 -0.17,0.5 -0.24,0.75 -0.08,0.25 -0.15,0.5 -0.18,0.76 -0.01,0.08 0.11,0.11 0.15,0.04 0.07,-0.12 0.11,-0.24 0.17,-0.36 0.06,-0.11 0.1,-0.24 0.14,-0.36 0.09,-0.25 0.17,-0.5 0.25,-0.74 0.06,-0.19 -0.23,-0.27 -0.29,-0.09 z" + id="path1354" /> + <path + class="st1" + d="m 331.17,355.22 c -0.09,0.19 -0.17,0.39 -0.26,0.58 -0.04,0.1 -0.09,0.19 -0.13,0.29 -0.04,0.1 -0.1,0.21 -0.11,0.32 0,0.09 0.11,0.13 0.17,0.07 0.07,-0.07 0.11,-0.18 0.15,-0.28 0.04,-0.1 0.08,-0.21 0.13,-0.31 0.08,-0.2 0.16,-0.4 0.24,-0.59 0.04,-0.1 -0.15,-0.18 -0.19,-0.08 z" + id="path1356" /> + <path + class="st1" + d="m 330.49,357.11 c -0.05,-0.02 -0.14,-0.01 -0.16,0.05 -0.06,0.14 -0.13,0.29 -0.19,0.43 -0.03,0.07 -0.06,0.14 -0.08,0.21 -0.01,0.04 -0.03,0.07 -0.04,0.11 -0.02,0.05 -0.02,0.09 -0.02,0.13 0,0.1 0.12,0.15 0.2,0.08 0.02,-0.02 0.04,-0.04 0.05,-0.06 0.01,-0.02 0.02,-0.04 0.03,-0.06 0.01,-0.04 0.03,-0.07 0.04,-0.11 l 0.09,-0.21 c 0.06,-0.14 0.11,-0.28 0.16,-0.42 0.02,-0.06 -0.02,-0.13 -0.08,-0.15 z" + id="path1358" /> + <path + class="st1" + d="m 329.63,359.23 c -0.14,0 -0.14,0.22 0,0.22 0.14,0 0.14,-0.22 0,-0.22 z" + id="path1360" /> + <path + class="st1" + d="m 328.06,363.51 c -0.11,0.22 -0.22,0.44 -0.34,0.66 -0.11,0.22 -0.24,0.44 -0.32,0.68 -0.04,0.13 0.14,0.2 0.22,0.09 0.14,-0.2 0.23,-0.43 0.34,-0.64 0.11,-0.22 0.21,-0.44 0.32,-0.65 0.07,-0.16 -0.15,-0.29 -0.22,-0.14 z" + id="path1362" /> + <path + class="st1" + d="m 326.59,367.25 c -0.11,0.16 -0.23,0.33 -0.33,0.5 -0.05,0.08 -0.1,0.17 -0.14,0.25 -0.05,0.09 -0.11,0.18 -0.14,0.27 -0.03,0.08 0.08,0.13 0.13,0.08 0.08,-0.07 0.13,-0.16 0.2,-0.24 0.06,-0.08 0.12,-0.15 0.18,-0.23 0.12,-0.16 0.22,-0.33 0.33,-0.5 0.04,-0.06 0.01,-0.14 -0.05,-0.17 -0.07,-0.04 -0.14,-0.02 -0.18,0.04 z" + id="path1364" /> + <path + class="st1" + d="m 325.46,369.2 c -0.17,0.27 -0.34,0.54 -0.52,0.81 -0.09,0.13 -0.18,0.27 -0.26,0.41 -0.04,0.07 -0.07,0.13 -0.1,0.2 -0.04,0.08 -0.08,0.15 -0.1,0.24 -0.01,0.09 0.08,0.2 0.17,0.13 0.07,-0.05 0.12,-0.12 0.17,-0.19 0.04,-0.06 0.09,-0.12 0.13,-0.18 0.09,-0.14 0.16,-0.29 0.24,-0.43 0.16,-0.29 0.32,-0.57 0.48,-0.86 0.08,-0.15 -0.13,-0.27 -0.21,-0.13 z" + id="path1366" /> + <path + class="st1" + d="m 323.85,371.95 c -0.2,0.25 -0.4,0.51 -0.6,0.76 -0.1,0.13 -0.2,0.24 -0.31,0.36 -0.05,0.06 -0.1,0.11 -0.15,0.17 -0.06,0.07 -0.13,0.14 -0.13,0.23 0,0.08 0.08,0.13 0.15,0.12 0.09,-0.02 0.13,-0.1 0.18,-0.17 0.04,-0.06 0.09,-0.13 0.13,-0.19 0.09,-0.14 0.18,-0.27 0.28,-0.4 0.19,-0.26 0.39,-0.52 0.58,-0.77 0.06,-0.09 -0.07,-0.19 -0.13,-0.11 z" + id="path1368" /> + <path + class="st1" + d="m 320.2,376.43 c -0.19,0 -0.19,0.3 0,0.3 0.19,0 0.19,-0.3 0,-0.3 z" + id="path1370" /> + <path + class="st1" + d="m 244.47,305.62 c 0.16,-0.14 0.32,-0.27 0.48,-0.41 0.08,-0.07 0.15,-0.14 0.22,-0.21 0.04,-0.04 0.07,-0.08 0.11,-0.11 0.02,-0.02 0.04,-0.04 0.05,-0.06 0.03,-0.03 0.04,-0.07 0.05,-0.11 0.03,-0.1 -0.06,-0.18 -0.16,-0.16 -0.03,0.01 -0.07,0.02 -0.1,0.04 -0.02,0.02 -0.04,0.04 -0.07,0.06 -0.04,0.04 -0.08,0.07 -0.11,0.1 -0.08,0.07 -0.15,0.15 -0.22,0.23 -0.14,0.16 -0.27,0.32 -0.41,0.48 -0.08,0.11 0.06,0.25 0.16,0.15 z" + id="path1372" /> + <path + class="st1" + d="m 246.64,303.89 c 0.68,-0.53 1.37,-1.05 2.04,-1.59 0.32,-0.26 0.64,-0.53 0.97,-0.79 0.32,-0.26 0.69,-0.51 0.94,-0.85 0.06,-0.08 -0.05,-0.16 -0.13,-0.13 -0.37,0.17 -0.68,0.49 -0.99,0.74 l -1,0.82 c -0.66,0.55 -1.3,1.12 -1.95,1.68 -0.08,0.08 0.04,0.19 0.12,0.12 z" + id="path1374" /> + <path + class="st1" + d="m 251.19,300.23 c 0.34,-0.25 0.68,-0.5 1.03,-0.75 0.17,-0.12 0.33,-0.25 0.49,-0.37 0.09,-0.07 0.17,-0.13 0.26,-0.2 0.08,-0.07 0.18,-0.13 0.23,-0.22 0.05,-0.1 -0.03,-0.2 -0.14,-0.18 -0.1,0.02 -0.18,0.09 -0.26,0.15 -0.09,0.06 -0.18,0.13 -0.26,0.2 -0.17,0.13 -0.34,0.26 -0.5,0.4 -0.32,0.28 -0.65,0.55 -0.98,0.81 -0.08,0.08 0.04,0.23 0.13,0.16 z" + id="path1376" /> + <path + class="st1" + d="m 254.45,298.08 c 0.34,-0.19 0.67,-0.37 1.01,-0.56 0.17,-0.09 0.34,-0.18 0.5,-0.28 0.08,-0.05 0.15,-0.1 0.23,-0.15 0.08,-0.05 0.17,-0.1 0.22,-0.18 0.04,-0.07 -0.01,-0.17 -0.09,-0.16 -0.1,0 -0.19,0.06 -0.27,0.1 -0.08,0.04 -0.16,0.08 -0.24,0.12 -0.17,0.09 -0.33,0.19 -0.5,0.29 -0.33,0.19 -0.67,0.39 -1,0.58 -0.16,0.09 -0.02,0.33 0.14,0.24 z" + id="path1378" /> + <path + class="st1" + d="m 256.85,296.58 0.77,-0.44 c 0.13,-0.07 0.25,-0.15 0.38,-0.22 0.06,-0.04 0.12,-0.07 0.18,-0.11 0.07,-0.04 0.14,-0.08 0.19,-0.14 0.05,-0.06 0.03,-0.2 -0.08,-0.19 -0.15,0.02 -0.28,0.11 -0.41,0.18 -0.13,0.07 -0.26,0.14 -0.4,0.22 -0.26,0.15 -0.52,0.3 -0.78,0.45 -0.15,0.1 -0.01,0.34 0.15,0.25 z" + id="path1380" /> + <path + class="st1" + d="m 269.82,292.05 c 0.44,-0.11 0.88,-0.22 1.33,-0.33 0.42,-0.11 0.9,-0.18 1.29,-0.38 0.09,-0.04 0.04,-0.18 -0.05,-0.18 -0.44,0.01 -0.89,0.17 -1.31,0.28 -0.44,0.11 -0.88,0.22 -1.33,0.33 -0.19,0.04 -0.11,0.32 0.07,0.28 z" + id="path1382" /> + <path + class="st1" + d="m 274.34,291.08 c 1.17,-0.02 2.35,-0.05 3.52,-0.06 0.57,-0.01 1.14,-0.02 1.71,-0.03 0.29,-0.01 0.59,-0.01 0.88,-0.02 0.28,-0.01 0.59,0 0.86,-0.07 0.1,-0.03 0.11,-0.2 0,-0.22 -0.26,-0.05 -0.55,-0.03 -0.81,-0.03 -0.29,0 -0.59,0.02 -0.88,0.02 -0.59,0.02 -1.17,0.03 -1.76,0.05 -1.17,0.05 -2.35,0.08 -3.52,0.11 -0.16,0 -0.16,0.25 0,0.25 z" + id="path1384" /> + <path + class="st1" + d="m 283.62,290.75 c 0.11,0.03 0.22,0.07 0.33,0.1 l 0.16,0.05 c 0.03,0.01 0.06,0.02 0.09,0.03 0.04,0.01 0.07,0.01 0.11,0.01 0.05,0 0.1,-0.04 0.11,-0.09 0.01,-0.06 -0.01,-0.1 -0.05,-0.13 -0.03,-0.02 -0.06,-0.04 -0.1,-0.06 -0.03,-0.01 -0.06,-0.02 -0.09,-0.03 -0.05,-0.02 -0.11,-0.04 -0.16,-0.06 -0.11,-0.04 -0.22,-0.08 -0.33,-0.12 -0.07,-0.03 -0.17,0.03 -0.19,0.11 0,0.09 0.04,0.17 0.12,0.19 z" + id="path1386" /> + <path + class="st1" + d="m 285.61,291.2 0.68,0.01 c 0.11,0 0.22,-0.01 0.33,-0.02 0.12,-0.01 0.24,0 0.35,-0.06 0.07,-0.04 0.07,-0.14 0,-0.18 -0.1,-0.06 -0.22,-0.05 -0.33,-0.06 -0.12,-0.01 -0.23,-0.02 -0.34,-0.02 l -0.68,0.01 c -0.22,0 -0.22,0.32 -0.01,0.32 z" + id="path1388" /> + <path + class="st1" + d="m 287.54,291.12 c 0.13,0.02 0.25,0.05 0.38,0.07 0.13,0.03 0.25,0.07 0.38,0.09 0.25,0.05 0.53,0.08 0.79,0.05 0.05,-0.01 0.09,-0.03 0.1,-0.08 0.01,-0.04 -0.01,-0.1 -0.05,-0.12 -0.24,-0.1 -0.52,-0.16 -0.78,-0.18 -0.13,-0.01 -0.26,-0.01 -0.39,-0.02 -0.13,-0.01 -0.27,-0.03 -0.4,-0.04 -0.12,0 -0.15,0.2 -0.03,0.23 z" + id="path1390" /> + <path + class="st1" + d="m 290.17,291.61 c 0.15,-0.01 0.31,-0.02 0.46,-0.05 0.08,-0.02 0.08,-0.14 0,-0.16 -0.15,-0.03 -0.3,-0.04 -0.46,-0.05 -0.03,0 -0.07,0.02 -0.09,0.04 -0.02,0.02 -0.04,0.06 -0.04,0.09 0,0.06 0.05,0.13 0.13,0.13 z" + id="path1392" /> + <path + class="st1" + d="m 211.86,375.89 c 0.42,1.38 1.04,2.68 1.87,3.86 0.41,0.57 0.86,1.12 1.36,1.62 0.25,0.26 0.52,0.5 0.79,0.74 0.27,0.23 0.54,0.48 0.85,0.66 0.13,0.07 0.27,-0.1 0.16,-0.21 -0.26,-0.24 -0.57,-0.44 -0.84,-0.68 -0.25,-0.22 -0.5,-0.44 -0.73,-0.68 -0.5,-0.5 -0.96,-1.05 -1.38,-1.62 -0.82,-1.13 -1.49,-2.4 -1.92,-3.74 -0.03,-0.09 -0.19,-0.05 -0.16,0.05 z" + id="path1394" /> + <path + class="st1" + d="m 225.89,379.51 c -0.91,-0.81 -1.74,-1.7 -2.5,-2.65 -0.84,-1.06 -1.64,-2.22 -2.25,-3.43 -0.03,-0.06 -0.12,-0.01 -0.09,0.05 0.63,1.24 1.3,2.42 2.15,3.53 0.83,1.09 1.76,2.08 2.76,3 0.08,0.07 0.21,0.06 0.27,-0.04 0.11,-0.19 0.04,-0.43 -0.17,-0.52 -0.06,0 -0.13,0.02 -0.17,0.06 z" + id="path1396" /> + <path + class="st1" + d="m 190.42,382.54 c -0.04,-0.07 -0.08,-0.14 -0.13,-0.22 -0.09,-0.15 -0.17,-0.3 -0.25,-0.46 -0.04,-0.08 -0.18,-0.02 -0.15,0.06 0.07,0.16 0.13,0.32 0.19,0.48 0.03,0.08 0.05,0.16 0.08,0.24 0.02,0.05 0.04,0.09 0.07,0.14 0.03,0.05 0.05,0.09 0.1,0.11 0.07,0.03 0.14,0.01 0.16,-0.07 0.02,-0.05 0,-0.1 -0.02,-0.15 -0.01,-0.04 -0.02,-0.09 -0.05,-0.13 z" + id="path1398" /> + <path + class="st1" + d="m 190.87,383.57 c -0.03,-0.05 -0.1,-0.07 -0.15,-0.04 -0.05,0.03 -0.06,0.09 -0.04,0.15 0.06,0.11 0.11,0.22 0.17,0.33 0.05,0.11 0.1,0.22 0.17,0.33 0.03,0.05 0.09,0.07 0.14,0.05 0.05,-0.02 0.09,-0.08 0.07,-0.13 -0.05,-0.12 -0.12,-0.23 -0.18,-0.35 -0.06,-0.12 -0.12,-0.23 -0.18,-0.34 z" + id="path1400" /> + <path + class="st1" + d="m 191.33,383.12 c -0.08,-0.18 -0.16,-0.36 -0.23,-0.54 -0.02,-0.05 -0.09,-0.06 -0.13,-0.03 -0.05,0.03 -0.05,0.08 -0.03,0.13 0.08,0.18 0.15,0.35 0.23,0.53 0.07,0.17 0.14,0.36 0.25,0.51 0.04,0.06 0.13,0.02 0.12,-0.05 -0.02,-0.1 -0.05,-0.18 -0.09,-0.28 -0.04,-0.09 -0.08,-0.18 -0.12,-0.27 z" + id="path1402" /> + <path + class="st1" + d="m 191.93,384.31 c -0.02,-0.03 -0.05,-0.05 -0.07,-0.08 -0.04,-0.05 -0.09,-0.1 -0.13,-0.15 -0.03,-0.04 -0.1,-0.04 -0.13,0 -0.04,0.04 -0.03,0.09 0,0.13 0.04,0.05 0.09,0.1 0.13,0.15 0.02,0.03 0.04,0.05 0.07,0.08 0.01,0.01 0.03,0.02 0.05,0.04 0.03,0.02 0.08,0.02 0.11,-0.01 0.01,-0.02 0.02,-0.04 0.02,-0.06 0,-0.02 -0.01,-0.04 -0.02,-0.05 -0.01,-0.02 -0.02,-0.04 -0.03,-0.05 z" + id="path1404" /> + <path + class="st1" + d="m 192.39,381.39 c -0.05,-0.11 -0.25,-0.03 -0.2,0.08 0.08,0.19 0.16,0.39 0.24,0.58 0.08,0.19 0.15,0.4 0.26,0.58 0.06,0.09 0.21,0.03 0.18,-0.08 -0.05,-0.2 -0.15,-0.4 -0.23,-0.59 -0.09,-0.19 -0.17,-0.38 -0.25,-0.57 z" + id="path1406" /> + <path + class="st1" + d="m 193.85,384.47 c -0.1,-0.18 -0.2,-0.35 -0.3,-0.53 -0.05,-0.08 -0.17,-0.01 -0.13,0.07 0.09,0.18 0.18,0.36 0.27,0.54 0.05,0.09 0.09,0.19 0.14,0.28 0.03,0.06 0.1,0.21 0.2,0.16 0.09,-0.06 0.01,-0.19 -0.03,-0.26 -0.04,-0.08 -0.09,-0.17 -0.15,-0.26 z" + id="path1408" /> + <path + class="st1" + d="m 194.42,381.78 c -0.01,-0.06 -0.02,-0.11 -0.04,-0.16 -0.03,-0.1 -0.07,-0.2 -0.1,-0.29 -0.08,-0.2 -0.15,-0.4 -0.23,-0.61 -0.05,-0.13 -0.24,-0.08 -0.2,0.06 l 0.19,0.62 c 0.03,0.1 0.06,0.2 0.1,0.3 0.02,0.06 0.05,0.11 0.07,0.16 0.03,0.05 0.04,0.1 0.09,0.13 0.04,0.02 0.1,0.01 0.12,-0.03 0.03,-0.07 0.01,-0.12 0,-0.18 z" + id="path1410" /> + <path + class="st1" + d="m 194.85,382.81 c -0.09,-0.16 -0.19,-0.32 -0.29,-0.48 -0.06,-0.1 -0.2,-0.01 -0.15,0.09 0.08,0.17 0.16,0.34 0.25,0.51 0.04,0.08 0.08,0.16 0.12,0.24 0.04,0.08 0.09,0.19 0.17,0.24 0.06,0.03 0.13,-0.01 0.13,-0.08 0.01,-0.09 -0.06,-0.2 -0.11,-0.28 -0.04,-0.08 -0.08,-0.16 -0.12,-0.24 z" + id="path1412" /> + <path + class="st1" + d="m 195.72,384.78 c 0.04,0.03 0.08,0.07 0.12,0.09 0.01,0.01 0.03,0 0.03,-0.01 0.01,-0.01 0.01,-0.02 0,-0.03 -0.01,-0.01 -0.02,-0.02 -0.03,-0.03 -0.01,-0.01 -0.02,-0.01 -0.03,-0.02 -0.02,-0.02 -0.04,-0.03 -0.06,-0.05 -0.04,-0.03 -0.07,-0.06 -0.11,-0.1 -0.01,-0.01 -0.03,-0.01 -0.04,0 -0.01,0.01 -0.01,0.03 0,0.04 0.04,0.05 0.08,0.08 0.12,0.11 z" + id="path1414" /> + <path + class="st1" + d="m 196.29,381.68 c -0.06,-0.17 -0.13,-0.34 -0.19,-0.51 -0.04,-0.09 -0.19,-0.06 -0.15,0.04 0.06,0.17 0.12,0.35 0.18,0.52 0.03,0.09 0.05,0.17 0.09,0.26 0.03,0.08 0.06,0.18 0.12,0.25 0.04,0.05 0.11,0.01 0.11,-0.05 0,-0.08 -0.04,-0.18 -0.06,-0.26 -0.03,-0.08 -0.07,-0.17 -0.1,-0.25 z" + id="path1416" /> + <path + class="st1" + d="m 197.22,383.46 c -0.04,-0.05 -0.09,-0.11 -0.13,-0.16 -0.09,-0.11 -0.18,-0.22 -0.27,-0.33 -0.02,-0.03 -0.07,-0.02 -0.1,0 -0.03,0.03 -0.02,0.07 0,0.1 0.09,0.11 0.18,0.22 0.26,0.33 0.04,0.05 0.08,0.11 0.13,0.16 0.02,0.03 0.04,0.05 0.06,0.08 0.03,0.04 0.05,0.07 0.1,0.07 0.03,0 0.06,-0.02 0.06,-0.05 0.01,-0.05 -0.01,-0.08 -0.05,-0.12 -0.01,-0.03 -0.03,-0.06 -0.06,-0.08 z" + id="path1418" /> + <path + class="st1" + d="m 197.56,380.02 c -0.04,-0.12 -0.23,-0.07 -0.19,0.05 0.07,0.21 0.13,0.42 0.2,0.63 0.07,0.21 0.11,0.43 0.23,0.63 0.06,0.11 0.2,0.03 0.19,-0.08 -0.03,-0.21 -0.13,-0.42 -0.2,-0.62 -0.08,-0.2 -0.15,-0.41 -0.23,-0.61 z" + id="path1420" /> + <path + class="st1" + d="m 198.73,382.74 c -0.09,-0.11 -0.18,-0.21 -0.27,-0.32 -0.03,-0.04 -0.09,-0.03 -0.13,-0.01 -0.03,0.03 -0.05,0.09 -0.02,0.12 0.09,0.11 0.18,0.23 0.26,0.34 0.05,0.06 0.09,0.12 0.14,0.18 0.02,0.03 0.04,0.05 0.06,0.08 0.03,0.04 0.07,0.06 0.12,0.07 0.05,0.01 0.09,-0.05 0.09,-0.09 0.01,-0.08 -0.08,-0.15 -0.13,-0.21 -0.03,-0.06 -0.07,-0.11 -0.12,-0.16 z" + id="path1422" /> + <path + class="st1" + d="m 200.2,381.63 c -0.09,-0.17 -0.18,-0.34 -0.26,-0.52 -0.17,-0.37 -0.32,-0.73 -0.41,-1.13 -0.01,-0.05 -0.09,-0.03 -0.08,0.02 0.08,0.39 0.18,0.79 0.33,1.16 0.07,0.18 0.16,0.36 0.26,0.53 0.05,0.09 0.1,0.17 0.16,0.26 0.05,0.07 0.09,0.16 0.17,0.2 0.03,0.02 0.08,0 0.08,-0.04 0,-0.09 -0.06,-0.15 -0.1,-0.22 -0.05,-0.08 -0.1,-0.17 -0.15,-0.26 z" + id="path1424" /> + <path + class="st1" + d="m 201.88,380.17 c -0.18,-0.41 -0.3,-0.85 -0.37,-1.3 -0.01,-0.06 -0.1,-0.04 -0.09,0.03 0.07,0.45 0.19,0.9 0.35,1.32 0.08,0.2 0.16,0.4 0.26,0.59 0.05,0.1 0.11,0.2 0.17,0.29 0.06,0.09 0.11,0.2 0.2,0.27 0.05,0.04 0.15,0 0.13,-0.07 -0.03,-0.1 -0.1,-0.18 -0.16,-0.26 -0.06,-0.09 -0.12,-0.19 -0.18,-0.29 -0.12,-0.19 -0.22,-0.39 -0.31,-0.58 z" + id="path1426" /> + <path + class="st1" + d="m 209.33,377.42 c 0.07,0.32 0.19,0.64 0.36,0.92 0.08,0.14 0.18,0.27 0.28,0.39 0.11,0.13 0.24,0.23 0.39,0.33 0.08,0.05 0.17,-0.07 0.1,-0.13 -0.46,-0.43 -0.83,-0.94 -0.99,-1.55 -0.02,-0.09 -0.16,-0.05 -0.14,0.04 z" + id="path1428" /> + <path + class="st1" + d="m 211.51,376.92 c 0.05,0.1 0.11,0.2 0.17,0.29 0.02,0.03 0.06,0 0.05,-0.03 -0.05,-0.1 -0.11,-0.2 -0.16,-0.29 -0.02,-0.04 -0.08,0 -0.06,0.03 z" + id="path1430" /> + <path + class="st1" + d="m 216.53,372.87 c 0.02,0.02 0.03,0.05 0.05,0.07 0.01,0.02 0.04,0.03 0.06,0.02 0.02,-0.01 0.03,-0.04 0.02,-0.06 -0.01,-0.03 -0.02,-0.05 -0.03,-0.08 -0.01,-0.03 -0.03,-0.05 -0.04,-0.07 -0.03,-0.05 -0.05,-0.1 -0.08,-0.15 -0.01,-0.03 -0.05,-0.04 -0.08,-0.02 -0.03,0.02 -0.04,0.05 -0.02,0.08 0.03,0.05 0.05,0.1 0.08,0.15 0.01,0.01 0.03,0.04 0.04,0.06 z" + id="path1432" /> + <path + class="st1" + d="m 220.1,373.28 -0.23,-0.47 c -0.15,-0.31 -0.3,-0.62 -0.45,-0.92 -0.05,-0.11 -0.21,-0.01 -0.16,0.1 0.14,0.31 0.28,0.61 0.42,0.92 0.07,0.15 0.14,0.31 0.21,0.46 0.03,0.07 0.06,0.14 0.1,0.21 0.04,0.07 0.07,0.16 0.13,0.22 0.05,0.05 0.15,0.02 0.15,-0.06 0,-0.08 -0.04,-0.15 -0.08,-0.23 -0.02,-0.09 -0.05,-0.16 -0.09,-0.23 z" + id="path1434" /> + <path + class="st1" + d="m 220.24,372.39 c 0.08,0.12 0.15,0.24 0.23,0.37 0.08,0.12 0.16,0.24 0.26,0.35 0.04,0.05 0.13,0 0.11,-0.06 -0.11,-0.27 -0.28,-0.51 -0.43,-0.75 -0.07,-0.11 -0.23,-0.02 -0.17,0.09 z" + id="path1436" /> + <path + class="st1" + d="m 223.79,371.5 c 0.04,0.07 0.07,0.15 0.12,0.22 0.03,0.04 0.1,0.02 0.08,-0.04 -0.02,-0.08 -0.06,-0.15 -0.09,-0.23 -0.03,-0.08 -0.07,-0.16 -0.1,-0.23 -0.07,-0.15 -0.14,-0.31 -0.21,-0.46 -0.03,-0.07 -0.14,-0.01 -0.11,0.06 0.07,0.15 0.14,0.3 0.2,0.45 0.04,0.08 0.07,0.15 0.11,0.23 z" + id="path1438" /> + <path + class="st1" + d="m 225.81,370.61 c 0.03,0.06 0.06,0.11 0.11,0.16 0.04,0.04 0.1,0 0.09,-0.05 -0.02,-0.06 -0.04,-0.12 -0.07,-0.18 -0.03,-0.06 -0.05,-0.12 -0.08,-0.18 -0.06,-0.11 -0.12,-0.23 -0.18,-0.34 -0.05,-0.09 -0.18,-0.01 -0.13,0.08 0.06,0.11 0.12,0.23 0.18,0.34 0.02,0.06 0.05,0.11 0.08,0.17 z" + id="path1440" /> + <path + class="st1" + d="m 228.42,369.6 c 0.05,0.12 0.09,0.25 0.18,0.36 0.07,0.09 0.2,0.04 0.18,-0.08 -0.02,-0.13 -0.09,-0.25 -0.15,-0.37 -0.06,-0.12 -0.12,-0.24 -0.18,-0.36 -0.12,-0.24 -0.23,-0.48 -0.34,-0.72 -0.04,-0.09 -0.17,-0.01 -0.13,0.08 0.1,0.24 0.2,0.48 0.3,0.73 0.05,0.12 0.09,0.24 0.14,0.36 z" + id="path1442" /> + <path + class="st1" + d="m 229.09,371.17 c 0.08,0.12 0.16,0.25 0.24,0.37 0.04,0.06 0.07,0.13 0.12,0.18 0.05,0.07 0.1,0.12 0.15,0.18 0.08,0.08 0.2,-0.02 0.15,-0.12 -0.03,-0.07 -0.07,-0.13 -0.12,-0.19 -0.05,-0.06 -0.1,-0.12 -0.15,-0.18 -0.09,-0.11 -0.18,-0.23 -0.28,-0.35 -0.04,-0.06 -0.16,0.04 -0.11,0.11 z" + id="path1444" /> + <path + class="st1" + d="m 230.13,367.31 c 0.01,0.02 0.02,0.05 0.03,0.07 0.01,0.02 0.02,0.03 0.03,0.05 0.04,0.07 0.07,0.14 0.11,0.2 0.03,0.05 0.1,0.02 0.09,-0.04 -0.01,-0.08 -0.04,-0.15 -0.05,-0.22 -0.01,-0.04 -0.01,-0.07 -0.02,-0.1 -0.01,-0.04 -0.03,-0.07 -0.04,-0.11 -0.05,-0.14 -0.1,-0.28 -0.16,-0.42 -0.02,-0.05 -0.07,-0.09 -0.12,-0.07 -0.05,0.01 -0.09,0.07 -0.07,0.12 0.05,0.14 0.11,0.29 0.16,0.43 0.02,0.03 0.03,0.06 0.04,0.09 z" + id="path1446" /> + <path + class="st1" + d="m 258,357.81 c -0.13,-0.24 -0.26,-0.48 -0.39,-0.72 -0.04,-0.07 -0.14,-0.01 -0.11,0.06 0.12,0.24 0.24,0.48 0.35,0.73 0.05,0.12 0.11,0.24 0.16,0.36 0.05,0.12 0.11,0.25 0.21,0.34 0.04,0.03 0.12,0.01 0.11,-0.05 -0.01,-0.13 -0.08,-0.26 -0.15,-0.38 -0.05,-0.12 -0.11,-0.23 -0.18,-0.34 z" + id="path1448" /> + <path + class="st1" + d="m 258.89,359.81 c 0.1,0.15 0.19,0.3 0.29,0.45 0.05,0.07 0.1,0.15 0.14,0.22 0.03,0.04 0.05,0.08 0.08,0.11 0.03,0.03 0.05,0.07 0.09,0.09 0.04,0.02 0.09,0 0.09,-0.05 0,-0.04 -0.02,-0.08 -0.04,-0.12 -0.02,-0.04 -0.04,-0.08 -0.07,-0.12 -0.05,-0.07 -0.1,-0.14 -0.15,-0.22 -0.1,-0.15 -0.2,-0.29 -0.3,-0.44 -0.05,-0.09 -0.19,-0.01 -0.13,0.08 z" + id="path1450" /> + <path + class="st1" + d="m 254.39,356.88 c -0.07,-0.2 -0.15,-0.41 -0.22,-0.61 -0.02,-0.06 -0.08,-0.11 -0.15,-0.09 -0.06,0.02 -0.11,0.09 -0.09,0.15 0.07,0.21 0.14,0.42 0.21,0.63 0.03,0.1 0.07,0.2 0.1,0.31 0.04,0.11 0.06,0.26 0.18,0.3 0.05,0.02 0.1,-0.01 0.13,-0.05 0.07,-0.1 -0.01,-0.25 -0.05,-0.34 z" + id="path1452" /> + <path + class="st1" + d="m 254.69,358.31 c -0.11,0.03 -0.06,0.2 0.05,0.17 0.1,-0.03 0.06,-0.2 -0.05,-0.17 z" + id="path1454" /> + <path + class="st1" + d="m 252.75,357.68 c -0.04,-0.11 -0.08,-0.21 -0.12,-0.31 -0.09,-0.21 -0.17,-0.41 -0.26,-0.62 -0.02,-0.06 -0.08,-0.1 -0.14,-0.08 -0.06,0.02 -0.11,0.09 -0.08,0.14 l 0.25,0.63 c 0.04,0.11 0.08,0.21 0.13,0.32 0.02,0.05 0.05,0.1 0.07,0.15 0.03,0.06 0.05,0.1 0.1,0.14 0.05,0.05 0.13,0.01 0.13,-0.06 0,-0.07 0,-0.11 -0.03,-0.17 -0.01,-0.04 -0.03,-0.09 -0.05,-0.14 z" + id="path1456" /> + <path + class="st1" + d="m 251.05,358.24 c -0.02,-0.06 -0.04,-0.13 -0.07,-0.19 -0.05,-0.13 -0.1,-0.25 -0.15,-0.38 -0.02,-0.05 -0.07,-0.09 -0.13,-0.07 -0.05,0.01 -0.09,0.07 -0.07,0.13 0.05,0.13 0.1,0.26 0.15,0.39 0.03,0.07 0.05,0.14 0.08,0.2 0.01,0.03 0.02,0.06 0.04,0.09 0.02,0.03 0.04,0.06 0.06,0.09 0.04,0.07 0.14,0.02 0.13,-0.05 -0.01,-0.03 -0.01,-0.07 -0.01,-0.1 -0.01,-0.04 -0.02,-0.07 -0.03,-0.11 z" + id="path1458" /> + <path + class="st1" + d="m 250.07,358.7 c -0.05,-0.12 -0.09,-0.23 -0.14,-0.35 -0.09,-0.23 -0.19,-0.46 -0.28,-0.7 -0.02,-0.05 -0.07,-0.09 -0.13,-0.07 -0.05,0.01 -0.09,0.08 -0.07,0.13 0.09,0.24 0.18,0.48 0.28,0.71 0.05,0.12 0.09,0.23 0.14,0.35 0.02,0.06 0.05,0.11 0.08,0.17 0.03,0.06 0.05,0.12 0.1,0.16 0.05,0.04 0.11,0.01 0.12,-0.05 0.01,-0.06 -0.02,-0.13 -0.04,-0.19 -0.03,-0.05 -0.04,-0.1 -0.06,-0.16 z" + id="path1460" /> + <path + class="st1" + d="m 250.37,359.79 c 0.06,-0.02 0.04,-0.11 -0.03,-0.1 -0.06,0.02 -0.03,0.12 0.03,0.1 z" + id="path1462" /> + <path + class="st1" + d="m 260.27,356.17 c 0.05,0.1 0.09,0.19 0.15,0.28 0.05,0.06 0.16,0.03 0.13,-0.06 -0.03,-0.1 -0.08,-0.19 -0.13,-0.29 -0.05,-0.09 -0.1,-0.19 -0.14,-0.28 -0.1,-0.19 -0.19,-0.38 -0.29,-0.56 -0.05,-0.09 -0.18,-0.01 -0.14,0.08 l 0.27,0.56 c 0.07,0.08 0.11,0.18 0.15,0.27 z" + id="path1464" /> + <path + class="st1" + d="m 261.55,358.92 c 0.03,0.04 0.08,0 0.07,-0.04 -0.04,-0.23 -0.17,-0.44 -0.27,-0.65 l -0.32,-0.64 c -0.03,-0.07 -0.13,-0.01 -0.1,0.06 0.1,0.22 0.2,0.44 0.29,0.65 0.1,0.21 0.18,0.45 0.33,0.62 z" + id="path1466" /> + <path + class="st1" + d="m 262.55,353.59 c 0.04,0.05 0.07,0.11 0.12,0.16 0.05,0.04 0.11,0 0.1,-0.06 -0.01,-0.06 -0.04,-0.12 -0.06,-0.17 -0.03,-0.06 -0.06,-0.12 -0.09,-0.18 -0.06,-0.11 -0.12,-0.23 -0.18,-0.34 -0.02,-0.05 -0.09,-0.06 -0.13,-0.03 -0.05,0.03 -0.06,0.08 -0.03,0.13 0.06,0.11 0.12,0.23 0.18,0.34 0.02,0.04 0.05,0.09 0.09,0.15 z" + id="path1468" /> + <path + class="st1" + d="m 263.95,353.55 c 0.04,0.08 0.19,0.03 0.15,-0.07 -0.13,-0.37 -0.3,-0.72 -0.46,-1.08 -0.02,-0.05 -0.09,-0.06 -0.13,-0.03 -0.05,0.03 -0.06,0.09 -0.03,0.13 l 0.23,0.53 c 0.07,0.18 0.15,0.35 0.24,0.52 z" + id="path1470" /> + <path + class="st1" + d="m 264.76,354.82 c -0.04,-0.08 -0.08,-0.16 -0.12,-0.24 -0.02,-0.04 -0.09,-0.06 -0.13,-0.03 -0.05,0.03 -0.05,0.08 -0.03,0.13 0.04,0.08 0.07,0.16 0.11,0.25 0.02,0.04 0.03,0.08 0.05,0.12 0.01,0.02 0.02,0.04 0.03,0.06 0.01,0.02 0.02,0.04 0.04,0.05 0.02,0.01 0.04,0.01 0.06,0.01 0.03,0 0.06,-0.02 0.08,-0.04 0.03,-0.04 0.02,-0.08 0,-0.12 -0.01,-0.02 -0.02,-0.04 -0.03,-0.06 -0.03,-0.05 -0.04,-0.09 -0.06,-0.13 z" + id="path1472" /> + <path + class="st1" + d="m 264.96,350.83 c 0.02,0.06 0.04,0.11 0.06,0.17 0.02,0.07 0.05,0.12 0.1,0.18 0.08,0.08 0.19,0.01 0.2,-0.08 0.01,-0.12 -0.05,-0.24 -0.08,-0.35 -0.04,-0.11 -0.08,-0.22 -0.12,-0.33 -0.08,-0.22 -0.16,-0.44 -0.23,-0.67 -0.05,-0.16 -0.3,-0.09 -0.25,0.07 0.07,0.23 0.15,0.46 0.22,0.68 0.03,0.11 0.06,0.22 0.1,0.33 z" + id="path1474" /> + <path + class="st1" + d="m 199.89,378.71 c 0.03,0.12 0.06,0.23 0.09,0.35 0.01,0.06 0.03,0.11 0.04,0.17 0.02,0.06 0.03,0.12 0.05,0.18 0.02,0.05 0.06,0.08 0.12,0.07 0.06,-0.02 0.08,-0.07 0.07,-0.12 -0.01,-0.06 -0.03,-0.12 -0.05,-0.17 -0.02,-0.06 -0.03,-0.11 -0.05,-0.17 l -0.1,-0.34 c -0.03,-0.12 -0.2,-0.08 -0.17,0.03 z" + id="path1476" /> + <path + class="st1" + d="m 200.71,380.55 c -0.03,-0.07 -0.06,-0.14 -0.1,-0.21 -0.02,-0.05 -0.09,-0.06 -0.14,-0.04 -0.05,0.03 -0.06,0.09 -0.04,0.14 0.06,0.12 0.12,0.25 0.21,0.36 0.02,0.03 0.06,0.05 0.09,0.03 0.03,-0.01 0.05,-0.05 0.04,-0.09 -0.01,-0.03 -0.02,-0.07 -0.03,-0.1 -0.01,-0.02 -0.02,-0.06 -0.03,-0.09 z" + id="path1478" /> + <path + class="st1" + d="m 201.96,377.58 c 0.01,0.04 0.03,0.07 0.04,0.11 0.02,0.05 0.04,0.08 0.07,0.12 0.04,0.06 0.13,0.04 0.13,-0.04 0.01,-0.05 0.01,-0.09 0,-0.14 -0.01,-0.04 -0.01,-0.08 -0.02,-0.11 -0.01,-0.08 -0.04,-0.16 -0.06,-0.24 -0.04,-0.16 -0.09,-0.32 -0.13,-0.48 -0.04,-0.15 -0.26,-0.08 -0.23,0.06 0.04,0.16 0.08,0.32 0.12,0.48 0.03,0.08 0.05,0.16 0.08,0.24 z" + id="path1480" /> + <path + class="st1" + d="m 202.78,378.22 c -0.02,0.01 -0.03,0.04 -0.02,0.07 0.06,0.12 0.12,0.25 0.2,0.36 0.02,0.03 0.08,0.01 0.07,-0.03 -0.05,-0.13 -0.12,-0.26 -0.18,-0.39 -0.01,-0.02 -0.05,-0.02 -0.07,-0.01 z" + id="path1482" /> + <path + class="st1" + d="m 203.8,380.26 c 0.01,0.03 0.03,0.07 0.04,0.1 0.02,0.04 0.04,0.06 0.06,0.09 0.06,0.06 0.17,0.01 0.17,-0.07 0,-0.04 0,-0.08 -0.02,-0.11 -0.01,-0.03 -0.02,-0.05 -0.03,-0.08 l -0.07,-0.17 c -0.05,-0.12 -0.09,-0.23 -0.14,-0.35 -0.02,-0.06 -0.08,-0.1 -0.14,-0.08 -0.05,0.02 -0.1,0.08 -0.08,0.14 0.05,0.12 0.09,0.24 0.14,0.36 z" + id="path1484" /> + <path + class="st1" + d="m 202.91,376.72 c -0.02,-0.11 -0.04,-0.22 -0.08,-0.32 -0.04,-0.11 -0.09,-0.21 -0.14,-0.32 -0.09,-0.2 -0.18,-0.41 -0.27,-0.61 -0.06,-0.13 -0.28,-0.04 -0.23,0.1 0.08,0.21 0.16,0.41 0.24,0.62 0.04,0.11 0.08,0.22 0.13,0.32 0.04,0.1 0.11,0.19 0.17,0.29 0.06,0.09 0.2,0.03 0.18,-0.08 z" + id="path1486" /> + <path + class="st1" + d="m 207.64,379.59 c -0.13,-0.21 -0.26,-0.42 -0.38,-0.63 -0.08,-0.14 -0.3,-0.01 -0.22,0.13 0.13,0.21 0.26,0.42 0.38,0.63 0.06,0.1 0.12,0.21 0.19,0.3 0.04,0.05 0.08,0.1 0.12,0.15 0.04,0.05 0.07,0.1 0.12,0.14 0.06,0.05 0.14,0 0.12,-0.07 -0.01,-0.06 -0.04,-0.12 -0.07,-0.17 -0.03,-0.06 -0.05,-0.12 -0.08,-0.17 -0.05,-0.12 -0.12,-0.21 -0.18,-0.31 z" + id="path1488" /> + <path + class="st1" + d="m 208.89,381.98 c 0.03,-0.02 0.04,-0.05 0.02,-0.08 -0.05,-0.1 -0.1,-0.2 -0.14,-0.3 -0.02,-0.04 -0.08,-0.05 -0.11,-0.03 -0.04,0.02 -0.05,0.07 -0.03,0.11 0.06,0.09 0.12,0.19 0.18,0.28 0.02,0.02 0.06,0.04 0.08,0.02 z" + id="path1490" /> + <path + class="st1" + d="m 301.3,337.39 c -0.27,-0.63 -0.55,-1.26 -0.82,-1.89 -0.05,-0.11 -0.21,-0.01 -0.16,0.1 0.27,0.62 0.53,1.24 0.8,1.86 0.14,0.32 0.29,0.63 0.43,0.96 0.12,0.3 0.17,0.64 0.36,0.91 0.07,0.11 0.25,0.04 0.22,-0.09 -0.07,-0.32 -0.28,-0.59 -0.42,-0.89 -0.16,-0.32 -0.28,-0.65 -0.41,-0.96 z" + id="path1492" /> + <path + class="st1" + d="m 303.77,334.95 c -0.06,-0.1 -0.21,-0.01 -0.16,0.09 0.11,0.21 0.23,0.43 0.34,0.64 0.11,0.21 0.22,0.43 0.35,0.63 0.05,0.07 0.19,0.03 0.15,-0.06 -0.09,-0.23 -0.22,-0.44 -0.33,-0.65 -0.12,-0.22 -0.23,-0.44 -0.35,-0.65 z" + id="path1494" /> + <path + class="st1" + d="m 305.69,338.94 c -0.04,-0.12 -0.09,-0.24 -0.14,-0.36 -0.1,-0.25 -0.2,-0.5 -0.3,-0.75 -0.03,-0.07 -0.09,-0.12 -0.17,-0.1 -0.07,0.02 -0.12,0.1 -0.1,0.17 0.08,0.26 0.16,0.51 0.24,0.77 0.04,0.12 0.08,0.25 0.12,0.37 0.03,0.07 0.06,0.13 0.1,0.2 0.03,0.06 0.06,0.13 0.13,0.16 0.05,0.03 0.13,0.02 0.16,-0.04 0.04,-0.07 0.02,-0.13 0.01,-0.21 -0.02,-0.07 -0.02,-0.14 -0.05,-0.21 z" + id="path1496" /> + <path + class="st1" + d="m 306.08,340.49 c 0.09,-0.02 0.05,-0.16 -0.04,-0.14 -0.09,0.02 -0.05,0.16 0.04,0.14 z" + id="path1498" /> + <path + class="st1" + d="m 305.79,333.73 c -0.05,-0.09 -0.19,-0.01 -0.14,0.08 0.11,0.19 0.22,0.39 0.33,0.58 0.05,0.1 0.11,0.19 0.16,0.29 0.05,0.1 0.11,0.2 0.17,0.29 0.04,0.05 0.15,0.03 0.12,-0.05 -0.08,-0.21 -0.21,-0.4 -0.32,-0.6 -0.1,-0.19 -0.21,-0.39 -0.32,-0.59 z" + id="path1500" /> + <path + class="st1" + d="m 310.85,333.36 c -0.07,-0.15 -0.14,-0.3 -0.21,-0.46 -0.15,-0.31 -0.3,-0.63 -0.45,-0.94 -0.07,-0.15 -0.28,-0.02 -0.22,0.13 0.14,0.31 0.28,0.63 0.41,0.94 0.07,0.15 0.14,0.31 0.21,0.46 0.04,0.08 0.07,0.15 0.11,0.23 0.04,0.08 0.07,0.15 0.15,0.2 0.06,0.04 0.15,0 0.16,-0.07 0.01,-0.09 -0.02,-0.16 -0.05,-0.24 -0.04,-0.08 -0.07,-0.16 -0.11,-0.25 z" + id="path1502" /> + <path + class="st1" + d="m 312.15,336.74 c -0.04,-0.13 -0.08,-0.25 -0.13,-0.38 -0.09,-0.25 -0.19,-0.49 -0.29,-0.74 -0.03,-0.07 -0.09,-0.11 -0.16,-0.09 -0.07,0.02 -0.12,0.09 -0.09,0.16 0.08,0.26 0.16,0.51 0.24,0.77 0.04,0.12 0.08,0.24 0.13,0.36 0.03,0.07 0.06,0.13 0.09,0.2 0.03,0.06 0.05,0.12 0.12,0.16 0.06,0.04 0.13,0 0.15,-0.06 0.03,-0.07 0,-0.14 -0.02,-0.2 -0.01,-0.06 -0.02,-0.12 -0.04,-0.18 z" + id="path1504" /> + <path + class="st1" + d="m 313.73,331.31 c -0.12,-0.22 -0.23,-0.43 -0.35,-0.65 -0.04,-0.08 -0.16,-0.01 -0.12,0.07 0.11,0.22 0.23,0.43 0.34,0.65 0.06,0.11 0.11,0.21 0.17,0.32 0.06,0.1 0.11,0.22 0.19,0.31 0.04,0.04 0.1,0 0.09,-0.05 -0.03,-0.11 -0.09,-0.22 -0.14,-0.32 -0.06,-0.11 -0.12,-0.22 -0.18,-0.33 z" + id="path1506" /> + <path + class="st1" + d="m 314.75,333.59 c -0.09,-0.24 -0.18,-0.49 -0.27,-0.73 -0.05,-0.14 -0.28,-0.08 -0.23,0.06 0.08,0.25 0.16,0.49 0.24,0.74 0.04,0.12 0.08,0.25 0.12,0.37 0.04,0.12 0.07,0.26 0.15,0.36 0.07,0.09 0.23,0.07 0.23,-0.06 0,-0.13 -0.06,-0.25 -0.1,-0.38 -0.05,-0.12 -0.1,-0.24 -0.14,-0.36 z" + id="path1508" /> + <path + class="st1" + d="m 318.34,330.07 c -0.1,-0.19 -0.2,-0.37 -0.3,-0.56 -0.2,-0.36 -0.41,-0.72 -0.61,-1.09 -0.07,-0.12 -0.25,-0.01 -0.19,0.11 0.19,0.37 0.37,0.74 0.56,1.12 0.09,0.18 0.18,0.36 0.28,0.54 0.05,0.09 0.1,0.18 0.16,0.26 0.06,0.08 0.11,0.18 0.18,0.24 0.07,0.06 0.15,0 0.14,-0.08 -0.01,-0.1 -0.07,-0.21 -0.11,-0.3 -0.03,-0.07 -0.06,-0.15 -0.11,-0.24 z" + id="path1510" /> + <path + class="st1" + d="m 319.6,332.73 c -0.02,-0.05 -0.03,-0.11 -0.05,-0.16 -0.04,-0.11 -0.1,-0.21 -0.15,-0.31 -0.1,-0.2 -0.19,-0.39 -0.29,-0.59 -0.03,-0.07 -0.14,-0.09 -0.2,-0.05 -0.08,0.04 -0.08,0.13 -0.05,0.2 l 0.25,0.6 c 0.04,0.09 0.08,0.19 0.12,0.29 0.04,0.08 0.09,0.18 0.17,0.24 0.03,0.03 0.05,0.06 0.09,0.08 0.05,0.02 0.11,0 0.12,-0.05 0.01,-0.04 0.01,-0.07 0,-0.12 -0.01,0.02 -0.01,0.04 -0.02,0.06 0.04,-0.07 0.04,-0.12 0.01,-0.19 z" + id="path1512" /> + <path + class="st1" + d="m 319.7,333.49 c 0.04,0.07 0.07,0.14 0.11,0.2 0.02,0.03 0.03,0.07 0.05,0.1 0.01,0.02 0.03,0.04 0.05,0.06 0.02,0.01 0.04,0.03 0.06,0.04 0.04,0.03 0.1,-0.01 0.1,-0.06 0,-0.02 0,-0.04 0,-0.05 0,-0.03 -0.02,-0.06 -0.03,-0.09 -0.02,-0.03 -0.04,-0.07 -0.05,-0.1 -0.04,-0.07 -0.08,-0.13 -0.12,-0.2 -0.02,-0.04 -0.09,-0.06 -0.13,-0.03 -0.05,0.03 -0.06,0.09 -0.04,0.13 z" + id="path1514" /> + <path + class="st1" + d="m 324.75,326.28 c -0.06,-0.13 -0.13,-0.25 -0.19,-0.38 l -0.38,-0.75 c -0.07,-0.14 -0.28,-0.02 -0.21,0.13 0.12,0.25 0.25,0.51 0.37,0.76 0.06,0.13 0.12,0.25 0.19,0.38 0.03,0.06 0.06,0.11 0.09,0.17 0.04,0.07 0.08,0.11 0.13,0.17 0.06,0.07 0.16,-0.01 0.14,-0.08 -0.02,-0.08 -0.03,-0.14 -0.06,-0.22 -0.03,-0.07 -0.06,-0.13 -0.08,-0.18 z" + id="path1516" /> + <path + class="st1" + d="m 325.54,327.82 c -0.06,0.02 -0.11,0.09 -0.09,0.16 0.12,0.3 0.23,0.6 0.35,0.9 0.03,0.07 0.09,0.11 0.16,0.09 0.06,-0.02 0.12,-0.09 0.09,-0.16 -0.11,-0.3 -0.24,-0.6 -0.36,-0.89 -0.02,-0.07 -0.08,-0.12 -0.15,-0.1 z" + id="path1518" /> + <path + class="st1" + d="m 326.25,329.54 c -0.07,0.02 -0.1,0.09 -0.09,0.15 0.02,0.09 0.04,0.18 0.06,0.27 0.01,0.04 0.02,0.09 0.03,0.13 0.02,0.07 0.03,0.15 0.1,0.18 0.07,0.03 0.14,0.01 0.18,-0.05 0.04,-0.06 0.02,-0.14 -0.01,-0.21 -0.01,-0.04 -0.03,-0.09 -0.04,-0.13 -0.03,-0.09 -0.05,-0.18 -0.08,-0.26 -0.01,-0.05 -0.08,-0.1 -0.15,-0.08 z" + id="path1520" /> + <path + class="st1" + d="m 329.68,322.64 c -0.02,-0.05 -0.1,-0.07 -0.15,-0.04 -0.06,0.03 -0.06,0.1 -0.04,0.15 0.1,0.22 0.19,0.44 0.29,0.65 0.09,0.22 0.18,0.44 0.3,0.64 0.06,0.09 0.22,0.03 0.19,-0.08 -0.07,-0.23 -0.18,-0.45 -0.28,-0.67 -0.11,-0.21 -0.21,-0.43 -0.31,-0.65 z" + id="path1522" /> + <path + class="st1" + d="m 331.36,325.86 c -0.05,-0.09 -0.09,-0.18 -0.14,-0.28 -0.09,-0.19 -0.19,-0.38 -0.28,-0.57 -0.03,-0.05 -0.1,-0.06 -0.14,-0.04 -0.05,0.03 -0.06,0.09 -0.04,0.14 0.09,0.19 0.18,0.39 0.27,0.58 0.04,0.09 0.09,0.19 0.13,0.28 0.04,0.09 0.09,0.22 0.19,0.26 0.05,0.02 0.09,-0.02 0.11,-0.06 0.02,-0.06 -0.01,-0.11 -0.03,-0.16 -0.02,-0.05 -0.04,-0.1 -0.07,-0.15 z" + id="path1524" /> + <path + class="st1" + d="m 333.23,322.64 c -0.04,0.02 -0.06,0.08 -0.03,0.12 0.14,0.19 0.28,0.38 0.42,0.56 0.03,0.04 0.08,-0.01 0.06,-0.05 -0.11,-0.2 -0.23,-0.4 -0.34,-0.59 -0.01,-0.05 -0.07,-0.06 -0.11,-0.04 z" + id="path1526" /> + <path + class="st1" + d="m 334.25,324.81 0.2,0.75 c 0.03,0.12 0.06,0.25 0.1,0.37 0.04,0.11 0.09,0.25 0.17,0.35 0.05,0.07 0.15,0.04 0.16,-0.04 0.01,-0.12 -0.01,-0.27 -0.03,-0.38 -0.03,-0.13 -0.07,-0.25 -0.1,-0.37 -0.07,-0.25 -0.14,-0.5 -0.2,-0.75 -0.06,-0.2 -0.35,-0.12 -0.3,0.07 z" + id="path1528" /> + <path + class="st1" + d="m 335.79,322.22 c -0.06,-0.11 -0.13,-0.21 -0.2,-0.32 -0.14,-0.21 -0.28,-0.43 -0.42,-0.64 -0.11,-0.16 -0.37,-0.01 -0.26,0.16 0.13,0.22 0.26,0.44 0.4,0.65 0.06,0.11 0.13,0.22 0.2,0.32 0.04,0.05 0.08,0.1 0.12,0.16 0.04,0.06 0.08,0.11 0.15,0.14 0.08,0.04 0.18,-0.01 0.18,-0.1 0,-0.07 -0.03,-0.13 -0.06,-0.2 -0.05,-0.06 -0.08,-0.12 -0.11,-0.17 z" + id="path1530" /> + <path + class="st1" + d="m 336.69,324.12 c 0.1,-0.03 0.06,-0.19 -0.04,-0.16 -0.11,0.03 -0.06,0.19 0.04,0.16 z" + id="path1532" /> + <path + class="st1" + d="m 337.16,321.2 c -0.13,-0.2 -0.26,-0.4 -0.39,-0.59 -0.1,-0.15 -0.35,-0.01 -0.25,0.15 0.13,0.2 0.26,0.4 0.38,0.6 0.06,0.1 0.12,0.2 0.19,0.29 0.03,0.05 0.07,0.1 0.1,0.15 0.04,0.05 0.07,0.11 0.13,0.14 0.07,0.04 0.17,-0.01 0.17,-0.1 0,-0.12 -0.1,-0.23 -0.16,-0.34 -0.04,-0.1 -0.11,-0.2 -0.17,-0.3 z" + id="path1534" /> + <path + class="st1" + d="m 337.69,322.83 c -0.02,0.01 -0.03,0.03 -0.03,0.05 0.01,0.03 0.02,0.07 0.03,0.1 0.01,0.02 0.02,0.03 0.04,0.02 0.02,-0.01 0.03,-0.02 0.02,-0.04 -0.01,-0.04 -0.02,-0.07 -0.02,-0.11 0,-0.02 -0.02,-0.03 -0.04,-0.02 z" + id="path1536" /> + <path + class="st1" + d="m 340.42,319.81 c -0.02,0.01 -0.02,0.03 -0.03,0.05 0,0.03 0.01,0.04 0.02,0.06 0.07,0.09 0.13,0.17 0.2,0.26 0.02,0.02 0.04,0.03 0.06,0.02 0.02,-0.01 0.03,-0.04 0.02,-0.06 -0.06,-0.1 -0.11,-0.2 -0.16,-0.3 -0.02,-0.04 -0.07,-0.05 -0.11,-0.03 z" + id="path1538" /> + <path + class="st1" + d="m 344.78,318.22 c -0.12,-0.16 -0.24,-0.32 -0.36,-0.47 -0.04,-0.06 -0.12,-0.09 -0.18,-0.05 -0.06,0.03 -0.09,0.12 -0.05,0.18 0.12,0.16 0.24,0.32 0.36,0.48 0.06,0.08 0.13,0.17 0.19,0.25 0.06,0.08 0.12,0.17 0.21,0.22 0.08,0.04 0.17,-0.03 0.15,-0.12 -0.02,-0.1 -0.1,-0.18 -0.15,-0.27 -0.05,-0.06 -0.11,-0.14 -0.17,-0.22 z" + id="path1540" /> + <path + class="st1" + d="m 348.8,315.95 c 0.07,0.12 0.14,0.24 0.21,0.36 0.07,0.12 0.14,0.27 0.26,0.36 0.08,0.06 0.16,-0.04 0.15,-0.12 -0.02,-0.13 -0.12,-0.26 -0.18,-0.37 -0.07,-0.12 -0.15,-0.25 -0.23,-0.37 -0.15,-0.24 -0.3,-0.48 -0.46,-0.73 -0.08,-0.13 -0.27,-0.01 -0.2,0.12 0.16,0.24 0.3,0.5 0.45,0.75 z" + id="path1542" /> + <path + class="st1" + d="m 349.83,317.93 c 0.14,0.25 0.28,0.5 0.4,0.76 0.13,0.27 0.29,0.53 0.41,0.81 0.11,0.27 0.21,0.55 0.3,0.83 0.08,0.26 0.11,0.58 0.24,0.82 0.04,0.08 0.16,0.04 0.17,-0.04 0.01,-0.28 -0.13,-0.6 -0.21,-0.86 -0.09,-0.28 -0.2,-0.56 -0.31,-0.84 -0.11,-0.27 -0.19,-0.54 -0.32,-0.8 -0.14,-0.27 -0.3,-0.54 -0.47,-0.8 -0.09,-0.14 -0.29,-0.02 -0.21,0.12 z" + id="path1544" /> + <path + class="st1" + d="m 350.61,316.23 c 0.05,0.13 0.11,0.27 0.19,0.39 0.08,0.12 0.17,0.25 0.29,0.33 0.06,0.04 0.15,-0.03 0.12,-0.1 -0.04,-0.13 -0.12,-0.25 -0.18,-0.37 -0.06,-0.12 -0.13,-0.24 -0.19,-0.37 -0.11,-0.25 -0.19,-0.52 -0.24,-0.79 -0.01,-0.06 -0.08,-0.09 -0.14,-0.08 -0.07,0.02 -0.09,0.08 -0.08,0.14 0.04,0.29 0.12,0.58 0.23,0.85 z" + id="path1546" /> + <path + class="st1" + d="m 347.96,317.05 c 0.11,0.18 0.2,0.38 0.34,0.53 0.07,0.08 0.21,0 0.18,-0.11 -0.06,-0.2 -0.19,-0.38 -0.3,-0.56 -0.11,-0.18 -0.21,-0.36 -0.32,-0.54 -0.08,-0.14 -0.31,-0.01 -0.22,0.13 0.1,0.18 0.21,0.36 0.32,0.55 z" + id="path1548" /> + <path + class="st1" + d="m 355.73,318.44 c 0.03,0.07 0.06,0.14 0.1,0.2 0.03,0.04 0.09,0.02 0.08,-0.03 -0.01,-0.07 -0.04,-0.14 -0.07,-0.21 -0.03,-0.07 -0.05,-0.14 -0.08,-0.21 l -0.17,-0.41 c -0.03,-0.06 -0.13,-0.02 -0.11,0.04 0.05,0.14 0.11,0.28 0.16,0.41 0.03,0.08 0.06,0.15 0.09,0.21 z" + id="path1550" /> + <path + class="st1" + d="m 356.17,320.71 c 0.04,0.16 0.09,0.32 0.23,0.41 0.04,0.03 0.1,0.01 0.12,-0.03 0.09,-0.15 0.06,-0.32 0.03,-0.49 -0.02,-0.15 -0.06,-0.31 -0.11,-0.46 -0.05,-0.15 -0.09,-0.3 -0.14,-0.45 -0.06,-0.16 -0.09,-0.32 -0.13,-0.49 -0.04,-0.15 -0.25,-0.08 -0.23,0.06 0.06,0.32 0.09,0.64 0.13,0.96 0.02,0.17 0.06,0.33 0.1,0.49 z" + id="path1552" /> + <path + class="st1" + d="m 356.99,312.59 c -0.04,-0.09 -0.18,-0.05 -0.15,0.04 0.12,0.29 0.23,0.59 0.35,0.88 0.11,0.29 0.22,0.58 0.36,0.86 0.04,0.08 0.16,0.02 0.14,-0.06 -0.09,-0.3 -0.22,-0.58 -0.34,-0.86 -0.12,-0.29 -0.24,-0.58 -0.36,-0.86 z" + id="path1554" /> + <path + class="st1" + d="m 358.11,313.19 -0.14,-0.53 c -0.04,-0.15 -0.27,-0.09 -0.23,0.06 l 0.14,0.53 c 0.02,0.09 0.05,0.18 0.08,0.26 0.03,0.09 0.05,0.18 0.1,0.26 0.04,0.06 0.14,0.04 0.14,-0.04 0.01,-0.09 -0.02,-0.18 -0.04,-0.27 0,-0.09 -0.02,-0.18 -0.05,-0.27 z" + id="path1556" /> + <path + class="st1" + d="m 361.8,312.24 c -0.07,-0.11 -0.13,-0.22 -0.18,-0.34 -0.11,-0.23 -0.18,-0.48 -0.22,-0.73 -0.01,-0.07 -0.1,-0.11 -0.16,-0.09 -0.07,0.02 -0.1,0.09 -0.09,0.16 0.04,0.27 0.12,0.54 0.23,0.79 0.05,0.12 0.11,0.24 0.18,0.36 0.06,0.11 0.16,0.26 0.27,0.32 0.08,0.04 0.17,-0.03 0.15,-0.12 -0.01,-0.07 -0.05,-0.12 -0.08,-0.17 -0.04,-0.07 -0.07,-0.12 -0.1,-0.18 z" + id="path1558" /> + <path + class="st1" + d="m 362.75,314.29 c -0.03,-0.06 -0.05,-0.12 -0.08,-0.18 l -0.16,-0.36 c -0.02,-0.05 -0.09,-0.06 -0.13,-0.04 -0.04,0.02 -0.08,0.07 -0.06,0.12 0.05,0.12 0.1,0.24 0.15,0.36 l 0.08,0.18 c 0.01,0.03 0.02,0.07 0.04,0.1 0.02,0.03 0.04,0.06 0.06,0.09 0.06,0.09 0.19,0.03 0.17,-0.07 -0.01,-0.03 -0.01,-0.07 -0.02,-0.1 -0.02,-0.03 -0.03,-0.07 -0.05,-0.1 z" + id="path1560" /> + <path + class="st1" + d="m 365.11,312.26 c -0.11,-0.33 -0.23,-0.66 -0.34,-1 -0.04,-0.11 -0.2,-0.06 -0.17,0.05 0.1,0.33 0.21,0.67 0.31,1 0.05,0.17 0.1,0.33 0.16,0.5 0.05,0.16 0.1,0.33 0.18,0.47 0.04,0.06 0.15,0.04 0.14,-0.04 -0.01,-0.16 -0.08,-0.33 -0.13,-0.49 -0.04,-0.16 -0.09,-0.32 -0.15,-0.49 z" + id="path1562" /> + <path + class="st1" + d="m 366.18,315.56 c -0.07,-0.23 -0.14,-0.46 -0.2,-0.69 -0.04,-0.15 -0.26,-0.09 -0.23,0.06 0.06,0.23 0.11,0.47 0.17,0.7 0.03,0.12 0.05,0.23 0.09,0.35 0.03,0.11 0.1,0.22 0.16,0.32 0.04,0.06 0.13,0.03 0.13,-0.04 0,-0.12 0.01,-0.24 -0.02,-0.36 -0.02,-0.11 -0.06,-0.23 -0.1,-0.34 z" + id="path1564" /> + <path + class="st1" + d="m 365.95,311.63 c 0.05,0.1 0.09,0.21 0.15,0.3 0.04,0.05 0.14,0.04 0.14,-0.04 -0.01,-0.11 -0.04,-0.2 -0.07,-0.31 -0.03,-0.09 -0.05,-0.19 -0.08,-0.28 -0.07,-0.2 -0.15,-0.4 -0.23,-0.6 -0.15,-0.4 -0.31,-0.79 -0.46,-1.19 -0.05,-0.13 -0.26,-0.08 -0.21,0.06 0.14,0.4 0.28,0.8 0.42,1.2 0.07,0.2 0.14,0.4 0.22,0.6 0.04,0.1 0.09,0.18 0.12,0.26 z" + id="path1566" /> + <path + class="st1" + d="m 366.53,313.26 c 0.09,0.28 0.17,0.56 0.25,0.85 0.08,0.29 0.2,0.56 0.32,0.83 0.06,0.13 0.25,0.03 0.22,-0.09 -0.07,-0.28 -0.14,-0.56 -0.25,-0.83 -0.11,-0.27 -0.21,-0.54 -0.31,-0.81 -0.05,-0.16 -0.27,-0.1 -0.23,0.05 z" + id="path1568" /> + <path + class="st1" + d="m 368.31,309.6 c -0.16,-0.43 -0.32,-0.87 -0.48,-1.3 -0.06,-0.16 -0.32,-0.1 -0.26,0.07 0.15,0.44 0.3,0.87 0.45,1.31 0.08,0.22 0.15,0.44 0.23,0.65 0.07,0.2 0.13,0.45 0.26,0.62 0.07,0.09 0.24,0.07 0.23,-0.06 -0.01,-0.22 -0.12,-0.44 -0.19,-0.64 -0.08,-0.21 -0.16,-0.43 -0.24,-0.65 z" + id="path1570" /> + <path + class="st1" + d="m 368.84,307.81 c 0.34,0.85 0.62,1.74 1.09,2.53 0.04,0.07 0.15,0.02 0.13,-0.06 -0.21,-0.88 -0.62,-1.71 -0.97,-2.54 -0.06,-0.16 -0.31,-0.09 -0.25,0.07 z" + id="path1572" /> + <path + class="st1" + d="m 370.17,306.86 c -0.06,-0.08 -0.18,-0.01 -0.13,0.08 0.17,0.26 0.31,0.54 0.41,0.83 0.05,0.14 0.09,0.28 0.13,0.42 0.04,0.15 0.07,0.31 0.12,0.46 0.03,0.1 0.19,0.09 0.19,-0.02 0,-0.31 -0.13,-0.63 -0.25,-0.92 -0.13,-0.3 -0.29,-0.58 -0.47,-0.85 z" + id="path1574" /> + <path + class="st1" + d="m 371.62,310.31 c -0.02,-0.07 -0.1,-0.12 -0.17,-0.1 -0.07,0.02 -0.12,0.1 -0.1,0.17 0.04,0.16 0.09,0.32 0.13,0.48 0.04,0.16 0.08,0.33 0.18,0.47 0.05,0.08 0.17,0.05 0.17,-0.05 0.02,-0.17 -0.04,-0.34 -0.08,-0.5 -0.04,-0.15 -0.09,-0.31 -0.13,-0.47 z" + id="path1576" /> + <path + class="st1" + d="m 372.61,313.2 c -0.06,-0.21 -0.12,-0.42 -0.18,-0.64 -0.04,-0.14 -0.26,-0.08 -0.22,0.06 0.05,0.21 0.11,0.43 0.16,0.64 0.03,0.11 0.05,0.22 0.08,0.32 0.04,0.1 0.09,0.21 0.15,0.29 0.04,0.06 0.12,0.03 0.12,-0.03 0.01,-0.1 0,-0.23 -0.02,-0.33 -0.02,-0.1 -0.06,-0.21 -0.09,-0.31 z" + id="path1578" /> + <path + class="st1" + d="m 372.87,314.35 c -0.03,-0.09 -0.18,-0.06 -0.15,0.04 0.18,0.54 0.31,1.08 0.42,1.64 0.1,0.55 0.11,1.12 0.23,1.67 0.02,0.12 0.19,0.08 0.2,-0.03 0.05,-0.55 -0.09,-1.13 -0.2,-1.67 -0.12,-0.56 -0.29,-1.11 -0.5,-1.65 z" + id="path1580" /> + <path + class="st1" + d="m 372.63,308.43 c 0.09,0.19 0.17,0.37 0.29,0.54 0.07,0.1 0.25,0.04 0.21,-0.09 -0.05,-0.2 -0.14,-0.38 -0.23,-0.56 -0.09,-0.19 -0.17,-0.37 -0.26,-0.56 -0.18,-0.37 -0.37,-0.74 -0.55,-1.11 -0.07,-0.15 -0.29,-0.02 -0.22,0.13 0.17,0.37 0.33,0.74 0.5,1.1 0.08,0.2 0.17,0.37 0.26,0.55 z" + id="path1582" /> + <path + class="st1" + d="m 374.14,312.1 c -0.02,-0.11 -0.06,-0.21 -0.09,-0.31 -0.06,-0.21 -0.12,-0.42 -0.19,-0.62 -0.05,-0.17 -0.31,-0.1 -0.26,0.07 0.05,0.21 0.1,0.42 0.15,0.63 0.02,0.1 0.05,0.2 0.08,0.3 0.03,0.11 0.07,0.21 0.11,0.32 0.06,0.16 0.29,0.1 0.26,-0.07 -0.02,-0.11 -0.03,-0.22 -0.06,-0.32 z" + id="path1584" /> + <path + class="st1" + d="m 375.12,317.96 c 0.06,-0.34 -0.04,-0.72 -0.09,-1.06 -0.06,-0.4 -0.11,-0.8 -0.17,-1.2 -0.11,-0.79 -0.23,-1.57 -0.36,-2.35 -0.03,-0.17 -0.32,-0.13 -0.3,0.04 0.09,0.77 0.19,1.55 0.3,2.32 0.05,0.39 0.11,0.77 0.16,1.16 0.05,0.36 0.06,0.8 0.22,1.13 0.06,0.08 0.22,0.06 0.24,-0.04 z" + id="path1586" /> + <path + class="st1" + d="m 216.58,376.79 c 0.07,0.13 0.14,0.26 0.21,0.39 0.03,0.06 0.07,0.12 0.1,0.18 0.02,0.03 0.04,0.06 0.06,0.1 0.02,0.03 0.04,0.06 0.07,0.08 0.03,0.02 0.06,-0.01 0.06,-0.04 0,-0.04 -0.02,-0.07 -0.03,-0.1 -0.02,-0.03 -0.03,-0.07 -0.05,-0.1 -0.04,-0.06 -0.07,-0.12 -0.11,-0.18 l -0.23,-0.37 c -0.04,-0.04 -0.1,-0.01 -0.08,0.04 z" + id="path1588" /> + <path + class="st1" + d="m 217.53,378.59 c 0.04,0.07 0.08,0.13 0.13,0.19 0.03,0.04 0.06,0.06 0.09,0.1 0.03,0.03 0.05,0.06 0.09,0.08 0.04,0.02 0.11,0 0.1,-0.06 0,-0.04 -0.02,-0.08 -0.04,-0.12 -0.02,-0.04 -0.03,-0.07 -0.05,-0.11 -0.04,-0.07 -0.08,-0.13 -0.12,-0.2 -0.09,-0.13 -0.18,-0.26 -0.27,-0.39 -0.03,-0.05 -0.1,-0.07 -0.15,-0.04 -0.05,0.03 -0.07,0.1 -0.04,0.15 0.09,0.14 0.18,0.27 0.26,0.4 z" + id="path1590" /> + <path + class="st1" + d="m 218.35,379.68 c 0.04,0.04 0.07,0.08 0.11,0.11 0.05,0.04 0.09,0.09 0.16,0.1 0.07,0.01 0.13,-0.04 0.12,-0.12 -0.01,-0.06 -0.06,-0.11 -0.11,-0.16 -0.04,-0.04 -0.08,-0.07 -0.12,-0.11 l -0.24,-0.22 c -0.04,-0.04 -0.11,-0.04 -0.15,0 -0.04,0.04 -0.04,0.11 0,0.15 0.08,0.1 0.16,0.18 0.23,0.25 z" + id="path1592" /> + <path + class="st1" + d="m 215.56,375.02 c 0.02,0.05 0.05,0.09 0.07,0.14 0.02,0.05 0.04,0.1 0.08,0.13 0.02,0.02 0.07,0.01 0.08,-0.02 0.02,-0.09 -0.02,-0.2 -0.03,-0.29 -0.01,-0.11 -0.06,-0.22 -0.1,-0.32 -0.07,-0.21 -0.13,-0.41 -0.2,-0.62 -0.04,-0.13 -0.24,-0.07 -0.2,0.05 0.06,0.21 0.13,0.41 0.19,0.62 0.04,0.11 0.07,0.22 0.11,0.31 z" + id="path1594" /> + <path + class="st1" + d="m 216.14,376.05 c 0.04,0.04 0.11,0.04 0.15,0.01 0.04,-0.04 0.06,-0.1 0.03,-0.15 -0.03,-0.05 -0.06,-0.09 -0.1,-0.13 -0.03,-0.04 -0.07,-0.09 -0.11,-0.13 -0.07,-0.08 -0.14,-0.16 -0.2,-0.24 -0.05,-0.06 -0.14,0.02 -0.11,0.08 0.05,0.09 0.11,0.18 0.16,0.27 0.05,0.1 0.1,0.21 0.18,0.29 z" + id="path1596" /> + <path + class="st1" + d="m 212.58,346.39 c -0.05,-0.17 -0.1,-0.34 -0.17,-0.5 -0.06,-0.14 -0.24,-0.09 -0.22,0.06 0.02,0.18 0.06,0.35 0.11,0.52 0.02,0.08 0.04,0.17 0.07,0.24 0.02,0.05 0.04,0.09 0.07,0.14 0.02,0.05 0.04,0.09 0.1,0.1 0.03,0.01 0.07,0 0.09,-0.02 0.04,-0.04 0.04,-0.09 0.04,-0.14 0,-0.05 0,-0.1 -0.01,-0.15 -0.02,-0.08 -0.05,-0.16 -0.08,-0.25 z" + id="path1598" /> + <path + class="st1" + d="m 213.26,349.37 c 0.05,0.09 0.1,0.18 0.16,0.27 0.02,0.02 0.03,0.05 0.05,0.07 0.02,0.02 0.04,0.03 0.05,0.04 0.04,0.04 0.07,0.08 0.1,0.12 0.04,0.04 0.11,0 0.1,-0.06 -0.01,-0.05 -0.04,-0.1 -0.05,-0.15 -0.01,-0.02 -0.01,-0.04 -0.01,-0.07 -0.01,-0.02 -0.02,-0.05 -0.03,-0.07 -0.05,-0.1 -0.1,-0.19 -0.16,-0.28 l -0.32,-0.55 c -0.08,-0.13 -0.27,-0.01 -0.2,0.12 0.1,0.19 0.21,0.38 0.31,0.56 z" + id="path1600" /> + <path + class="st1" + d="m 215.09,348.13 c 0.02,0.03 0.07,0.02 0.09,0 0.02,-0.02 0.04,-0.06 0.02,-0.09 -0.11,-0.16 -0.22,-0.32 -0.34,-0.48 -0.03,-0.04 -0.09,-0.06 -0.13,-0.02 -0.04,0.03 -0.04,0.09 -0.01,0.13 0.12,0.16 0.24,0.31 0.37,0.46 z" + id="path1602" /> + <path + class="st1" + d="m 216.41,347.17 c -0.1,-0.53 -0.32,-1.04 -0.5,-1.55 -0.04,-0.1 -0.2,-0.06 -0.17,0.04 0.17,0.52 0.31,1.06 0.56,1.55 0.03,0.07 0.12,0.02 0.11,-0.04 z" + id="path1604" /> + <path + class="st1" + d="m 216.88,348.78 c 0.02,0.03 0.04,0.07 0.05,0.1 0.02,0.04 0.05,0.06 0.07,0.09 0.05,0.06 0.09,0.14 0.16,0.19 0.05,0.03 0.11,-0.01 0.11,-0.06 0,-0.04 -0.01,-0.08 -0.03,-0.12 -0.01,-0.04 -0.03,-0.07 -0.04,-0.11 -0.01,-0.02 0,-0.01 -0.01,-0.05 -0.01,-0.02 -0.02,-0.04 -0.03,-0.06 -0.02,-0.04 -0.04,-0.07 -0.06,-0.1 -0.08,-0.13 -0.15,-0.27 -0.23,-0.4 -0.04,-0.06 -0.12,-0.08 -0.18,-0.05 -0.06,0.04 -0.08,0.12 -0.05,0.18 0.09,0.12 0.16,0.26 0.24,0.39 z" + id="path1606" /> + <path + class="st1" + d="m 220.01,345.52 c -0.04,-0.1 -0.07,-0.2 -0.11,-0.3 -0.07,-0.2 -0.15,-0.41 -0.22,-0.61 -0.04,-0.11 -0.23,-0.07 -0.18,0.05 0.08,0.21 0.15,0.42 0.23,0.63 0.04,0.1 0.08,0.21 0.11,0.31 0.02,0.05 0.03,0.1 0.05,0.14 0.02,0.06 0.06,0.1 0.09,0.15 0.04,0.07 0.13,0.02 0.12,-0.05 -0.01,-0.06 -0.01,-0.11 -0.03,-0.16 -0.02,-0.06 -0.04,-0.11 -0.06,-0.16 z" + id="path1608" /> + <path + class="st1" + d="m 220.77,346.97 c -0.03,-0.06 -0.12,-0.08 -0.17,-0.04 -0.06,0.04 -0.07,0.11 -0.04,0.17 0.09,0.2 0.18,0.4 0.27,0.6 0.09,0.2 0.17,0.4 0.29,0.59 0.07,0.11 0.26,0.04 0.22,-0.09 -0.07,-0.22 -0.17,-0.42 -0.27,-0.62 -0.11,-0.2 -0.2,-0.41 -0.3,-0.61 z" + id="path1610" /> + <path + class="st1" + d="m 221.9,346.81 c -0.07,-0.36 -0.25,-0.69 -0.39,-1.02 -0.15,-0.34 -0.3,-0.68 -0.46,-1.02 -0.05,-0.12 -0.22,-0.01 -0.17,0.1 0.15,0.33 0.29,0.67 0.44,1 0.15,0.33 0.27,0.68 0.49,0.98 0.03,0.04 0.1,0.02 0.09,-0.04 z" + id="path1612" /> + <path + class="st1" + d="m 223.99,346.55 c 0.04,0.08 0.09,0.16 0.15,0.24 0.05,0.08 0.1,0.17 0.19,0.22 0.07,0.04 0.15,-0.03 0.13,-0.1 -0.02,-0.09 -0.08,-0.16 -0.12,-0.24 -0.05,-0.08 -0.09,-0.16 -0.14,-0.25 -0.08,-0.15 -0.16,-0.31 -0.23,-0.48 -0.13,-0.34 -0.23,-0.69 -0.27,-1.05 -0.02,-0.14 -0.23,-0.14 -0.22,0 0.04,0.39 0.13,0.77 0.27,1.13 0.07,0.18 0.15,0.36 0.24,0.53 z" + id="path1614" /> + <path + class="st1" + d="m 224.03,343.31 c 0.11,0.34 0.21,0.68 0.32,1.02 0.05,0.17 0.1,0.33 0.16,0.5 0.03,0.08 0.06,0.16 0.1,0.24 0.04,0.08 0.06,0.17 0.12,0.23 0.04,0.04 0.14,0.03 0.15,-0.04 0.01,-0.09 -0.01,-0.16 -0.03,-0.25 -0.02,-0.08 -0.03,-0.16 -0.06,-0.24 -0.06,-0.17 -0.12,-0.35 -0.17,-0.52 -0.12,-0.34 -0.23,-0.68 -0.35,-1.02 -0.05,-0.13 -0.29,-0.07 -0.24,0.08 z" + id="path1616" /> + <path + class="st1" + d="m 226.32,344.75 c 0.05,0.03 0.11,-0.03 0.08,-0.08 -0.07,-0.14 -0.17,-0.25 -0.26,-0.37 -0.08,-0.12 -0.16,-0.24 -0.22,-0.36 -0.13,-0.27 -0.22,-0.55 -0.26,-0.84 -0.02,-0.11 -0.18,-0.06 -0.17,0.04 0.04,0.31 0.14,0.61 0.27,0.89 0.14,0.27 0.3,0.57 0.56,0.72 z" + id="path1618" /> + <path + class="st1" + d="m 267.37,329.63 c 0.09,0.15 0.21,0.42 0.41,0.42 0.06,0 0.12,-0.04 0.14,-0.1 0.05,-0.17 -0.14,-0.37 -0.23,-0.51 -0.09,-0.15 -0.17,-0.31 -0.25,-0.47 -0.15,-0.33 -0.26,-0.68 -0.32,-1.04 -0.03,-0.16 -0.31,-0.13 -0.29,0.04 0.05,0.39 0.14,0.77 0.28,1.14 0.08,0.18 0.16,0.35 0.26,0.52 z" + id="path1620" /> + <path + class="st1" + d="m 282.35,323.07 c 0.04,0.11 0.07,0.22 0.11,0.33 0.03,0.1 0.06,0.21 0.14,0.28 0.04,0.04 0.13,0.03 0.14,-0.04 0.04,-0.2 -0.08,-0.43 -0.14,-0.61 -0.07,-0.23 -0.15,-0.45 -0.23,-0.68 -0.15,-0.45 -0.3,-0.89 -0.45,-1.34 -0.04,-0.12 -0.22,-0.07 -0.18,0.05 0.14,0.45 0.28,0.9 0.41,1.35 0.06,0.22 0.13,0.44 0.2,0.66 z" + id="path1622" /> + <path + class="st1" + d="m 312.35,308.95 c 0.09,0.31 0.17,0.63 0.22,0.95 0.03,0.18 0.06,0.37 0.08,0.55 0.02,0.15 0.02,0.3 0.09,0.44 0.05,0.11 0.21,0.07 0.24,-0.03 0.09,-0.28 -0.02,-0.69 -0.08,-0.97 -0.07,-0.36 -0.16,-0.71 -0.28,-1.05 -0.22,-0.67 -0.52,-1.31 -0.9,-1.9 -0.09,-0.14 -0.32,-0.01 -0.23,0.13 0.38,0.59 0.67,1.22 0.86,1.88 z" + id="path1624" /> + <path + class="st1" + d="m 338.47,294.19 c -0.06,0.02 -0.03,0.1 0.02,0.09 0.06,-0.02 0.04,-0.1 -0.02,-0.09 z" + id="path1626" /> + <path + class="st1" + d="m 227.43,341.91 c 0.01,0.04 0.03,0.09 0.04,0.13 0.01,0.04 0.02,0.09 0.06,0.12 0.03,0.03 0.08,0.01 0.09,-0.02 0.01,-0.05 0,-0.09 -0.01,-0.13 -0.01,-0.04 -0.02,-0.08 -0.03,-0.12 -0.02,-0.09 -0.04,-0.19 -0.06,-0.28 -0.04,-0.18 -0.08,-0.37 -0.12,-0.55 -0.03,-0.14 -0.26,-0.08 -0.22,0.06 0.06,0.18 0.12,0.36 0.17,0.54 0.02,0.08 0.05,0.17 0.08,0.25 z" + id="path1628" /> + <path + class="st1" + d="m 227.91,344.24 c 0.05,0.12 0.11,0.36 0.26,0.39 0.05,0.01 0.12,-0.01 0.14,-0.06 0.04,-0.08 0.02,-0.13 -0.01,-0.21 -0.03,-0.07 -0.06,-0.13 -0.08,-0.2 -0.05,-0.13 -0.1,-0.26 -0.14,-0.39 -0.09,-0.27 -0.17,-0.54 -0.2,-0.82 -0.01,-0.13 -0.21,-0.13 -0.2,0 0.01,0.3 0.02,0.6 0.1,0.89 0.03,0.13 0.08,0.27 0.13,0.4 z" + id="path1630" /> + <path + class="st1" + d="m 230.19,341.88 c 0.01,0.04 0.02,0.08 0.04,0.12 0.01,0.04 0.02,0.08 0.05,0.11 0.03,0.05 0.09,0.03 0.11,-0.02 0.01,-0.04 0.02,-0.08 0.02,-0.11 0.01,-0.04 0.02,-0.08 0.02,-0.11 0,-0.08 -0.02,-0.16 -0.03,-0.23 -0.02,-0.15 -0.04,-0.31 -0.05,-0.46 -0.01,-0.05 -0.04,-0.1 -0.1,-0.1 -0.05,0 -0.1,0.04 -0.1,0.1 0.01,0.16 0.02,0.31 0.02,0.47 0.01,0.07 0.01,0.16 0.02,0.23 z" + id="path1632" /> + <path + class="st1" + d="m 230.59,343.63 c 0.01,0.01 0.02,0.02 0.04,0.03 0.01,0.01 0.03,0.01 0.05,0 0.01,0 0.02,-0.01 0.03,-0.02 0.01,-0.01 0.02,-0.03 0.02,-0.05 -0.01,-0.05 -0.01,-0.09 -0.02,-0.14 l -0.03,-0.12 c -0.01,-0.04 -0.06,-0.08 -0.11,-0.06 -0.05,0.01 -0.07,0.06 -0.06,0.11 l 0.03,0.12 c 0.01,0.05 0.03,0.09 0.05,0.13 z" + id="path1634" /> + <path + class="st1" + d="m 233.29,340.68 c 0.03,0.13 0.03,0.32 0.15,0.39 0.04,0.02 0.11,0.02 0.14,-0.02 0.06,-0.07 0.05,-0.13 0.04,-0.21 -0.01,-0.07 -0.02,-0.14 -0.03,-0.21 -0.02,-0.14 -0.04,-0.27 -0.07,-0.41 -0.05,-0.27 -0.1,-0.55 -0.15,-0.82 -0.01,-0.08 -0.11,-0.12 -0.18,-0.1 -0.08,0.02 -0.12,0.1 -0.1,0.18 0.05,0.27 0.09,0.54 0.14,0.81 0.01,0.13 0.04,0.26 0.06,0.39 z" + id="path1636" /> + <path + class="st1" + d="m 233.56,341.71 c 0.01,0.05 0.03,0.11 0.04,0.16 0.01,0.04 0.01,0.07 0.03,0.11 0.01,0.02 0.03,0.05 0.04,0.07 0.02,0.04 0.08,0.06 0.12,0.05 0.04,-0.01 0.08,-0.05 0.08,-0.1 0,-0.03 0,-0.05 0,-0.08 0,-0.04 -0.02,-0.07 -0.03,-0.11 -0.02,-0.05 -0.03,-0.11 -0.05,-0.16 -0.02,-0.06 -0.08,-0.1 -0.15,-0.08 -0.06,0.02 -0.1,0.08 -0.08,0.14 z" + id="path1638" /> + <path + class="st1" + d="m 235.83,340.17 c -0.05,0.03 -0.05,0.08 -0.03,0.13 0.06,0.12 0.11,0.25 0.17,0.37 0.02,0.05 0.09,0.06 0.13,0.03 0.05,-0.03 0.06,-0.08 0.03,-0.13 -0.06,-0.12 -0.12,-0.24 -0.18,-0.36 -0.01,-0.05 -0.08,-0.07 -0.12,-0.04 z" + id="path1640" /> + <path + class="st1" + d="m 235.52,338.32 c 0.04,0.18 0.09,0.36 0.13,0.53 0.02,0.09 0.04,0.18 0.07,0.26 0.02,0.04 0.03,0.08 0.05,0.13 0.02,0.05 0.04,0.09 0.07,0.13 0.04,0.04 0.12,0.02 0.13,-0.04 0.02,-0.08 -0.01,-0.19 -0.02,-0.27 -0.02,-0.09 -0.05,-0.18 -0.07,-0.27 -0.05,-0.18 -0.11,-0.35 -0.16,-0.53 -0.04,-0.12 -0.23,-0.07 -0.2,0.06 z" + id="path1642" /> + <path + class="st1" + d="m 238.6,338.58 c 0.01,0.02 0.03,0.04 0.06,0.03 0.03,-0.01 0.04,-0.03 0.03,-0.06 -0.01,-0.05 -0.01,-0.11 -0.02,-0.16 -0.01,-0.05 -0.02,-0.11 -0.03,-0.16 -0.01,-0.04 -0.06,-0.07 -0.1,-0.06 -0.04,0.01 -0.07,0.06 -0.06,0.1 0.02,0.05 0.04,0.1 0.05,0.15 0.02,0.06 0.05,0.11 0.07,0.16 z" + id="path1644" /> + <path + class="st1" + d="m 238.97,339.56 c 0.05,0.08 0.11,0.17 0.16,0.25 0.03,0.04 0.09,0.06 0.13,0.03 0.05,-0.03 0.06,-0.09 0.03,-0.13 -0.05,-0.09 -0.09,-0.18 -0.14,-0.26 -0.05,-0.08 -0.1,-0.17 -0.16,-0.25 -0.03,-0.05 -0.1,-0.07 -0.15,-0.04 -0.05,0.03 -0.07,0.09 -0.04,0.15 0.07,0.08 0.12,0.17 0.17,0.25 z" + id="path1646" /> + <path + class="st1" + d="m 241.62,337.11 c 0,0.01 0.01,0.01 0.01,0.02 0.01,0.01 0.02,0.01 0.03,0.02 0.02,0.01 0.04,0.01 0.05,0 0.01,0 0.03,-0.01 0.04,-0.02 0.01,-0.01 0.03,-0.04 0.02,-0.06 0,-0.03 0,-0.07 -0.01,-0.1 -0.01,-0.03 -0.01,-0.05 -0.02,-0.08 -0.01,-0.03 -0.03,-0.05 -0.05,-0.06 -0.02,-0.01 -0.05,-0.02 -0.08,-0.01 -0.03,0.01 -0.05,0.02 -0.06,0.05 -0.01,0.02 -0.02,0.05 -0.01,0.08 0.01,0.03 0.02,0.05 0.02,0.08 0.03,0.02 0.04,0.05 0.06,0.08 z" + id="path1648" /> + <path + class="st1" + d="m 242.13,338.48 c 0.02,0.03 0.04,0.06 0.07,0.09 0.02,0.02 0.05,0.02 0.08,0.01 0.02,-0.01 0.05,-0.04 0.04,-0.06 0,-0.02 0,-0.04 -0.01,-0.07 0,-0.02 -0.01,-0.03 -0.02,-0.05 -0.01,-0.04 -0.03,-0.08 -0.05,-0.12 -0.03,-0.06 -0.07,-0.13 -0.1,-0.19 -0.02,-0.04 -0.09,-0.06 -0.13,-0.03 -0.05,0.03 -0.06,0.08 -0.03,0.13 0.03,0.06 0.06,0.13 0.09,0.19 0.02,0.04 0.04,0.07 0.06,0.1 z" + id="path1650" /> + <path + class="st1" + d="m 246.08,333.96 c 0.01,0.05 0.03,0.09 0.05,0.14 0.02,0.06 0.05,0.11 0.1,0.14 0.06,0.04 0.12,0.01 0.16,-0.04 0.03,-0.05 0.03,-0.1 0.03,-0.16 0,-0.06 0,-0.11 -0.01,-0.17 -0.02,-0.09 -0.04,-0.18 -0.05,-0.26 -0.04,-0.18 -0.08,-0.37 -0.11,-0.55 -0.02,-0.08 -0.12,-0.14 -0.2,-0.11 -0.09,0.03 -0.13,0.11 -0.11,0.2 0.03,0.18 0.06,0.37 0.1,0.55 0.01,0.08 0.02,0.17 0.04,0.26 z" + id="path1652" /> + <path + class="st1" + d="m 246.37,335.21 c 0.04,0.18 0.09,0.36 0.13,0.53 0.02,0.09 0.04,0.17 0.07,0.26 0.02,0.05 0.05,0.08 0.07,0.12 0.02,0.04 0.05,0.08 0.08,0.11 0.03,0.03 0.08,0.01 0.09,-0.02 0.01,-0.05 0.01,-0.09 0.01,-0.13 0,-0.05 0.01,-0.09 0,-0.13 -0.02,-0.09 -0.05,-0.18 -0.07,-0.27 -0.05,-0.18 -0.1,-0.35 -0.15,-0.53 -0.04,-0.15 -0.27,-0.09 -0.23,0.06 z" + id="path1654" /> + <path + class="st1" + d="m 249.2,333.38 c 0.02,-0.01 0.03,-0.02 0.02,-0.04 -0.01,-0.05 -0.02,-0.11 -0.04,-0.16 0,-0.02 -0.03,-0.03 -0.05,-0.03 -0.02,0.01 -0.03,0.03 -0.03,0.05 0.02,0.05 0.03,0.1 0.05,0.16 0.02,0.02 0.03,0.03 0.05,0.02 z" + id="path1656" /> + <path + class="st1" + d="m 250.71,333.2 c 0.06,0.1 0.11,0.2 0.21,0.27 0.07,0.05 0.16,-0.03 0.14,-0.11 -0.03,-0.1 -0.1,-0.19 -0.15,-0.28 -0.05,-0.09 -0.1,-0.18 -0.14,-0.28 -0.08,-0.19 -0.13,-0.39 -0.17,-0.59 -0.01,-0.06 -0.09,-0.1 -0.14,-0.08 -0.07,0.02 -0.09,0.08 -0.08,0.14 0.04,0.22 0.1,0.43 0.18,0.64 0.05,0.1 0.09,0.19 0.15,0.29 z" + id="path1658" /> + <path + class="st1" + d="m 257.53,330.71 c 0.04,0.08 0.08,0.17 0.12,0.25 0.04,0.09 0.09,0.17 0.15,0.25 0.05,0.07 0.13,0.1 0.21,0.07 0.07,-0.03 0.12,-0.12 0.1,-0.19 -0.07,-0.19 -0.17,-0.36 -0.27,-0.54 -0.09,-0.17 -0.19,-0.34 -0.28,-0.51 -0.04,-0.07 -0.14,-0.1 -0.22,-0.06 -0.08,0.05 -0.09,0.14 -0.06,0.22 0.08,0.17 0.16,0.34 0.25,0.51 z" + id="path1660" /> + <path + class="st1" + d="m 258.74,332.95 c 0.03,0.01 0.05,0.02 0.08,0.03 0.03,0 0.03,0 0.04,-0.01 0,0 -0.01,0 -0.01,0 0.05,0 0.1,-0.02 0.11,-0.08 0.01,-0.02 0,-0.04 0,-0.06 0,0 0,-0.01 0,-0.01 0,-0.01 0,-0.01 0,-0.01 0,-0.01 0,-0.03 -0.01,-0.04 -0.01,-0.01 -0.01,-0.02 -0.01,-0.02 -0.01,-0.01 -0.01,-0.02 -0.02,-0.03 -0.02,-0.03 -0.04,-0.05 -0.06,-0.07 0,0 0,-0.01 -0.01,-0.01 0,-0.01 -0.01,-0.01 -0.01,-0.02 -0.01,-0.02 -0.03,-0.04 -0.04,-0.06 -0.01,-0.01 -0.01,-0.02 -0.02,-0.03 0,0 0,0 0,0.01 0,0 0,-0.01 0,-0.01 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,-0.01 0,-0.01 -0.01,-0.02 -0.02,-0.05 -0.02,-0.07 0,-0.01 0,-0.02 -0.01,-0.03 0,0 0,-0.01 0,-0.01 0,-0.03 0,-0.05 0,-0.08 0,-0.07 -0.06,-0.13 -0.12,-0.13 -0.06,-0.01 -0.14,0.03 -0.15,0.1 -0.03,0.22 0.03,0.44 0.18,0.61 0.03,0.01 0.05,0.02 0.08,0.04 z" + id="path1662" /> + <path + class="st1" + d="m 259.77,330.64 c 0.05,0.1 0.1,0.2 0.15,0.3 0.02,0.05 0.04,0.09 0.07,0.14 0.03,0.06 0.07,0.11 0.12,0.16 0.05,0.05 0.13,0.06 0.19,0.02 0.06,-0.04 0.08,-0.11 0.07,-0.18 -0.01,-0.07 -0.03,-0.13 -0.06,-0.19 -0.02,-0.05 -0.04,-0.09 -0.07,-0.14 -0.05,-0.1 -0.1,-0.2 -0.15,-0.3 -0.1,-0.2 -0.2,-0.4 -0.3,-0.61 -0.04,-0.09 -0.17,-0.11 -0.25,-0.06 -0.09,0.05 -0.11,0.16 -0.06,0.25 0.1,0.2 0.2,0.4 0.29,0.61 z" + id="path1664" /> + <path + class="st1" + d="m 255.69,331.6 c 0.01,0.02 0.03,0.04 0.04,0.06 0.02,0.02 0.03,0.04 0.04,0.07 0.03,0.04 0.05,0.09 0.1,0.12 0.06,0.05 0.14,0.02 0.14,-0.06 0.01,-0.05 -0.01,-0.1 -0.02,-0.16 -0.01,-0.03 -0.01,-0.05 -0.02,-0.08 -0.01,-0.03 -0.01,-0.06 -0.03,-0.1 -0.04,-0.09 -0.08,-0.18 -0.12,-0.28 -0.01,-0.03 -0.06,-0.06 -0.09,-0.07 -0.03,-0.01 -0.08,0 -0.11,0.02 -0.03,0.02 -0.06,0.05 -0.07,0.09 -0.01,0.04 0,0.07 0.02,0.11 0.04,0.1 0.08,0.19 0.12,0.28 z" + id="path1666" /> + <path + class="st1" + d="m 252.86,332.73 c 0.03,0.06 0.05,0.12 0.1,0.15 0.03,0.02 0.05,0.03 0.09,0.02 0.03,-0.01 0.06,-0.03 0.06,-0.06 0.01,-0.04 0.01,-0.07 0,-0.11 -0.01,-0.02 -0.02,-0.05 -0.02,-0.07 -0.02,-0.05 -0.04,-0.11 -0.05,-0.16 -0.04,-0.11 -0.08,-0.21 -0.13,-0.32 -0.02,-0.06 -0.09,-0.11 -0.16,-0.09 -0.06,0.02 -0.12,0.09 -0.09,0.16 0.04,0.11 0.09,0.23 0.14,0.34 0.02,0.04 0.04,0.09 0.06,0.14 z" + id="path1668" /> + <path + class="st1" + d="m 262.04,328.11 c 0.03,0.07 0.06,0.14 0.1,0.21 0.01,0.03 0.03,0.07 0.04,0.1 0.02,0.03 0.04,0.04 0.06,0.06 0.01,0.01 0.02,0.03 0.03,0.04 0.03,0.04 0.09,0.04 0.13,0.02 0.04,-0.02 0.06,-0.07 0.05,-0.12 -0.01,-0.05 -0.01,-0.09 -0.03,-0.14 -0.01,-0.03 -0.03,-0.06 -0.05,-0.1 -0.03,-0.07 -0.07,-0.14 -0.1,-0.21 -0.07,-0.14 -0.14,-0.28 -0.21,-0.41 -0.03,-0.06 -0.12,-0.08 -0.18,-0.05 -0.07,0.04 -0.07,0.11 -0.05,0.18 0.09,0.14 0.15,0.28 0.21,0.42 z" + id="path1670" /> + <path + class="st1" + d="m 262.59,329.28 c 0.02,0.03 0.04,0.05 0.05,0.08 0.01,0.01 0.02,0.03 0.03,0.04 0.01,0.02 0.03,0.04 0.05,0.05 0.01,0.01 0.02,0.01 0.02,0.01 0.01,0 0.01,0.01 0.02,0.01 0.02,0.02 0.04,0.03 0.07,0.03 0.02,0 0.06,0 0.08,-0.01 0.01,-0.01 0.02,-0.01 0.02,-0.02 0.03,-0.02 0.04,-0.08 0.03,-0.12 -0.01,-0.01 -0.01,-0.02 -0.02,-0.04 0,-0.01 0,-0.01 0,-0.02 -0.01,-0.03 -0.03,-0.05 -0.05,-0.07 -0.01,-0.01 -0.02,-0.02 -0.03,-0.04 -0.02,-0.03 -0.04,-0.05 -0.06,-0.08 l -0.13,-0.15 c -0.02,-0.02 -0.06,-0.04 -0.09,-0.04 -0.03,0 -0.06,0.01 -0.08,0.03 -0.05,0.04 -0.07,0.11 -0.03,0.17 z" + id="path1672" /> + <path + class="st1" + d="m 264.23,328.17 c 0.09,0.16 0.16,0.32 0.27,0.47 0.03,0.04 0.07,0.06 0.12,0.04 0.04,-0.02 0.07,-0.07 0.06,-0.11 -0.06,-0.18 -0.16,-0.34 -0.24,-0.5 -0.09,-0.16 -0.17,-0.32 -0.26,-0.49 -0.07,-0.13 -0.26,-0.01 -0.2,0.12 0.08,0.16 0.17,0.31 0.25,0.47 z" + id="path1674" /> + <path + class="st1" + d="m 267.58,326.31 c 0.05,0.09 0.1,0.19 0.17,0.28 0.07,0.1 0.12,0.22 0.24,0.27 0.06,0.02 0.14,-0.03 0.15,-0.09 0.02,-0.12 -0.06,-0.24 -0.11,-0.35 -0.05,-0.1 -0.11,-0.19 -0.16,-0.29 -0.11,-0.19 -0.22,-0.38 -0.34,-0.58 -0.04,-0.08 -0.15,-0.1 -0.23,-0.06 -0.08,0.05 -0.1,0.15 -0.06,0.23 0.12,0.2 0.23,0.4 0.34,0.59 z" + id="path1676" /> + <path + class="st1" + d="m 268.27,327.7 c 0.01,0.01 0.01,0.02 0.02,0.02 0.01,0.01 0.02,0.02 0.04,0.02 0.02,0.01 0.05,0.01 0.08,0.01 0.02,-0.01 0.04,-0.02 0.05,-0.03 0.02,-0.02 0.04,-0.05 0.03,-0.08 0,-0.03 0,-0.06 -0.01,-0.09 l -0.05,-0.17 c -0.01,-0.03 -0.03,-0.06 -0.06,-0.08 -0.03,-0.02 -0.06,-0.02 -0.09,-0.01 -0.03,0.01 -0.06,0.03 -0.08,0.06 -0.02,0.03 -0.02,0.06 -0.01,0.09 l 0.05,0.17 c 0,0.04 0.02,0.07 0.03,0.09 z" + id="path1678" /> + <path + class="st1" + d="m 269.53,325.28 c -0.03,0.02 -0.04,0.05 -0.05,0.08 -0.01,0.04 0.01,0.07 0.04,0.11 0.05,0.07 0.1,0.13 0.16,0.2 0.05,0.07 0.1,0.14 0.16,0.19 0.02,0.02 0.06,0.03 0.09,0.01 0.03,-0.02 0.04,-0.05 0.03,-0.08 -0.03,-0.09 -0.08,-0.16 -0.12,-0.24 -0.04,-0.08 -0.08,-0.15 -0.13,-0.23 -0.03,-0.07 -0.12,-0.08 -0.18,-0.04 z" + id="path1680" /> + <path + class="st1" + d="m 271.51,323.86 c 0.01,0.03 0.03,0.06 0.04,0.08 0.01,0.01 0.01,0.03 0.02,0.04 0.01,0.01 0.02,0.03 0.03,0.04 0,-0.01 0,-0.01 0,0 0.02,0.03 0.03,0.05 0.05,0.08 0.02,0.03 0.05,0.06 0.07,0.09 0.07,0.08 0.19,-0.01 0.17,-0.1 -0.01,-0.04 -0.02,-0.07 -0.03,-0.11 -0.01,-0.03 -0.03,-0.05 -0.03,-0.08 0,0.01 0,0.01 0,-0.01 0,-0.01 -0.01,-0.02 -0.01,-0.03 -0.01,-0.02 -0.02,-0.04 -0.03,-0.06 -0.01,-0.03 -0.03,-0.06 -0.04,-0.08 -0.06,-0.11 -0.12,-0.23 -0.18,-0.34 -0.03,-0.06 -0.13,-0.09 -0.19,-0.05 -0.06,0.04 -0.08,0.12 -0.05,0.19 0.06,0.11 0.12,0.23 0.18,0.34 z" + id="path1682" /> + <path + class="st1" + d="m 273.21,323.11 c 0.05,0.1 0.09,0.2 0.14,0.3 0.05,0.1 0.09,0.22 0.18,0.29 0.07,0.06 0.2,0.02 0.2,-0.08 0,-0.12 -0.06,-0.22 -0.11,-0.33 -0.05,-0.11 -0.1,-0.21 -0.15,-0.32 -0.1,-0.2 -0.2,-0.41 -0.3,-0.62 -0.03,-0.07 -0.13,-0.08 -0.19,-0.05 -0.07,0.04 -0.08,0.12 -0.05,0.19 0.09,0.21 0.18,0.41 0.28,0.62 z" + id="path1684" /> + <path + class="st1" + d="m 273.93,324.62 c 0.01,0.01 0.02,0.02 0.03,0.03 0.01,0 0.01,0.01 0.02,0.01 0.01,0.01 0.02,0.02 0.04,0.02 0.02,0 0.03,0 0.05,0 0.02,0 0.03,-0.01 0.04,-0.02 0.01,-0.01 0.02,-0.02 0.02,-0.04 0,-0.01 0,-0.01 0.01,-0.02 0,-0.01 0.01,-0.03 0.01,-0.04 0,-0.01 0,-0.03 0,-0.04 0,-0.02 -0.01,-0.05 -0.01,-0.07 0,-0.01 -0.01,-0.03 -0.01,-0.04 0,-0.02 -0.01,-0.03 -0.02,-0.04 -0.01,-0.01 -0.02,-0.02 -0.04,-0.03 -0.01,-0.01 -0.03,-0.01 -0.05,-0.01 -0.02,0 -0.03,0 -0.05,0 -0.03,0.01 -0.06,0.03 -0.08,0.06 -0.01,0.03 -0.02,0.06 -0.01,0.09 0.01,0.04 0.02,0.07 0.04,0.11 0,0.01 0,0.02 0.01,0.03 z" + id="path1686" /> + <path + class="st1" + d="m 271.42,327.06 c 0.04,0.07 0.08,0.14 0.13,0.2 0.05,0.05 0.09,0.12 0.17,0.15 0.05,0.02 0.09,-0.03 0.1,-0.07 0,-0.04 -0.02,-0.08 -0.03,-0.12 -0.01,-0.03 -0.02,-0.06 -0.03,-0.09 -0.03,-0.07 -0.08,-0.14 -0.12,-0.2 -0.08,-0.12 -0.15,-0.25 -0.23,-0.37 -0.04,-0.06 -0.12,-0.08 -0.17,-0.04 -0.06,0.04 -0.08,0.11 -0.04,0.17 0.06,0.11 0.14,0.24 0.22,0.37 z" + id="path1688" /> + <path + class="st1" + d="m 275.76,325.63 c 0.07,-0.03 0.12,-0.11 0.09,-0.19 -0.09,-0.28 -0.21,-0.55 -0.32,-0.82 -0.03,-0.07 -0.1,-0.13 -0.18,-0.1 -0.07,0.02 -0.13,0.1 -0.1,0.18 0.1,0.29 0.19,0.59 0.31,0.87 0.03,0.07 0.14,0.09 0.2,0.06 z" + id="path1690" /> + <path + class="st1" + d="m 276.77,322 c 0.09,0.13 0.18,0.28 0.3,0.39 0.07,0.07 0.17,-0.02 0.13,-0.1 -0.07,-0.14 -0.17,-0.27 -0.26,-0.4 l -0.27,-0.39 c -0.03,-0.05 -0.09,-0.07 -0.14,-0.04 -0.04,0.03 -0.07,0.1 -0.04,0.14 0.09,0.14 0.19,0.27 0.28,0.4 z" + id="path1692" /> + <path + class="st1" + d="m 277.53,323.58 c 0.02,0.03 0.06,0.06 0.1,0.06 0.04,0 0.08,-0.03 0.1,-0.06 0.02,-0.03 0.02,-0.06 0.02,-0.09 0,-0.02 0,-0.03 0,-0.05 0,-0.02 0,-0.03 0,-0.05 0,-0.06 0,-0.12 -0.01,-0.19 0,-0.03 -0.01,-0.06 -0.03,-0.08 -0.02,-0.02 -0.05,-0.03 -0.08,-0.03 -0.06,0 -0.12,0.05 -0.12,0.12 v 0.19 c 0,0.03 0,0.06 0.01,0.1 -0.01,0.03 -0.01,0.06 0.01,0.08 z" + id="path1694" /> + <path + class="st1" + d="m 278.13,321.38 c 0.02,0.04 0.03,0.08 0.05,0.12 0.02,0.05 0.05,0.09 0.08,0.14 0.07,0.1 0.23,0.04 0.2,-0.09 -0.01,-0.05 -0.02,-0.1 -0.04,-0.15 -0.02,-0.04 -0.04,-0.08 -0.05,-0.11 -0.04,-0.08 -0.08,-0.16 -0.12,-0.24 -0.08,-0.16 -0.16,-0.32 -0.24,-0.49 -0.04,-0.09 -0.21,-0.03 -0.17,0.07 0.07,0.17 0.13,0.33 0.2,0.5 0.02,0.09 0.05,0.17 0.09,0.25 z" + id="path1696" /> + <path + class="st1" + d="m 280.75,319.38 c 0.02,0.02 0.04,0.04 0.06,0.05 0.01,0.01 0.02,0.02 0.03,0.03 0.02,0.02 0.04,0.03 0.06,0.04 0.01,0.01 0.01,0.01 0,0 0,0 0.02,0.02 0.03,0.02 0.01,0.01 0.02,0.02 0.04,0.03 0.01,0.01 0.02,0.02 0.04,0.03 0.02,0.01 0.04,0.01 0.06,0.02 0.07,0.01 0.13,-0.04 0.11,-0.11 0,-0.02 -0.01,-0.04 -0.02,-0.06 -0.01,-0.01 -0.02,-0.02 -0.03,-0.04 -0.01,-0.01 -0.02,-0.02 -0.02,-0.03 0,0 -0.02,-0.03 -0.02,-0.03 0,0 0,0 0,0 -0.01,-0.02 -0.02,-0.05 -0.04,-0.06 -0.01,-0.01 -0.02,-0.02 -0.03,-0.03 -0.02,-0.02 -0.04,-0.04 -0.05,-0.06 -0.08,-0.08 -0.16,-0.16 -0.24,-0.24 -0.05,-0.06 -0.16,-0.06 -0.21,0 -0.05,0.06 -0.06,0.15 0,0.21 0.07,0.07 0.15,0.15 0.23,0.23 z" + id="path1698" /> + <path + class="st1" + d="m 281.28,320.31 0.02,0.04 c 0.01,0.02 0.02,0.03 0.04,0.04 0.02,0.02 0.05,0.03 0.07,0.02 0.03,-0.01 0.04,-0.03 0.05,-0.05 0.01,-0.02 0.01,-0.04 0.01,-0.06 v -0.04 c 0,-0.03 -0.01,-0.05 -0.01,-0.08 0,-0.02 -0.01,-0.04 -0.02,-0.06 -0.01,-0.02 -0.02,-0.03 -0.04,-0.04 -0.03,-0.01 -0.05,-0.02 -0.08,-0.01 -0.03,0.01 -0.05,0.03 -0.07,0.05 -0.01,0.02 -0.01,0.03 -0.01,0.05 0,0.02 0.01,0.04 0.02,0.06 0,0.03 0.01,0.06 0.02,0.08 z" + id="path1700" /> + <path + class="st1" + d="m 283.7,318.82 c 0.03,0.05 0.07,0.1 0.11,0.14 0.05,0.06 0.15,0 0.13,-0.07 -0.02,-0.06 -0.03,-0.11 -0.06,-0.17 -0.03,-0.05 -0.06,-0.1 -0.08,-0.15 -0.05,-0.1 -0.11,-0.2 -0.16,-0.3 -0.03,-0.05 -0.1,-0.07 -0.15,-0.04 -0.05,0.03 -0.07,0.09 -0.04,0.15 0.06,0.1 0.11,0.2 0.17,0.3 0.02,0.04 0.05,0.09 0.08,0.14 z" + id="path1702" /> + <path + class="st1" + d="m 285.94,317.26 c 0.04,0.06 0.08,0.11 0.13,0.17 0.04,0.05 0.08,0.11 0.14,0.15 0.04,0.02 0.11,-0.01 0.11,-0.06 0,-0.02 0,-0.05 -0.01,-0.07 -0.01,-0.01 -0.01,-0.03 -0.02,-0.04 l -0.05,-0.09 c -0.03,-0.06 -0.06,-0.12 -0.1,-0.17 -0.07,-0.11 -0.15,-0.22 -0.22,-0.33 -0.03,-0.05 -0.1,-0.07 -0.16,-0.04 -0.05,0.03 -0.07,0.1 -0.04,0.16 z" + id="path1704" /> + <path + class="st1" + d="m 286.68,318.42 c 0.13,-0.03 0.07,-0.23 -0.05,-0.2 -0.13,0.04 -0.08,0.23 0.05,0.2 z" + id="path1706" /> + <path + class="st1" + d="m 288.78,315.72 c 0.04,0.08 0.09,0.15 0.13,0.23 0.02,0.04 0.05,0.08 0.07,0.12 0.01,0.02 0.03,0.05 0.05,0.06 0.03,0.03 0.06,0.04 0.09,0.05 0.06,0.02 0.15,-0.03 0.16,-0.09 0.01,-0.04 0.02,-0.07 0.01,-0.11 -0.01,-0.02 -0.02,-0.05 -0.03,-0.07 -0.02,-0.04 -0.04,-0.08 -0.06,-0.12 -0.04,-0.08 -0.08,-0.15 -0.12,-0.23 -0.09,-0.15 -0.17,-0.31 -0.26,-0.46 -0.04,-0.07 -0.15,-0.1 -0.22,-0.06 -0.08,0.05 -0.1,0.14 -0.06,0.22 z" + id="path1708" /> + <path + class="st1" + d="m 289.7,317.93 c 0.02,0.1 0.04,0.2 0.11,0.28 0.06,0.06 0.16,0.03 0.19,-0.05 0.02,-0.06 0.01,-0.1 -0.01,-0.16 -0.01,-0.04 -0.02,-0.08 -0.03,-0.12 -0.03,-0.09 -0.06,-0.18 -0.08,-0.27 -0.06,-0.17 -0.11,-0.35 -0.16,-0.53 -0.04,-0.13 -0.24,-0.08 -0.2,0.06 0.04,0.18 0.09,0.36 0.13,0.53 0.01,0.08 0.03,0.17 0.05,0.26 z" + id="path1710" /> + <path + class="st1" + d="m 292.12,315.91 c 0.06,0.13 0.12,0.26 0.22,0.37 0.1,0.11 0.19,0.21 0.23,0.36 0.02,0.09 0.16,0.02 0.1,-0.06 -0.1,-0.12 -0.11,-0.26 -0.15,-0.4 -0.03,-0.14 -0.11,-0.27 -0.17,-0.4 -0.13,-0.26 -0.27,-0.51 -0.4,-0.77 -0.07,-0.14 -0.28,-0.02 -0.21,0.12 0.12,0.26 0.25,0.52 0.38,0.78 z" + id="path1712" /> + <path + class="st1" + d="m 294.74,314.31 c 0.07,0.12 0.14,0.24 0.22,0.35 0.04,0.06 0.12,0.09 0.19,0.05 0.06,-0.04 0.08,-0.12 0.05,-0.19 -0.06,-0.12 -0.15,-0.24 -0.22,-0.35 -0.07,-0.12 -0.15,-0.24 -0.22,-0.35 -0.04,-0.06 -0.12,-0.09 -0.19,-0.05 -0.06,0.04 -0.09,0.12 -0.05,0.19 z" + id="path1714" /> + <path + class="st1" + d="m 295.43,315.28 c 0.12,-0.03 0.07,-0.21 -0.05,-0.18 -0.11,0.03 -0.06,0.22 0.05,0.18 z" + id="path1716" /> + <path + class="st1" + d="m 298.16,312.93 c 0.08,0.14 0.15,0.29 0.27,0.4 0.08,0.08 0.22,0 0.19,-0.11 -0.04,-0.16 -0.14,-0.29 -0.22,-0.43 l -0.24,-0.41 c -0.04,-0.06 -0.12,-0.08 -0.18,-0.05 -0.06,0.04 -0.08,0.12 -0.05,0.18 0.07,0.15 0.15,0.29 0.23,0.42 z" + id="path1718" /> + <path + class="st1" + d="m 299.55,312.94 c 0.02,0.04 0.05,0.07 0.07,0.11 0.02,0.04 0.05,0.07 0.08,0.1 0.01,0.02 0.03,0.04 0.04,0.05 0.02,0.03 0.04,0.04 0.07,0.06 0.03,0.03 0.05,0.06 0.09,0.09 0.06,0.05 0.16,0 0.14,-0.08 -0.02,-0.05 -0.04,-0.1 -0.06,-0.15 l 0.01,0.06 c -0.01,-0.05 -0.02,-0.09 -0.04,-0.13 -0.02,-0.03 -0.03,-0.07 -0.05,-0.1 -0.04,-0.07 -0.09,-0.13 -0.13,-0.19 -0.09,-0.13 -0.17,-0.26 -0.26,-0.39 -0.04,-0.06 -0.12,-0.09 -0.19,-0.05 -0.06,0.04 -0.09,0.13 -0.05,0.19 0.09,0.14 0.18,0.28 0.28,0.43 z" + id="path1720" /> + <path + class="st1" + d="m 300.38,313.93 c -0.03,-0.1 -0.07,-0.21 -0.1,-0.31 -0.02,-0.07 -0.1,-0.13 -0.18,-0.1 -0.08,0.02 -0.13,0.1 -0.1,0.18 0.05,0.18 0.1,0.36 0.15,0.54 0.02,0.06 0.07,0.11 0.14,0.12 0.06,0.01 0.14,-0.02 0.16,-0.08 0.02,-0.03 0.03,-0.07 0.04,-0.1 0.01,-0.03 0.01,-0.07 0,-0.1 0,-0.02 0.01,-0.04 0.01,-0.06 0,-0.06 -0.07,-0.1 -0.12,-0.09 z" + id="path1722" /> + <path + class="st1" + d="m 300.4,311.53 c 0.08,0.14 0.17,0.28 0.25,0.42 0.04,0.08 0.09,0.15 0.14,0.22 0.05,0.07 0.1,0.16 0.19,0.18 0.06,0.01 0.12,-0.02 0.13,-0.08 0.02,-0.09 -0.03,-0.17 -0.06,-0.25 -0.03,-0.08 -0.08,-0.16 -0.12,-0.23 -0.08,-0.14 -0.16,-0.28 -0.25,-0.42 -0.04,-0.07 -0.15,-0.11 -0.22,-0.06 -0.07,0.04 -0.1,0.14 -0.06,0.22 z" + id="path1724" /> + <path + class="st1" + d="m 301.52,313.48 c 0.13,-0.03 0.07,-0.23 -0.05,-0.2 -0.14,0.03 -0.08,0.23 0.05,0.2 z" + id="path1726" /> + <path + class="st1" + d="m 302.9,310.76 c 0.06,0.13 0.12,0.27 0.23,0.36 0.04,0.03 0.08,0.04 0.13,0.02 0.04,-0.02 0.08,-0.06 0.07,-0.11 0,-0.04 -0.01,-0.09 -0.02,-0.13 -0.01,-0.04 -0.03,-0.08 -0.05,-0.11 -0.03,-0.06 -0.06,-0.13 -0.09,-0.19 l -0.19,-0.38 c -0.04,-0.07 -0.15,-0.1 -0.21,-0.06 -0.08,0.05 -0.09,0.14 -0.06,0.21 0.07,0.15 0.13,0.27 0.19,0.39 z" + id="path1728" /> + <path + class="st1" + d="m 303.6,311.85 c 0.17,-0.05 0.1,-0.31 -0.07,-0.26 -0.17,0.05 -0.1,0.31 0.07,0.26 z" + id="path1730" /> + <path + class="st1" + d="m 305.66,308.31 c 0.04,0.08 0.08,0.16 0.13,0.24 l 0.07,0.13 c 0.01,0.02 0.02,0.04 0.03,0.05 0.02,0.03 0.05,0.05 0.08,0.07 0.07,0.05 0.17,-0.02 0.17,-0.1 0,-0.1 -0.06,-0.2 -0.11,-0.29 -0.04,-0.08 -0.08,-0.16 -0.13,-0.24 -0.09,-0.17 -0.18,-0.33 -0.26,-0.5 -0.04,-0.07 -0.13,-0.09 -0.2,-0.05 -0.07,0.04 -0.09,0.13 -0.05,0.2 0.1,0.16 0.18,0.32 0.27,0.49 z" + id="path1732" /> + <path + class="st1" + d="m 306.51,311.95 c 0.02,0.05 0.05,0.09 0.07,0.14 0.02,0.04 0.04,0.07 0.06,0.11 0.02,0.04 0.04,0.09 0.07,0.13 0.03,0.04 0.1,0.03 0.09,-0.03 0,-0.05 -0.02,-0.09 -0.03,-0.14 -0.01,-0.04 -0.01,-0.08 -0.02,-0.12 -0.01,-0.04 -0.01,-0.09 -0.03,-0.13 -0.01,-0.04 -0.03,-0.09 -0.04,-0.13 -0.05,-0.17 -0.12,-0.34 -0.18,-0.51 -0.02,-0.06 -0.08,-0.1 -0.15,-0.09 -0.06,0.02 -0.11,0.09 -0.09,0.15 0.06,0.17 0.12,0.34 0.19,0.51 0.03,0.03 0.04,0.07 0.06,0.11 z" + id="path1734" /> + <path + class="st1" + d="m 308.53,311.99 c 0.04,0.08 0.08,0.16 0.12,0.24 0.01,0.02 0.02,0.04 0.03,0.06 0.01,0.02 0.02,0.03 0.04,0.04 0.01,0.01 0.02,0.02 0.03,0.02 0.03,0.03 0.04,0.07 0.08,0.09 0.06,0.05 0.14,0.02 0.15,-0.06 0,-0.05 -0.02,-0.1 -0.02,-0.15 0,0.02 0.01,0.02 0.01,0 0,-0.02 0,-0.04 0,-0.06 0,-0.02 -0.01,-0.04 -0.02,-0.06 -0.04,-0.1 -0.07,-0.19 -0.11,-0.28 -0.08,-0.17 -0.15,-0.34 -0.23,-0.51 -0.04,-0.08 -0.16,-0.11 -0.23,-0.06 -0.08,0.05 -0.1,0.14 -0.06,0.23 0.06,0.17 0.13,0.34 0.21,0.5 z" + id="path1736" /> + <path + class="st1" + d="m 309.29,306.9 c 0.03,0.07 0.06,0.14 0.1,0.21 l 0.05,0.1 c 0.03,0.05 0.05,0.08 0.1,0.11 0.07,0.04 0.15,-0.02 0.16,-0.09 0.01,-0.08 -0.04,-0.16 -0.07,-0.23 -0.03,-0.08 -0.07,-0.16 -0.11,-0.23 -0.07,-0.14 -0.14,-0.28 -0.21,-0.42 -0.03,-0.06 -0.12,-0.08 -0.18,-0.05 -0.07,0.04 -0.08,0.11 -0.05,0.18 0.08,0.13 0.14,0.28 0.21,0.42 z" + id="path1738" /> + <path + class="st1" + d="m 310.13,308.43 c 0.01,0.04 0.03,0.06 0.05,0.09 0.02,0.04 0.07,0.06 0.12,0.05 0.05,-0.01 0.07,-0.05 0.08,-0.1 0,-0.04 0,-0.07 0,-0.11 -0.01,-0.03 -0.01,-0.05 -0.02,-0.08 -0.01,-0.05 -0.03,-0.11 -0.05,-0.16 -0.02,-0.06 -0.09,-0.11 -0.15,-0.09 -0.06,0.02 -0.1,0.08 -0.09,0.15 0.01,0.05 0.03,0.11 0.04,0.16 z" + id="path1740" /> + <path + class="st1" + d="m 312.29,305.85 c 0.03,0.04 0.06,0.07 0.1,0.11 0.04,0.04 0.08,0.07 0.12,0.1 0.07,0.05 0.15,0.14 0.24,0.14 0.04,0 0.08,-0.04 0.08,-0.08 0,-0.05 -0.03,-0.1 -0.06,-0.15 -0.02,-0.04 -0.05,-0.08 -0.07,-0.12 -0.05,-0.09 -0.12,-0.16 -0.18,-0.24 -0.13,-0.14 -0.25,-0.29 -0.38,-0.43 -0.06,-0.06 -0.17,-0.06 -0.23,0 -0.06,0.07 -0.06,0.16 0,0.23 0.13,0.15 0.25,0.29 0.38,0.44 z" + id="path1742" /> + <path + class="st1" + d="m 313.34,307.48 c 0.01,0.02 0.01,0.05 0.02,0.07 0.01,0.03 0.03,0.06 0.05,0.09 0.05,0.08 0.18,0.05 0.18,-0.05 0,-0.04 0,-0.07 -0.01,-0.1 -0.01,-0.02 -0.01,-0.05 -0.02,-0.07 -0.02,-0.05 -0.03,-0.11 -0.04,-0.16 -0.03,-0.11 -0.06,-0.21 -0.09,-0.32 -0.02,-0.05 -0.08,-0.09 -0.13,-0.08 -0.06,0.02 -0.09,0.07 -0.08,0.13 0.03,0.11 0.06,0.21 0.08,0.32 0.01,0.07 0.02,0.12 0.04,0.17 z" + id="path1744" /> + <path + class="st1" + d="m 314.3,304.64 c 0.1,0.15 0.18,0.3 0.31,0.43 0.04,0.04 0.12,0.05 0.17,0.02 0.05,-0.03 0.09,-0.1 0.06,-0.16 -0.03,-0.08 -0.07,-0.16 -0.12,-0.24 -0.05,-0.07 -0.1,-0.14 -0.15,-0.22 -0.1,-0.14 -0.2,-0.28 -0.29,-0.42 -0.04,-0.06 -0.13,-0.09 -0.2,-0.05 -0.07,0.04 -0.09,0.13 -0.05,0.2 0.09,0.15 0.18,0.3 0.27,0.44 z" + id="path1746" /> + <path + class="st1" + d="m 317.3,303.58 c 0.1,0.17 0.19,0.34 0.28,0.52 0.09,0.18 0.17,0.37 0.3,0.53 0.13,0.17 0.21,0.34 0.27,0.54 0.03,0.09 0.06,0.19 0.08,0.28 0.03,0.1 0.05,0.21 0.11,0.29 0.07,0.11 0.28,0.08 0.27,-0.07 -0.01,-0.19 -0.14,-0.4 -0.24,-0.57 -0.1,-0.19 -0.18,-0.37 -0.24,-0.57 -0.1,-0.39 -0.37,-0.75 -0.59,-1.08 -0.1,-0.16 -0.33,-0.03 -0.24,0.13 z" + id="path1748" /> + <path + class="st1" + d="m 321.47,302.82 c 0.01,0 0.01,0 0.02,0 -0.02,0 -0.03,-0.01 -0.05,-0.01 0.01,0 0.02,0.01 0.03,0.01 z" + id="path1750" /> + <path + class="st1" + d="m 321.5,302.82 c -0.01,0 -0.01,0 0,0 -0.01,0 -0.01,0 -0.01,0 0,0 0,0 0.01,0 z" + id="path1752" /> + <path + class="st1" + d="m 321.13,302.43 c 0.05,0.07 0.09,0.14 0.14,0.2 0.02,0.03 0.05,0.07 0.07,0.1 0.04,0.06 0.08,0.08 0.15,0.09 0.06,0.01 0.14,-0.01 0.13,-0.09 0,-0.02 0,-0.02 0,-0.01 0,-0.02 0,-0.03 0.01,-0.05 0,-0.03 -0.01,-0.06 -0.03,-0.09 -0.02,-0.04 -0.04,-0.07 -0.07,-0.1 -0.05,-0.07 -0.1,-0.13 -0.15,-0.2 -0.1,-0.13 -0.2,-0.27 -0.29,-0.4 -0.04,-0.06 -0.12,-0.09 -0.19,-0.05 -0.06,0.04 -0.09,0.13 -0.05,0.19 0.1,0.14 0.19,0.28 0.28,0.41 z" + id="path1754" /> + <path + class="st1" + d="m 321.83,303.45 c 0.02,0.02 0.03,0.05 0.05,0.07 0.02,0.03 0.07,0.04 0.11,0.03 0.03,-0.01 0.07,-0.04 0.08,-0.08 0,-0.03 0.01,-0.05 0.01,-0.08 0,-0.03 -0.01,-0.06 -0.02,-0.09 -0.01,-0.04 -0.02,-0.08 -0.03,-0.11 -0.01,-0.03 -0.03,-0.06 -0.06,-0.08 -0.03,-0.02 -0.07,-0.02 -0.1,-0.01 -0.03,0.01 -0.06,0.03 -0.08,0.06 -0.02,0.03 -0.02,0.06 -0.01,0.1 0.01,0.04 0.02,0.08 0.03,0.12 0,0.01 0.01,0.05 0.02,0.07 z" + id="path1756" /> + <path + class="st1" + d="m 323.72,301.1 c 0.05,0.07 0.1,0.13 0.16,0.19 0.03,0.03 0.05,0.06 0.08,0.08 0.03,0.04 0.07,0.05 0.12,0.06 0.05,0.02 0.1,-0.03 0.1,-0.08 0,-0.05 -0.01,-0.08 -0.03,-0.13 -0.02,-0.03 -0.04,-0.06 -0.06,-0.1 -0.04,-0.06 -0.08,-0.13 -0.12,-0.19 -0.09,-0.12 -0.18,-0.24 -0.27,-0.36 -0.05,-0.06 -0.13,-0.1 -0.2,-0.05 -0.06,0.04 -0.1,0.14 -0.05,0.2 0.09,0.14 0.18,0.26 0.27,0.38 z" + id="path1758" /> + <path + class="st1" + d="m 324.46,302.09 c -0.02,0.01 -0.05,0.02 -0.06,0.05 -0.01,0.02 -0.02,0.05 -0.01,0.08 0.01,0.03 0.02,0.05 0.05,0.06 0.03,0.02 0.07,0.04 0.1,0.06 0.02,0.01 0.05,0.02 0.07,0.03 0.01,0 0.02,0.01 0.03,0.01 0.01,0 0.03,0 0.04,0 0.05,0 0.09,-0.06 0.06,-0.1 -0.01,-0.01 -0.02,-0.02 -0.03,-0.04 -0.01,-0.01 -0.01,-0.01 -0.02,-0.02 -0.02,-0.02 -0.04,-0.04 -0.06,-0.05 -0.03,-0.02 -0.07,-0.04 -0.1,-0.06 -0.02,-0.03 -0.05,-0.03 -0.07,-0.02 z" + id="path1760" /> + <path + class="st1" + d="m 326.11,300.37 c 0.04,0.04 0.07,0.09 0.11,0.13 0.01,0.01 0.02,0.02 0.02,0.03 0.01,0.02 0.03,0.03 0.05,0.04 0.01,0.01 0.04,0.04 0.05,0.05 0.03,0.03 0.08,0.03 0.12,0.01 0.04,-0.03 0.04,-0.07 0.02,-0.11 -0.03,-0.06 -0.04,-0.1 -0.08,-0.16 -0.03,-0.05 -0.06,-0.09 -0.09,-0.14 -0.06,-0.1 -0.13,-0.19 -0.2,-0.28 -0.04,-0.06 -0.12,-0.09 -0.18,-0.05 -0.06,0.04 -0.09,0.12 -0.05,0.18 0.08,0.1 0.15,0.2 0.23,0.3 z" + id="path1762" /> + <path + class="st1" + d="m 326.72,301.4 c -0.11,0.03 -0.06,0.2 0.05,0.17 0.1,-0.03 0.06,-0.2 -0.05,-0.17 z" + id="path1764" /> + <path + class="st1" + d="m 328.32,298.97 c 0.03,0.07 0.06,0.14 0.09,0.21 0.04,0.08 0.08,0.18 0.16,0.22 0.08,0.05 0.22,0.01 0.24,-0.1 0.01,-0.04 0.01,-0.07 0,-0.11 -0.01,-0.02 -0.02,-0.04 -0.02,-0.06 -0.01,-0.03 -0.03,-0.07 -0.04,-0.1 -0.03,-0.08 -0.08,-0.16 -0.12,-0.24 -0.07,-0.14 -0.15,-0.28 -0.22,-0.42 -0.04,-0.07 -0.15,-0.1 -0.22,-0.06 -0.08,0.05 -0.09,0.14 -0.06,0.22 0.07,0.15 0.13,0.29 0.19,0.44 z" + id="path1766" /> + <path + class="st1" + d="m 329.16,300.67 c 0.01,0 0.02,0 0.03,0 0.01,0 0.02,0 0.03,0 l 0.03,-0.01 c 0.01,-0.01 0.03,-0.02 0.04,-0.03 0.02,-0.02 0.02,-0.05 0.03,-0.08 0,-0.03 0,-0.05 0,-0.08 0,-0.03 0,-0.05 0,-0.08 0,-0.05 -0.01,-0.11 -0.01,-0.16 0,-0.03 -0.01,-0.06 -0.03,-0.08 -0.02,-0.02 -0.05,-0.03 -0.08,-0.03 -0.06,0 -0.12,0.05 -0.12,0.12 0,0.05 0,0.11 0,0.16 0,0.03 0,0.05 0,0.08 0,0.03 0,0.05 0,0.08 0,0.03 0.01,0.05 0.03,0.08 0,0.01 0.02,0.03 0.05,0.03 z" + id="path1768" /> + <path + class="st1" + d="m 331.7,297.14 0.13,0.22 c 0.05,0.09 0.11,0.19 0.22,0.2 0.04,0 0.09,-0.02 0.1,-0.06 0.05,-0.1 -0.01,-0.2 -0.06,-0.29 -0.04,-0.07 -0.08,-0.14 -0.13,-0.21 -0.08,-0.14 -0.17,-0.29 -0.25,-0.43 -0.04,-0.07 -0.14,-0.1 -0.2,-0.05 -0.07,0.04 -0.09,0.13 -0.05,0.2 0.07,0.14 0.16,0.28 0.24,0.42 z" + id="path1770" /> + <path + class="st1" + d="m 223.27,357.45 c -0.01,-0.12 -0.03,-0.24 -0.04,-0.36 -0.03,-0.24 -0.06,-0.48 -0.08,-0.72 -0.01,-0.08 -0.13,-0.08 -0.12,0 0.02,0.25 0.04,0.49 0.07,0.74 0.01,0.12 0.02,0.24 0.03,0.36 0.01,0.06 0.01,0.12 0.02,0.18 0.01,0.06 0.01,0.12 0.04,0.17 0.03,0.05 0.1,0.03 0.11,-0.02 0.02,-0.06 0,-0.12 0,-0.18 -0.01,-0.06 -0.02,-0.11 -0.03,-0.17 z" + id="path1772" /> + <path + class="st1" + d="m 224.38,359.65 c 0.03,0.04 0.1,0.01 0.11,-0.03 0.02,-0.06 0,-0.12 -0.02,-0.17 -0.01,-0.05 -0.02,-0.11 -0.03,-0.16 -0.03,-0.12 -0.05,-0.24 -0.08,-0.37 -0.05,-0.24 -0.1,-0.48 -0.15,-0.72 -0.01,-0.06 -0.1,-0.03 -0.09,0.02 0.04,0.24 0.08,0.48 0.12,0.73 0.02,0.12 0.04,0.24 0.06,0.36 0.01,0.06 0.02,0.12 0.03,0.18 0.01,0.06 0.01,0.11 0.05,0.16 z" + id="path1774" /> + <path + class="st1" + d="m 229.05,359.02 c 0.01,0.04 0.02,0.07 0.04,0.1 0.02,0.05 0.09,0.03 0.08,-0.02 -0.01,-0.04 -0.01,-0.07 -0.02,-0.11 -0.01,-0.03 -0.02,-0.07 -0.03,-0.1 -0.02,-0.07 -0.04,-0.14 -0.06,-0.21 -0.02,-0.06 -0.11,-0.03 -0.09,0.02 0.02,0.07 0.04,0.14 0.05,0.21 z" + id="path1776" /> + <path + class="st1" + d="m 216.64,365.01 c -0.14,-0.31 -0.27,-0.63 -0.4,-0.94 -0.02,-0.04 -0.08,-0.02 -0.07,0.02 0.12,0.32 0.24,0.63 0.35,0.96 0.05,0.16 0.11,0.31 0.17,0.47 0.05,0.14 0.1,0.31 0.2,0.43 0.03,0.04 0.1,0.01 0.1,-0.04 -0.01,-0.16 -0.09,-0.31 -0.15,-0.45 -0.07,-0.16 -0.13,-0.31 -0.2,-0.45 z" + id="path1778" /> + <path + class="st1" + d="m 219.55,366.46 c 0.01,0.02 0.03,0.04 0.04,0.06 0.01,0.02 0.03,0.03 0.05,0.04 0.04,0.03 0.1,-0.01 0.09,-0.05 0,-0.08 -0.05,-0.16 -0.09,-0.23 -0.03,-0.07 -0.07,-0.14 -0.11,-0.2 -0.02,-0.04 -0.08,-0.06 -0.12,-0.03 -0.04,0.03 -0.06,0.08 -0.03,0.12 0.04,0.07 0.07,0.14 0.11,0.2 0.02,0.03 0.04,0.06 0.06,0.09 z" + id="path1780" /> + <path + class="st1" + d="m 221.95,364.98 c 0.02,0 0.03,-0.01 0.05,-0.01 0.03,-0.01 0.06,-0.02 0.07,-0.05 0,0 0,0 0.01,0 0.03,-0.02 0.04,-0.05 0.03,-0.08 -0.01,-0.03 -0.04,-0.05 -0.07,-0.05 0,0 -0.01,0 -0.01,0 -0.03,-0.01 -0.06,-0.02 -0.09,-0.01 -0.02,0.01 -0.03,0.01 -0.05,0.02 l -0.09,0.03 c -0.02,0.01 -0.04,0.02 -0.06,0.04 -0.01,0.02 -0.02,0.05 -0.01,0.07 0.02,0.05 0.06,0.08 0.11,0.06 0.04,-0.01 0.07,-0.01 0.11,-0.02 z" + id="path1782" /> + <path + class="st1" + d="m 223.28,364.48 c -0.05,0.01 -0.03,0.09 0.02,0.07 0.05,-0.01 0.03,-0.08 -0.02,-0.07 z" + id="path1784" /> + <path + class="st1" + d="m 224.79,363.41 c 0.24,-0.07 0.14,-0.44 -0.1,-0.38 -0.24,0.07 -0.14,0.45 0.1,0.38 z" + id="path1786" /> + <path + class="st1" + d="m 205.34,367.55 c -0.12,-0.4 -0.2,-0.8 -0.25,-1.22 -0.09,-0.82 0,-1.63 0.29,-2.4 0.05,-0.13 -0.16,-0.18 -0.21,-0.06 -0.32,0.8 -0.45,1.69 -0.33,2.55 0.06,0.41 0.17,0.81 0.34,1.19 0.16,0.37 0.36,0.81 0.64,1.11 0.03,0.03 0.08,-0.01 0.06,-0.05 -0.09,-0.18 -0.21,-0.34 -0.3,-0.52 -0.1,-0.19 -0.18,-0.39 -0.24,-0.6 z" + id="path1788" /> + <path + class="st1" + d="m 206.92,366.28 c -0.1,0.03 -0.06,0.17 0.04,0.15 0.1,-0.02 0.06,-0.17 -0.04,-0.15 z" + id="path1790" /> + <path + class="st1" + d="m 212.68,365.55 c 0.09,-0.02 0.05,-0.16 -0.04,-0.14 -0.09,0.03 -0.05,0.17 0.04,0.14 z" + id="path1792" /> + <path + class="st1" + d="m 213.37,363.19 c -0.11,-0.66 -0.23,-1.31 -0.34,-1.97 -0.02,-0.15 -0.24,-0.08 -0.22,0.06 0.1,0.66 0.19,1.32 0.3,1.98 0.05,0.33 0.1,0.66 0.16,0.99 0.05,0.31 0.09,0.63 0.22,0.91 0.03,0.07 0.13,0.03 0.13,-0.04 0.04,-0.31 -0.04,-0.64 -0.09,-0.95 -0.05,-0.32 -0.11,-0.65 -0.16,-0.98 z" + id="path1794" /> + <path + class="st1" + d="m 189.33,378.41 c -0.02,-0.01 -0.04,-0.01 -0.05,0.01 -0.01,0.01 -0.01,0.03 -0.01,0.05 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 -0.01,0.01 -0.01,0.01 0,0 0,0 0,0 0,0 0,0 0,0 -0.01,0 -0.01,0 -0.02,0 0,0 0,0 0,0 0,0 0,0 0.01,0 0,0 0,0 -0.01,0 0,-0.01 0,-0.02 -0.01,-0.03 -0.01,-0.02 -0.03,-0.03 -0.05,-0.03 -0.02,0 -0.04,0 -0.06,0.01 -0.02,0.01 -0.03,0.03 -0.03,0.05 0,0.02 -0.01,0.05 0,0.07 0.01,0.02 0.02,0.04 0.03,0.05 0.03,0.02 0.07,0.04 0.11,0.03 0.01,0 0.02,0 0.04,0 0.01,0 0.02,-0.01 0.03,-0.01 0.01,-0.01 0.02,-0.01 0.03,-0.02 0.01,-0.01 0.03,-0.02 0.04,-0.03 0.01,-0.01 0.03,-0.03 0.03,-0.05 0,-0.02 0,-0.05 -0.01,-0.07 -0.03,-0.02 -0.05,-0.03 -0.06,-0.04 z" + id="path1796" /> + <path + class="st1" + d="m 196.48,372.56 c -0.01,-0.05 -0.08,-0.08 -0.12,-0.07 -0.06,0.02 -0.08,0.07 -0.07,0.12 0.02,0.14 0.04,0.29 0.06,0.43 0.02,0.14 0.03,0.29 0.08,0.43 0.03,0.09 0.16,0.08 0.17,-0.02 0.01,-0.15 -0.03,-0.3 -0.05,-0.45 -0.03,-0.15 -0.05,-0.29 -0.07,-0.44 z" + id="path1798" /> + <path + class="st1" + d="m 197.28,372.36 c -0.05,-0.01 -0.12,0.02 -0.14,0.08 -0.01,0.08 -0.03,0.16 -0.04,0.24 -0.01,0.04 -0.01,0.08 -0.02,0.12 0,0.02 -0.01,0.04 -0.01,0.06 -0.01,0.03 0,0.05 0,0.08 0,0.04 0.02,0.07 0.06,0.08 0.04,0.01 0.08,-0.01 0.1,-0.04 0.01,-0.02 0.03,-0.04 0.03,-0.07 0.01,-0.02 0.01,-0.04 0.01,-0.06 l 0.03,-0.12 c 0.02,-0.08 0.04,-0.16 0.05,-0.24 0.02,-0.05 -0.01,-0.12 -0.07,-0.13 z" + id="path1800" /> + <path + class="st1" + d="m 199.65,372.74 c 0.03,0 0.05,-0.01 0.07,-0.02 0.03,-0.02 0.06,-0.03 0.1,-0.05 0.02,-0.01 0.03,-0.02 0.05,-0.02 0.02,-0.01 0.04,-0.03 0.06,-0.04 0.01,-0.01 0.02,-0.02 0.02,-0.04 0,-0.02 0,-0.03 0,-0.05 0,-0.02 -0.01,-0.03 -0.02,-0.04 -0.01,-0.01 -0.02,-0.02 -0.04,-0.02 -0.02,0 -0.05,-0.01 -0.07,-0.01 -0.02,0 -0.04,0 -0.05,0 -0.04,0 -0.07,0.01 -0.11,0.01 -0.03,0 -0.05,0.01 -0.07,0.02 -0.02,0.01 -0.04,0.03 -0.05,0.05 -0.02,0.03 -0.02,0.07 -0.01,0.1 0.01,0.03 0.03,0.07 0.06,0.08 0.01,0.02 0.03,0.03 0.06,0.03 z" + id="path1802" /> + <path + class="st1" + d="m 200.47,371.43 c 0,0.05 0.02,0.1 0.03,0.16 0.01,0.05 0.06,0.08 0.11,0.07 0.05,-0.01 0.08,-0.05 0.09,-0.1 0.01,-0.05 0.01,-0.09 0.01,-0.14 0,-0.05 -0.01,-0.09 -0.01,-0.14 L 200.68,371 c 0,-0.06 -0.05,-0.12 -0.12,-0.12 -0.06,0 -0.13,0.05 -0.12,0.12 0.01,0.09 0.01,0.19 0.02,0.28 0.01,0.05 0.01,0.1 0.01,0.15 z" + id="path1804" /> + <path + class="st1" + d="m 201.47,372.31 c 0,-0.02 -0.01,-0.05 -0.02,-0.07 -0.01,-0.04 -0.02,-0.08 -0.03,-0.11 -0.02,-0.08 -0.04,-0.16 -0.07,-0.24 -0.04,-0.16 -0.09,-0.33 -0.13,-0.49 -0.03,-0.12 -0.23,-0.07 -0.19,0.05 0.04,0.16 0.09,0.33 0.13,0.49 0.02,0.08 0.04,0.16 0.07,0.24 0.01,0.04 0.02,0.08 0.03,0.11 0.01,0.02 0.01,0.04 0.02,0.06 0.01,0.03 0.03,0.05 0.05,0.07 0.04,0.05 0.13,0.02 0.14,-0.04 -0.01,-0.02 0,-0.05 0,-0.07 z" + id="path1806" /> + <path + class="st1" + d="m 186.55,380.67 -0.15,-0.55 c -0.03,-0.12 -0.22,-0.07 -0.19,0.05 l 0.15,0.56 c 0.02,0.09 0.05,0.18 0.07,0.27 0.01,0.05 0.03,0.1 0.04,0.14 0.02,0.05 0.03,0.1 0.08,0.12 0.04,0.02 0.09,0.01 0.11,-0.03 0.03,-0.05 0.01,-0.09 0.01,-0.15 -0.01,-0.05 -0.02,-0.1 -0.04,-0.14 -0.03,-0.09 -0.06,-0.18 -0.08,-0.27 z" + id="path1808" /> + <path + class="st1" + d="m 230.26,352.35 c 0.02,-0.03 0.03,-0.07 0.03,-0.11 0,-0.03 0.01,-0.06 0,-0.09 -0.01,-0.07 -0.02,-0.13 -0.03,-0.2 -0.02,-0.13 -0.03,-0.26 -0.05,-0.4 -0.01,-0.06 -0.05,-0.12 -0.12,-0.12 -0.06,0 -0.13,0.05 -0.12,0.12 0.02,0.13 0.03,0.27 0.05,0.4 0.01,0.06 0.02,0.13 0.02,0.19 0.01,0.07 0.03,0.17 0.09,0.22 0.05,0.04 0.1,0.03 0.13,-0.01 z" + id="path1810" /> + <path + class="st1" + d="m 231.32,351.24 c 0.01,0.03 0.01,0.05 0.02,0.08 0.02,0.05 0.07,0.09 0.13,0.08 0.05,-0.01 0.1,-0.06 0.1,-0.11 0,-0.03 -0.01,-0.05 -0.01,-0.08 0,-0.04 -0.01,-0.07 -0.01,-0.11 -0.01,-0.05 -0.02,-0.11 -0.03,-0.16 -0.01,-0.06 -0.09,-0.11 -0.15,-0.09 -0.03,0.01 -0.06,0.03 -0.08,0.06 -0.02,0.03 -0.02,0.06 -0.01,0.09 0.01,0.05 0.02,0.1 0.03,0.16 0,0.03 0.01,0.05 0.01,0.08 z" + id="path1812" /> + <path + class="st1" + d="m 232.99,351.73 -0.04,-0.04 c 0.03,0.04 0.05,0.08 0.09,0.11 0.05,0.04 0.11,0.01 0.12,-0.05 0,-0.03 0,-0.05 -0.01,-0.08 0,-0.02 0,-0.05 0,-0.07 -0.01,-0.05 -0.03,-0.11 -0.04,-0.16 -0.02,-0.09 -0.04,-0.18 -0.05,-0.28 -0.02,-0.2 -0.01,-0.4 0.03,-0.59 0.03,-0.14 -0.18,-0.19 -0.21,-0.06 -0.05,0.2 -0.07,0.4 -0.05,0.61 0.01,0.1 0.02,0.2 0.04,0.3 0.02,0.11 0.03,0.25 0.12,0.31 z" + id="path1814" /> + <path + class="st1" + d="m 234.36,351.45 c 0.01,0.08 0,0.19 0.09,0.23 0.04,0.02 0.09,0.01 0.12,-0.02 0.06,-0.06 0.04,-0.15 0.03,-0.23 -0.01,-0.07 -0.02,-0.14 -0.03,-0.22 -0.02,-0.14 -0.04,-0.27 -0.06,-0.41 -0.01,-0.05 -0.07,-0.08 -0.11,-0.07 -0.05,0.01 -0.09,0.05 -0.09,0.1 0.01,0.14 0.03,0.27 0.04,0.41 -0.01,0.07 0,0.14 0.01,0.21 z" + id="path1816" /> + <path + class="st1" + d="m 231.73,353.63 c 0.01,0.07 0.01,0.14 0.02,0.21 0.01,0.08 0.02,0.14 0.05,0.21 0.05,0.1 0.18,0.06 0.21,-0.03 0.04,-0.12 0.02,-0.26 0.02,-0.39 0,-0.13 -0.01,-0.27 -0.02,-0.4 l -0.05,-0.79 c -0.01,-0.18 -0.29,-0.18 -0.28,0 0.01,0.27 0.02,0.54 0.03,0.8 0,0.13 0.01,0.26 0.02,0.39 z" + id="path1818" /> + <path + class="st1" + d="m 244.9,349.69 c -0.05,-0.25 -0.1,-0.51 -0.15,-0.76 -0.02,-0.12 -0.2,-0.07 -0.18,0.05 0.05,0.25 0.1,0.51 0.15,0.76 0.02,0.13 0.05,0.25 0.08,0.38 0.01,0.06 0.02,0.12 0.03,0.18 0.01,0.07 0.03,0.12 0.07,0.19 0.04,0.06 0.12,0.03 0.13,-0.03 0.01,-0.13 -0.02,-0.25 -0.05,-0.38 -0.02,-0.14 -0.05,-0.26 -0.08,-0.39 z" + id="path1820" /> + <path + class="st1" + d="m 245.57,352.51 c -0.05,-0.1 -0.1,-0.2 -0.14,-0.3 -0.02,-0.05 -0.1,-0.06 -0.14,-0.04 -0.05,0.03 -0.06,0.09 -0.04,0.14 0.05,0.1 0.09,0.2 0.14,0.3 0.02,0.05 0.04,0.1 0.07,0.15 0.02,0.05 0.05,0.1 0.08,0.14 0.02,0.04 0.07,0.06 0.11,0.04 0.04,-0.02 0.07,-0.06 0.05,-0.11 -0.02,-0.06 -0.03,-0.12 -0.06,-0.17 -0.02,-0.05 -0.05,-0.1 -0.07,-0.15 z" + id="path1822" /> + <path + class="st1" + d="m 246.42,344.56 c -0.24,0.55 -0.39,1.12 -0.44,1.71 -0.02,0.29 -0.02,0.58 0.01,0.87 0.02,0.15 0.03,0.29 0.06,0.44 0.03,0.14 0.06,0.31 0.14,0.44 0.08,0.11 0.23,0.06 0.25,-0.07 0.02,-0.13 -0.03,-0.28 -0.05,-0.41 -0.02,-0.14 -0.04,-0.28 -0.05,-0.43 -0.02,-0.27 -0.03,-0.55 -0.01,-0.82 0.03,-0.56 0.16,-1.11 0.37,-1.63 0.06,-0.15 -0.21,-0.26 -0.28,-0.1 z" + id="path1824" /> + <path + class="st1" + d="m 246.77,350.43 c 0.03,-0.01 0.02,-0.06 -0.01,-0.05 -0.03,0.01 -0.02,0.06 0.01,0.05 z" + id="path1826" /> + <path + class="st1" + d="m 247.37,352.83 c -0.01,-0.03 -0.02,-0.07 -0.03,-0.1 -0.01,-0.03 -0.04,-0.05 -0.08,-0.04 -0.03,0.01 -0.05,0.04 -0.04,0.08 0.01,0.03 0.02,0.07 0.03,0.11 0,0.02 0.01,0.03 0.02,0.05 0.01,0.02 0.01,0.04 0.02,0.05 0.01,0.01 0.01,0.02 0.02,0.03 0.01,0.01 0.03,0.01 0.04,0.01 0.03,-0.01 0.04,-0.04 0.04,-0.06 0,-0.02 -0.01,-0.04 -0.01,-0.05 0,-0.05 0,-0.07 -0.01,-0.08 z" + id="path1828" /> + <path + class="st1" + d="m 249.49,351.73 c -0.01,-0.07 -0.02,-0.15 -0.04,-0.22 -0.04,-0.16 -0.07,-0.31 -0.12,-0.47 -0.08,-0.31 -0.17,-0.62 -0.25,-0.92 -0.05,-0.18 -0.33,-0.11 -0.28,0.08 0.08,0.31 0.17,0.62 0.25,0.93 0.04,0.15 0.09,0.31 0.13,0.46 0.02,0.07 0.05,0.14 0.08,0.21 0.03,0.07 0.05,0.15 0.1,0.21 0.04,0.05 0.13,0.02 0.14,-0.04 0.02,-0.09 0,-0.17 -0.01,-0.24 z" + id="path1830" /> + <path + class="st1" + d="m 250.37,347.93 c 0,-0.06 0,-0.13 0,-0.19 -0.01,-0.13 -0.03,-0.26 -0.05,-0.39 -0.01,-0.06 -0.04,-0.11 -0.11,-0.11 -0.05,0 -0.12,0.05 -0.11,0.11 0.01,0.13 0.03,0.26 0.04,0.39 0.01,0.07 0.03,0.14 0.05,0.2 0.01,0.06 0.02,0.13 0.05,0.19 0.01,0.03 0.03,0.05 0.06,0.05 0.03,0 0.06,-0.02 0.06,-0.05 0.01,-0.07 0.01,-0.14 0.01,-0.2 z" + id="path1832" /> + <path + class="st1" + d="m 250.57,349.53 c 0.04,-0.01 0.03,-0.08 -0.02,-0.07 -0.04,0.01 -0.02,0.08 0.02,0.07 z" + id="path1834" /> + <path + class="st1" + d="m 252.61,348.77 c -0.06,0.02 -0.04,0.12 0.03,0.1 0.06,-0.02 0.04,-0.12 -0.03,-0.1 z" + id="path1836" /> + <path + class="st1" + d="m 256.23,345.7 c -0.06,-0.2 -0.12,-0.41 -0.18,-0.61 -0.02,-0.07 -0.13,-0.04 -0.12,0.03 0.05,0.21 0.11,0.41 0.16,0.62 0.02,0.1 0.05,0.2 0.07,0.3 0.02,0.11 0.04,0.22 0.05,0.33 0.02,0.15 0.29,0.08 0.23,-0.06 -0.04,-0.1 -0.09,-0.2 -0.12,-0.3 -0.03,-0.11 -0.06,-0.21 -0.09,-0.31 z" + id="path1838" /> + <path + class="st1" + d="m 258.06,345.21 c 0.03,0.1 0.17,0.08 0.18,-0.02 0.01,-0.2 -0.02,-0.4 -0.04,-0.6 -0.02,-0.2 -0.05,-0.4 -0.07,-0.6 -0.01,-0.1 -0.17,-0.11 -0.16,0 l 0.04,0.62 c 0,0.19 0,0.4 0.05,0.6 z" + id="path1840" /> + <path + class="st1" + d="m 256.91,341.31 c -0.02,-0.27 0,-0.55 0.04,-0.82 0.01,-0.09 -0.12,-0.12 -0.13,-0.04 -0.04,0.28 -0.06,0.57 -0.04,0.85 0.01,0.14 0.03,0.27 0.05,0.4 0.03,0.15 0.08,0.29 0.13,0.43 0.02,0.05 0.08,0.03 0.07,-0.02 -0.03,-0.14 -0.05,-0.28 -0.07,-0.41 -0.03,-0.12 -0.04,-0.25 -0.05,-0.39 z" + id="path1842" /> + <path + class="st1" + d="m 261.21,343.04 c 0,0.06 0.01,0.12 0.02,0.18 0.02,0.11 0.19,0.08 0.19,-0.03 0,-0.05 -0.01,-0.11 -0.02,-0.16 -0.01,-0.05 -0.01,-0.11 -0.02,-0.16 -0.01,-0.11 -0.03,-0.21 -0.04,-0.32 -0.01,-0.05 -0.04,-0.09 -0.09,-0.09 -0.04,0 -0.09,0.04 -0.09,0.09 0.01,0.11 0.02,0.22 0.02,0.33 0.02,0.05 0.03,0.11 0.03,0.16 z" + id="path1844" /> + <path + class="st1" + d="m 262.86,342.61 c 0.01,0.03 0.02,0.05 0.04,0.07 0.01,0.02 0.03,0.03 0.05,0.04 0.02,0.01 0.06,0 0.07,-0.02 0.02,-0.02 0.02,-0.04 0.03,-0.06 0,-0.03 0.01,-0.05 0,-0.07 -0.01,-0.03 -0.02,-0.06 -0.03,-0.08 -0.02,-0.05 -0.04,-0.11 -0.05,-0.16 -0.01,-0.04 -0.06,-0.07 -0.1,-0.06 -0.04,0.01 -0.07,0.06 -0.06,0.1 0.01,0.06 0.02,0.11 0.04,0.17 0,0.01 0,0.04 0.01,0.07 z" + id="path1846" /> + <path + class="st1" + d="m 264.47,340.97 c 0.03,-0.03 0.05,-0.06 0.08,-0.1 0.03,-0.03 0.06,-0.07 0.08,-0.1 0.01,-0.01 0.01,-0.03 -0.01,-0.04 -0.01,-0.01 -0.03,-0.01 -0.04,-0.01 -0.04,0.02 -0.07,0.04 -0.1,0.06 -0.03,0.02 -0.07,0.04 -0.1,0.06 -0.04,0.03 -0.05,0.08 -0.02,0.12 0.01,0.02 0.03,0.03 0.05,0.03 0.01,0 0.04,0 0.06,-0.02 z" + id="path1848" /> + <path + class="st1" + d="m 267.62,339.01 c 0.01,0.01 0.02,0.01 0.03,0.02 0.01,0 0.01,0 0.02,0.01 0.01,0 0.01,0.01 0.02,0.01 0,0 0.01,0 0.01,0 0.01,0 0.01,0 0.02,0.01 0.01,0 0.02,0.01 0.03,0.01 0.01,0 0.01,0 0.02,0.01 0,0 0.01,0 0.01,0 0,0 0,0 0,0 0,0 0.01,0 0.02,0 0.01,0 0.01,0 0.02,0 0.02,0 0.04,-0.01 0.06,-0.02 0.02,-0.01 0.03,-0.02 0.04,-0.04 0.01,-0.02 0.01,-0.04 0.01,-0.05 0,-0.02 -0.01,-0.04 -0.02,-0.06 0,0 0,0 0,0 -0.01,-0.01 -0.01,-0.02 -0.02,-0.02 0,0 0,0 0,0 0,0 0,0 -0.01,-0.01 0,0 -0.01,-0.01 -0.01,-0.01 -0.01,-0.01 -0.02,-0.01 -0.03,-0.02 0,0 -0.01,-0.01 -0.01,-0.01 0,0 0,0 -0.01,-0.01 0,0 0,0 0,0 -0.01,-0.01 -0.02,-0.02 -0.03,-0.02 -0.01,-0.01 -0.02,-0.01 -0.03,-0.02 -0.01,-0.01 -0.03,-0.01 -0.05,-0.01 -0.02,0 -0.03,0 -0.05,0 -0.02,0 -0.03,0.01 -0.04,0.02 -0.01,0.01 -0.02,0.02 -0.03,0.04 0,0.01 -0.01,0.02 -0.01,0.03 -0.01,0.02 -0.01,0.04 0,0.07 0,0.01 0.01,0.02 0.01,0.03 0,0.01 0.01,0.03 0.03,0.04 z" + id="path1850" /> + <path + class="st1" + d="m 274.1,335.64 c 0.06,-0.02 0.04,-0.11 -0.03,-0.1 -0.06,0.02 -0.03,0.12 0.03,0.1 z" + id="path1852" /> + <path + class="st1" + d="m 277.73,333.67 c -0.04,-0.16 -0.09,-0.32 -0.13,-0.48 -0.04,-0.14 -0.25,-0.08 -0.22,0.06 0.04,0.16 0.09,0.32 0.13,0.48 0.02,0.08 0.04,0.16 0.07,0.24 0.02,0.08 0.04,0.16 0.09,0.24 0.05,0.08 0.17,0.04 0.17,-0.05 0,-0.09 -0.02,-0.17 -0.04,-0.25 -0.03,-0.08 -0.05,-0.16 -0.07,-0.24 z" + id="path1854" /> + <path + class="st1" + d="m 279.17,333.21 c -0.13,0.03 -0.07,0.23 0.05,0.2 0.14,-0.03 0.08,-0.23 -0.05,-0.2 z" + id="path1856" /> + <path + class="st1" + d="m 280.53,331.38 c -0.03,-0.06 -0.07,-0.11 -0.1,-0.17 -0.07,-0.11 -0.14,-0.23 -0.21,-0.34 -0.03,-0.05 -0.1,-0.07 -0.16,-0.04 -0.05,0.03 -0.07,0.1 -0.04,0.16 l 0.21,0.34 c 0.03,0.06 0.07,0.11 0.1,0.17 0.02,0.03 0.03,0.06 0.05,0.09 0.02,0.03 0.05,0.06 0.08,0.09 0.06,0.07 0.19,0 0.16,-0.09 -0.01,-0.04 -0.02,-0.08 -0.04,-0.11 -0.01,-0.04 -0.03,-0.07 -0.05,-0.1 z" + id="path1858" /> + <path + class="st1" + d="m 281.15,332.64 c 0.1,-0.03 0.06,-0.17 -0.04,-0.15 -0.09,0.03 -0.05,0.18 0.04,0.15 z" + id="path1860" /> + <path + class="st1" + d="m 281.96,330.26 c -0.04,-0.05 -0.13,-0.04 -0.17,0 -0.05,0.05 -0.04,0.12 0,0.17 0.11,0.14 0.22,0.28 0.34,0.41 0.11,0.14 0.23,0.27 0.36,0.39 0.07,0.06 0.18,-0.02 0.13,-0.1 -0.09,-0.16 -0.2,-0.31 -0.32,-0.45 z" + id="path1862" /> + <path + class="st1" + d="m 285.12,329.7 c 0,0 0,0 0,0 0,0 -0.01,0.01 -0.01,0.01 0,-0.01 0,-0.01 0.01,-0.01 z" + id="path1864" /> + <path + class="st1" + d="m 293.02,326.9 c -0.22,-0.33 -0.45,-0.66 -0.67,-1 -0.08,-0.12 -0.28,-0.01 -0.2,0.12 l 0.67,1.02 c 0.22,0.33 0.42,0.69 0.68,0.99 0.08,0.09 0.21,-0.03 0.16,-0.12 -0.17,-0.36 -0.42,-0.68 -0.64,-1.01 z" + id="path1866" /> + <path + class="st1" + d="m 294.63,325.66 c -0.05,-0.04 -0.09,-0.09 -0.14,-0.13 -0.1,-0.09 -0.2,-0.17 -0.3,-0.26 -0.04,-0.03 -0.09,-0.04 -0.13,0 -0.03,0.03 -0.04,0.1 0,0.13 0.1,0.09 0.2,0.17 0.3,0.26 0.05,0.04 0.1,0.08 0.15,0.12 0.06,0.04 0.11,0.09 0.17,0.12 0.05,0.03 0.13,-0.03 0.09,-0.09 -0.02,-0.03 -0.04,-0.06 -0.07,-0.08 -0.02,-0.02 -0.05,-0.05 -0.07,-0.07 z" + id="path1868" /> + <path + class="st1" + d="m 295.99,327.71 c 0.08,-0.02 0.04,-0.14 -0.03,-0.12 -0.08,0.02 -0.05,0.14 0.03,0.12 z" + id="path1870" /> + <path + class="st1" + d="m 298.66,324.2 c -0.17,-0.11 -0.34,-0.22 -0.52,-0.32 -0.18,-0.1 -0.36,-0.2 -0.53,-0.3 -0.06,-0.04 -0.12,0.06 -0.06,0.1 0.18,0.1 0.35,0.21 0.53,0.31 0.18,0.1 0.36,0.19 0.54,0.29 0.05,0 0.08,-0.06 0.04,-0.08 z" + id="path1872" /> + <path + class="st1" + d="m 300.87,324.92 c 0.22,0.33 0.4,0.68 0.55,1.04 0.07,0.18 0.13,0.37 0.18,0.56 0.05,0.17 0.05,0.36 0.17,0.5 0.04,0.05 0.11,0.02 0.13,-0.04 0.06,-0.16 -0.02,-0.36 -0.07,-0.52 -0.06,-0.2 -0.13,-0.41 -0.21,-0.6 -0.16,-0.39 -0.37,-0.76 -0.61,-1.1 -0.48,-0.68 -1.1,-1.23 -1.82,-1.63 -0.07,-0.04 -0.14,0.07 -0.07,0.11 0.7,0.42 1.3,1 1.75,1.68 z" + id="path1874" /> + <path + class="st1" + d="m 301.04,323.01 c 0.1,0.05 0.21,0.09 0.31,0.14 0.06,0.02 0.11,0.05 0.17,0.07 0.03,0.01 0.06,0.03 0.1,0.03 0.03,0 0.06,0.01 0.09,0.01 0.04,0.01 0.08,0 0.1,-0.04 0.02,-0.03 0.02,-0.08 -0.01,-0.11 -0.05,-0.03 -0.09,-0.08 -0.14,-0.11 -0.05,-0.03 -0.11,-0.05 -0.17,-0.07 -0.11,-0.05 -0.22,-0.09 -0.32,-0.14 -0.22,-0.09 -0.43,-0.19 -0.65,-0.28 -0.06,-0.03 -0.14,-0.02 -0.18,0.05 -0.03,0.06 -0.02,0.15 0.05,0.18 0.21,0.08 0.43,0.17 0.65,0.27 z" + id="path1876" /> + <path + class="st1" + d="m 302.66,324.56 c 0.09,-0.02 0.05,-0.16 -0.04,-0.14 -0.08,0.03 -0.04,0.17 0.04,0.14 z" + id="path1878" /> + <path + class="st1" + d="m 308.16,322.47 c -0.22,-0.36 -0.49,-0.69 -0.8,-0.97 -0.61,-0.57 -1.39,-0.91 -2.23,-1 -0.17,-0.02 -0.21,0.27 -0.04,0.3 0.76,0.12 1.46,0.47 2.04,0.96 0.29,0.24 0.53,0.53 0.73,0.84 0.1,0.16 0.19,0.34 0.26,0.51 0.07,0.18 0.11,0.37 0.21,0.54 0.07,0.12 0.26,0.07 0.26,-0.07 0,-0.21 -0.09,-0.41 -0.17,-0.6 -0.06,-0.17 -0.15,-0.34 -0.26,-0.51 z" + id="path1880" /> + <path + class="st1" + d="m 309.72,321.32 c -0.04,-0.07 -0.1,-0.14 -0.15,-0.2 0.01,0.02 0.02,0.03 0.03,0.05 -0.03,-0.08 -0.09,-0.14 -0.15,-0.2 -0.05,-0.06 -0.11,-0.11 -0.16,-0.17 -0.11,-0.11 -0.22,-0.22 -0.32,-0.33 -0.11,-0.11 -0.28,0.06 -0.17,0.17 0.11,0.11 0.21,0.22 0.32,0.33 0.05,0.06 0.1,0.11 0.16,0.17 0.06,0.06 0.12,0.12 0.19,0.15 -0.02,-0.01 -0.03,-0.02 -0.05,-0.03 0.06,0.05 0.12,0.12 0.2,0.15 0.07,0.05 0.13,-0.02 0.1,-0.09 z" + id="path1882" /> + <path + class="st1" + d="m 310.13,322.64 c 0.04,0.04 0.09,0.04 0.14,0.02 0.05,-0.03 0.06,-0.08 0.05,-0.13 -0.01,-0.09 -0.08,-0.18 -0.12,-0.27 -0.04,-0.08 -0.08,-0.17 -0.13,-0.25 -0.09,-0.17 -0.18,-0.33 -0.27,-0.5 -0.03,-0.05 -0.1,-0.06 -0.14,-0.04 -0.05,0.03 -0.06,0.09 -0.04,0.14 0.08,0.17 0.16,0.34 0.24,0.51 0.04,0.09 0.08,0.17 0.12,0.25 0.05,0.1 0.08,0.2 0.15,0.27 z" + id="path1884" /> + <path + class="st1" + d="m 311.78,321.28 c 0.02,0.03 0.04,0.07 0.05,0.1 0.02,0.04 0.06,0.08 0.1,0.11 0.04,0.04 0.11,0.05 0.17,0.02 0.05,-0.04 0.07,-0.09 0.06,-0.16 0,-0.02 -0.01,-0.04 -0.01,-0.06 -0.01,-0.03 -0.02,-0.05 -0.03,-0.08 -0.02,-0.03 -0.04,-0.07 -0.06,-0.1 -0.04,-0.07 -0.07,-0.13 -0.11,-0.2 -0.04,-0.07 -0.15,-0.1 -0.22,-0.06 -0.08,0.05 -0.1,0.14 -0.06,0.22 0.04,0.08 0.07,0.15 0.11,0.21 z" + id="path1886" /> + <path + class="st1" + d="m 299.42,325.2 c -0.15,-0.18 -0.33,-0.34 -0.53,-0.47 -0.07,-0.04 -0.17,-0.01 -0.21,0.06 -0.04,0.07 -0.01,0.16 0.06,0.21 0.17,0.12 0.33,0.26 0.46,0.42 0.06,0.08 0.12,0.16 0.17,0.24 0.06,0.09 0.12,0.18 0.17,0.28 0.07,0.13 0.28,0.04 0.24,-0.1 -0.04,-0.11 -0.08,-0.23 -0.14,-0.34 -0.07,-0.11 -0.14,-0.21 -0.22,-0.3 z" + id="path1888" /> + <path + class="st1" + d="m 300.36,327.16 c 0,-0.02 0,-0.03 0,-0.05 0,-0.02 0,-0.04 -0.01,-0.06 0,-0.01 -0.01,-0.02 -0.01,-0.03 -0.01,-0.03 -0.02,-0.07 -0.03,-0.1 -0.01,-0.04 -0.03,-0.07 -0.07,-0.09 -0.03,-0.02 -0.07,-0.02 -0.11,-0.01 -0.04,0.01 -0.07,0.03 -0.09,0.07 -0.02,0.03 -0.02,0.07 -0.01,0.11 0.01,0.03 0.02,0.07 0.03,0.1 0,0.01 0,0.02 0.01,0.02 0,0.01 0.01,0.03 0.01,0.04 0.01,0.02 0.02,0.04 0.03,0.06 0.01,0.01 0.01,0.02 0.02,0.03 0.01,0.01 0.03,0.02 0.04,0.03 0.03,0.01 0.06,0.02 0.09,0.01 0.02,-0.01 0.04,-0.02 0.06,-0.04 0.02,-0.02 0.04,-0.06 0.04,-0.09 z" + id="path1890" /> + <path + class="st1" + d="m 295.56,327.32 c -0.12,-0.14 -0.23,-0.29 -0.35,-0.43 -0.04,-0.05 -0.14,-0.04 -0.18,0 -0.05,0.05 -0.04,0.13 0,0.18 0.11,0.14 0.23,0.28 0.34,0.42 0.06,0.07 0.11,0.14 0.17,0.21 0.06,0.07 0.12,0.15 0.2,0.19 0.07,0.04 0.16,-0.02 0.14,-0.11 -0.02,-0.09 -0.09,-0.17 -0.14,-0.24 -0.05,-0.07 -0.12,-0.15 -0.18,-0.22 z" + id="path1892" /> + <path + class="st1" + d="m 296.31,328.59 c -0.02,-0.01 -0.06,-0.02 -0.09,-0.01 -0.03,0.01 -0.06,0.03 -0.07,0.05 -0.01,0.03 -0.02,0.06 -0.01,0.09 0.04,0.11 0.08,0.22 0.13,0.32 0.03,0.06 0.14,0.03 0.13,-0.04 -0.01,-0.12 -0.03,-0.23 -0.05,-0.34 0.01,-0.02 -0.01,-0.05 -0.04,-0.07 z" + id="path1894" /> + <path + class="st1" + d="m 291.76,329.22 c -0.02,-0.04 -0.05,-0.07 -0.07,-0.1 -0.04,-0.05 -0.09,-0.11 -0.13,-0.16 -0.09,-0.11 -0.17,-0.22 -0.26,-0.33 -0.04,-0.05 -0.14,-0.04 -0.18,0 -0.05,0.06 -0.04,0.12 0,0.18 l 0.26,0.32 c 0.04,0.05 0.08,0.11 0.13,0.16 0.02,0.03 0.04,0.06 0.07,0.08 0.03,0.02 0.05,0.05 0.08,0.07 0.09,0.08 0.22,-0.02 0.17,-0.13 -0.03,-0.03 -0.05,-0.06 -0.07,-0.09 z" + id="path1896" /> + <path + class="st1" + d="m 290.28,329.61 c -0.05,-0.1 -0.09,-0.2 -0.14,-0.31 -0.03,-0.06 -0.12,-0.08 -0.17,-0.04 -0.06,0.04 -0.07,0.11 -0.04,0.17 0.05,0.1 0.09,0.2 0.14,0.3 0.02,0.05 0.04,0.1 0.07,0.15 0.03,0.05 0.07,0.09 0.1,0.14 0.03,0.03 0.07,0.05 0.11,0.03 0.04,-0.02 0.06,-0.06 0.05,-0.1 -0.01,-0.05 -0.02,-0.11 -0.04,-0.16 -0.02,-0.07 -0.05,-0.12 -0.08,-0.18 z" + id="path1898" /> + <path + class="st1" + d="m 287.74,330.78 c -0.01,-0.13 -0.03,-0.26 -0.05,-0.4 -0.01,-0.05 -0.01,-0.08 -0.05,-0.12 -0.03,-0.03 -0.08,-0.05 -0.12,-0.05 -0.08,0 -0.18,0.07 -0.17,0.17 0.02,0.14 0.03,0.29 0.05,0.43 0.01,0.06 0.02,0.13 0.03,0.19 0.01,0.03 0.01,0.07 0.02,0.1 0.01,0.05 0.04,0.09 0.07,0.13 0.05,0.06 0.17,0.04 0.2,-0.03 0.02,-0.05 0.04,-0.09 0.03,-0.14 0,-0.03 -0.01,-0.06 -0.01,-0.09 0.01,-0.05 0.01,-0.12 0,-0.19 z" + id="path1900" /> + <path + class="st1" + d="m 285.56,331.48 c -0.14,0.04 -0.08,0.25 0.06,0.21 0.13,-0.04 0.07,-0.25 -0.06,-0.21 z" + id="path1902" /> + <path + class="st1" + d="m 283.97,332.25 c -0.13,0.04 -0.08,0.24 0.06,0.21 0.13,-0.04 0.07,-0.25 -0.06,-0.21 z" + id="path1904" /> + <path + class="st1" + d="m 281.49,332.66 c -0.17,0.05 -0.1,0.31 0.07,0.27 0.18,-0.05 0.11,-0.32 -0.07,-0.27 z" + id="path1906" /> + <path + class="st1" + d="m 313.07,321.53 c 0.1,-0.03 0.06,-0.18 -0.04,-0.15 -0.1,0.02 -0.06,0.17 0.04,0.15 z" + id="path1908" /> + <path + class="st1" + d="m 315,319.67 c -0.01,-0.03 -0.06,-0.04 -0.09,-0.02 -0.03,0.02 -0.05,0.06 -0.02,0.09 0.04,0.06 0.09,0.13 0.13,0.19 0.04,0.06 0.08,0.13 0.13,0.18 0.02,0.02 0.05,0 0.04,-0.02 -0.02,-0.07 -0.06,-0.14 -0.09,-0.21 -0.03,-0.08 -0.06,-0.14 -0.1,-0.21 z" + id="path1910" /> + <path + class="st1" + d="m 316.89,318.4 c -0.03,-0.01 -0.07,0 -0.09,0.01 -0.05,0.03 -0.08,0.11 -0.04,0.16 0.08,0.12 0.17,0.25 0.26,0.37 0.02,0.03 0.05,0.04 0.09,0.03 0.03,-0.01 0.05,-0.05 0.04,-0.08 -0.05,-0.15 -0.12,-0.29 -0.19,-0.43 -0.01,-0.03 -0.04,-0.06 -0.07,-0.06 z" + id="path1912" /> + <path + class="st1" + d="m 318.92,318.01 c 0.03,0.02 0.07,0.01 0.1,-0.01 0.02,-0.02 0.03,-0.07 0.01,-0.1 -0.02,-0.03 -0.05,-0.06 -0.07,-0.09 -0.02,-0.02 -0.05,-0.04 -0.07,-0.07 -0.05,-0.05 -0.09,-0.09 -0.14,-0.14 -0.04,-0.04 -0.12,-0.04 -0.16,0 -0.02,0.02 -0.03,0.05 -0.03,0.08 0,0.03 0.01,0.06 0.03,0.08 0.05,0.04 0.1,0.08 0.16,0.12 0.03,0.02 0.05,0.04 0.08,0.06 0.02,0.01 0.04,0.03 0.06,0.04 z" + id="path1914" /> + <path + class="st1" + d="m 319.56,318.53 c -0.05,0.01 -0.03,0.09 0.02,0.07 0.05,-0.01 0.03,-0.09 -0.02,-0.07 z" + id="path1916" /> + <path + class="st1" + d="m 321.29,317.39 c -0.08,-0.13 -0.28,-0.01 -0.21,0.12 0.14,0.25 0.28,0.5 0.42,0.75 0.13,0.24 0.26,0.52 0.47,0.71 0.06,0.06 0.16,0 0.14,-0.08 -0.06,-0.27 -0.23,-0.52 -0.38,-0.76 -0.14,-0.25 -0.29,-0.5 -0.44,-0.74 z" + id="path1918" /> + <path + class="st1" + d="m 322.42,315.53 c -0.51,-0.63 -1.19,-1.1 -1.94,-1.41 -0.15,-0.06 -0.26,0.19 -0.11,0.26 0.69,0.32 1.3,0.78 1.8,1.35 0.25,0.28 0.47,0.59 0.65,0.92 0.18,0.33 0.29,0.69 0.47,1.02 0.03,0.05 0.11,0.03 0.11,-0.03 0,-0.39 -0.16,-0.76 -0.33,-1.11 -0.17,-0.35 -0.39,-0.68 -0.65,-1 z" + id="path1920" /> + <path + class="st1" + d="m 323.99,318.48 c 0.02,0 0.03,0 0.05,0 0.01,0 0.02,-0.01 0.03,-0.01 0.01,-0.01 0.02,-0.01 0.02,-0.02 0.01,-0.01 0.02,-0.02 0.02,-0.04 0.01,-0.01 0.01,-0.03 0.01,-0.04 0,-0.01 0,-0.03 -0.01,-0.04 0,0 0,-0.01 0,-0.01 0,-0.01 0,-0.02 0,-0.02 0,-0.02 0,-0.03 -0.01,-0.05 0,-0.02 -0.01,-0.03 -0.02,-0.05 -0.01,-0.01 -0.02,-0.03 -0.04,-0.03 -0.01,-0.01 -0.03,-0.01 -0.05,-0.02 -0.02,0 -0.03,0 -0.05,0 -0.01,0 -0.02,0.01 -0.03,0.01 -0.02,0.01 -0.04,0.03 -0.05,0.05 0,0.01 -0.01,0.02 -0.01,0.03 -0.01,0.02 -0.01,0.05 0,0.07 0.01,0.02 0.01,0.03 0.02,0.05 0,0.01 0.01,0.02 0.01,0.02 0,0 0,0.01 0,0.01 0.01,0.01 0.01,0.03 0.02,0.04 0.01,0.01 0.01,0.02 0.02,0.02 0.01,0.01 0.02,0.02 0.04,0.02 0.01,0 0.02,0.01 0.03,0.01 z" + id="path1922" /> + <path + class="st1" + d="m 324.9,315.64 c -0.01,-0.03 -0.05,-0.03 -0.08,-0.02 -0.03,0.02 -0.03,0.05 -0.02,0.08 0.05,0.1 0.09,0.2 0.14,0.3 0.05,0.1 0.1,0.19 0.15,0.29 0.02,0.03 0.08,0.01 0.06,-0.03 -0.04,-0.1 -0.08,-0.21 -0.12,-0.31 -0.03,-0.1 -0.08,-0.2 -0.13,-0.31 z" + id="path1924" /> + <path + class="st1" + d="m 325.56,317.02 c -0.05,0.01 -0.03,0.08 0.02,0.07 0.04,-0.02 0.02,-0.09 -0.02,-0.07 z" + id="path1926" /> + <path + class="st1" + d="m 327.4,315.96 c -0.17,0.05 -0.1,0.31 0.07,0.26 0.18,-0.04 0.1,-0.3 -0.07,-0.26 z" + id="path1928" /> + <path + class="st1" + d="m 328.72,314.01 c -0.02,-0.05 -0.05,-0.11 -0.07,-0.16 -0.05,-0.1 -0.1,-0.21 -0.15,-0.31 -0.02,-0.04 -0.07,-0.05 -0.11,-0.03 -0.03,0.02 -0.07,0.06 -0.05,0.1 0.04,0.11 0.09,0.21 0.13,0.32 0.02,0.05 0.04,0.1 0.06,0.15 0.01,0.03 0.02,0.05 0.03,0.08 0.02,0.04 0.03,0.06 0.06,0.09 0.05,0.05 0.15,0.01 0.14,-0.06 0,-0.04 -0.01,-0.07 -0.02,-0.11 0,-0.02 -0.01,-0.05 -0.02,-0.07 z" + id="path1930" /> + <path + class="st1" + d="m 331.06,313.68 0.09,0.08 c 0.02,0.02 0.04,0.02 0.06,0 0.02,-0.02 0.01,-0.04 0,-0.06 -0.03,-0.03 -0.05,-0.06 -0.08,-0.1 -0.03,-0.03 -0.06,-0.06 -0.08,-0.09 -0.02,-0.02 -0.05,-0.02 -0.07,0 -0.02,0.02 -0.02,0.05 0,0.07 0.03,0.04 0.05,0.08 0.08,0.1 z" + id="path1932" /> + <path + class="st1" + d="m 332.45,312.46 c -0.05,-0.07 -0.1,-0.14 -0.15,-0.22 -0.1,-0.15 -0.2,-0.29 -0.3,-0.44 -0.03,-0.05 -0.09,-0.07 -0.14,-0.04 -0.05,0.03 -0.07,0.09 -0.04,0.14 l 0.29,0.45 c 0.05,0.07 0.09,0.15 0.14,0.22 0.01,0.02 0.02,0.03 0.03,0.05 0.02,0.02 0.04,0.04 0.06,0.06 0.03,0.04 0.05,0.07 0.1,0.09 0.05,0.02 0.12,0 0.12,-0.07 0,-0.05 -0.02,-0.09 -0.05,-0.13 -0.02,-0.04 -0.04,-0.08 -0.06,-0.11 z" + id="path1934" /> + <path + class="st1" + d="m 334.33,312.31 c -0.08,-0.18 -0.2,-0.33 -0.31,-0.49 -0.12,-0.15 -0.24,-0.31 -0.35,-0.46 -0.03,-0.04 -0.08,-0.06 -0.12,-0.03 -0.04,0.02 -0.06,0.08 -0.03,0.12 0.12,0.16 0.24,0.32 0.35,0.48 0.12,0.16 0.24,0.31 0.39,0.45 0.03,0.03 0.09,-0.02 0.07,-0.07 z" + id="path1936" /> + <path + class="st1" + d="m 335.16,313.54 c 0.01,0.02 0.01,0.04 0.02,0.07 0,0.02 0.01,0.03 0.02,0.05 0.01,0.02 0.03,0.03 0.04,0.04 0.06,0.05 0.15,0.03 0.17,-0.05 0.01,-0.04 0.01,-0.07 0,-0.11 -0.01,-0.02 -0.01,-0.04 -0.02,-0.06 l -0.04,-0.14 -0.07,-0.27 c -0.02,-0.06 -0.09,-0.11 -0.15,-0.09 -0.06,0.02 -0.1,0.08 -0.09,0.15 0.02,0.09 0.05,0.18 0.07,0.27 0.02,0.05 0.04,0.1 0.05,0.14 z" + id="path1938" /> + <path + class="st1" + d="m 334.91,309.88 c -0.47,-0.56 -1.09,-0.99 -1.69,-1.39 -0.11,-0.07 -0.23,0.09 -0.14,0.18 0.54,0.49 1.11,0.98 1.76,1.31 0.06,0.03 0.12,-0.05 0.07,-0.1 z" + id="path1940" /> + <path + class="st1" + d="m 335.89,310.86 c -0.04,-0.03 -0.08,-0.06 -0.11,-0.09 -0.07,-0.06 -0.15,-0.11 -0.22,-0.17 -0.03,-0.02 -0.07,-0.03 -0.1,0 -0.02,0.02 -0.03,0.07 0,0.1 0.07,0.06 0.15,0.12 0.22,0.18 0.04,0.03 0.07,0.06 0.11,0.09 0.02,0.02 0.04,0.03 0.07,0.05 0.03,0.02 0.05,0.03 0.08,0.03 0.04,0 0.07,-0.04 0.06,-0.07 -0.01,-0.03 -0.02,-0.05 -0.05,-0.07 -0.02,-0.02 -0.04,-0.04 -0.06,-0.05 z" + id="path1942" /> + <path + class="st1" + d="m 336.95,312.59 c 0.01,0.03 0.02,0.05 0.04,0.06 0.01,0.01 0.04,0.02 0.06,0.02 0.02,0 0.04,-0.01 0.06,-0.02 0.03,-0.03 0.04,-0.07 0.06,-0.1 0.01,-0.02 0.01,-0.04 0.02,-0.07 0,-0.02 0,-0.03 0,-0.05 0,-0.06 0,-0.12 0.01,-0.18 0,-0.06 -0.06,-0.12 -0.12,-0.12 -0.07,0 -0.12,0.05 -0.12,0.12 0,0.06 -0.01,0.12 -0.01,0.18 0,0.02 0,0.03 0,0.05 0,0.02 0,0.05 0.01,0.07 -0.01,0.01 -0.01,0.02 -0.01,0.04 z" + id="path1944" /> + <path + class="st1" + d="m 338.36,310.75 c -0.17,-0.21 -0.33,-0.42 -0.49,-0.63 -0.02,-0.03 -0.08,0 -0.05,0.03 0.15,0.22 0.31,0.43 0.45,0.65 0.07,0.11 0.15,0.21 0.22,0.33 0.06,0.1 0.11,0.25 0.23,0.29 0.04,0.01 0.08,-0.02 0.08,-0.06 0,-0.12 -0.12,-0.21 -0.2,-0.3 -0.08,-0.1 -0.16,-0.21 -0.24,-0.31 z" + id="path1946" /> + <path + class="st1" + d="m 340.07,310.39 c -0.04,-0.04 -0.09,-0.08 -0.13,-0.12 -0.08,-0.08 -0.16,-0.17 -0.22,-0.27 -0.13,-0.19 -0.23,-0.41 -0.3,-0.63 -0.04,-0.12 -0.23,-0.07 -0.19,0.05 0.07,0.25 0.18,0.48 0.32,0.69 0.07,0.1 0.15,0.2 0.24,0.3 0.04,0.05 0.09,0.09 0.14,0.13 0.05,0.05 0.1,0.1 0.18,0.08 0.04,-0.01 0.06,-0.04 0.06,-0.08 0,-0.07 -0.05,-0.11 -0.1,-0.15 z" + id="path1948" /> + <path + class="st1" + d="m 341.4,309.47 c -0.05,-0.16 -0.09,-0.33 -0.14,-0.49 -0.04,-0.16 -0.29,-0.09 -0.25,0.07 0.04,0.16 0.09,0.33 0.13,0.49 0.02,0.08 0.04,0.16 0.06,0.25 0.02,0.09 0.05,0.18 0.11,0.25 0.06,0.05 0.15,0.03 0.17,-0.05 0.02,-0.09 0,-0.18 -0.03,-0.27 -0.01,-0.09 -0.03,-0.17 -0.05,-0.25 z" + id="path1950" /> + <path + class="st1" + d="m 346.11,311.69 c 0.04,-0.01 0.06,-0.05 0.05,-0.09 0,-0.01 0,-0.01 -0.01,-0.02 -0.01,-0.02 -0.02,-0.04 -0.04,-0.05 -0.01,-0.01 -0.02,-0.01 -0.04,-0.02 L 346,311.47 c -0.05,-0.02 -0.1,-0.05 -0.14,-0.07 -0.02,-0.01 -0.03,-0.01 -0.05,-0.01 -0.02,0 -0.03,0.02 -0.04,0.03 -0.02,0.04 -0.01,0.07 0.03,0.09 0.04,0.03 0.09,0.06 0.13,0.09 l 0.06,0.04 0.03,0.02 c 0.01,0.01 0.03,0.02 0.05,0.02 0.02,0.02 0.03,0.02 0.04,0.01 z" + id="path1952" /> + <path + class="st1" + d="m 348.72,310.07 c -0.05,0.01 -0.03,0.09 0.02,0.07 0.05,-0.01 0.03,-0.09 -0.02,-0.07 z" + id="path1954" /> + <path + class="st1" + d="m 350.17,309.22 c 0,0.01 0.01,0.03 0.02,0.04 0.01,0.01 0.02,0.02 0.02,0.03 0.01,0.01 0.01,0.01 0.02,0.02 0.05,0.05 0.15,0.03 0.16,-0.04 0,-0.01 0,-0.02 0.01,-0.03 0,-0.01 0.01,-0.02 0.01,-0.04 0,-0.01 0,-0.03 -0.01,-0.04 0,-0.02 -0.01,-0.04 -0.02,-0.06 -0.01,-0.04 -0.02,-0.07 -0.03,-0.11 -0.01,-0.03 -0.03,-0.05 -0.05,-0.07 -0.02,-0.01 -0.06,-0.02 -0.09,-0.01 -0.03,0.01 -0.06,0.03 -0.07,0.05 -0.01,0.03 -0.02,0.06 -0.01,0.09 0.01,0.04 0.02,0.07 0.03,0.11 0,0.02 0,0.04 0.01,0.06 z" + id="path1956" /> + <path + class="st1" + d="m 349.93,305.16 c -0.21,-0.38 -0.51,-0.72 -0.79,-1.05 -0.29,-0.34 -0.57,-0.68 -0.86,-1.02 -0.11,-0.13 -0.29,0.06 -0.18,0.19 0.28,0.34 0.55,0.68 0.83,1.02 0.27,0.33 0.54,0.69 0.88,0.96 0.07,0.05 0.16,-0.02 0.12,-0.1 z" + id="path1958" /> + <path + class="st1" + d="m 350.89,307.61 c 0.01,0.04 0.03,0.08 0.04,0.12 0.02,0.05 0.03,0.08 0.06,0.12 0.04,0.05 0.13,0.01 0.13,-0.05 0,-0.09 -0.05,-0.16 -0.08,-0.24 -0.03,-0.08 -0.07,-0.15 -0.1,-0.23 -0.06,-0.15 -0.13,-0.31 -0.19,-0.46 -0.03,-0.07 -0.15,-0.04 -0.12,0.03 l 0.18,0.48 c 0.03,0.07 0.05,0.15 0.08,0.23 z" + id="path1960" /> + <path + class="st1" + d="m 348.81,303.14 c 0.11,0.15 0.22,0.31 0.35,0.45 0.13,0.14 0.25,0.29 0.39,0.41 0.08,0.07 0.19,-0.02 0.14,-0.11 -0.08,-0.17 -0.2,-0.32 -0.3,-0.48 -0.1,-0.16 -0.23,-0.3 -0.35,-0.45 -0.24,-0.3 -0.47,-0.59 -0.71,-0.89 -0.09,-0.12 -0.3,0.04 -0.21,0.16 0.23,0.3 0.46,0.61 0.69,0.91 z" + id="path1962" /> + <path + class="st1" + d="m 273.9,318.31 c -0.05,0.01 -0.03,0.1 0.02,0.08 0.06,-0.02 0.03,-0.1 -0.02,-0.08 z" + id="path1964" /> + <path + class="st1" + d="m 275.17,315.94 c -0.05,0.01 -0.03,0.09 0.02,0.07 0.05,0 0.03,-0.08 -0.02,-0.07 z" + id="path1966" /> + <path + class="st1" + d="m 282.46,313.85 c -0.06,0.02 -0.04,0.11 0.03,0.09 0.06,-0.02 0.04,-0.11 -0.03,-0.09 z" + id="path1968" /> + <path + class="st1" + d="m 284.1,313.26 c -0.1,0.03 -0.06,0.19 0.04,0.16 0.11,-0.03 0.07,-0.19 -0.04,-0.16 z" + id="path1970" /> + <path + class="st1" + d="m 285.98,312.71 c 0.12,-0.03 0.07,-0.23 -0.05,-0.19 -0.13,0.03 -0.08,0.23 0.05,0.19 z" + id="path1972" /> + <path + class="st1" + d="m 290.58,309.82 c 0.17,-0.05 0.1,-0.31 -0.07,-0.26 -0.17,0.04 -0.1,0.3 0.07,0.26 z" + id="path1974" /> + <path + class="st1" + d="m 300.16,305.75 c 0.03,0.02 0.05,0.04 0.08,0.06 0.02,0.01 0.04,0.03 0.06,0.04 0.02,0.01 0.04,0.02 0.06,0.02 0.03,0.01 0.07,0 0.09,-0.02 0.02,-0.02 0.03,-0.06 0.02,-0.09 -0.01,-0.03 -0.02,-0.06 -0.04,-0.08 -0.01,-0.01 -0.02,-0.02 -0.04,-0.04 -0.02,-0.02 -0.05,-0.05 -0.07,-0.07 -0.05,-0.05 -0.1,-0.09 -0.15,-0.13 -0.02,-0.02 -0.05,-0.03 -0.08,-0.03 -0.03,0 -0.06,0.01 -0.08,0.04 -0.04,0.05 -0.05,0.12 0,0.17 0.05,0.04 0.1,0.08 0.15,0.13 z" + id="path1976" /> + <path + class="st1" + d="m 304.46,303.39 c -0.06,0.02 -0.04,0.12 0.03,0.1 0.06,-0.01 0.03,-0.11 -0.03,-0.1 z" + id="path1978" /> + <path + class="st1" + d="m 311.14,301.92 c -0.06,0.02 -0.04,0.12 0.03,0.1 0.06,-0.01 0.03,-0.11 -0.03,-0.1 z" + id="path1980" /> + <path + class="st1" + d="m 312.86,300.77 c 0.01,0.01 0.02,0.02 0.03,0.03 0.02,0.01 0.05,0.02 0.08,0.01 L 313,300.8 c 0.02,-0.01 0.03,-0.02 0.04,-0.04 0.01,-0.02 0.02,-0.04 0.03,-0.06 0,-0.01 0.01,-0.02 0.01,-0.03 0.01,-0.02 0.02,-0.03 0.02,-0.05 0,-0.01 0,-0.02 0,-0.02 0,-0.01 0,-0.02 -0.01,-0.03 0,-0.01 -0.01,-0.01 -0.01,-0.02 -0.01,-0.01 -0.01,-0.02 -0.03,-0.02 -0.01,0 -0.01,-0.01 -0.02,-0.01 -0.01,0 -0.02,0 -0.02,0 -0.01,0 -0.02,0 -0.03,0.01 -0.01,0 -0.02,0.01 -0.03,0.02 -0.01,0.01 -0.02,0.03 -0.03,0.04 l -0.02,0.03 c -0.01,0.02 -0.03,0.04 -0.04,0.06 -0.01,0.01 -0.01,0.02 -0.01,0.04 0,0.01 0,0.03 0,0.04 -0.01,-0.02 0,0 0.01,0.01 z" + id="path1982" /> + <path + class="st1" + d="m 315.06,300.11 c 0,0.01 0,0.03 0.01,0.04 0.01,0.01 0.02,0.02 0.03,0.03 0.02,0.01 0.04,0.01 0.06,0.01 0.02,-0.01 0.04,-0.02 0.05,-0.04 0.01,-0.01 0.01,-0.02 0.01,-0.04 0,-0.01 0,-0.03 -0.01,-0.04 -0.01,-0.02 -0.02,-0.03 -0.02,-0.05 -0.01,-0.02 -0.02,-0.03 -0.03,-0.05 -0.01,-0.02 -0.04,-0.03 -0.06,-0.02 -0.02,0.01 -0.04,0.03 -0.04,0.05 0,0.02 0,0.03 0,0.05 0,0.02 0,0.04 0,0.06 z" + id="path1984" /> + <path + class="st1" + d="m 317.23,299.13 c 0.19,-0.05 0.11,-0.34 -0.08,-0.29 -0.18,0.05 -0.11,0.35 0.08,0.29 z" + id="path1986" /> + <path + class="st1" + d="m 319.5,299.07 c 0.01,0.01 0.01,0.01 0.02,0.02 0.02,0.01 0.04,0.01 0.05,0.01 0.02,-0.01 0.03,-0.02 0.04,-0.03 0,-0.01 0,-0.01 0.01,-0.02 0,-0.01 0,-0.03 0,-0.04 -0.01,-0.04 -0.01,-0.07 -0.01,-0.11 0,-0.01 -0.01,-0.02 -0.02,-0.03 -0.01,-0.01 -0.01,-0.02 -0.02,-0.02 -0.01,-0.01 -0.02,-0.01 -0.03,-0.01 -0.01,0 -0.02,0 -0.03,0 -0.02,0.01 -0.04,0.02 -0.05,0.04 0,0.01 -0.01,0.01 -0.01,0.02 0,0.01 0,0.03 0,0.04 0.01,0.03 0.03,0.07 0.04,0.1 0,0.01 0.01,0.02 0.01,0.03 z" + id="path1988" /> + <path + class="st1" + d="m 321.21,297.25 c -0.1,0.03 -0.06,0.19 0.04,0.16 0.11,-0.02 0.07,-0.19 -0.04,-0.16 z" + id="path1990" /> + <path + class="st1" + d="m 324.5,296.11 c 0.13,-0.04 0.08,-0.24 -0.06,-0.21 -0.13,0.04 -0.07,0.25 0.06,0.21 z" + id="path1992" /> + <path + class="st1" + d="m 326.71,294.75 c 0.16,-0.04 0.1,-0.3 -0.07,-0.25 -0.16,0.04 -0.09,0.29 0.07,0.25 z" + id="path1994" /> + <path + class="st1" + d="m 328.61,294.43 c 0,0.01 0.01,0.02 0.02,0.04 0,0 0,0 0,0.01 0.01,0.01 0.02,0.02 0.02,0.03 0,0 0.01,0.01 0.01,0.01 0.01,0.01 0.01,0.01 0.02,0.01 0.01,0 0.01,0.01 0.02,0.01 0,0 0,0 0,0 0.01,0 0.02,0.01 0.03,0.01 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0.01,0 0.02,0 0.04,0 0.01,0 0,0 0.02,0 0.01,0 0.01,0 0.02,0 0,0 0,0 0,0 0.01,0 0.02,-0.01 0.04,-0.02 0,0 0,0 0,0 0.02,-0.01 0.03,-0.02 0.04,-0.03 0,0 0,0 0.01,-0.01 0.01,-0.01 0.02,-0.02 0.03,-0.03 0,0 0,-0.01 0,-0.01 0.01,-0.01 0.01,-0.03 0.02,-0.04 0.01,-0.02 0.01,-0.03 0.01,-0.05 0,-0.01 0,-0.03 0,-0.04 0,-0.01 0,-0.02 0,-0.03 0,-0.01 -0.01,-0.02 -0.01,-0.03 0,-0.01 -0.01,-0.02 -0.01,-0.03 0,0 0,0 0,0 -0.01,-0.01 -0.02,-0.02 -0.02,-0.03 0,0 0,0 -0.01,-0.01 -0.01,-0.01 -0.02,-0.02 -0.04,-0.03 -0.02,-0.01 -0.03,-0.01 -0.05,-0.02 -0.02,0 -0.04,0 -0.05,0 -0.02,0 -0.03,0.01 -0.05,0.02 -0.01,0.01 -0.02,0.02 -0.02,0.03 0,0 0,0 0,0 -0.01,0 -0.02,0.01 -0.03,0.01 0,0 0,0 0,0 0,0 -0.01,0.01 -0.01,0.01 -0.01,0 -0.01,0.01 -0.02,0.02 0,0 -0.01,0.01 -0.01,0.01 0,0 0,0 0,0.01 -0.01,0.01 -0.01,0.02 -0.01,0.03 0,0.01 -0.01,0.03 -0.01,0.04 0,0.01 0,0.01 0,0.02 -0.01,0.05 0,0.07 0,0.09 0,0 0,0 0,0 z" + id="path1996" /> + <path + class="st1" + d="m 337.7,291.08 c 0.04,0.04 0.08,0.07 0.12,0.11 0.02,0.02 0.04,0.03 0.06,0.05 0.03,0.02 0.05,0.04 0.08,0.05 0.07,0.04 0.16,-0.04 0.11,-0.12 -0.02,-0.03 -0.03,-0.06 -0.06,-0.08 -0.02,-0.02 -0.04,-0.04 -0.05,-0.05 -0.04,-0.04 -0.07,-0.08 -0.11,-0.11 -0.08,-0.08 -0.15,-0.15 -0.22,-0.23 -0.04,-0.04 -0.12,-0.04 -0.17,0 -0.04,0.05 -0.05,0.12 0,0.17 0.08,0.07 0.16,0.14 0.24,0.21 z" + id="path1998" /> + <path + class="st1" + d="m 218.91,341.71 c 0.06,-0.02 0.03,-0.11 -0.02,-0.09 -0.06,0.02 -0.04,0.11 0.02,0.09 z" + id="path2000" /> + <path + class="st1" + d="m 222.59,339.53 c 0.11,-0.03 0.07,-0.21 -0.05,-0.18 -0.11,0.03 -0.06,0.21 0.05,0.18 z" + id="path2002" /> + <path + class="st1" + d="m 224,337.82 c 0.04,0.15 0.07,0.31 0.16,0.43 0.05,0.08 0.21,0.06 0.2,-0.05 -0.02,-0.15 -0.07,-0.29 -0.11,-0.43 -0.04,-0.14 -0.06,-0.28 -0.09,-0.42 -0.04,-0.29 -0.05,-0.58 -0.03,-0.88 0.01,-0.16 -0.24,-0.16 -0.25,0 -0.02,0.31 -0.01,0.61 0.03,0.91 0.02,0.15 0.05,0.29 0.09,0.44 z" + id="path2004" /> + <path + class="st1" + d="m 226.08,337.92 c 0.13,-0.03 0.07,-0.23 -0.05,-0.2 -0.12,0.04 -0.07,0.23 0.05,0.2 z" + id="path2006" /> + <path + class="st1" + d="m 229.13,336.18 c 0.03,0.06 0.06,0.11 0.1,0.17 0.08,0.08 0.2,-0.01 0.18,-0.1 -0.02,-0.1 -0.06,-0.19 -0.09,-0.29 -0.02,-0.09 -0.04,-0.19 -0.04,-0.28 -0.01,-0.2 0.02,-0.4 0.1,-0.58 0.03,-0.07 -0.03,-0.14 -0.09,-0.16 -0.07,-0.02 -0.13,0.03 -0.16,0.09 -0.08,0.21 -0.11,0.44 -0.1,0.67 0.01,0.11 0.03,0.23 0.06,0.34 0.01,0.04 0.02,0.09 0.04,0.14 z" + id="path2008" /> + <path + class="st1" + d="m 232.65,333.92 c 0.02,0.1 0.03,0.2 0.06,0.3 0.03,0.08 0.16,0.1 0.18,0 0.02,-0.1 0.02,-0.2 0.02,-0.31 0,-0.1 0,-0.2 -0.01,-0.31 -0.02,-0.21 -0.03,-0.41 -0.05,-0.62 -0.01,-0.08 -0.06,-0.14 -0.14,-0.14 -0.07,0 -0.15,0.06 -0.14,0.14 0.02,0.21 0.03,0.41 0.05,0.62 -0.01,0.11 0.01,0.21 0.03,0.32 z" + id="path2010" /> + <path + class="st1" + d="m 235.51,334.58 c 0.13,-0.04 0.08,-0.24 -0.06,-0.2 -0.12,0.03 -0.07,0.24 0.06,0.2 z" + id="path2012" /> + <path + class="st1" + d="m 237.45,331.91 c 0.04,0.01 0.08,-0.01 0.1,-0.05 0.02,-0.04 0.03,-0.07 0.04,-0.12 0,-0.03 0.01,-0.06 0.01,-0.09 0.01,-0.06 0.01,-0.12 0.02,-0.17 0.01,-0.12 0.01,-0.24 0.02,-0.36 0,-0.07 -0.07,-0.14 -0.14,-0.14 -0.08,0 -0.13,0.06 -0.14,0.14 -0.01,0.12 -0.02,0.23 -0.02,0.35 0,0.06 0,0.11 0,0.17 0,0.03 0,0.06 0,0.09 0,0.04 0.01,0.07 0.02,0.11 0.02,0.04 0.04,0.07 0.09,0.07 z" + id="path2014" /> + <path + class="st1" + d="m 237.93,333.14 c 0.14,-0.04 0.08,-0.25 -0.06,-0.21 -0.13,0.04 -0.07,0.25 0.06,0.21 z" + id="path2016" /> + <path + class="st1" + d="m 239.38,332.28 c 0.11,-0.03 0.06,-0.2 -0.05,-0.17 -0.1,0.03 -0.05,0.2 0.05,0.17 z" + id="path2018" /> + <path + class="st1" + d="m 240.87,331.87 c 0,0.01 0.01,0.01 0.01,0.02 0,0.01 0.01,0.01 0.01,0.02 0.01,0 0.01,0.01 0.02,0.01 0,0 0.01,0 0.01,0.01 0.01,0 0.01,0.01 0.02,0.01 0.01,0 0.02,0 0.02,0 0.01,0 0.03,-0.01 0.04,-0.03 0,0 0,-0.01 0,-0.01 0,-0.01 0.01,-0.01 0.01,-0.02 0,-0.01 0,-0.02 0,-0.02 0,-0.01 0,-0.02 0,-0.03 0,-0.02 0,-0.04 0,-0.05 0,-0.03 -0.02,-0.07 -0.05,-0.09 -0.02,-0.01 -0.05,-0.02 -0.08,-0.01 -0.01,0 -0.03,0.01 -0.04,0.02 -0.01,0.01 -0.02,0.02 -0.03,0.03 -0.02,0.03 -0.02,0.07 0,0.1 0.04,0.01 0.05,0.02 0.06,0.04 z" + id="path2020" /> + <path + class="st1" + d="m 242.89,330.58 c 0.02,-0.01 0.03,-0.03 0.05,-0.05 0.01,-0.02 0.02,-0.04 0.02,-0.06 0,-0.02 0.01,-0.05 0.01,-0.07 0,-0.01 0,-0.02 0,-0.03 0,-0.01 0,-0.01 0,-0.02 0,-0.01 0,-0.02 -0.01,-0.03 0,-0.01 -0.01,-0.01 -0.01,-0.02 0,-0.01 -0.01,-0.01 -0.02,-0.01 0,0 -0.01,0 -0.01,-0.01 -0.01,0 -0.02,0 -0.03,0 -0.01,0 -0.02,0 -0.03,0.01 0,0 -0.01,0.01 -0.01,0.01 -0.01,0.01 -0.02,0.01 -0.03,0.02 -0.02,0.01 -0.04,0.03 -0.05,0.04 -0.02,0.01 -0.03,0.03 -0.05,0.05 -0.01,0.02 -0.02,0.04 -0.02,0.06 0,0.04 0.02,0.09 0.06,0.11 0.04,0.02 0.09,0.02 0.13,0 z" + id="path2022" /> + <path + class="st1" + d="m 246.44,328.87 c -0.08,0.02 -0.04,0.14 0.03,0.12 0.07,-0.02 0.04,-0.14 -0.03,-0.12 z" + id="path2024" /> + <path + class="st1" + d="m 248.48,328.74 c 0.02,0.04 0.03,0.09 0.05,0.12 0.02,0.04 0.06,0.07 0.09,0.09 0.06,0.06 0.16,0.02 0.17,-0.07 0,-0.04 0.01,-0.09 0,-0.13 -0.01,-0.04 -0.03,-0.08 -0.05,-0.11 -0.03,-0.07 -0.06,-0.14 -0.09,-0.21 -0.06,-0.14 -0.12,-0.28 -0.18,-0.42 -0.02,-0.06 -0.11,-0.07 -0.16,-0.05 -0.05,0.02 -0.1,0.09 -0.07,0.15 0.06,0.14 0.11,0.28 0.17,0.42 0.01,0.07 0.04,0.14 0.07,0.21 z" + id="path2026" /> + <path + class="st1" + d="m 250.26,328.47 c 0.15,-0.04 0.09,-0.28 -0.06,-0.23 -0.16,0.04 -0.09,0.27 0.06,0.23 z" + id="path2028" /> + <path + class="st1" + d="m 253.81,326.97 c 0.01,0.01 0.01,0.02 0.03,0.02 0.01,0 0.01,0.01 0.02,0.01 0.01,0 0.02,0 0.02,0 0.01,0 0.02,0 0.03,-0.01 0.01,0 0.02,-0.01 0.03,-0.02 l 0.03,-0.03 0.01,-0.01 c 0.01,-0.01 0.01,-0.02 0.02,-0.03 0,-0.01 0.01,-0.01 0.01,-0.02 0.01,-0.02 0.03,-0.04 0.04,-0.07 0.01,-0.01 0.01,-0.03 0.01,-0.04 0,-0.01 0,-0.03 0,-0.04 0,-0.01 -0.01,-0.03 -0.02,-0.04 -0.01,-0.01 -0.02,-0.02 -0.03,-0.03 -0.03,-0.01 -0.06,-0.02 -0.08,-0.01 -0.01,0 -0.02,0.01 -0.03,0.01 -0.02,0.01 -0.03,0.02 -0.04,0.04 -0.01,0.02 -0.02,0.05 -0.04,0.07 0,0.01 -0.01,0.01 -0.01,0.02 -0.01,0.02 -0.01,0.03 -0.01,0.04 l -0.01,0.04 c 0,0.01 0,0.02 0,0.02 0,0.01 0,0.02 0.01,0.03 0,0.04 0.01,0.04 0.01,0.05 z" + id="path2030" /> + <path + class="st1" + d="m 257.83,325.31 c 0.17,-0.05 0.1,-0.31 -0.07,-0.26 -0.17,0.05 -0.1,0.31 0.07,0.26 z" + id="path2032" /> + <path + class="st1" + d="m 259.94,323.91 c 0.01,0.01 0.03,0.01 0.05,0.01 0.02,0 0.03,0 0.05,0 0.04,-0.01 0.08,-0.05 0.09,-0.09 l 0.02,-0.07 c 0,-0.01 0.01,-0.02 0.01,-0.04 0,-0.01 0.01,-0.03 0.01,-0.04 0,-0.01 0,-0.01 0,-0.02 0,-0.01 0,-0.03 -0.01,-0.04 -0.01,-0.01 -0.02,-0.02 -0.03,-0.03 -0.01,-0.01 -0.02,-0.01 -0.04,-0.01 -0.01,0 -0.03,0 -0.04,0.01 -0.01,0 -0.01,0.01 -0.02,0.01 -0.01,0.01 -0.02,0.01 -0.03,0.02 -0.01,0.01 -0.02,0.02 -0.03,0.03 l -0.05,0.05 c -0.03,0.03 -0.05,0.08 -0.03,0.12 0,0.01 0.01,0.02 0.01,0.03 0,0.03 0.02,0.05 0.04,0.06 z" + id="path2034" /> + <path + class="st1" + d="m 261.32,321.47 c 0.01,0.05 0.01,0.09 0.02,0.14 0,0.02 0.01,0.05 0.01,0.07 0,0.03 0.02,0.05 0.03,0.08 0.01,0.03 0.05,0.04 0.08,0.04 0.03,0 0.06,-0.03 0.07,-0.06 0.03,-0.09 0.02,-0.2 0.02,-0.29 0,-0.05 0,-0.09 0,-0.14 l -0.01,-0.14 c 0,-0.07 -0.06,-0.13 -0.13,-0.13 -0.07,0 -0.14,0.06 -0.13,0.13 l 0.01,0.14 c 0.01,0.05 0.03,0.11 0.03,0.16 z" + id="path2036" /> + <path + class="st1" + d="m 261.72,322.67 c 0.15,-0.04 0.09,-0.28 -0.06,-0.23 -0.16,0.04 -0.09,0.27 0.06,0.23 z" + id="path2038" /> + <path + class="st1" + d="m 264.45,321.15 c 0.16,-0.04 0.09,-0.29 -0.07,-0.24 -0.15,0.04 -0.09,0.28 0.07,0.24 z" + id="path2040" /> + <path + class="st1" + d="m 269.37,318.25 c 0.03,0.06 0.05,0.12 0.08,0.18 0.04,0.08 0.07,0.18 0.18,0.2 0.07,0.01 0.12,-0.01 0.15,-0.06 0.06,-0.09 0.01,-0.18 -0.02,-0.26 -0.03,-0.07 -0.06,-0.14 -0.09,-0.22 -0.05,-0.13 -0.11,-0.25 -0.16,-0.38 -0.02,-0.04 -0.07,-0.07 -0.11,-0.08 -0.04,-0.01 -0.1,-0.01 -0.13,0.02 -0.09,0.06 -0.1,0.15 -0.06,0.24 0.05,0.11 0.11,0.23 0.16,0.36 z" + id="path2042" /> + <path + class="st1" + d="m 352.5,304.28 c -0.04,-0.08 -0.09,-0.17 -0.13,-0.25 -0.03,-0.05 -0.11,-0.07 -0.16,-0.04 -0.06,0.04 -0.07,0.1 -0.04,0.16 0.04,0.08 0.08,0.17 0.12,0.25 0.02,0.04 0.04,0.08 0.07,0.12 0.02,0.04 0.05,0.1 0.09,0.13 0.03,0.02 0.07,0.04 0.11,0.02 0.04,-0.01 0.06,-0.05 0.06,-0.09 0,-0.06 -0.03,-0.11 -0.05,-0.16 -0.03,-0.05 -0.05,-0.09 -0.07,-0.14 z" + id="path2044" /> + <path + class="st1" + d="m 353.1,303.91 c -0.13,-0.17 -0.26,-0.35 -0.38,-0.52 -0.03,-0.04 -0.09,-0.06 -0.14,-0.04 -0.04,0.03 -0.07,0.09 -0.04,0.14 l 0.37,0.54 c 0.06,0.09 0.12,0.18 0.18,0.27 0.03,0.05 0.06,0.09 0.09,0.14 0.03,0.05 0.07,0.09 0.12,0.12 0.07,0.05 0.17,-0.04 0.15,-0.11 -0.03,-0.11 -0.11,-0.19 -0.17,-0.28 -0.06,-0.09 -0.12,-0.17 -0.18,-0.26 z" + id="path2046" /> + <path + class="st1" + d="m 354.12,304.31 c -0.11,-0.26 -0.22,-0.51 -0.33,-0.77 -0.04,-0.09 -0.19,-0.02 -0.15,0.07 0.1,0.26 0.21,0.52 0.31,0.77 0.05,0.13 0.1,0.26 0.15,0.39 0.05,0.13 0.08,0.27 0.17,0.38 0.07,0.09 0.21,0.04 0.19,-0.08 -0.02,-0.14 -0.09,-0.26 -0.15,-0.39 -0.08,-0.12 -0.14,-0.24 -0.19,-0.37 z" + id="path2048" /> + <path + class="st1" + d="m 356.05,300.87 c -0.1,-0.19 -0.19,-0.38 -0.29,-0.57 -0.03,-0.07 -0.13,-0.08 -0.19,-0.05 -0.07,0.04 -0.08,0.12 -0.05,0.19 0.09,0.19 0.17,0.39 0.26,0.58 0.04,0.1 0.08,0.19 0.14,0.28 0.05,0.09 0.1,0.22 0.19,0.27 0.06,0.03 0.15,0.01 0.16,-0.07 0.02,-0.11 -0.05,-0.22 -0.08,-0.33 -0.04,-0.11 -0.09,-0.2 -0.14,-0.3 z" + id="path2050" /> + <path + class="st1" + d="m 357.18,303.48 c -0.08,-0.17 -0.15,-0.35 -0.22,-0.53 -0.14,-0.36 -0.3,-0.7 -0.46,-1.05 -0.06,-0.14 -0.26,-0.02 -0.2,0.12 0.15,0.35 0.3,0.7 0.46,1.04 0.08,0.17 0.16,0.34 0.23,0.51 0.04,0.09 0.08,0.18 0.11,0.27 0.03,0.09 0.04,0.16 0.13,0.22 0.05,0.03 0.14,0 0.15,-0.06 0.02,-0.1 -0.02,-0.15 -0.07,-0.24 -0.05,-0.09 -0.08,-0.18 -0.13,-0.28 z" + id="path2052" /> + <path + class="st1" + d="m 358.99,298.23 c -0.01,-0.06 -0.08,-0.09 -0.13,-0.07 -0.06,0.02 -0.08,0.07 -0.07,0.13 0.07,0.53 0.32,1.11 0.77,1.42 0.06,0.04 0.15,-0.05 0.11,-0.11 -0.15,-0.21 -0.31,-0.41 -0.43,-0.64 -0.13,-0.23 -0.21,-0.48 -0.25,-0.73 z" + id="path2054" /> + <path + class="st1" + d="m 360.93,301.91 -0.41,-0.86 c -0.05,-0.1 -0.2,-0.01 -0.15,0.09 l 0.4,0.85 c 0.06,0.14 0.13,0.28 0.19,0.42 0.06,0.14 0.12,0.3 0.2,0.43 0.05,0.08 0.19,0.03 0.16,-0.07 -0.05,-0.15 -0.13,-0.28 -0.2,-0.42 -0.06,-0.15 -0.13,-0.3 -0.19,-0.44 z" + id="path2056" /> + <path + class="st1" + d="m 359.27,296.67 c 0.11,0.08 0.22,-0.07 0.17,-0.17 -0.09,-0.18 -0.24,-0.34 -0.37,-0.5 -0.13,-0.17 -0.28,-0.34 -0.42,-0.5 -0.28,-0.32 -0.55,-0.67 -0.88,-0.93 -0.1,-0.08 -0.26,0.02 -0.19,0.15 0.22,0.37 0.52,0.69 0.8,1.02 0.13,0.16 0.27,0.33 0.41,0.48 0.15,0.15 0.3,0.33 0.48,0.45 z" + id="path2058" /> + <path + class="st1" + d="m 360.89,299.59 c 0.06,0.11 0.11,0.24 0.18,0.34 0.04,0.06 0.14,0.02 0.12,-0.05 -0.03,-0.13 -0.08,-0.25 -0.12,-0.37 -0.04,-0.12 -0.1,-0.24 -0.15,-0.36 -0.1,-0.24 -0.21,-0.48 -0.31,-0.71 -0.04,-0.1 -0.22,-0.03 -0.18,0.07 0.1,0.24 0.2,0.48 0.3,0.72 0.06,0.12 0.1,0.24 0.16,0.36 z" + id="path2060" /> + <path + class="st1" + d="m 361.79,301.1 c 0.05,-0.01 0.03,-0.08 -0.02,-0.07 -0.04,0.01 -0.02,0.08 0.02,0.07 z" + id="path2062" /> + <path + class="st1" + d="m 363.74,300.58 -0.09,-0.12 -0.19,-0.24 c -0.02,-0.02 -0.06,-0.04 -0.09,-0.04 -0.03,0 -0.05,0.01 -0.08,0.03 -0.05,0.04 -0.07,0.11 -0.03,0.16 0.06,0.08 0.12,0.17 0.18,0.25 0.03,0.04 0.06,0.08 0.09,0.12 0.01,0.02 0.03,0.04 0.04,0.06 0.02,0.03 0.04,0.05 0.07,0.06 0.03,0.01 0.05,0.02 0.08,0.02 0.05,0 0.1,-0.04 0.11,-0.09 0,-0.02 0.01,-0.04 0.01,-0.06 0,-0.04 -0.02,-0.07 -0.04,-0.1 -0.03,-0.01 -0.05,-0.03 -0.06,-0.05 z" + id="path2064" /> + <path + class="st1" + d="m 362.21,295.12 c -0.07,-0.08 -0.13,-0.17 -0.19,-0.25 -0.14,-0.17 -0.29,-0.32 -0.44,-0.48 l -0.86,-0.95 c -0.14,-0.15 -0.35,0.07 -0.22,0.22 0.28,0.32 0.56,0.65 0.84,0.97 0.14,0.16 0.27,0.32 0.41,0.48 0.07,0.08 0.15,0.15 0.22,0.22 0.08,0.08 0.15,0.16 0.24,0.21 0.12,0.07 0.22,-0.07 0.17,-0.17 -0.04,-0.1 -0.11,-0.17 -0.17,-0.25 z" + id="path2066" /> + <path + class="st1" + d="m 363.73,297.62 -0.38,-0.71 c -0.07,-0.13 -0.26,-0.01 -0.19,0.11 0.12,0.24 0.24,0.47 0.35,0.71 0.06,0.12 0.11,0.23 0.18,0.35 0.06,0.11 0.11,0.25 0.22,0.33 0.05,0.04 0.14,0.02 0.14,-0.06 0,-0.14 -0.08,-0.26 -0.14,-0.38 -0.06,-0.13 -0.12,-0.24 -0.18,-0.35 z" + id="path2068" /> + <path + class="st1" + d="m 364.74,299.51 c 0.01,0.01 0.03,0.03 0.04,0.04 0.02,0.02 0.04,0.03 0.05,0.04 0.01,0.01 0.04,0.01 0.05,-0.01 0.01,-0.01 0.02,-0.03 0.01,-0.05 0,-0.01 -0.01,-0.02 -0.01,-0.03 -0.01,-0.01 -0.01,-0.02 -0.02,-0.03 -0.01,-0.02 -0.03,-0.03 -0.04,-0.05 -0.03,-0.03 -0.05,-0.06 -0.08,-0.09 -0.01,-0.01 -0.03,-0.02 -0.04,-0.02 -0.01,0 -0.03,0.01 -0.04,0.02 -0.02,0.02 -0.02,0.06 0,0.08 0.02,0.04 0.05,0.07 0.08,0.1 z" + id="path2070" /> + <path + class="st1" + d="m 366.62,298.72 c 0.01,-0.02 0.01,-0.04 0.02,-0.06 0,-0.02 -0.01,-0.04 -0.02,-0.06 -0.01,-0.03 -0.03,-0.06 -0.04,-0.1 -0.01,-0.02 -0.01,-0.03 -0.02,-0.05 -0.01,-0.02 -0.02,-0.03 -0.03,-0.04 -0.01,-0.01 -0.02,-0.02 -0.03,-0.03 -0.01,-0.01 -0.03,-0.01 -0.04,0 -0.03,0.01 -0.05,0.03 -0.05,0.07 0,0.02 0,0.04 0,0.05 0,0.02 0,0.03 0,0.05 0,0.03 0.01,0.07 0.01,0.1 0,0.02 0.01,0.04 0.02,0.06 0.01,0.02 0.02,0.03 0.04,0.04 0.03,0.01 0.06,0.02 0.09,0.01 0.01,0 0.04,-0.02 0.05,-0.04 z" + id="path2072" /> + <path + class="st1" + d="m 364.18,293.1 -0.98,-0.92 c -0.12,-0.11 -0.29,0.06 -0.17,0.18 0.32,0.32 0.65,0.64 0.97,0.96 0.32,0.31 0.63,0.65 0.99,0.92 0.12,0.09 0.22,-0.09 0.14,-0.19 -0.28,-0.35 -0.62,-0.65 -0.95,-0.95 z" + id="path2074" /> + <path + class="st1" + d="m 367.17,297.19 c -0.07,-0.13 -0.13,-0.26 -0.2,-0.39 -0.13,-0.26 -0.26,-0.51 -0.39,-0.77 -0.06,-0.12 -0.24,-0.01 -0.18,0.1 0.13,0.26 0.26,0.51 0.38,0.77 0.06,0.13 0.13,0.25 0.19,0.38 0.03,0.06 0.06,0.13 0.09,0.19 0.03,0.07 0.05,0.13 0.12,0.17 0.06,0.04 0.13,-0.01 0.13,-0.08 0.01,-0.07 -0.04,-0.14 -0.07,-0.2 -0.01,-0.05 -0.04,-0.11 -0.07,-0.17 z" + id="path2076" /> + <path + class="st1" + d="m 242.79,373.05 c -0.13,-0.08 -0.25,-0.17 -0.38,-0.25 -0.05,-0.03 -0.13,-0.01 -0.16,0.04 -0.03,0.06 -0.01,0.12 0.04,0.16 0.12,0.09 0.24,0.19 0.37,0.28 0.13,0.1 0.23,0.19 0.37,0.28 0.06,0.04 0.16,0.01 0.19,-0.05 0.04,-0.07 0.01,-0.15 -0.05,-0.19 -0.12,-0.11 -0.25,-0.19 -0.38,-0.27 z" + id="path2078" /> + <path + class="st1" + d="m 235.34,364.67 c 0.11,0.09 0.27,-0.05 0.16,-0.16 -0.43,-0.45 -0.95,-0.93 -1.16,-1.52 -0.1,-0.28 -0.14,-0.59 -0.19,-0.88 -0.06,-0.32 -0.09,-0.65 -0.08,-0.98 0,-0.13 -0.19,-0.13 -0.2,0 -0.02,0.33 0,0.66 0.06,0.98 0.06,0.33 0.2,0.61 0.34,0.91 0.14,0.3 0.25,0.61 0.43,0.89 0.16,0.28 0.38,0.55 0.64,0.76 z" + id="path2080" /> + <path + class="st1" + d="m 234.65,361.54 c 0,0.26 0.03,0.51 0.1,0.76 0.07,0.24 0.16,0.51 0.36,0.67 0.05,0.04 0.13,0 0.11,-0.06 -0.06,-0.23 -0.19,-0.43 -0.26,-0.66 -0.07,-0.23 -0.11,-0.46 -0.12,-0.7 -0.01,-0.13 -0.19,-0.13 -0.19,-0.01 z" + id="path2082" /> + <path + class="st1" + d="m 235.74,363.65 c -0.01,-0.01 -0.01,-0.02 -0.02,-0.03 -0.01,-0.02 -0.02,-0.03 -0.04,-0.05 -0.03,-0.04 -0.06,-0.08 -0.08,-0.12 -0.02,-0.02 -0.05,-0.04 -0.08,-0.02 -0.03,0.02 -0.04,0.05 -0.02,0.08 0.02,0.03 0.04,0.07 0.06,0.1 0.01,0.02 0.02,0.04 0.03,0.05 0.01,0.02 0.02,0.04 0.04,0.06 0.02,0.02 0.04,0.05 0.07,0.05 0.03,0 0.05,-0.02 0.05,-0.05 0,-0.02 -0.01,-0.04 -0.01,-0.05 0.01,0 0.01,-0.01 0,-0.02 z" + id="path2084" /> + <path + class="st1" + d="m 235.37,361.85 c -0.01,-0.08 -0.13,-0.04 -0.12,0.03 0.08,0.51 0.3,1.04 0.67,1.4 0.04,0.04 0.11,-0.01 0.07,-0.06 -0.15,-0.2 -0.3,-0.41 -0.4,-0.64 -0.1,-0.23 -0.18,-0.48 -0.22,-0.73 z" + id="path2086" /> + <path + class="st1" + d="m 236.19,362.45 c -0.06,-0.09 -0.13,-0.19 -0.18,-0.29 -0.1,-0.2 -0.17,-0.42 -0.2,-0.64 -0.02,-0.11 -0.2,-0.08 -0.19,0.03 0.02,0.25 0.09,0.49 0.19,0.71 0.05,0.11 0.1,0.21 0.17,0.31 0.04,0.05 0.08,0.1 0.12,0.15 0.05,0.05 0.09,0.09 0.15,0.12 0.06,0.03 0.15,-0.02 0.12,-0.09 -0.02,-0.05 -0.05,-0.1 -0.09,-0.15 -0.03,-0.06 -0.06,-0.11 -0.09,-0.15 z" + id="path2088" /> + <path + class="st1" + d="m 236.64,361.95 c -0.06,-0.15 -0.11,-0.3 -0.17,-0.45 -0.02,-0.05 -0.07,-0.09 -0.13,-0.08 -0.05,0.01 -0.09,0.08 -0.08,0.13 0.05,0.15 0.11,0.3 0.16,0.46 0.03,0.07 0.05,0.15 0.08,0.22 0.03,0.08 0.06,0.16 0.1,0.23 0.05,0.1 0.2,0.03 0.18,-0.08 -0.02,-0.08 -0.04,-0.16 -0.07,-0.24 -0.02,-0.04 -0.04,-0.11 -0.07,-0.19 z" + id="path2090" /> + <path + class="st1" + d="m 241.5,359.63 c 0.05,0.06 0.11,0.12 0.16,0.19 0.06,0.06 0.12,0.15 0.21,0.17 0.05,0.01 0.12,-0.03 0.11,-0.08 0,-0.03 -0.01,-0.06 -0.02,-0.08 -0.01,-0.02 -0.02,-0.03 -0.03,-0.05 -0.03,-0.04 -0.06,-0.08 -0.09,-0.11 -0.06,-0.06 -0.11,-0.13 -0.17,-0.19 -0.11,-0.13 -0.23,-0.25 -0.34,-0.38 -0.04,-0.04 -0.11,-0.04 -0.15,0 -0.04,0.04 -0.04,0.11 0,0.15 0.1,0.13 0.21,0.26 0.32,0.38 z" + id="path2092" /> + <path + class="st1" + d="m 242.06,360.91 c -0.08,0 -0.08,0.12 0,0.12 0.08,0 0.08,-0.12 0,-0.12 z" + id="path2094" /> + <path + class="st1" + d="m 242.72,361.23 c 0.01,0.04 0.07,0.06 0.1,0.03 0.07,-0.08 0.07,-0.19 0.08,-0.3 0.01,-0.11 0.01,-0.21 0,-0.32 -0.02,-0.23 -0.07,-0.45 -0.16,-0.66 -0.17,-0.41 -0.45,-0.77 -0.82,-1.02 -0.08,-0.06 -0.15,0.07 -0.08,0.13 0.34,0.24 0.59,0.58 0.74,0.97 0.07,0.19 0.12,0.38 0.13,0.58 0.01,0.1 0.01,0.19 0,0.29 0.01,0.09 -0.02,0.2 0.01,0.3 z" + id="path2096" /> + <path + class="st1" + d="m 243.26,359.55 c -0.22,-0.49 -0.52,-0.94 -0.9,-1.33 -0.07,-0.07 -0.18,0.04 -0.11,0.11 0.35,0.38 0.64,0.81 0.83,1.29 0.09,0.22 0.17,0.46 0.22,0.69 0.06,0.24 0.05,0.52 0.15,0.75 0.02,0.05 0.09,0.06 0.11,0 0.07,-0.24 -0.01,-0.53 -0.06,-0.76 -0.05,-0.25 -0.13,-0.51 -0.24,-0.75 z" + id="path2098" /> + <path + class="st1" + d="m 241.92,357.42 c 0.23,0.15 0.46,0.32 0.66,0.51 0.39,0.37 0.71,0.8 0.98,1.28 0.26,0.47 0.44,0.98 0.56,1.51 0.12,0.54 0.11,1.08 0.12,1.63 0,0.12 0.17,0.14 0.21,0.03 0.29,-1.09 -0.08,-2.36 -0.62,-3.32 -0.28,-0.5 -0.65,-0.96 -1.07,-1.35 -0.21,-0.19 -0.42,-0.37 -0.65,-0.53 -0.21,-0.14 -0.49,-0.35 -0.75,-0.34 -0.09,0 -0.11,0.1 -0.07,0.16 0.15,0.19 0.43,0.29 0.63,0.42 z" + id="path2100" /> + <path + class="st1" + d="m 239.88,364.8 c 0.14,-0.03 0.27,-0.07 0.4,-0.12 0.14,-0.06 0.28,-0.12 0.38,-0.23 0.06,-0.07 0,-0.18 -0.09,-0.15 -0.12,0.04 -0.23,0.1 -0.35,0.15 -0.12,0.05 -0.25,0.09 -0.37,0.12 -0.25,0.06 -0.51,0.07 -0.77,0.03 -0.06,-0.01 -0.11,0.01 -0.13,0.07 -0.01,0.05 0.02,0.12 0.07,0.13 0.29,0.06 0.58,0.06 0.86,0 z" + id="path2102" /> + <path + class="st1" + d="m 238.7,365.36 c 0.52,0.15 1.06,0.14 1.57,-0.04 0.25,-0.08 0.48,-0.2 0.69,-0.35 0.21,-0.15 0.44,-0.32 0.53,-0.57 0.03,-0.07 -0.07,-0.14 -0.13,-0.1 -0.19,0.13 -0.34,0.31 -0.53,0.45 -0.2,0.14 -0.42,0.26 -0.65,0.34 -0.46,0.16 -0.96,0.2 -1.44,0.1 -0.1,-0.02 -0.15,0.14 -0.04,0.17 z" + id="path2104" /> + <path + class="st1" + d="m 238.06,365.62 c -0.04,-0.03 -0.1,-0.04 -0.13,0 -0.03,0.03 -0.04,0.1 0,0.13 0.15,0.13 0.32,0.23 0.5,0.3 0.09,0.04 0.17,0.07 0.26,0.09 0.09,0.02 0.21,0.04 0.3,0.01 0.05,-0.02 0.07,-0.09 0.02,-0.12 -0.07,-0.04 -0.17,-0.06 -0.25,-0.08 -0.09,-0.02 -0.17,-0.05 -0.26,-0.08 -0.16,-0.06 -0.31,-0.15 -0.44,-0.25 z" + id="path2106" /> + <path + class="st1" + d="m 241.17,365.27 c -0.44,0.32 -0.96,0.54 -1.48,0.67 -0.08,0.02 -0.07,0.16 0.02,0.15 0.58,-0.07 1.12,-0.29 1.6,-0.63 0.23,-0.16 0.45,-0.35 0.64,-0.56 0.09,-0.1 0.19,-0.21 0.27,-0.33 0.08,-0.11 0.18,-0.24 0.16,-0.38 -0.01,-0.04 -0.06,-0.07 -0.1,-0.06 -0.12,0.05 -0.17,0.16 -0.25,0.26 -0.08,0.11 -0.16,0.23 -0.26,0.33 -0.19,0.21 -0.39,0.4 -0.6,0.55 z" + id="path2108" /> + <path + class="st1" + d="m 243.38,364.33 c -0.2,0.17 -0.33,0.39 -0.5,0.6 -0.17,0.2 -0.35,0.39 -0.55,0.57 -0.41,0.37 -0.89,0.66 -1.4,0.86 -1.17,0.46 -2.43,0.38 -3.6,-0.02 -0.1,-0.04 -0.17,0.13 -0.07,0.18 1.16,0.58 2.59,0.58 3.79,0.11 0.52,-0.21 1.01,-0.5 1.44,-0.87 0.4,-0.34 0.91,-0.82 1.01,-1.35 0.01,-0.08 -0.07,-0.13 -0.12,-0.08 z" + id="path2110" /> + <path + class="st1" + d="m 237.34,359.13 c 0.07,-0.04 0.14,-0.07 0.21,-0.1 0.07,-0.02 0.14,-0.03 0.21,-0.04 0.14,-0.03 0.28,-0.05 0.43,-0.06 0.13,-0.01 0.29,0.02 0.41,-0.04 0.05,-0.02 0.04,-0.09 0,-0.11 -0.12,-0.07 -0.31,-0.04 -0.45,-0.02 -0.15,0.02 -0.31,0.06 -0.45,0.12 -0.07,0.03 -0.13,0.08 -0.21,0.11 -0.06,0.03 -0.13,0.06 -0.19,0.09 -0.14,0.07 -0.26,0.16 -0.39,0.25 -0.03,0.02 0.01,0.06 0.04,0.04 0.13,-0.09 0.26,-0.17 0.39,-0.24 z" + id="path2112" /> + <path + class="st1" + d="m 236.49,359.55 c 0.3,-0.26 0.59,-0.52 0.94,-0.71 0.17,-0.09 0.35,-0.17 0.53,-0.23 0.18,-0.06 0.4,-0.07 0.56,-0.17 0.05,-0.03 0.04,-0.11 -0.02,-0.13 -0.19,-0.06 -0.44,0.02 -0.62,0.07 -0.2,0.06 -0.4,0.14 -0.59,0.23 -0.37,0.19 -0.74,0.46 -0.95,0.82 -0.05,0.1 0.07,0.19 0.15,0.12 z" + id="path2114" /> + <path + class="st1" + d="m 237.32,358.23 c 0.13,-0.05 0.26,-0.09 0.4,-0.12 0.13,-0.03 0.31,-0.02 0.41,-0.11 0.04,-0.03 0.02,-0.09 -0.01,-0.12 -0.12,-0.08 -0.31,-0.02 -0.44,0.01 -0.15,0.04 -0.3,0.09 -0.44,0.15 -0.27,0.13 -0.52,0.31 -0.73,0.53 -0.05,0.05 0.03,0.13 0.08,0.08 0.21,-0.18 0.46,-0.32 0.73,-0.42 z" + id="path2116" /> + <path + class="st1" + d="m 238.85,357.32 c -0.26,-0.12 -0.66,-0.04 -0.93,0.02 -0.32,0.06 -0.64,0.17 -0.93,0.32 -0.6,0.29 -1.06,0.76 -1.41,1.33 -0.03,0.06 0.05,0.1 0.09,0.05 0.35,-0.51 0.86,-0.9 1.41,-1.18 0.27,-0.13 0.56,-0.23 0.86,-0.29 0.15,-0.03 0.3,-0.05 0.45,-0.06 0.15,-0.01 0.31,0.01 0.45,-0.03 0.05,-0.02 0.08,-0.12 0.01,-0.16 z" + id="path2118" /> + <path + class="st1" + d="m 234.72,359.13 c 0.5,-0.75 1.18,-1.4 1.97,-1.83 0.39,-0.21 0.81,-0.38 1.24,-0.49 0.43,-0.11 0.88,-0.13 1.32,-0.19 0.11,-0.02 0.11,-0.21 0,-0.23 -0.9,-0.15 -1.93,0.22 -2.7,0.65 -0.84,0.47 -1.54,1.14 -1.97,1.99 -0.06,0.12 0.08,0.2 0.14,0.1 z" + id="path2120" /> + </g> + </g> + <g + id="g2146"> + <path + class="st1" + d="m 511.13,400.13 c 1.42,1.37 2.13,2.98 2.13,4.81 0,3.02 -0.85,5.22 -2.54,6.59 -1.7,1.37 -4.37,1.92 -8.03,1.65 -8.24,-0.64 -14.67,-1.08 -19.3,-1.3 -4.62,-0.23 -10.69,-0.39 -18.2,-0.48 -3.39,16.85 -6.5,33.78 -9.34,50.81 -1.01,6.23 -2.06,13.44 -3.16,21.63 -1.1,8.19 -1.83,14.81 -2.2,19.84 -0.18,2.66 -1.28,4.69 -3.3,6.11 -2.02,1.42 -4.44,2.13 -7.28,2.13 -3.02,0 -5.36,-0.73 -7,-2.2 -1.65,-1.46 -2.47,-3.39 -2.47,-5.77 0,-2.2 0.34,-5.84 1.03,-10.92 0.69,-5.08 1.49,-10.41 2.4,-16 1.01,-5.58 1.79,-10.44 2.33,-14.56 1.01,-6.96 2.15,-13.87 3.43,-20.74 1.28,-6.87 2.56,-13.37 3.85,-19.5 0.27,-1.37 0.59,-2.95 0.96,-4.74 0.36,-1.79 0.78,-3.78 1.24,-5.97 -8.97,0.27 -16.02,1.01 -21.15,2.2 -5.13,1.19 -8.77,2.86 -10.92,5.01 -2.15,2.15 -3.23,4.92 -3.23,8.31 0,3.11 0.91,6.09 2.75,8.93 0.36,0.64 0.55,1.33 0.55,2.06 0,1.74 -1.03,3.36 -3.09,4.88 -2.06,1.51 -4.19,2.27 -6.39,2.27 -1.56,0 -2.84,-0.46 -3.85,-1.37 -1.83,-1.56 -3.34,-3.78 -4.53,-6.66 -1.19,-2.88 -1.79,-6.16 -1.79,-9.82 0,-7.78 2.54,-14.03 7.62,-18.75 5.08,-4.71 12.82,-8.17 23.21,-10.37 10.39,-2.2 23.74,-3.3 40.03,-3.3 10.07,0 18.1,0.18 24.1,0.55 6,0.37 11.24,0.96 15.73,1.79 2.86,0.54 4.99,1.5 6.41,2.88 z" + id="path2126" /> + <path + class="st1" + d="m 570.59,482.25 c 0.69,1.1 1.03,2.61 1.03,4.53 0,3.66 -0.87,6.5 -2.61,8.52 -4.21,4.85 -8.54,8.84 -12.98,11.95 -4.44,3.11 -9.5,4.67 -15.18,4.67 -4.67,0 -8.19,-1.35 -10.57,-4.05 -2.38,-2.7 -3.57,-6.61 -3.57,-11.74 0,-2.56 0.64,-7.14 1.92,-13.73 1.19,-5.77 1.79,-9.75 1.79,-11.95 0,-1.46 -0.5,-2.2 -1.51,-2.2 -1.19,0 -2.88,1.53 -5.08,4.6 -2.2,3.07 -4.4,7.12 -6.59,12.15 -2.2,5.04 -3.98,10.35 -5.36,15.93 -1.74,7.33 -6.04,10.99 -12.91,10.99 -2.75,0 -4.56,-0.98 -5.42,-2.95 -0.87,-1.97 -1.31,-5.52 -1.31,-10.64 0,-2.93 0.05,-5.26 0.14,-7 l 0.14,-10.99 c 0,-14.1 1.44,-28.79 4.33,-44.08 2.88,-15.29 7.14,-28.13 12.77,-38.52 5.63,-10.39 12.38,-15.59 20.26,-15.59 4.21,0 7.62,1.81 10.23,5.43 2.61,3.62 3.91,8.31 3.91,14.08 0,9.25 -2.7,18.84 -8.1,28.77 -5.4,9.94 -14.19,21.54 -26.37,34.81 -0.27,4.76 -0.41,9.66 -0.41,14.69 3.02,-7.78 6.39,-14.12 10.09,-19.02 3.71,-4.9 7.37,-8.4 10.99,-10.51 3.62,-2.11 6.94,-3.16 9.96,-3.16 5.95,0 8.93,2.98 8.93,8.93 0,3.57 -1.01,10.03 -3.02,19.36 -1.74,7.97 -2.61,13.23 -2.61,15.79 0,3.66 1.33,5.49 3.98,5.49 1.83,0 4,-1.12 6.52,-3.36 2.52,-2.24 5.88,-5.88 10.09,-10.92 1.1,-1.28 2.34,-1.92 3.71,-1.92 1.19,0 2.13,0.54 2.81,1.64 z M 521.5,402.8 c -2.02,4.72 -3.96,11.08 -5.84,19.09 -1.88,8.01 -3.41,16.73 -4.6,26.16 5.68,-6.68 10.37,-13.96 14.08,-21.84 3.71,-7.87 5.56,-15.02 5.56,-21.42 0,-2.93 -0.32,-5.17 -0.96,-6.73 -0.64,-1.56 -1.56,-2.34 -2.75,-2.34 -1.65,0.01 -3.48,2.37 -5.49,7.08 z" + id="path2128" /> + <path + class="st1" + d="m 624.57,482.25 c 0.69,1.1 1.03,2.61 1.03,4.53 0,3.66 -0.87,6.5 -2.61,8.52 -3.39,4.12 -8.17,7.92 -14.35,11.4 -6.18,3.48 -12.8,5.22 -19.84,5.22 -9.61,0 -17.08,-2.61 -22.39,-7.83 -5.31,-5.22 -7.97,-12.36 -7.97,-21.42 0,-6.32 1.33,-12.2 3.98,-17.65 2.65,-5.45 6.34,-9.77 11.06,-12.98 4.71,-3.2 10.05,-4.81 16,-4.81 5.31,0 9.57,1.58 12.77,4.74 3.2,3.16 4.81,7.44 4.81,12.84 0,6.32 -2.27,11.74 -6.8,16.27 -4.53,4.53 -12.2,8.13 -23,10.78 2.29,4.21 6.64,6.32 13.05,6.32 4.12,0 8.81,-1.44 14.08,-4.33 5.26,-2.88 9.82,-6.66 13.66,-11.33 1.1,-1.28 2.33,-1.92 3.71,-1.92 1.18,0.01 2.12,0.55 2.81,1.65 z M 578.56,466.6 c -2.33,3.94 -3.5,8.7 -3.5,14.28 v 0.27 c 5.4,-1.28 9.66,-3.2 12.77,-5.77 3.11,-2.56 4.67,-5.54 4.67,-8.93 0,-1.74 -0.48,-3.14 -1.44,-4.19 -0.96,-1.05 -2.27,-1.58 -3.91,-1.58 -3.4,0.01 -6.26,1.98 -8.59,5.92 z" + id="path2130" /> + <path + class="st1" + d="m 687.26,470.85 c 0.64,1.19 0.96,2.7 0.96,4.53 0,4.4 -1.33,7 -3.98,7.83 -5.49,1.92 -11.54,3.02 -18.13,3.3 -1.74,7.69 -5.17,13.85 -10.3,18.47 -5.13,4.62 -10.94,6.94 -17.44,6.94 -5.49,0 -10.19,-1.33 -14.08,-3.98 -3.89,-2.65 -6.85,-6.18 -8.86,-10.57 -2.01,-4.4 -3.02,-9.15 -3.02,-14.28 0,-6.96 1.33,-13.16 3.98,-18.61 2.65,-5.45 6.32,-9.7 10.99,-12.77 4.67,-3.07 9.84,-4.6 15.52,-4.6 6.96,0 12.57,2.4 16.82,7.21 4.26,4.81 6.75,10.74 7.49,17.78 4.3,-0.27 9.43,-1.19 15.38,-2.75 0.73,-0.18 1.37,-0.27 1.92,-0.27 1.19,-0.01 2.11,0.59 2.75,1.77 z m -40.17,22.94 c 2.15,-2.38 3.59,-5.81 4.33,-10.3 -2.84,-1.92 -5.01,-4.44 -6.52,-7.55 -1.51,-3.11 -2.27,-6.41 -2.27,-9.89 0,-1.46 0.14,-2.93 0.41,-4.4 h -0.69 c -3.66,0 -6.71,1.76 -9.13,5.29 -2.43,3.53 -3.64,8.49 -3.64,14.9 0,5.04 0.98,8.88 2.95,11.54 1.97,2.66 4.28,3.98 6.94,3.98 2.93,0 5.47,-1.19 7.62,-3.57 z" + id="path2132" /> + <path + class="st1" + d="m 757.23,482.25 c 0.69,1.1 1.03,2.61 1.03,4.53 0,3.66 -0.87,6.5 -2.61,8.52 -3.76,4.58 -7.88,8.49 -12.36,11.74 -4.49,3.25 -8.93,4.88 -13.32,4.88 -6.96,0 -12.27,-4.07 -15.93,-12.22 -3.85,4.85 -7.21,8.1 -10.09,9.75 -2.88,1.65 -6.25,2.47 -10.09,2.47 -5.59,0 -10.19,-2.08 -13.8,-6.25 -3.62,-4.17 -5.43,-9.59 -5.43,-16.27 0,-7.32 1.56,-14.12 4.67,-20.39 3.11,-6.27 7.39,-11.4 12.84,-15.38 5.45,-3.98 11.56,-6.34 18.33,-7.07 1.74,-17.76 5.06,-32.94 9.96,-45.53 4.9,-12.59 11.33,-18.88 19.3,-18.88 3.94,0 7.21,1.79 9.82,5.36 2.61,3.57 3.91,8.97 3.91,16.21 0,10.25 -2.52,22.25 -7.55,35.98 -5.04,13.73 -11.77,27.83 -20.19,42.3 0.36,5.31 1.17,9.11 2.4,11.4 1.24,2.29 2.82,3.43 4.74,3.43 2.47,0 4.99,-1.1 7.55,-3.3 2.56,-2.2 6,-5.86 10.3,-10.99 1.1,-1.28 2.33,-1.92 3.71,-1.92 1.18,-0.01 2.12,0.53 2.81,1.63 z m -53.35,13.67 c 1.74,-1.42 3.94,-4.05 6.59,-7.9 -0.92,-4.94 -1.37,-10.48 -1.37,-16.62 0,-2.2 0.09,-5.77 0.28,-10.71 -5.04,1.56 -9.23,4.92 -12.57,10.09 -3.34,5.17 -5.01,10.92 -5.01,17.24 0,6.68 2.29,10.03 6.87,10.03 1.73,0 3.47,-0.71 5.21,-2.13 z m 29.11,-91.06 c -1.74,6.18 -3.23,14.26 -4.46,24.24 -1.24,9.98 -2.13,20.42 -2.68,31.31 10.25,-22.34 15.38,-40.28 15.38,-53.84 0,-3.48 -0.3,-6.18 -0.89,-8.1 -0.6,-1.92 -1.3,-2.88 -2.13,-2.88 -1.74,0 -3.48,3.09 -5.22,9.27 z" + id="path2134" /> + <path + class="st1" + d="m 819.92,470.85 c 0.64,1.19 0.96,2.7 0.96,4.53 0,4.4 -1.33,7 -3.98,7.83 -5.49,1.92 -11.54,3.02 -18.13,3.3 -1.74,7.69 -5.17,13.85 -10.3,18.47 -5.13,4.62 -10.94,6.94 -17.44,6.94 -5.49,0 -10.19,-1.33 -14.08,-3.98 -3.89,-2.65 -6.85,-6.18 -8.86,-10.57 -2.01,-4.4 -3.02,-9.15 -3.02,-14.28 0,-6.96 1.33,-13.16 3.98,-18.61 2.65,-5.45 6.32,-9.7 10.99,-12.77 4.67,-3.07 9.84,-4.6 15.52,-4.6 6.96,0 12.57,2.4 16.82,7.21 4.26,4.81 6.75,10.74 7.48,17.78 4.3,-0.27 9.43,-1.19 15.38,-2.75 0.73,-0.18 1.37,-0.27 1.92,-0.27 1.21,-0.01 2.12,0.59 2.76,1.77 z m -40.17,22.94 c 2.15,-2.38 3.59,-5.81 4.33,-10.3 -2.84,-1.92 -5.01,-4.44 -6.52,-7.55 -1.51,-3.11 -2.27,-6.41 -2.27,-9.89 0,-1.46 0.14,-2.93 0.41,-4.4 h -0.69 c -3.66,0 -6.71,1.76 -9.13,5.29 -2.43,3.53 -3.64,8.49 -3.64,14.9 0,5.04 0.98,8.88 2.95,11.54 1.97,2.66 4.28,3.98 6.94,3.98 2.93,0 5.47,-1.19 7.62,-3.57 z" + id="path2136" /> + <path + class="st1" + d="m 863.94,482.25 c 0.69,1.1 1.03,2.61 1.03,4.53 0,3.66 -0.87,6.5 -2.61,8.52 -3.94,4.85 -8.22,8.84 -12.84,11.95 -4.62,3.11 -9.87,4.67 -15.72,4.67 -8.06,0 -14.03,-3.66 -17.92,-10.99 -3.89,-7.32 -5.84,-16.8 -5.84,-28.43 0,-11.17 1.44,-23.9 4.33,-38.18 2.88,-14.28 7.14,-26.55 12.77,-36.81 5.63,-10.25 12.34,-15.38 20.12,-15.38 4.39,0 7.85,2.04 10.37,6.11 2.52,4.07 3.78,9.91 3.78,17.51 0,10.9 -3.02,23.53 -9.06,37.9 -6.04,14.38 -14.24,28.61 -24.58,42.71 0.64,3.76 1.69,6.43 3.16,8.03 1.46,1.6 3.39,2.4 5.77,2.4 3.75,0 7.05,-1.08 9.89,-3.23 2.84,-2.15 6.46,-5.84 10.85,-11.06 1.1,-1.28 2.34,-1.92 3.71,-1.92 1.16,0.03 2.1,0.57 2.79,1.67 z m -26.85,-75.12 c -2.66,7.6 -4.99,17.03 -7,28.29 -2.01,11.26 -3.11,22.07 -3.3,32.41 6.5,-10.71 11.67,-21.45 15.52,-32.21 3.85,-10.76 5.77,-20.58 5.77,-29.46 0,-6.96 -1.28,-10.44 -3.85,-10.44 -2.11,0.01 -4.49,3.81 -7.14,11.41 z" + id="path2138" /> + <path + class="st1" + d="m 857.76,505.6 c -2.7,-4.21 -4.05,-9.8 -4.05,-16.75 0,-4.12 0.53,-9.41 1.58,-15.86 1.05,-6.46 2.4,-12.47 4.05,-18.06 0.82,-2.93 1.92,-4.94 3.3,-6.04 1.37,-1.1 3.57,-1.65 6.59,-1.65 4.67,0 7,1.56 7,4.67 0,2.29 -0.87,7.6 -2.61,15.93 -2.2,10.07 -3.3,16.89 -3.3,20.46 0,2.75 0.36,4.85 1.1,6.32 0.73,1.47 1.97,2.2 3.71,2.2 1.65,0 3.71,-1.14 6.18,-3.43 2.47,-2.29 5.77,-5.91 9.89,-10.85 1.1,-1.28 2.34,-1.92 3.71,-1.92 1.19,0 2.13,0.55 2.82,1.65 0.69,1.1 1.03,2.61 1.03,4.53 0,3.66 -0.87,6.5 -2.61,8.52 -9.06,11.08 -17.53,16.62 -25.41,16.62 -5.96,-0.02 -10.28,-2.13 -12.98,-6.34 z m 5.42,-70.11 c -1.92,-1.79 -2.88,-4.28 -2.88,-7.48 0,-3.2 1.26,-5.88 3.78,-8.03 2.52,-2.15 5.65,-3.23 9.41,-3.23 3.39,0 6.13,0.82 8.24,2.47 2.11,1.65 3.16,3.98 3.16,7 0,3.66 -1.19,6.57 -3.57,8.72 -2.38,2.15 -5.54,3.23 -9.48,3.23 -3.85,0 -6.74,-0.89 -8.66,-2.68 z" + id="path2140" /> + <path + class="st1" + d="m 951.69,482.25 c 0.69,1.1 1.03,2.61 1.03,4.53 0,3.66 -0.87,6.5 -2.61,8.52 -3.94,4.85 -8.24,8.84 -12.91,11.95 -4.67,3.11 -10.03,4.67 -16.07,4.67 -18.68,0 -28.02,-13.14 -28.02,-39.42 0,-4.03 0.14,-8.1 0.41,-12.22 h -5.36 c -2.75,0 -4.6,-0.5 -5.56,-1.51 -0.96,-1.01 -1.44,-2.61 -1.44,-4.81 0,-5.13 2.06,-7.69 6.18,-7.69 h 7.83 c 1.56,-10.07 3.94,-19.27 7.14,-27.6 3.2,-8.33 7.07,-14.97 11.6,-19.91 4.53,-4.94 9.41,-7.42 14.63,-7.42 3.85,0 6.87,1.7 9.06,5.08 2.2,3.39 3.3,7.65 3.3,12.77 0,14.19 -5.95,26.55 -17.85,37.08 h 15.38 c 1.46,0 2.52,0.32 3.16,0.96 0.64,0.64 0.96,1.83 0.96,3.57 0,6.32 -5.17,9.48 -15.52,9.48 h -16.75 c -0.18,4.58 -0.27,8.15 -0.27,10.71 0,9.52 1.12,16.21 3.36,20.05 2.24,3.85 5.79,5.77 10.64,5.77 3.94,0 7.42,-1.19 10.44,-3.57 3.02,-2.38 6.59,-5.95 10.71,-10.71 1.1,-1.28 2.33,-1.92 3.71,-1.92 1.2,0 2.14,0.54 2.82,1.64 z m -31.45,-72.58 c -1.7,3.43 -3.3,8.19 -4.81,14.28 -1.51,6.09 -2.77,12.84 -3.78,20.26 5.4,-4.67 9.45,-9.91 12.15,-15.72 2.7,-5.81 4.05,-11.1 4.05,-15.86 0,-5.4 -1.01,-8.1 -3.02,-8.1 -1.36,-0.01 -2.89,1.71 -4.59,5.14 z" + id="path2142" /> + <path + class="st1" + d="m 1005.67,482.25 c 0.69,1.1 1.03,2.61 1.03,4.53 0,3.66 -0.87,6.5 -2.61,8.52 -3.39,4.12 -8.17,7.92 -14.35,11.4 -6.18,3.48 -12.8,5.22 -19.84,5.22 -9.61,0 -17.08,-2.61 -22.39,-7.83 -5.31,-5.22 -7.97,-12.36 -7.97,-21.42 0,-6.32 1.33,-12.2 3.98,-17.65 2.65,-5.45 6.34,-9.77 11.06,-12.98 4.71,-3.2 10.05,-4.81 16,-4.81 5.31,0 9.57,1.58 12.77,4.74 3.2,3.16 4.81,7.44 4.81,12.84 0,6.32 -2.27,11.74 -6.8,16.27 -4.53,4.53 -12.2,8.13 -23,10.78 2.29,4.21 6.64,6.32 13.05,6.32 4.12,0 8.81,-1.44 14.08,-4.33 5.26,-2.88 9.82,-6.66 13.66,-11.33 1.1,-1.28 2.33,-1.92 3.71,-1.92 1.18,0.01 2.12,0.55 2.81,1.65 z M 959.66,466.6 c -2.33,3.94 -3.5,8.7 -3.5,14.28 v 0.27 c 5.4,-1.28 9.66,-3.2 12.77,-5.77 3.11,-2.56 4.67,-5.54 4.67,-8.93 0,-1.74 -0.48,-3.14 -1.44,-4.19 -0.96,-1.05 -2.27,-1.58 -3.91,-1.58 -3.4,0.01 -6.26,1.98 -8.59,5.92 z" + id="path2144" /> + </g> +</g> +</svg> diff --git a/docs/assets/logo/theodolite-stacked-transparent.svg b/docs/assets/logo/theodolite-stacked-transparent.svg new file mode 100644 index 0000000000000000000000000000000000000000..9aca32ba7e00ef041ffec2c74f0b90b430153821 --- /dev/null +++ b/docs/assets/logo/theodolite-stacked-transparent.svg @@ -0,0 +1,4329 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Generator: Adobe Illustrator 25.2.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> + +<svg + version="1.1" + id="Layer_2" + x="0px" + y="0px" + viewBox="0 0 542.96 477.54558" + xml:space="preserve" + sodipodi:docname="Theodolite-02_no-background.svg" + width="542.96002" + height="477.54559" + inkscape:version="1.1.1 (eb90963e84, 2021-10-02)" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg"><defs + id="defs2151" /><sodipodi:namedview + id="namedview2149" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageshadow="2" + inkscape:pageopacity="0.0" + inkscape:pagecheckerboard="0" + showgrid="false" + inkscape:zoom="1.0369526" + inkscape:cx="103.66916" + inkscape:cy="238.68016" + inkscape:window-width="2488" + inkscape:window-height="1376" + inkscape:window-x="4552" + inkscape:window-y="27" + inkscape:window-maximized="1" + inkscape:current-layer="Layer_2" /> +<style + type="text/css" + id="style2"> + .st1{fill:#4D4639;} +</style> +<g + id="g2146" + transform="translate(-323.79,-182.20441)"> + <g + id="g2122"> + <g + id="g298"> + <path + class="st1" + d="m 657.07,472.24 c -0.04,-0.66 -0.09,-1.32 -0.15,-1.97 -0.02,-0.19 -0.03,-0.39 -0.05,-0.59 0.41,-0.75 0.46,-1.63 -0.19,-2.48 -0.56,-0.74 -1.42,-1.19 -2.3,-1.52 -1.07,-0.41 -2.19,-0.72 -3.32,-0.97 -1.75,-0.38 -3.7,-0.66 -5.55,-0.53 -0.01,-0.13 -0.01,-0.26 -0.02,-0.38 -0.04,-0.79 -0.08,-1.58 -0.13,-2.37 -0.02,-0.36 -0.04,-0.76 -0.08,-1.15 -0.06,0.03 -0.12,0.04 -0.18,0.07 0.65,-0.48 1.26,-1.02 1.81,-1.62 0.39,-0.43 0.71,-0.92 1,-1.43 0.11,-0.04 0.22,-0.1 0.31,-0.17 0.61,-0.48 0.36,-1.63 0.32,-2.31 -0.04,-0.7 -0.08,-1.4 -0.12,-2.1 -0.03,-0.51 -0.06,-1.03 -0.09,-1.54 0.05,-0.29 0.09,-0.57 0.13,-0.86 0,0 0,-0.01 0,-0.01 -0.08,-0.74 -0.14,-1.48 -0.18,-2.22 -0.33,-1.07 -0.99,-2.05 -1.81,-2.92 -0.03,-0.45 -0.06,-0.89 -0.12,-1.34 -0.12,-1.04 -0.25,-2.13 -0.64,-3.11 -0.14,-0.34 -0.33,-0.71 -0.58,-1.01 0.02,-0.3 -0.01,-0.61 -0.02,-0.9 -0.02,-0.45 -0.04,-0.9 -0.05,-1.36 -0.02,-0.45 -0.05,-0.9 -0.08,-1.36 -0.02,-0.27 -0.06,-0.52 -0.11,-0.79 -0.02,-0.1 -0.03,-0.2 -0.06,-0.3 -0.03,-0.14 -0.11,-0.25 -0.15,-0.38 -0.07,-0.21 -0.28,-0.3 -0.47,-0.27 -0.34,-0.34 -0.8,-0.61 -1.18,-0.77 -0.7,-0.32 -1.43,-0.49 -2.2,-0.51 -0.72,-0.02 -1.47,0.09 -2.15,0.35 -0.67,0.25 -1.74,0.69 -1.93,1.45 -0.09,0.37 0.1,0.64 0.39,0.76 0.03,0.05 0.05,0.1 0.09,0.14 -0.01,0.52 -0.02,1.03 0,1.55 0.03,0.73 0.03,1.47 0.1,2.2 -0.27,0.12 -0.5,0.27 -0.71,0.48 -2.12,-0.53 -4.3,-0.85 -6.47,-1.09 0,-0.11 0,-0.22 0.01,-0.32 0.03,-0.54 0.04,-1.09 0.05,-1.63 0,-0.52 0,-1.05 -0.02,-1.57 -0.01,-0.39 -0.03,-0.88 -0.16,-1.28 0.01,-0.03 0.04,-0.06 0.04,-0.1 0.04,-0.28 -0.09,-0.52 -0.32,-0.68 -0.28,-0.19 -0.66,-0.21 -0.99,-0.28 -0.29,-0.06 -0.59,-0.1 -0.88,-0.14 -0.43,-0.06 -0.9,-0.14 -1.36,-0.13 -0.03,-0.05 -0.05,-0.1 -0.09,-0.14 0.01,-0.13 0.03,-0.27 -0.01,-0.41 -0.07,-0.29 -0.25,-0.5 -0.47,-0.66 0.04,-0.08 0.08,-0.17 0.12,-0.25 0.04,-0.08 0.07,-0.17 0.1,-0.25 0,-0.01 0,-0.01 0.01,-0.02 0.09,-0.17 0.17,-0.35 0.27,-0.52 0.19,-0.34 0.41,-0.66 0.61,-0.99 0.1,-0.16 0.22,-0.32 0.32,-0.48 0.09,-0.14 0.15,-0.22 0.23,-0.33 1.07,-0.59 1.9,-1.66 1.84,-2.92 -0.04,-0.81 -0.45,-1.59 -1.07,-2.1 -0.74,-0.6 -1.57,-0.71 -2.44,-0.31 -0.12,0.06 -0.21,0.14 -0.29,0.23 0.01,-0.13 -0.13,-0.27 -0.28,-0.19 -0.4,0.22 -0.79,0.48 -1.17,0.73 -0.21,-0.22 -0.38,-0.47 -0.6,-0.69 -0.16,-0.16 -0.41,0.09 -0.25,0.25 0.02,0.02 0.04,0.05 0.06,0.08 -0.03,0 -0.07,0.01 -0.1,0.03 -0.19,0.16 -0.37,0.33 -0.56,0.49 -0.3,-0.41 -0.6,-0.83 -0.9,-1.24 -0.16,-0.22 -0.52,-0.01 -0.36,0.21 l 0.93,1.32 c -0.35,0.31 -0.7,0.62 -1.04,0.93 -0.12,-0.18 -0.25,-0.35 -0.37,-0.53 0.32,-0.21 0.65,-0.41 0.99,-0.59 0.2,-0.11 0.02,-0.41 -0.18,-0.31 -0.36,0.18 -0.7,0.38 -1.04,0.58 -0.1,-0.14 -0.2,-0.29 -0.31,-0.43 -0.14,-0.19 -0.45,-0.01 -0.32,0.19 0.1,0.15 0.2,0.3 0.3,0.45 -0.15,0.1 -0.29,0.2 -0.44,0.31 -0.25,-0.17 -0.46,-0.39 -0.69,-0.59 0.03,-0.03 0.05,-0.06 0.08,-0.09 0.19,-0.17 -0.09,-0.45 -0.28,-0.28 -0.04,0.03 -0.07,0.07 -0.11,0.11 -0.07,-0.07 -0.15,-0.12 -0.22,-0.19 -0.29,-0.31 -0.67,-0.25 -0.93,-0.03 -0.03,-0.05 -0.04,-0.11 -0.09,-0.15 -0.2,-0.15 -0.49,-0.14 -0.67,0.04 -0.12,0.12 -0.23,0.24 -0.36,0.35 -0.13,0.11 -0.25,0.23 -0.35,0.36 -0.01,0.01 -0.02,0.03 -0.03,0.04 -0.08,-0.17 -0.2,-0.34 -0.38,-0.48 -0.24,-0.19 -0.54,-0.22 -0.78,0 -0.45,0.42 -0.69,0.97 -1.07,1.41 -0.59,0.06 -1.19,0.26 -1.75,0.39 -0.02,0 -0.04,0.01 -0.06,0.01 0.04,-0.02 0.07,-0.06 0.06,-0.1 0,-0.01 0.02,-0.01 0.02,-0.03 0.01,-0.12 0,-0.25 -0.05,-0.37 -0.05,-0.11 -0.12,-0.21 -0.21,-0.29 -0.08,-0.08 -0.17,-0.14 -0.27,-0.19 0.48,-0.18 0.95,-0.39 1.4,-0.62 0.13,-0.07 0.04,-0.28 -0.1,-0.24 -0.87,0.24 -1.72,0.56 -2.59,0.82 -0.41,0.12 -0.82,0.24 -1.24,0.36 0.04,-0.2 0.1,-0.41 0.18,-0.6 0.05,-0.12 -0.05,-0.25 -0.16,-0.28 -0.13,-0.04 -0.24,0.05 -0.28,0.16 -0.11,0.28 -0.19,0.57 -0.24,0.87 -0.26,0.07 -0.51,0.15 -0.77,0.22 -0.38,0.1 -0.76,0.17 -1.14,0.26 0.01,-0.12 0.01,-0.24 0.03,-0.36 0.05,-0.02 0.11,-0.02 0.15,-0.04 0.12,-0.05 0.13,-0.26 -0.03,-0.26 -0.02,0 -0.04,0.01 -0.06,0.01 0.03,-0.13 0.05,-0.26 0.09,-0.39 0.09,-0.28 -0.35,-0.4 -0.44,-0.12 -0.06,0.19 -0.1,0.39 -0.13,0.59 -0.31,0.06 -0.62,0.11 -0.92,0.18 0.03,-0.15 0.06,-0.3 0.12,-0.44 0.05,-0.12 -0.05,-0.25 -0.16,-0.28 -0.13,-0.04 -0.24,0.04 -0.28,0.16 -0.08,0.21 -0.14,0.43 -0.17,0.65 -0.31,0.05 -0.62,0.09 -0.94,0.14 -0.02,-0.38 -0.04,-0.76 -0.06,-1.14 -0.02,-0.32 -0.52,-0.32 -0.5,0 0.02,0.4 0.04,0.81 0.06,1.21 -0.08,0.01 -0.15,0.02 -0.23,0.03 -0.44,0.05 -0.87,0.09 -1.31,0.13 0.03,-0.22 0.09,-0.44 0.18,-0.65 0.05,-0.11 0.03,-0.24 -0.08,-0.31 -0.1,-0.06 -0.26,-0.03 -0.31,0.08 -0.13,0.29 -0.2,0.61 -0.23,0.92 -0.59,0.04 -1.19,0.07 -1.79,0.09 -0.08,-0.41 -0.07,-0.83 0.05,-1.23 0.08,-0.28 -0.35,-0.4 -0.44,-0.12 -0.14,0.44 -0.16,0.91 -0.09,1.36 -0.44,0.01 -0.88,0.01 -1.33,0 -0.03,-0.18 -0.07,-0.36 -0.1,-0.54 -0.02,-0.09 -0.13,-0.14 -0.21,-0.12 -0.09,0.03 -0.13,0.12 -0.12,0.21 0.03,0.15 0.05,0.3 0.08,0.44 -0.57,-0.02 -1.13,-0.05 -1.69,-0.09 0,-0.25 0.01,-0.51 0.04,-0.76 0.02,-0.11 -0.03,-0.21 -0.14,-0.24 -0.09,-0.03 -0.23,0.03 -0.24,0.14 -0.04,0.28 -0.05,0.55 -0.05,0.83 -0.41,-0.04 -0.83,-0.08 -1.24,-0.13 -0.04,-0.23 -0.09,-0.46 -0.13,-0.7 -0.02,-0.1 -0.14,-0.16 -0.23,-0.13 -0.11,0.03 -0.15,0.13 -0.13,0.23 0.03,0.18 0.07,0.37 0.1,0.55 -0.36,-0.05 -0.73,-0.11 -1.09,-0.16 -0.01,-0.14 -0.03,-0.29 -0.02,-0.43 0.02,-0.26 -0.38,-0.25 -0.4,0 -0.01,0.12 0.01,0.25 0.01,0.37 -0.07,-0.01 -0.13,-0.02 -0.2,-0.03 -0.15,-0.03 -0.22,0.21 -0.07,0.24 0.09,0.02 0.18,0.03 0.27,0.04 0.03,0.23 0.08,0.45 0.16,0.67 0.05,0.14 0.13,0.28 0.2,0.42 -0.13,-0.01 -0.27,-0.01 -0.4,-0.03 -0.32,-0.03 -0.65,-0.08 -0.97,-0.12 -0.03,-0.1 -0.06,-0.2 -0.08,-0.3 -0.07,-0.4 -0.04,-0.81 0.06,-1.2 0.06,-0.22 -0.28,-0.32 -0.34,-0.1 -0.12,0.44 -0.15,0.9 -0.08,1.36 0.01,0.07 0.04,0.13 0.05,0.2 -0.38,-0.05 -0.76,-0.09 -1.14,-0.14 -0.02,-0.1 -0.04,-0.21 -0.08,-0.3 -0.13,-0.3 -0.36,-0.57 -0.65,-0.74 -0.19,-0.12 -0.37,0.18 -0.18,0.3 0.22,0.14 0.39,0.36 0.48,0.59 0.01,0.03 0.02,0.06 0.03,0.1 -0.23,-0.03 -0.46,-0.08 -0.68,-0.12 -0.01,-0.07 -0.02,-0.15 -0.03,-0.22 -0.02,-0.14 -0.04,-0.28 -0.07,-0.42 -0.01,-0.08 -0.12,-0.13 -0.19,-0.11 -0.08,0.02 -0.13,0.11 -0.11,0.19 0.04,0.13 0.08,0.26 0.13,0.39 0.01,0.04 0.03,0.08 0.05,0.13 -0.3,-0.05 -0.61,-0.11 -0.91,-0.17 0,-0.02 0,-0.04 -0.01,-0.06 -0.03,-0.31 -0.07,-0.62 -0.1,-0.93 -0.01,-0.1 -0.08,-0.19 -0.19,-0.19 -0.1,0 -0.2,0.09 -0.19,0.19 0.03,0.31 0.07,0.62 0.1,0.92 -0.28,-0.06 -0.57,-0.1 -0.86,-0.16 -0.2,-0.04 -0.29,0.26 -0.09,0.31 0.33,0.08 0.66,0.15 0.98,0.22 0.01,0.04 0.01,0.08 0.01,0.12 0.01,0.08 0.03,0.16 0.04,0.24 0.01,0.03 0.01,0.07 0.02,0.1 0.02,0.05 0.05,0.08 0.09,0.11 0.01,0.01 0.03,0.01 0.04,0.01 0.02,0.02 0.05,0.04 0.08,0.04 0.14,0 0.17,-0.16 0.1,-0.24 0,-0.02 0.02,-0.04 0.02,-0.07 0,-0.07 -0.01,-0.14 -0.01,-0.21 0,-0.01 0,-0.01 0,-0.02 0.61,0.14 1.21,0.26 1.83,0.37 0,0.02 0,0.03 0,0.05 0,0.1 -0.02,0.18 0.06,0.26 0.05,0.05 0.12,0.05 0.18,0.02 0.1,-0.04 0.12,-0.15 0.13,-0.25 0,-0.01 0,-0.02 0,-0.03 0.41,0.07 0.82,0.14 1.24,0.19 0.08,0.18 0.19,0.39 0.35,0.5 0.06,0.04 0.17,-0.01 0.16,-0.09 -0.01,-0.11 -0.05,-0.23 -0.09,-0.34 0.02,0 0.03,0.01 0.05,0.01 0.51,0.06 1.03,0.09 1.54,0.13 0.06,0.05 0.11,0.1 0.18,0.12 0.07,0.03 0.12,-0.03 0.14,-0.1 0.29,0.02 0.58,0.05 0.87,0.07 0.04,0.01 0.06,0.02 0.09,0 0.45,0.02 0.91,0.02 1.36,0.03 0.03,0.07 0.05,0.15 0.09,0.22 0.05,0.11 0.1,0.23 0.19,0.31 -2.4,-0.09 -4.79,-0.31 -7.17,-0.66 -0.81,-0.12 -1.71,-0.23 -2.59,-0.42 0,0 0,0 0,0 -0.02,-0.14 -0.14,-0.25 -0.22,-0.35 -0.07,-0.1 -0.15,-0.21 -0.2,-0.33 -0.1,-0.22 -0.14,-0.47 -0.12,-0.72 0.01,-0.1 -0.09,-0.18 -0.18,-0.18 -0.1,0 -0.17,0.08 -0.18,0.18 -0.03,0.3 0.03,0.61 0.16,0.88 0.06,0.14 0.14,0.26 0.23,0.37 0.01,0.01 0.02,0.02 0.03,0.03 -1.15,-0.29 -2.24,-0.74 -3.02,-1.55 -0.37,-0.38 -1.06,0.12 -0.75,0.58 0.33,0.47 0.7,0.88 1.12,1.25 -0.02,0.19 -0.05,0.37 -0.07,0.56 -0.33,-0.1 -0.66,-0.22 -0.98,-0.38 -0.02,-0.01 -0.04,-0.03 -0.06,-0.04 0.03,-0.22 0.06,-0.44 0.11,-0.66 0.05,-0.23 -0.3,-0.33 -0.35,-0.1 -0.04,0.18 -0.07,0.37 -0.1,0.55 -0.26,-0.16 -0.51,-0.34 -0.75,-0.53 0.04,-0.33 0.09,-0.66 0.06,-0.98 -0.01,-0.08 -0.07,-0.13 -0.13,-0.14 -0.18,-0.44 -0.81,-0.65 -1.14,-0.24 -0.06,-0.1 -0.14,-0.2 -0.2,-0.3 -0.12,-0.22 -0.46,-0.03 -0.34,0.2 0.1,0.18 0.21,0.35 0.33,0.52 -0.11,0.25 -0.22,0.5 -0.31,0.77 -0.33,-0.64 -0.73,-1.25 -1.23,-1.78 -0.59,-0.62 -1.47,0.22 -1.05,0.88 -0.32,0.27 -0.64,0.53 -0.95,0.8 -0.33,-0.36 -0.66,-0.72 -0.98,-1.09 0.1,-0.09 0.2,-0.18 0.3,-0.28 0.15,-0.14 -0.07,-0.36 -0.22,-0.22 -0.27,0.24 -0.54,0.48 -0.8,0.72 -0.16,-0.15 -0.33,-0.29 -0.5,-0.42 -0.13,-0.09 -0.26,-0.17 -0.39,-0.26 0.06,-0.05 0.12,-0.1 0.18,-0.15 0.18,-0.15 -0.08,-0.4 -0.25,-0.25 -0.08,0.07 -0.17,0.13 -0.25,0.2 -3.13,-1.85 -7.45,-1.64 -10.18,0.66 -0.07,-0.05 -0.14,-0.1 -0.22,-0.15 0.34,-0.24 0.68,-0.48 1.02,-0.72 0.15,-0.11 0.01,-0.36 -0.15,-0.25 -0.39,0.26 -0.77,0.53 -1.16,0.8 -0.31,-0.2 -0.63,-0.39 -0.96,-0.58 0.01,-0.01 0.03,-0.03 0.04,-0.04 0.07,-0.06 -0.02,-0.18 -0.1,-0.13 -0.04,0.02 -0.07,0.04 -0.11,0.06 -0.18,-0.11 -0.35,-0.22 -0.53,-0.32 -0.2,-0.11 -0.38,0.19 -0.18,0.31 0.11,0.06 0.21,0.14 0.32,0.2 -0.3,0.2 -0.59,0.42 -0.87,0.65 -0.13,-0.1 -0.27,-0.2 -0.4,-0.3 0.12,-0.21 0.24,-0.42 0.37,-0.63 0.27,-0.46 -0.29,-1.09 -0.77,-0.77 -1.29,0.88 -2.08,2.44 -2.46,3.93 -0.39,1.52 -0.38,3.16 0.07,4.66 0.43,1.45 1.24,2.78 2.31,3.84 0.14,0.14 0.3,0.29 0.46,0.43 -0.66,-0.24 -1.39,-0.35 -2.1,-0.33 -0.77,0.02 -1.5,0.19 -2.2,0.51 -0.38,0.17 -0.83,0.44 -1.18,0.77 -0.19,-0.03 -0.4,0.05 -0.47,0.27 -0.04,0.13 -0.11,0.24 -0.15,0.38 -0.02,0.1 -0.04,0.2 -0.06,0.3 -0.05,0.26 -0.09,0.52 -0.11,0.79 -0.03,0.45 -0.07,0.9 -0.08,1.36 -0.02,0.45 -0.04,0.9 -0.05,1.36 -0.01,0.29 -0.04,0.6 -0.02,0.9 -0.25,0.3 -0.44,0.67 -0.58,1.01 -0.39,0.98 -0.52,2.07 -0.64,3.11 -0.05,0.38 -0.07,0.76 -0.1,1.15 -0.07,-0.01 -0.14,-0.03 -0.22,-0.01 -1.71,0.66 -2.5,2.21 -2.48,3.91 0.01,0.6 0.14,1.17 0.34,1.73 0,0.56 0.01,1.12 0.03,1.69 0.04,1.1 0.08,2.19 0.11,3.29 -0.09,0.15 -0.1,0.35 0.02,0.51 0,0.02 0,0.04 0,0.06 0.02,0.54 0.45,0.81 0.88,0.81 0.92,0.82 1.95,1.53 3.04,2.17 -0.17,0.6 -0.18,1.28 -0.21,1.88 -0.05,0.79 -0.08,1.58 -0.12,2.37 -0.01,0.13 -0.01,0.26 -0.02,0.38 -1.74,-0.12 -3.56,0.15 -5.2,0.53 -1.05,0.25 -2.11,0.55 -3.11,0.97 -0.82,0.34 -1.63,0.78 -2.15,1.52 -0.6,0.85 -0.56,1.73 -0.17,2.48 -0.02,0.2 -0.03,0.4 -0.04,0.59 -0.05,0.66 -0.11,1.32 -0.14,1.97 -0.03,0.63 -0.06,1.27 -0.08,1.9 -0.02,0.69 -0.09,1.35 0.16,2 0.14,0.38 0.49,0.5 0.79,0.42 0.6,0.8 1.46,1.44 2.38,1.86 1.7,0.76 3.6,0.98 5.47,1.15 -0.11,0.28 -0.17,0.59 -0.21,0.86 -0.06,0.35 -0.07,0.7 -0.1,1.06 -0.57,0.52 -0.98,1.19 -1.23,1.96 -0.14,0.07 -0.25,0.18 -0.31,0.36 -0.62,1.82 -0.71,3.84 -0.56,5.75 0.08,0.97 0.21,1.93 0.41,2.88 0.09,0.45 0.2,0.9 0.33,1.34 0.07,0.26 0.14,0.56 0.28,0.79 0.14,0.24 0.35,0.37 0.54,0.55 0.05,0.04 0.11,0.06 0.17,0.09 2.24,2.47 5.15,4.16 7.92,5.6 3.24,1.69 6.74,2.67 10.21,3.47 7.71,1.77 15.56,2.93 23.4,3.44 8.01,0.52 16.06,0.36 24.04,-0.65 7.9,-1 15.8,-2.74 23.39,-5.59 3.3,-1.24 6.75,-2.84 9.18,-5.89 0.43,-0.54 0.8,-1.18 1.12,-1.84 0.23,-0.3 0.37,-0.61 0.45,-1.04 0.1,-0.49 0.17,-0.99 0.24,-1.48 0.13,-1.01 0.2,-2.02 0.19,-3.04 -0.01,-0.89 -0.1,-1.76 -0.23,-2.63 0,-0.03 0.01,-0.06 0.01,-0.09 0,0 0,0 0,0 0,0 0,0 0,-0.01 -0.06,-0.9 -0.11,-1.79 -0.14,-2.69 -0.39,-1.61 -1.27,-3.04 -2.37,-4.29 -0.02,-0.2 -0.02,-0.41 -0.06,-0.61 -0.05,-0.27 -0.12,-0.57 -0.23,-0.86 1.99,-0.17 4.02,-0.38 5.83,-1.15 0.98,-0.41 1.9,-1.05 2.54,-1.86 0.33,0.08 0.69,-0.04 0.84,-0.42 0.27,-0.66 0.2,-1.31 0.17,-2 0.05,-0.62 0.02,-1.26 -0.01,-1.89 z m -9.68,-6.63 c 1.12,0.16 2.25,0.37 3.35,0.65 1.06,0.27 2.12,0.59 3.13,1 0.57,0.24 1.53,0.65 1.55,1.34 0.01,0.62 -0.73,1.01 -1.24,1.25 -0.79,0.37 -1.69,0.57 -2.54,0.78 -1.95,0.49 -3.93,0.85 -5.94,1.05 -4.01,0.4 -8.09,0.24 -12.04,-0.5 -1.81,-0.34 -3.79,-0.7 -5.46,-1.44 -0.13,-0.06 -0.27,-0.12 -0.4,-0.2 0,-0.03 0.01,-0.05 0.01,-0.08 0.01,-0.08 0.02,-0.16 0.03,-0.23 0.03,-0.16 0.08,-0.32 0.15,-0.47 0.13,-0.3 0.32,-0.57 0.56,-0.79 0.11,-0.1 -0.05,-0.27 -0.17,-0.17 -0.26,0.24 -0.48,0.53 -0.62,0.86 -0.07,0.16 -0.13,0.33 -0.17,0.5 -0.01,0.06 -0.03,0.14 -0.04,0.21 -0.29,-0.23 -0.47,-0.53 -0.33,-0.91 0.22,-0.58 1.01,-0.97 1.57,-1.22 1.78,-0.79 3.9,-1.17 5.83,-1.47 0.55,-0.08 1.1,-0.12 1.66,-0.17 l -0.03,1.44 c -0.67,-0.12 -1.4,0.27 -1.61,0.94 -0.1,0.32 -0.07,0.68 0.06,0.98 0.13,0.29 0.38,0.58 0.7,0.65 0.09,0.02 0.17,-0.09 0.1,-0.17 -0.1,-0.09 -0.2,-0.17 -0.27,-0.28 -0.06,-0.1 -0.14,-0.2 -0.18,-0.31 -0.1,-0.24 -0.13,-0.5 -0.06,-0.75 0.15,-0.49 0.69,-0.83 1.19,-0.75 0.03,0 0.04,-0.01 0.07,-0.02 l -0.01,0.51 c 0,0 -0.01,0 -0.01,0 -0.33,-0.09 -0.66,0.22 -0.56,0.53 0.1,0.3 0.14,0.56 0.36,0.81 0.18,0.21 0.4,0.39 0.63,0.55 0.48,0.32 1.04,0.55 1.59,0.73 1.08,0.37 2.28,0.48 3.42,0.35 1.18,-0.13 2.34,-0.49 3.3,-1.16 0.54,-0.37 1.02,-0.84 1.13,-1.48 0.08,-0.47 -0.05,-0.97 -0.44,-1.22 -0.02,-0.28 -0.04,-0.55 -0.05,-0.82 -0.01,-0.25 -0.02,-0.49 -0.03,-0.74 0.6,0.08 1.21,0.13 1.81,0.22 z m -13.44,14 c -0.08,0.35 -0.12,0.72 -0.13,1.09 -0.23,-0.42 -0.52,-0.81 -0.89,-1.12 -0.16,-0.13 -0.39,0.1 -0.23,0.23 0.47,0.4 0.84,0.91 1.06,1.49 0.03,0.08 0.04,0.16 0.06,0.25 0,0.14 0,0.28 0,0.42 -0.01,0.44 -0.03,0.88 -0.03,1.32 0,0.47 -0.05,0.96 0.05,1.42 0.04,0.19 0.17,0.33 0.33,0.42 -0.04,0.03 -0.07,0.08 -0.06,0.15 0.1,0.69 -0.06,1.41 -0.41,2.02 -0.02,0.03 -0.04,0.04 -0.06,0.07 -0.72,0.01 -1.45,0.06 -2.16,0.15 -0.21,0.03 -0.21,0.36 0,0.34 0.62,-0.08 1.25,-0.11 1.87,-0.13 -0.33,0.39 -0.7,0.73 -1.15,0.98 -0.13,0.07 -0.04,0.28 0.1,0.24 0.66,-0.2 1.18,-0.66 1.55,-1.23 0.6,0 1.2,0.03 1.79,0.09 -0.06,0.06 -0.1,0.13 -0.16,0.18 -0.11,0.09 -0.21,0.19 -0.33,0.27 -0.13,0.09 -0.27,0.15 -0.39,0.26 -0.08,0.07 -0.02,0.23 0.09,0.22 0.31,-0.02 0.64,-0.25 0.87,-0.44 0.15,-0.12 0.25,-0.28 0.37,-0.43 0.62,0.08 1.25,0.16 1.86,0.28 0.01,0 0.03,0.01 0.04,0.01 -0.03,0.04 -0.07,0.09 -0.1,0.13 -0.08,0.1 -0.15,0.18 -0.18,0.3 -0.04,0.13 0.11,0.24 0.23,0.18 0.1,-0.06 0.16,-0.13 0.23,-0.22 0.07,-0.09 0.14,-0.17 0.21,-0.26 0.01,-0.01 0.02,-0.02 0.03,-0.03 0.21,0.05 0.43,0.08 0.63,0.15 0.35,0.12 0.68,0.3 1.04,0.39 0.13,0.03 0.21,-0.15 0.09,-0.22 -0.31,-0.16 -0.64,-0.22 -0.98,-0.32 -0.21,-0.06 -0.42,-0.13 -0.63,-0.2 0.08,-0.09 0.15,-0.19 0.23,-0.28 0.07,-0.09 0.14,-0.18 0.21,-0.27 0.72,0.02 1.45,0 2.12,-0.01 0.34,0 0.7,-0.01 1.07,-0.01 -0.07,0.06 -0.13,0.11 -0.2,0.17 -0.11,0.1 -0.22,0.2 -0.34,0.29 -0.06,0.05 -0.12,0.1 -0.18,0.16 -0.06,0.05 -0.11,0.12 -0.16,0.18 -0.06,0.07 -0.07,0.16 -0.01,0.24 0.05,0.07 0.15,0.09 0.23,0.05 0.07,-0.04 0.14,-0.08 0.21,-0.13 0.06,-0.05 0.12,-0.1 0.18,-0.15 0.12,-0.1 0.24,-0.2 0.36,-0.3 0.21,-0.17 0.41,-0.35 0.62,-0.52 1.04,-0.04 2.1,-0.15 2.97,-0.55 0.9,-0.41 1.82,-1.29 1.9,-2.27 0.12,-0.34 0.2,-0.7 0.25,-1.03 0.08,-0.45 0.1,-0.9 0.11,-1.35 0.23,0.69 0.41,1.41 0.5,2.15 -0.12,0.13 -0.2,0.31 -0.15,0.55 0.07,0.31 0.1,0.64 0.15,0.95 0,0.03 0.01,0.06 0.01,0.1 -0.01,0.12 -0.01,0.25 -0.03,0.37 0.23,2.07 -0.86,4.01 -2.2,5.33 -1.67,1.64 -3.86,2.52 -5.91,3.36 -4.4,1.81 -8.93,3.21 -13.52,4.25 -9.19,2.09 -18.58,2.72 -27.94,2.6 -4.72,-0.06 -9.44,-0.32 -14.15,-0.69 -4.74,-0.37 -9.47,-0.89 -14.14,-1.86 -4.61,-0.96 -9.17,-2.34 -13.5,-4.36 -3.03,-1.41 -7.01,-4.03 -6.07,-8.3 0.03,0.17 0.09,0.32 0.14,0.48 0.08,0.98 0.94,1.86 1.78,2.27 1.3,0.63 3.05,0.57 4.46,0.59 0.64,0.01 1.33,0.03 2.01,0.01 0,0 0,0.01 0,0.01 0.11,0.27 0.2,0.55 0.34,0.81 0.08,0.15 0.29,0.04 0.26,-0.11 -0.06,-0.25 -0.15,-0.49 -0.24,-0.73 0.68,-0.04 1.36,-0.13 1.98,-0.34 0.31,0.55 0.69,1.06 1.14,1.51 0.23,0.23 0.47,0.43 0.73,0.62 0.25,0.18 0.53,0.36 0.82,0.46 0.1,0.03 0.18,-0.11 0.1,-0.18 -0.23,-0.19 -0.49,-0.35 -0.73,-0.54 -0.24,-0.18 -0.48,-0.39 -0.69,-0.6 -0.16,-0.16 -0.31,-0.33 -0.45,-0.51 0.08,0.02 0.18,-0.05 0.12,-0.14 -0.04,-0.07 -0.08,-0.15 -0.13,-0.21 -0.05,-0.07 -0.1,-0.13 -0.15,-0.2 -0.1,-0.13 -0.2,-0.26 -0.29,-0.39 0.48,-0.21 0.91,-0.51 1.17,-0.97 0.13,-0.22 0.25,-0.51 0.31,-0.8 0.17,-0.04 0.32,-0.13 0.42,-0.27 0,0 0,0.01 0,0.01 l 0.51,0.91 c 0.08,0.15 0.17,0.3 0.25,0.45 0.04,0.07 0.08,0.14 0.12,0.21 0.05,0.08 0.11,0.15 0.17,0.22 0.06,0.07 0.18,-0.01 0.15,-0.09 -0.06,-0.17 -0.13,-0.32 -0.21,-0.48 -0.08,-0.15 -0.17,-0.3 -0.25,-0.45 -0.17,-0.3 -0.34,-0.61 -0.51,-0.91 -0.04,-0.07 -0.1,-0.07 -0.16,-0.05 0.01,-0.03 0.02,-0.04 0.03,-0.07 0.09,-0.46 0.04,-0.95 0.04,-1.42 0,-0.44 -0.02,-0.88 -0.03,-1.32 0,-0.2 0,-0.41 0,-0.62 0.46,0.02 0.93,0.04 1.39,0.06 -0.02,0.06 -0.05,0.11 -0.06,0.17 -0.08,0.28 -0.17,0.6 -0.16,0.89 0,0.05 0.07,0.06 0.08,0.01 0.08,-0.27 0.11,-0.55 0.19,-0.82 0.03,-0.09 0.06,-0.17 0.09,-0.25 1.06,0.05 2.13,0.1 3.19,0.15 0.91,0.04 1.83,0.07 2.74,0.1 0.1,0 0.2,0.01 0.3,0.02 -0.09,0.19 -0.18,0.38 -0.24,0.58 -0.03,0.1 0.11,0.15 0.16,0.07 0.15,-0.21 0.29,-0.42 0.43,-0.63 0.64,0.04 1.28,0.07 1.92,0.07 -0.01,0.07 -0.02,0.14 -0.02,0.21 -0.1,0.15 -0.18,0.31 -0.27,0.47 -0.05,0.08 0.07,0.15 0.13,0.07 0.04,-0.06 0.09,-0.12 0.13,-0.18 0.01,0.6 0.15,1.2 0.39,1.75 -0.46,0.16 -0.91,0.34 -1.36,0.5 -0.1,0.03 -0.2,0.06 -0.3,0.09 0,-0.07 -0.04,-0.14 -0.12,-0.14 -0.07,0 -0.14,0.02 -0.21,0.03 -0.17,-0.6 -0.2,-1.24 -0.05,-1.85 0.05,-0.21 -0.27,-0.3 -0.33,-0.09 -0.03,0.11 -0.04,0.23 -0.06,0.34 -1.01,-0.09 -2.03,-0.04 -3.04,-0.04 -0.62,0 -1.23,0 -1.85,0 -0.03,-0.34 -0.01,-0.68 0.07,-1.02 0.05,-0.21 -0.27,-0.3 -0.32,-0.09 -0.08,0.36 -0.11,0.74 -0.08,1.11 -0.3,0 -0.61,0 -0.91,0 -0.19,0 -0.19,0.29 0,0.29 0.31,0 0.63,0 0.94,0 0.05,0.34 0.13,0.67 0.27,0.98 0.25,0.6 0.7,1.23 1.27,1.59 -0.61,0.11 -1.22,0.19 -1.84,0.26 -0.34,-0.43 -0.67,-0.86 -0.93,-1.34 -0.33,-0.59 -0.57,-1.23 -0.73,-1.89 -0.05,-0.22 -0.39,-0.13 -0.33,0.09 0.16,0.69 0.42,1.36 0.76,1.98 0.25,0.45 0.56,0.86 0.91,1.24 -0.09,0.08 -0.07,0.26 0.08,0.24 0.04,0 0.09,-0.01 0.13,-0.02 0.06,0.06 0.11,0.13 0.18,0.19 0.12,0.1 0.27,-0.05 0.17,-0.17 -0.02,-0.02 -0.03,-0.04 -0.05,-0.06 1.08,-0.13 2.16,-0.32 3.23,-0.55 0.22,0.31 0.43,0.63 0.66,0.93 0.06,0.07 0.18,0.01 0.13,-0.07 -0.2,-0.3 -0.41,-0.6 -0.62,-0.89 0.26,-0.06 0.53,-0.1 0.79,-0.17 0.45,-0.11 0.9,-0.25 1.34,-0.38 0.02,0.04 0.03,0.09 0.05,0.14 0.38,0.83 1.02,1.46 1.84,1.83 -0.06,0.02 -0.12,0.05 -0.18,0.07 -0.45,0.16 -0.89,0.33 -1.34,0.49 -0.93,0.34 -1.86,0.68 -2.79,1.02 -0.17,0.06 -0.1,0.33 0.07,0.27 0.95,-0.33 1.9,-0.67 2.85,-1 0.47,-0.16 0.93,-0.32 1.4,-0.49 0.46,-0.16 0.94,-0.29 1.36,-0.54 0.13,-0.08 0.04,-0.24 -0.09,-0.22 -0.35,0.05 -0.68,0.17 -1.01,0.3 0,-0.05 -0.01,-0.09 -0.05,-0.13 0.33,-0.25 0.69,-0.46 1.07,-0.6 0.18,-0.07 0.38,-0.12 0.57,-0.17 0.62,0.54 1.33,1 2.08,1.33 0.07,0.03 0.15,0.06 0.23,0.09 -0.24,0.01 -0.49,0.06 -0.69,0.1 -0.36,0.07 -0.72,0.16 -1.08,0.27 -0.7,0.23 -1.36,0.55 -1.98,0.96 -0.2,0.13 -0.01,0.45 0.19,0.32 0.6,-0.39 1.24,-0.7 1.92,-0.92 0.33,-0.1 0.67,-0.19 1.01,-0.25 0.32,-0.06 0.73,-0.03 1.02,-0.19 0.05,-0.03 0.06,-0.07 0.06,-0.12 0.68,0.28 1.38,0.53 2.1,0.66 0.08,0.01 0.15,-0.1 0.06,-0.15 -0.8,-0.43 -1.68,-0.69 -2.5,-1.08 -0.67,-0.32 -1.32,-0.71 -1.91,-1.18 0,0 0.01,0 0,0 -0.02,0.01 0.05,-0.01 0.06,-0.01 0.06,-0.02 0.1,-0.04 0.15,-0.08 0.05,-0.05 0.03,-0.13 -0.02,-0.17 0.13,0.1 0.26,0.19 0.4,0.28 -0.01,0.04 -0.01,0.08 0.01,0.12 0.05,0.08 0.13,0.09 0.21,0.05 0.01,0 0.02,-0.01 0.03,-0.01 0.91,0.58 1.94,0.98 2.96,1.29 1.13,0.34 2.27,0.64 3.42,0.92 -0.23,0.1 -0.47,0.19 -0.7,0.3 -0.71,0.31 -1.42,0.62 -2.13,0.92 -0.21,0.09 -0.06,0.45 0.15,0.36 0.72,-0.29 1.43,-0.58 2.15,-0.87 0.36,-0.14 0.71,-0.3 1.07,-0.44 0.08,-0.03 0.15,-0.06 0.23,-0.09 1.11,0.26 2.23,0.49 3.35,0.69 0,0.07 0.03,0.13 0.11,0.16 0.5,0.2 1,0.4 1.5,0.6 0.49,0.19 1,0.39 1.51,0.54 0.13,0.04 0.21,-0.16 0.09,-0.22 -0.48,-0.24 -0.99,-0.45 -1.48,-0.65 -0.18,-0.07 -0.36,-0.15 -0.54,-0.22 1.08,0.18 2.17,0.34 3.26,0.47 4.07,0.49 8.17,0.6 12.26,0.34 3.65,-0.23 7.38,-0.65 10.89,-1.72 0.72,-0.22 1.43,-0.48 2.12,-0.76 0.27,0.11 0.54,0.22 0.81,0.33 0.28,0.11 0.55,0.23 0.83,0.34 0.27,0.11 0.58,0.26 0.88,0.31 0.16,0.02 0.24,-0.16 0.11,-0.26 -0.23,-0.17 -0.55,-0.28 -0.82,-0.39 -0.29,-0.12 -0.58,-0.24 -0.86,-0.36 -0.15,-0.06 -0.29,-0.12 -0.44,-0.18 0.51,-0.22 1,-0.48 1.48,-0.75 0.63,0.1 1.26,0.21 1.89,0.31 0.32,0.05 0.64,0.11 0.96,0.15 0.31,0.04 0.64,0.11 0.95,0.06 0.11,-0.02 0.12,-0.19 0.03,-0.23 -0.28,-0.14 -0.6,-0.18 -0.9,-0.23 -0.32,-0.06 -0.65,-0.1 -0.97,-0.15 -0.48,-0.07 -0.95,-0.14 -1.43,-0.22 0.1,-0.06 0.2,-0.11 0.3,-0.17 0.77,-0.49 1.53,-1.05 2.16,-1.71 0.5,-0.53 0.86,-1.08 1.14,-1.71 0.04,-0.07 0.09,-0.13 0.13,-0.2 0.21,-0.4 0.39,-0.84 0.48,-1.29 0.05,-0.24 0.08,-0.48 0.06,-0.73 -0.01,-0.12 -0.02,-0.26 -0.04,-0.38 0.21,-0.02 0.42,-0.05 0.63,-0.06 0,0.03 -0.01,0.06 0.01,0.09 0.23,0.43 0.33,0.9 0.35,1.38 -0.26,-0.01 -0.53,-0.01 -0.79,-0.02 -0.22,-0.01 -0.21,0.32 0,0.34 0.27,0.01 0.54,0.03 0.81,0.05 -0.02,0.3 -0.08,0.58 -0.16,0.87 -0.03,0.11 -0.09,0.21 -0.14,0.31 -0.1,0 -0.21,-0.01 -0.31,-0.01 -0.25,-0.01 -0.24,0.37 0,0.38 0.05,0 0.1,0.01 0.15,0.01 -0.02,0.04 -0.04,0.09 -0.06,0.13 -0.06,0.14 0.1,0.31 0.23,0.18 0.08,-0.08 0.15,-0.19 0.21,-0.29 0.42,0.03 0.85,0.05 1.27,0.08 -0.01,0.02 -0.02,0.04 -0.02,0.05 -0.12,0.26 -0.23,0.53 -0.34,0.79 -0.09,0.22 -0.19,0.45 -0.27,0.68 -0.02,0.01 -0.05,0.01 -0.07,0.02 -0.39,0.09 -0.79,0.16 -1.19,0.19 -0.81,0.07 -1.63,0.03 -2.43,-0.13 -0.27,-0.05 -0.39,0.36 -0.12,0.42 0.85,0.18 1.72,0.25 2.59,0.18 0.43,-0.03 0.86,-0.1 1.28,-0.19 0.38,-0.08 0.82,-0.2 1.12,-0.47 0.09,-0.08 0.02,-0.23 -0.1,-0.23 -0.25,-0.01 -0.51,0.06 -0.77,0.12 0.08,-0.16 0.16,-0.32 0.23,-0.48 0.12,-0.26 0.23,-0.52 0.35,-0.78 0.02,-0.06 0.05,-0.11 0.07,-0.17 0.01,0 0.02,0 0.03,0 0.36,0.02 0.71,0.05 1.07,0.07 0.18,0.01 0.36,0.02 0.53,0.03 0.19,0.01 0.35,0.04 0.52,-0.05 0.15,-0.07 0.13,-0.29 0,-0.36 -0.16,-0.1 -0.34,-0.08 -0.52,-0.09 -0.16,-0.01 -0.33,-0.01 -0.49,-0.02 l -0.95,-0.03 c 0.14,-0.33 0.29,-0.66 0.43,-0.99 0.02,-0.05 0.02,-0.09 0,-0.13 0.37,0.02 0.74,0.04 1.12,0.06 0.34,0.02 0.68,0.04 1.02,0.05 -0.04,0.56 -0.21,1.11 -0.5,1.6 -0.21,0.35 -0.48,0.67 -0.79,0.94 -0.33,0.29 -0.7,0.46 -1.09,0.67 -0.13,0.07 -0.03,0.24 0.09,0.22 0.43,-0.08 0.84,-0.35 1.17,-0.63 0.35,-0.29 0.65,-0.68 0.87,-1.08 0.28,-0.52 0.44,-1.11 0.46,-1.7 0.25,0.01 0.5,0.03 0.75,0.04 0.34,0.02 0.68,0.04 1.02,0.05 0.13,0 0.25,-0.01 0.38,-0.01 -0.23,1.04 -0.78,2.01 -1.58,2.72 -0.11,0.1 0.04,0.29 0.16,0.2 0.81,-0.61 1.37,-1.41 1.67,-2.38 0.06,-0.18 0.09,-0.37 0.13,-0.56 0.11,-0.01 0.22,0 0.33,-0.01 0.17,-0.01 0.24,-0.29 0.04,-0.33 -0.11,-0.02 -0.21,-0.03 -0.32,-0.04 0.07,-0.61 0.02,-1.24 -0.14,-1.83 0.29,0.03 0.6,0.05 0.87,-0.02 0.2,-0.05 0.16,-0.3 0,-0.36 -0.28,-0.12 -0.62,-0.13 -0.95,-0.13 0,-0.01 0,-0.01 0,-0.02 -0.06,-0.44 -0.2,-0.86 -0.4,-1.26 -0.39,-0.79 -1.04,-1.46 -1.83,-1.85 -0.18,-0.09 -0.35,0.18 -0.16,0.28 0.23,0.12 0.41,0.3 0.61,0.46 -0.4,0.01 -0.8,0.05 -1.19,0.07 -0.44,0.03 -0.87,0.06 -1.31,0.09 -0.27,-0.32 -0.57,-0.61 -0.9,-0.88 0.35,-0.1 0.7,-0.2 1.05,-0.3 0.23,0.24 0.46,0.49 0.7,0.72 0.11,0.1 0.28,-0.03 0.21,-0.16 -0.14,-0.24 -0.32,-0.46 -0.51,-0.67 0,0 0,0 0.01,0 0.29,-0.08 0.62,-0.16 0.94,-0.26 0.44,0.16 0.89,0.32 1.32,0.46 0.98,0.35 1.94,0.55 2.9,0.72 z m 4.01,0.43 c -0.02,0.34 -0.03,0.68 -0.05,1.02 0,0.03 0,0.06 0,0.1 -0.28,-0.01 -0.56,-0.04 -0.82,-0.1 0.01,-0.35 0.06,-0.71 0.13,-1.06 0.24,0.01 0.49,0.03 0.74,0.04 z m 1.86,0.03 c 0.02,0.32 0.04,0.63 0.05,0.95 0,0 0,0 0,0 -0.43,0.04 -0.97,0.11 -1.53,0.13 0,-0.01 0,-0.03 0,-0.04 0.01,-0.35 0.02,-0.7 0.03,-1.05 0.49,0.01 0.97,0.01 1.45,0.01 z m 5.35,4.66 c 0.01,0.14 0.01,0.28 0.08,0.4 0.07,0.12 0.24,0.12 0.31,0 0.08,-0.12 0.07,-0.26 0.08,-0.4 0.01,-0.13 0.01,-0.25 0.01,-0.38 0,-0.16 0,-0.31 -0.01,-0.47 0.3,-0.2 0.59,-0.42 0.87,-0.66 -0.01,0.04 -0.01,0.08 -0.01,0.12 -0.1,0.49 -0.32,0.98 -0.34,1.47 0,0.01 0,0.01 0,0.02 -0.07,0.07 -0.11,0.15 -0.19,0.21 -0.39,0.29 -0.95,0.39 -1.43,0.49 -0.42,0.08 -0.85,0.12 -1.29,0.15 0.03,-0.16 0.02,-0.34 0.03,-0.48 0,-0.09 0.01,-0.17 0.01,-0.26 0.02,0 0.04,-0.01 0.06,-0.01 0.63,-0.17 1.24,-0.42 1.8,-0.74 0,0.04 0,0.08 0,0.12 0.01,0.15 0.01,0.28 0.02,0.42 z m -7.04,3.22 c -0.01,0 -0.02,-0.01 -0.03,-0.01 -0.58,-0.17 -1.17,-0.29 -1.77,-0.39 0,-0.01 0.01,-0.01 0.01,-0.01 0.07,-0.11 0.1,-0.24 0.15,-0.36 0.63,0.19 1.3,0.28 1.99,0.32 -0.01,0.01 -0.01,0.02 -0.02,0.02 -0.11,0.15 -0.22,0.29 -0.33,0.43 z m -2.15,-7.03 c 0.2,0.16 0.44,0.26 0.69,0.35 0,0.13 0,0.26 0,0.39 -0.23,-0.06 -0.46,-0.13 -0.68,-0.2 0,-0.19 -0.01,-0.36 -0.01,-0.54 z m 6.82,1.24 c 0.01,0.07 0.03,0.14 0.04,0.21 -0.2,0.01 -0.39,0.02 -0.59,0.03 0,0 0,0 -0.01,0 0,-0.35 0,-0.71 0,-1.06 0,-0.08 0,-0.16 0,-0.24 0.04,-0.01 0.08,-0.01 0.13,-0.01 0.13,-0.02 0.26,-0.04 0.39,-0.06 -0.02,0.37 -0.02,0.75 0.04,1.13 z m 0.02,2.21 c 0,0.05 -0.01,0.1 -0.01,0.15 -0.46,0.1 -0.92,0.19 -1.38,0.21 -0.32,0.02 -0.63,0.01 -0.94,-0.01 0.04,-0.06 0.04,-0.16 -0.06,-0.15 -0.21,0.02 -0.42,0.06 -0.62,0.1 -0.06,0 -0.11,-0.01 -0.17,-0.01 -0.06,0 -0.1,0.03 -0.12,0.07 -0.2,0.04 -0.39,0.08 -0.59,0.12 -0.04,0.01 -0.08,0.02 -0.12,0.02 -0.04,-0.35 -0.04,-0.7 0.02,-1.04 1.07,0.11 2.19,0.17 3.23,-0.06 0.11,-0.03 0.08,-0.14 0.01,-0.19 0.03,-0.01 0.07,-0.02 0.08,-0.05 0.11,-0.21 0.11,-0.46 0.11,-0.71 0.23,0 0.45,-0.03 0.68,-0.04 0,0 0,0.01 0,0.01 -0.05,0.51 -0.08,1.05 -0.12,1.58 z m -5.35,1.02 c 0.3,-0.06 0.6,-0.12 0.91,-0.18 0.03,0.18 0.1,0.35 0.15,0.52 -0.39,-0.03 -0.77,-0.06 -1.14,-0.14 -0.44,-0.09 -0.78,-0.26 -1.12,-0.48 -0.01,-0.11 -0.03,-0.23 -0.04,-0.34 -0.03,-0.27 -0.06,-0.54 -0.09,-0.81 -0.02,-0.2 -0.03,-0.39 -0.05,-0.59 0.29,0.07 0.58,0.12 0.87,0.18 0.08,0.28 0.17,0.57 0.34,0.79 0.12,0.16 0.35,0.07 0.32,-0.13 -0.03,-0.19 -0.09,-0.38 -0.15,-0.57 0.14,0.02 0.28,0.05 0.42,0.07 0.06,0.12 0.22,0.17 0.3,0.05 0.04,0 0.08,0.02 0.12,0.02 0.03,0 0.06,0.01 0.09,0.01 -0.06,0.39 -0.07,0.78 -0.03,1.18 -0.32,0.06 -0.64,0.13 -0.95,0.19 -0.18,0.01 -0.11,0.26 0.05,0.23 z m -2.05,-2.09 c 0,-0.03 0,-0.07 0,-0.1 0.07,0.02 0.14,0.04 0.21,0.06 0.02,0.26 0.03,0.51 0.06,0.77 0.03,0.25 0.06,0.5 0.11,0.75 0,0.02 0.01,0.05 0.01,0.07 -0.1,-0.06 -0.2,-0.12 -0.29,-0.2 -0.05,-0.04 -0.08,-0.08 -0.12,-0.13 0.04,-0.4 0.02,-0.82 0.02,-1.22 z m 1.88,-0.16 c -0.09,-0.34 -0.15,-0.68 -0.19,-1.02 0.25,0.07 0.49,0.13 0.74,0.18 0,0.01 0,0.01 0,0.02 -0.01,0.33 -0.03,0.67 -0.02,1 -0.17,-0.02 -0.33,-0.05 -0.5,-0.07 0,-0.03 -0.02,-0.07 -0.03,-0.11 z m 4.6,0.38 c 0,0.01 0.01,0 0.02,0.01 -0.52,-0.04 -1.04,-0.02 -1.57,-0.03 0.04,-0.23 0.04,-0.47 0.02,-0.7 0,-0.03 0,-0.06 0,-0.09 0.47,0.04 0.94,0.07 1.42,0.08 0,0.26 0,0.51 0.11,0.73 z m -1.92,-0.72 c 0.01,0.23 0.04,0.47 0.1,0.69 -0.41,-0.01 -0.82,-0.04 -1.23,-0.07 -0.04,-0.2 -0.35,-0.27 -0.41,-0.03 0,0 0,0.01 0,0.01 -0.03,0 -0.06,0 -0.09,-0.01 -0.04,0 -0.07,-0.01 -0.11,-0.02 0.04,-0.32 0.05,-0.64 0.06,-0.96 0,-0.01 0,-0.03 0,-0.04 0.51,0.1 1.01,0.22 1.53,0.28 0.04,0.01 0.09,0.01 0.14,0.01 0,0.06 0.01,0.1 0.01,0.14 z m 1.82,-1.46 c 0,0.35 0,0.7 0,1.05 -0.48,0 -0.96,-0.02 -1.44,-0.06 -0.01,-0.15 -0.02,-0.29 -0.02,-0.44 -0.01,-0.19 -0.02,-0.38 -0.03,-0.56 0.5,-0.05 1,-0.11 1.5,-0.17 -0.01,0.05 -0.01,0.12 -0.01,0.18 z m -1.87,0.55 c 0.01,0.14 0.02,0.28 0.02,0.42 -0.02,0 -0.04,0 -0.06,0 -0.53,-0.05 -1.05,-0.16 -1.57,-0.26 0.01,-0.18 0.01,-0.37 0.02,-0.55 0.38,-0.01 0.74,-0.03 1.07,-0.06 0.16,-0.01 0.33,-0.04 0.49,-0.06 0.01,0.16 0.02,0.33 0.03,0.51 z m -2.06,0.08 c -0.26,-0.06 -0.51,-0.12 -0.77,-0.18 -0.01,-0.13 -0.01,-0.26 -0.01,-0.39 0.26,0.05 0.53,0.08 0.8,0.09 -0.01,0.15 -0.01,0.31 -0.02,0.48 z m -1.19,0.01 c 0,0.05 0,0.09 0,0.14 0.03,0.36 0.1,0.72 0.18,1.07 -0.27,-0.04 -0.53,-0.1 -0.8,-0.15 -0.02,-0.24 -0.04,-0.47 -0.06,-0.71 -0.01,-0.19 0,-0.38 -0.01,-0.57 0.23,0.08 0.46,0.15 0.69,0.22 z m -1.08,0.95 c -0.07,-0.01 -0.13,-0.03 -0.19,-0.04 -0.01,-0.3 -0.01,-0.61 -0.02,-0.91 0,-0.13 0,-0.27 0,-0.41 0.06,0.02 0.12,0.04 0.18,0.06 0,0.26 -0.01,0.51 0,0.77 0,0.17 0.02,0.35 0.03,0.53 z m -0.89,3.1 c 0.32,0.52 0.86,0.82 1.45,1.04 -0.04,0.09 -0.07,0.18 -0.12,0.26 -0.04,0.06 -0.09,0.1 -0.13,0.15 -0.62,-0.07 -1.25,-0.1 -1.88,-0.1 0.33,-0.66 0.47,-1.42 0.37,-2.12 0.05,0.28 0.18,0.56 0.31,0.77 z m 4.31,-0.28 c -0.07,-0.2 -0.14,-0.41 -0.18,-0.62 0,0 0,-0.01 0,-0.01 0.05,-0.01 0.09,-0.02 0.14,-0.03 0.22,-0.04 0.44,-0.08 0.66,-0.13 0.57,0.19 1.24,0.24 1.84,0.24 0.44,0 0.87,-0.06 1.29,-0.14 0,0.05 -0.01,0.1 -0.01,0.15 -0.01,0.16 -0.04,0.34 -0.02,0.51 -0.59,0.02 -1.19,0.02 -1.76,0.02 -0.64,0.02 -1.3,0.03 -1.96,0.01 z m 4.31,-1.34 c 0,-0.01 0,-0.03 0,-0.04 0.01,-0.22 0.02,-0.44 0.03,-0.66 0.05,0.07 0.1,0.15 0.16,0.22 0.07,0.07 0.18,0 0.16,-0.09 -0.08,-0.32 -0.18,-0.62 -0.29,-0.93 0,-0.06 0.01,-0.11 0.01,-0.17 0.42,-0.05 0.83,-0.12 1.23,-0.22 0.12,-0.03 0.1,-0.23 -0.03,-0.23 -0.45,0.01 -0.9,0.04 -1.36,0.07 -0.02,-0.08 -0.05,-0.16 -0.06,-0.24 -0.06,-0.38 -0.07,-0.77 -0.04,-1.16 0.24,-0.04 0.48,-0.07 0.72,-0.11 0.36,-0.06 0.75,-0.13 1.11,-0.23 0.02,0.11 0.04,0.23 0.05,0.34 0.03,0.2 0.06,0.41 0.09,0.61 0.02,0.1 0.03,0.2 0.05,0.3 0,0.02 0.01,0.04 0.01,0.06 -0.01,0.53 -0.01,1.05 -0.02,1.58 0,0.05 0,0.1 0,0.15 -0.56,0.32 -1.18,0.57 -1.82,0.75 z m 1.53,-4.59 c 0.03,0.17 0.05,0.33 0.08,0.5 -0.33,0.03 -0.67,0.09 -0.99,0.15 -0.25,0.04 -0.51,0.08 -0.76,0.12 0.01,-0.09 0.01,-0.18 0.03,-0.27 0.05,-0.24 -0.32,-0.34 -0.37,-0.1 -0.03,0.14 -0.03,0.29 -0.05,0.44 -0.06,0.01 -0.12,0.02 -0.19,0.03 -0.13,0.02 -0.25,0.03 -0.38,0.05 0,-0.24 0,-0.48 0,-0.72 0.88,-0.06 1.76,-0.13 2.63,-0.2 z m -3.06,0.95 c -0.51,0.07 -1.01,0.13 -1.52,0.19 -0.02,-0.3 -0.03,-0.6 -0.05,-0.9 0.53,-0.01 1.05,-0.03 1.58,-0.05 0,0.26 -0.01,0.51 -0.01,0.76 z m -5.13,0.16 c -0.26,-0.1 -0.49,-0.25 -0.68,-0.46 0,-0.19 0.02,-0.38 0.03,-0.57 0.26,0.03 0.52,0.06 0.79,0.08 -0.07,0.31 -0.12,0.63 -0.14,0.95 z m -1.09,-0.44 c -0.01,0.28 -0.01,0.56 -0.02,0.84 -0.06,-0.02 -0.12,-0.03 -0.18,-0.05 0,-0.49 -0.01,-0.98 -0.09,-1.45 0.01,0 0.02,0 0.03,0 -0.01,0.02 -0.02,0.04 -0.01,0.07 0.06,0.23 0.16,0.42 0.27,0.59 z M 649,492.12 c -0.01,0.09 -0.02,0.18 -0.03,0.27 -0.01,-0.05 -0.04,-0.09 -0.08,-0.12 0.04,-0.05 0.08,-0.1 0.11,-0.15 z m -96.61,-8.75 c 0,-0.02 0,-0.05 0,-0.07 0.19,0.05 0.38,0.08 0.57,0.12 0.03,0.19 0.06,0.37 0.11,0.55 0.07,0.24 0.16,0.49 0.26,0.72 0.05,0.12 0.11,0.24 0.18,0.35 0.01,0.01 0.02,0.02 0.03,0.04 0.01,0.3 0.01,0.61 0.02,0.91 0.01,0.42 0.03,0.85 0.05,1.27 0.01,0.2 0.02,0.39 0.04,0.59 0,0.03 0,0.06 0,0.08 -0.25,-0.08 -0.5,-0.17 -0.69,-0.33 -0.07,-0.06 -0.12,-0.14 -0.18,-0.21 0,-0.01 0,-0.01 0,-0.02 -0.01,-0.5 -0.23,-0.99 -0.32,-1.47 -0.08,-0.44 -0.13,-0.88 -0.14,-1.33 0,-0.03 0,-0.06 0,-0.09 0.06,-0.06 0.11,-0.15 0.17,-0.21 0.3,-0.24 0.17,-0.72 -0.1,-0.9 z m 0.84,-0.92 c 0,-0.11 -0.09,-0.16 -0.17,-0.17 0.81,0.08 1.62,0.15 2.44,0.21 -0.06,0.03 -0.1,0.08 -0.09,0.16 0.02,0.25 0.03,0.49 0.05,0.74 -0.72,-0.07 -1.44,-0.16 -2.15,-0.28 -0.04,-0.22 -0.07,-0.44 -0.08,-0.66 z m 12.87,-0.72 c 0.02,0.05 0.05,0.09 0.11,0.1 0.24,0.02 0.47,0.05 0.71,0.07 -0.37,0.44 -0.69,0.92 -0.92,1.44 -0.04,0.08 -0.06,0.17 -0.09,0.25 -0.51,-0.02 -1.02,-0.04 -1.53,-0.07 0,-0.46 -0.03,-0.91 -0.13,-1.35 0.62,-0.12 1.24,-0.27 1.85,-0.44 z m 0.83,-0.23 c 1.11,-0.37 2.26,-0.81 3.26,-1.42 -0.01,0.01 -0.02,0.02 -0.03,0.03 -0.43,0.39 -0.86,0.79 -1.26,1.21 -0.12,0.12 -0.24,0.26 -0.36,0.39 -0.63,-0.05 -1.27,-0.09 -1.9,-0.12 0.09,-0.04 0.19,-0.06 0.29,-0.09 z m -7.88,-13.95 v -0.14 c 0.17,-0.02 0.34,-0.01 0.51,-0.04 0.03,0 0.06,-0.01 0.08,-0.02 l -0.01,0.96 c -0.19,0.06 -0.38,0.1 -0.56,0.14 -0.01,-0.3 -0.02,-0.6 -0.02,-0.9 z m -1.57,-0.63 c -0.02,-0.24 -0.04,-0.48 -0.06,-0.73 0.41,0.08 0.82,0.1 1.24,0.1 0,0.27 0.01,0.54 0.01,0.81 -0.1,0.01 -0.2,0.03 -0.29,0.03 -0.3,0 -0.59,-0.03 -0.89,-0.07 0,-0.05 0,-0.1 -0.01,-0.14 z m -0.09,-1.13 c -0.01,-0.18 -0.03,-0.35 -0.04,-0.53 0.29,0.1 0.59,0.18 0.9,0.22 0.13,0.02 0.27,0.01 0.4,0.02 0,0.16 0,0.31 0.01,0.47 -0.42,0.01 -0.85,-0.02 -1.26,-0.1 0,-0.03 0,-0.05 -0.01,-0.08 z m 1.16,-1.38 c 0.03,0.01 0.06,0.02 0.09,0.03 0,0.21 0,0.42 0.01,0.63 -0.11,0 -0.22,0 -0.32,-0.01 -0.35,-0.04 -0.69,-0.14 -1.01,-0.27 -0.02,-0.32 -0.05,-0.63 -0.07,-0.95 0.43,0.2 0.87,0.39 1.3,0.57 z m 1.95,3.61 c -0.16,0.05 -0.31,0.09 -0.47,0.15 l -0.01,-0.89 c 0.19,-0.04 0.35,-0.11 0.51,-0.18 0,0.3 -0.02,0.61 -0.03,0.92 z m -0.45,1.99 c 0,-0.46 0,-0.92 -0.01,-1.37 0.16,-0.05 0.31,-0.11 0.46,-0.17 0,0.51 -0.01,1.03 -0.01,1.54 -0.15,-0.01 -0.3,-0.01 -0.44,0 z m 0.52,-3.67 c 0,0.01 0,0.02 0,0.03 -0.01,0.14 -0.01,0.27 -0.02,0.41 -0.18,0.02 -0.35,0.06 -0.53,0.12 l -0.01,-0.74 c 0.09,-0.02 0.18,-0.02 0.27,-0.04 0.1,-0.03 0.2,-0.07 0.31,-0.1 -0.01,0.1 -0.01,0.19 -0.02,0.28 -0.02,0 -0.04,0 -0.06,-0.01 0.03,0.01 0.04,0.03 0.06,0.05 z m -1.56,-0.83 c 0.22,-0.01 0.43,-0.04 0.65,-0.08 v 0.43 c -0.21,0.04 -0.42,0.09 -0.63,0.1 z m 1,-0.16 c 0.18,-0.05 0.37,-0.11 0.56,-0.19 0.05,0.02 0.09,0.04 0.14,0.05 -0.04,0.13 -0.07,0.27 -0.09,0.42 -0.13,0.05 -0.26,0.09 -0.39,0.13 -0.07,0.02 -0.15,0.02 -0.22,0.04 z m -0.3,-0.37 c -0.24,0.06 -0.48,0.09 -0.72,0.1 l -0.01,-0.51 c 0.3,0.12 0.61,0.23 0.92,0.34 -0.06,0.02 -0.12,0.05 -0.19,0.07 z m -0.69,1.32 c 0.21,-0.01 0.42,-0.06 0.62,-0.1 l -0.01,0.79 c -0.02,0 -0.04,0.01 -0.06,0.02 -0.18,0.03 -0.36,0.03 -0.54,0.05 z m 0.6,2.45 c 0,0.42 0,0.84 -0.01,1.26 -0.18,0 -0.36,0 -0.54,0.01 0,-0.21 0,-0.41 0,-0.61 0,-0.17 -0.01,-0.35 -0.01,-0.52 0.2,-0.05 0.38,-0.09 0.56,-0.14 z m -0.61,2.36 c 0.04,-0.25 0.06,-0.51 0.06,-0.76 0.18,0 0.36,0 0.53,0 -0.01,0.24 -0.01,0.49 0,0.74 -0.02,0 -0.04,0.01 -0.05,0.01 -0.19,0.02 -0.37,0.02 -0.56,0.03 0.01,-0.02 0.02,-0.01 0.02,-0.02 z m 1.05,-0.77 c 0.14,0 0.29,0 0.43,0 0,0.2 0,0.41 0,0.61 -0.14,0.03 -0.28,0.04 -0.41,0.06 -0.01,-0.23 -0.02,-0.45 -0.02,-0.67 z m 1.93,-3.91 c -0.01,-0.06 0,-0.13 -0.01,-0.19 -0.02,-0.21 -0.04,-0.44 -0.07,-0.66 2.2,0.66 4.46,1.15 6.72,1.55 3.32,0.59 6.67,1.07 10.04,1.46 -0.52,0.57 -0.93,1.27 -1.21,1.9 -0.18,0.41 -0.32,0.83 -0.43,1.26 -0.02,0 -0.02,-0.02 -0.04,-0.03 -0.5,-0.11 -1.03,0.01 -1.53,0.11 -0.4,0.08 -0.8,0.17 -1.19,0.3 -0.57,0.19 -1.13,0.43 -1.66,0.71 0,-0.01 0,-0.02 0,-0.03 -0.06,-0.49 -0.09,-1.12 -0.33,-1.6 -0.02,-0.55 -0.21,-1.09 -0.57,-1.55 -0.61,-0.77 -1.5,-1.27 -2.41,-1.62 -1.18,-0.45 -2.41,-0.79 -3.64,-1.06 -1.22,-0.25 -2.45,-0.43 -3.67,-0.55 z m 42.74,4.02 c -0.2,0.03 -0.4,0.05 -0.6,0.08 -0.51,0.07 -1.01,0.14 -1.52,0.21 0,-0.02 -0.01,-0.04 -0.01,-0.06 -0.08,-0.34 -0.15,-0.68 -0.23,-1.02 0.74,-0.02 1.47,-0.05 2.21,-0.09 -0.05,0.03 -0.1,0.08 -0.07,0.16 0.08,0.25 0.15,0.48 0.22,0.72 z m -2.7,-0.78 0.23,1.11 c 0.05,0.23 0.1,0.47 0.15,0.7 0.05,0.22 0.07,0.52 0.22,0.69 0.07,0.08 0.21,0.03 0.23,-0.06 0.03,-0.12 0,-0.23 -0.02,-0.35 -0.02,-0.13 -0.05,-0.25 -0.07,-0.38 -0.02,-0.1 -0.04,-0.2 -0.07,-0.3 0.5,-0.06 1,-0.12 1.49,-0.18 0.22,-0.03 0.44,-0.05 0.66,-0.08 0.04,0.14 0.08,0.28 0.13,0.42 0.06,0.17 0.13,0.33 0.21,0.5 0.06,0.11 0.2,0.03 0.19,-0.08 -0.02,-0.17 -0.05,-0.34 -0.1,-0.5 -0.03,-0.13 -0.07,-0.25 -0.11,-0.37 0.22,-0.02 0.45,-0.04 0.64,-0.13 0.12,-0.06 0.09,-0.27 -0.04,-0.29 -0.23,-0.04 -0.48,0.01 -0.72,0.04 -0.08,-0.25 -0.15,-0.5 -0.23,-0.75 -0.01,-0.04 -0.04,-0.07 -0.07,-0.09 0.53,-0.02 1.06,-0.06 1.6,-0.09 0.35,0.44 0.7,0.87 1.05,1.31 0.2,0.25 0.41,0.51 0.61,0.76 0.1,0.12 0.2,0.25 0.29,0.37 0.09,0.11 0.18,0.22 0.3,0.29 -0.31,0.03 -0.62,0.06 -0.93,0.09 -0.78,0.09 -1.56,0.21 -2.34,0.3 -0.15,0.02 -0.16,0.25 0,0.24 0.79,-0.06 1.59,-0.08 2.38,-0.14 0.39,-0.03 0.78,-0.06 1.17,-0.1 0.35,-0.03 0.78,-0.03 1.11,-0.18 0.12,-0.06 0.08,-0.25 -0.04,-0.28 -0.35,-0.09 -0.77,0 -1.12,0.04 -0.01,0 -0.01,0 -0.02,0 0.02,-0.04 0.04,-0.09 0.04,-0.13 -0.02,-0.15 -0.16,-0.29 -0.25,-0.4 -0.1,-0.12 -0.2,-0.24 -0.3,-0.37 l -0.63,-0.78 c -0.28,-0.35 -0.57,-0.7 -0.85,-1.05 0.35,-0.02 0.7,-0.04 1.06,-0.06 0,0 0,0.01 0.01,0.01 0.49,0.18 0.92,0.47 1.32,0.81 -0.3,0.03 -0.59,0.08 -0.89,0.11 -0.21,0.02 -0.22,0.35 0,0.34 0.41,-0.03 0.82,-0.09 1.24,-0.13 0.06,0.06 0.14,0.11 0.2,0.18 0.25,0.28 0.46,0.6 0.63,0.94 0.18,0.35 0.29,0.71 0.44,1.07 0.04,0.09 0.19,0.09 0.18,-0.03 -0.01,-0.17 -0.04,-0.33 -0.09,-0.5 0.73,-0.05 1.45,-0.13 2.17,-0.22 0.09,0.17 0.2,0.32 0.28,0.49 0.09,0.19 0.16,0.38 0.23,0.57 -0.18,0.03 -0.36,0.06 -0.54,0.09 -0.19,0.03 -0.15,0.37 0.05,0.34 0.21,-0.02 0.42,-0.05 0.62,-0.07 0.06,0.2 0.11,0.41 0.22,0.57 0.06,0.08 0.24,0.1 0.25,-0.03 0.03,-0.2 -0.03,-0.39 -0.09,-0.58 0.17,-0.02 0.34,-0.04 0.51,-0.06 0.5,-0.06 1.03,-0.1 1.5,-0.27 0.15,-0.05 0.12,-0.26 -0.04,-0.27 -0.5,-0.04 -1.02,0.06 -1.52,0.13 -0.2,0.03 -0.39,0.06 -0.59,0.09 -0.07,-0.2 -0.15,-0.4 -0.23,-0.6 -0.07,-0.16 -0.18,-0.3 -0.26,-0.45 0.8,-0.11 1.6,-0.24 2.39,-0.38 0.12,0.18 0.26,0.33 0.37,0.52 0.15,0.26 0.27,0.52 0.4,0.8 0.13,0.29 0.22,0.6 0.37,0.89 0.07,0.14 0.25,0.03 0.23,-0.1 -0.09,-0.6 -0.43,-1.22 -0.74,-1.74 -0.09,-0.15 -0.21,-0.28 -0.31,-0.42 0.45,-0.08 0.89,-0.17 1.33,-0.26 0.18,0.3 0.38,0.59 0.53,0.9 0.02,0.05 0.04,0.1 0.06,0.15 -0.23,0.06 -0.46,0.11 -0.7,0.17 -0.29,0.07 -0.17,0.51 0.12,0.45 0.25,-0.06 0.5,-0.11 0.75,-0.17 0.15,0.4 0.28,0.81 0.42,1.21 0.01,0.04 0.04,0.06 0.06,0.08 -0.69,0.16 -1.39,0.3 -2.1,0.37 -0.27,0.03 -0.28,0.44 0,0.43 0.98,-0.06 1.94,-0.21 2.89,-0.48 0.48,-0.13 0.94,-0.3 1.4,-0.49 0.04,-0.02 0.08,-0.04 0.12,-0.05 0.01,0.37 0.02,0.73 0.02,1.1 -0.07,0.03 -0.14,0.06 -0.21,0.08 -0.21,0.08 -0.43,0.16 -0.64,0.24 -0.08,-0.14 -0.32,-0.13 -0.31,0.06 0,0.01 0,0.03 0,0.04 -0.43,0.16 -0.86,0.31 -1.3,0.46 -0.13,0.04 -0.07,0.25 0.06,0.2 0.42,-0.14 0.84,-0.27 1.26,-0.4 0.03,0.36 0.06,0.72 0.09,1.09 -0.16,0.05 -0.32,0.1 -0.49,0.14 -0.22,0.06 -0.44,0.1 -0.67,0.15 0,-0.03 0,-0.06 0,-0.09 -0.01,-0.24 -0.38,-0.24 -0.37,0 0,0.06 0,0.12 0,0.17 -0.39,0.09 -0.79,0.2 -1.18,0.27 -0.08,-0.04 -0.17,-0.03 -0.22,0.04 -1.52,0.26 -3.11,0.24 -4.64,0.16 -0.2,-0.01 -0.2,0.29 0,0.31 1.55,0.08 3.07,-0.07 4.61,-0.22 0.02,0.33 0.04,0.66 0.06,0.99 -0.43,0.13 -0.87,0.26 -1.3,0.39 -0.2,0.06 -0.12,0.38 0.09,0.32 0.41,-0.12 0.82,-0.24 1.23,-0.36 0.03,0.43 0.05,0.87 0.08,1.3 -0.45,0.08 -0.9,0.16 -1.35,0.26 -0.69,0.15 -1.37,0.31 -2.05,0.46 -0.17,0.04 -0.1,0.31 0.07,0.27 0.6,-0.13 1.2,-0.27 1.79,-0.4 0,0.01 -0.01,0.02 -0.01,0.03 -0.05,0.4 -0.04,0.81 0.04,1.21 0.04,0.2 0.09,0.39 0.15,0.57 0.07,0.19 0.14,0.4 0.32,0.51 0.08,0.05 0.18,-0.02 0.18,-0.11 0.01,-0.19 -0.1,-0.37 -0.16,-0.54 -0.06,-0.17 -0.11,-0.35 -0.15,-0.54 -0.07,-0.37 -0.08,-0.75 -0.04,-1.12 0,-0.04 -0.02,-0.07 -0.04,-0.1 0.42,-0.1 0.84,-0.21 1.26,-0.32 0.03,0.4 0.05,0.8 0.08,1.2 0.02,0.32 0.03,0.69 0.1,1.02 -0.07,0.03 -0.14,0.05 -0.21,0.08 -0.06,0.02 -0.08,0.07 -0.09,0.12 -0.05,0.02 -0.09,0.05 -0.14,0.07 -0.68,0.3 -1.35,0.56 -2.04,0.82 -1.28,0.48 -2.61,0.77 -3.96,1.01 -1.45,0.25 -2.92,0.48 -4.39,0.61 -0.29,0.03 -0.3,0.45 0,0.45 1.44,0.02 2.85,-0.03 4.28,-0.23 1.46,-0.21 2.9,-0.53 4.34,-0.82 1.38,-0.27 2.82,-0.61 4.17,-1.04 0.72,-0.23 1.44,-0.55 2.12,-0.87 0.27,-0.13 0.54,-0.26 0.78,-0.42 0.24,0.36 0.52,0.68 0.85,0.86 -0.03,0.12 -0.06,0.24 -0.1,0.36 -0.02,0.08 -0.05,0.16 -0.08,0.24 -0.01,0.04 -0.03,0.08 -0.04,0.12 -0.08,0.17 -0.16,0.33 -0.26,0.49 -0.04,0.07 -0.09,0.14 -0.14,0.21 -0.02,0.03 -0.13,0.22 -0.16,0.23 0.07,-0.09 0.09,-0.11 0.05,-0.06 -0.01,0.01 -0.02,0.03 -0.03,0.04 -0.03,0.04 -0.06,0.07 -0.09,0.11 -0.06,0.07 -0.12,0.14 -0.19,0.2 -0.23,0.23 -0.6,0.47 -0.78,0.77 -0.04,0.03 -0.08,0.07 -0.12,0.1 0,0 0,0.01 -0.01,0.01 -0.39,0.34 -0.78,0.66 -1.21,0.95 -1.2,0.81 -2.52,1.43 -3.9,1.9 -3.03,1.04 -6.24,1.49 -9.41,1.79 -7.38,0.7 -14.9,0.22 -22.11,-1.48 -1.87,-0.44 -3.93,-0.83 -5.64,-1.73 -1.13,-0.59 -2.05,-1.68 -2.14,-2.95 0.42,-0.33 0.73,-0.83 0.95,-1.37 0.54,0.43 1.1,0.83 1.7,1.17 0.35,0.2 0.7,0.4 1.07,0.55 0.38,0.16 0.78,0.36 1.19,0.43 0.15,0.02 0.25,-0.17 0.11,-0.25 -0.33,-0.2 -0.72,-0.31 -1.06,-0.49 -0.36,-0.19 -0.72,-0.36 -1.08,-0.56 -0.56,-0.32 -1.09,-0.68 -1.61,-1.07 0.83,0.38 1.73,0.67 2.56,0.95 1.32,0.44 2.68,0.85 4.05,1.09 1.31,0.22 2.68,0.23 4.01,0.34 1.27,0.1 2.78,0.38 4.02,0 0.22,-0.07 0.21,-0.37 0,-0.44 -1.19,-0.38 -2.57,-0.26 -3.81,-0.42 -0.86,-0.11 -1.68,-0.33 -2.5,-0.55 0,-0.02 0,-0.05 -0.01,-0.07 -0.03,-0.27 -0.06,-0.54 -0.09,-0.81 -0.05,-0.37 -0.1,-0.74 -0.15,-1.1 0.07,-0.01 0.15,0 0.21,-0.02 0.15,-0.04 0.14,-0.25 0,-0.29 -0.08,-0.03 -0.17,-0.03 -0.26,-0.04 -0.01,-0.05 -0.01,-0.11 -0.02,-0.16 -0.02,-0.11 -0.09,-0.21 -0.21,-0.21 -0.1,0 -0.22,0.1 -0.21,0.21 0,0.04 0.01,0.07 0.01,0.11 -0.11,-0.01 -0.23,-0.01 -0.33,-0.02 -0.36,-0.03 -0.73,-0.06 -1.09,-0.11 -0.06,-0.01 -0.12,-0.03 -0.19,-0.04 -0.03,-0.37 -0.02,-0.74 0.06,-1.1 0.05,-0.23 -0.3,-0.33 -0.35,-0.1 -0.09,0.37 -0.11,0.75 -0.1,1.12 -0.44,-0.07 -0.88,-0.14 -1.32,-0.25 0.01,-0.26 0.02,-0.53 0.03,-0.79 l 0.03,-0.8 c 0.24,0.03 0.48,0.06 0.72,0.11 0.45,0.08 0.97,0.27 1.43,0.15 0.09,-0.03 0.08,-0.15 0,-0.18 -0.43,-0.17 -0.95,-0.07 -1.41,-0.12 -0.25,-0.03 -0.49,-0.07 -0.74,-0.13 l 0.04,-1.26 c 0.01,-0.2 -0.31,-0.2 -0.32,0 l -0.06,1.16 c -0.14,-0.04 -0.27,-0.07 -0.41,-0.12 -0.21,-0.06 -0.41,-0.13 -0.62,-0.19 0.02,-0.42 0.04,-0.83 0.06,-1.25 0.01,-0.21 -0.31,-0.21 -0.32,0 -0.02,0.38 -0.04,0.77 -0.06,1.15 -0.39,-0.12 -0.78,-0.27 -1.16,-0.41 0,-0.03 0,-0.06 0,-0.09 0.02,-0.51 0.03,-1.02 0.05,-1.54 0.84,0.38 1.7,0.72 2.59,0.97 0.61,0.17 1.23,0.31 1.86,0.41 0.61,0.1 1.25,0.21 1.87,0.19 0.1,0 0.13,-0.17 0.02,-0.18 -0.61,-0.09 -1.22,-0.12 -1.83,-0.23 -0.61,-0.1 -1.21,-0.23 -1.81,-0.4 -0.93,-0.26 -1.82,-0.61 -2.7,-1.01 0.01,-0.32 0.02,-0.64 0.03,-0.96 0.28,0.09 0.57,0.17 0.86,0.21 0.12,0.02 0.23,-0.15 0.09,-0.22 -0.3,-0.15 -0.62,-0.26 -0.94,-0.36 0,-0.05 0,-0.09 0,-0.14 0,-0.14 -0.21,-0.14 -0.22,0 0,0.02 0,0.05 0,0.07 -0.14,-0.04 -0.28,-0.08 -0.42,-0.13 -0.22,-0.07 -0.45,-0.14 -0.67,-0.21 0,-0.83 0.06,-1.66 0.24,-2.47 0.2,0.13 0.4,0.26 0.61,0.38 -0.1,0.39 -0.17,0.78 -0.14,1.17 0.01,0.14 0.21,0.18 0.25,0.03 0.09,-0.33 0.17,-0.66 0.25,-1 0.37,0.19 0.75,0.34 1.14,0.46 -0.02,0.16 -0.05,0.33 -0.06,0.49 0,0.12 0.19,0.15 0.21,0.03 0.03,-0.15 0.07,-0.29 0.11,-0.44 0.08,0.02 0.15,0.05 0.23,0.07 0.47,0.12 0.96,0.18 1.44,0.23 0.03,0.02 0.05,0.01 0.08,0.01 0.04,0 0.08,0.01 0.12,0.01 0.54,0.05 1.21,0.15 1.74,0.02 0.12,-0.03 0.08,-0.19 -0.03,-0.2 -0.26,-0.03 -0.54,0.01 -0.81,0.01 -0.27,0 -0.54,-0.01 -0.8,-0.05 0.1,-0.16 0.18,-0.33 0.27,-0.48 0.11,-0.19 0.23,-0.38 0.34,-0.57 0.45,0.11 0.91,0.21 1.35,0.28 0.22,0.03 0.32,-0.3 0.09,-0.34 -0.41,-0.08 -0.81,-0.16 -1.22,-0.26 0.18,-0.27 0.38,-0.54 0.59,-0.79 0.22,0.04 0.42,0.11 0.64,0.14 0.66,0.09 1.3,0.15 1.95,-0.02 0.1,-0.02 0.1,-0.17 0,-0.2 -0.62,-0.14 -1.24,-0.16 -1.87,-0.25 -0.13,-0.02 -0.25,-0.06 -0.38,-0.08 0.24,-0.26 0.5,-0.51 0.76,-0.75 0.72,0.15 1.45,0.27 2.18,0.39 -0.08,0.15 -0.19,0.28 -0.26,0.43 -0.1,0.2 -0.19,0.39 -0.27,0.6 -0.08,0.2 -0.17,0.41 -0.16,0.62 0,0.18 0.21,0.21 0.31,0.08 0.12,-0.16 0.17,-0.36 0.24,-0.54 0.08,-0.19 0.15,-0.37 0.24,-0.56 0.09,-0.2 0.22,-0.38 0.33,-0.57 0.18,0.03 0.36,0.07 0.54,0.1 0.48,0.06 0.97,0.09 1.45,0.14 0,0 0,0.01 0,0.01 -0.05,0.21 -0.09,0.45 -0.12,0.68 -0.34,-0.03 -0.68,-0.06 -1.01,-0.09 -0.08,-0.01 -0.14,0.07 -0.14,0.14 0,0.08 0.07,0.13 0.14,0.14 0.34,0.04 0.68,0.07 1.02,0.11 0,0.06 -0.01,0.13 0,0.19 0.03,0.17 0.28,0.15 0.33,0 0.02,-0.05 0.02,-0.1 0.03,-0.16 0.22,0.02 0.43,0.03 0.64,0 0.1,-0.01 0.08,-0.15 0,-0.18 -0.16,-0.05 -0.33,-0.07 -0.49,-0.1 -0.03,-0.01 -0.06,-0.01 -0.09,-0.01 0.03,-0.21 0.06,-0.42 0.11,-0.62 0.01,-0.03 0.02,-0.06 0.03,-0.08 0.88,0.08 1.76,0.15 2.64,0.18 0,0.25 0.02,0.5 0.09,0.74 0.03,0.1 0.17,0.08 0.18,-0.02 0.02,-0.23 0.05,-0.47 0.08,-0.71 0.57,0.02 1.13,0.06 1.7,0.07 0.34,0.01 0.69,0.02 1.03,0.03 -0.02,0.26 -0.01,0.53 0.16,0.72 0.06,0.07 0.16,0.04 0.21,-0.03 0.12,-0.19 0.12,-0.45 0.12,-0.68 0.51,0.01 1.02,0 1.52,-0.04 -0.04,0.14 -0.08,0.29 -0.08,0.44 0,0.12 0.18,0.22 0.26,0.11 0.14,-0.18 0.23,-0.39 0.31,-0.61 0.07,-0.01 0.14,-0.01 0.21,-0.03 0.14,-0.02 0.09,-0.22 -0.03,-0.23 -0.03,0 -0.06,0 -0.09,0 0.06,-0.18 0.12,-0.35 0.19,-0.53 l 0.24,-0.67 c 0.98,0.04 1.9,0.02 2.82,0 z m 22.92,3.37 c 0.01,0.21 0.01,0.42 0.02,0.62 -0.22,0.21 -0.43,0.43 -0.64,0.64 -0.32,-0.13 -0.65,-0.27 -0.97,-0.4 0.04,-0.03 0.09,-0.04 0.12,-0.07 0.21,-0.2 0.37,-0.51 0.33,-0.81 -0.01,-0.08 -0.03,-0.16 -0.07,-0.23 z m -0.14,2.97 c -0.38,-0.15 -0.78,-0.27 -1.18,-0.38 0.32,-0.3 0.64,-0.61 0.95,-0.91 0.11,0.05 0.23,0.09 0.34,0.14 -0.02,0.07 -0.03,0.15 0.01,0.24 0.04,0.11 0.13,0.21 0.19,0.32 0.01,0.09 0.03,0.17 0.06,0.26 -0.03,0.03 -0.07,0.06 -0.1,0.09 -0.08,0.08 -0.18,0.16 -0.27,0.24 z m 6.36,4.22 c 0.24,0.27 0.46,0.57 0.62,0.9 0.17,0.35 0.29,0.73 0.34,1.11 0,0 0,0.01 0,0.01 -0.39,-0.02 -0.78,-0.03 -1.18,-0.04 -0.52,-0.01 -1.04,0 -1.55,0.01 -0.1,-0.38 -0.23,-0.76 -0.41,-1.11 -0.13,-0.26 -0.32,-0.48 -0.48,-0.72 0.39,-0.02 0.79,-0.04 1.18,-0.06 0.49,-0.02 1,-0.01 1.48,-0.1 z m -0.99,4.24 c -0.01,-0.15 -0.02,-0.3 -0.05,-0.44 -0.03,-0.13 -0.22,-0.07 -0.2,0.05 0.03,0.13 0.03,0.26 0.04,0.38 -0.32,-0.01 -0.64,-0.02 -0.96,-0.03 -1,-0.03 -1.99,-0.06 -2.99,-0.09 -0.03,-0.53 -0.14,-1.05 -0.39,-1.52 0.31,-0.02 0.62,-0.03 0.93,-0.05 0.01,0.18 0.03,0.35 0.08,0.51 0.04,0.12 0.2,0.11 0.24,0 0.05,-0.16 0.06,-0.34 0.04,-0.53 0.5,-0.02 0.99,-0.05 1.49,-0.06 0.24,0 0.47,0 0.71,0 0.04,0.34 0.04,0.68 0.09,1.01 0.02,0.15 0.23,0.12 0.27,0 0.11,-0.31 0.07,-0.67 0.02,-1.01 0.49,0 0.97,-0.01 1.46,0.01 0.4,0.01 0.81,0.03 1.21,0.05 0,0.03 0.01,0.06 0.01,0.08 0,0.2 -0.04,0.42 -0.01,0.62 0.02,0.13 0.19,0.22 0.28,0.1 0.03,0.34 0.02,0.68 -0.02,1.02 -0.09,-0.01 -0.18,-0.03 -0.28,-0.04 -0.34,-0.02 -0.68,-0.03 -1.02,-0.04 -0.32,0 -0.63,-0.01 -0.95,-0.02 z m -3.12,1.45 c -0.42,-0.01 -0.84,-0.03 -1.26,-0.04 0.15,-0.38 0.23,-0.79 0.26,-1.17 0.5,0.03 1,0.06 1.49,0.09 -0.17,0.37 -0.33,0.74 -0.49,1.12 z m -9.23,-4.34 c -0.03,-0.42 -0.07,-0.84 -0.1,-1.26 0.08,-0.02 0.17,-0.04 0.25,-0.06 0.22,-0.05 0.44,-0.08 0.66,-0.12 0.01,0.38 0.02,0.76 0.03,1.15 0.01,0.25 0,0.52 0.01,0.79 -0.25,0.13 -0.51,0.27 -0.76,0.4 0,0 -0.01,0 -0.01,0 0,-0.3 -0.06,-0.62 -0.08,-0.9 z m -0.35,-4.04 c 0.36,-0.04 0.71,-0.11 1.07,-0.17 0.01,0.26 0.01,0.52 0.02,0.78 -0.34,0.1 -0.68,0.2 -1.01,0.31 -0.02,-0.3 -0.05,-0.61 -0.08,-0.92 z m 2.83,-2.07 c 0.23,-0.07 0.45,-0.13 0.68,-0.2 0.04,-0.01 0.08,-0.02 0.12,-0.03 0,0.06 0,0.13 0,0.2 -0.01,0.3 -0.01,0.61 -0.02,0.91 -0.12,0.04 -0.25,0.09 -0.37,0.13 -0.1,0.03 -0.2,0.06 -0.29,0.09 -0.05,-0.38 -0.09,-0.74 -0.12,-1.1 z m 2.55,-1.39 c 0.07,0 0.14,0.01 0.21,-0.01 0.35,0.15 0.69,0.3 1.04,0.45 -0.32,0.33 -0.65,0.65 -0.98,0.98 -0.08,-0.02 -0.17,-0.02 -0.25,-0.04 0.01,-0.46 0,-0.92 -0.02,-1.38 z m 2.15,0.25 c 0.01,0.1 0.02,0.2 0.03,0.29 -0.08,-0.03 -0.15,-0.07 -0.23,-0.1 0.06,-0.07 0.13,-0.13 0.2,-0.19 z m 0.06,3.84 c -0.23,0.11 -0.46,0.22 -0.7,0.34 -0.15,0.07 -0.1,0.24 0.02,0.3 -0.46,-0.27 -0.95,-0.48 -1.46,-0.59 -0.02,-0.28 -0.05,-0.56 -0.06,-0.84 0.75,0.21 1.49,0.47 2.2,0.79 z m 0.1,1.64 c 0.12,0.13 0.22,0.27 0.34,0.41 -0.28,0.02 -0.56,0.04 -0.84,0.06 -0.21,0.01 -0.21,0.34 0,0.32 0.37,-0.02 0.73,-0.04 1.1,-0.06 0.05,0.07 0.08,0.15 0.13,0.22 -0.68,0.18 -1.36,0.38 -2.04,0.57 -0.08,-0.12 -0.16,-0.24 -0.23,-0.36 -0.34,-0.63 -0.53,-1.35 -0.63,-2.06 -0.02,-0.15 -0.02,-0.29 -0.04,-0.44 0.68,0.2 1.31,0.56 1.85,1.02 -0.25,0.08 -0.51,0.15 -0.76,0.23 -0.22,0.07 -0.13,0.41 0.1,0.35 0.34,-0.1 0.67,-0.19 1.01,-0.29 -0.01,0.02 0,0.02 0.01,0.03 z m 1.69,2.48 c -0.06,-0.35 -0.17,-0.68 -0.31,-1.01 -0.02,-0.05 -0.06,-0.1 -0.08,-0.15 0.6,-0.14 1.2,-0.29 1.79,-0.47 0.12,0.17 0.26,0.33 0.36,0.51 0.18,0.33 0.31,0.69 0.41,1.05 -0.23,0 -0.45,-0.01 -0.68,0 -0.5,0.02 -0.99,0.07 -1.49,0.1 0,0 0,-0.02 0,-0.03 z m -0.64,-1.61 c -0.03,-0.05 -0.05,-0.1 -0.08,-0.15 0.31,-0.02 0.61,-0.03 0.92,-0.05 -0.28,0.06 -0.56,0.13 -0.84,0.2 z m -7.2,-0.87 c -0.02,-0.47 -0.04,-0.93 -0.05,-1.4 0.4,-0.12 0.8,-0.23 1.19,-0.35 0.01,0 0.01,0 0.02,-0.01 0.01,0.15 0.02,0.3 0.04,0.45 0.02,0.3 0.02,0.66 0.12,0.96 -0.13,0.03 -0.26,0.07 -0.38,0.1 -0.31,0.09 -0.62,0.18 -0.94,0.27 0,0 0,-0.01 0,-0.02 z m 1.6,-1.34 c -0.02,-0.18 -0.04,-0.35 -0.06,-0.53 0.11,-0.03 0.22,-0.07 0.34,-0.1 0.06,-0.02 0.13,-0.04 0.19,-0.05 0.02,0.48 0.05,0.97 0.11,1.44 -0.09,0.02 -0.18,0.05 -0.26,0.07 -0.09,0.02 -0.18,0.05 -0.27,0.07 0.05,-0.29 -0.02,-0.62 -0.05,-0.9 z m 4.55,0.92 c -0.23,-0.21 -0.48,-0.4 -0.75,-0.56 0.04,0.01 0.09,0.02 0.14,-0.01 l 0.97,-0.46 c 0.36,0.18 0.69,0.39 1.02,0.61 -0.46,0.14 -0.92,0.28 -1.38,0.42 z m -4.28,-2.48 c 0.06,-0.02 0.13,-0.04 0.19,-0.05 0,0.18 0,0.36 0.01,0.54 -0.1,0.03 -0.19,0.06 -0.29,0.09 -0.09,0.03 -0.19,0.06 -0.28,0.08 -0.01,-0.06 -0.01,-0.11 -0.02,-0.17 -0.01,-0.13 -0.03,-0.26 -0.04,-0.39 0.15,-0.03 0.29,-0.06 0.43,-0.1 z m -0.76,0.53 c 0.01,0.08 0.01,0.16 0.02,0.24 -0.03,0.01 -0.06,0.02 -0.09,0.03 -0.37,0.11 -0.74,0.22 -1.11,0.33 -0.01,-0.24 -0.02,-0.48 -0.03,-0.72 0.25,-0.04 0.51,-0.06 0.76,-0.12 0.14,-0.03 0.28,-0.07 0.41,-0.1 0.02,0.11 0.03,0.23 0.04,0.34 z m -1.54,1.08 c 0.01,0.43 0.02,0.86 0.03,1.29 0,0.04 0,0.08 0,0.12 -0.23,0.06 -0.46,0.12 -0.69,0.17 -0.07,0.02 -0.15,0.03 -0.22,0.04 -0.04,-0.45 -0.08,-0.89 -0.11,-1.34 0.32,-0.08 0.65,-0.18 0.99,-0.28 z m 2.06,2.57 c -0.51,0.26 -1.02,0.51 -1.53,0.77 -0.01,-0.19 -0.03,-0.39 -0.04,-0.57 -0.02,-0.41 -0.03,-0.81 -0.05,-1.22 0.33,-0.06 0.66,-0.13 0.99,-0.18 0.32,-0.05 0.65,-0.11 0.97,-0.17 0.09,-0.02 0.2,-0.04 0.3,-0.05 0.05,0.27 0.1,0.55 0.17,0.82 0.02,0.06 0.04,0.13 0.06,0.19 -0.29,0.1 -0.59,0.26 -0.87,0.41 z m 3.87,1.46 c -0.09,-0.33 -0.27,-0.63 -0.48,-0.92 0.7,-0.13 1.39,-0.27 2.09,-0.42 0.04,0.08 0.09,0.15 0.12,0.23 0.12,0.28 0.2,0.58 0.26,0.87 0,0.01 0,0.03 0,0.04 -0.66,0.06 -1.32,0.12 -1.99,0.2 z m 1.39,-2.35 c -0.13,-0.18 -0.27,-0.35 -0.42,-0.51 0.49,-0.14 0.99,-0.28 1.48,-0.42 0.31,0.24 0.61,0.5 0.87,0.8 -0.64,0.04 -1.28,0.08 -1.93,0.13 z m 1.26,-1.42 c -0.07,0.02 -0.14,0.04 -0.21,0.06 -0.34,-0.24 -0.69,-0.48 -1.05,-0.66 l 0.79,-0.37 c 0.11,-0.05 0.21,-0.1 0.32,-0.15 0.21,0.16 0.44,0.28 0.64,0.45 0.14,0.12 0.27,0.26 0.41,0.4 -0.3,0.09 -0.6,0.18 -0.9,0.27 z m -0.63,-1.32 c -0.36,0.17 -0.72,0.35 -1.09,0.52 -0.51,-0.23 -1.03,-0.43 -1.57,-0.59 0.37,-0.32 0.73,-0.63 1.1,-0.95 0.35,0.15 0.69,0.32 1.01,0.51 0.23,0.13 0.43,0.31 0.65,0.46 -0.03,0.01 -0.06,0.03 -0.1,0.05 z m -3.01,-0.33 c -0.05,0.04 -0.06,0.09 -0.06,0.13 -0.2,-0.06 -0.4,-0.12 -0.6,-0.18 0,-0.27 0,-0.54 0,-0.81 0.05,0 0.1,-0.01 0.15,-0.06 0.11,-0.11 0.23,-0.22 0.35,-0.33 0.39,0.1 0.78,0.23 1.16,0.37 -0.34,0.3 -0.67,0.59 -1,0.88 z m -0.2,-4.43 c 0,0.04 0.01,0.07 0.02,0.11 0,0 0,0.02 0.01,0.03 0,0 0,0 0,0.01 0,0.01 0,0.02 0,0.03 0,0.03 0,0.06 0,0.09 0,0.02 0,0.04 0,0.05 0,0 0,0.01 0,0.01 -0.01,0.03 -0.02,0.07 -0.02,0.1 -0.01,0.03 -0.01,0.06 -0.02,0.09 -0.01,0.02 -0.01,0.03 -0.02,0.05 0,0 0,0 0,0.01 -0.02,0.03 -0.03,0.06 -0.05,0.09 -0.01,0.01 -0.02,0.03 -0.03,0.04 0,0.01 0,0.01 -0.01,0.01 -0.02,0.03 -0.05,0.06 -0.08,0.08 -0.01,0.01 -0.03,0.03 -0.04,0.04 0,0 0,0 0,0 -0.03,0.01 -0.06,0.04 -0.09,0.06 -0.01,0.01 -0.03,0.02 -0.05,0.02 0,0 0,0 -0.01,0 -0.03,0.01 -0.06,0.02 -0.09,0.02 0,0 0,0 0,0 0,0 0,0 0,0 0,0 -0.01,0 -0.01,0 -0.01,-0.12 -0.01,-0.24 -0.02,-0.35 -0.03,-0.24 -0.07,-0.49 -0.11,-0.73 0.21,0.06 0.41,0.1 0.62,0.14 z m -7.4,-1.59 c -0.18,-0.24 -0.33,-0.49 -0.53,-0.71 -0.23,-0.26 -0.48,-0.5 -0.74,-0.72 0.47,-0.11 0.93,-0.22 1.39,-0.35 0.4,0.39 0.77,0.79 1.1,1.24 0.05,0.07 0.08,0.15 0.13,0.23 -0.45,0.11 -0.89,0.22 -1.34,0.31 0,0 -0.01,0 -0.01,0 z m -5.09,0.84 c -0.19,-0.53 -0.53,-1.04 -0.88,-1.44 -0.01,-0.01 -0.03,-0.02 -0.04,-0.04 0.65,-0.07 1.3,-0.15 1.95,-0.25 0.25,0.27 0.51,0.54 0.72,0.85 0.12,0.18 0.21,0.38 0.32,0.57 -0.68,0.1 -1.36,0.21 -2.03,0.3 -0.03,0 -0.03,0.01 -0.04,0.01 z m 2.03,-1.1 c -0.18,-0.25 -0.4,-0.47 -0.61,-0.7 0.56,-0.1 1.12,-0.18 1.67,-0.3 0.14,-0.03 0.28,-0.07 0.42,-0.1 0.29,0.25 0.58,0.52 0.83,0.81 0.16,0.19 0.28,0.41 0.43,0.61 -0.77,0.15 -1.55,0.29 -2.33,0.41 -0.13,-0.24 -0.25,-0.5 -0.41,-0.73 z m 4.53,-0.53 c -0.29,-0.39 -0.63,-0.74 -0.97,-1.09 0.09,-0.02 0.18,-0.04 0.27,-0.07 0.2,-0.06 0.41,-0.12 0.61,-0.18 0.36,0.49 0.72,0.98 1.08,1.46 0.02,0.03 0.04,0.05 0.06,0.08 -0.26,0.06 -0.52,0.12 -0.78,0.18 -0.1,-0.12 -0.18,-0.26 -0.27,-0.38 z m 1.09,0.7 c 0.09,-0.02 0.18,-0.04 0.26,-0.06 0.08,0.1 0.15,0.21 0.23,0.31 0.11,0.14 0.21,0.29 0.32,0.43 0.06,0.09 0.12,0.17 0.2,0.23 -0.09,0.02 -0.17,0.04 -0.26,0.06 -0.25,0.06 -0.5,0.12 -0.76,0.18 -0.16,-0.36 -0.34,-0.71 -0.55,-1.05 0.2,-0.03 0.38,-0.06 0.56,-0.1 z m 1.96,-0.26 c 0.14,0.28 0.24,0.58 0.33,0.89 -0.15,-0.01 -0.32,0.04 -0.47,0.08 -0.09,-0.36 -0.18,-0.73 -0.27,-1.09 0.1,-0.02 0.2,-0.05 0.3,-0.08 0.03,0.07 0.07,0.13 0.11,0.2 z m -0.45,1.05 c -0.06,0.01 -0.11,0.03 -0.17,0.04 -0.02,-0.15 -0.12,-0.25 -0.21,-0.37 -0.1,-0.13 -0.2,-0.27 -0.31,-0.4 -0.05,-0.07 -0.11,-0.14 -0.16,-0.21 0.19,-0.05 0.39,-0.09 0.58,-0.14 0,0 0,0 0,0 0.09,0.35 0.18,0.72 0.27,1.08 z m -0.66,0.65 c 0.26,-0.06 0.52,-0.12 0.78,-0.18 0.02,0.08 0.04,0.16 0.06,0.23 0.05,0.2 0.13,0.39 0.19,0.59 0.05,0.14 0.24,0.08 0.21,-0.06 -0.03,-0.2 -0.06,-0.41 -0.1,-0.61 -0.02,-0.07 -0.04,-0.15 -0.06,-0.22 0.08,-0.02 0.17,-0.04 0.25,-0.06 0.08,-0.02 0.15,-0.04 0.22,-0.07 0.09,0.4 0.15,0.82 0.18,1.23 -0.07,0.03 -0.15,0.06 -0.22,0.09 -0.45,0.16 -0.91,0.3 -1.37,0.43 -0.16,0.05 -0.33,0.08 -0.5,0.12 0.02,-0.03 0.03,-0.07 0.02,-0.11 -0.06,-0.41 -0.19,-0.82 -0.34,-1.22 0.23,-0.05 0.45,-0.11 0.68,-0.16 z m 0.37,-2.26 c -0.3,0.08 -0.59,0.15 -0.89,0.23 -0.05,-0.06 -0.1,-0.13 -0.14,-0.19 -0.34,-0.45 -0.69,-0.9 -1.03,-1.36 0.19,-0.06 0.38,-0.12 0.58,-0.18 0.72,0.26 1.36,0.79 1.82,1.41 -0.12,0.04 -0.23,0.06 -0.34,0.09 z m -2.8,-1.73 c 0.06,0.03 0.11,0.07 0.2,0.07 0.04,0 0.08,0 0.12,0 -0.22,0.07 -0.44,0.15 -0.66,0.22 -0.16,0.05 -0.32,0.08 -0.47,0.12 -0.1,-0.09 -0.22,-0.16 -0.33,-0.25 0.38,-0.05 0.76,-0.11 1.14,-0.16 z m -1.72,0.25 c 0.04,0 0.07,-0.01 0.11,-0.02 0.13,0.1 0.26,0.18 0.38,0.29 -0.47,0.13 -0.94,0.26 -1.42,0.37 -0.22,-0.17 -0.45,-0.33 -0.68,-0.48 0.54,-0.06 1.07,-0.1 1.61,-0.16 z m -1.99,0.2 c 0.26,0.16 0.52,0.33 0.76,0.52 -0.03,0.01 -0.05,0.01 -0.08,0.02 -0.63,0.14 -1.28,0.25 -1.91,0.36 -0.24,-0.25 -0.51,-0.47 -0.78,-0.69 0.67,-0.07 1.34,-0.14 2.01,-0.21 z m -2.49,0.25 c 0.3,0.23 0.6,0.45 0.87,0.72 -0.67,0.11 -1.35,0.2 -2.02,0.27 -0.36,-0.33 -0.76,-0.59 -1.19,-0.8 0.77,-0.06 1.55,-0.12 2.34,-0.19 z m -36.38,20.07 c -0.59,-0.4 -1.05,-0.96 -1.34,-1.61 0.18,-0.05 0.36,-0.09 0.53,-0.15 0.46,-0.15 0.95,-0.32 1.41,-0.52 0.27,0.53 0.63,1.01 1.04,1.43 -0.12,0.04 -0.25,0.06 -0.37,0.11 -0.46,0.19 -0.88,0.44 -1.27,0.74 z m -5.2,-0.96 c -0.27,-0.23 -0.56,-0.43 -0.79,-0.7 -0.24,-0.28 -0.44,-0.6 -0.59,-0.94 -0.12,-0.27 -0.19,-0.56 -0.24,-0.85 0.6,0 1.2,0 1.81,0 1,0 2,0.05 3,-0.04 -0.06,0.48 -0.03,0.97 0.09,1.44 -0.1,0.03 -0.21,0.05 -0.31,0.07 l -0.98,0.21 c -0.35,0.08 -0.71,0.15 -1.06,0.23 -0.12,-0.17 -0.24,-0.34 -0.35,-0.51 -0.06,-0.09 -0.22,0 -0.15,0.09 0.11,0.15 0.22,0.31 0.33,0.46 -0.23,0.05 -0.46,0.1 -0.69,0.15 -0.19,0.04 -0.11,0.33 0.08,0.29 0.27,-0.06 0.53,-0.11 0.8,-0.17 0.01,0.02 0.03,0.04 0.04,0.06 -0.35,0.07 -0.67,0.15 -0.99,0.21 z m 1.1,-0.3 c 0.32,-0.07 0.64,-0.13 0.96,-0.2 0.17,-0.04 0.35,-0.07 0.52,-0.11 -0.16,0.05 -0.32,0.1 -0.49,0.15 -0.31,0.08 -0.63,0.14 -0.95,0.21 -0.02,-0.02 -0.03,-0.04 -0.04,-0.05 z m 6.59,0.27 c 0.02,0 -0.08,-0.02 -0.09,-0.02 -0.09,0 -0.18,0.02 -0.27,0.04 -0.46,-0.42 -0.85,-0.93 -1.15,-1.49 0.12,-0.06 0.26,-0.11 0.37,-0.18 0.01,-0.01 0,-0.02 0.01,-0.03 0.03,0.07 0.07,0.14 0.1,0.21 0,0.01 -0.01,0.01 -0.01,0.02 0,0.05 0.02,0.11 0.06,0.15 0.01,0.01 0.03,0.01 0.04,0.02 0.09,0.16 0.2,0.32 0.31,0.47 0.25,0.33 0.54,0.61 0.85,0.86 -0.05,-0.03 -0.1,-0.04 -0.16,-0.05 -0.01,0 -0.08,0 -0.06,0 z m -2.01,-3.93 c 0.03,-0.04 0.05,-0.08 0.08,-0.12 0.2,-0.3 0.4,-0.6 0.6,-0.9 0.07,-0.11 -0.11,-0.21 -0.18,-0.1 -0.14,0.21 -0.28,0.42 -0.42,0.63 0.03,-0.2 -0.27,-0.28 -0.33,-0.07 -0.02,0.08 -0.03,0.16 -0.05,0.24 -0.58,-0.06 -1.16,-0.08 -1.74,-0.1 0.09,-0.14 0.18,-0.28 0.28,-0.41 0.22,-0.3 0.49,-0.56 0.74,-0.84 0.33,0.05 0.67,0.1 1,0.15 0.36,0.06 0.78,0.17 1.15,0.14 -0.23,0.46 -0.47,0.89 -0.53,1.44 0,0.01 0,0.01 0,0.02 -0.15,0.67 -0.07,1.36 0.2,2.02 -0.01,0 -0.01,-0.01 -0.01,-0.01 -0.14,0.03 -0.27,0.08 -0.4,0.12 -0.33,-0.69 -0.49,-1.45 -0.39,-2.21 z m -6.56,-2.3 c -0.18,0.21 -0.35,0.43 -0.47,0.67 -0.04,0.08 0.05,0.15 0.12,0.09 0.24,-0.22 0.45,-0.47 0.65,-0.73 0.41,0.04 0.82,0.07 1.24,0.12 -0.28,0.35 -0.54,0.71 -0.79,1.08 -0.04,0.07 0.06,0.13 0.11,0.06 0.27,-0.4 0.57,-0.77 0.89,-1.12 0.38,0.04 0.76,0.06 1.13,0.11 0.13,0.02 0.26,0.04 0.39,0.05 -0.1,0.17 -0.22,0.33 -0.31,0.51 -0.15,0.29 -0.36,0.63 -0.39,0.96 -0.57,-0.03 -1.13,-0.06 -1.7,-0.09 -1.02,-0.04 -2.03,-0.09 -3.05,-0.13 0.03,-0.07 0.05,-0.14 0.08,-0.21 0.24,-0.53 0.55,-1.03 0.93,-1.48 0.38,0.03 0.77,0.07 1.17,0.11 z m 16,-11.15 c -0.35,-0.07 -0.71,-0.13 -1.06,-0.23 -0.25,-0.07 -0.48,-0.19 -0.72,-0.28 0.21,-0.25 0.43,-0.49 0.67,-0.7 0.63,0.16 1.25,0.32 1.88,0.46 -0.26,0.23 -0.53,0.46 -0.76,0.72 0.01,0.01 0,0.03 -0.01,0.03 z m -1.18,0.22 c 0.28,0.09 0.58,0.13 0.87,0.19 -0.2,0.25 -0.41,0.5 -0.59,0.77 -0.5,-0.16 -0.98,-0.36 -1.46,-0.57 -0.05,-0.02 -0.09,-0.05 -0.14,-0.07 0.11,-0.2 0.23,-0.4 0.36,-0.6 0.02,-0.03 0.05,-0.06 0.07,-0.09 0.3,0.13 0.59,0.28 0.89,0.37 z m -0.19,1.78 c -0.09,0.19 -0.2,0.41 -0.25,0.63 -0.46,-0.08 -0.91,-0.2 -1.36,-0.35 -0.07,-0.02 -0.12,-0.05 -0.19,-0.08 0.12,-0.42 0.28,-0.83 0.46,-1.23 0.05,0.02 0.09,0.05 0.13,0.07 0.47,0.19 0.96,0.35 1.46,0.48 -0.08,0.17 -0.17,0.32 -0.25,0.48 z m -2.66,-1.67 c 0.32,0.19 0.66,0.34 1,0.49 -0.19,0.41 -0.35,0.83 -0.44,1.26 -0.37,-0.14 -0.74,-0.27 -1.09,-0.44 0.03,-0.1 0.05,-0.19 0.08,-0.29 0.13,-0.34 0.28,-0.68 0.45,-1.02 z m 1.22,0.06 c -0.32,-0.15 -0.64,-0.29 -0.95,-0.46 -0.01,-0.01 -0.03,-0.02 -0.04,-0.02 0.04,-0.06 0.07,-0.13 0.11,-0.2 0.1,-0.16 0.21,-0.3 0.31,-0.45 0.32,0.17 0.66,0.32 0.99,0.47 -0.16,0.21 -0.29,0.44 -0.42,0.66 z m -1.25,-0.89 c -0.04,0.06 -0.07,0.13 -0.1,0.2 -0.21,-0.12 -0.41,-0.23 -0.62,-0.35 0.15,-0.24 0.34,-0.43 0.54,-0.62 0.17,0.11 0.34,0.21 0.5,0.31 -0.12,0.15 -0.23,0.31 -0.32,0.46 z m -0.92,0.21 c 0.19,0.15 0.39,0.28 0.6,0.41 -0.17,0.34 -0.32,0.69 -0.44,1.05 -0.03,0.09 -0.05,0.18 -0.08,0.27 -0.22,-0.11 -0.43,-0.24 -0.63,-0.37 0.13,-0.47 0.31,-0.92 0.55,-1.36 z m -0.54,5.78 c 0.22,0.11 0.44,0.2 0.67,0.3 -0.03,0.53 -0.06,1.06 -0.09,1.59 0,0.01 0,0.02 0,0.03 -0.15,-0.06 -0.3,-0.1 -0.44,-0.17 -0.19,-0.08 -0.35,0.2 -0.16,0.28 0.19,0.08 0.39,0.15 0.59,0.23 -0.02,0.39 -0.04,0.79 -0.06,1.18 0,0.07 -0.01,0.14 -0.01,0.21 -0.25,-0.11 -0.5,-0.21 -0.74,-0.33 0.05,-1.02 0.01,-2.05 -0.04,-3.08 -0.02,-0.49 -0.04,-0.98 -0.05,-1.46 0.18,0.06 0.37,0.12 0.55,0.17 0.17,0.05 0.35,0.11 0.52,0.17 -0.02,0.31 -0.03,0.62 -0.05,0.93 -0.19,-0.09 -0.38,-0.16 -0.57,-0.26 -0.13,-0.05 -0.25,0.14 -0.12,0.21 z m 5,5.43 c 0.03,0.26 0.09,0.52 0.17,0.77 0.07,0.22 0.17,0.58 0.4,0.67 0.08,0.03 0.18,-0.04 0.2,-0.11 0.04,-0.13 -0.04,-0.24 -0.08,-0.36 -0.04,-0.11 -0.08,-0.21 -0.11,-0.32 -0.06,-0.18 -0.1,-0.37 -0.14,-0.55 0.01,0 0.02,0 0.03,0 0.36,0.05 0.72,0.09 1.09,0.11 0.16,0.01 0.33,0.02 0.5,0.03 0.04,0.37 0.09,0.73 0.13,1.1 0.03,0.25 0.07,0.49 0.1,0.74 -0.33,-0.09 -0.67,-0.18 -1.01,-0.27 -1.25,-0.31 -2.5,-0.61 -3.73,-1 -1,-0.31 -1.98,-0.76 -2.99,-1.08 0.01,-0.03 0.01,-0.07 0.02,-0.1 0.08,-0.44 0.13,-0.87 0.16,-1.31 0.24,0.12 0.49,0.23 0.73,0.34 -0.02,0.34 -0.04,0.67 0,1 0.01,0.13 0.22,0.19 0.25,0.03 0.03,-0.17 0.04,-0.34 0.05,-0.51 0.03,0.02 0.06,0.04 0.09,0.05 0.02,0.01 0.05,0.01 0.08,0.01 0.01,0 0.02,0 0.03,0 0.02,0 0.03,0 0.05,-0.01 0,0 0.01,0 0.01,0 0,0 -0.01,0 -0.01,0.01 0.01,0 0.01,-0.01 0.02,-0.01 0.02,-0.01 0.04,-0.03 0.06,-0.04 0.02,-0.03 0.04,-0.06 0.04,-0.1 0,-0.05 -0.06,-0.07 -0.1,-0.04 0,0 0,0 0,0 0,0 0,0 0,0 0,0 -0.01,0.01 -0.01,0.01 0,0 -0.01,0.01 -0.02,0.02 0,0 0,0 0,0 0,0 -0.01,0 -0.01,0 0,0 -0.01,0 -0.01,0 0,0 0,0 0,0 -0.01,0 -0.02,0 -0.03,0 0,0 0,0 0,0 -0.01,0 -0.02,0 -0.02,0 0,0 -0.01,0 -0.01,0 -0.02,0 -0.03,-0.01 -0.05,-0.01 0,0 -0.01,0 -0.01,0 -0.01,0 -0.02,-0.01 -0.03,-0.01 0,0 -0.01,0 -0.01,-0.01 -0.01,-0.01 -0.01,-0.01 -0.02,-0.02 0,0 0,-0.01 -0.01,-0.01 0,-0.01 -0.01,-0.01 -0.01,-0.02 0,-0.06 0.01,-0.12 0.01,-0.19 0.37,0.15 0.74,0.29 1.12,0.42 -0.01,0.28 -0.02,0.56 -0.01,0.84 0.01,0.15 0.26,0.21 0.28,0.04 0.04,-0.25 0.05,-0.51 0.07,-0.77 0.34,0.11 0.66,0.24 1,0.32 -0.01,0.16 -0.01,0.33 -0.02,0.49 -0.01,0.18 -0.03,0.38 0.02,0.56 0.05,0.16 0.24,0.14 0.3,0 0.07,-0.17 0.06,-0.38 0.07,-0.56 0.01,-0.14 0.01,-0.27 0.02,-0.41 0.44,0.1 0.9,0.18 1.35,0.26 0,0 0,0 0,0 z m -11.05,-5.93 c 0.32,-0.24 0.65,-0.47 0.99,-0.68 0.22,0.18 0.43,0.36 0.65,0.54 -0.32,0.13 -0.64,0.27 -0.97,0.4 -0.18,0.07 -0.11,0.37 0.08,0.3 0.4,-0.15 0.8,-0.29 1.2,-0.44 0.15,0.12 0.3,0.25 0.45,0.37 -0.19,0.06 -0.38,0.1 -0.56,0.17 -0.34,0.14 -0.66,0.31 -0.98,0.48 -0.29,-0.23 -0.58,-0.45 -0.88,-0.68 0.02,-0.15 0.02,-0.3 0.02,-0.46 z m 2.04,-1.24 c 0.23,0.22 0.47,0.43 0.7,0.65 -0.08,0.03 -0.16,0.06 -0.25,0.1 -0.16,0.07 -0.32,0.13 -0.48,0.2 -0.23,-0.19 -0.47,-0.38 -0.7,-0.57 0.24,-0.14 0.48,-0.26 0.73,-0.38 z m 0.81,6.06 c -0.14,-0.09 -0.27,-0.17 -0.41,-0.25 -0.29,-0.17 -0.58,-0.35 -0.87,-0.52 0.43,-0.3 0.9,-0.56 1.38,-0.78 0.03,0.02 0.06,0.05 0.09,0.07 0.22,0.17 0.43,0.34 0.65,0.51 0.11,0.08 0.22,0.17 0.34,0.25 0,0.03 0,0.06 0,0.09 -0.41,0.18 -0.8,0.39 -1.18,0.63 z m -0.94,0.4 c -0.42,-0.14 -0.85,-0.27 -1.27,-0.41 0.03,-0.03 0.06,-0.06 0.09,-0.09 0.17,-0.16 0.36,-0.3 0.55,-0.44 0.33,0.2 0.66,0.4 0.98,0.6 0.09,0.05 0.17,0.1 0.26,0.15 -0.12,0.08 -0.23,0.19 -0.35,0.28 -0.08,-0.03 -0.17,-0.06 -0.26,-0.09 z m 0.36,-2.5 c 0.15,0.12 0.3,0.24 0.44,0.35 -0.5,0.22 -0.98,0.48 -1.43,0.8 -0.19,-0.11 -0.38,-0.23 -0.56,-0.34 0.48,-0.29 0.97,-0.56 1.48,-0.78 0.02,-0.02 0.05,-0.02 0.07,-0.03 z m 1.71,-3.38 c 0,0.24 0.01,0.48 0.02,0.71 -0.1,-0.09 -0.2,-0.17 -0.29,-0.26 -0.09,-0.08 -0.18,-0.16 -0.26,-0.23 0.04,-0.02 0.08,-0.03 0.12,-0.04 0.13,-0.06 0.27,-0.11 0.41,-0.18 z m 0.08,4.27 c -0.03,-0.02 -0.06,-0.05 -0.09,-0.07 -0.2,-0.16 -0.4,-0.31 -0.6,-0.47 0.23,-0.09 0.48,-0.16 0.72,-0.24 0,0.26 -0.02,0.52 -0.03,0.78 z m -0.62,-3.55 c 0.03,0.03 0.06,0.06 0.1,0.09 -0.02,0 -0.03,0.01 -0.05,0.01 -0.23,0.05 -0.45,0.14 -0.67,0.2 -0.16,-0.13 -0.32,-0.26 -0.48,-0.39 0.1,-0.04 0.19,-0.07 0.29,-0.11 0.14,-0.05 0.29,-0.11 0.43,-0.16 0.13,0.13 0.26,0.24 0.38,0.36 z m 0.12,0.51 c 0.13,-0.03 0.25,-0.04 0.38,-0.06 0.03,0.03 0.06,0.05 0.09,0.08 0.01,0.25 0.02,0.51 0.03,0.76 -0.26,-0.21 -0.53,-0.43 -0.79,-0.64 -0.02,-0.02 -0.04,-0.03 -0.06,-0.05 0.11,-0.02 0.23,-0.06 0.35,-0.09 z m 0.52,2.01 c -0.32,0.09 -0.64,0.19 -0.95,0.31 -0.14,-0.11 -0.29,-0.22 -0.44,-0.34 0.23,-0.09 0.45,-0.19 0.68,-0.27 0.23,-0.08 0.46,-0.15 0.7,-0.22 0.01,0.17 0.01,0.35 0.01,0.52 z m -0.06,-4.61 c -0.02,0.33 -0.03,0.66 -0.03,0.99 -0.21,0.05 -0.41,0.12 -0.6,0.2 -0.09,0.04 -0.19,0.08 -0.28,0.11 -0.25,-0.22 -0.5,-0.45 -0.75,-0.67 0.03,-0.02 0.06,-0.04 0.1,-0.05 0.46,-0.21 0.94,-0.39 1.43,-0.54 0.04,-0.02 0.08,-0.03 0.13,-0.04 z m -1.92,3.02 c 0.22,-0.08 0.45,-0.13 0.68,-0.19 0.09,0.07 0.17,0.14 0.26,0.21 0.29,0.24 0.59,0.49 0.88,0.73 -0.54,0.11 -1.07,0.34 -1.56,0.55 -0.09,-0.07 -0.19,-0.15 -0.28,-0.22 -0.29,-0.23 -0.59,-0.45 -0.88,-0.68 0.29,-0.14 0.58,-0.29 0.9,-0.4 z m -0.3,1.35 c 0.05,0.04 0.11,0.09 0.16,0.13 -0.54,0.25 -1.06,0.54 -1.57,0.86 -0.23,-0.14 -0.47,-0.28 -0.7,-0.42 0.25,-0.16 0.5,-0.33 0.76,-0.48 0.18,-0.1 0.02,-0.38 -0.16,-0.28 -0.19,0.11 -0.36,0.24 -0.54,0.35 0.04,-0.11 0.07,-0.22 0.08,-0.33 0.32,-0.22 0.64,-0.43 0.99,-0.6 0.32,0.25 0.65,0.51 0.98,0.77 z m -1.73,1.2 c -0.08,0.05 -0.17,0.1 -0.24,0.16 -0.26,0.19 -0.51,0.4 -0.76,0.6 -0.33,-0.11 -0.65,-0.21 -0.98,-0.32 0.29,-0.21 0.59,-0.42 0.89,-0.62 0.13,-0.09 0.26,-0.16 0.39,-0.25 0.23,0.14 0.47,0.29 0.7,0.43 z m 0,0.38 c 0.1,-0.07 0.21,-0.13 0.32,-0.19 0.2,0.12 0.4,0.24 0.6,0.37 -0.17,0.13 -0.34,0.24 -0.49,0.38 -0.08,0.07 -0.14,0.14 -0.21,0.21 -0.29,-0.1 -0.59,-0.19 -0.88,-0.29 0.21,-0.16 0.43,-0.33 0.66,-0.48 z m -0.12,1.1 c -0.31,0.33 -0.61,0.68 -0.87,1.05 -0.02,0.03 -0.03,0.05 -0.05,0.08 -0.16,-0.02 -0.31,-0.04 -0.47,-0.06 -0.32,-0.04 -0.63,-0.06 -0.95,-0.09 0.44,-0.46 0.89,-0.9 1.39,-1.3 0.32,0.11 0.63,0.21 0.95,0.32 z m 0.35,0.12 c 0.49,0.16 0.97,0.33 1.46,0.49 -0.17,0.14 -0.36,0.26 -0.53,0.42 -0.11,0.11 -0.22,0.23 -0.33,0.34 -0.5,-0.07 -1.01,-0.13 -1.51,-0.19 0.27,-0.38 0.58,-0.73 0.91,-1.06 z m 1.23,1.15 c 0.2,-0.19 0.43,-0.34 0.64,-0.51 0.38,0.14 0.78,0.29 1.17,0.32 0.18,0.01 0.22,-0.23 0.09,-0.32 -0.21,-0.14 -0.47,-0.2 -0.71,-0.29 -0.04,-0.01 -0.08,-0.03 -0.12,-0.04 0.09,-0.07 0.18,-0.15 0.27,-0.22 0.15,0.09 0.3,0.18 0.46,0.22 0.13,0.03 0.2,-0.12 0.12,-0.21 -0.07,-0.08 -0.16,-0.14 -0.25,-0.2 0.25,-0.16 0.52,-0.3 0.79,-0.43 -0.08,0.64 -0.23,1.27 -0.45,1.87 -0.05,0.13 -0.11,0.24 -0.16,0.36 -0.35,-0.16 -0.79,-0.19 -1.17,-0.25 -0.27,-0.04 -0.55,-0.08 -0.82,-0.12 0.04,-0.06 0.08,-0.13 0.14,-0.18 z m 7.84,-1.85 c -0.01,0.23 -0.03,0.47 -0.04,0.7 -0.34,-0.09 -0.67,-0.2 -1,-0.31 0.01,-0.3 0.02,-0.6 0.03,-0.89 0.01,-0.19 0.02,-0.38 0.03,-0.57 0.19,0.05 0.37,0.12 0.56,0.15 0.16,0.03 0.32,0.05 0.47,0.07 z m -1.34,-0.54 c -0.01,0.27 -0.03,0.55 -0.05,0.83 -0.38,-0.13 -0.75,-0.27 -1.12,-0.42 0,-0.1 0,-0.19 0.01,-0.29 0.01,-0.37 0.03,-0.75 0.04,-1.12 0.38,0.15 0.77,0.27 1.16,0.38 -0.02,0.2 -0.03,0.41 -0.04,0.62 z m -4.26,-6.32 c -0.5,0.18 -0.99,0.38 -1.46,0.61 -0.08,0.04 -0.16,0.09 -0.24,0.14 -0.01,-0.01 -0.02,-0.02 -0.04,-0.03 -0.14,-0.13 -0.34,0.05 -0.25,0.19 -0.25,0.14 -0.51,0.27 -0.75,0.42 0,0 0,0 -0.01,0 -0.15,-0.12 -0.34,0.05 -0.27,0.18 -0.25,0.17 -0.5,0.35 -0.74,0.54 0.01,-0.25 0.03,-0.51 0.02,-0.76 0,-0.15 -0.02,-0.3 -0.03,-0.44 0.67,-0.19 1.33,-0.39 2.01,-0.53 0.39,-0.08 0.77,-0.17 1.16,-0.24 0.1,-0.02 0.2,-0.03 0.29,-0.05 0.05,-0.01 0.1,-0.01 0.15,-0.02 0,0 0,0 0,0 0.08,-0.01 0.16,-0.02 0.24,-0.03 -0.02,0 -0.05,0.01 -0.08,0.02 z m -3.8,3.31 c 0.18,0.14 0.36,0.28 0.54,0.43 -0.17,0.09 -0.32,0.2 -0.48,0.31 -0.01,-0.09 -0.04,-0.17 -0.1,-0.23 0.01,-0.17 0.03,-0.34 0.04,-0.51 z m -2.25,3.38 c 0.33,0.11 0.66,0.22 0.99,0.33 -0.48,0.43 -0.91,0.89 -1.33,1.38 -0.42,-0.04 -0.83,-0.09 -1.25,-0.12 0.07,-0.09 0.14,-0.18 0.22,-0.27 0.38,-0.42 0.78,-0.83 1.21,-1.2 0.05,-0.04 0.11,-0.08 0.16,-0.12 z m 1.1,2.84 c 0.11,-0.2 0.24,-0.39 0.36,-0.59 0.47,0.06 0.94,0.12 1.41,0.19 -0.36,0.4 -0.68,0.84 -0.95,1.31 -0.16,-0.01 -0.32,-0.01 -0.48,-0.02 -0.26,-0.01 -0.52,-0.03 -0.77,-0.04 0.18,-0.25 0.29,-0.58 0.43,-0.85 z m 27.11,-12.72 c -0.08,0.22 -0.16,0.44 -0.24,0.67 -0.53,-0.02 -1.06,-0.02 -1.6,0 0.03,-0.27 0.07,-0.53 0.14,-0.79 0.04,-0.13 0.1,-0.26 0.15,-0.39 0.58,0 1.16,-0.01 1.74,-0.01 -0.06,0.17 -0.13,0.34 -0.19,0.52 z m -2.12,-0.24 c -0.09,0.3 -0.15,0.61 -0.19,0.92 -0.2,0.01 -0.41,0.02 -0.61,0.02 -0.7,0 -1.41,-0.04 -2.11,-0.08 0.04,-0.22 0.09,-0.44 0.16,-0.65 0.07,-0.19 0.17,-0.36 0.27,-0.54 0.86,0.02 1.72,0.05 2.59,0.05 -0.03,0.09 -0.08,0.18 -0.11,0.28 z m -3.3,0.83 c -0.27,-0.02 -0.54,-0.04 -0.8,-0.05 -0.58,-0.04 -1.16,-0.12 -1.74,-0.18 0.06,-0.2 0.11,-0.4 0.2,-0.59 0.07,-0.15 0.16,-0.28 0.24,-0.42 0.18,0.01 0.36,0.02 0.54,0.03 0.64,0.03 1.29,0.02 1.94,0.04 -0.2,0.36 -0.32,0.76 -0.38,1.17 z m -2.73,-0.98 c -0.1,0.22 -0.17,0.46 -0.24,0.7 -0.64,-0.07 -1.27,-0.14 -1.9,-0.23 0.02,-0.03 0.04,-0.07 0.06,-0.11 0.18,-0.26 0.39,-0.5 0.6,-0.74 0.55,0.03 1.1,0.07 1.65,0.09 -0.05,0.1 -0.12,0.19 -0.17,0.29 z m -2.38,0.11 c -0.07,0.09 -0.12,0.2 -0.18,0.29 -0.69,-0.1 -1.38,-0.2 -2.06,-0.32 -0.01,0 -0.01,0 -0.02,0 0.26,-0.22 0.55,-0.41 0.83,-0.6 0.62,0.04 1.24,0.07 1.86,0.11 -0.14,0.17 -0.3,0.33 -0.43,0.52 z m -2.76,-0.12 c -0.65,-0.12 -1.3,-0.24 -1.95,-0.38 0.15,-0.13 0.31,-0.25 0.47,-0.36 0.74,0.06 1.47,0.14 2.21,0.19 -0.25,0.18 -0.5,0.35 -0.73,0.55 z m -2.35,-0.46 c -0.26,-0.06 -0.52,-0.1 -0.78,-0.17 -0.12,-0.03 -0.18,0.16 -0.05,0.19 0.21,0.06 0.43,0.1 0.64,0.16 -0.22,0.21 -0.43,0.43 -0.62,0.67 -0.35,-0.14 -0.7,-0.29 -1.03,-0.46 0.24,-0.3 0.51,-0.58 0.78,-0.84 0.49,0.05 0.98,0.09 1.46,0.13 -0.13,0.1 -0.27,0.21 -0.4,0.32 z m -2.23,0.18 c -0.15,-0.08 -0.31,-0.17 -0.46,-0.26 0.17,-0.15 0.34,-0.31 0.5,-0.47 0.18,0.02 0.36,0.03 0.53,0.05 -0.2,0.21 -0.39,0.44 -0.57,0.68 z m -18.46,17.97 c -0.41,0.29 -0.75,0.5 -1.25,0.6 -1.08,0.23 -2.27,0.17 -3.36,0.16 -1.1,-0.01 -2.28,0.02 -3.36,-0.21 -0.08,-0.02 -0.16,-0.04 -0.25,-0.06 0,-0.06 0,-0.12 0,-0.18 0,-0.2 0,-0.39 -0.01,-0.59 -0.01,-0.42 -0.03,-0.85 -0.05,-1.27 -0.03,-0.79 -0.07,-1.58 -0.11,-2.37 0.47,0.07 0.95,0.12 1.43,0.16 -0.01,0.02 -0.03,0.04 -0.03,0.07 0,0.07 -0.01,0.14 -0.02,0.21 -0.12,0 -0.17,0.18 -0.04,0.21 0.01,0 0.01,0 0.02,0 -0.03,0.43 -0.06,0.87 -0.09,1.3 -0.02,0.29 -0.04,0.58 -0.06,0.86 -0.01,0.13 -0.02,0.27 -0.03,0.4 -0.01,0.15 -0.04,0.31 0.01,0.45 0.06,0.21 0.32,0.18 0.39,0 0.06,-0.14 0.04,-0.31 0.05,-0.45 0.01,-0.13 0.01,-0.27 0.02,-0.4 0.01,-0.29 0.02,-0.58 0.04,-0.86 0.01,-0.15 0.01,-0.29 0.02,-0.44 0.01,0.07 0.02,0.14 0.05,0.19 0.07,0.14 0.26,0.09 0.31,-0.04 0,0 0,-0.01 0,-0.01 0.01,0.02 0.03,0.04 0.06,0.04 0.17,0.03 0.34,0.04 0.51,0.07 0.01,0.27 0.07,0.53 0.2,0.76 0.06,0.1 0.13,0.18 0.21,0.27 -0.36,0.01 -0.72,0.02 -1.09,0.02 -0.13,0 -0.13,0.21 0,0.21 0.45,0.01 0.9,0.02 1.34,0.03 0.09,0.07 0.19,0.11 0.29,0.08 0.04,-0.01 0.06,-0.04 0.08,-0.07 0.31,0.01 0.63,0.01 0.94,0.02 0.01,0.11 0,0.22 0.01,0.33 0.02,0.17 0.24,0.17 0.26,0 0.01,-0.1 0.01,-0.21 0.01,-0.32 0.14,0 0.28,0.01 0.41,0.01 0.39,0.01 0.78,0.01 1.17,0.02 0.01,0.25 0.03,0.49 0.08,0.73 0.03,0.13 0.26,0.15 0.28,0 0.04,-0.24 0.04,-0.48 0.03,-0.72 0.04,0 0.08,0 0.12,0 0.13,0 0.26,0.01 0.39,0.01 0.01,0.3 0.02,0.6 0.07,0.89 0.02,0.09 0.17,0.09 0.19,0 0.05,-0.29 0.06,-0.59 0.07,-0.88 0.3,0 0.59,-0.01 0.87,-0.08 0.13,-0.03 0.13,-0.23 0,-0.27 -0.27,-0.07 -0.55,-0.08 -0.84,-0.08 0,-0.3 0,-0.61 0,-0.91 0.01,0 0.03,0 0.04,0 0.33,-0.05 0.68,-0.11 1.02,-0.2 0.03,0.17 0.06,0.34 0.16,0.48 0.01,0.01 0.02,0.01 0.04,0.02 0,0.04 0,0.07 0,0.11 0,0.4 -0.02,0.82 0.03,1.22 -0.04,0.04 -0.07,0.08 -0.12,0.13 -0.16,0.16 -0.34,0.23 -0.51,0.35 z m -1.41,-1.17 c -0.04,0 -0.09,0 -0.13,0 0,-0.04 0,-0.07 0,-0.11 -0.01,-0.24 -0.02,-0.49 -0.03,-0.73 0.18,-0.02 0.36,-0.03 0.54,-0.05 0,0.3 -0.01,0.59 0,0.88 -0.14,0.01 -0.26,0.01 -0.38,0.01 z m -3.48,0.05 c -0.05,-0.03 -0.11,-0.07 -0.15,-0.1 -0.1,-0.09 -0.19,-0.19 -0.26,-0.3 -0.11,-0.18 -0.17,-0.38 -0.19,-0.58 0.56,0.08 1.12,0.14 1.69,0.16 -0.01,0.27 0,0.54 0,0.81 -0.36,0 -0.73,0 -1.09,0.01 z m -1.42,-1.78 c -0.01,-0.08 -0.01,-0.16 -0.02,-0.24 0.43,0.07 0.87,0.13 1.3,0.16 -0.01,0.23 -0.01,0.46 0.02,0.68 -0.18,-0.02 -0.36,-0.04 -0.54,-0.06 -0.04,-0.05 -0.12,-0.06 -0.17,-0.02 -0.16,-0.02 -0.32,-0.03 -0.49,-0.05 -0.05,-0.01 -0.08,0.01 -0.11,0.04 0.03,-0.18 0.02,-0.36 0.01,-0.51 z m 2.83,0.96 c 0.34,0.01 0.68,0.04 1.02,0.02 0.17,-0.01 0.34,-0.04 0.51,-0.05 0.01,0.23 0.01,0.46 0.02,0.7 0,0.04 0,0.07 0,0.11 -0.38,0 -0.77,0.01 -1.15,0.01 -0.13,0 -0.27,0 -0.4,0.01 0,-0.27 0.01,-0.53 0,-0.8 z m 2.82,-0.5 c 0,-0.33 0,-0.66 -0.01,-0.99 0.26,-0.07 0.54,-0.16 0.81,-0.25 0.03,0.16 0.06,0.32 0.09,0.48 0.04,0.19 0.07,0.38 0.11,0.57 -0.3,0.06 -0.59,0.14 -0.88,0.19 -0.04,-0.01 -0.08,-0.01 -0.12,0 z m 1.28,-0.58 c -0.02,-0.09 -0.04,-0.17 -0.06,-0.26 -0.04,-0.18 -0.08,-0.36 -0.11,-0.54 0.06,-0.03 0.11,-0.06 0.18,-0.09 0,0.31 0,0.6 -0.01,0.89 z m 0.03,-2 c 0.01,0.04 0.02,0.08 0.03,0.12 -0.02,0.22 -0.04,0.44 -0.04,0.66 -0.08,0.03 -0.17,0.05 -0.25,0.08 -0.04,-0.19 -0.08,-0.38 -0.12,-0.57 -0.04,-0.2 -0.33,-0.11 -0.3,0.08 0.04,0.2 0.07,0.39 0.11,0.59 -0.25,0.09 -0.49,0.18 -0.74,0.25 0,-0.25 0,-0.5 0,-0.74 0.25,-0.15 0.52,-0.28 0.8,-0.36 0.16,-0.05 0.34,-0.08 0.51,-0.11 z m -1.69,2.62 c -0.18,0.03 -0.37,0.04 -0.55,0.06 0,-0.07 -0.01,-0.14 -0.01,-0.21 l -0.03,-0.69 c 0.2,-0.04 0.4,-0.06 0.59,-0.11 0,0.31 0,0.63 0,0.95 z m -0.93,-0.15 c 0,0.08 0.01,0.17 0.01,0.25 -0.17,0.01 -0.33,0.05 -0.5,0.06 -0.34,0.02 -0.68,0 -1.03,0 0,-0.09 -0.01,-0.18 -0.01,-0.26 0,-0.16 0,-0.32 0,-0.48 0.24,-0.01 0.49,-0.02 0.73,-0.05 0.26,-0.03 0.52,-0.1 0.77,-0.15 0.01,0.22 0.02,0.42 0.03,0.63 z m -1.82,0.05 c 0,0.09 0,0.18 -0.01,0.26 -0.31,-0.01 -0.62,-0.02 -0.93,-0.04 0.06,-0.22 0.08,-0.46 0.1,-0.69 0.28,0.01 0.56,0.02 0.84,0.01 0,0.16 0,0.31 0,0.46 z m -0.82,-0.76 c 0.01,-0.13 0.01,-0.26 0.02,-0.39 0.27,0 0.54,0 0.81,-0.02 0,0.13 0,0.26 0,0.4 -0.28,0.01 -0.55,0.01 -0.83,0.01 z m -0.41,-0.01 c -0.45,-0.02 -0.89,-0.06 -1.33,-0.13 0,-0.06 -0.01,-0.12 -0.01,-0.18 0,-0.05 -0.01,-0.09 -0.01,-0.14 0.46,0.03 0.92,0.05 1.38,0.05 -0.01,0.14 -0.02,0.27 -0.03,0.4 z m 4.33,-1.67 c -0.01,-0.03 -0.01,-0.05 -0.03,-0.07 0.06,-0.01 0.13,-0.01 0.19,-0.01 -0.06,0.03 -0.11,0.05 -0.16,0.08 z m -0.34,0.05 c 0,0.07 0,0.14 0,0.2 -0.12,0.09 -0.24,0.17 -0.34,0.27 -0.14,0.14 0.07,0.34 0.21,0.21 0.04,-0.04 0.09,-0.06 0.13,-0.09 0,0.19 0,0.38 0,0.57 -0.2,0.05 -0.41,0.08 -0.61,0.12 l -0.06,-1.36 c 0.24,-0.01 0.48,-0.02 0.72,-0.04 -0.03,0.04 -0.05,0.07 -0.05,0.12 z m -1.02,-0.05 c 0.01,0.47 0.03,0.94 0.04,1.41 -0.27,0.05 -0.54,0.13 -0.82,0.17 -0.23,0.03 -0.45,0.04 -0.68,0.06 0,-0.14 0,-0.27 0,-0.41 0.23,-0.02 0.46,-0.04 0.69,-0.1 0.11,-0.03 0.07,-0.17 -0.03,-0.18 -0.22,-0.02 -0.44,-0.03 -0.66,-0.03 0,-0.16 0,-0.31 0,-0.47 0,-0.17 -0.26,-0.17 -0.26,0 0,0.15 0,0.3 0,0.46 -0.26,0 -0.53,0 -0.79,0 0,-0.01 0,-0.02 0,-0.03 0.01,-0.29 0.03,-0.58 0.04,-0.88 0.82,0.03 1.65,0.03 2.47,0 z m -2.92,0.88 c 0,0 0,0.01 0,0.01 -0.48,-0.01 -0.95,-0.03 -1.43,-0.07 -0.02,-0.26 -0.04,-0.52 -0.06,-0.78 0,-0.06 -0.03,-0.11 -0.07,-0.15 0.54,0.04 1.08,0.06 1.62,0.08 -0.03,0.32 -0.05,0.61 -0.06,0.91 z m -3.8,0.06 c 0,0.15 0.01,0.3 0.01,0.45 -0.01,-0.04 -0.03,-0.09 -0.05,-0.13 -0.03,-0.12 -0.05,-0.23 -0.08,-0.35 0.04,0.01 0.08,0.02 0.12,0.03 z m 75.2,-5.23 c -0.08,0.02 -0.15,0.05 -0.23,0.07 -0.19,-0.18 -0.38,-0.37 -0.57,-0.53 -0.16,-0.14 -0.33,-0.26 -0.5,-0.38 0.02,-0.01 0.03,-0.02 0.05,-0.02 0.04,0.02 0.08,0.05 0.11,0.07 0.46,0.26 0.96,0.48 1.46,0.69 -0.1,0.03 -0.21,0.07 -0.32,0.1 z m -2.57,-1.7 c -0.28,-0.16 -0.57,-0.29 -0.86,-0.42 0.04,-0.03 0.07,-0.06 0.11,-0.09 0.01,-0.01 0.01,-0.01 0.02,-0.02 0.04,0.05 0.08,0.11 0.14,0.15 0.13,0.1 0.28,0.15 0.42,0.18 0.24,0.2 0.49,0.39 0.75,0.56 -0.2,-0.12 -0.38,-0.25 -0.58,-0.36 z m -0.13,-9.49 c -0.38,0.46 -0.59,0.99 -0.61,1.55 -0.25,0.48 -0.28,1.11 -0.35,1.6 -0.05,0.36 -0.05,0.73 -0.07,1.1 -0.1,-0.01 -0.19,-0.02 -0.29,-0.03 -0.01,0 -0.01,-0.02 -0.02,-0.02 -0.02,0 -0.04,0.01 -0.06,0.01 -0.29,-0.03 -0.58,-0.07 -0.87,-0.1 -0.46,-0.05 -0.91,-0.11 -1.37,-0.13 -0.28,-0.85 -0.69,-1.65 -1.33,-2.28 -0.31,-0.3 -0.66,-0.56 -1.03,-0.78 2.09,-0.33 4.17,-0.7 6.25,-1.14 -0.09,0.07 -0.18,0.14 -0.25,0.22 z m 13.95,-4.09 c 0.02,0.01 0.04,0.03 0.06,0.03 0.37,0.04 0.75,0.07 1.12,0.11 0.11,0.01 0.22,0.02 0.34,0.03 v 0.51 c 0,0.05 0,0.1 0,0.15 -0.08,0.01 -0.15,0.03 -0.23,0.03 -0.21,0.02 -0.43,-0.01 -0.64,-0.03 -0.03,-0.14 -0.22,-0.16 -0.28,-0.04 -0.31,-0.07 -0.61,-0.19 -0.88,-0.35 0,-0.08 -0.01,-0.16 -0.01,-0.25 0.17,-0.05 0.35,-0.12 0.52,-0.19 z m 0.44,2.7 c 0.01,0.19 0.02,0.37 0.03,0.56 -0.12,-0.01 -0.24,-0.01 -0.35,-0.03 -0.18,-0.03 -0.35,-0.08 -0.53,-0.14 -0.01,-0.31 -0.02,-0.62 -0.04,-0.92 0,-0.02 0,-0.04 0,-0.06 0.27,0.12 0.54,0.22 0.83,0.3 0.01,0 0.03,0.01 0.05,0.01 0,0.09 0,0.18 0.01,0.28 z m -1.16,0.89 c 0.01,0.35 0.01,0.71 0.05,1.06 -0.07,-0.03 -0.14,-0.06 -0.21,-0.1 -0.11,-0.07 -0.2,0.02 -0.2,0.12 -0.07,-0.03 -0.14,-0.06 -0.21,-0.1 -0.04,-0.02 -0.07,0 -0.1,0.03 0.03,-0.53 0.01,-1.05 -0.02,-1.57 0.19,0.11 0.39,0.23 0.6,0.31 0.03,0.01 0.05,0.01 0.08,0.02 0.01,0.08 0.01,0.15 0.01,0.23 z m 1.08,-2.42 c 0.02,0.31 0.03,0.62 0.05,0.93 -0.3,-0.08 -0.59,-0.18 -0.87,-0.31 -0.01,-0.31 -0.02,-0.62 -0.04,-0.92 0.27,0.14 0.56,0.24 0.86,0.3 z m -1.52,-0.74 c 0.11,0.09 0.23,0.16 0.34,0.23 0.01,0.32 0.02,0.64 0.03,0.97 -0.16,-0.08 -0.33,-0.16 -0.49,-0.26 -0.15,-0.09 -0.28,0.14 -0.14,0.23 0.2,0.13 0.42,0.24 0.64,0.35 0,0.09 0.01,0.18 0.01,0.27 0.01,0.26 0.02,0.51 0.03,0.77 -0.24,-0.09 -0.47,-0.21 -0.69,-0.35 -0.02,-0.26 -0.04,-0.52 -0.06,-0.78 -0.03,-0.43 -0.07,-0.86 -0.1,-1.28 0.15,-0.05 0.29,-0.1 0.43,-0.15 z m -0.78,0.27 c 0.01,0 0.02,-0.01 0.03,-0.01 0.03,0.41 0.05,0.82 0.08,1.23 0.01,0.14 0.02,0.28 0.03,0.43 -0.07,-0.06 -0.15,-0.11 -0.22,-0.17 -0.01,-0.46 -0.02,-0.93 -0.06,-1.39 0,-0.01 0,-0.02 0,-0.03 0.01,-0.01 0.01,-0.01 0.02,-0.02 0.04,-0.02 0.08,-0.03 0.12,-0.04 z m 5.72,-2.32 c 0.01,0.79 0.04,1.58 0.06,2.37 0.02,0.79 0.05,1.58 0.09,2.37 0.03,0.76 -0.01,1.58 0.12,2.34 -0.22,0.13 -0.44,0.24 -0.66,0.33 -0.73,0.3 -1.54,0.45 -2.33,0.45 -0.85,0 -1.7,-0.15 -2.48,-0.45 -0.19,-0.07 -0.37,-0.16 -0.55,-0.26 -0.01,-0.98 -0.02,-1.97 -0.02,-2.95 0.08,0.07 0.15,0.13 0.24,0.19 0.04,0.64 0.1,1.27 0.23,1.9 0.02,0.08 0.11,0.06 0.14,0 0,0.03 -0.01,0.05 0.02,0.07 0.43,0.26 0.9,0.45 1.39,0.56 0.24,0.05 0.48,0.09 0.73,0.1 0.25,0.02 0.52,0.03 0.76,-0.04 0.14,-0.04 0.1,-0.23 -0.03,-0.24 -0.1,-0.01 -0.2,-0.01 -0.3,0 0.07,-0.07 0.03,-0.2 -0.06,-0.22 -0.17,-0.03 -0.35,0.01 -0.52,0.02 -0.16,0.01 -0.33,0 -0.49,-0.02 -0.16,-0.02 -0.31,-0.06 -0.46,-0.12 0.04,-0.43 -0.01,-0.88 -0.02,-1.3 0,-0.01 0,-0.02 0,-0.03 0.14,0.04 0.27,0.09 0.42,0.12 0.15,0.03 0.31,0.05 0.47,0.06 0.01,0.12 0.01,0.25 0.03,0.37 0.02,0.16 0.02,0.33 0.07,0.48 0.03,0.09 0.18,0.11 0.21,0 0.07,-0.27 0.03,-0.6 0.01,-0.87 0,0 0,0 0,0 0.03,-0.01 0.07,0 0.1,-0.01 0.14,-0.04 0.15,-0.27 0,-0.3 -0.04,-0.01 -0.08,-0.01 -0.12,-0.01 -0.01,-0.2 -0.02,-0.4 -0.03,-0.59 0,-0.07 -0.01,-0.14 -0.01,-0.2 0.51,0.12 1.05,0.19 1.55,0.09 0.15,-0.03 0.1,-0.23 -0.03,-0.25 -0.31,-0.03 -0.62,-0.03 -0.93,-0.06 -0.2,-0.02 -0.4,-0.07 -0.6,-0.11 -0.02,-0.32 -0.03,-0.64 -0.05,-0.97 0.2,0.02 0.39,0.06 0.59,0.04 0.08,0 0.17,-0.02 0.25,-0.03 0,0.16 0.01,0.33 0.03,0.49 0.02,0.11 0.21,0.11 0.23,0 0.03,-0.18 0.03,-0.36 0.03,-0.55 0.12,-0.03 0.24,-0.07 0.33,-0.13 0.1,-0.07 0.07,-0.26 -0.07,-0.25 -0.09,0.01 -0.18,0.02 -0.27,0.04 0,-0.04 0,-0.08 0,-0.12 0,-0.16 0,-0.32 0,-0.48 0.16,0.02 0.35,0.05 0.5,0 0.11,-0.04 0.15,-0.2 0.03,-0.26 -0.15,-0.09 -0.36,-0.08 -0.53,-0.1 0,-0.06 0,-0.12 0,-0.18 0,-0.18 -0.28,-0.18 -0.28,0 v 0.15 c -0.11,-0.01 -0.21,-0.02 -0.32,-0.03 -0.19,-0.02 -0.38,-0.03 -0.56,-0.05 1.08,-0.44 2.14,-0.94 3.13,-1.53 -0.04,0.06 -0.04,0.12 -0.04,0.17 z m 0.64,-2.86 c 0,-0.16 -0.03,-0.31 -0.03,-0.47 -0.01,-0.22 0,-0.44 0.03,-0.65 0.06,-0.43 0.19,-0.84 0.38,-1.22 0.1,-0.2 -0.19,-0.37 -0.3,-0.17 -0.22,0.42 -0.37,0.88 -0.45,1.35 -0.04,0.23 -0.06,0.47 -0.06,0.7 0,0.23 0,0.49 0.11,0.7 -0.28,0.21 -0.56,0.4 -0.85,0.59 0.02,-0.17 0.02,-0.35 0.02,-0.52 0,-0.24 0,-0.47 -0.01,-0.71 0,-0.47 -0.01,-0.95 -0.01,-1.42 0,-0.03 -0.02,-0.05 -0.03,-0.07 0.73,-0.37 1.42,-0.78 2.06,-1.24 0.03,0.37 0.06,0.73 0.09,1.1 0.01,0.19 0.03,0.39 0.04,0.58 0.01,0.1 0.02,0.2 0.04,0.3 0.01,0.08 0.03,0.14 0.07,0.2 -0.36,0.33 -0.72,0.65 -1.1,0.95 z m 1.41,-1.31 c 0,-0.07 -0.01,-0.13 -0.01,-0.2 -0.02,-0.19 -0.04,-0.37 -0.06,-0.56 -0.04,-0.39 -0.08,-0.77 -0.12,-1.16 -0.01,-0.05 -0.03,-0.1 -0.07,-0.13 0.47,-0.37 0.9,-0.77 1.29,-1.2 -0.01,0.33 -0.02,0.66 -0.03,0.98 -0.01,0.35 -0.01,0.69 -0.01,1.04 -0.17,0.27 -0.35,0.53 -0.56,0.78 -0.14,0.16 -0.29,0.3 -0.43,0.45 z m 0.8,-8.92 c -0.01,0.03 -0.02,0.05 -0.03,0.08 -0.01,-0.08 -0.01,-0.17 -0.03,-0.25 0.01,-0.19 0.02,-0.37 0.02,-0.56 0.04,0.25 0.05,0.49 0.04,0.73 z m -5.27,2.24 c -1.11,0.12 -2.29,0.21 -3.38,-0.06 -0.42,-0.1 -0.83,-0.21 -1.22,-0.38 -0.01,-0.36 -0.12,-0.73 -0.16,-1.08 -0.03,-0.23 -0.04,-0.46 -0.06,-0.69 0.29,0.06 0.57,0.1 0.79,0.14 1.21,0.17 2.47,0.23 3.69,0.19 1.45,-0.05 3,-0.45 4.06,-1.38 0,0.15 0,0.3 0,0.44 -0.01,0.46 -0.04,0.91 -0.07,1.36 -0.22,0.33 -0.5,0.61 -0.85,0.8 -0.84,0.46 -1.88,0.56 -2.8,0.66 z m -1.98,-10.66 c -0.17,-0.04 -0.33,-0.1 -0.49,-0.16 -0.02,-0.15 -0.09,-0.26 -0.23,-0.33 0,-0.01 0,-0.02 0,-0.03 0.3,0.03 0.6,0.06 0.91,0.1 0.36,0.04 0.73,0.1 1.1,0.07 0.2,-0.01 0.26,-0.31 0.05,-0.36 -0.37,-0.09 -0.75,-0.1 -1.12,-0.13 -0.31,-0.02 -0.62,-0.05 -0.94,-0.07 -0.03,-0.58 -0.08,-1.15 -0.11,-1.72 -0.01,-0.21 -0.04,-0.42 -0.06,-0.63 0.1,0.04 0.2,0.09 0.29,0.13 0.62,0.25 1.3,0.36 1.96,0.36 0.66,0 1.34,-0.11 1.96,-0.35 0.33,-0.13 0.68,-0.28 0.99,-0.48 -0.01,0.38 -0.02,0.76 -0.01,1.15 0,0.01 0,0.01 0,0.02 -0.01,-0.02 -0.02,-0.04 -0.04,-0.05 -0.1,-0.05 -0.24,-0.05 -0.31,0.04 -0.02,0.02 -0.04,0.04 -0.06,0.06 0.01,-0.01 -0.06,0.07 -0.08,0.1 0.01,-0.01 0.02,-0.02 0,0.01 0,0 0,0 0,0 0,0 0,0.01 0,0.01 0,0 0,0 0,0 -0.01,0.01 -0.02,0.02 -0.02,0.03 -0.02,0.02 -0.04,0.05 -0.06,0.07 -0.04,0.04 -0.08,0.08 -0.13,0.12 -0.01,0.01 -0.02,0.01 -0.03,0.02 -0.03,0.02 -0.05,0.03 -0.08,0.05 -0.03,0.02 -0.05,0.03 -0.08,0.04 -0.01,0.01 -0.02,0.01 -0.03,0.02 0,0 -0.01,0 -0.01,0 0,0 0,0 0.01,0 -0.05,0.01 -0.11,0.04 -0.16,0.05 -0.03,0.01 -0.06,0.01 -0.09,0.02 -0.02,0 -0.02,0 -0.02,0 -0.01,0 -0.01,0 -0.02,0 -0.06,0.01 -0.13,0.01 -0.19,0 -0.14,-0.01 -0.28,0.13 -0.27,0.27 0.01,0.16 0.12,0.26 0.27,0.27 0.3,0.03 0.61,-0.05 0.87,-0.19 0.22,-0.12 0.43,-0.33 0.54,-0.57 0,0.32 0.01,0.64 0.01,0.96 0,0.1 0,0.21 0,0.32 -0.15,0.08 -0.24,0.2 -0.27,0.36 -0.28,0.13 -0.57,0.27 -0.85,0.35 -0.51,0.15 -1.03,0.24 -1.56,0.25 -0.57,0 -1.1,-0.05 -1.64,-0.18 z m -0.16,-5.07 c 0.57,-0.2 1.07,-0.29 1.66,-0.28 0.56,0.01 1.11,0.11 1.66,0.3 0.19,0.07 0.37,0.17 0.54,0.26 -0.25,0.14 -0.51,0.28 -0.78,0.37 -0.51,0.17 -0.98,0.24 -1.52,0.23 -0.52,-0.01 -1.02,-0.11 -1.54,-0.32 -0.18,-0.07 -0.36,-0.19 -0.55,-0.3 0.18,-0.1 0.36,-0.2 0.53,-0.26 z m -1.53,6.06 c 0.16,0.11 0.35,0.2 0.54,0.28 -0.11,0.07 -0.22,0.14 -0.31,0.23 -0.08,0.07 -0.07,0.2 0,0.27 0.08,0.08 0.2,0.07 0.27,0 0.19,-0.17 0.41,-0.27 0.66,-0.32 0.08,0.02 0.16,0.04 0.23,0.06 0.64,0.14 1.32,0.21 1.98,0.16 0.65,-0.05 1.29,-0.17 1.91,-0.39 l -0.04,0.03 c -0.1,0.08 -0.09,0.25 0,0.33 0.1,0.09 0.23,0.08 0.33,0 0.2,-0.17 0.41,-0.33 0.61,-0.5 0.05,-0.04 0.1,-0.08 0.15,-0.12 0.05,-0.04 0.09,-0.09 0.13,-0.14 0.01,-0.01 0.02,-0.03 0.04,-0.05 0.01,0.02 0.03,0.03 0.04,0.05 0.18,0.31 0.28,0.66 0.36,1.01 0.22,0.92 0.32,1.87 0.4,2.81 0.03,0.35 0.04,0.71 0.06,1.06 -0.1,0.14 -0.21,0.25 -0.33,0.36 0,0 0,0 0,0 -0.01,0 -0.01,0 -0.02,0 -0.08,0 -0.15,0.05 -0.21,0.08 l -0.31,0.16 c -0.14,0.07 -0.27,0.14 -0.41,0.21 -0.1,-0.22 -0.21,-0.43 -0.31,-0.65 -0.05,-0.11 -0.21,-0.14 -0.3,-0.08 -0.11,0.07 -0.13,0.19 -0.08,0.3 0.13,0.26 0.25,0.52 0.38,0.78 -0.94,0.36 -2.03,0.44 -2.94,0.41 -1,-0.04 -2.04,-0.09 -3.03,-0.27 -0.34,-0.06 -0.68,-0.15 -1.02,-0.26 0,-0.38 0.01,-0.75 0.04,-1.13 0.42,0.35 0.89,0.65 1.41,0.8 0.33,0.09 0.68,0.15 1.02,0.15 0.33,0 0.76,-0.03 1.05,-0.2 0.15,-0.09 0.08,-0.32 -0.09,-0.33 -0.15,-0.01 -0.3,0.03 -0.45,0.04 -0.16,0.02 -0.32,0.02 -0.48,0.01 -0.31,-0.01 -0.62,-0.05 -0.92,-0.13 -0.57,-0.16 -1.08,-0.46 -1.5,-0.88 0.01,-0.08 0.01,-0.16 0.02,-0.24 0,-0.03 0.01,-0.06 0.01,-0.09 h 1.12 c 0.47,0 0.93,0.02 1.4,-0.03 0.2,-0.02 0.2,-0.29 0,-0.31 -0.46,-0.05 -0.93,-0.03 -1.4,-0.03 h -1.07 c 0.1,-0.78 0.23,-1.56 0.45,-2.31 0.1,-0.41 0.31,-0.81 0.61,-1.13 z m -14.2,11.67 c 0,-0.03 0,-0.07 0,-0.1 0,-0.31 -0.01,-0.62 -0.01,-0.93 0,-0.22 -0.33,-0.22 -0.34,0 0,0.31 -0.01,0.62 -0.01,0.93 0,0.08 0,0.15 0,0.23 -0.51,0.2 -1.02,0.38 -1.54,0.56 -0.03,-0.1 -0.05,-0.2 -0.08,-0.29 -0.07,-0.23 -0.13,-0.46 -0.2,-0.68 -0.03,-0.11 -0.14,-0.17 -0.25,-0.14 -0.11,0.03 -0.17,0.15 -0.14,0.25 0.06,0.23 0.13,0.46 0.19,0.69 0.03,0.11 0.07,0.21 0.1,0.32 -0.1,0.03 -0.19,0.07 -0.28,0.1 -0.63,0.2 -1.27,0.36 -1.91,0.53 0,-0.02 -0.01,-0.05 -0.01,-0.07 -0.04,-0.28 -0.07,-0.55 -0.11,-0.83 -0.01,-0.1 -0.07,-0.18 -0.18,-0.18 -0.09,0 -0.19,0.08 -0.18,0.18 l 0.1,0.84 c 0.01,0.05 0.01,0.1 0.02,0.15 -0.6,0.15 -1.2,0.28 -1.8,0.41 0.02,-0.13 -0.05,-0.27 -0.09,-0.39 -0.05,-0.13 -0.11,-0.25 -0.16,-0.37 -0.11,-0.24 -0.21,-0.49 -0.32,-0.73 -0.02,-0.04 -0.06,-0.06 -0.1,-0.08 1.24,-0.22 2.47,-0.46 3.7,-0.72 1.6,-0.35 3.2,-0.76 4.72,-1.37 0,0.15 0,0.31 0.02,0.46 0.03,0.2 0.07,0.39 0.14,0.58 0.01,0.02 0.02,0.03 0.02,0.04 -0.43,0.2 -0.86,0.43 -1.3,0.61 z m -39.56,2.68 c -0.04,-0.13 -0.08,-0.25 -0.11,-0.38 -0.03,-0.11 -0.15,-0.17 -0.25,-0.14 -0.11,0.03 -0.17,0.15 -0.14,0.25 0.02,0.07 0.04,0.15 0.06,0.22 -0.02,0 -0.05,0 -0.07,-0.01 -0.93,-0.11 -1.85,-0.25 -2.77,-0.41 -0.08,-0.12 -0.17,-0.23 -0.25,-0.35 -0.06,-0.08 -0.16,-0.12 -0.25,-0.07 -0.08,0.05 -0.13,0.17 -0.07,0.26 0.01,0.02 0.03,0.04 0.04,0.06 -0.05,-0.01 -0.1,-0.03 -0.15,-0.04 -0.01,-0.08 -0.03,-0.17 -0.05,-0.25 -0.03,-0.17 -0.06,-0.34 -0.1,-0.51 -0.02,-0.1 -0.14,-0.16 -0.23,-0.13 -0.1,0.03 -0.15,0.13 -0.13,0.23 0.03,0.17 0.07,0.33 0.1,0.5 0,0.02 0.01,0.05 0.02,0.07 -0.36,-0.08 -0.71,-0.17 -1.07,-0.26 0,-0.04 -0.01,-0.07 -0.01,-0.11 -0.03,-0.28 -0.06,-0.56 -0.09,-0.85 -0.01,-0.1 -0.08,-0.19 -0.19,-0.19 -0.09,0 -0.2,0.09 -0.19,0.19 0.03,0.29 0.06,0.57 0.09,0.86 0,0 0,0 0,0 -0.24,-0.06 -0.48,-0.1 -0.71,-0.17 -0.21,-0.06 -0.42,-0.15 -0.64,-0.22 0.02,-0.02 0.03,-0.05 0.04,-0.08 0.01,-0.33 0.02,-0.67 0.03,-1 0,-0.1 -0.09,-0.19 -0.19,-0.19 -0.1,0 -0.19,0.08 -0.19,0.19 0.01,0.33 0.02,0.66 0.03,0.98 -0.48,-0.17 -0.96,-0.37 -1.42,-0.59 -0.03,-0.08 -0.06,-0.16 -0.09,-0.24 -0.07,-0.23 -0.13,-0.46 -0.17,-0.7 -0.04,-0.26 -0.05,-0.53 -0.05,-0.79 1.74,0.92 3.71,1.47 5.61,1.8 4.33,0.75 8.73,1.1 13.11,1.26 7.54,0.29 15.12,-0.17 22.55,-1.47 -0.08,0.06 -0.09,0.15 -0.05,0.23 0.1,0.24 0.2,0.48 0.31,0.73 0.05,0.12 0.1,0.24 0.15,0.36 0.05,0.1 0.1,0.21 0.18,0.29 -2.17,0.44 -4.37,0.76 -6.57,0.96 -8.68,0.81 -17.48,0.68 -26.12,-0.29 z m -15.32,-1.11 c -0.44,0.19 -1.11,0.29 -1.57,0.21 -1.14,-0.18 -2.03,-1.17 -2.17,-2.36 -0.05,-0.42 0.07,-0.83 0.27,-1.2 0.03,0.08 0.12,0.14 0.21,0.08 0.15,-0.11 0.29,-0.21 0.43,-0.34 0.12,-0.1 0.24,-0.21 0.35,-0.31 0.59,-0.05 1.15,-0.42 1.74,-0.57 0.62,-0.15 1.22,-0.08 1.71,0.27 0.99,0.7 1.03,2.1 0.36,3.12 -0.33,0.51 -0.76,0.86 -1.33,1.1 z m -8.12,-19.34 c -0.26,-0.25 -0.49,-0.53 -0.71,-0.82 0.2,-0.23 0.4,-0.47 0.61,-0.69 0.24,-0.26 0.5,-0.51 0.75,-0.76 0.2,0.42 0.46,0.83 0.79,1.16 -0.14,0.14 -0.3,0.25 -0.43,0.4 -0.25,0.29 -0.49,0.61 -0.71,0.95 -0.1,-0.07 -0.2,-0.14 -0.3,-0.24 z m -0.16,-9.16 c 0.22,0.18 0.45,0.36 0.67,0.54 -0.19,0.13 -0.39,0.26 -0.58,0.4 -0.1,0.07 -0.21,0.14 -0.31,0.22 -0.25,-0.15 -0.48,-0.33 -0.73,-0.48 0.03,-0.02 0.06,-0.04 0.09,-0.06 0.23,-0.16 0.46,-0.32 0.68,-0.49 0.06,-0.05 0.12,-0.09 0.18,-0.13 z m 0.31,1.19 c 0.21,-0.15 0.42,-0.3 0.63,-0.44 0.15,0.12 0.31,0.25 0.46,0.37 -0.25,0.2 -0.5,0.4 -0.75,0.6 -0.19,-0.12 -0.37,-0.25 -0.56,-0.37 0.07,-0.05 0.15,-0.11 0.22,-0.16 z m 4.98,-1.41 c 0.09,0.07 0.17,0.15 0.26,0.22 -0.38,0.29 -0.76,0.59 -1.14,0.88 -0.18,-0.13 -0.36,-0.25 -0.54,-0.38 0.44,-0.29 0.92,-0.54 1.42,-0.72 z m 6.27,0.35 c 0.02,0.02 0.03,0.03 0.05,0.05 -0.25,0.2 -0.5,0.4 -0.75,0.6 -0.18,0.15 -0.36,0.29 -0.54,0.44 -0.32,-0.34 -0.63,-0.69 -0.93,-1.06 0.03,0.06 0.11,0.08 0.14,0.01 0.08,-0.17 0.16,-0.33 0.27,-0.48 0.08,-0.1 -0.07,-0.23 -0.17,-0.17 -0.16,0.1 -0.32,0.22 -0.47,0.35 -0.14,-0.17 -0.28,-0.34 -0.41,-0.51 0.97,0.1 1.94,0.36 2.81,0.77 z m 4.52,1.45 c 0.23,0.27 0.46,0.55 0.69,0.82 -0.2,0.16 -0.4,0.31 -0.59,0.47 -0.16,-0.43 -0.36,-0.85 -0.6,-1.25 0.1,-0.09 0.2,-0.17 0.3,-0.26 0.08,0.08 0.14,0.15 0.2,0.22 z m 2.12,0.8 c -0.08,-0.11 -0.16,-0.21 -0.24,-0.32 -0.02,-0.02 -0.04,-0.05 -0.05,-0.07 0.04,-0.03 0.07,-0.06 0.1,-0.09 0.08,0.16 0.13,0.32 0.19,0.48 z m 1.14,6.21 c -0.16,0.05 -0.33,0.09 -0.49,0.15 0.15,-0.16 0.27,-0.34 0.37,-0.51 0.04,0.12 0.08,0.24 0.12,0.36 z m -18.35,5.81 c 0.33,-0.06 0.67,-0.12 1,-0.19 0,0 0,0 0,0 0.06,0.43 0.15,0.85 0.44,1.19 0.21,0.25 0.47,0.47 0.73,0.68 -0.02,0 -0.04,0.01 -0.06,0.01 -0.2,0.03 -0.39,0.08 -0.58,0.14 -0.15,0.05 -0.3,0.12 -0.44,0.18 -0.19,0.05 -0.38,0.08 -0.57,0.14 0.01,0.01 0.03,0.02 0.04,0.03 0.02,0.02 0.04,0.05 0.06,0.07 -0.13,0.08 -0.27,0.16 -0.39,0.26 -0.02,0.01 -0.02,0.04 -0.03,0.06 -0.09,-0.05 -0.19,-0.08 -0.28,-0.12 0.06,-0.73 0.07,-1.47 0.1,-2.2 -0.02,-0.07 -0.02,-0.16 -0.02,-0.25 z m 0.72,-8.34 c 0,-0.01 0,-0.02 -0.01,-0.03 0.04,-0.04 0.09,-0.08 0.13,-0.12 0.16,0.14 0.33,0.28 0.48,0.43 0.21,0.2 0.4,0.42 0.6,0.64 -0.14,0.09 -0.3,0.16 -0.43,0.26 -0.32,-0.31 -0.6,-0.67 -0.77,-1.18 z m -1.07,-3.86 c 0.07,0.05 0.14,0.09 0.21,0.14 -0.02,0.04 -0.04,0.08 -0.06,0.12 -0.2,0.49 -0.32,1.01 -0.39,1.54 -0.05,0.04 -0.11,0.09 -0.16,0.13 -0.35,-0.25 -0.71,-0.5 -1.08,-0.73 0.47,-0.38 0.93,-0.76 1.4,-1.14 0.03,-0.02 0.05,-0.04 0.08,-0.06 z m 8.48,-1.78 c 0.29,0.36 0.59,0.71 0.9,1.06 -0.04,0.04 -0.09,0.07 -0.13,0.11 -0.45,-0.18 -0.92,-0.31 -1.42,-0.35 -0.07,-0.01 -0.15,0.01 -0.22,0.01 0.24,-0.23 0.49,-0.46 0.73,-0.69 0.04,-0.04 0.09,-0.09 0.14,-0.14 z m 2.01,0.7 c 0.26,-0.22 0.52,-0.44 0.77,-0.65 0.28,0.27 0.56,0.54 0.84,0.81 -0.03,0.03 -0.06,0.06 -0.1,0.09 -0.38,0.35 -0.77,0.69 -1.15,1.04 0,0 0,0 0,0 -0.13,-0.13 -0.27,-0.24 -0.4,-0.37 -0.16,-0.16 -0.31,-0.33 -0.46,-0.49 0.16,-0.15 0.33,-0.29 0.5,-0.43 z m 6.43,6.86 c -0.31,0.67 -0.69,1.24 -1.22,1.75 -0.48,0.47 -1.08,0.87 -1.69,1.11 -0.05,0.02 -0.09,0.03 -0.14,0.04 0.3,-0.36 0.62,-0.71 0.94,-1.04 0.66,-0.68 1.36,-1.3 2.11,-1.87 0,0 0,0.01 0,0.01 z m -3.18,4.6 c -0.09,0.14 -0.19,0.27 -0.28,0.41 -0.18,0.01 -0.37,0.03 -0.54,0.06 -0.01,0 -0.01,0 -0.02,0 -0.01,-0.01 -0.01,-0.03 -0.03,-0.03 -0.03,0 -0.03,0.03 -0.05,0.05 -0.07,0.01 -0.14,0.03 -0.21,0.05 -0.02,-0.14 -0.05,-0.28 -0.08,-0.43 0.4,0.05 0.81,-0.01 1.21,-0.11 z m -5.86,-4.4 c -0.2,0.02 -0.21,0.33 0,0.32 0.89,-0.05 1.72,0.42 2.21,1.15 -1.41,-0.69 -2.93,-0.89 -4.47,-0.46 -0.51,0.14 -1.01,0.35 -1.5,0.6 0.03,-0.1 0.07,-0.2 0.13,-0.28 0.25,-0.31 0.68,-0.41 1.05,-0.27 0.1,0.04 0.21,-0.04 0.23,-0.13 0.03,-0.11 -0.04,-0.19 -0.13,-0.23 -0.38,-0.16 -0.85,-0.1 -1.19,0.13 -0.33,0.23 -0.54,0.62 -0.54,1.02 -0.04,0.02 -0.08,0.04 -0.11,0.06 0.03,-0.21 0.06,-0.42 0.08,-0.62 0.01,-0.11 0.01,-0.23 0.02,-0.34 0.19,-0.22 0.39,-0.42 0.62,-0.59 0.53,-0.39 1.15,-0.66 1.81,-0.74 0.22,-0.03 0.22,-0.37 0,-0.35 -0.73,0.08 -1.43,0.35 -2.02,0.78 -0.14,0.1 -0.25,0.24 -0.38,0.36 0.01,-0.24 0.03,-0.47 0.04,-0.71 0.23,-0.3 0.48,-0.59 0.76,-0.84 0.59,-0.55 1.29,-1.01 2.04,-1.31 0.22,-0.09 0.13,-0.45 -0.1,-0.37 -0.83,0.3 -1.59,0.74 -2.24,1.34 -0.17,0.15 -0.3,0.34 -0.45,0.51 -0.01,-0.28 -0.03,-0.56 -0.07,-0.84 0,0 0,-0.01 0,-0.01 0.14,-0.18 0.27,-0.38 0.45,-0.53 0.55,-0.45 1.26,-0.71 1.98,-0.66 0.21,0.01 0.2,-0.31 0,-0.32 -0.81,-0.07 -1.6,0.21 -2.22,0.72 -0.04,0.03 -0.07,0.08 -0.11,0.11 0.15,-0.4 0.26,-0.79 0.49,-1.16 0.09,-0.15 0.21,-0.27 0.32,-0.4 0.21,0.14 0.41,0.3 0.64,0.4 0.12,0.06 0.22,-0.08 0.14,-0.18 -0.15,-0.18 -0.33,-0.32 -0.51,-0.48 0.13,-0.1 0.25,-0.21 0.39,-0.3 0.21,-0.13 0.43,-0.25 0.66,-0.35 0.08,0.07 0.16,0.14 0.23,0.21 0.27,0.24 0.54,0.56 0.86,0.73 0.14,0.07 0.3,-0.08 0.22,-0.22 -0.18,-0.32 -0.51,-0.57 -0.77,-0.82 -0.03,-0.03 -0.06,-0.05 -0.09,-0.08 0.44,-0.15 0.9,-0.22 1.37,-0.17 0.1,0.01 0.19,0.04 0.28,0.06 0.03,0.05 0.09,0.08 0.16,0.06 0.01,0 0.02,-0.01 0.04,-0.02 0.45,0.13 0.87,0.35 1.24,0.64 0.08,0.21 0.16,0.42 0.25,0.62 0.11,0.27 0.2,0.54 0.33,0.79 0.04,0.08 0.16,0.02 0.14,-0.06 -0.08,-0.27 -0.18,-0.54 -0.27,-0.81 -0.03,-0.07 -0.05,-0.15 -0.08,-0.22 0.05,0.05 0.11,0.1 0.16,0.15 0.26,0.3 0.48,0.65 0.63,1.02 0.09,0.21 0.14,0.44 0.19,0.67 0.02,0.11 0.05,0.21 0.09,0.31 -0.04,-0.02 -0.07,-0.05 -0.12,-0.07 -0.06,-0.02 -0.11,-0.05 -0.17,-0.07 -0.11,-0.05 -0.23,-0.1 -0.34,-0.15 -0.23,-0.1 -0.46,-0.2 -0.7,-0.3 -0.07,-0.03 -0.14,-0.02 -0.18,0.05 -0.03,0.06 -0.02,0.15 0.05,0.18 0.23,0.11 0.47,0.21 0.7,0.32 0.12,0.05 0.23,0.11 0.35,0.16 0.06,0.03 0.12,0.05 0.17,0.08 0.06,0.03 0.12,0.05 0.19,0.06 0.06,0.01 0.09,-0.02 0.11,-0.06 0.04,0.09 0.07,0.17 0.11,0.26 -0.03,0.66 -0.04,1.32 -0.04,1.98 -0.02,-0.02 -0.03,-0.04 -0.06,-0.06 -0.11,-0.05 -0.22,-0.1 -0.33,-0.15 -0.23,-0.1 -0.46,-0.21 -0.69,-0.31 -0.45,-0.2 -0.9,-0.4 -1.35,-0.61 -0.18,-0.08 -0.35,0.19 -0.16,0.27 0.46,0.21 0.91,0.42 1.36,0.63 0.22,0.1 0.44,0.2 0.66,0.31 0.11,0.05 0.22,0.1 0.33,0.15 0.06,0.03 0.12,0.06 0.18,0.07 0.02,0 0.04,0 0.05,-0.01 0,0.05 0,0.1 0,0.15 0,0.24 0,0.47 0.01,0.71 -0.08,0.14 -0.07,0.31 0,0.47 0,0.04 0,0.07 0,0.11 -0.11,-0.1 -0.23,-0.18 -0.36,-0.26 0.01,-0.03 0.02,-0.06 0,-0.09 -0.44,-1.08 -1.6,-1.8 -2.77,-1.71 z m -6.99,-3.06 c 0,-0.01 0,-0.02 0,-0.03 0.48,-0.39 0.97,-0.78 1.46,-1.17 0.11,0.09 0.21,0.18 0.32,0.27 -0.5,0.38 -0.99,0.78 -1.47,1.19 -0.11,-0.08 -0.21,-0.17 -0.31,-0.26 z m 2.53,-1.9 c 0.07,0.06 0.15,0.12 0.22,0.18 -0.05,0.07 -0.1,0.14 -0.14,0.21 -0.03,0 -0.05,0 -0.08,0.02 -0.13,0.09 -0.26,0.2 -0.39,0.3 -0.11,-0.09 -0.22,-0.18 -0.33,-0.27 0.21,-0.17 0.43,-0.33 0.65,-0.49 0.02,0 0.05,0.03 0.07,0.05 z m -1.05,0.17 c -0.2,-0.16 -0.4,-0.31 -0.6,-0.46 0,0 0.01,-0.01 0.01,-0.01 0.21,-0.17 0.42,-0.33 0.63,-0.5 0.2,0.16 0.41,0.32 0.61,0.48 -0.21,0.17 -0.44,0.32 -0.65,0.49 z m -0.82,-0.78 c -0.03,0.03 -0.07,0.05 -0.1,0.08 -0.03,-0.02 -0.05,-0.04 -0.08,-0.06 0.12,-0.25 0.25,-0.48 0.41,-0.7 0.11,0.09 0.22,0.17 0.33,0.26 -0.19,0.13 -0.38,0.27 -0.56,0.42 z m -0.13,0.59 c 0.2,0.15 0.4,0.31 0.6,0.47 -0.39,0.3 -0.77,0.61 -1.15,0.92 0.02,-0.37 0.08,-0.74 0.18,-1.1 0.12,-0.1 0.25,-0.19 0.37,-0.29 z m 1.53,1.24 c 0.03,0.02 0.06,0.04 0.08,0.06 -0.06,0.16 -0.11,0.31 -0.14,0.47 -0.22,0.02 -0.42,0.18 -0.44,0.45 -0.03,0.34 -0.1,0.66 -0.12,1 -0.13,-0.12 -0.25,-0.24 -0.37,-0.36 -0.15,-0.14 -0.32,-0.27 -0.47,-0.41 0.48,-0.42 0.96,-0.82 1.46,-1.21 z m 9.38,-0.14 c 0.24,0.19 0.5,0.46 0.81,0.54 0.15,0.04 0.29,-0.13 0.2,-0.27 -0.16,-0.25 -0.45,-0.42 -0.68,-0.6 -0.08,-0.06 -0.15,-0.12 -0.23,-0.18 0.06,-0.06 0.13,-0.12 0.19,-0.17 0.34,-0.29 0.67,-0.58 1.01,-0.87 0.09,0.09 0.19,0.18 0.28,0.27 0.14,0.32 0.25,0.66 0.33,1.02 -0.01,0.01 -0.01,0.01 -0.02,0.02 -0.27,0.26 -0.53,0.54 -0.8,0.81 -0.01,-0.01 -0.03,-0.03 -0.04,-0.04 -0.12,-0.12 -0.3,0.07 -0.18,0.18 0.01,0.01 0.03,0.03 0.04,0.04 -0.12,0.13 -0.25,0.25 -0.37,0.38 -0.16,0.17 -0.32,0.35 -0.47,0.53 0.03,-0.17 0.03,-0.35 0,-0.55 -0.05,-0.31 -0.14,-0.6 -0.25,-0.89 -0.05,-0.11 -0.11,-0.22 -0.16,-0.33 0.04,-0.03 0.07,-0.06 0.11,-0.1 0.07,0.08 0.15,0.15 0.23,0.21 z m 2.02,0.7 c 0,0.21 -0.02,0.42 -0.04,0.62 -0.17,-0.17 -0.33,-0.33 -0.5,-0.5 0.17,-0.17 0.33,-0.35 0.5,-0.52 0.01,0.14 0.03,0.27 0.04,0.4 z m -0.13,1.04 c -0.03,0.13 -0.05,0.27 -0.1,0.4 -0.3,0.31 -0.6,0.61 -0.9,0.92 -0.25,0.26 -0.5,0.51 -0.75,0.77 -0.03,0.03 -0.07,0.07 -0.1,0.1 -0.02,-0.49 -0.03,-0.97 -0.06,-1.46 0.09,-0.11 0.18,-0.22 0.27,-0.32 0.21,-0.24 0.42,-0.48 0.64,-0.72 0.11,-0.12 0.22,-0.23 0.33,-0.35 0.23,0.22 0.45,0.44 0.67,0.66 z m -0.9,-3.58 -0.94,0.78 c -0.1,0.09 -0.21,0.17 -0.31,0.26 -0.05,-0.04 -0.11,-0.09 -0.16,-0.13 -0.27,-0.23 -0.52,-0.47 -0.78,-0.71 0.37,-0.34 0.73,-0.67 1.1,-1.01 0.04,-0.04 0.09,-0.08 0.13,-0.12 0.29,0.28 0.58,0.56 0.87,0.84 0.03,0.03 0.06,0.06 0.09,0.09 z m -8.9,0.02 c -0.17,0.17 -0.36,0.37 -0.53,0.59 -0.06,-0.04 -0.12,-0.09 -0.17,-0.13 -0.01,-0.01 -0.03,-0.02 -0.04,-0.03 0.33,-0.26 0.67,-0.51 1,-0.76 0.03,0.02 0.06,0.05 0.09,0.07 -0.12,0.08 -0.24,0.16 -0.35,0.26 z m -1.07,0.18 c -0.21,-0.16 -0.42,-0.32 -0.63,-0.48 0.34,-0.27 0.68,-0.53 1.01,-0.8 0.22,0.17 0.43,0.35 0.64,0.52 -0.33,0.25 -0.68,0.5 -1.02,0.76 z m -0.94,-0.72 c -0.13,-0.1 -0.27,-0.21 -0.4,-0.31 0.26,-0.33 0.56,-0.62 0.88,-0.88 0.18,0.13 0.37,0.26 0.55,0.39 -0.34,0.27 -0.69,0.53 -1.03,0.8 z m -2.01,0.03 c -0.02,-0.01 -0.04,-0.03 -0.07,-0.04 0.05,-0.04 0.1,-0.08 0.15,-0.12 -0.03,0.05 -0.05,0.1 -0.08,0.16 z m 1.91,5.36 c 0,0.05 0,0.1 0,0.15 0,0.06 -0.01,0.12 -0.01,0.19 -0.07,-0.06 -0.14,-0.13 -0.21,-0.19 0.06,-0.06 0.15,-0.1 0.22,-0.15 z m -0.1,1.43 c -0.02,0.21 -0.02,0.42 -0.04,0.63 -0.06,0.47 -0.16,0.92 -0.25,1.38 -0.3,-0.15 -0.61,-0.29 -0.9,-0.46 -0.32,-0.19 -0.62,-0.41 -0.91,-0.64 0.21,-0.35 0.44,-0.69 0.72,-1.01 0.12,-0.13 0.26,-0.24 0.38,-0.36 0.29,0.24 0.63,0.4 1,0.46 z m -1.86,4.35 c 0.03,-0.05 0.06,-0.1 0.09,-0.14 0.29,-0.12 0.49,-0.39 0.39,-0.76 -0.02,-0.06 -0.07,-0.11 -0.09,-0.17 0.29,0.13 0.58,0.22 0.88,0.27 -0.19,0.45 -0.28,0.93 -0.28,1.42 -0.33,0.06 -0.65,0.12 -0.97,0.18 -0.02,-0.27 -0.02,-0.53 -0.02,-0.8 z m 2.18,9.06 c -0.04,-0.33 -0.06,-0.65 -0.11,-0.98 -0.16,-0.97 -0.43,-2.3 -1.02,-3.27 0.12,-0.05 0.24,-0.1 0.36,-0.15 0.31,-0.13 0.64,-0.21 0.97,-0.26 -0.04,1 -0.08,2 -0.12,3 -0.03,0.55 -0.06,1.1 -0.08,1.66 z m 1.41,-9.39 c -0.01,-0.05 -0.02,-0.1 -0.03,-0.15 -0.12,-0.38 -0.6,-0.34 -0.74,0 -0.23,0.58 -0.25,1.28 -0.29,1.89 -0.01,0.18 -0.02,0.36 -0.03,0.54 -0.05,-0.15 -0.08,-0.32 -0.12,-0.5 -0.07,-0.3 -0.12,-0.58 -0.11,-0.89 0.01,-0.23 0.07,-0.46 0.15,-0.68 0.08,-0.17 0.17,-0.35 0.24,-0.53 0.12,-0.21 0.26,-0.42 0.42,-0.59 1.07,-1.17 2.76,-1.76 4.32,-1.61 1.35,0.13 2.67,1 3.18,2.28 0.18,0.45 0.2,0.94 0.15,1.42 -0.01,0.01 -0.02,0.01 -0.02,0.02 -0.02,0.02 -0.08,0.08 -0.12,0.12 -0.21,-0.89 -0.71,-1.74 -1.3,-2.27 -1.38,-1.23 -3.45,-1.28 -4.88,-0.09 -0.36,0.29 -0.62,0.64 -0.82,1.04 z m 8.64,1.82 c 0,0 0.01,0 0.01,0 -0.01,0.02 -0.02,0.04 -0.03,0.06 0.01,-0.02 0.02,-0.04 0.02,-0.06 z M 578.89,430 c 0.03,0.64 -0.03,1.27 -0.17,1.89 -0.01,0.03 -0.02,0.06 -0.03,0.08 0.02,-0.02 -0.12,0.07 -0.14,0.1 -0.13,0.13 -0.23,0.32 -0.3,0.49 -0.11,0.25 -0.19,0.5 -0.28,0.76 -0.04,-0.13 -0.16,-0.22 -0.29,-0.12 -0.79,0.59 -1.54,1.23 -2.24,1.92 -0.35,0.34 -0.68,0.7 -1.01,1.07 -0.16,0.18 -0.32,0.37 -0.46,0.56 -0.01,0.01 -0.02,0.02 -0.02,0.03 -0.03,0.01 -0.07,0.02 -0.1,0.03 -0.15,0.03 -0.3,0.06 -0.44,0.1 0,-0.09 -0.01,-0.19 -0.01,-0.28 0,-0.19 -0.01,-0.39 -0.01,-0.58 0.02,-0.01 0.05,-0.01 0.07,-0.02 -0.01,0.02 -0.02,0.03 -0.03,0.04 -0.09,0.17 0.13,0.36 0.27,0.21 0.15,-0.16 0.29,-0.33 0.43,-0.5 0.96,-0.49 1.75,-1.46 2.23,-2.5 0.07,-0.07 0.14,-0.14 0.22,-0.21 0.05,0.05 0.1,0.1 0.15,0.15 0.11,0.11 0.22,0.24 0.36,0.31 0.11,0.06 0.23,-0.06 0.17,-0.17 -0.07,-0.13 -0.18,-0.24 -0.29,-0.34 -0.06,-0.06 -0.11,-0.11 -0.17,-0.17 0.48,-0.45 0.97,-0.88 1.49,-1.28 0.19,-0.15 0,-0.47 -0.19,-0.33 -0.48,0.37 -0.95,0.75 -1.41,1.16 0.07,-0.24 0.13,-0.48 0.16,-0.7 0.05,-0.34 0.07,-0.67 0.06,-1 0.19,-0.2 0.37,-0.39 0.56,-0.59 0.01,0.02 0.03,0.04 0.04,0.06 0.11,0.18 0.22,0.36 0.33,0.53 0.06,0.09 0.11,0.18 0.18,0.27 0.07,0.09 0.12,0.17 0.23,0.22 0.09,0.04 0.18,-0.06 0.19,-0.14 0,-0.11 -0.06,-0.21 -0.12,-0.3 -0.05,-0.09 -0.12,-0.18 -0.18,-0.27 -0.12,-0.17 -0.23,-0.33 -0.35,-0.5 -0.03,-0.04 -0.06,-0.09 -0.09,-0.13 0.3,-0.32 0.61,-0.65 0.91,-0.97 0.01,0.01 0.02,0.03 0.03,0.04 0.03,0.03 0.06,0.04 0.1,0.05 0.06,0.32 0.11,0.63 0.13,0.95 0.02,0.02 0.02,0.05 0.02,0.08 z m -0.46,-1.39 c -0.07,0.07 -0.14,0.14 -0.2,0.21 0.06,-0.09 0.11,-0.18 0.15,-0.28 0.01,0.03 0.03,0.05 0.05,0.07 z m -0.5,-0.7 c 0.09,0.13 0.17,0.26 0.26,0.39 -0.01,0 -0.01,0 -0.02,0 -0.07,0.03 -0.13,0.09 -0.18,0.16 -0.11,-0.13 -0.23,-0.25 -0.35,-0.38 0.08,-0.07 0.17,-0.14 0.25,-0.21 0.02,0.01 0.03,0.02 0.04,0.04 z m -0.07,1.01 c 0.08,0.08 0.2,0.06 0.28,-0.01 -0.21,0.21 -0.41,0.42 -0.62,0.63 -0.14,-0.21 -0.28,-0.41 -0.42,-0.62 -0.11,-0.17 -0.38,-0.01 -0.27,0.16 0.15,0.24 0.3,0.47 0.45,0.71 -0.12,0.13 -0.24,0.25 -0.37,0.38 -0.01,-0.03 -0.01,-0.05 -0.03,-0.08 -0.01,-0.01 -0.01,-0.01 -0.02,-0.02 -0.05,-0.39 -0.11,-0.78 -0.23,-1.15 0.23,-0.2 0.46,-0.4 0.69,-0.59 0.19,0.2 0.36,0.4 0.54,0.59 z m -3.92,-1.65 c -0.13,-0.12 -0.26,-0.24 -0.38,-0.36 0,0 0,0 0.01,-0.01 0.13,0.12 0.26,0.24 0.37,0.37 z m -5.15,-2.03 c 0.13,0.17 0.26,0.35 0.4,0.52 -0.05,0.05 -0.11,0.1 -0.16,0.15 -0.3,0.27 -0.59,0.54 -0.89,0.81 -0.04,0.04 -0.09,0.08 -0.13,0.12 -0.21,-0.13 -0.41,-0.28 -0.62,-0.42 0.45,-0.34 0.89,-0.69 1.34,-1.03 0.05,-0.05 0.06,-0.1 0.06,-0.15 z m -1.17,1.72 c -0.56,0.11 -1.1,0.31 -1.58,0.62 -0.03,-0.02 -0.06,-0.05 -0.09,-0.07 0.39,-0.3 0.78,-0.6 1.18,-0.9 0.16,0.11 0.32,0.24 0.49,0.35 z m -1.96,0.31 c -0.22,-0.18 -0.43,-0.36 -0.66,-0.53 0.37,-0.29 0.74,-0.59 1.12,-0.88 0.23,0.19 0.48,0.36 0.72,0.53 -0.4,0.29 -0.79,0.58 -1.18,0.88 z m -5.05,0.34 c -0.5,0.41 -1.01,0.81 -1.51,1.22 -0.24,-0.15 -0.48,-0.29 -0.73,-0.43 0,0 0,0 0,-0.01 0.19,-0.14 0.38,-0.27 0.57,-0.41 0.36,-0.25 0.73,-0.51 1.09,-0.76 0.19,0.13 0.38,0.26 0.58,0.39 z m -1.8,1.46 c -0.18,0.15 -0.36,0.3 -0.55,0.45 0,-0.25 0.01,-0.51 0.04,-0.76 0.18,0.1 0.34,0.2 0.51,0.31 z m -0.54,0.91 c 0.02,-0.02 0.04,-0.03 0.06,-0.05 0.27,-0.22 0.55,-0.44 0.82,-0.66 0.36,0.23 0.72,0.48 1.07,0.73 -0.03,0.03 -0.07,0.05 -0.1,0.08 -0.41,0.32 -0.82,0.64 -1.23,0.96 -0.14,0.11 -0.28,0.21 -0.42,0.32 -0.11,-0.45 -0.18,-0.91 -0.2,-1.38 z m 0.32,1.8 c 0.17,-0.13 0.33,-0.26 0.49,-0.39 0.41,-0.32 0.82,-0.64 1.22,-0.96 0.08,-0.06 0.16,-0.13 0.24,-0.19 0.03,0.02 0.06,0.05 0.1,0.07 0,0.27 0.01,0.53 0.04,0.79 -0.02,0.02 -0.04,0.03 -0.06,0.05 -0.58,0.47 -1.15,0.95 -1.72,1.43 -0.12,-0.25 -0.22,-0.52 -0.31,-0.8 z m 0.51,1.19 c 0.56,-0.47 1.12,-0.94 1.68,-1.4 0.03,0.12 0.04,0.24 0.08,0.36 0.02,0.06 0.05,0.13 0.07,0.19 -0.3,0.29 -0.6,0.57 -0.88,0.87 -0.19,0.2 -0.38,0.41 -0.57,0.62 -0.14,-0.22 -0.27,-0.43 -0.38,-0.64 z m 0.97,6.64 c 0,0.05 -0.01,0.1 -0.01,0.15 -0.23,0.04 -0.46,0.08 -0.69,0.13 -0.32,0.06 -0.19,0.55 0.14,0.49 0.17,-0.03 0.34,-0.07 0.51,-0.1 -0.04,0.7 -0.11,1.41 -0.12,2.11 -0.14,0.07 -0.22,0.18 -0.23,0.33 -0.16,0.06 -0.32,0.12 -0.49,0.16 -0.53,0.14 -1.07,0.18 -1.62,0.17 -0.53,-0.01 -1.05,-0.09 -1.56,-0.25 -0.28,-0.09 -0.56,-0.23 -0.85,-0.35 -0.03,-0.16 -0.12,-0.28 -0.27,-0.36 0,-0.11 -0.01,-0.22 -0.01,-0.32 0,-0.45 0.01,-0.9 0.01,-1.36 0,-0.38 -0.01,-0.76 -0.01,-1.15 0.31,0.21 0.66,0.36 0.99,0.48 0.62,0.24 1.3,0.35 1.96,0.35 0.66,0 1.34,-0.11 1.96,-0.36 0.09,-0.03 0.19,-0.08 0.29,-0.12 z m -4.58,7.25 c -0.09,-0.05 -0.17,-0.1 -0.26,-0.15 -0.09,-0.05 -0.18,-0.09 -0.27,-0.14 -0.18,-0.09 -0.36,-0.2 -0.52,-0.31 -0.24,-0.16 -0.43,-0.38 -0.63,-0.59 0.05,-0.3 0.09,-0.59 0.16,-0.88 0.08,-0.35 0.18,-0.69 0.36,-1.01 0.03,-0.05 0.07,-0.08 0.1,-0.13 0.35,0.21 0.75,0.37 1.08,0.49 0.64,0.24 1.31,0.36 1.99,0.41 0.66,0.05 1.34,-0.02 1.98,-0.16 0.44,-0.1 0.98,-0.24 1.39,-0.52 0.08,0.08 0.14,0.17 0.21,0.26 -0.14,0.11 -0.28,0.21 -0.43,0.29 -0.37,0.19 -0.79,0.28 -1.21,0.27 -0.27,0 -0.27,0.42 0,0.43 0.49,0.02 0.98,-0.09 1.42,-0.3 0.16,-0.08 0.31,-0.18 0.45,-0.29 0.08,0.16 0.14,0.33 0.19,0.51 0.01,0.03 0.01,0.06 0.02,0.08 -0.04,0.02 -0.07,0.04 -0.11,0.07 -0.2,0.12 -0.41,0.22 -0.62,0.31 -0.43,0.17 -0.89,0.27 -1.36,0.29 -0.2,0.01 -0.21,0.33 0,0.32 0.51,-0.02 1.01,-0.13 1.48,-0.32 0.23,-0.09 0.45,-0.2 0.66,-0.33 0.01,0 0.01,-0.01 0.02,-0.01 0.12,0.46 0.21,0.92 0.28,1.39 -0.03,-0.02 -0.07,-0.03 -0.11,-0.01 -0.52,0.26 -1.04,0.51 -1.61,0.65 -0.56,0.14 -1.15,0.16 -1.72,0.09 -0.18,-0.02 -0.23,0.3 -0.04,0.33 1.18,0.17 2.59,-0.04 3.51,-0.86 0.04,0.25 0.08,0.5 0.1,0.75 0.02,0.18 0.02,0.37 0.04,0.55 -0.08,0.04 -0.15,0.08 -0.23,0.12 -0.41,0.18 -0.84,0.31 -1.28,0.37 -0.89,0.14 -1.8,0.02 -2.63,-0.33 -0.17,-0.07 -0.29,0.22 -0.12,0.29 0.88,0.39 1.84,0.53 2.8,0.4 0.46,-0.06 0.91,-0.18 1.34,-0.36 0.05,-0.02 0.1,-0.05 0.15,-0.08 0.02,0.31 0.02,0.61 0.02,0.92 -0.33,0.11 -0.67,0.2 -1.02,0.26 -0.99,0.18 -2.03,0.23 -3.03,0.27 -1.54,0.06 -3.58,-0.21 -4.54,-1.57 0,-0.03 0,-0.06 0.01,-0.09 0.06,0.04 0.11,0.1 0.18,0.14 0.21,0.13 0.43,0.23 0.66,0.3 0.11,0.03 0.23,0.06 0.35,0.08 0.14,0.02 0.3,0.06 0.42,-0.02 0.11,-0.07 0.1,-0.21 0,-0.27 -0.1,-0.07 -0.22,-0.05 -0.34,-0.07 -0.11,-0.01 -0.21,-0.04 -0.32,-0.07 -0.21,-0.06 -0.41,-0.15 -0.59,-0.26 -0.12,-0.08 -0.23,-0.18 -0.34,-0.27 0.01,-0.18 0.02,-0.35 0.03,-0.53 0.04,-0.51 0.1,-1.03 0.17,-1.55 0.17,0.16 0.32,0.35 0.52,0.49 0.17,0.12 0.35,0.23 0.54,0.32 0.1,0.05 0.2,0.1 0.3,0.13 0.1,0.03 0.21,0.04 0.32,0.06 0.11,0.03 0.19,-0.11 0.08,-0.16 z m -1.93,5.22 c -0.03,-0.45 -0.06,-0.91 -0.07,-1.36 0,-0.15 0,-0.3 0,-0.44 1.06,0.93 2.61,1.32 4.05,1.38 1.22,0.05 2.48,-0.01 3.69,-0.19 0.23,-0.03 0.5,-0.07 0.79,-0.14 -0.02,0.23 -0.03,0.46 -0.06,0.7 -0.05,0.36 -0.16,0.72 -0.16,1.08 -0.39,0.17 -0.8,0.28 -1.22,0.38 -1.09,0.27 -2.27,0.18 -3.38,0.06 -0.92,-0.1 -1.96,-0.2 -2.78,-0.66 -0.36,-0.21 -0.64,-0.48 -0.86,-0.81 z m 11.25,-5.66 c -0.01,0.08 0,0.15 0.05,0.2 0.03,0.03 0.09,0.05 0.13,0.03 0.13,-0.05 0.15,-0.19 0.2,-0.3 0.05,-0.1 0.1,-0.21 0.15,-0.31 0.11,-0.2 0.26,-0.38 0.43,-0.54 0.34,-0.3 0.78,-0.5 1.23,-0.52 0.25,-0.01 0.25,-0.4 0,-0.39 -0.55,0.02 -1.07,0.25 -1.49,0.61 -0.2,0.18 -0.38,0.39 -0.51,0.62 -0.07,0.11 -0.13,0.24 -0.16,0.36 0,0.08 -0.02,0.16 -0.03,0.24 0,-0.1 0.01,-0.2 0.01,-0.29 0.02,-0.44 0.03,-0.87 0.04,-1.31 0.01,0 0.02,0 0.03,0 0.09,-0.09 0.17,-0.15 0.24,-0.26 0.07,-0.09 0.13,-0.19 0.21,-0.28 0.15,-0.18 0.32,-0.35 0.5,-0.5 0.36,-0.3 0.78,-0.52 1.22,-0.66 0.21,-0.07 0.12,-0.4 -0.09,-0.33 -0.49,0.16 -0.95,0.4 -1.35,0.73 -0.19,0.16 -0.37,0.33 -0.53,0.52 -0.08,0.09 -0.15,0.19 -0.22,0.29 0.02,-0.72 0.05,-1.43 0.07,-2.15 0,-0.08 0,-0.16 0,-0.24 0.01,-0.01 0.03,-0.01 0.05,-0.03 0.05,-0.04 0.09,-0.11 0.13,-0.16 0.08,-0.11 0.17,-0.22 0.26,-0.33 0.18,-0.2 0.38,-0.39 0.6,-0.56 0.44,-0.34 0.94,-0.59 1.47,-0.74 0.21,-0.06 0.12,-0.37 -0.09,-0.32 -0.57,0.15 -1.12,0.41 -1.6,0.77 -0.24,0.18 -0.46,0.38 -0.66,0.61 -0.05,0.06 -0.1,0.13 -0.15,0.19 0,-0.24 0.01,-0.49 0.01,-0.73 0.04,0.03 0.1,0.03 0.14,0 0.09,-0.07 0.16,-0.17 0.24,-0.25 0.08,-0.09 0.15,-0.2 0.23,-0.29 0.16,-0.18 0.34,-0.34 0.53,-0.48 0.4,-0.28 0.84,-0.47 1.32,-0.56 0.09,-0.02 0.14,-0.12 0.12,-0.21 -0.03,-0.1 -0.12,-0.13 -0.21,-0.12 -0.52,0.08 -1.04,0.28 -1.46,0.59 -0.21,0.16 -0.41,0.33 -0.59,0.53 -0.14,0.15 -0.25,0.34 -0.32,0.54 0,-0.05 0,-0.09 0,-0.14 0,-0.1 0,-0.21 0.01,-0.31 0.03,-0.03 0.06,-0.05 0.07,-0.08 0.08,-0.23 0.16,-0.33 0.33,-0.5 0.13,-0.13 0.23,-0.28 0.38,-0.4 0.31,-0.26 0.62,-0.47 0.99,-0.65 0.15,-0.08 0.28,-0.13 0.5,-0.19 0.1,-0.03 0.21,-0.05 0.31,-0.07 0.03,0 0.04,-0.01 0.06,-0.01 0.04,0 0.09,-0.01 0.13,-0.01 0.2,-0.02 0.4,-0.02 0.6,0.01 0.02,0.01 0.2,0.04 0.22,0.05 0.09,0.02 0.18,0.05 0.26,0.08 0,0 0,0 0.01,0 0.04,0.02 0.08,0.04 0.13,0.06 0.09,0.05 0.18,0.1 0.27,0.16 0.04,0.03 0.08,0.06 0.13,0.09 -0.06,-0.04 -0.05,-0.04 0.02,0.02 0.07,0.07 0.15,0.14 0.22,0.21 0.01,0.01 0.13,0.15 0.14,0.16 0.06,0.07 0.11,0.15 0.16,0.23 0.05,0.09 0.11,0.18 0.15,0.27 0.02,0.04 0.04,0.09 0.06,0.13 0,0 0,0 0,0 0.07,0.18 0.13,0.37 0.17,0.56 0.01,0.04 0.02,0.09 0.02,0.13 0,0.01 0,0.02 0,0.04 0.01,0.1 0.01,0.21 0.01,0.31 0,0.1 -0.01,0.21 -0.02,0.31 0,0.03 -0.04,0.33 -0.01,0.17 -0.04,0.24 -0.06,0.48 -0.08,0.72 -0.01,0.15 0.04,0.28 0.13,0.39 -0.07,1.08 -0.13,2.16 -0.14,3.24 -0.01,1 0,1.99 0.02,2.99 -0.62,-0.37 -1.34,-0.57 -2.06,-0.51 -0.65,0.05 -1.25,0.23 -1.84,0.49 -0.07,0.03 -0.14,0.06 -0.21,0.1 -0.07,0.01 -0.14,0.03 -0.2,0.05 -0.12,0.04 -0.23,0.1 -0.35,0.15 0.03,-0.06 0.06,-0.13 0.09,-0.18 0.07,-0.11 0.11,-0.17 0.2,-0.26 0.3,-0.32 0.71,-0.53 1.14,-0.55 0.3,-0.01 0.3,-0.48 0,-0.47 -0.56,0.02 -1.09,0.27 -1.47,0.68 -0.09,0.09 -0.14,0.22 -0.21,0.32 0.02,-0.05 0.04,-0.09 0.06,-0.14 0.05,-0.1 0.1,-0.2 0.15,-0.3 0.11,-0.19 0.25,-0.37 0.4,-0.52 0.31,-0.31 0.7,-0.54 1.12,-0.66 0.26,-0.07 0.15,-0.48 -0.11,-0.41 -0.5,0.13 -0.95,0.4 -1.32,0.75 -0.18,0.18 -0.34,0.38 -0.47,0.6 -0.07,0.11 -0.13,0.23 -0.18,0.35 -0.04,0.12 -0.1,0.27 -0.1,0.39 0.01,0.18 0.2,0.21 0.31,0.11 -0.04,0.07 -0.1,0.13 -0.13,0.2 -0.05,0.12 -0.09,0.24 -0.11,0.37 0,0.03 0,0.04 0,0.06 -0.08,0.06 -0.17,0.11 -0.25,0.18 0,0 0,0 0,0 0.08,-0.89 0.11,-1.82 0.14,-2.74 z m 0.62,3.89 c 0.05,-0.05 0.1,-0.09 0.15,-0.14 0,0 0,0 0.01,0 -0.03,0.03 -0.06,0.05 -0.09,0.08 -0.03,0.03 -0.06,0.06 -0.09,0.08 0.01,-0.01 0.01,-0.02 0.02,-0.02 z m 6.6,1.05 c -0.03,-0.37 -0.11,-0.74 -0.24,-1.1 -0.02,-0.51 -0.04,-1.02 -0.05,-1.53 -0.03,-1.07 -0.03,-2.14 -0.02,-3.21 0.01,-0.96 0.03,-1.91 0.06,-2.87 0.55,-0.28 0.98,-0.73 1.28,-1.26 -0.12,0.36 -0.22,0.72 -0.29,1.09 -0.14,0.68 -0.24,1.38 -0.16,2.07 0.04,0.31 0.07,0.63 0.11,0.94 -0.03,-0.18 -0.08,-0.35 -0.1,-0.53 -0.01,-0.16 -0.26,-0.16 -0.25,0 0.06,1.43 0.68,2.77 1.67,3.8 0.49,0.51 1.07,0.94 1.7,1.25 0.6,0.3 1.35,0.6 2.03,0.51 0.11,-0.01 0.14,-0.16 0.03,-0.2 -0.63,-0.22 -1.28,-0.31 -1.89,-0.61 -0.6,-0.3 -1.14,-0.7 -1.61,-1.17 -0.79,-0.81 -1.35,-1.85 -1.58,-2.96 0.06,0.38 0.24,0.64 0.35,1 0.12,0.39 0.56,0.31 0.69,0 0.33,0.42 0.71,0.8 1.15,1.08 0.12,0.07 0.26,-0.1 0.15,-0.19 -0.36,-0.31 -0.71,-0.62 -1.01,-0.99 -0.07,-0.08 -0.1,-0.18 -0.17,-0.26 0.05,-0.15 0.12,-0.31 0.15,-0.47 0.05,-0.29 0.09,-0.59 0.16,-0.88 0.1,-0.41 0.2,-0.81 0.3,-1.22 0.62,1.34 1.65,2.46 2.92,3.21 0.66,0.39 1.39,0.68 2.14,0.86 0.72,0.17 1.51,0.27 2.24,0.11 0.14,-0.03 0.1,-0.23 -0.03,-0.24 -0.74,-0.03 -1.47,-0.04 -2.2,-0.23 -0.7,-0.18 -1.38,-0.46 -2,-0.84 -1.26,-0.76 -2.28,-1.88 -2.87,-3.23 -0.02,-0.05 -0.05,-0.07 -0.09,-0.08 0.01,-0.04 0.02,-0.07 0.03,-0.11 0.11,-0.44 0.27,-0.85 0.41,-1.27 0.28,0.72 0.8,1.31 1.42,1.78 1.49,1.13 3.37,1.93 5.15,2.46 3.8,1.14 7.74,1.98 11.72,1.61 0.34,-0.03 0.34,-0.49 0,-0.53 -3.46,-0.42 -6.9,-0.98 -10.17,-2.21 -1.59,-0.6 -3.14,-1.35 -4.67,-2.09 -0.67,-0.32 -1.43,-0.68 -1.9,-1.29 -0.45,-0.59 -0.38,-1.26 -0.48,-1.94 0,0 0,-0.01 0,-0.01 0.06,-0.09 0.13,-0.16 0.19,-0.25 0.07,0.09 0.15,0.19 0.22,0.28 0.12,0.15 0.24,0.3 0.36,0.44 0.13,0.15 0.24,0.31 0.4,0.42 0.09,0.06 0.23,-0.04 0.19,-0.14 -0.07,-0.18 -0.2,-0.33 -0.32,-0.49 -0.12,-0.16 -0.23,-0.32 -0.36,-0.48 -0.09,-0.11 -0.18,-0.22 -0.27,-0.33 0.49,-0.65 1.04,-1.24 1.64,-1.76 0.18,0.35 0.39,0.68 0.65,0.96 0.22,0.24 0.46,0.45 0.72,0.64 0.13,0.09 0.26,0.18 0.4,0.25 0.14,0.07 0.3,0.19 0.46,0.15 0.09,-0.02 0.12,-0.12 0.08,-0.19 -0.06,-0.13 -0.24,-0.19 -0.36,-0.26 -0.12,-0.08 -0.25,-0.16 -0.36,-0.24 -0.24,-0.17 -0.46,-0.37 -0.67,-0.59 -0.26,-0.28 -0.48,-0.6 -0.67,-0.93 0.4,-0.33 0.81,-0.66 1.22,-0.98 0.34,0.75 0.85,1.42 1.48,1.95 0.39,0.32 0.81,0.6 1.27,0.82 0.41,0.19 0.96,0.45 1.41,0.35 0.12,-0.03 0.12,-0.18 0.03,-0.24 -0.18,-0.13 -0.42,-0.18 -0.63,-0.25 -0.22,-0.08 -0.44,-0.16 -0.65,-0.26 -0.41,-0.2 -0.81,-0.44 -1.16,-0.74 -0.61,-0.51 -1.08,-1.17 -1.44,-1.88 0.13,-0.1 0.27,-0.2 0.4,-0.31 0.18,0.17 0.39,0.3 0.65,0.35 0.07,0.01 0.12,-0.02 0.18,-0.03 0.54,0.68 1.22,1.27 2.06,1.76 1.4,0.81 2.99,1.34 4.6,1.71 4.22,0.95 8.64,1.27 12.98,1.03 0.43,-0.02 0.85,-0.09 1.28,-0.12 0.04,0.02 0.06,0.01 0.09,-0.01 0.58,-0.05 1.16,-0.1 1.73,-0.17 0.01,0 0.01,0 0.02,0 0.23,-0.03 0.46,-0.04 0.68,-0.07 0.5,-0.07 1.07,-0.14 1.62,-0.26 0.27,0.29 0.72,0.37 1.02,0.14 0.09,0.03 0.17,0.05 0.26,0.08 -0.12,0.22 -0.06,0.48 0.18,0.65 0.32,0.23 0.76,0.25 1.14,0.33 0.35,0.08 0.71,0.15 1.05,0.26 0.37,0.12 0.72,0.27 1.06,0.44 -0.83,0.13 -1.65,0.31 -2.48,0.46 -1.08,0.2 -2.17,0.4 -3.25,0.61 -0.17,0.03 -0.1,0.29 0.07,0.27 1.07,-0.18 2.14,-0.35 3.21,-0.54 0.97,-0.17 1.96,-0.29 2.93,-0.5 0.15,0.09 0.31,0.18 0.46,0.28 0.01,0.01 0.02,0.02 0.03,0.03 -0.1,0.03 -0.2,0.06 -0.3,0.09 -0.2,0.05 -0.4,0.09 -0.61,0.13 -0.44,0.09 -0.88,0.18 -1.32,0.27 -0.88,0.18 -1.76,0.37 -2.63,0.55 -0.15,0.03 -0.08,0.25 0.06,0.22 0.88,-0.17 1.77,-0.33 2.65,-0.5 0.44,-0.09 0.88,-0.17 1.32,-0.26 0.22,-0.04 0.45,-0.09 0.67,-0.11 0.17,-0.02 0.34,-0.04 0.5,-0.09 0.27,0.23 0.52,0.48 0.74,0.75 -0.25,0.03 -0.49,0.06 -0.74,0.1 -0.7,0.13 -1.38,0.32 -2.04,0.56 -0.2,0.07 -0.12,0.4 0.09,0.33 0.66,-0.23 1.33,-0.41 2.01,-0.54 0.31,-0.06 0.61,-0.1 0.92,-0.13 0.13,0.19 0.27,0.37 0.39,0.57 -0.26,0.08 -0.5,0.16 -0.67,0.2 -1.23,0.34 -2.42,0.77 -3.66,1.05 -2.49,0.58 -5.06,1.09 -7.6,1.4 -0.27,0.03 -0.29,0.44 0,0.44 1.16,0.02 2.3,0.06 3.45,0 1.13,-0.06 2.25,-0.17 3.38,-0.32 1.15,-0.15 2.29,-0.35 3.44,-0.52 0.54,-0.08 1.06,-0.18 1.59,-0.32 0.3,-0.08 0.62,-0.15 0.93,-0.24 0.03,0.07 0.07,0.14 0.1,0.22 0.07,0.15 0.14,0.29 0.21,0.44 -0.75,0.27 -1.47,0.64 -2.2,0.95 -0.83,0.35 -1.68,0.66 -2.51,1.01 -0.17,0.07 -0.1,0.36 0.08,0.29 0.84,-0.32 1.66,-0.69 2.5,-1.01 0.77,-0.29 1.56,-0.53 2.32,-0.87 0.36,0.7 0.8,1.34 1.34,1.89 -0.38,0.04 -0.75,0.11 -1.12,0.16 -0.51,0.07 -1.02,0.14 -1.52,0.21 -1.01,0.14 -2.03,0.3 -3.04,0.46 -0.2,0.03 -0.15,0.37 0.05,0.35 1,-0.12 1.99,-0.24 2.99,-0.38 l 1.53,-0.21 c 0.5,-0.07 1.03,-0.1 1.52,-0.22 0,0 0.01,-0.01 0.01,-0.01 0.22,0.18 0.44,0.35 0.69,0.5 -0.11,0 -0.23,0 -0.34,0 -0.47,0.01 -0.94,0.04 -1.41,0.1 -0.9,0.11 -1.79,0.3 -2.66,0.58 -0.22,0.07 -0.13,0.41 0.09,0.34 0.85,-0.26 1.73,-0.44 2.61,-0.53 0.42,-0.04 0.84,-0.06 1.26,-0.07 0.41,0 0.89,0.08 1.29,-0.02 0.36,0.14 0.73,0.25 1.11,0.32 -3.76,0.83 -7.58,1.41 -11.41,1.77 -8.36,0.78 -16.7,0.46 -25.05,-0.32 -3.77,-0.35 -7.87,-1.09 -10.54,-3.98 -0.05,0.23 -0.18,0.43 -0.37,0.56 -0.06,0.1 -0.15,0.19 -0.24,0.26 v 0.51 c 0.31,0.34 0.65,0.64 1,0.93 0.02,0.49 0.05,0.97 0.07,1.46 0.01,0.11 0.01,0.21 0.02,0.32 -0.25,-0.16 -0.54,-0.35 -0.83,-0.53 z m 32.27,-23.39 c 0,-0.12 0,-0.24 0,-0.36 -0.01,-0.16 -0.02,-0.32 -0.03,-0.48 0.3,-0.05 0.6,-0.09 0.9,-0.15 0.02,0.1 0.03,0.21 0.06,0.31 0.06,0.18 0.15,0.38 0.28,0.54 -0.4,0.05 -0.81,0.1 -1.21,0.14 z m 2.22,-1.27 c 0.01,0.1 0.01,0.21 0.03,0.31 0.02,0.11 0.04,0.21 0.07,0.32 0.01,0.05 0.04,0.08 0.06,0.12 -0.25,0.06 -0.51,0.12 -0.76,0.18 -0.04,0.01 -0.06,0.03 -0.08,0.06 -0.02,-0.07 -0.04,-0.14 -0.06,-0.22 -0.04,-0.11 -0.07,-0.22 -0.1,-0.32 -0.03,-0.09 -0.03,-0.18 -0.05,-0.26 0.29,-0.06 0.59,-0.13 0.89,-0.19 z m 4.82,-0.35 c 0,0 0,0 0,0 -0.37,0.1 -0.73,0.18 -1.1,0.27 -0.29,0.07 -0.59,0.14 -0.88,0.21 -0.01,-0.03 -0.01,-0.07 -0.02,-0.1 0.27,-0.05 0.54,-0.1 0.81,-0.15 0.36,-0.07 0.72,-0.14 1.07,-0.2 0.04,-0.02 0.08,-0.03 0.12,-0.03 z m -2.37,0.93 c 0,0.01 0.01,0.02 0.01,0.03 -0.21,0.04 -0.42,0.07 -0.64,0.11 0.22,-0.04 0.43,-0.09 0.63,-0.14 z m 6.3,0.28 c 0.04,-0.03 0.08,-0.08 0.13,-0.12 0.15,0.08 0.31,0.15 0.47,0.23 0.4,0.21 0.81,0.41 1.2,0.65 0.77,0.47 1.48,1.03 2.2,1.57 0.6,0.44 1.22,0.85 1.88,1.2 -0.13,0.03 -0.26,0.04 -0.38,0.08 -0.44,0.13 -0.84,0.32 -1.23,0.54 -0.49,-0.22 -1.04,0.05 -1.21,0.61 -0.1,0.35 -0.02,0.68 0.17,0.94 -0.05,0.27 -0.05,0.54 0,0.79 0.05,0.27 0.16,0.52 0.31,0.74 -1.51,-0.47 -2.99,-1.05 -4.41,-1.75 -1.17,-0.57 -2.28,-1.23 -3.38,-1.92 -0.55,-0.34 -1.09,-0.7 -1.62,-1.07 -0.29,-0.2 -0.6,-0.44 -0.92,-0.64 0.97,-0.14 1.94,-0.28 2.89,-0.46 1.35,-0.23 2.78,-0.49 3.9,-1.39 z m 3.04,-1.7 c 0.12,0.15 0.26,0.28 0.4,0.41 -0.06,0.05 -0.12,0.1 -0.17,0.15 -0.17,0.17 -0.36,0.34 -0.53,0.52 -0.07,-0.04 -0.14,-0.09 -0.21,-0.13 0.12,-0.27 0.25,-0.54 0.4,-0.79 0.03,-0.05 0.08,-0.11 0.11,-0.16 z m 10.48,9.49 c 0.05,-0.02 0.09,-0.04 0.14,-0.05 0,0.01 0,0.02 0,0.03 0,0.52 0,1.05 -0.02,1.57 -0.02,0.52 -0.05,1.05 -0.09,1.57 -0.01,0.12 -0.03,0.25 -0.05,0.39 -0.31,0.1 -0.63,0.19 -0.94,0.29 -0.11,0.01 -0.2,0.04 -0.29,0.09 -0.66,0.21 -1.32,0.43 -1.99,0.62 -0.62,0.17 -1.24,0.35 -1.87,0.52 -0.37,0.1 -0.73,0.21 -1.08,0.34 -0.03,-0.34 -0.07,-0.68 -0.09,-1.03 -0.04,-0.69 -0.05,-1.38 -0.07,-2.07 0.01,0 0.03,0 0.04,0 1.23,-0.31 2.44,-0.82 3.63,-1.27 0.58,-0.22 1.16,-0.44 1.73,-0.66 0.32,-0.1 0.64,-0.22 0.95,-0.34 z m -9.16,13.53 c -0.69,-0.13 -1.35,-0.44 -1.91,-0.87 -1.01,-0.79 -1.49,-1.97 -1.99,-3.13 0,-0.03 0.02,-0.06 0.02,-0.09 0,-0.4 -0.17,-0.62 -0.4,-0.73 -0.05,-0.09 -0.08,-0.19 -0.13,-0.28 -0.22,-0.41 -0.48,-0.8 -0.76,-1.17 0.01,-0.11 0.02,-0.23 0.02,-0.34 0.01,-0.19 0.01,-0.39 0.01,-0.58 0,-0.15 -0.01,-0.31 -0.01,-0.46 0.32,0.05 0.64,0.1 0.95,0.11 0.05,0 0.08,-0.01 0.12,-0.02 l 0.04,0.36 c 0.02,0.15 0.03,0.31 0.05,0.46 0.02,0.16 0.03,0.32 0.09,0.47 0.04,0.09 0.2,0.07 0.22,-0.03 0.03,-0.15 0,-0.3 -0.01,-0.45 -0.01,-0.15 -0.03,-0.31 -0.05,-0.46 -0.01,-0.13 -0.03,-0.26 -0.04,-0.38 0.1,0.02 0.19,0.04 0.28,0.06 0.22,0.05 0.45,0.08 0.67,0.12 0.01,0.47 0.03,0.95 0.05,1.42 0.01,0.32 0.02,0.65 0.05,0.97 0.03,0.3 0.05,0.62 0.12,0.91 0.01,0.05 0.09,0.05 0.1,0 0.04,-0.29 0.03,-0.61 0.03,-0.91 0,-0.32 -0.03,-0.65 -0.05,-0.97 -0.03,-0.46 -0.06,-0.92 -0.1,-1.39 0.23,0.04 0.45,0.08 0.68,0.12 0,0.46 -0.01,0.91 -0.01,1.37 0,0.3 -0.01,0.61 0,0.92 0,0.14 0.02,0.28 0.02,0.42 0.01,0.16 0.05,0.29 0.08,0.44 0.01,0.07 0.14,0.07 0.15,0 0.03,-0.15 0.07,-0.29 0.08,-0.44 0.01,-0.14 0.02,-0.28 0.02,-0.42 0.01,-0.3 0,-0.61 0,-0.92 0,-0.44 -0.01,-0.87 -0.01,-1.31 0.31,0.05 0.61,0.09 0.92,0.14 0,0.29 0,0.57 0,0.86 0,0.22 0,0.44 0,0.66 0,0.2 -0.02,0.44 0.03,0.63 0.02,0.07 0.13,0.07 0.15,0 0.05,-0.19 0.03,-0.43 0.03,-0.63 0,-0.22 0,-0.44 0,-0.66 0,-0.27 0,-0.55 0,-0.82 0.47,0.07 0.93,0.15 1.4,0.22 0,0.4 0.04,0.81 0.05,1.2 0.02,0.67 0.05,1.33 0.07,2 0.04,1.21 0.08,2.41 0.12,3.62 -0.36,-0.01 -0.79,0.05 -1.15,-0.02 z m -12.11,-11.87 c -0.03,-0.79 -0.05,-1.59 -0.06,-2.38 -0.03,-1.37 -0.01,-2.74 -0.03,-4.11 0.29,0.32 0.65,0.6 0.96,0.85 0.53,0.43 1.09,0.84 1.65,1.23 1.12,0.78 2.32,1.45 3.53,2.06 2.45,1.23 5.05,2.14 7.71,2.79 0.05,0.01 0.09,0 0.14,0 -0.08,0.74 -0.13,1.49 -0.13,2.24 0,0.3 0.02,0.6 0.03,0.9 -0.43,-0.06 -0.86,-0.12 -1.29,-0.19 -0.05,-0.09 -0.1,-0.17 -0.14,-0.26 -0.13,-0.24 -0.27,-0.48 -0.4,-0.71 -0.06,-0.11 -0.17,-0.1 -0.25,-0.04 -0.05,-0.17 -0.1,-0.34 -0.14,-0.5 -0.03,-0.11 -0.15,-0.17 -0.25,-0.14 -0.11,0.03 -0.18,0.15 -0.14,0.25 0.07,0.25 0.14,0.49 0.21,0.74 0.04,0.12 0.07,0.25 0.11,0.37 0.02,0.06 0.05,0.11 0.08,0.16 -0.23,-0.03 -0.45,-0.07 -0.68,-0.1 -0.32,-0.04 -0.65,-0.08 -0.97,-0.13 0.03,-0.12 0.04,-0.25 0.04,-0.38 0,-0.17 0,-0.33 0,-0.5 0,-0.34 0,-0.68 0,-1.02 0,-0.24 -0.37,-0.24 -0.37,0 0,0.34 0,0.68 0,1.02 0,0.17 0,0.33 0,0.5 0,0.12 0.01,0.23 0.03,0.34 -0.22,-0.03 -0.43,-0.06 -0.64,-0.08 -0.16,-0.02 -0.34,-0.04 -0.53,-0.06 -0.08,-0.07 -0.18,-0.12 -0.29,-0.16 -0.71,-0.21 -1.5,-0.28 -2.23,-0.4 -0.75,-0.13 -1.49,-0.24 -2.24,-0.36 -0.7,-0.11 -1.41,-0.23 -2.11,-0.33 -0.08,-0.35 -0.17,-0.71 -0.24,-1.06 -0.1,-0.5 -0.18,-1.01 -0.23,-1.52 -0.11,-1.02 -0.11,-2.04 -0.02,-3.06 0.02,-0.21 -0.3,-0.21 -0.32,0 -0.11,1.05 -0.11,2.12 0,3.17 0.05,0.5 0.13,1.01 0.23,1.51 0.06,0.31 0.14,0.62 0.23,0.92 -0.16,-0.02 -0.32,-0.03 -0.48,-0.04 -0.03,-0.2 -0.18,-0.39 -0.42,-0.47 -0.07,-0.02 -0.15,-0.02 -0.22,-0.04 -0.08,-0.33 -0.12,-0.68 -0.13,-1.01 z m 11.52,-10.44 c 0.2,0.17 0.41,0.34 0.63,0.49 0.01,0.01 0.02,0.02 0.02,0.03 -0.03,0.03 -0.07,0.06 -0.1,0.09 -0.16,0.15 -0.33,0.3 -0.49,0.45 -0.22,-0.16 -0.45,-0.3 -0.69,-0.45 0.13,-0.14 0.25,-0.27 0.39,-0.4 0.08,-0.07 0.16,-0.14 0.24,-0.21 z m 4.59,-0.23 0.15,0.21 c 0.09,0.12 0.17,0.24 0.26,0.36 -0.01,0.01 -0.02,0.02 -0.03,0.03 -0.25,-0.06 -0.51,-0.14 -0.76,-0.23 0.12,-0.11 0.22,-0.23 0.34,-0.33 0.01,-0.02 0.03,-0.03 0.04,-0.04 z m 2.75,-0.88 c 0.03,0.03 0.06,0.05 0.1,0.08 0.07,0.06 0.14,0.11 0.2,0.17 0.04,0.03 0.08,0.07 0.12,0.1 0.05,0.03 0.1,0.04 0.16,0.05 0.14,0.03 0.25,-0.06 0.27,-0.18 0.07,0.17 0.11,0.35 0.01,0.56 -0.17,0.37 -0.51,0.59 -0.88,0.72 -0.01,-0.01 -0.02,-0.03 -0.03,-0.04 0.17,-0.18 0.34,-0.36 0.5,-0.54 0.2,-0.21 -0.11,-0.53 -0.32,-0.32 -0.15,0.15 -0.3,0.31 -0.45,0.46 -0.11,-0.16 -0.22,-0.32 -0.33,-0.48 0.22,-0.2 0.44,-0.39 0.65,-0.58 z m -1.11,4.14 c -0.26,0.19 -0.53,0.37 -0.8,0.54 -0.14,0.08 -0.27,0.16 -0.41,0.23 -0.23,-0.08 -0.47,-0.13 -0.72,-0.21 -0.01,0 -0.02,-0.01 -0.03,-0.01 0.05,-0.06 0.11,-0.11 0.16,-0.16 0.1,-0.11 0.21,-0.22 0.31,-0.33 0.01,0 0.01,0.01 0.02,0.02 0.14,0.1 0.31,-0.06 0.27,-0.21 -0.01,-0.03 -0.03,-0.05 -0.03,-0.08 0.09,-0.09 0.17,-0.18 0.26,-0.28 0.44,0.09 0.89,0.13 1.33,0.12 -0.06,0.08 -0.14,0.16 -0.2,0.24 -0.06,0.05 -0.1,0.09 -0.16,0.13 z m -4.24,-0.58 c 0.05,-0.05 0.09,-0.1 0.14,-0.15 0,0 0,0 0,0 0.08,0.1 0.18,0.22 0.28,0.33 -0.02,0.01 -0.03,0.03 -0.05,0.04 -0.12,-0.08 -0.25,-0.14 -0.37,-0.22 z m 0.08,-0.98 c -0.06,-0.07 -0.12,-0.14 -0.18,-0.21 0.09,0.05 0.19,0.1 0.28,0.15 -0.03,0.03 -0.05,0.06 -0.08,0.09 -0.01,-0.01 -0.01,-0.02 -0.02,-0.03 z m 0.63,0.2 c 0.17,0.08 0.35,0.16 0.52,0.23 -0.05,0.05 -0.11,0.09 -0.16,0.14 -0.1,0.09 -0.2,0.18 -0.3,0.26 -0.07,-0.09 -0.14,-0.17 -0.21,-0.25 -0.03,-0.04 -0.07,-0.08 -0.1,-0.12 0.09,-0.09 0.17,-0.17 0.25,-0.26 z m 0.68,0.77 c 0.12,-0.11 0.25,-0.22 0.37,-0.33 0.1,0.04 0.19,0.07 0.29,0.11 0.08,0.12 0.16,0.23 0.24,0.35 0.03,0.04 0.06,0.08 0.09,0.12 -0.1,0.11 -0.21,0.22 -0.31,0.32 -0.1,0.1 -0.22,0.23 -0.31,0.37 -0.21,-0.08 -0.42,-0.15 -0.61,-0.25 -0.11,-0.06 -0.21,-0.13 -0.32,-0.19 0.18,-0.17 0.37,-0.33 0.56,-0.5 z m 3.32,-2.16 c -0.09,0.09 -0.18,0.19 -0.27,0.28 -0.2,0.01 -0.41,0 -0.59,-0.02 -0.04,-0.01 -0.08,-0.02 -0.12,-0.02 -0.02,-0.03 -0.05,-0.06 -0.07,-0.09 0.24,-0.22 0.48,-0.43 0.72,-0.65 0.1,0.16 0.22,0.33 0.33,0.5 z m -5.81,0.74 c 0.03,-0.03 0.06,-0.06 0.1,-0.09 0.04,0.04 0.07,0.09 0.11,0.13 -0.13,0.15 -0.25,0.32 -0.37,0.48 -0.07,-0.05 -0.15,-0.1 -0.22,-0.16 0.12,-0.12 0.25,-0.24 0.38,-0.36 z m 0.54,0.45 c 0.08,0.09 0.15,0.19 0.23,0.28 0.04,0.04 0.07,0.09 0.11,0.13 -0.07,0.09 -0.14,0.18 -0.21,0.27 -0.15,-0.11 -0.3,-0.21 -0.45,-0.32 0.11,-0.13 0.22,-0.24 0.32,-0.36 z m 1.98,4.23 c 0.54,-0.03 1.09,-0.01 1.63,0.09 0.26,0.05 0.52,0.1 0.77,0.18 0,0 0.03,0.01 0.07,0.02 -0.07,0.02 -0.14,0.03 -0.22,0.03 -0.29,0.02 -0.57,0 -0.86,0 -0.66,0 -1.31,0 -1.97,-0.01 -0.42,0 -0.85,-0.01 -1.27,-0.01 0.08,-0.02 0.16,-0.04 0.24,-0.06 0.52,-0.13 1.06,-0.21 1.61,-0.24 z m -1.31,1.65 c 0.74,0.01 1.49,0.03 2.23,0.05 0.66,0.02 1.41,0.13 2.05,-0.1 0.04,-0.01 0.07,-0.05 0.11,-0.06 0.13,0.34 0.17,0.66 -0.1,0.87 -0.28,0.22 -0.87,0.17 -1.2,0.2 -0.56,0.04 -1.11,0.06 -1.67,0.07 -0.85,0.02 -1.83,0.02 -2.52,-0.57 -0.17,-0.15 -0.28,-0.31 -0.36,-0.49 0.48,0.07 1,0.02 1.46,0.03 z m -1.75,6.1 c 0.06,0.1 0.12,0.21 0.17,0.31 0.01,0.01 0.01,0.02 0.02,0.03 -0.06,-0.01 -0.13,-0.02 -0.19,-0.03 0.01,-0.03 0.02,-0.07 0.02,-0.1 0,-0.08 0,-0.14 -0.02,-0.21 z m -6.24,0.99 c 0.31,0.05 0.63,0.11 0.95,0.17 0,0.17 -0.01,0.34 -0.01,0.52 0,0.16 0,0.32 0.01,0.48 -0.42,-0.47 -0.89,-0.89 -1.41,-1.25 0.15,0.03 0.3,0.06 0.46,0.08 z m 11.44,-10.36 c -0.01,-0.01 -0.03,-0.01 -0.04,-0.02 0.04,-0.02 0.09,-0.05 0.13,-0.07 0.02,-0.01 0.05,-0.03 0.07,-0.05 -0.04,0.07 -0.08,0.14 -0.11,0.21 -0.02,-0.03 -0.02,-0.05 -0.05,-0.07 z m 0.93,-5.89 c 0.1,0.08 0.2,0.16 0.3,0.24 0,0 0.01,0.01 0.01,0.01 0.06,0.05 0.13,0.1 0.19,0.15 -0.18,0.16 -0.37,0.32 -0.55,0.48 -0.02,-0.03 -0.04,-0.06 -0.06,-0.09 -0.11,-0.15 -0.26,-0.28 -0.38,-0.43 0.17,-0.11 0.33,-0.23 0.49,-0.36 z m -0.46,1.06 c 0.03,0.04 0.05,0.08 0.08,0.13 -0.25,0.22 -0.5,0.44 -0.75,0.65 -0.08,-0.11 -0.16,-0.22 -0.24,-0.34 -0.06,-0.08 -0.11,-0.15 -0.17,-0.23 0.24,-0.21 0.49,-0.42 0.74,-0.63 0.11,0.15 0.24,0.27 0.34,0.42 z m -1.38,-0.21 c -0.09,-0.12 -0.17,-0.24 -0.26,-0.36 0.24,-0.19 0.47,-0.38 0.72,-0.55 0.09,0.11 0.18,0.21 0.26,0.32 -0.24,0.19 -0.48,0.39 -0.72,0.59 z m -0.35,0.29 c -0.02,0.02 -0.05,0.04 -0.08,0.06 -0.19,0.17 -0.37,0.36 -0.56,0.54 -0.17,-0.07 -0.34,-0.13 -0.51,-0.2 0.1,-0.09 0.19,-0.2 0.3,-0.29 0.19,-0.17 0.4,-0.32 0.6,-0.48 z m -50.04,26.27 c -0.01,-0.2 -0.02,-0.41 -0.04,-0.61 -0.03,-0.38 -0.05,-0.76 -0.08,-1.14 0.39,0.29 0.79,0.56 1.22,0.8 -0.02,0.33 -0.03,0.66 0.01,0.99 0.03,0.24 0.08,0.47 0.14,0.7 -0.42,-0.22 -0.84,-0.48 -1.25,-0.74 z m 51.9,-0.43 c -0.06,-0.17 -0.11,-0.34 -0.14,-0.52 -0.03,-0.18 -0.03,-0.36 -0.02,-0.54 0.5,-0.22 0.99,-0.45 1.46,-0.73 0.31,-0.18 0.62,-0.38 0.92,-0.59 0,0.19 -0.01,0.38 -0.01,0.57 -0.01,0.21 -0.01,0.42 -0.01,0.63 -0.5,0.29 -0.99,0.59 -1.51,0.86 -0.22,0.12 -0.46,0.21 -0.69,0.32 z m 4.85,-5.19 c 0.03,0.06 0.07,0.11 0.09,0.17 0.23,0.67 0.1,1.43 -0.27,2.07 -0.08,0.15 -0.21,0.26 -0.31,0.39 -0.02,-0.07 -0.03,-0.15 -0.05,-0.22 -0.07,-0.23 -0.14,-0.46 -0.21,-0.69 -0.04,-0.12 -0.16,-0.2 -0.29,-0.16 -0.12,0.04 -0.2,0.16 -0.16,0.29 0.06,0.23 0.12,0.47 0.19,0.7 0.04,0.15 0.1,0.3 0.14,0.44 -0.41,0.22 -0.82,0.45 -1.23,0.69 0,-0.1 -0.01,-0.21 -0.01,-0.31 -0.01,-0.31 -0.02,-0.62 -0.02,-0.93 0.85,-0.67 1.62,-1.49 2.13,-2.44 z m -2.84,-4.06 c 0.09,0.96 0.24,1.91 0.45,2.84 0.08,0.33 0.41,0.57 0.75,0.59 -0.76,0.86 -1.57,1.65 -2.6,2.27 -1.18,0.72 -2.47,1.2 -3.79,1.57 0.01,-0.08 0.03,-0.16 0.01,-0.24 0.03,-0.07 0.05,-0.16 0.04,-0.26 -0.05,-1.33 -0.1,-2.67 -0.15,-4 -0.02,-0.67 -0.05,-1.33 -0.07,-2 -0.01,-0.29 -0.01,-0.6 -0.01,-0.92 0.05,-0.01 0.1,-0.01 0.15,-0.02 0.03,0.28 0.05,0.56 0.08,0.83 0.02,0.17 0.03,0.34 0.05,0.51 0.02,0.16 0.02,0.34 0.07,0.49 0.03,0.07 0.15,0.09 0.17,0 0.03,-0.16 -0.01,-0.33 -0.02,-0.49 -0.01,-0.17 -0.03,-0.34 -0.05,-0.51 -0.03,-0.29 -0.06,-0.57 -0.09,-0.86 0.17,-0.02 0.33,-0.04 0.5,-0.05 0.03,1.76 -0.01,3.55 0.25,5.29 0.01,0.06 0.1,0.04 0.1,-0.01 0.15,-1.78 0,-3.6 -0.08,-5.39 0,-0.03 -0.02,-0.05 -0.03,-0.07 0.34,-0.03 0.67,-0.09 1.02,-0.16 0,0.01 -0.02,0.02 -0.02,0.04 0,0.47 0,0.95 0,1.42 0,0.23 0,0.47 0,0.7 0,0.23 0,0.47 0.03,0.7 0.02,0.09 0.17,0.09 0.19,0 0.04,-0.23 0.03,-0.46 0.03,-0.7 0,-0.23 0,-0.47 0,-0.7 0,-0.47 0,-0.95 0,-1.42 0,-0.04 -0.02,-0.07 -0.04,-0.09 0.19,-0.04 0.38,-0.09 0.56,-0.14 0.02,0.38 0.05,0.77 0.07,1.15 0.03,0.49 0.04,1 0.16,1.49 0.02,0.09 0.14,0.06 0.15,-0.02 0.05,-0.49 0,-1 -0.03,-1.5 -0.03,-0.4 -0.05,-0.79 -0.08,-1.19 0.31,-0.07 0.62,-0.14 0.92,-0.22 0.41,-0.11 0.8,-0.25 1.21,-0.37 0,0.03 0,0.06 0,0.1 0.03,0.46 0.06,0.9 0.1,1.34 z m 0.36,-8.26 c -0.08,0.03 -0.16,0.06 -0.24,0.09 -0.13,0.05 -0.26,0.1 -0.39,0.15 0.02,-0.15 0.01,-0.28 0,-0.43 0.2,0.06 0.41,0.13 0.61,0.18 0.01,0.01 0.02,0.01 0.02,0.01 z m -2,-10.46 c 0.01,0 0.01,-0.01 0.01,-0.01 -0.06,0.12 -0.1,0.24 -0.11,0.38 -0.05,0.01 -0.11,0.03 -0.14,0.09 -0.01,0.01 0,0.03 -0.01,0.05 -0.02,0.01 -0.04,0.02 -0.05,0.03 -0.02,0.02 -0.02,0.05 -0.03,0.08 -0.18,0.13 -0.36,0.25 -0.53,0.38 -0.08,-0.09 -0.16,-0.19 -0.24,-0.28 0.37,-0.25 0.73,-0.5 1.1,-0.72 z m -2,0.32 c 0.02,-0.02 0.02,-0.04 0.03,-0.07 0.1,0.11 0.18,0.23 0.28,0.34 -0.24,0.16 -0.48,0.35 -0.71,0.52 -0.06,-0.08 -0.11,-0.16 -0.17,-0.24 0.18,-0.18 0.38,-0.36 0.57,-0.55 z m -0.9,0.87 0.14,0.2 c -0.21,0.16 -0.43,0.31 -0.64,0.49 -0.15,0.13 -0.28,0.27 -0.43,0.4 -0.03,-0.04 -0.05,-0.07 -0.08,-0.11 0.34,-0.32 0.68,-0.65 1.01,-0.98 z m -1.97,0.28 c 0.12,0.18 0.25,0.36 0.37,0.54 -0.22,-0.11 -0.43,-0.22 -0.64,-0.35 0.09,-0.05 0.18,-0.12 0.27,-0.19 z m -3.68,0.92 c 0.05,-0.07 0.1,-0.14 0.15,-0.21 0.1,-0.14 0.19,-0.28 0.29,-0.41 0.1,-0.14 0.17,-0.29 0.24,-0.44 0.01,-0.02 0.02,-0.04 0.03,-0.06 0.09,0.16 0.22,0.3 0.33,0.45 -0.07,0.11 -0.16,0.2 -0.23,0.31 -0.16,0.26 -0.3,0.53 -0.42,0.81 -0.19,-0.09 -0.38,-0.16 -0.57,-0.23 0,0 0.01,0 0.01,-0.01 0.07,-0.05 0.12,-0.13 0.17,-0.21 z m -4.57,0.33 c 0.29,-0.07 0.6,-0.12 0.91,-0.19 -0.88,0.43 -1.93,0.58 -2.88,0.76 -0.34,0.07 -0.69,0.11 -1.04,0.18 -0.01,-0.02 -0.01,-0.04 -0.02,-0.06 0.31,-0.07 0.61,-0.14 0.92,-0.21 0.71,-0.16 1.41,-0.32 2.11,-0.48 z m -0.51,-0.91 c 0.02,0.02 0.03,0.03 0.05,0.05 0.01,0.01 0.02,0.02 0.02,0.03 0,0 0.03,0.04 0.02,0.02 -0.02,-0.02 0.01,0.02 0.01,0.02 0.01,0.01 0.01,0.02 0.02,0.03 0.01,0.02 0.02,0.04 0.03,0.06 0.02,0.04 0.05,0.08 0.07,0.13 0,0 0,0 0,0 0,0 0,0 0,0 -0.01,-0.02 0.01,0.02 0.01,0.04 0,0 0,0 0,0 -0.16,0.02 -0.33,0.04 -0.49,0.07 0,-0.07 0,-0.15 0,-0.22 0,-0.13 0,-0.25 0,-0.38 0.01,0 0.02,0.01 0.02,0.01 0,0 0,0 0,0 0.04,0.02 0.08,0.04 0.12,0.07 0.01,0.01 0.02,0.01 0.03,0.02 0,0 0.01,0.01 0.01,0.01 0,0 0.02,0.01 0.02,0.02 0.05,0 0.05,0.01 0.06,0.02 z m -1.41,0.05 c 0.26,-0.09 0.52,-0.18 0.79,-0.28 0,0.15 0,0.3 0,0.45 0,0.1 0,0.2 0,0.29 -0.02,0 -0.05,0.01 -0.07,0.01 -0.37,0.07 -0.74,0.14 -1.12,0.21 l -0.82,0.16 c 0,-0.04 -0.02,-0.08 -0.02,-0.13 -0.01,-0.13 0.02,-0.25 0.03,-0.37 0.4,-0.11 0.81,-0.2 1.21,-0.34 z m -1.68,0.48 c 0,0.1 -0.02,0.2 -0.02,0.29 0,0.05 0.02,0.11 0.03,0.16 l -0.96,0.18 c -0.15,0.03 -0.09,0.27 0.07,0.24 0.31,-0.06 0.62,-0.12 0.93,-0.18 0.01,0.04 0.01,0.08 0.02,0.12 -0.62,0.15 -1.23,0.29 -1.85,0.44 0,-0.03 0,-0.07 -0.01,-0.1 -0.02,-0.11 -0.04,-0.22 -0.05,-0.33 -0.02,-0.11 -0.02,-0.22 -0.03,-0.34 0.21,-0.05 0.42,-0.08 0.63,-0.13 0.42,-0.1 0.82,-0.23 1.24,-0.35 z m -2.32,-0.24 c -0.01,0.11 -0.02,0.22 -0.02,0.34 -0.31,0.07 -0.62,0.15 -0.93,0.21 0,-0.12 0,-0.25 0.02,-0.37 0.3,-0.05 0.61,-0.11 0.93,-0.18 z m -1.41,0.25 c -0.01,0.12 -0.02,0.25 -0.01,0.37 -0.29,0.05 -0.57,0.1 -0.86,0.15 -0.01,-0.13 -0.01,-0.25 -0.02,-0.38 0.3,-0.04 0.6,-0.09 0.89,-0.14 z m -1.39,0.21 c 0.01,0.11 0.01,0.22 0.02,0.33 0,0.02 0,0.04 0,0.06 -0.25,0.04 -0.5,0.09 -0.75,0.13 -0.27,0.04 -0.54,0.06 -0.81,0.09 -0.01,-0.07 -0.03,-0.13 -0.04,-0.2 -0.01,-0.09 0.01,-0.18 0.01,-0.26 0.52,-0.04 1.05,-0.08 1.57,-0.15 z m -1.99,0.66 c -0.5,0.06 -1,0.12 -1.5,0.16 -0.03,-0.06 -0.07,-0.11 -0.09,-0.17 -0.05,-0.12 -0.08,-0.24 -0.12,-0.37 0.56,-0.01 1.12,-0.04 1.68,-0.08 0,0.07 -0.02,0.15 -0.01,0.22 0,0.08 0.03,0.16 0.04,0.24 z m -2.21,-0.38 c 0.05,0.19 0.1,0.39 0.2,0.56 0,0 0,0 0,0 -0.47,0.03 -0.94,0.06 -1.41,0.07 -0.03,-0.15 -0.06,-0.31 -0.09,-0.46 -0.01,-0.05 -0.02,-0.11 -0.03,-0.16 0.44,0.01 0.88,-0.01 1.33,-0.01 z m -1.68,0 c 0.01,0.08 0.03,0.16 0.04,0.25 0.02,0.13 0.05,0.27 0.07,0.41 -0.57,0.01 -1.14,0 -1.72,0 -0.03,-0.14 -0.07,-0.27 -0.1,-0.41 -0.02,-0.12 -0.02,-0.24 -0.03,-0.36 0.59,0.03 1.16,0.09 1.74,0.11 z m -2.12,-0.15 c 0.01,0.14 0.01,0.28 0.03,0.42 0.02,0.13 0.06,0.25 0.08,0.38 -0.39,-0.01 -0.78,-0.02 -1.17,-0.04 -0.01,-0.05 -0.02,-0.1 -0.03,-0.15 -0.03,-0.2 -0.06,-0.39 -0.1,-0.58 -0.01,-0.06 -0.02,-0.11 -0.03,-0.17 0.41,0.05 0.81,0.1 1.22,0.14 z m -2.35,0.6 c -0.1,-0.16 -0.19,-0.34 -0.25,-0.52 -0.05,-0.15 -0.09,-0.3 -0.11,-0.46 0.37,0.06 0.73,0.12 1.1,0.17 0.02,0.1 0.04,0.21 0.06,0.31 0.03,0.19 0.07,0.37 0.11,0.56 0,0.02 0.01,0.05 0.01,0.07 -0.29,-0.02 -0.58,-0.04 -0.86,-0.06 -0.02,-0.02 -0.04,-0.05 -0.06,-0.07 z m 3.02,0.81 c -0.01,-0.04 -0.02,-0.08 -0.03,-0.12 0.24,0 0.49,0.02 0.73,0.02 0.32,0 0.65,-0.03 0.97,-0.03 0.01,0.04 0.02,0.08 0.03,0.12 0.05,0.14 0.28,0.13 0.28,-0.04 0,-0.03 -0.01,-0.06 -0.01,-0.09 0.57,-0.02 1.14,-0.04 1.71,-0.08 0.04,0.04 0.08,0.1 0.13,0.13 0.13,0.09 0.24,-0.04 0.23,-0.16 0.46,-0.04 0.92,-0.08 1.38,-0.13 0.04,0.12 0.09,0.23 0.14,0.34 0.05,0.11 0.15,0.21 0.24,0.29 0.1,0.09 0.25,0 0.23,-0.13 -0.02,-0.11 -0.04,-0.22 -0.08,-0.32 -0.03,-0.07 -0.05,-0.14 -0.08,-0.22 0.5,-0.06 0.99,-0.14 1.49,-0.22 0.01,0.12 0.01,0.25 0.02,0.37 0.01,0.15 0.03,0.3 0.04,0.45 -0.17,0.02 -0.34,0.04 -0.5,0.06 -2.3,0.21 -4.61,0.26 -6.91,0.18 0.02,-0.02 0.05,-0.04 0.05,-0.08 0.02,-0.13 -0.03,-0.24 -0.06,-0.34 z m 6.55,2.13 c -0.01,0 -0.02,0 -0.03,0.01 -0.81,0.1 -1.62,0.15 -2.43,0.17 -0.54,0.01 -1.08,-0.04 -1.61,-0.07 1.36,0 2.72,-0.03 4.07,-0.11 z m -15.21,-0.88 c -0.01,0.02 -0.03,0.04 -0.02,0.07 0.03,0.46 0.06,0.92 0.09,1.37 0.02,0.22 0.03,0.44 0.05,0.66 0.01,0.12 0.02,0.24 0.03,0.36 0.01,0.13 0.01,0.24 0.1,0.33 0.09,0.09 0.21,0.05 0.28,-0.04 0.08,-0.1 0.05,-0.22 0.05,-0.34 0,-0.1 -0.01,-0.2 -0.02,-0.31 -0.02,-0.23 -0.03,-0.46 -0.05,-0.69 -0.03,-0.45 -0.06,-0.89 -0.1,-1.34 0.53,0.1 1.06,0.19 1.59,0.27 l -0.1,0.97 c -0.02,0.17 -0.04,0.34 -0.05,0.51 -0.01,0.09 -0.01,0.18 -0.02,0.27 -0.01,0.1 -0.02,0.19 0.07,0.27 0.05,0.05 0.14,0.06 0.2,0.03 0.16,-0.1 0.14,-0.35 0.16,-0.52 0.02,-0.18 0.04,-0.36 0.06,-0.54 0.03,-0.31 0.06,-0.63 0.09,-0.94 1.73,0.24 3.49,0.39 5.22,0.49 0.13,0.01 0.26,0 0.38,0.01 1.53,0.34 3.1,0.53 4.67,0.53 0.83,0 1.66,-0.06 2.49,-0.16 0.8,-0.1 1.68,-0.19 2.44,-0.49 0.05,-0.02 0.07,-0.06 0.09,-0.1 0.19,-0.02 0.39,-0.03 0.58,-0.05 0,0.01 -0.01,0.02 -0.01,0.03 -0.06,0.63 -0.08,1.26 -0.1,1.89 -0.06,0.01 -0.11,0.04 -0.11,0.12 -0.01,0.93 -0.01,1.86 -0.02,2.79 -0.01,0.93 -0.06,1.87 0.05,2.79 0.01,0.06 0.05,0.08 0.09,0.09 0,0.19 0,0.38 0,0.58 -0.22,0.03 -0.43,0.05 -0.64,0.08 0.02,-0.36 0.01,-0.73 0.01,-1.1 0,-0.45 0,-0.9 -0.01,-1.35 -0.01,-0.9 -0.02,-1.8 -0.03,-2.69 0,-0.16 -0.25,-0.16 -0.25,0 -0.01,0.9 -0.02,1.8 -0.03,2.69 0,0.43 -0.01,0.86 -0.01,1.29 0,0.4 -0.01,0.8 0.01,1.19 -0.06,0.01 -0.12,0.02 -0.17,0.02 -0.24,0.03 -0.49,0.05 -0.73,0.08 0,-0.07 -0.01,-0.14 -0.01,-0.21 -0.02,-0.6 -0.03,-1.19 -0.05,-1.79 -0.04,-1.23 -0.09,-2.46 -0.14,-3.69 -0.01,-0.13 -0.21,-0.13 -0.21,0 0.02,1.25 0.04,2.5 0.06,3.75 0.01,0.62 0.03,1.23 0.04,1.85 0,0.04 0,0.08 0,0.12 -0.46,0.05 -0.92,0.11 -1.37,0.15 l 0.03,-1.16 c 0.03,-1.04 0.05,-2.07 0.08,-3.11 0,-0.18 -0.27,-0.18 -0.27,0 -0.04,1.02 -0.08,2.03 -0.12,3.05 -0.02,0.42 -0.03,0.84 -0.05,1.25 -0.06,0 -0.12,0.01 -0.18,0.02 -0.45,0.03 -0.9,0.04 -1.35,0.06 0.05,-0.33 0.09,-0.65 0.12,-0.98 0.07,-0.87 0.04,-1.74 -0.05,-2.61 -0.01,-0.09 -0.15,-0.1 -0.15,0 0.07,0.84 0.06,1.67 -0.02,2.51 -0.03,0.36 -0.08,0.73 -0.15,1.09 -0.51,0.02 -1.02,0.06 -1.53,0.07 0,-0.02 0,-0.04 0,-0.05 0.01,-0.32 0.03,-0.63 0.04,-0.95 0.03,-0.62 0.06,-1.24 0.09,-1.87 0.01,-0.17 -0.25,-0.16 -0.26,0 -0.04,0.62 -0.08,1.24 -0.11,1.87 -0.02,0.31 -0.04,0.61 -0.06,0.92 0,0.02 -0.01,0.05 -0.01,0.08 -0.43,0 -0.86,-0.02 -1.29,-0.02 0,-0.04 0,-0.08 0,-0.13 0.01,-0.39 0.02,-0.78 0.03,-1.17 0.02,-0.78 0.04,-1.56 0.05,-2.34 0,-0.1 -0.15,-0.1 -0.16,0 -0.03,0.76 -0.06,1.53 -0.09,2.29 -0.01,0.38 -0.03,0.75 -0.04,1.13 0,0.07 -0.01,0.14 -0.01,0.21 -0.42,-0.01 -0.84,0 -1.26,-0.02 -0.1,-0.01 -0.2,-0.02 -0.3,-0.02 -0.01,-0.08 -0.01,-0.16 -0.02,-0.25 -0.03,-0.38 -0.07,-0.76 -0.1,-1.14 -0.02,-0.21 -0.34,-0.21 -0.33,0 0.03,0.39 0.06,0.77 0.1,1.16 0.01,0.07 0.01,0.13 0.02,0.2 -1.07,-0.07 -2.13,-0.17 -3.19,-0.31 -0.02,-0.1 -0.04,-0.21 -0.06,-0.31 -0.07,-0.39 -0.14,-0.77 -0.21,-1.16 -0.03,-0.16 -0.26,-0.09 -0.24,0.07 0.06,0.38 0.12,0.76 0.18,1.15 l 0.03,0.22 c -0.62,-0.08 -1.23,-0.16 -1.85,-0.27 0.04,-0.27 0.06,-0.55 0.08,-0.82 0.03,-0.39 0.04,-0.78 0.05,-1.17 0.03,-0.78 0.06,-1.56 0.09,-2.34 0.01,-0.22 -0.33,-0.21 -0.34,0 -0.04,0.78 -0.07,1.56 -0.11,2.34 -0.02,0.39 -0.04,0.78 -0.05,1.17 0,0.25 -0.01,0.51 0,0.77 -0.77,-0.14 -1.53,-0.3 -2.29,-0.49 0,-0.01 0,-0.03 -0.01,-0.04 -0.03,-0.15 -0.07,-0.3 -0.1,-0.45 -0.07,-0.31 -0.14,-0.62 -0.21,-0.93 -0.04,-0.19 -0.34,-0.11 -0.3,0.08 0.07,0.31 0.13,0.62 0.2,0.93 0.02,0.1 0.04,0.2 0.06,0.3 -0.31,-0.08 -0.61,-0.18 -0.91,-0.28 0,-0.12 0,-0.25 0,-0.37 0,-0.47 0,-0.95 -0.01,-1.42 0,-0.19 -0.29,-0.19 -0.29,0 0,0.47 0,0.95 -0.01,1.42 0,0.09 0,0.19 0,0.28 -0.15,-0.05 -0.31,-0.09 -0.46,-0.14 -0.11,-0.05 -0.23,-0.11 -0.34,-0.15 -0.03,-0.27 -0.05,-0.54 -0.08,-0.81 -0.01,-0.09 -0.07,-0.16 -0.16,-0.16 -0.08,0 -0.17,0.07 -0.16,0.16 0.02,0.22 0.04,0.43 0.06,0.65 -1.11,-0.52 -2.14,-1.23 -2.86,-2.13 -0.15,-0.4 -0.37,-0.8 -0.49,-1.17 -0.25,-0.75 -0.43,-1.54 -0.51,-2.33 -0.01,-0.09 0,-0.18 -0.01,-0.27 0.03,-0.02 0.06,-0.05 0.07,-0.09 0.13,-0.33 0.14,-0.73 0.19,-1.09 0.26,0.16 0.52,0.29 0.79,0.42 -0.14,0.85 -0.15,1.73 -0.02,2.58 0.07,0.48 0.2,0.95 0.34,1.41 0.13,0.43 0.28,0.9 0.5,1.29 0.05,0.1 0.22,0.03 0.18,-0.08 -0.14,-0.43 -0.33,-0.84 -0.45,-1.28 -0.12,-0.45 -0.2,-0.92 -0.25,-1.39 -0.09,-0.76 -0.09,-1.51 -0.04,-2.27 0.03,0.16 0.07,0.31 0.14,0.44 0.07,0.14 0.28,0.07 0.28,-0.08 0,-0.1 -0.01,-0.19 -0.03,-0.29 0.22,0.1 0.45,0.16 0.67,0.24 0,0.01 0,0.01 0,0.02 -0.02,0.15 -0.05,0.32 -0.01,0.46 0.04,0.13 0.22,0.16 0.29,0.04 0.07,-0.11 0.08,-0.25 0.09,-0.39 0.23,0.07 0.47,0.15 0.7,0.21 0.34,0.28 0.68,0.57 1.05,0.82 0.13,0.09 0.27,-0.11 0.16,-0.21 -0.07,-0.07 -0.15,-0.12 -0.22,-0.19 0,-0.01 0.01,-0.01 0.02,-0.02 0.03,-0.08 0.01,-0.15 -0.01,-0.23 0.11,0.01 0.21,0.05 0.32,0.06 0.15,0.01 0.18,-0.22 0.03,-0.26 -0.15,-0.03 -0.31,-0.08 -0.46,-0.12 -0.03,-0.1 -0.06,-0.2 -0.08,-0.31 -0.06,-0.29 -0.08,-0.58 -0.06,-0.87 0.01,-0.24 0.07,-0.47 0.14,-0.7 0.22,-0.01 0.43,-0.05 0.65,-0.09 0.15,0.05 0.29,0.11 0.44,0.16 -0.12,0.39 -0.21,0.79 -0.22,1.21 -0.01,0.31 0.02,0.62 0.07,0.93 0.05,0.3 0.12,0.63 0.34,0.86 0.09,0.09 0.24,0.02 0.24,-0.1 0,-0.28 -0.11,-0.56 -0.17,-0.84 -0.05,-0.27 -0.08,-0.54 -0.08,-0.81 0,-0.39 0.08,-0.77 0.19,-1.14 0.36,0.09 0.72,0.19 1.08,0.26 0.16,0 0.25,0.01 0.33,0.03 z m -4.16,-0.63 c 0.31,0.08 0.63,0.12 0.94,0.14 -0.07,0.24 -0.14,0.48 -0.16,0.73 -0.03,0.32 -0.01,0.65 0.05,0.97 0,0.03 0.02,0.05 0.02,0.08 -0.09,-0.02 -0.18,-0.04 -0.27,-0.07 -0.24,-0.2 -0.48,-0.4 -0.72,-0.6 0.03,-0.23 0.05,-0.46 0.08,-0.69 0.02,-0.18 0.04,-0.37 0.06,-0.56 z m 0.1,-0.91 c 0.25,0.19 0.48,0.39 0.77,0.54 0.05,0.02 0.1,0.04 0.15,0.06 -0.19,-0.02 -0.38,-0.03 -0.58,-0.07 -0.13,-0.03 -0.26,-0.07 -0.39,-0.1 0.02,-0.15 0.03,-0.29 0.05,-0.43 z m -0.45,0.82 c -0.03,0.21 -0.05,0.41 -0.08,0.62 -0.02,0.15 -0.04,0.29 -0.06,0.44 -0.17,-0.11 -0.4,0.11 -0.23,0.25 0.06,0.05 0.12,0.1 0.18,0.14 0,0.03 -0.01,0.05 -0.01,0.08 0,0.01 0,0.02 0,0.03 -0.17,-0.06 -0.35,-0.11 -0.53,-0.18 -0.09,-0.04 -0.16,-0.09 -0.25,-0.12 -0.01,-0.05 -0.02,-0.1 -0.02,-0.15 -0.03,-0.29 -0.05,-0.59 -0.06,-0.89 0,-0.21 0.02,-0.42 0.03,-0.62 0.32,0.16 0.67,0.29 1.03,0.4 z m -1.39,1.05 c -0.32,-0.16 -0.63,-0.32 -0.93,-0.5 0.03,-0.27 0.07,-0.55 0.1,-0.82 0.03,-0.27 0.06,-0.55 0.09,-0.83 0.23,0.18 0.48,0.35 0.74,0.5 -0.03,0.28 -0.05,0.55 -0.05,0.83 0,0.27 0.02,0.55 0.05,0.82 z m -4.47,-3.46 c 0.31,0.38 0.57,0.79 0.79,1.23 -0.02,0 -0.04,0 -0.06,0.01 -0.04,0.03 -0.07,0.06 -0.11,0.08 -0.15,-0.2 -0.29,-0.41 -0.44,-0.61 -0.06,-0.08 -0.16,-0.12 -0.25,-0.07 -0.08,0.05 -0.12,0.17 -0.07,0.25 0.15,0.22 0.3,0.44 0.45,0.66 -0.1,0.08 -0.2,0.16 -0.3,0.24 -0.25,-0.27 -0.51,-0.55 -0.76,-0.83 -0.06,-0.06 -0.12,-0.13 -0.17,-0.19 0.32,-0.25 0.62,-0.51 0.92,-0.77 z m -1.44,0.71 c -0.09,0.08 -0.18,0.15 -0.27,0.23 -0.27,-0.39 -0.58,-0.76 -0.92,-1.1 0.08,-0.07 0.16,-0.15 0.24,-0.22 0.31,0.36 0.63,0.72 0.95,1.09 z m -7.35,-1.74 c 0.03,0.04 0.06,0.08 0.1,0.12 -0.03,-0.01 -0.07,0 -0.11,0.02 -0.5,0.36 -0.98,0.74 -1.48,1.1 -0.25,-0.17 -0.5,-0.34 -0.74,-0.53 0.28,-0.22 0.56,-0.44 0.84,-0.66 0.46,-0.05 0.92,-0.07 1.39,-0.05 z m -2.1,0.18 c -0.13,0.1 -0.27,0.21 -0.4,0.31 -0.06,-0.05 -0.12,-0.1 -0.18,-0.15 0.18,-0.06 0.35,-0.11 0.53,-0.15 0.02,0 0.03,-0.01 0.05,-0.01 z m -3.69,0.49 c -0.28,0.27 -0.55,0.56 -0.79,0.87 -0.01,0.01 -0.02,0.02 -0.03,0.02 -0.15,-0.12 -0.31,-0.23 -0.46,-0.35 0.34,-0.24 0.68,-0.48 1.02,-0.72 0.09,0.07 0.18,0.13 0.26,0.18 z m -1.38,-0.88 c 0.28,0.17 0.56,0.35 0.84,0.53 -0.34,0.23 -0.67,0.46 -1.01,0.69 -0.23,-0.18 -0.47,-0.35 -0.7,-0.53 0.3,-0.21 0.59,-0.44 0.87,-0.69 z m -1.43,0.63 c -0.03,0.02 -0.06,0.05 -0.09,0.07 -0.22,0.17 -0.43,0.36 -0.65,0.53 -0.03,0.02 -0.05,0.05 -0.08,0.07 0.16,-0.31 0.33,-0.62 0.51,-0.93 0.1,0.09 0.21,0.17 0.31,0.26 z m -1.06,1.21 c 0.03,-0.02 0.05,-0.04 0.08,-0.05 0.25,0.15 0.48,0.33 0.73,0.49 -0.32,0.22 -0.64,0.45 -0.96,0.67 -0.1,0.07 -0.2,0.14 -0.3,0.21 0,-0.01 0,-0.03 0.01,-0.04 0.1,-0.47 0.26,-0.88 0.44,-1.28 z m -2.89,11.24 c 0.55,-0.19 1.1,-0.29 1.66,-0.3 0.59,-0.01 1.09,0.08 1.66,0.28 0.17,0.06 0.35,0.16 0.52,0.26 -0.18,0.12 -0.37,0.24 -0.55,0.3 -0.52,0.2 -1.02,0.3 -1.54,0.32 -0.54,0.01 -1,-0.06 -1.52,-0.23 -0.27,-0.09 -0.52,-0.23 -0.78,-0.37 0.18,-0.1 0.35,-0.2 0.55,-0.26 z m -4.92,12.58 c 0.16,-0.52 0.48,-0.98 0.87,-1.37 -0.02,0.42 -0.03,0.85 -0.03,1.27 0,0.27 0.02,0.55 0.03,0.82 -0.05,0.26 -0.06,0.53 0,0.84 0.01,0.05 0.03,0.11 0.05,0.16 0.04,0.54 0.08,1.16 0.6,1.45 0.1,0.06 0.22,0.07 0.32,0.06 0.9,0.91 2.21,1.32 3.44,1.55 1.53,0.29 3.08,0.48 4.61,0.13 0.6,-0.14 1.32,-0.45 1.89,-0.9 0.01,0.02 0.02,0.04 0.04,0.06 0.47,0.28 0.94,0.55 1.41,0.83 0.23,0.14 0.46,0.28 0.69,0.41 0.11,0.06 0.23,0.11 0.35,0.17 0.12,0.06 0.25,0.13 0.39,0.16 0.11,0.02 0.18,-0.1 0.1,-0.18 -0.09,-0.1 -0.22,-0.18 -0.33,-0.25 -0.11,-0.07 -0.21,-0.15 -0.32,-0.22 -0.23,-0.14 -0.46,-0.27 -0.7,-0.4 -0.46,-0.26 -0.92,-0.53 -1.38,-0.79 0.09,-0.09 0.17,-0.19 0.25,-0.3 0,0.01 0,0.02 0.01,0.02 0.15,0.25 0.42,0.31 0.66,0.23 0.42,0.66 1.01,1.21 1.75,1.55 0.52,0.23 1.07,0.34 1.63,0.36 0.61,0.2 1.22,0.4 1.83,0.6 0.34,0.11 0.69,0.22 1.03,0.33 0.19,0.06 0.37,0.11 0.56,0.16 0.17,0.04 0.34,0.12 0.52,0.1 0.07,-0.01 0.13,-0.1 0.06,-0.15 -0.12,-0.11 -0.27,-0.15 -0.42,-0.21 -0.18,-0.07 -0.36,-0.14 -0.55,-0.2 -0.36,-0.12 -0.71,-0.23 -1.07,-0.35 -0.35,-0.11 -0.71,-0.22 -1.06,-0.33 0.39,-0.07 0.77,-0.18 1.13,-0.35 0.38,0.19 0.76,0.38 1.14,0.57 0.25,0.12 0.49,0.24 0.74,0.36 0.24,0.11 0.51,0.27 0.77,0.32 0.12,0.02 0.25,-0.13 0.13,-0.23 -0.2,-0.17 -0.46,-0.28 -0.69,-0.39 -0.25,-0.13 -0.51,-0.25 -0.77,-0.37 -0.31,-0.15 -0.63,-0.29 -0.94,-0.43 0.4,-0.23 0.76,-0.52 1.08,-0.88 0.32,0.29 0.66,0.57 1.02,0.8 0.31,0.2 0.64,0.39 0.98,0.54 0.18,0.08 0.37,0.16 0.56,0.21 0.17,0.05 0.36,0.1 0.54,0.06 0.09,-0.02 0.11,-0.14 0.05,-0.2 -0.11,-0.12 -0.28,-0.19 -0.42,-0.26 -0.16,-0.09 -0.33,-0.17 -0.5,-0.25 -0.33,-0.16 -0.65,-0.33 -0.95,-0.53 -0.35,-0.23 -0.67,-0.49 -0.98,-0.76 0.23,-0.32 0.42,-0.65 0.55,-1.01 1.11,1.01 2.49,1.72 3.88,2.28 1.77,0.71 3.63,1.11 5.51,1.4 4.48,0.68 9.05,0.98 13.58,1.11 4.62,0.14 9.26,0.06 13.87,-0.3 3.9,-0.31 7.81,-0.83 11.58,-1.91 2.06,-0.59 4.08,-1.34 6,-2.3 0.65,-0.33 1.3,-0.69 1.92,-1.08 0.43,-0.18 0.86,-0.37 1.25,-0.63 1.01,-0.68 1.82,-1.58 2.27,-2.72 0.42,-1.04 0.38,-2.19 -0.15,-3.19 -0.48,-0.91 -1.33,-1.59 -2.37,-1.46 -0.1,-0.45 -0.18,-0.91 -0.24,-1.36 0.43,0.02 0.86,0.1 1.28,0.25 0.38,0.14 0.74,0.33 1.07,0.56 0.17,0.12 0.34,0.27 0.49,0.42 0.13,0.13 0.27,0.34 0.44,0.41 0.13,0.06 0.26,-0.04 0.24,-0.18 -0.03,-0.2 -0.24,-0.39 -0.38,-0.53 -0.16,-0.16 -0.34,-0.3 -0.52,-0.44 -0.36,-0.26 -0.77,-0.47 -1.19,-0.62 -0.47,-0.16 -0.97,-0.24 -1.47,-0.25 -0.01,-0.09 -0.03,-0.19 -0.04,-0.28 -0.02,-0.15 -0.02,-0.31 -0.03,-0.46 0.6,0.11 1.19,0.23 1.79,0.34 0.39,0.07 0.78,0.14 1.17,0.21 0.37,0.07 0.75,0.15 1.13,0.11 0.09,-0.01 0.15,-0.14 0.05,-0.19 -0.33,-0.17 -0.71,-0.23 -1.08,-0.29 -0.39,-0.07 -0.78,-0.14 -1.17,-0.21 -0.64,-0.11 -1.28,-0.22 -1.91,-0.32 -0.01,-0.18 -0.03,-0.35 -0.04,-0.53 -0.01,-0.16 -0.02,-0.32 -0.02,-0.47 0.04,-0.01 0.07,-0.02 0.11,-0.03 0.31,0.03 0.62,0.07 0.92,0.1 -0.06,0.1 -0.05,0.26 0.09,0.28 0.53,0.07 1.05,0.21 1.55,0.41 0.24,0.1 0.47,0.23 0.71,0.35 0.24,0.12 0.46,0.29 0.71,0.4 0.16,0.07 0.32,-0.11 0.19,-0.25 -0.18,-0.21 -0.44,-0.35 -0.67,-0.5 -0.24,-0.15 -0.52,-0.26 -0.79,-0.37 -0.22,-0.08 -0.44,-0.15 -0.66,-0.21 0.27,0.03 0.54,0.05 0.8,0.08 1.36,0.18 2.71,0.43 4.05,0.74 -0.27,0.76 -0.42,1.59 -0.53,2.25 -0.14,0.84 -0.2,1.7 -0.22,2.55 -0.01,0 -0.03,0 -0.04,0.01 -0.13,0.05 -0.23,0.15 -0.3,0.28 -0.1,-0.13 -0.18,-0.28 -0.29,-0.4 -0.07,-0.07 -0.2,0.03 -0.14,0.11 0.17,0.23 0.29,0.47 0.43,0.72 0.04,0.15 0.11,0.29 0.21,0.4 0.07,0.17 0.12,0.34 0.17,0.52 0.03,0.4 0.05,0.8 0.1,1.2 0.01,0.1 0.02,0.2 0.04,0.31 -0.21,0.05 -0.39,0.21 -0.37,0.45 0.03,0.31 0.14,0.59 0.31,0.84 -0.2,0.69 -0.56,1.33 -1.04,1.86 -0.24,0.26 -0.5,0.5 -0.78,0.7 -0.28,0.2 -0.64,0.34 -0.9,0.57 -0.1,0.09 -0.02,0.29 0.11,0.28 0.37,-0.03 0.75,-0.28 1.04,-0.49 0.33,-0.23 0.64,-0.5 0.9,-0.81 0.44,-0.5 0.76,-1.1 0.98,-1.72 0.24,0.24 0.53,0.45 0.84,0.62 -0.05,0.15 -0.08,0.31 -0.15,0.45 -0.25,0.48 -0.61,0.85 -1.05,1.15 -0.08,0.05 -0.03,0.2 0.07,0.16 0.71,-0.26 1.2,-0.9 1.42,-1.62 0.35,0.17 0.71,0.3 1.04,0.37 0.14,0.03 0.27,0.04 0.41,0.06 -0.16,0.14 -0.32,0.28 -0.48,0.43 -0.15,0.13 -0.29,0.26 -0.44,0.4 -0.15,0.14 -0.3,0.27 -0.43,0.43 -0.06,0.07 0.02,0.19 0.1,0.14 0.17,-0.11 0.31,-0.25 0.47,-0.37 0.16,-0.13 0.31,-0.26 0.46,-0.4 0.21,-0.19 0.42,-0.38 0.63,-0.57 0.29,0.04 0.57,0.06 0.86,0.06 -0.11,0.1 -0.22,0.2 -0.34,0.31 -0.15,0.14 -0.31,0.27 -0.44,0.44 -0.08,0.1 0.07,0.22 0.16,0.16 0.17,-0.1 0.32,-0.25 0.47,-0.38 0.15,-0.13 0.31,-0.27 0.46,-0.4 0.05,-0.04 0.09,-0.08 0.14,-0.12 0.84,-0.02 1.67,-0.14 2.5,-0.29 -0.01,0.03 -0.03,0.07 -0.04,0.1 -0.05,0.12 -0.12,0.26 -0.12,0.4 0.01,0.1 0.12,0.15 0.2,0.08 0.1,-0.08 0.15,-0.22 0.19,-0.33 0.05,-0.11 0.09,-0.22 0.14,-0.32 1.14,-0.24 2.3,-0.64 3.13,-1.48 0.11,0.01 0.22,0 0.32,-0.06 0.52,-0.29 0.56,-0.91 0.6,-1.45 0.01,-0.05 0.04,-0.11 0.05,-0.16 0.02,-0.11 0.02,-0.21 0.03,-0.32 0,0 0,0 0,0 -0.01,0.1 0,0.21 -0.02,0.31 0.27,1.71 -0.77,3.33 -2.06,4.45 -1.6,1.38 -3.74,2.14 -5.73,2.87 -4.28,1.57 -8.7,2.8 -13.18,3.73 -8.97,1.87 -18.17,2.54 -27.34,2.58 -4.63,0.02 -9.26,-0.12 -13.89,-0.36 -4.65,-0.24 -9.3,-0.59 -13.9,-1.32 -4.54,-0.72 -9.04,-1.8 -13.32,-3.4 -3.11,-1.19 -7.23,-3.39 -6.03,-7.16 z m 0.41,8.66 c -0.02,-0.27 -0.04,-0.53 -0.05,-0.8 0,-0.02 0,-0.04 0,-0.06 0.01,-0.32 0.03,-0.64 0.04,-0.97 0.01,-0.16 0.01,-0.32 0.02,-0.48 0,-0.16 -0.03,-0.29 -0.03,-0.45 0,-0.11 -0.1,-0.1 -0.16,-0.05 0,-0.07 -0.01,-0.15 -0.01,-0.22 0.15,0.14 0.27,0.3 0.43,0.43 1.68,1.4 3.78,2.23 5.85,3 2.26,0.84 4.59,1.53 6.95,2.08 4.82,1.14 9.76,1.77 14.7,2.19 4.92,0.42 9.86,0.64 14.8,0.73 9.84,0.18 19.73,-0.29 29.41,-2.03 4.83,-0.87 9.6,-2.05 14.22,-3.65 1.63,-0.56 3.47,-1.18 5.16,-1.99 0,0.44 -0.01,0.88 -0.01,1.33 0,0.24 0,0.47 -0.01,0.71 0,0.23 -0.02,0.48 0.04,0.7 0,0.01 0.02,0.01 0.03,0.02 -0.46,0.28 -0.93,0.54 -1.42,0.77 0,-0.1 -0.02,-0.19 -0.04,-0.29 -0.03,-0.11 -0.06,-0.22 -0.08,-0.33 -0.04,-0.21 -0.06,-0.42 -0.05,-0.64 0.01,-0.44 0.13,-0.87 0.35,-1.25 0.13,-0.23 -0.22,-0.43 -0.35,-0.21 -0.26,0.44 -0.4,0.93 -0.42,1.43 -0.01,0.24 0,0.49 0.05,0.73 0.04,0.21 0.12,0.51 0.3,0.65 -0.72,0.34 -1.47,0.64 -2.23,0.91 0,-0.02 0,-0.03 0,-0.05 0,-0.09 -0.01,-0.18 -0.01,-0.26 0,-0.19 0.01,-0.38 0.04,-0.57 0.06,-0.38 0.19,-0.74 0.37,-1.08 0.12,-0.21 -0.21,-0.4 -0.32,-0.19 -0.2,0.37 -0.35,0.77 -0.41,1.18 -0.03,0.2 -0.05,0.41 -0.05,0.62 0,0.11 0.01,0.22 0.03,0.33 0.01,0.05 0.02,0.09 0.03,0.14 -0.17,0.06 -0.33,0.12 -0.5,0.17 -0.18,0.06 -0.37,0.11 -0.55,0.17 0.03,-0.06 0.07,-0.13 0.1,-0.19 0.05,-0.12 0.1,-0.23 0.14,-0.35 l 0.2,-0.71 c 0.03,-0.11 -0.04,-0.25 -0.16,-0.28 -0.12,-0.03 -0.25,0.04 -0.28,0.16 -0.07,0.24 -0.13,0.47 -0.2,0.71 -0.04,0.12 -0.05,0.25 -0.07,0.38 -0.02,0.12 -0.04,0.25 -0.03,0.37 0,0.01 0.01,0 0.01,0.01 -0.47,0.15 -0.94,0.28 -1.41,0.43 0.01,-0.09 0.02,-0.18 0.03,-0.27 0.03,-0.39 0.07,-0.77 0.1,-1.16 0.01,-0.11 -0.1,-0.2 -0.2,-0.2 -0.12,0 -0.19,0.09 -0.2,0.2 -0.04,0.38 -0.07,0.76 -0.1,1.14 -0.01,0.14 -0.03,0.28 -0.04,0.42 -0.41,0.12 -0.81,0.25 -1.22,0.37 0,-0.03 0.01,-0.07 0.01,-0.1 0.03,-0.35 0.07,-0.69 0.1,-1.04 0.01,-0.08 -0.07,-0.14 -0.15,-0.14 -0.08,0 -0.14,0.07 -0.14,0.14 l -0.1,1.02 c -0.01,0.07 -0.01,0.14 -0.02,0.21 -0.59,0.17 -1.18,0.35 -1.77,0.51 0.01,-0.1 0.02,-0.19 0.03,-0.29 0.06,-0.68 0.13,-1.36 0.19,-2.04 0.02,-0.25 -0.36,-0.24 -0.38,0 -0.07,0.67 -0.15,1.34 -0.23,2.01 -0.02,0.15 -0.03,0.29 -0.05,0.44 -0.61,0.16 -1.22,0.31 -1.83,0.46 0.03,-0.09 0.05,-0.18 0.07,-0.27 0.02,-0.08 -0.03,-0.18 -0.11,-0.2 -0.08,-0.02 -0.18,0.02 -0.2,0.11 -0.03,0.14 -0.06,0.27 -0.09,0.41 l -0.01,0.03 c -0.58,0.14 -1.16,0.3 -1.75,0.44 v -0.83 c 0,-0.1 -0.09,-0.19 -0.19,-0.19 -0.1,0 -0.19,0.09 -0.19,0.19 v 0.93 c -0.64,0.15 -1.29,0.26 -1.94,0.4 -0.01,-0.02 -0.01,-0.05 -0.01,-0.07 -0.02,-0.1 -0.05,-0.2 -0.09,-0.3 -0.07,-0.2 -0.13,-0.41 -0.2,-0.61 -0.03,-0.09 -0.12,-0.15 -0.21,-0.12 -0.09,0.02 -0.15,0.12 -0.12,0.21 0.07,0.21 0.14,0.41 0.21,0.62 0.04,0.11 0.08,0.21 0.12,0.32 0,0 0,0 0,0.01 -2.96,0.61 -5.94,1.15 -8.93,1.54 -7.46,0.98 -15.01,1.32 -22.53,1.12 -7.09,-0.18 -14.18,-0.8 -21.2,-1.84 0,-0.07 0,-0.14 0,-0.22 0,-0.09 -0.08,-0.18 -0.17,-0.17 -0.09,0 -0.17,0.08 -0.17,0.17 0,0.06 0,0.11 0,0.17 -0.29,-0.04 -0.58,-0.08 -0.86,-0.12 -1.33,-0.21 -2.66,-0.44 -3.98,-0.7 0,-0.1 0,-0.2 0,-0.31 0,-0.21 0,-0.42 0,-0.63 0,-0.09 -0.08,-0.18 -0.18,-0.18 -0.09,0 -0.18,0.08 -0.17,0.18 0,0.21 0,0.42 0,0.63 0,0.08 0,0.16 0,0.24 -1.09,-0.22 -2.18,-0.46 -3.27,-0.72 0.09,-0.26 0.15,-0.53 0.21,-0.8 0.07,-0.3 0.13,-0.6 0.2,-0.9 0.05,-0.21 -0.27,-0.29 -0.32,-0.09 -0.07,0.3 -0.14,0.61 -0.21,0.91 -0.06,0.27 -0.12,0.53 -0.15,0.8 -0.6,-0.15 -1.2,-0.31 -1.8,-0.48 0.01,-0.26 0.02,-0.53 0.03,-0.8 0,-0.14 -0.22,-0.14 -0.22,0 0.01,0.25 0.01,0.5 0.02,0.75 0,0 -0.01,0 -0.01,0 -1.28,-0.37 -2.53,-0.8 -3.76,-1.28 v -1.47 c 0,-0.17 -0.26,-0.17 -0.26,0 v 1.37 c -0.27,-0.11 -0.54,-0.21 -0.81,-0.32 0,0 0,0 0,-0.01 -0.01,-0.2 -0.03,-0.41 -0.05,-0.61 -0.03,-0.41 -0.06,-0.81 -0.09,-1.22 -0.01,-0.18 -0.3,-0.19 -0.29,0 0.03,0.41 0.06,0.83 0.09,1.24 0.01,0.15 0.02,0.3 0.03,0.45 -0.33,-0.15 -0.65,-0.3 -0.98,-0.46 0,-0.06 0,-0.13 0,-0.19 0.01,-0.27 0,-0.54 0,-0.81 0,-0.54 -0.01,-1.08 -0.01,-1.63 0,-0.2 -0.31,-0.2 -0.31,0 0,0.54 -0.01,1.08 -0.01,1.63 0,0.27 -0.01,0.54 0,0.81 0,0.01 0,0.02 0,0.04 -0.05,-0.02 -0.09,-0.04 -0.14,-0.07 0.03,-0.3 0.04,-0.61 0.03,-0.91 0,-0.37 0,-0.73 -0.01,-1.1 0,-0.16 -0.24,-0.16 -0.24,0 0,0.37 0,0.73 -0.01,1.1 0,0.28 0.01,0.55 0.03,0.82 -0.42,-0.22 -0.82,-0.47 -1.22,-0.71 0,-0.01 0.02,-0.01 0.02,-0.02 0.04,-0.46 0.02,-0.93 0.02,-1.4 0,-0.15 -0.23,-0.15 -0.23,0 0,0.44 -0.01,0.87 0.02,1.31 -0.19,-0.11 -0.38,-0.21 -0.56,-0.33 0.02,-0.36 -0.05,-0.73 -0.08,-1.08 -0.04,-0.36 -0.07,-0.73 -0.11,-1.09 0,-0.13 0,-0.27 0,-0.4 0,-0.19 -0.3,-0.19 -0.3,0 v 1.02 c 0,0.33 -0.02,0.68 0.03,1.01 0.01,0.08 0.1,0.09 0.17,0.05 0.01,0.12 0.03,0.24 0.05,0.35 -0.02,-0.01 -0.05,-0.03 -0.07,-0.04 -0.33,-0.19 -0.65,-0.4 -0.98,-0.61 z m 5.4,4.62 c 0.02,0.32 0.05,0.64 0.07,0.96 -0.41,-0.2 -0.79,-0.47 -1.12,-0.79 -0.12,-0.11 -0.35,0.04 -0.24,0.18 0.36,0.49 0.85,0.84 1.4,1.08 0.02,0.22 0.03,0.43 0.05,0.65 -0.27,-0.06 -0.53,-0.11 -0.79,-0.21 -0.18,-0.07 -0.25,0.21 -0.08,0.28 0.29,0.12 0.59,0.18 0.89,0.25 0.02,0.3 0.04,0.61 0.07,0.91 0,0 0,0.01 0,0.01 -0.36,-0.07 -0.72,-0.16 -1.07,-0.28 -0.18,-0.07 -0.26,0.22 -0.08,0.29 0.38,0.14 0.78,0.25 1.18,0.33 0.02,0.26 0.04,0.52 0.1,0.77 0.03,0.14 0.23,0.1 0.24,-0.03 0.02,-0.23 0.01,-0.47 -0.01,-0.7 0.29,0.04 0.57,0.08 0.86,0.08 0.1,0 0.2,-0.02 0.3,-0.02 0,0.04 0,0.07 0,0.11 0,0.33 0.01,0.67 0.02,1 -0.06,0.01 -0.12,0.03 -0.17,0.04 -0.82,0.15 -1.64,0.21 -2.48,0.14 -0.2,-0.02 -0.2,0.29 0,0.31 0.84,0.09 1.71,0.09 2.54,-0.04 0.04,-0.01 0.08,-0.02 0.11,-0.03 0,0.12 0,0.25 0.01,0.37 0,0.22 0.01,0.45 0.02,0.68 -0.63,0.01 -1.25,0.03 -1.88,0.04 -0.17,0 -0.17,0.27 0,0.27 0.63,0 1.27,0.01 1.9,0.01 0.02,0.26 0.04,0.51 0.09,0.76 0,0.01 0.02,0.01 0.03,0.02 -0.47,0.02 -0.95,0.02 -1.42,-0.02 -0.22,-0.02 -0.22,0.32 0,0.34 0.73,0.07 1.46,0.08 2.19,0.01 0.01,0 0.01,0 0.02,0 0,0 0,0 0,0.01 -0.65,0.22 -1.33,0.36 -2.02,0.35 -0.74,0 -1.5,-0.15 -2.18,-0.45 -0.2,-0.09 -0.42,-0.2 -0.62,-0.33 0.13,-0.76 0.08,-1.58 0.11,-2.34 0.03,-0.79 0.06,-1.58 0.08,-2.37 0.02,-0.79 0.04,-1.58 0.05,-2.37 0.01,-0.37 0.02,-0.76 0,-1.15 0.6,0.32 1.22,0.6 1.83,0.88 z m -11.32,6.12 c 0.94,-0.41 1.94,-0.73 2.93,-1 1.03,-0.28 2.08,-0.49 3.14,-0.65 0.57,-0.09 1.13,-0.14 1.7,-0.19 -0.01,0.25 -0.02,0.49 -0.03,0.74 -0.01,0.27 -0.03,0.55 -0.04,0.82 -0.37,0.25 -0.49,0.75 -0.41,1.22 0.1,0.64 0.56,1.11 1.06,1.48 0.9,0.67 2,1.03 3.1,1.16 1.07,0.13 2.19,0.01 3.2,-0.35 0.51,-0.19 1.04,-0.42 1.49,-0.73 0.22,-0.15 0.42,-0.34 0.59,-0.55 0.21,-0.25 0.25,-0.51 0.34,-0.81 0.09,-0.31 -0.22,-0.62 -0.53,-0.53 0,0 -0.01,0 -0.01,0 l -0.04,-2.25 c 0.52,0.05 1.04,0.09 1.55,0.17 1.81,0.29 3.8,0.68 5.47,1.47 0.52,0.25 1.26,0.64 1.47,1.22 0.23,0.65 -0.42,1.05 -0.92,1.29 -1.57,0.73 -3.43,1.1 -5.12,1.44 -3.71,0.74 -7.53,0.9 -11.29,0.5 -1.88,-0.2 -3.74,-0.56 -5.56,-1.05 -0.8,-0.21 -1.64,-0.41 -2.38,-0.78 -0.48,-0.24 -1.17,-0.63 -1.16,-1.25 0.01,-0.71 0.91,-1.13 1.45,-1.37 z m 1.59,10.02 c 0.04,-0.22 0.01,-0.46 0,-0.68 -0.01,-0.25 -0.03,-0.51 -0.05,-0.76 -0.04,-0.51 -0.07,-1.02 -0.11,-1.53 -0.02,-0.24 -0.39,-0.24 -0.37,0 0.03,0.52 0.06,1.04 0.09,1.56 0.01,0.25 0.02,0.51 0.04,0.76 0.02,0.18 0.03,0.36 0.06,0.54 -0.34,-0.12 -0.67,-0.27 -0.99,-0.44 0,-0.07 0,-0.14 0,-0.21 0,-0.36 0,-0.71 0,-1.07 0,-0.71 -0.01,-1.42 -0.01,-2.14 0,-0.23 -0.36,-0.23 -0.36,0 0,0.71 -0.01,1.42 -0.01,2.14 0,0.36 0,0.71 0,1.07 0,0 0,0 0,0 -0.16,-0.1 -0.31,-0.21 -0.45,-0.32 0,-0.02 0.01,-0.04 0.01,-0.06 0,-0.05 0,-0.11 0,-0.16 0,-0.12 0,-0.24 0,-0.36 0,-0.24 0,-0.47 0,-0.71 0,-0.22 -0.35,-0.22 -0.35,0 0,0.24 0,0.47 0,0.71 0,0.11 0,0.22 0,0.32 -0.22,-0.19 -0.42,-0.41 -0.61,-0.64 0.03,-0.35 0.02,-0.71 0.01,-1.09 0,-0.63 0,-1.27 0.01,-1.9 0.01,-0.4 0.01,-0.81 0.02,-1.21 0.13,0.08 0.26,0.16 0.39,0.23 0.05,0.03 0.11,0.04 0.17,0.07 -0.02,0.02 -0.04,0.03 -0.04,0.07 -0.07,0.41 -0.1,0.83 -0.13,1.25 -0.02,0.2 -0.05,0.41 -0.04,0.61 0.01,0.21 -0.03,0.42 0.02,0.63 0.03,0.15 0.23,0.12 0.28,0 0.07,-0.19 0.07,-0.4 0.11,-0.59 0.04,-0.2 0.05,-0.41 0.06,-0.62 0.03,-0.4 0.08,-0.8 0.08,-1.2 1.76,0.75 3.76,1.14 5.61,1.45 4.43,0.75 8.94,0.76 13.36,-0.01 2.09,-0.36 4.28,-0.82 6.23,-1.66 0.29,-0.13 0.57,-0.29 0.83,-0.46 0.01,0.44 0.02,0.88 0.01,1.32 0,0 0,0 0,0 -0.02,-0.01 -0.04,-0.03 -0.07,-0.03 -0.09,0 -0.18,0.08 -0.18,0.18 0.03,0.37 0.06,0.75 0.1,1.12 0.01,0.13 0.03,0.25 0.04,0.37 -0.01,0.09 -0.01,0.18 -0.02,0.27 -0.04,0.33 -0.13,0.73 -0.16,1.11 -0.08,0.05 -0.16,0.1 -0.24,0.15 0,-0.01 0,-0.02 0,-0.04 0,-0.25 0,-0.49 0,-0.74 0,-0.48 0,-0.97 0,-1.45 0,-0.18 -0.27,-0.18 -0.28,0 0,0.48 0,0.97 0,1.45 0,0.24 0,0.47 0,0.71 0,0.08 0,0.16 0,0.24 -0.18,0.11 -0.37,0.22 -0.56,0.3 -0.29,0.13 -0.57,0.27 -0.85,0.41 -0.04,-0.31 -0.06,-0.63 -0.06,-0.95 -0.01,-0.65 0.05,-1.29 0.19,-1.92 0.04,-0.21 -0.28,-0.31 -0.33,-0.09 -0.14,0.65 -0.22,1.31 -0.22,1.98 0,0.34 0.02,0.67 0.06,1.01 0,0.04 0.01,0.1 0.02,0.15 -0.43,0.21 -0.86,0.41 -1.31,0.58 0.01,-0.32 0,-0.64 0,-0.95 0,-0.51 0,-1.02 0,-1.53 0,-0.22 -0.35,-0.22 -0.35,0 0,0.51 0,1.02 0,1.53 0,0.36 -0.01,0.72 0.01,1.07 -0.53,0.19 -1.07,0.35 -1.61,0.49 -0.02,-0.16 -0.04,-0.31 -0.04,-0.47 0,-0.4 0.07,-0.79 0.21,-1.17 0.08,-0.22 -0.26,-0.31 -0.35,-0.1 -0.16,0.41 -0.24,0.85 -0.24,1.29 0,0.17 0.02,0.36 0.04,0.54 -0.5,0.12 -1,0.22 -1.5,0.31 0,0 0,0 0,0 0,-0.23 0,-0.47 0,-0.7 0,-0.16 -0.26,-0.17 -0.26,0 0,0.23 0,0.47 0,0.7 0,0.02 0,0.03 0,0.05 -0.51,0.08 -1.01,0.15 -1.52,0.21 -2.27,0.25 -4.55,0.18 -6.82,0.01 -0.48,-0.04 -0.97,-0.07 -1.46,-0.11 -0.04,-0.13 -0.08,-0.26 -0.09,-0.4 -0.04,-0.4 0.02,-0.81 0.19,-1.19 0.08,-0.17 -0.17,-0.32 -0.25,-0.15 -0.19,0.42 -0.28,0.88 -0.24,1.33 0.01,0.13 0.05,0.25 0.08,0.37 -0.64,-0.05 -1.28,-0.11 -1.91,-0.17 0,-0.03 -0.01,-0.05 -0.01,-0.08 -0.03,-0.2 -0.07,-0.41 -0.1,-0.61 -0.02,-0.11 -0.19,-0.06 -0.17,0.05 0.03,0.2 0.07,0.4 0.1,0.6 0,0.01 0,0.02 0.01,0.03 -0.88,-0.09 -1.75,-0.21 -2.61,-0.38 -0.39,-0.07 -0.75,-0.17 -1.11,-0.29 z m 5.69,2.43 c 0.06,0.01 0.11,0.01 0.17,0.02 -0.09,0 -0.17,0.06 -0.17,0.17 0,0.2 0.02,0.4 0.04,0.59 -0.16,-0.03 -0.32,-0.05 -0.47,-0.08 0.04,-0.24 0.08,-0.49 0.09,-0.73 0.11,0.01 0.23,0.02 0.34,0.03 z m -1.57,10.86 c 0.07,0.87 0.22,1.73 0.33,2.59 0.06,0.44 0.12,0.88 0.19,1.33 -0.06,-0.05 -0.12,-0.1 -0.19,-0.15 0.02,-0.29 0.02,-0.57 -0.07,-0.9 -0.13,-0.44 -0.26,-0.88 -0.37,-1.33 -0.18,-0.74 -0.31,-1.49 -0.41,-2.24 0.16,0.25 0.33,0.48 0.52,0.7 z m 95.37,4.31 c -0.02,-0.15 -0.04,-0.31 -0.04,-0.46 -0.01,-0.51 0.05,-1.01 0.18,-1.5 0.07,-0.26 -0.33,-0.37 -0.4,-0.11 -0.15,0.53 -0.23,1.08 -0.23,1.63 0,0.28 0.02,0.56 0.06,0.83 0,0.01 0,0.02 0.01,0.02 -0.39,0.35 -0.79,0.67 -1.2,0.97 0.01,-0.13 0.02,-0.26 0.02,-0.39 0.03,-0.54 0.06,-1.08 0.09,-1.61 0.01,-0.25 -0.37,-0.25 -0.38,0 -0.04,0.53 -0.07,1.06 -0.11,1.58 -0.02,0.24 -0.03,0.48 -0.05,0.73 -0.59,0.4 -1.2,0.76 -1.83,1.09 0,-0.27 0,-0.54 0.03,-0.8 0.06,-0.6 0.2,-1.18 0.41,-1.74 0.09,-0.25 -0.31,-0.36 -0.4,-0.11 -0.22,0.59 -0.36,1.2 -0.43,1.82 -0.03,0.31 -0.05,0.63 -0.04,0.94 0,0.04 0.01,0.07 0.01,0.11 -0.42,0.21 -0.85,0.4 -1.29,0.59 0.01,-0.24 0.02,-0.49 0.03,-0.73 0.02,-0.69 0.05,-1.38 0.07,-2.07 0.01,-0.25 -0.37,-0.25 -0.39,0 -0.04,0.68 -0.08,1.36 -0.12,2.03 -0.02,0.32 -0.04,0.64 -0.06,0.96 -0.27,0.11 -0.55,0.22 -0.82,0.32 -0.45,0.17 -0.9,0.3 -1.35,0.46 0,-0.01 0,-0.03 0,-0.04 0,-0.26 0,-0.52 0,-0.78 0,-0.52 -0.01,-1.04 -0.01,-1.56 0,-0.24 -0.37,-0.24 -0.37,0 0,0.52 -0.01,1.04 -0.01,1.56 0,0.26 0,0.52 0,0.78 0,0.05 0,0.12 0,0.18 -0.49,0.17 -0.98,0.33 -1.47,0.5 0.12,-0.6 0.16,-1.21 0.23,-1.81 0.01,-0.09 -0.08,-0.16 -0.16,-0.16 -0.09,0 -0.15,0.07 -0.16,0.16 -0.07,0.6 -0.16,1.2 -0.17,1.8 0,0.04 0.02,0.07 0.04,0.09 -0.89,0.3 -1.79,0.6 -2.69,0.87 v -0.97 c 0,-0.27 -0.43,-0.27 -0.43,0 v 1.09 c -0.48,0.14 -0.97,0.27 -1.46,0.4 0,-0.07 0.01,-0.15 0.01,-0.22 0,-0.12 -0.02,-0.24 -0.03,-0.36 -0.03,-0.24 -0.06,-0.47 -0.09,-0.71 -0.02,-0.13 -0.1,-0.23 -0.24,-0.21 -0.14,0.02 -0.2,0.14 -0.18,0.27 0.04,0.24 0.07,0.47 0.11,0.71 0.02,0.12 0.03,0.24 0.07,0.35 0.03,0.08 0.06,0.17 0.09,0.25 -1.44,0.4 -2.88,0.78 -4.34,1.12 0,-0.02 0,-0.03 0.01,-0.05 0.03,-0.28 0.06,-0.55 0.09,-0.83 0.01,-0.1 -0.09,-0.18 -0.18,-0.18 -0.11,0 -0.17,0.08 -0.18,0.18 l -0.1,0.81 c -0.01,0.05 -0.01,0.1 -0.02,0.15 -0.5,0.11 -1,0.22 -1.51,0.33 0,-0.06 -0.02,-0.11 -0.02,-0.16 0,-0.44 0.14,-0.86 0.39,-1.22 0.14,-0.2 -0.18,-0.38 -0.32,-0.19 -0.29,0.41 -0.45,0.9 -0.47,1.4 0,0.08 0.02,0.17 0.03,0.25 -1.02,0.21 -2.04,0.42 -3.06,0.6 -0.02,-0.24 -0.01,-0.49 0.07,-0.72 0.04,-0.1 -0.04,-0.21 -0.14,-0.24 -0.11,-0.03 -0.2,0.04 -0.24,0.14 -0.11,0.28 -0.12,0.59 -0.09,0.89 -1.35,0.24 -2.7,0.48 -4.05,0.66 -0.03,0 -0.06,0.01 -0.08,0.01 0.04,-0.08 0.05,-0.17 -0.02,-0.24 -0.07,-0.07 -0.22,-0.09 -0.29,0 -0.07,0.09 -0.1,0.19 -0.15,0.29 -0.83,0.11 -1.67,0.19 -2.5,0.28 -0.01,-0.04 -0.03,-0.08 -0.04,-0.12 -0.04,-0.12 -0.17,-0.22 -0.31,-0.18 -0.12,0.04 -0.23,0.18 -0.18,0.31 0.01,0.01 0.01,0.03 0.02,0.04 -6.46,0.68 -12.96,0.85 -19.44,0.54 -6.56,-0.32 -13.11,-1.08 -19.59,-2.26 0,-0.01 0,-0.01 0,-0.02 0,-0.15 0,-0.31 0,-0.46 0,-0.31 0,-0.61 -0.01,-0.92 0,-0.24 -0.38,-0.25 -0.38,0 0,0.31 0,0.61 -0.01,0.92 0,0.14 0,0.27 0,0.41 -0.94,-0.17 -1.88,-0.33 -2.82,-0.52 -2.04,-0.42 -4.07,-0.9 -6.08,-1.47 0.05,0.01 0.1,0.03 0.15,0.02 0.07,-0.02 0.13,-0.11 0.1,-0.18 -0.03,-0.1 -0.1,-0.16 -0.17,-0.23 -0.03,-0.03 -0.06,-0.05 -0.09,-0.08 -0.03,-0.03 -0.05,-0.05 -0.08,-0.07 0.03,0.02 -0.01,-0.01 -0.02,-0.01 -0.07,-0.05 -0.13,-0.11 -0.19,-0.17 -0.03,-0.03 -0.06,-0.06 -0.09,-0.1 -0.01,-0.02 -0.03,-0.03 -0.04,-0.05 0,0 -0.02,-0.02 -0.03,-0.03 -0.22,-0.28 -0.34,-0.55 -0.4,-0.9 -0.02,-0.12 -0.17,-0.19 -0.28,-0.16 -0.13,0.04 -0.18,0.16 -0.16,0.28 0.06,0.37 0.22,0.74 0.45,1.04 0.12,0.16 0.25,0.3 0.4,0.43 0.06,0.05 0.13,0.09 0.2,0.13 -1.23,-0.35 -2.45,-0.73 -3.66,-1.17 -1.94,-0.71 -3.82,-1.54 -5.62,-2.56 0.11,0.05 0.21,-0.05 0.19,-0.16 -0.02,-0.12 -0.1,-0.23 -0.16,-0.34 -0.05,-0.1 -0.11,-0.2 -0.15,-0.3 -0.11,-0.23 -0.22,-0.45 -0.31,-0.68 -0.17,-0.46 -0.29,-0.94 -0.34,-1.43 -0.02,-0.22 -0.37,-0.23 -0.35,0 0.04,0.53 0.15,1.06 0.33,1.56 0.09,0.24 0.18,0.49 0.31,0.71 0.07,0.12 0.14,0.24 0.22,0.35 0.07,0.1 0.14,0.21 0.24,0.28 -0.56,-0.32 -1.12,-0.65 -1.66,-1.01 0.04,-0.01 0.07,-0.05 0.06,-0.09 -0.02,-0.24 -0.13,-0.49 -0.19,-0.73 -0.06,-0.24 -0.1,-0.48 -0.12,-0.72 -0.04,-0.51 0.02,-1.01 0.16,-1.49 0.06,-0.21 -0.27,-0.3 -0.33,-0.09 -0.16,0.52 -0.22,1.07 -0.18,1.61 0.02,0.27 0.07,0.53 0.14,0.79 0.06,0.19 0.14,0.41 0.27,0.59 -0.55,-0.38 -1.11,-0.76 -1.64,-1.19 -0.06,-0.05 -0.12,-0.1 -0.18,-0.15 -0.01,-0.09 -0.03,-0.19 -0.04,-0.28 -0.06,-0.47 -0.12,-0.95 -0.19,-1.42 -0.1,-0.69 -0.18,-1.39 -0.29,-2.08 0,0 0.01,0.01 0.01,0.01 1.68,1.72 3.81,2.76 5.89,3.72 2.29,1.05 4.64,1.93 7.04,2.65 4.89,1.46 9.91,2.32 14.94,2.92 5,0.6 10.04,0.96 15.07,1.16 10.03,0.4 20.12,0.02 30.03,-1.89 4.95,-0.95 9.84,-2.3 14.58,-4.13 3.1,-1.2 6.92,-2.59 9.25,-5.4 0.03,0.3 0.05,0.59 0.08,0.89 0.02,0.19 0.03,0.37 0.05,0.56 0,0 0,0 0,0 -0.03,0.15 -0.06,0.31 -0.09,0.46 -0.01,-0.32 -0.01,-0.65 -0.01,-0.97 0,-0.27 -0.42,-0.27 -0.43,0 -0.01,0.37 -0.01,0.75 -0.02,1.12 0,0.19 -0.01,0.37 -0.01,0.56 0,0.13 -0.01,0.27 0,0.41 -0.02,0.03 -0.04,0.06 -0.06,0.09 -0.43,0.59 -0.92,1.13 -1.42,1.62 z m -0.08,-16.83 c 0.07,0.47 0.08,0.95 0.07,1.42 -0.01,0.26 -0.05,0.53 -0.09,0.79 -0.06,-0.02 -0.12,-0.02 -0.18,0.03 -0.23,0.19 -0.48,0.37 -0.74,0.54 -0.01,-0.51 -0.01,-1.02 -0.02,-1.53 0,-0.07 -0.03,-0.13 -0.08,-0.16 -0.01,-0.07 -0.02,-0.14 -0.03,-0.21 -0.04,-0.2 -0.07,-0.41 -0.11,-0.61 l -0.08,-0.47 c 0,0 0,0 0,-0.01 l -0.11,-0.61 c 0.2,-0.02 0.4,-0.03 0.6,-0.05 0.02,0.42 0.04,0.84 0.07,1.25 0.02,0.29 0.03,0.58 0.05,0.86 0.02,0.27 0,0.6 0.11,0.85 0.06,0.16 0.29,0.19 0.35,0 0.07,-0.26 0.03,-0.58 0.01,-0.85 -0.02,-0.29 -0.04,-0.58 -0.06,-0.86 -0.03,-0.43 -0.06,-0.86 -0.08,-1.29 0.07,-0.01 0.14,-0.01 0.2,-0.02 0.01,0.32 0.08,0.64 0.12,0.93 z m 7.52,-4.16 c 0,-0.19 -0.01,-0.37 -0.02,-0.56 -0.02,-0.36 -0.04,-0.71 -0.05,-1.07 -0.04,-0.71 -0.07,-1.42 -0.11,-2.14 -0.01,-0.22 -0.36,-0.23 -0.35,0 0.03,0.71 0.06,1.42 0.09,2.14 0.01,0.36 0.03,0.71 0.04,1.07 0.01,0.25 0.02,0.5 0.07,0.74 -0.41,0.22 -0.83,0.41 -1.28,0.56 0,-0.07 -0.01,-0.13 -0.01,-0.2 l -0.04,-1.17 c -0.03,-0.78 -0.06,-1.56 -0.09,-2.34 -0.01,-0.25 -0.39,-0.25 -0.38,0 0.02,0.8 0.04,1.59 0.06,2.39 l 0.03,1.17 c 0,0.1 0.01,0.19 0.01,0.28 -0.35,0.1 -0.71,0.19 -1.07,0.26 -0.14,0.03 -0.28,0.04 -0.43,0.07 0,-0.07 0,-0.13 0,-0.2 0,-0.15 0,-0.31 0,-0.46 0,-0.31 0,-0.61 0,-0.92 0,-0.21 -0.33,-0.21 -0.33,0 0,0.31 0,0.61 0,0.92 0,0.15 0,0.31 0,0.46 0,0.08 0,0.17 0,0.25 -0.42,0.07 -0.85,0.13 -1.28,0.18 0.02,-0.47 0.02,-0.94 0.02,-1.41 0,-0.21 -0.33,-0.21 -0.33,0 0,0.48 0,0.96 0.02,1.44 -0.67,0.07 -1.34,0.14 -2.01,0.19 -0.02,-0.09 -0.05,-0.18 -0.08,-0.26 -0.07,-0.2 -0.14,-0.41 -0.2,-0.61 -0.03,-0.08 -0.11,-0.14 -0.2,-0.11 -0.08,0.02 -0.14,0.12 -0.11,0.2 0.07,0.2 0.13,0.41 0.2,0.61 0.02,0.07 0.05,0.13 0.07,0.2 -0.75,0.05 -1.5,0.11 -2.24,0.16 -1.9,0.13 -3.8,0.19 -5.69,0.1 -0.06,-0.12 -0.23,-0.13 -0.31,-0.02 -0.1,-0.01 -0.21,-0.02 -0.31,-0.02 0.01,-0.01 0.01,-0.02 0.02,-0.03 0.01,-0.02 0.02,-0.04 0.02,-0.06 0.01,-0.02 0.01,-0.04 0.01,-0.06 v -0.31 c 0,-0.05 -0.02,-0.1 -0.05,-0.13 -0.03,-0.03 -0.08,-0.06 -0.13,-0.05 -0.05,0 -0.1,0.02 -0.13,0.05 -0.03,0.04 -0.05,0.08 -0.05,0.13 v 0.31 c 0,0.02 0,0.04 0.01,0.06 0,0.02 0.02,0.04 0.02,0.06 0,0 0,0.01 0.01,0.01 -0.23,-0.02 -0.45,-0.03 -0.68,-0.05 -1.72,-0.18 -3.4,-0.48 -5.04,-0.97 0,-0.08 0,-0.15 -0.01,-0.23 -0.01,-0.25 -0.04,-0.49 -0.05,-0.74 -0.04,-0.48 -0.07,-0.97 -0.11,-1.45 -0.02,-0.23 -0.37,-0.23 -0.35,0 0.03,0.48 0.06,0.97 0.09,1.45 0.01,0.24 0.02,0.48 0.04,0.71 0,0.04 0.01,0.09 0.01,0.13 -0.16,-0.05 -0.33,-0.09 -0.49,-0.15 -0.18,-0.06 -0.35,-0.15 -0.52,-0.22 0.03,-0.2 0.05,-0.4 0.06,-0.59 l 0.14,-2.75 c 0.01,-0.21 -0.32,-0.21 -0.33,0 -0.03,0.61 -0.07,1.22 -0.1,1.83 -0.02,0.31 -0.03,0.61 -0.05,0.92 -0.01,0.15 -0.02,0.31 -0.02,0.46 -0.53,-0.23 -1.05,-0.46 -1.57,-0.69 0.05,-0.01 0.1,-0.03 0.12,-0.08 0.07,-0.22 0.07,-0.46 0.09,-0.69 0.02,-0.24 0.03,-0.47 0.04,-0.71 0.02,-0.47 0.05,-0.95 0.07,-1.42 0.01,-0.17 -0.25,-0.17 -0.27,0 -0.04,0.47 -0.08,0.95 -0.12,1.42 -0.02,0.24 -0.04,0.47 -0.06,0.71 -0.01,0.23 -0.04,0.46 0,0.69 0.01,0.05 0.05,0.05 0.08,0.06 -0.11,-0.05 -0.22,-0.1 -0.33,-0.15 -0.28,-0.12 -0.54,-0.26 -0.79,-0.41 0.01,-0.78 0.01,-1.55 0.01,-2.33 0,-0.12 -0.18,-0.12 -0.18,0 0,0.74 0,1.49 0.01,2.23 -0.07,-0.04 -0.13,-0.08 -0.2,-0.12 -0.03,-0.38 -0.14,-0.78 -0.17,-1.11 -0.07,-0.63 -0.12,-1.27 -0.14,-1.9 -0.01,-0.44 0,-0.88 0.01,-1.32 0.28,0.18 0.57,0.34 0.88,0.46 2.08,0.84 4.42,1.3 6.65,1.66 4.72,0.76 9.54,0.76 14.26,0.01 2.16,-0.35 4.53,-0.75 6.52,-1.66 0.14,-0.07 0.28,-0.15 0.42,-0.23 0.01,0.3 0.01,0.61 0.02,0.91 0,0.44 0,0.88 0,1.32 0,0.27 0,0.54 0,0.81 0,0.14 0,0.27 0,0.41 0,0.1 0,0.19 0.02,0.28 0,0.16 0.01,0.31 0.02,0.46 -0.44,0.47 -0.89,0.85 -1.4,1.16 z" + id="path4" /> + <path + class="st1" + d="m 583.22,432.76 c -0.02,-0.12 -0.2,-0.07 -0.19,0.05 0.06,0.43 0.12,0.87 0.19,1.3 0.06,0.43 0.11,0.87 0.22,1.29 0.03,0.11 0.2,0.09 0.2,-0.03 -0.03,-0.44 -0.12,-0.87 -0.19,-1.3 -0.08,-0.43 -0.16,-0.87 -0.23,-1.31 z" + id="path6" /> + <path + class="st1" + d="m 583.77,436.03 c 0.08,0 0.08,-0.12 0,-0.12 -0.08,0 -0.08,0.12 0,0.12 z" + id="path8" /> + <path + class="st1" + d="m 585.2,433.48 c -0.04,-0.5 -0.07,-1 -0.11,-1.5 -0.01,-0.21 -0.34,-0.21 -0.33,0 0.03,0.51 0.07,1.02 0.1,1.53 0.02,0.25 0.03,0.51 0.05,0.76 0.03,0.24 0.03,0.5 0.1,0.74 0.04,0.14 0.22,0.09 0.24,-0.03 0.03,-0.25 0,-0.51 0,-0.76 -0.01,-0.25 -0.03,-0.5 -0.05,-0.74 z" + id="path10" /> + <path + class="st1" + d="m 588.52,437.34 c 0.03,0.13 0.08,0.41 0.27,0.36 0.19,-0.05 0.11,-0.32 0.08,-0.45 -0.04,-0.17 -0.08,-0.34 -0.12,-0.52 -0.08,-0.33 -0.15,-0.67 -0.23,-1 -0.05,-0.22 -0.38,-0.13 -0.33,0.09 0.07,0.33 0.14,0.67 0.22,1 0.04,0.17 0.07,0.34 0.11,0.52 z" + id="path12" /> + <path + class="st1" + d="m 593.76,435.97 c -0.04,-0.4 -0.07,-0.8 -0.11,-1.2 -0.01,-0.13 -0.22,-0.14 -0.21,0 0.03,0.41 0.06,0.81 0.09,1.22 0.02,0.2 0.03,0.41 0.05,0.61 0.02,0.19 0.02,0.4 0.08,0.58 0.03,0.09 0.14,0.06 0.16,-0.02 0.03,-0.2 -0.01,-0.41 -0.02,-0.61 0,-0.19 -0.02,-0.39 -0.04,-0.58 z" + id="path14" /> + <path + class="st1" + d="m 610.61,438.09 c 0.03,0.23 0.04,0.52 0.15,0.73 0.04,0.08 0.16,0.06 0.19,-0.02 0.06,-0.22 -0.01,-0.49 -0.04,-0.71 -0.04,-0.26 -0.07,-0.53 -0.11,-0.79 -0.07,-0.52 -0.15,-1.03 -0.22,-1.55 -0.02,-0.15 -0.29,-0.12 -0.27,0.04 0.07,0.52 0.14,1.04 0.2,1.55 0.03,0.25 0.06,0.5 0.1,0.75 z" + id="path16" /> + <path + class="st1" + d="m 612.1,438.47 c 0.01,0.09 0.02,0.19 0.04,0.28 0.01,0.09 0.01,0.2 0.07,0.27 0.05,0.06 0.16,0.09 0.2,0 0.07,-0.15 0.02,-0.37 0.01,-0.53 -0.01,-0.19 -0.03,-0.39 -0.05,-0.58 -0.04,-0.38 -0.08,-0.76 -0.11,-1.14 -0.02,-0.19 -0.31,-0.19 -0.3,0 0.03,0.38 0.06,0.76 0.09,1.14 0.01,0.18 0.02,0.37 0.05,0.56 z" + id="path18" /> + <path + class="st1" + d="m 613.91,438.74 c 0.01,0.07 0.02,0.14 0.03,0.21 0.01,0.09 0.03,0.16 0.07,0.24 0.03,0.08 0.17,0.1 0.18,0 0.01,-0.08 0.03,-0.15 0.02,-0.24 -0.01,-0.07 -0.01,-0.14 -0.02,-0.21 -0.01,-0.15 -0.03,-0.31 -0.05,-0.46 -0.03,-0.31 -0.07,-0.61 -0.1,-0.92 -0.01,-0.08 -0.06,-0.14 -0.14,-0.14 -0.07,0 -0.15,0.06 -0.14,0.14 0.03,0.31 0.07,0.61 0.1,0.92 0.01,0.15 0.03,0.31 0.05,0.46 z" + id="path20" /> + <path + class="st1" + d="m 615.42,439.13 c 0.01,0.09 0.02,0.19 0.04,0.28 0.02,0.09 0.03,0.17 0.1,0.23 0.04,0.04 0.12,0.05 0.15,0 0.11,-0.13 0.07,-0.35 0.06,-0.51 -0.01,-0.17 -0.03,-0.34 -0.04,-0.51 -0.03,-0.35 -0.06,-0.7 -0.09,-1.06 -0.02,-0.22 -0.37,-0.22 -0.35,0 0.03,0.35 0.06,0.7 0.09,1.06 0.01,0.17 0.02,0.34 0.04,0.51 z" + id="path22" /> + <path + class="st1" + d="m 617.88,445.21 c 0.08,0 0.08,-0.12 0,-0.12 -0.08,0 -0.08,0.12 0,0.12 z" + id="path24" /> + <path + class="st1" + d="m 619.88,443.23 c 0.1,0 0.1,-0.16 0,-0.16 -0.1,0 -0.1,0.16 0,0.16 z" + id="path26" /> + <path + class="st1" + d="m 624.07,446.21 c 0.08,0 0.08,-0.13 0,-0.13 -0.09,0 -0.09,0.13 0,0.13 z" + id="path28" /> + <path + class="st1" + d="m 626.66,441.64 c 0.1,0 0.1,-0.16 0,-0.16 -0.1,-0.01 -0.1,0.16 0,0.16 z" + id="path30" /> + <path + class="st1" + d="m 576.99,448.22 c -0.15,0 -0.15,0.24 0,0.24 0.15,0 0.15,-0.24 0,-0.24 z" + id="path32" /> + <path + class="st1" + d="m 579.55,450.45 c 0.33,0.1 0.66,0.2 1,0.3 0.16,0.05 0.33,0.1 0.49,0.15 0.17,0.05 0.34,0.08 0.52,0.1 0.08,0.01 0.15,-0.1 0.06,-0.14 -0.16,-0.07 -0.32,-0.15 -0.49,-0.2 -0.16,-0.05 -0.33,-0.1 -0.49,-0.14 -0.34,-0.1 -0.68,-0.2 -1.02,-0.3 -0.15,-0.05 -0.21,0.18 -0.07,0.23 z" + id="path34" /> + <path + class="st1" + d="m 605.72,448.91 1.22,0.01 c 0.2,0 0.41,0 0.61,-0.01 0.2,-0.01 0.41,0 0.6,-0.05 0.12,-0.03 0.12,-0.21 0,-0.24 -0.19,-0.05 -0.4,-0.04 -0.6,-0.05 -0.2,-0.01 -0.41,-0.01 -0.61,-0.01 l -1.22,0.01 c -0.22,0 -0.22,0.33 0,0.34 z" + id="path36" /> + <path + class="st1" + d="m 606.67,450.18 c -0.2,0.04 -0.11,0.34 0.08,0.31 0.37,-0.06 0.75,-0.13 1.12,-0.19 0.19,-0.03 0.37,-0.07 0.56,-0.11 0.18,-0.04 0.36,-0.07 0.54,-0.14 0.13,-0.05 0.05,-0.23 -0.06,-0.24 -0.19,-0.01 -0.37,0.04 -0.56,0.06 -0.19,0.03 -0.37,0.06 -0.56,0.1 -0.38,0.07 -0.75,0.14 -1.12,0.21 z" + id="path38" /> + <path + class="st1" + d="m 568.19,441.15 c 0,-0.09 -0.08,-0.19 -0.18,-0.18 -0.58,0.05 -1.14,0.24 -1.63,0.54 -0.24,0.15 -0.47,0.34 -0.67,0.54 -0.1,0.11 -0.21,0.22 -0.29,0.34 -0.08,0.11 -0.19,0.27 -0.15,0.4 0.02,0.06 0.08,0.12 0.15,0.11 0.14,-0.02 0.21,-0.13 0.3,-0.23 0.09,-0.1 0.16,-0.2 0.26,-0.3 0.18,-0.19 0.38,-0.35 0.59,-0.5 0.43,-0.29 0.92,-0.49 1.44,-0.55 0.1,0 0.18,-0.06 0.18,-0.17 z" + id="path40" /> + <path + class="st1" + d="m 555.8,445.2 c 0.05,-0.04 0.13,-0.08 0.16,-0.14 0.03,-0.07 0.01,-0.13 -0.06,-0.16 -0.03,-0.01 -0.06,-0.01 -0.09,-0.01 -0.02,0 -0.03,0 -0.05,0 -0.01,0 -0.03,0 -0.01,0 -0.05,0 -0.09,-0.01 -0.14,0.01 -0.03,0.01 -0.06,0.01 -0.09,0.02 0.02,0 -0.02,0 -0.02,0 -0.01,0 -0.03,0 -0.04,0 -0.03,0 -0.06,0 -0.09,0 -0.07,0 -0.11,0 -0.16,-0.01 -0.23,-0.04 -0.43,-0.14 -0.59,-0.31 -0.16,-0.17 -0.41,0.09 -0.25,0.25 0.2,0.21 0.47,0.36 0.76,0.41 0.14,0.03 0.29,0.03 0.43,0.02 0.07,-0.02 0.17,-0.02 0.24,-0.08 z" + id="path42" /> + <path + class="st1" + d="m 558.64,442.04 c -0.06,0 -0.12,0.05 -0.12,0.12 0,0.06 0.05,0.12 0.12,0.12 0.13,0 0.27,0 0.4,0 0.06,0 0.13,0 0.19,0 0.07,0 0.14,-0.01 0.21,-0.02 0.13,-0.01 0.13,-0.18 0,-0.2 -0.07,-0.01 -0.13,-0.02 -0.2,-0.02 -0.07,0 -0.13,0 -0.2,0 -0.14,0 -0.27,0 -0.4,0 z" + id="path44" /> + <path + class="st1" + d="m 637.03,443.53 c 0.4,0 0.8,0 1.2,0 0.4,0 0.8,0.01 1.2,-0.03 0.2,-0.02 0.2,-0.3 0,-0.32 -0.4,-0.04 -0.8,-0.03 -1.2,-0.03 -0.4,0 -0.8,0 -1.2,0 -0.23,0.02 -0.23,0.38 0,0.38 z" + id="path46" /> + <path + class="st1" + d="m 638.03,442.12 c 0.23,0.01 0.47,0.01 0.7,0.02 0.11,0 0.23,0.01 0.34,0.01 0.13,0 0.25,0.01 0.38,-0.01 0.18,-0.03 0.18,-0.34 0,-0.37 -0.13,-0.02 -0.25,-0.01 -0.38,-0.01 -0.11,0 -0.23,0.01 -0.34,0.01 -0.23,0.01 -0.47,0.01 -0.7,0.02 -0.21,0.01 -0.21,0.32 0,0.33 z" + id="path48" /> + <path + class="st1" + d="m 639.43,438 c -0.21,0 -0.21,0.32 0,0.32 0.21,0.01 0.21,-0.32 0,-0.32 z" + id="path50" /> + <path + class="st1" + d="m 643.17,444.9 c 0.17,-0.13 0.33,-0.26 0.5,-0.4 0.17,-0.13 0.31,-0.29 0.46,-0.44 0.09,-0.1 -0.02,-0.26 -0.15,-0.19 -0.19,0.11 -0.38,0.23 -0.56,0.37 -0.17,0.13 -0.34,0.27 -0.51,0.4 -0.07,0.06 -0.07,0.19 0,0.26 0.08,0.07 0.18,0.06 0.26,0 z" + id="path52" /> + <path + class="st1" + d="m 643.42,442.8 c 0.06,0 0.13,-0.02 0.17,-0.07 0.09,-0.1 0.19,-0.21 0.28,-0.31 0.1,-0.11 0.18,-0.22 0.27,-0.33 0.03,-0.04 0.05,-0.08 0.05,-0.13 0,-0.05 -0.02,-0.1 -0.05,-0.13 -0.04,-0.03 -0.08,-0.06 -0.13,-0.05 -0.05,0 -0.09,0.02 -0.13,0.05 -0.11,0.09 -0.22,0.17 -0.33,0.27 -0.1,0.09 -0.21,0.19 -0.31,0.28 -0.1,0.09 -0.09,0.26 0,0.35 0.05,0.04 0.11,0.07 0.18,0.07 z" + id="path54" /> + <path + class="st1" + d="m 643.13,437.61 c 0,0 0,-0.01 0.01,-0.01 0,0.01 -0.01,0.01 -0.01,0.01 0,0.01 0,0 0,0 z" + id="path56" /> + <path + class="st1" + d="m 612.35,429.76 c 0.72,-0.15 1.43,-0.38 2.14,-0.58 0.69,-0.2 1.41,-0.37 2.04,-0.71 0.08,-0.04 0.05,-0.18 -0.05,-0.17 -0.72,0.04 -1.42,0.27 -2.11,0.47 -0.71,0.2 -1.43,0.38 -2.13,0.64 -0.21,0.08 -0.13,0.4 0.11,0.35 z" + id="path58" /> + <path + class="st1" + d="m 616.41,429.06 c -0.44,0.19 -0.85,0.41 -1.31,0.55 -0.46,0.14 -0.93,0.21 -1.4,0.22 -0.2,0.01 -0.2,0.31 0,0.31 0.5,0 1.01,-0.07 1.49,-0.21 0.48,-0.13 0.98,-0.31 1.37,-0.62 0.16,-0.11 0.03,-0.33 -0.15,-0.25 z" + id="path60" /> + <path + class="st1" + d="m 615.57,429.88 c -0.64,0.25 -1.28,0.49 -1.92,0.74 -0.2,0.08 -0.12,0.4 0.09,0.33 0.66,-0.23 1.32,-0.47 1.97,-0.7 0.33,-0.12 0.66,-0.23 0.99,-0.35 0.16,-0.06 0.33,-0.12 0.49,-0.18 0.15,-0.06 0.3,-0.1 0.42,-0.21 0.11,-0.11 0.02,-0.28 -0.12,-0.29 -0.17,-0.01 -0.32,0.07 -0.48,0.12 -0.16,0.06 -0.33,0.12 -0.49,0.18 -0.32,0.12 -0.63,0.24 -0.95,0.36 z" + id="path62" /> + <path + class="st1" + d="m 616.46,430.76 c -0.54,0.14 -1.08,0.29 -1.62,0.43 -0.21,0.06 -0.12,0.38 0.09,0.32 0.54,-0.14 1.08,-0.27 1.63,-0.41 l 0.8,-0.2 c 0.26,-0.06 0.54,-0.14 0.77,-0.28 0.09,-0.06 0.05,-0.19 -0.05,-0.19 -0.26,-0.02 -0.54,0.05 -0.78,0.12 -0.29,0.07 -0.56,0.14 -0.84,0.21 z" + id="path64" /> + <path + class="st1" + d="m 617.98,431.8 c 0.05,-0.08 0,-0.18 -0.08,-0.2 -0.21,-0.06 -0.47,0.1 -0.66,0.18 -0.22,0.09 -0.45,0.18 -0.67,0.27 -0.45,0.18 -0.89,0.36 -1.34,0.54 -0.09,0.04 -0.15,0.12 -0.12,0.21 0.02,0.08 0.13,0.15 0.21,0.12 0.46,-0.18 0.91,-0.35 1.37,-0.53 l 0.67,-0.26 c 0.19,-0.08 0.51,-0.15 0.62,-0.33 z" + id="path66" /> + <path + class="st1" + d="m 618,432.63 c -0.27,0.2 -0.53,0.39 -0.8,0.59 -0.04,0.03 -0.07,0.06 -0.08,0.1 -0.01,0.04 -0.01,0.1 0.02,0.13 0.05,0.07 0.16,0.12 0.24,0.06 0.26,-0.2 0.53,-0.4 0.79,-0.6 0.04,-0.03 0.06,-0.05 0.08,-0.1 0.01,-0.04 0.01,-0.09 -0.02,-0.13 -0.05,-0.06 -0.16,-0.1 -0.23,-0.05 z" + id="path68" /> + <path + class="st1" + d="m 587.05,439.99 c -0.07,-0.03 -0.13,-0.06 -0.2,-0.09 -0.14,-0.06 -0.27,-0.11 -0.41,-0.16 -0.28,-0.1 -0.55,-0.2 -0.83,-0.31 -0.07,-0.03 -0.15,0.03 -0.17,0.1 -0.02,0.08 0.03,0.14 0.1,0.17 0.27,0.1 0.54,0.21 0.81,0.31 0.13,0.05 0.27,0.1 0.4,0.14 0.07,0.02 0.14,0.04 0.21,0.06 0.07,0.02 0.14,0.04 0.21,0.04 0.07,-0.01 0.11,-0.09 0.06,-0.14 -0.06,-0.06 -0.12,-0.09 -0.18,-0.12 z" + id="path70" /> + <path + class="st1" + d="m 588.76,440.43 c -0.17,0 -0.17,0.26 0,0.26 0.17,0 0.17,-0.26 0,-0.26 z" + id="path72" /> + <path + class="st1" + d="m 582.52,440.2 c -0.1,-0.03 -0.2,-0.04 -0.3,-0.05 -0.2,-0.03 -0.41,-0.06 -0.61,-0.09 -0.05,-0.01 -0.11,0.01 -0.13,0.07 -0.01,0.05 0.02,0.11 0.07,0.13 0.21,0.04 0.41,0.08 0.62,0.12 0.1,0.02 0.21,0.04 0.31,0.05 0.1,0.01 0.21,0.02 0.31,0.01 0.06,-0.01 0.07,-0.11 0.02,-0.14 -0.09,-0.05 -0.19,-0.07 -0.29,-0.1 z" + id="path74" /> + <path + class="st1" + d="m 597.06,441.25 c 0.19,0.02 0.37,0.05 0.56,0.06 0.17,0.01 0.37,0.02 0.54,-0.02 0.11,-0.02 0.09,-0.17 0,-0.2 -0.16,-0.07 -0.37,-0.09 -0.54,-0.11 -0.19,-0.02 -0.37,-0.03 -0.56,-0.04 -0.37,-0.02 -0.75,-0.04 -1.12,-0.06 -0.15,-0.01 -0.14,0.21 0,0.23 0.37,0.04 0.74,0.09 1.12,0.14 z" + id="path76" /> + <path + class="st1" + d="m 599.93,441.51 c 0.24,0 0.47,0 0.71,0 0.12,0 0.24,0 0.36,-0.01 0.12,-0.01 0.24,0 0.36,-0.04 0.11,-0.04 0.11,-0.18 0,-0.22 -0.11,-0.04 -0.24,-0.03 -0.36,-0.04 -0.12,-0.01 -0.24,-0.01 -0.36,-0.01 -0.24,0 -0.47,0 -0.71,0 -0.2,0.01 -0.2,0.32 0,0.32 z" + id="path78" /> + <path + class="st1" + d="m 602.32,441.48 c 0.45,0.04 0.92,0.09 1.38,0.06 0.44,-0.03 0.89,-0.09 1.33,-0.12 0.44,-0.03 0.88,-0.03 1.32,-0.08 0.4,-0.05 0.87,-0.08 1.22,-0.27 0.11,-0.06 0.06,-0.24 -0.06,-0.24 -0.39,0 -0.81,0.15 -1.2,0.23 -0.46,0.1 -0.91,0.21 -1.38,0.25 -0.43,0.04 -0.85,0 -1.28,-0.02 -0.44,-0.02 -0.89,-0.03 -1.33,-0.06 -0.16,-0.02 -0.16,0.24 0,0.25 z" + id="path80" /> + <path + class="st1" + d="m 600.73,443.09 c 0.37,0 0.75,0.01 1.12,0.01 0.19,0 0.37,0 0.56,0.01 0.17,0 0.38,0.01 0.55,-0.05 0.11,-0.04 0.11,-0.18 0,-0.23 -0.16,-0.06 -0.37,-0.05 -0.55,-0.05 -0.19,0 -0.37,0 -0.56,0.01 -0.37,0 -0.75,0.01 -1.12,0.01 -0.19,0.01 -0.19,0.29 0,0.29 z" + id="path82" /> + <path + class="st1" + d="m 576.23,456.97 c 0.12,0.05 0.25,0.1 0.37,0.15 0.12,0.04 0.25,0.11 0.39,0.11 0.11,0 0.16,-0.13 0.09,-0.21 -0.09,-0.09 -0.22,-0.14 -0.33,-0.2 -0.12,-0.06 -0.25,-0.12 -0.38,-0.17 -0.24,-0.1 -0.48,-0.2 -0.73,-0.3 -0.07,-0.03 -0.17,0.03 -0.19,0.09 -0.03,0.07 -0.01,0.17 0.07,0.2 0.23,0.12 0.47,0.23 0.71,0.33 z" + id="path84" /> + <path + class="st1" + d="m 573.6,457 c -0.14,0 -0.14,0.22 0,0.22 0.14,0.01 0.14,-0.22 0,-0.22 z" + id="path86" /> + <path + class="st1" + d="m 568.18,456.72 c 0.07,0.02 0.13,0.04 0.2,0.05 0.07,0.01 0.14,0.02 0.2,0.03 0.11,0.02 0.15,-0.13 0.05,-0.17 -0.07,-0.02 -0.13,-0.05 -0.2,-0.07 -0.07,-0.02 -0.13,-0.03 -0.2,-0.05 -0.13,-0.03 -0.27,-0.07 -0.4,-0.1 -0.13,-0.03 -0.18,0.16 -0.05,0.2 z" + id="path88" /> + <path + class="st1" + d="m 561.4,455.83 1.69,0.62 c 0.56,0.2 1.12,0.45 1.7,0.59 0.12,0.03 0.22,-0.16 0.09,-0.22 -0.54,-0.26 -1.13,-0.41 -1.69,-0.61 -0.58,-0.2 -1.15,-0.39 -1.73,-0.59 -0.14,-0.04 -0.19,0.16 -0.06,0.21 z" + id="path90" /> + <path + class="st1" + d="m 557.61,457.02 c 0.3,0.1 0.6,0.2 0.9,0.3 0.3,0.1 0.6,0.21 0.9,0.28 0.1,0.02 0.17,-0.13 0.07,-0.17 -0.29,-0.13 -0.6,-0.22 -0.9,-0.32 -0.3,-0.1 -0.61,-0.2 -0.91,-0.31 -0.14,-0.04 -0.2,0.18 -0.06,0.22 z" + id="path92" /> + <path + class="st1" + d="m 632.24,448.04 c 0.02,0.18 0.01,0.39 0.1,0.56 0.05,0.1 0.2,0.07 0.23,-0.03 0.05,-0.17 0.01,-0.38 -0.01,-0.55 -0.01,-0.19 -0.03,-0.37 -0.06,-0.56 -0.04,-0.37 -0.08,-0.75 -0.12,-1.12 -0.02,-0.17 -0.29,-0.18 -0.27,0 0.03,0.38 0.05,0.76 0.08,1.14 0.01,0.19 0.03,0.38 0.05,0.56 z" + id="path94" /> + <path + class="st1" + d="m 630.41,452.86 c 0.36,-0.35 0.64,-0.77 0.92,-1.18 0.28,-0.42 0.57,-0.84 0.85,-1.25 0.08,-0.11 -0.1,-0.21 -0.18,-0.1 -0.3,0.4 -0.6,0.8 -0.91,1.2 -0.3,0.4 -0.61,0.79 -0.83,1.24 -0.03,0.07 0.08,0.16 0.15,0.09 z" + id="path96" /> + <path + class="st1" + d="m 629.25,453.96 c 0.31,0 0.31,-0.48 0,-0.48 -0.3,0 -0.3,0.48 0,0.48 z" + id="path98" /> + <path + class="st1" + d="m 630.36,453.75 c -0.09,0.07 -0.04,0.22 0.08,0.19 0.71,-0.16 1.36,-0.7 1.85,-1.21 0.51,-0.53 0.92,-1.15 1.2,-1.83 0.64,-1.57 0.51,-3.35 -0.29,-4.84 -0.07,-0.12 -0.25,-0.01 -0.19,0.11 0.7,1.41 0.78,3.14 0.18,4.6 -0.26,0.64 -0.66,1.23 -1.13,1.72 -0.51,0.52 -1.12,0.84 -1.7,1.26 z" + id="path100" /> + <path + class="st1" + d="m 630.45,455.35 c 0.04,0 0.04,-0.06 0,-0.06 -0.04,0 -0.04,0.06 0,0.06 z" + id="path102" /> + <path + class="st1" + d="m 640.88,453.63 c 0.03,-0.01 0.05,-0.05 0.05,-0.07 0.01,-0.03 0,-0.07 -0.01,-0.09 -0.04,-0.06 -0.1,-0.07 -0.16,-0.04 l -0.39,0.22 c -0.05,0.03 -0.06,0.09 -0.04,0.14 0.03,0.05 0.09,0.06 0.14,0.04 0.14,-0.08 0.28,-0.14 0.41,-0.2 z" + id="path104" /> + <path + class="st1" + d="m 602.02,458.62 c 0.23,0 0.47,0.01 0.7,-0.02 0.11,-0.01 0.11,-0.16 0,-0.17 -0.23,-0.03 -0.47,-0.02 -0.7,-0.02 -0.23,0 -0.47,0 -0.7,0 -0.14,0 -0.14,0.22 0,0.22 0.24,-0.01 0.47,-0.01 0.7,-0.01 z" + id="path106" /> + <path + class="st1" + d="m 606.31,458.83 c 0.27,0 0.54,0 0.81,0 0.26,0 0.54,0 0.8,-0.05 0.07,-0.01 0.07,-0.13 0,-0.15 -0.26,-0.04 -0.54,-0.05 -0.8,-0.05 -0.27,0 -0.54,0 -0.81,0 -0.15,0.01 -0.15,0.25 0,0.25 z" + id="path108" /> + <path + class="st1" + d="m 609.91,458.67 c 0.85,-0.03 1.7,-0.04 2.54,-0.15 0.43,-0.05 0.84,-0.13 1.27,-0.17 0.39,-0.03 0.82,-0.02 1.19,-0.13 0.06,-0.02 0.07,-0.13 0,-0.14 -0.39,-0.05 -0.8,0.03 -1.19,0.05 -0.43,0.03 -0.85,0.02 -1.27,0.03 -0.85,0.02 -1.7,0.15 -2.54,0.25 -0.16,0.03 -0.17,0.27 0,0.26 z" + id="path110" /> + <path + class="st1" + d="m 616.92,457.74 c 0.2,-0.03 0.41,-0.07 0.61,-0.1 0.18,-0.03 0.41,-0.04 0.58,-0.12 0.07,-0.03 0.03,-0.12 -0.03,-0.13 -0.1,-0.01 -0.2,0.02 -0.3,0.04 -0.09,0.02 -0.19,0.03 -0.28,0.05 -0.2,0.04 -0.41,0.07 -0.61,0.11 -0.41,0.07 -0.81,0.14 -1.22,0.22 -0.09,0.02 -0.05,0.15 0.04,0.14 z" + id="path112" /> + <path + class="st1" + d="m 605.91,459.66 c 0.54,0 1.08,0 1.63,0 0.53,0 1.07,0.05 1.59,-0.07 0.09,-0.02 0.09,-0.16 0,-0.18 -0.52,-0.11 -1.06,-0.07 -1.59,-0.07 -0.54,0 -1.08,0 -1.63,0 -0.2,0.01 -0.2,0.32 0,0.32 z" + id="path114" /> + <path + class="st1" + d="m 613.73,459.01 c -0.25,0.03 -0.5,0.07 -0.76,0.1 l -1.52,0.22 c -0.19,0.03 -0.15,0.36 0.05,0.34 0.51,-0.06 1.02,-0.12 1.53,-0.18 0.25,-0.03 0.51,-0.06 0.76,-0.1 0.25,-0.04 0.52,-0.06 0.75,-0.15 0.16,-0.06 0.13,-0.27 -0.04,-0.29 -0.26,-0.02 -0.52,0.03 -0.77,0.06 z" + id="path116" /> + <path + class="st1" + d="m 617.61,458.63 c -0.18,0.02 -0.36,0.06 -0.54,0.1 -0.34,0.07 -0.69,0.15 -1.03,0.22 -0.21,0.04 -0.12,0.36 0.09,0.32 0.34,-0.06 0.68,-0.13 1.02,-0.19 0.17,-0.03 0.34,-0.06 0.51,-0.11 0.15,-0.04 0.35,-0.07 0.48,-0.16 0.08,-0.05 0.08,-0.19 -0.03,-0.21 -0.16,-0.03 -0.33,0.01 -0.5,0.03 z" + id="path118" /> + <path + class="st1" + d="m 621.63,458 c -0.27,0.14 -0.54,0.28 -0.81,0.41 -0.13,0.07 -0.02,0.26 0.11,0.2 0.27,-0.13 0.54,-0.26 0.8,-0.39 0.26,-0.13 0.55,-0.24 0.79,-0.41 0.1,-0.07 0.04,-0.24 -0.08,-0.2 -0.28,0.09 -0.55,0.25 -0.81,0.39 z" + id="path120" /> + <path + class="st1" + d="m 618.88,456.73 c 1.08,-0.04 2.16,-0.16 3.2,-0.43 0.53,-0.14 1.04,-0.37 1.57,-0.52 0.5,-0.14 1.03,-0.27 1.48,-0.55 0.14,-0.09 0.05,-0.31 -0.11,-0.27 -0.49,0.14 -0.95,0.4 -1.42,0.59 -0.51,0.21 -1.01,0.27 -1.55,0.39 -1.04,0.23 -2.1,0.39 -3.16,0.46 -0.22,0.01 -0.22,0.34 -0.01,0.33 z" + id="path122" /> + <path + class="st1" + d="m 624.68,457.77 c 0.27,-0.05 0.54,-0.11 0.8,-0.18 0.12,-0.03 0.07,-0.22 -0.05,-0.19 -0.27,0.07 -0.53,0.14 -0.79,0.22 -0.09,0.03 -0.05,0.17 0.04,0.15 z" + id="path124" /> + <path + class="st1" + d="m 590.16,459.04 c 0.16,0 0.16,-0.26 0,-0.26 -0.17,0 -0.17,0.26 0,0.26 z" + id="path126" /> + <path + class="st1" + d="m 586.36,460.46 c -0.06,0 -0.06,0.09 0,0.09 0.06,0 0.07,-0.09 0,-0.09 z" + id="path128" /> + <path + class="st1" + d="m 582.94,459.24 c 0.4,0.07 0.81,0.15 1.21,0.22 0.2,0.04 0.4,0.08 0.61,0.1 0.2,0.02 0.41,0.06 0.61,0.04 0.09,-0.01 0.15,-0.14 0.05,-0.19 -0.18,-0.08 -0.38,-0.11 -0.57,-0.16 -0.2,-0.05 -0.41,-0.07 -0.61,-0.1 -0.41,-0.06 -0.82,-0.12 -1.23,-0.18 -0.17,-0.02 -0.25,0.24 -0.07,0.27 z" + id="path130" /> + <path + class="st1" + d="m 587.72,459.67 c 0.61,0.08 1.22,0.17 1.83,0.24 0.3,0.04 0.61,0.08 0.91,0.11 0.29,0.03 0.62,0.09 0.91,0.04 0.09,-0.02 0.11,-0.16 0.03,-0.2 -0.25,-0.11 -0.56,-0.13 -0.83,-0.17 -0.32,-0.04 -0.63,-0.08 -0.95,-0.11 -0.62,-0.07 -1.24,-0.13 -1.86,-0.2 -0.16,-0.01 -0.2,0.27 -0.04,0.29 z" + id="path132" /> + <path + class="st1" + d="m 586.72,461.01 c 0.78,0.04 1.56,0.09 2.34,0.13 0.76,0.04 1.55,0.16 2.31,0.05 0.11,-0.01 0.09,-0.18 0,-0.2 -0.74,-0.19 -1.55,-0.15 -2.31,-0.19 -0.78,-0.04 -1.56,-0.08 -2.34,-0.12 -1.58,-0.08 -3.16,-0.13 -4.75,-0.19 -0.13,-0.01 -0.13,0.19 0,0.2 1.58,0.12 3.16,0.23 4.75,0.32 z" + id="path134" /> + <path + class="st1" + d="m 594.34,460.88 c 0.33,-0.02 0.67,-0.03 1,-0.07 0.13,-0.02 0.13,-0.19 0,-0.21 -0.33,-0.04 -0.67,-0.05 -1,-0.07 -0.09,-0.01 -0.18,0.08 -0.17,0.17 0.01,0.09 0.08,0.18 0.17,0.18 z" + id="path136" /> + <path + class="st1" + d="m 559.52,462.9 c 0.07,-0.59 0.04,-1.2 0.04,-1.8 0,-0.15 -0.24,-0.15 -0.24,0 0,0.6 -0.03,1.2 0.04,1.8 0.01,0.1 0.14,0.1 0.16,0 z" + id="path138" /> + <path + class="st1" + d="m 560.63,462.98 c 0.05,0 0.08,-0.03 0.08,-0.08 l 0.03,-0.4 c 0,-0.06 -0.06,-0.12 -0.11,-0.11 -0.06,0 -0.12,0.05 -0.11,0.11 l 0.03,0.4 c 0.01,0.04 0.04,0.08 0.08,0.08 z" + id="path140" /> + <path + class="st1" + d="m 565.46,464.3 c 0,0.08 0.02,0.15 0.03,0.23 0.02,0.12 0.23,0.12 0.25,0 0.01,-0.08 0.03,-0.15 0.03,-0.23 v -0.2 c 0,-0.14 0,-0.27 0,-0.41 0,-0.08 -0.07,-0.16 -0.16,-0.16 -0.09,0 -0.16,0.07 -0.16,0.16 0,0.14 0,0.27 0,0.41 z" + id="path142" /> + <path + class="st1" + d="m 568.81,465.03 c 0.17,0 0.17,-0.26 0,-0.26 -0.17,-0.01 -0.17,0.26 0,0.26 z" + id="path144" /> + <path + class="st1" + d="m 571.43,464.91 c 0,0.04 0,0.09 0.02,0.13 0.01,0.04 0.03,0.08 0.05,0.11 0.05,0.08 0.17,0.08 0.21,0 0.04,-0.08 0.07,-0.15 0.07,-0.23 0,-0.07 0,-0.14 0,-0.21 0,-0.14 0,-0.28 0.01,-0.41 0,-0.1 -0.09,-0.19 -0.18,-0.18 -0.1,0 -0.19,0.08 -0.18,0.18 l 0.01,0.41 z" + id="path146" /> + <path + class="st1" + d="m 646.31,454.75 c -0.09,-0.05 -0.22,-0.02 -0.26,0.07 -0.23,0.45 -0.28,0.97 -0.16,1.45 0.03,0.12 0.09,0.26 0.18,0.35 0.07,0.06 0.17,0.07 0.25,0.02 0.08,-0.06 0.09,-0.15 0.06,-0.24 -0.06,-0.22 -0.14,-0.43 -0.15,-0.66 -0.01,-0.25 0.04,-0.5 0.15,-0.73 0.04,-0.09 0.02,-0.2 -0.07,-0.26 z" + id="path148" /> + <path + class="st1" + d="m 548.31,477.86 v 1.07 c 0,0.05 0,0.11 0,0.16 0,0.07 0.02,0.13 0.03,0.2 0.02,0.12 0.23,0.12 0.25,0 0.01,-0.07 0.03,-0.13 0.03,-0.2 0,-0.05 0,-0.11 0,-0.16 v -1.07 c 0,-0.2 -0.31,-0.2 -0.31,0 z" + id="path150" /> + <path + class="st1" + d="m 555.05,480.8 c 0.18,0 0.18,-0.28 0,-0.28 -0.19,-0.01 -0.19,0.28 0,0.28 z" + id="path152" /> + <path + class="st1" + d="m 634.06,476.88 c -0.03,-0.27 -0.07,-0.54 -0.1,-0.81 -0.01,-0.08 -0.07,-0.16 -0.16,-0.16 -0.08,0 -0.17,0.07 -0.16,0.16 0.03,0.28 0.07,0.55 0.1,0.83 0.02,0.14 0.03,0.27 0.05,0.41 0.02,0.15 0.02,0.29 0.09,0.43 0.05,0.1 0.21,0.08 0.24,-0.03 0.03,-0.14 0,-0.27 -0.01,-0.41 -0.01,-0.14 -0.03,-0.28 -0.05,-0.42 z" + id="path154" /> + <path + class="st1" + d="m 636.86,477.2 c -0.03,-0.09 -0.06,-0.17 -0.1,-0.26 -0.07,-0.17 -0.13,-0.34 -0.2,-0.51 -0.04,-0.1 -0.13,-0.16 -0.24,-0.12 -0.11,0.05 -0.13,0.16 -0.09,0.25 0.07,0.17 0.14,0.33 0.22,0.5 0.04,0.08 0.07,0.17 0.11,0.25 0.02,0.04 0.03,0.08 0.06,0.12 0.02,0.04 0.07,0.07 0.1,0.11 0.07,0.07 0.18,0.02 0.19,-0.08 0,-0.05 0.01,-0.1 0,-0.15 -0.02,-0.03 -0.04,-0.07 -0.05,-0.11 z" + id="path156" /> + <path + class="st1" + d="m 562.85,471.25 c -0.01,0 0,0 0,0 -0.01,0.01 -0.02,0.01 -0.03,0.02 -0.01,0 -0.04,0.02 -0.04,0.02 -0.06,0.02 -0.11,0.08 -0.1,0.15 0.01,0.06 0.06,0.12 0.13,0.12 0.04,0 0.09,-0.01 0.13,-0.02 0.01,0 0.02,0 0.03,-0.01 0.03,0 0.06,0 0.09,-0.01 0.09,-0.02 0.17,-0.09 0.23,-0.16 0.12,-0.12 0.2,-0.28 0.24,-0.44 0.09,-0.34 0.04,-0.7 -0.19,-0.98 -0.11,-0.14 -0.28,-0.23 -0.46,-0.27 -0.16,-0.03 -0.22,0.19 -0.07,0.25 0.15,0.05 0.22,0.15 0.29,0.28 0,0 0,0 0,0 0,0.01 0.01,0.02 0.01,0.02 0.01,0.02 0.01,0.04 0.02,0.06 0.01,0.04 0.02,0.08 0.03,0.12 0,0.01 0.01,0.04 0.01,0.04 0,0.01 0,0.03 0,0.04 0,0.04 0,0.08 0,0.12 0,0.03 0,0.07 -0.01,0.1 0,0.01 0,0.03 -0.01,0.04 0,0.02 -0.01,0.04 -0.01,0.06 -0.01,0.04 -0.02,0.07 -0.03,0.1 0,0.01 -0.01,0.03 -0.02,0.03 -0.01,0.02 -0.02,0.04 -0.03,0.05 -0.01,0.02 -0.02,0.03 -0.03,0.05 -0.01,0.01 -0.01,0.01 -0.02,0.02 -0.03,0.03 -0.06,0.05 -0.09,0.08 -0.02,0.01 -0.02,0.01 0,0 -0.02,0.01 -0.03,0.02 -0.05,0.04 0,0.04 -0.01,0.06 -0.02,0.08 z" + id="path158" /> + <path + class="st1" + d="m 564.26,470.58 c 0.03,0.37 -0.04,0.73 -0.13,1.08 -0.03,0.12 0.13,0.18 0.19,0.08 0.43,-0.69 0.25,-1.67 -0.21,-2.3 -0.09,-0.12 -0.29,-0.01 -0.2,0.12 0.2,0.3 0.32,0.65 0.35,1.02 z" + id="path160" /> + <path + class="st1" + d="m 564.16,469.08 c 0.47,0.17 0.83,0.55 1.04,0.99 0.1,0.21 0.17,0.45 0.19,0.69 0.02,0.25 -0.02,0.49 -0.05,0.74 -0.02,0.14 0.2,0.19 0.26,0.07 0.25,-0.51 0.12,-1.17 -0.13,-1.66 -0.26,-0.51 -0.7,-0.91 -1.25,-1.09 -0.15,-0.05 -0.22,0.2 -0.06,0.26 z" + id="path162" /> + <path + class="st1" + d="m 566.11,471.45 c -0.05,0.14 0.16,0.22 0.23,0.1 0.47,-0.85 -0.06,-1.98 -0.91,-2.33 -0.12,-0.05 -0.21,0.16 -0.09,0.21 0.76,0.35 1.04,1.26 0.77,2.02 z" + id="path164" /> + <path + class="st1" + d="m 566.98,470.4 c 0.05,0.18 0.07,0.37 0.08,0.56 0,0.1 0,0.19 0,0.29 -0.01,0.11 -0.03,0.21 0.03,0.31 0.05,0.08 0.17,0.1 0.24,0.03 0.14,-0.14 0.1,-0.44 0.09,-0.63 -0.01,-0.22 -0.05,-0.44 -0.11,-0.65 -0.11,-0.42 -0.31,-0.8 -0.59,-1.14 -0.11,-0.14 -0.36,0.05 -0.25,0.19 0.24,0.31 0.42,0.66 0.51,1.04 z" + id="path166" /> + <path + class="st1" + d="m 567.74,470.49 c 0.04,0.1 0.09,0.18 0.14,0.27 0.09,0.15 0.32,0.05 0.28,-0.12 -0.02,-0.09 -0.04,-0.18 -0.07,-0.27 -0.03,-0.08 -0.06,-0.16 -0.1,-0.24 -0.07,-0.17 -0.13,-0.33 -0.2,-0.5 -0.04,-0.09 -0.12,-0.16 -0.22,-0.13 -0.09,0.03 -0.17,0.13 -0.13,0.22 0.07,0.17 0.14,0.34 0.2,0.51 0.03,0.09 0.07,0.18 0.1,0.26 z" + id="path168" /> + <path + class="st1" + d="m 551.27,470.96 c -0.01,0.12 0.01,0.24 0.04,0.36 0.04,0.15 0.24,0.1 0.25,-0.03 0.01,-0.1 0.03,-0.2 0.05,-0.3 0.01,-0.09 0.03,-0.18 0.06,-0.27 0.06,-0.18 0.15,-0.35 0.26,-0.49 0.24,-0.3 0.58,-0.51 0.96,-0.57 0.16,-0.02 0.13,-0.31 -0.04,-0.29 -0.46,0.06 -0.88,0.29 -1.18,0.65 -0.15,0.18 -0.27,0.38 -0.34,0.61 -0.03,0.1 -0.05,0.21 -0.06,0.33 z" + id="path170" /> + <path + class="st1" + d="m 550.25,471.39 c 0.03,0.23 0.15,0.42 0.32,0.57 0.1,0.09 0.23,-0.04 0.14,-0.14 -0.49,-0.56 -0.17,-1.61 0.59,-1.74 0.11,-0.02 0.08,-0.2 -0.03,-0.19 -0.46,0.06 -0.8,0.4 -0.96,0.83 -0.07,0.22 -0.1,0.45 -0.06,0.67 z" + id="path172" /> + <path + class="st1" + d="m 549.1,472 c 0.06,0.06 0.18,0 0.15,-0.09 -0.04,-0.12 -0.07,-0.25 -0.1,-0.37 -0.03,-0.11 -0.05,-0.22 -0.04,-0.34 0,-0.25 0.07,-0.5 0.18,-0.72 0.23,-0.45 0.65,-0.8 1.17,-0.81 0.15,0 0.15,-0.22 0,-0.23 -0.6,-0.01 -1.13,0.38 -1.42,0.89 -0.14,0.26 -0.23,0.55 -0.24,0.85 0,0.14 0.01,0.3 0.05,0.43 0.06,0.17 0.13,0.28 0.25,0.39 z" + id="path174" /> + <path + class="st1" + d="m 547.77,471.69 c 0.19,0.14 0.49,0.22 0.72,0.15 0.09,-0.03 0.1,-0.16 0,-0.19 -0.09,-0.02 -0.2,-0.03 -0.29,-0.09 -0.05,-0.03 -0.11,-0.07 -0.16,-0.11 -0.04,-0.03 -0.07,-0.05 -0.1,-0.09 -0.15,-0.14 -0.27,-0.32 -0.27,-0.54 -0.01,-0.42 0.38,-0.79 0.79,-0.78 0.22,0 0.22,-0.33 0,-0.34 -0.47,-0.01 -0.9,0.3 -1.07,0.73 -0.19,0.47 0,0.98 0.38,1.26 z" + id="path176" /> + <path + class="st1" + d="m 546.9,471.74 c 0.04,-0.08 0.02,-0.17 0.01,-0.25 -0.01,-0.08 -0.03,-0.16 -0.03,-0.25 -0.02,-0.18 -0.01,-0.35 0.02,-0.53 0.07,-0.35 0.24,-0.67 0.49,-0.91 0.12,-0.11 -0.06,-0.29 -0.18,-0.18 -0.29,0.27 -0.5,0.63 -0.59,1.01 -0.04,0.19 -0.06,0.39 -0.05,0.59 0.01,0.16 0.04,0.47 0.21,0.55 0.03,0.02 0.1,0.02 0.12,-0.03 z" + id="path178" /> + <path + class="st1" + d="m 545.42,472.17 c 0.05,0.03 0.11,0.01 0.14,-0.04 0.04,-0.07 0.02,-0.18 0.01,-0.26 -0.01,-0.09 -0.03,-0.18 -0.03,-0.27 -0.01,-0.18 0.01,-0.36 0.06,-0.53 0.09,-0.35 0.29,-0.66 0.56,-0.9 0.12,-0.11 -0.06,-0.28 -0.18,-0.18 -0.31,0.26 -0.53,0.62 -0.64,1.01 -0.05,0.19 -0.08,0.39 -0.08,0.59 0,0.11 0.01,0.21 0.03,0.31 0.01,0.09 0.04,0.22 0.13,0.27 z" + id="path180" /> + <path + class="st1" + d="m 634.44,467.17 c -0.72,-0.02 -1.41,0.42 -1.69,1.08 -0.14,0.32 -0.16,0.68 -0.1,1.03 0.06,0.32 0.23,0.74 0.52,0.91 0.09,0.06 0.2,-0.05 0.15,-0.15 -0.07,-0.13 -0.17,-0.24 -0.24,-0.37 -0.07,-0.14 -0.12,-0.28 -0.15,-0.43 -0.06,-0.3 -0.04,-0.61 0.07,-0.89 0.23,-0.58 0.83,-0.95 1.44,-0.95 0.15,0.02 0.15,-0.22 0,-0.23 z" + id="path182" /> + <path + class="st1" + d="m 633.18,467.11 c 0.16,0.05 0.23,-0.2 0.07,-0.25 -0.66,-0.23 -1.41,-0.05 -1.92,0.41 -0.53,0.48 -0.7,1.24 -0.51,1.92 0.1,0.35 0.32,0.77 0.66,0.93 0.1,0.05 0.25,-0.06 0.16,-0.16 -0.12,-0.15 -0.26,-0.28 -0.35,-0.45 -0.09,-0.16 -0.16,-0.32 -0.2,-0.5 -0.09,-0.37 -0.05,-0.77 0.13,-1.11 0.36,-0.69 1.22,-1.02 1.96,-0.79 z" + id="path184" /> + <path + class="st1" + d="m 630.05,467.33 c -0.64,0.13 -1.15,0.73 -1.16,1.39 0,0.33 0.12,0.64 0.31,0.9 0.19,0.25 0.49,0.47 0.82,0.47 0.09,0 0.13,-0.13 0.05,-0.17 -0.12,-0.06 -0.23,-0.11 -0.34,-0.19 -0.11,-0.08 -0.21,-0.16 -0.3,-0.26 -0.17,-0.21 -0.28,-0.47 -0.28,-0.75 0,-0.55 0.43,-1.04 0.96,-1.16 0.15,-0.04 0.09,-0.26 -0.06,-0.23 z" + id="path186" /> + <path + class="st1" + d="m 646.01,466.9 c 0.46,0 0.89,0.33 1,0.77 0.05,0.21 0.03,0.44 -0.06,0.63 -0.04,0.1 -0.1,0.2 -0.16,0.29 -0.06,0.1 -0.16,0.17 -0.24,0.25 -0.07,0.07 0,0.19 0.1,0.17 0.14,-0.03 0.25,-0.13 0.35,-0.22 0.11,-0.1 0.18,-0.21 0.24,-0.35 0.12,-0.27 0.15,-0.57 0.08,-0.86 -0.15,-0.58 -0.73,-0.99 -1.32,-0.97 -0.17,0.01 -0.17,0.29 0.01,0.29 z" + id="path188" /> + <path + class="st1" + d="m 647.16,466.68 c 0.58,0.17 0.97,0.7 1.12,1.27 0.07,0.28 0.09,0.58 0.03,0.86 -0.06,0.28 -0.18,0.59 -0.36,0.81 -0.09,0.12 0.05,0.26 0.16,0.16 0.15,-0.12 0.27,-0.23 0.36,-0.4 0.08,-0.15 0.14,-0.31 0.18,-0.47 0.07,-0.35 0.06,-0.72 -0.03,-1.07 -0.18,-0.68 -0.68,-1.28 -1.38,-1.47 -0.19,-0.03 -0.27,0.25 -0.08,0.31 z" + id="path190" /> + <path + class="st1" + d="m 649.82,468.76 c 0,0.18 -0.03,0.36 -0.11,0.52 -0.04,0.07 -0.08,0.15 -0.14,0.21 -0.06,0.07 -0.14,0.13 -0.2,0.2 -0.07,0.07 0,0.2 0.1,0.17 0.2,-0.06 0.36,-0.27 0.45,-0.46 0.09,-0.2 0.13,-0.42 0.12,-0.64 -0.02,-0.43 -0.23,-0.86 -0.63,-1.06 -0.11,-0.06 -0.22,0.11 -0.1,0.17 0.32,0.17 0.5,0.52 0.51,0.89 z" + id="path192" /> + <path + class="st1" + d="m 650.14,467.11 c 0.5,0.14 0.88,0.62 0.88,1.15 0,0.25 -0.1,0.5 -0.25,0.7 -0.17,0.22 -0.36,0.36 -0.61,0.49 -0.09,0.05 -0.05,0.2 0.05,0.19 0.67,-0.06 1.14,-0.74 1.13,-1.38 -0.01,-0.66 -0.5,-1.26 -1.13,-1.42 -0.17,-0.03 -0.24,0.23 -0.07,0.27 z" + id="path194" /> + <path + class="st1" + d="m 651.94,467.27 c 0.34,0.14 0.5,0.53 0.49,0.87 0,0.17 -0.06,0.36 -0.14,0.51 -0.05,0.08 -0.09,0.14 -0.15,0.21 -0.07,0.06 -0.15,0.11 -0.22,0.18 -0.08,0.08 -0.02,0.23 0.09,0.23 0.19,-0.01 0.36,-0.15 0.48,-0.29 0.12,-0.15 0.2,-0.32 0.23,-0.51 0.06,-0.36 0.01,-0.77 -0.21,-1.07 -0.13,-0.18 -0.3,-0.3 -0.5,-0.38 -0.16,-0.07 -0.23,0.19 -0.07,0.25 z" + id="path196" /> + <path + class="st1" + d="m 653.44,468.92 c -0.03,0.05 -0.05,0.11 -0.08,0.16 -0.04,0.08 0.04,0.15 0.11,0.11 0.04,-0.02 0.08,-0.04 0.12,-0.07 0.02,-0.01 0.03,-0.03 0.05,-0.04 -0.05,0.04 0.02,-0.01 0.03,-0.02 0.08,-0.05 0.13,-0.16 0.17,-0.25 0.08,-0.17 0.13,-0.36 0.15,-0.55 0.03,-0.37 -0.06,-0.76 -0.29,-1.05 -0.14,-0.19 -0.41,0.01 -0.26,0.2 0.16,0.21 0.23,0.49 0.23,0.75 0,0.13 -0.03,0.27 -0.07,0.39 -0.04,0.14 -0.13,0.25 -0.16,0.37 z" + id="path198" /> + <path + class="st1" + d="m 600.13,471.32 c 0.31,0 0.31,-0.48 0,-0.48 -0.31,0 -0.31,0.48 0,0.48 z" + id="path200" /> + <path + class="st1" + d="m 600.33,472.59 c 0.58,0.04 1.15,0.08 1.73,0.12 0.29,0.02 0.58,0.04 0.86,0.06 0.27,0.01 0.56,0.05 0.83,0.01 0.11,-0.02 0.09,-0.18 0,-0.21 -0.26,-0.07 -0.56,-0.06 -0.83,-0.08 -0.29,-0.02 -0.58,-0.03 -0.86,-0.05 -0.58,-0.03 -1.15,-0.06 -1.73,-0.09 -0.15,0 -0.15,0.23 0,0.24 z" + id="path202" /> + <path + class="st1" + d="m 612.1,475 c 0.51,0 1.02,0.01 1.53,0.01 0.25,0 0.5,0.01 0.75,0 0.24,0 0.51,0.01 0.75,-0.04 0.1,-0.02 0.1,-0.19 0,-0.21 -0.24,-0.06 -0.5,-0.04 -0.75,-0.04 -0.25,0 -0.5,0 -0.75,0 -0.51,0 -1.02,0.01 -1.53,0.01 -0.17,0.01 -0.17,0.27 0,0.27 z" + id="path204" /> + <path + class="st1" + d="m 584.34,476.29 c -0.59,-0.07 -1.17,-0.13 -1.76,-0.19 -0.09,-0.01 -0.17,0.09 -0.17,0.17 0,0.1 0.08,0.16 0.17,0.17 0.59,0.07 1.17,0.14 1.76,0.2 0.09,0.01 0.17,-0.09 0.17,-0.17 0,-0.11 -0.08,-0.17 -0.17,-0.18 z" + id="path206" /> + <path + class="st1" + d="m 590.9,482.23 c -0.1,-0.01 -0.2,-0.02 -0.31,-0.02 -0.23,-0.02 -0.46,-0.03 -0.69,-0.05 -0.45,-0.03 -0.9,-0.06 -1.35,-0.09 -0.18,-0.01 -0.18,0.27 0,0.28 0.44,0.03 0.88,0.07 1.32,0.1 0.22,0.02 0.44,0.03 0.66,0.05 0.1,0.01 0.2,0.02 0.31,0.02 0.11,0.01 0.24,0.02 0.34,-0.02 0.09,-0.04 0.12,-0.16 0.03,-0.22 -0.09,-0.04 -0.2,-0.04 -0.31,-0.05 z" + id="path208" /> + <path + class="st1" + d="m 579.35,486.23 c -0.58,-0.24 -1.15,-0.47 -1.73,-0.71 -0.15,-0.06 -0.21,0.18 -0.07,0.24 0.57,0.23 1.13,0.47 1.7,0.7 0.56,0.23 1.13,0.48 1.71,0.66 0.09,0.03 0.14,-0.11 0.06,-0.15 -0.54,-0.28 -1.11,-0.51 -1.67,-0.74 z" + id="path210" /> + <path + class="st1" + d="m 610.1,487.81 c 0.37,0 0.75,0 1.12,0 0.19,0 0.37,0 0.56,0 0.09,0 0.17,0 0.26,-0.01 0.1,-0.01 0.19,-0.04 0.29,-0.06 0.11,-0.02 0.11,-0.21 0,-0.23 -0.1,-0.02 -0.19,-0.05 -0.29,-0.06 -0.09,-0.01 -0.17,-0.01 -0.26,-0.01 -0.19,0 -0.37,0 -0.56,0 -0.37,0 -0.75,0 -1.12,0 -0.22,0.03 -0.22,0.37 0,0.37 z" + id="path212" /> + <path + class="st1" + d="m 614.69,487.36 c 1.24,-0.13 2.41,-0.39 3.59,-0.78 0.56,-0.19 1.11,-0.39 1.66,-0.62 0.28,-0.12 0.56,-0.25 0.84,-0.38 0.26,-0.13 0.56,-0.24 0.77,-0.45 0.07,-0.06 0,-0.17 -0.09,-0.15 -0.25,0.06 -0.48,0.21 -0.71,0.33 -0.26,0.13 -0.52,0.25 -0.79,0.37 -0.57,0.25 -1.15,0.46 -1.75,0.64 -1.14,0.34 -2.34,0.56 -3.52,0.69 -0.23,0.02 -0.23,0.37 0,0.35 z" + id="path214" /> + <path + class="st1" + d="m 602.23,486.42 -1.5,0.09 c -0.21,0.01 -0.21,0.34 0,0.32 0.51,-0.03 1.02,-0.07 1.53,-0.1 0.5,-0.03 1,-0.07 1.49,-0.16 0.11,-0.02 0.08,-0.19 -0.03,-0.19 -0.49,-0.01 -1,0.01 -1.49,0.04 z" + id="path216" /> + <path + class="st1" + d="m 602.12,484.89 c -0.53,0 -1.06,0 -1.6,0.01 -0.19,0 -0.19,0.29 0,0.29 0.53,0 1.06,0 1.6,0.01 0.53,0 1.07,0.02 1.6,-0.04 0.15,-0.02 0.15,-0.21 0,-0.23 -0.52,-0.06 -1.07,-0.04 -1.6,-0.04 z" + id="path218" /> + <path + class="st1" + d="m 606.32,485.05 c 0.44,-0.03 0.88,-0.06 1.32,-0.09 0.22,-0.01 0.44,-0.03 0.66,-0.05 0.22,-0.02 0.44,-0.03 0.65,-0.09 0.16,-0.04 0.11,-0.25 -0.04,-0.26 -0.22,-0.03 -0.44,0 -0.66,0.01 -0.21,0 -0.42,0.02 -0.64,0.04 -0.43,0.03 -0.86,0.07 -1.3,0.1 -0.21,0.01 -0.22,0.35 0.01,0.34 z" + id="path220" /> + <path + class="st1" + d="m 612.34,484.4 c 0.58,-0.16 1.16,-0.31 1.74,-0.46 0.28,-0.07 0.56,-0.15 0.83,-0.24 0.15,-0.05 0.3,-0.09 0.45,-0.14 0.15,-0.05 0.27,-0.12 0.4,-0.19 0.12,-0.06 0.07,-0.29 -0.07,-0.27 -0.15,0.02 -0.29,0.02 -0.44,0.06 -0.15,0.04 -0.3,0.08 -0.45,0.12 -0.28,0.08 -0.56,0.16 -0.83,0.25 -0.18,0.06 -0.37,0.12 -0.55,0.18 -0.02,-0.14 -0.05,-0.28 -0.09,-0.42 -0.05,-0.19 -0.1,-0.38 -0.16,-0.57 -0.1,-0.37 -0.21,-0.74 -0.31,-1.12 -0.06,-0.21 -0.38,-0.12 -0.33,0.09 0.1,0.37 0.2,0.75 0.3,1.12 0.05,0.18 0.09,0.37 0.15,0.55 0.04,0.14 0.09,0.3 0.15,0.44 -0.29,0.09 -0.58,0.19 -0.88,0.28 -0.2,0.07 -0.12,0.38 0.09,0.32 z" + id="path222" /> + <path + class="st1" + d="m 574,485.77 c 0.17,0 0.17,-0.26 0,-0.26 -0.17,0 -0.17,0.26 0,0.26 z" + id="path224" /> + <path + class="st1" + d="m 556.07,491.55 c -0.17,-0.27 -0.33,-0.53 -0.5,-0.8 -0.1,-0.16 -0.35,-0.01 -0.25,0.15 0.17,0.27 0.34,0.54 0.51,0.81 0.17,0.27 0.33,0.55 0.54,0.79 0.04,0.04 0.11,0.04 0.15,0.01 0.05,-0.04 0.05,-0.09 0.03,-0.14 -0.06,-0.15 -0.15,-0.28 -0.23,-0.42 -0.09,-0.13 -0.17,-0.27 -0.25,-0.4 z" + id="path226" /> + <path + class="st1" + d="m 578.87,492.56 c 0.48,-0.22 0.96,-0.45 1.43,-0.67 0.25,-0.11 0.49,-0.23 0.74,-0.35 0.15,-0.07 0.56,-0.19 0.43,-0.43 -0.12,-0.22 -0.48,0.03 -0.63,0.1 -0.25,0.12 -0.49,0.23 -0.74,0.35 -0.48,0.22 -0.95,0.45 -1.43,0.67 -0.22,0.1 -0.02,0.43 0.2,0.33 z" + id="path228" /> + <path + class="st1" + d="m 616.05,491.36 c 0.67,0.13 1.35,0.29 2.03,0.34 0.09,0.01 0.1,-0.13 0.02,-0.16 -0.64,-0.21 -1.32,-0.32 -1.98,-0.46 -0.17,-0.03 -0.25,0.25 -0.07,0.28 z" + id="path230" /> + <path + class="st1" + d="m 639.83,489.38 c 0.81,-0.03 1.63,-0.07 2.44,-0.1 0.41,-0.02 0.81,-0.03 1.22,-0.06 0.38,-0.02 0.79,-0.03 1.15,-0.12 0.09,-0.02 0.1,-0.18 0,-0.2 -0.37,-0.07 -0.78,-0.04 -1.15,-0.03 -0.41,0.01 -0.81,0.02 -1.22,0.04 -0.81,0.03 -1.63,0.06 -2.44,0.1 -0.24,0.01 -0.24,0.37 0,0.37 z" + id="path232" /> + <path + class="st1" + d="m 566.82,493.09 c -0.17,0 -0.17,0.27 0,0.27 0.17,0 0.17,-0.27 0,-0.27 z" + id="path234" /> + <path + class="st1" + d="m 560.89,492.68 -1.98,-1.71 c -0.17,-0.15 -0.42,0.1 -0.25,0.25 0.67,0.58 1.34,1.16 2.01,1.74 0.65,0.57 1.3,1.17 2.02,1.65 0.1,0.07 0.2,-0.08 0.13,-0.16 -0.58,-0.65 -1.28,-1.21 -1.93,-1.77 z" + id="path236" /> + <path + class="st1" + d="m 573.56,494.54 c 0.06,0.01 0.13,-0.01 0.15,-0.07 0.02,-0.05 0.01,-0.13 -0.05,-0.16 -0.39,-0.18 -0.81,-0.3 -1.22,-0.44 -0.08,-0.03 -0.17,0.03 -0.19,0.11 -0.02,0.09 0.03,0.17 0.11,0.19 0.4,0.13 0.79,0.28 1.2,0.37 z" + id="path238" /> + <path + class="st1" + d="m 592.19,494 c -0.34,-0.05 -0.68,-0.11 -1.02,-0.19 -0.67,-0.17 -1.32,-0.4 -1.94,-0.71 -0.16,-0.08 -0.3,0.16 -0.14,0.24 0.64,0.33 1.31,0.59 2,0.78 0.35,0.09 0.7,0.16 1.05,0.21 0.34,0.05 0.71,0.12 1.04,0.06 0.14,-0.03 0.13,-0.24 0,-0.28 -0.31,-0.08 -0.66,-0.07 -0.99,-0.11 z" + id="path240" /> + <path + class="st1" + d="m 597.34,494.08 -0.2,-0.01 -0.41,-0.01 c -0.08,0 -0.16,0.07 -0.16,0.16 0,0.08 0.07,0.16 0.16,0.16 0.14,0 0.27,-0.01 0.41,-0.01 l 0.2,-0.01 c 0.07,0 0.15,-0.02 0.22,-0.03 0.11,-0.02 0.11,-0.2 0,-0.22 -0.07,-0.01 -0.14,-0.03 -0.22,-0.03 z" + id="path242" /> + <path + class="st1" + d="m 604.12,494.07 c -0.56,-0.05 -1.13,-0.03 -1.7,-0.02 -0.57,0 -1.13,0 -1.7,0 -0.22,0 -0.22,0.33 0,0.34 0.57,0 1.13,0 1.7,0 0.56,0 1.13,0.02 1.7,-0.02 0.19,-0.02 0.19,-0.28 0,-0.3 z" + id="path244" /> + <path + class="st1" + d="m 609.98,493.95 c 0.11,-0.05 0.09,-0.26 -0.04,-0.28 -0.22,-0.03 -0.43,0.02 -0.65,0.05 -0.23,0.03 -0.46,0.07 -0.69,0.11 -0.45,0.08 -0.89,0.16 -1.34,0.24 -0.18,0.03 -0.14,0.34 0.04,0.32 0.45,-0.06 0.9,-0.12 1.35,-0.18 0.22,-0.03 0.44,-0.05 0.66,-0.1 0.23,-0.05 0.47,-0.06 0.67,-0.16 z" + id="path246" /> + <path + class="st1" + d="m 613.66,493.61 c -0.13,0.03 -0.27,0.07 -0.4,0.1 -0.06,0.02 -0.1,0.09 -0.08,0.15 0.02,0.06 0.08,0.1 0.15,0.08 0.13,-0.03 0.27,-0.07 0.4,-0.1 0.13,-0.03 0.26,-0.08 0.39,-0.12 0.05,-0.02 0.08,-0.07 0.07,-0.12 -0.02,-0.06 -0.07,-0.08 -0.12,-0.07 -0.14,0.02 -0.27,0.04 -0.41,0.08 z" + id="path248" /> + <path + class="st1" + d="m 611.24,496.96 c -0.24,-0.02 -0.47,-0.03 -0.71,-0.04 -0.47,-0.03 -0.95,-0.05 -1.42,-0.08 -0.18,-0.01 -0.18,0.27 0,0.29 0.47,0.03 0.93,0.06 1.4,0.1 0.23,0.02 0.46,0.04 0.69,0.05 0.23,0.01 0.48,0.03 0.71,0 0.12,-0.01 0.17,-0.19 0.03,-0.23 -0.23,-0.06 -0.47,-0.07 -0.7,-0.09 z" + id="path250" /> + <path + class="st1" + d="m 621.7,495.16 c -0.53,0.07 -1.04,0.24 -1.57,0.37 -0.51,0.13 -1.01,0.25 -1.52,0.37 -1.05,0.26 -2.1,0.53 -3.15,0.8 -0.18,0.05 -0.1,0.31 0.08,0.27 1.04,-0.24 2.07,-0.48 3.11,-0.74 0.51,-0.12 1.01,-0.25 1.52,-0.37 0.53,-0.13 1.07,-0.2 1.58,-0.39 0.14,-0.06 0.14,-0.34 -0.05,-0.31 z" + id="path252" /> + <path + class="st1" + d="m 624.77,494.39 1.22,-0.6 c 0.4,-0.2 0.82,-0.39 1.16,-0.68 0.1,-0.09 -0.01,-0.24 -0.12,-0.21 -0.21,0.05 -0.42,0.15 -0.62,0.22 -0.22,0.08 -0.42,0.2 -0.63,0.31 -0.4,0.21 -0.81,0.41 -1.21,0.62 -0.23,0.11 -0.03,0.45 0.2,0.34 z" + id="path254" /> + <path + class="st1" + d="m 629.13,491.36 c 0.1,-0.07 0.2,-0.13 0.3,-0.2 0.1,-0.07 0.19,-0.15 0.29,-0.22 0.03,-0.02 0.05,-0.04 0.06,-0.08 0.01,-0.03 0,-0.07 -0.01,-0.1 -0.04,-0.06 -0.11,-0.08 -0.18,-0.05 -0.1,0.06 -0.21,0.11 -0.31,0.18 -0.1,0.06 -0.2,0.13 -0.3,0.2 -0.07,0.04 -0.1,0.14 -0.05,0.21 0.04,0.07 0.13,0.11 0.2,0.06 z" + id="path256" /> + <path + class="st1" + d="m 627.86,495.89 c -1.84,0.73 -3.81,1.19 -5.79,1.33 -0.16,0.01 -0.16,0.26 0,0.25 2.05,-0.11 4.06,-0.53 5.98,-1.28 0.93,-0.36 1.84,-0.79 2.71,-1.28 0.44,-0.25 0.87,-0.53 1.29,-0.81 0.4,-0.28 0.88,-0.56 1.17,-0.96 0.11,-0.14 -0.09,-0.28 -0.22,-0.22 -0.45,0.2 -0.84,0.59 -1.24,0.87 -0.39,0.27 -0.79,0.53 -1.2,0.77 -0.87,0.52 -1.77,0.96 -2.7,1.33 z" + id="path258" /> + <path + class="st1" + d="m 634.36,491.54 c 0.3,-0.26 0.61,-0.52 0.89,-0.8 0.14,-0.14 0.26,-0.29 0.4,-0.44 0.07,-0.07 0.14,-0.13 0.21,-0.19 0.08,-0.07 0.16,-0.15 0.23,-0.22 0.08,-0.08 -0.04,-0.19 -0.12,-0.12 -0.08,0.06 -0.16,0.12 -0.24,0.19 -0.07,0.07 -0.14,0.14 -0.22,0.2 -0.08,0.06 -0.17,0.11 -0.25,0.16 -0.09,0.06 -0.16,0.12 -0.24,0.19 -0.31,0.25 -0.6,0.53 -0.9,0.79 -0.16,0.15 0.08,0.39 0.24,0.24 z" + id="path260" /> + <path + class="st1" + d="m 632.11,495.83 c 1.53,-0.44 2.96,-1.05 4.28,-1.94 0.63,-0.43 1.28,-0.87 1.84,-1.39 0.29,-0.27 0.52,-0.59 0.81,-0.85 0.29,-0.27 0.6,-0.48 0.8,-0.83 0.05,-0.08 -0.05,-0.2 -0.14,-0.14 -0.31,0.22 -0.5,0.53 -0.76,0.81 -0.24,0.27 -0.56,0.46 -0.84,0.68 -0.62,0.48 -1.23,0.98 -1.91,1.39 -1.3,0.8 -2.71,1.5 -4.17,1.97 -0.19,0.06 -0.11,0.35 0.09,0.3 z" + id="path262" /> + <path + class="st1" + d="m 640.82,490.1 c 0.09,0 0.09,-0.14 0,-0.14 -0.08,0 -0.08,0.14 0,0.14 z" + id="path264" /> + <path + class="st1" + d="m 572.91,493.62 c -0.82,-0.28 -1.64,-0.62 -2.41,-1.02 -1.53,-0.79 -2.98,-1.84 -4.29,-2.96 -0.17,-0.15 -0.43,0.09 -0.26,0.26 1.31,1.26 2.79,2.22 4.43,3.01 0.8,0.38 1.61,0.72 2.45,1 0.83,0.27 1.69,0.52 2.56,0.58 0.07,0 0.08,-0.1 0.02,-0.12 -0.83,-0.28 -1.68,-0.47 -2.5,-0.75 z" + id="path266" /> + <path + class="st1" + d="m 580.56,494.84 c -0.48,-0.07 -0.95,-0.07 -1.42,0.01 -0.1,0.02 -0.15,0.13 -0.12,0.22 0.03,0.1 0.12,0.14 0.22,0.12 0.42,-0.06 0.86,-0.06 1.28,0.01 0.42,0.07 0.82,0.25 1.24,0.33 0.11,0.02 0.21,-0.11 0.11,-0.2 -0.35,-0.31 -0.86,-0.43 -1.31,-0.49 z" + id="path268" /> + <path + class="st1" + d="m 584.37,495.86 c 0.06,0 0.06,-0.1 0,-0.1 -0.06,0.01 -0.06,0.1 0,0.1 z" + id="path270" /> + <path + class="st1" + d="m 573.26,496.43 c 0.01,-0.03 0.01,-0.06 -0.03,-0.08 -0.16,-0.07 -0.32,-0.12 -0.48,-0.18 -0.49,-0.23 -0.99,-0.46 -1.48,-0.69 -0.08,-0.04 -0.16,0 -0.2,0.06 -0.02,-0.01 -0.03,-0.01 -0.05,-0.02 -0.11,-0.04 -0.16,0.14 -0.05,0.17 0.08,0.03 0.15,0.06 0.23,0.08 0.41,0.19 0.82,0.38 1.23,0.57 0.43,0.2 0.88,0.39 1.33,0.55 0.1,0.04 0.16,-0.12 0.07,-0.17 -0.17,-0.1 -0.37,-0.19 -0.57,-0.29 z" + id="path272" /> + <path + class="st1" + d="m 578.78,497.92 c 0.15,0 0.15,-0.23 0,-0.23 -0.14,0.01 -0.14,0.23 0,0.23 z" + id="path274" /> + <path + class="st1" + d="m 557.8,499.44 c -0.06,-0.32 -0.05,-0.66 0.03,-0.98 0.06,-0.24 -0.3,-0.34 -0.36,-0.1 -0.1,0.38 -0.11,0.77 -0.03,1.16 0.07,0.36 0.2,0.79 0.51,1.01 0.09,0.06 0.2,-0.04 0.18,-0.14 -0.04,-0.17 -0.12,-0.32 -0.18,-0.48 -0.07,-0.15 -0.12,-0.31 -0.15,-0.47 z" + id="path276" /> + <path + class="st1" + d="m 559.66,500.46 c -0.03,-0.28 -0.06,-0.56 -0.1,-0.85 -0.01,-0.09 -0.07,-0.16 -0.16,-0.16 -0.08,0 -0.17,0.08 -0.16,0.16 0.03,0.29 0.06,0.57 0.09,0.86 0.01,0.14 0.03,0.28 0.04,0.42 0.02,0.14 0.01,0.34 0.14,0.43 0.05,0.03 0.12,0.02 0.16,-0.02 0.11,-0.11 0.06,-0.3 0.04,-0.44 z" + id="path278" /> + <path + class="st1" + d="m 561.11,501.24 c -0.03,-0.12 -0.06,-0.24 -0.09,-0.36 l -0.21,-0.72 c -0.07,-0.23 -0.42,-0.13 -0.36,0.1 0.07,0.24 0.14,0.48 0.2,0.73 0.03,0.12 0.07,0.24 0.11,0.35 0.02,0.06 0.04,0.12 0.06,0.18 0.02,0.07 0.05,0.13 0.1,0.19 0.07,0.08 0.22,0.04 0.25,-0.06 0.01,-0.05 0.02,-0.09 0.01,-0.14 0,-0.03 -0.01,-0.05 -0.02,-0.08 -0.01,-0.07 -0.03,-0.13 -0.05,-0.19 z" + id="path280" /> + <path + class="st1" + d="m 563.6,502.33 -0.2,-0.4 c -0.14,-0.27 -0.28,-0.55 -0.42,-0.82 -0.06,-0.11 -0.21,-0.14 -0.31,-0.08 -0.11,0.07 -0.14,0.2 -0.08,0.31 0.14,0.28 0.27,0.55 0.41,0.83 0.07,0.13 0.13,0.27 0.2,0.4 0.03,0.07 0.07,0.13 0.1,0.2 0.06,0.1 0.1,0.18 0.22,0.22 0.1,0.04 0.21,-0.04 0.24,-0.14 0.03,-0.11 -0.01,-0.2 -0.06,-0.3 -0.03,-0.08 -0.07,-0.15 -0.1,-0.22 z" + id="path282" /> + <path + class="st1" + d="m 568.67,503.3 c -0.11,-0.38 -0.21,-0.76 -0.32,-1.14 -0.05,-0.18 -0.32,-0.1 -0.28,0.08 0.1,0.38 0.2,0.76 0.3,1.14 0.05,0.18 0.1,0.37 0.15,0.55 0.05,0.18 0.08,0.4 0.21,0.54 0.05,0.06 0.17,0.03 0.19,-0.05 0.04,-0.19 -0.05,-0.4 -0.1,-0.58 -0.05,-0.18 -0.1,-0.36 -0.15,-0.54 z" + id="path284" /> + <path + class="st1" + d="m 570.8,503.75 c -0.08,-0.33 -0.15,-0.67 -0.23,-1 -0.05,-0.22 -0.39,-0.13 -0.34,0.09 0.07,0.33 0.15,0.67 0.22,1 0.04,0.17 0.08,0.35 0.11,0.52 0.03,0.14 0.06,0.42 0.27,0.37 0.21,-0.06 0.11,-0.32 0.08,-0.46 -0.03,-0.17 -0.07,-0.35 -0.11,-0.52 z" + id="path286" /> + <path + class="st1" + d="m 572.32,504.58 c -0.05,-0.05 -0.09,-0.11 -0.14,-0.16 -0.09,-0.11 -0.2,-0.21 -0.29,-0.31 -0.06,-0.06 -0.17,-0.06 -0.23,0 -0.06,0.07 -0.06,0.16 0,0.23 0.1,0.1 0.19,0.21 0.29,0.31 0.05,0.05 0.1,0.1 0.15,0.15 0.03,0.03 0.05,0.05 0.08,0.08 0.03,0.03 0.07,0.05 0.11,0.07 0.05,0.03 0.12,0.02 0.16,-0.02 0.04,-0.04 0.05,-0.1 0.02,-0.16 -0.02,-0.04 -0.04,-0.08 -0.07,-0.11 -0.03,-0.02 -0.06,-0.05 -0.08,-0.08 z" + id="path288" /> + <path + class="st1" + d="m 629.73,504.24 c -0.02,-0.02 -0.04,-0.03 -0.06,-0.04 -0.03,-0.01 -0.05,-0.03 -0.08,-0.05 -0.01,-0.01 -0.03,-0.02 -0.04,-0.03 0,0 -0.04,-0.03 -0.02,-0.02 0.02,0.01 -0.02,-0.01 -0.02,-0.02 -0.01,-0.01 -0.03,-0.02 -0.04,-0.03 -0.05,-0.04 -0.1,-0.08 -0.14,-0.12 -0.02,-0.02 -0.04,-0.05 -0.06,-0.07 -0.01,-0.01 -0.02,-0.02 -0.03,-0.03 0.03,0.03 -0.01,-0.01 -0.01,-0.01 -0.04,-0.05 -0.07,-0.1 -0.1,-0.16 -0.01,-0.02 -0.03,-0.05 -0.04,-0.08 0,-0.01 0,0 0,-0.01 0,0 0,0 0,-0.01 -0.01,-0.02 -0.01,-0.03 -0.02,-0.05 -0.02,-0.06 -0.03,-0.11 -0.04,-0.17 0,-0.01 0,-0.01 0,-0.02 0,-0.01 0,-0.03 0,-0.04 0,-0.03 0,-0.07 0,-0.1 0,-0.09 -0.08,-0.18 -0.18,-0.18 -0.1,0 -0.17,0.08 -0.18,0.18 -0.03,0.29 0.06,0.61 0.23,0.85 0.09,0.13 0.2,0.26 0.33,0.34 0.07,0.04 0.14,0.07 0.21,0.1 0.08,0.03 0.17,0.06 0.26,0.03 0.11,-0.03 0.13,-0.15 0.06,-0.23 0.01,0.03 -0.03,-0.02 -0.03,-0.03 z" + id="path290" /> + <path + class="st1" + d="m 596.34,432.02 c 1.45,-0.06 2.9,-0.11 4.35,-0.17 0.71,-0.03 1.43,-0.06 2.14,-0.09 0.71,-0.03 1.43,-0.04 2.13,-0.15 0.19,-0.03 0.13,-0.31 -0.04,-0.32 -0.71,-0.05 -1.44,0.02 -2.14,0.05 -0.71,0.04 -1.43,0.07 -2.14,0.11 -1.43,0.08 -2.86,0.15 -4.29,0.23 -0.23,0.01 -0.23,0.35 -0.01,0.34 z" + id="path292" /> + <path + class="st1" + d="m 600.73,432.66 h -0.6 c -0.06,0 -0.13,0.06 -0.12,0.12 0,0.07 0.05,0.12 0.12,0.12 h 0.59 c 0.07,0 0.14,-0.01 0.21,-0.02 0.06,-0.01 0.1,-0.04 0.1,-0.1 0,-0.06 -0.05,-0.1 -0.1,-0.1 -0.07,-0.01 -0.13,-0.02 -0.2,-0.02 z" + id="path294" /> + <path + class="st1" + d="m 591.08,431.25 c 0.83,0.2 1.66,0.4 2.49,0.6 0.83,0.19 1.67,0.41 2.51,0.53 0.23,0.03 0.33,-0.28 0.1,-0.36 -0.81,-0.28 -1.65,-0.46 -2.47,-0.67 -0.83,-0.21 -1.66,-0.41 -2.49,-0.61 -0.33,-0.08 -0.47,0.43 -0.14,0.51 z" + id="path296" /> + </g> + <g + id="g308"> + <g + id="g302"> + <rect + x="647.32001" + y="455.85999" + class="st1" + width="42.389999" + height="2.51" + id="rect300" /> + </g> + <g + id="g306"> + <rect + x="510.79001" + y="455.85999" + class="st1" + width="40.389999" + height="2.51" + id="rect304" /> + </g> + </g> + <g + id="g2120"> + <path + class="st1" + d="m 540.81,390.75 c -0.01,0 -0.02,0.01 -0.03,0.01 -0.2,0.09 -0.01,0.01 0.03,-0.01 z" + id="path310" /> + <path + class="st1" + d="m 541.26,390.61 c -0.01,0 -0.01,0 -0.02,0 0,0 -0.01,0 -0.01,0 0.01,0.01 0.02,0.01 0.03,0 0,0 0,0 0,0 z" + id="path312" /> + <path + class="st1" + d="m 545.12,369.88 c 0.01,0.01 0.01,0.01 0,0 0.07,0.02 0.17,0.01 0,0 z" + id="path314" /> + <path + class="st1" + d="m 595.77,319.62 c -0.46,-0.22 -0.98,-0.28 -1.48,-0.16 -0.27,0.07 -0.68,0.26 -0.93,0.52 -0.02,0.01 -0.03,0.02 -0.05,0.04 -0.15,0.14 -0.26,0.34 -0.35,0.53 -0.18,0.43 -0.24,0.88 -0.15,1.34 0.18,0.92 1.04,1.5 1.94,1.54 0.95,0.04 1.8,-0.58 2.03,-1.5 0.22,-0.86 -0.19,-1.91 -1.01,-2.31 z m -0.11,1.89 c -0.01,0.03 -0.01,0.06 -0.02,0.1 -0.02,0.08 -0.04,0.15 -0.06,0.22 0,0 0,0 0,0 -0.02,0.03 -0.03,0.07 -0.05,0.1 -0.02,0.03 -0.03,0.05 -0.05,0.08 -0.01,0.01 -0.01,0.01 -0.02,0.02 -0.02,0.03 -0.05,0.05 -0.08,0.08 -0.01,0.01 -0.03,0.03 -0.04,0.04 -0.01,0.01 -0.02,0.01 -0.03,0.02 -0.04,0.02 -0.07,0.04 -0.11,0.06 -0.01,0 -0.02,0.01 -0.04,0.02 -0.02,0.01 -0.04,0.01 -0.06,0.02 -0.04,0.01 -0.07,0.02 -0.11,0.03 -0.01,0 -0.06,0.01 -0.09,0.02 -0.01,0 -0.02,0 -0.03,0 -0.03,0 -0.06,0 -0.1,0 -0.04,0 -0.07,0 -0.11,0 -0.01,0 -0.02,0 -0.03,0 -0.06,-0.01 -0.13,-0.02 -0.19,-0.04 -0.03,-0.01 -0.07,-0.02 -0.1,-0.03 -0.01,0 -0.01,-0.01 -0.02,-0.01 -0.07,-0.03 -0.13,-0.07 -0.19,-0.11 0,0 0,0 0,0 -0.02,-0.03 -0.06,-0.05 -0.08,-0.07 -0.03,-0.03 -0.05,-0.05 -0.08,-0.08 0,0 0,0 0,0 0,0 0,0 0,0 -0.04,-0.06 -0.07,-0.12 -0.1,-0.18 -0.01,-0.02 -0.02,-0.04 -0.02,-0.05 -0.01,-0.04 -0.02,-0.08 -0.03,-0.12 0,-0.01 -0.01,-0.06 -0.02,-0.08 0,-0.02 0,-0.05 -0.01,-0.07 0,-0.08 0,-0.15 0.01,-0.23 0,-0.02 0.01,-0.04 0.01,-0.05 0.01,-0.04 0.02,-0.08 0.03,-0.13 0.01,-0.04 0.03,-0.08 0.04,-0.12 0,-0.01 0,0 0,-0.01 0.06,-0.03 0.12,-0.06 0.17,-0.11 0.03,-0.02 0.05,-0.05 0.08,-0.08 0.01,-0.01 0.03,-0.03 0.05,-0.04 0.02,-0.01 0.04,-0.03 0.05,-0.04 0.03,-0.02 0.05,-0.03 0.08,-0.05 0.02,-0.01 0.05,-0.03 0.08,-0.04 0.01,0 0.03,-0.01 0.04,-0.01 0.07,-0.02 0.14,-0.04 0.21,-0.06 0,0 0,0 0.01,0 0.04,0 0.08,-0.01 0.12,-0.01 0.06,0 0.14,0.01 0.2,0.01 0,0 0,0 0,0 0.04,0.01 0.08,0.02 0.12,0.03 0.04,0.01 0.07,0.02 0.1,0.03 0,0 0,0 0,0 0.06,0.03 0.12,0.07 0.18,0.11 0.01,0.01 0.02,0.01 0.02,0.02 0.03,0.03 0.05,0.05 0.08,0.08 0,0 0.01,0.01 0.01,0.01 0,-0.01 0,-0.01 -0.01,-0.01 0,0.01 0.01,0.01 0.01,0.02 0,0 0.01,0.01 0.01,0.01 0.02,0.02 0.02,0.03 0.01,0.03 0.01,0.02 0.03,0.03 0.03,0.04 0,0.01 0.01,0.01 0.01,0.02 0,-0.01 0.01,0 0.02,0.02 0,0.01 0.01,0.02 0.01,0.03 0,0.01 0.01,0.01 0.01,0.02 0,0 0,-0.01 -0.01,-0.01 0,0 0,0.01 0,0.01 0.02,0.07 0.04,0.15 0.05,0.22 0,0 0,0 0,0 0,0.04 0,0.07 0,0.11 0,0.08 -0.01,0.16 -0.01,0.24 0,0.01 0,0.01 0,0.02 0.04,-0.03 0.04,-0.03 0.05,-0.05 z" + id="path316" /> + <path + class="st1" + d="m 595.6,320.93 c -0.01,-0.01 -0.02,-0.03 -0.02,-0.05 -0.01,0.01 0,0.03 0.02,0.05 0,0.01 0,0 0,0 z" + id="path318" /> + <path + class="st1" + d="m 595.51,320.78 c -0.01,0 -0.01,0 0,0 0.01,0.02 0.02,0.04 0.02,0.04 -0.01,-0.01 -0.02,-0.03 -0.02,-0.04 z" + id="path320" /> + <path + class="st1" + d="m 594.3,257.06 c 1.71,0.26 3.35,-0.8 3.95,-2.4 0.63,-1.67 -0.24,-3.66 -1.74,-4.53 -0.91,-0.53 -2.01,-0.63 -2.97,-0.19 -0.43,0.2 -0.85,0.54 -1.09,0.95 -0.21,0.18 -0.4,0.4 -0.56,0.63 -0.45,0.63 -0.7,1.45 -0.65,2.22 0.11,1.65 1.44,3.08 3.06,3.32 z m -1.38,-4.6 c 0.05,-0.02 0.1,-0.05 0.14,-0.09 0.42,-0.41 0.65,-0.84 1.12,-1.08 0.17,-0.09 0.39,-0.13 0.62,-0.13 0.22,0 0.48,0.06 0.69,0.15 0.55,0.24 0.96,0.67 1.21,1.2 0.22,0.45 0.28,1.02 0.16,1.47 -0.24,0.91 -1.16,1.62 -2.08,1.61 -0.41,0 -0.92,-0.19 -1.25,-0.46 -0.42,-0.33 -0.69,-0.74 -0.81,-1.21 -0.12,-0.46 -0.04,-0.99 0.2,-1.46 z" + id="path322" /> + <path + class="st1" + d="m 596.12,268.47 c 0.01,-0.01 0.02,-0.02 0.04,-0.03 -0.01,0 -0.03,0.01 -0.05,0.04 0,-0.01 0,-0.01 0.01,-0.01 z" + id="path324" /> + <path + class="st1" + d="m 596.59,267.7 c 0,-0.01 0,-0.01 0,-0.02 -0.01,0.01 0,0.02 0,0.02 0,0.01 0,0 0,0 z" + id="path326" /> + <path + class="st1" + d="m 595.89,268.59 c 0.01,0 0.01,0 0,0 -0.03,0 -0.06,0.01 -0.07,0.02 0.03,0 0.05,-0.01 0.07,-0.02 z" + id="path328" /> + <path + class="st1" + d="m 510.35,248.54 c 0,0 0,0 0,0 -0.04,-0.05 -0.03,-0.03 0,0 z" + id="path330" /> + <path + class="st1" + d="m 665.81,196.56 c 0,0 0,0 0,0 -0.01,0 -0.02,0.01 -0.02,0.01 0.01,-0.01 0.01,-0.01 0.02,-0.01 z" + id="path332" /> + <path + class="st1" + d="m 665.81,196.56 c 0.01,0 0.01,0 0.02,-0.01 0.05,-0.02 0.04,-0.02 -0.02,0.01 z" + id="path334" /> + <path + class="st1" + d="m 712.71,221.96 c -0.01,-0.16 -0.05,-0.3 -0.15,-0.42 0,0 -0.01,0 -0.01,-0.01 0.1,-1.05 -0.06,-2.15 -0.2,-3.17 -0.17,-1.28 -0.39,-2.55 -0.64,-3.81 -0.5,-2.53 -1.16,-5.03 -1.97,-7.48 -1.61,-4.89 -3.87,-9.55 -6.62,-13.9 -0.77,-1.21 -1.57,-2.4 -2.42,-3.55 -0.43,-0.59 -0.88,-1.16 -1.33,-1.73 -0.45,-0.56 -0.86,-1.16 -1.45,-1.57 -0.2,-0.14 -0.38,-0.07 -0.5,0.08 -0.19,-0.03 -0.38,0.01 -0.54,0.16 -0.01,0.01 -0.02,0.02 -0.03,0.02 -0.04,0.03 -0.08,0.05 -0.11,0.08 -0.06,0.04 -0.12,0.06 -0.18,0.09 -0.1,0.04 -0.21,0.07 -0.31,0.1 -0.02,0 -0.04,0.01 -0.06,0.01 -0.01,0 -0.01,0 -0.02,0 -0.06,0.01 -0.13,0.01 -0.19,0.01 -0.06,0 -0.12,-0.01 -0.18,-0.01 -0.01,0 -0.01,0 -0.02,0 -0.09,-0.05 -0.2,-0.08 -0.29,-0.13 -0.03,-0.21 -0.16,-0.4 -0.4,-0.46 -0.52,-0.14 -1.2,-0.05 -1.72,0.06 -0.53,0.11 -1.04,0.32 -1.54,0.5 -1.13,0.41 -2.25,0.86 -3.35,1.35 -1.06,0.46 -2.09,0.99 -3.11,1.53 -1,0.54 -2.18,1.09 -3,1.89 -0.17,0.16 -0.21,0.37 -0.19,0.57 -0.14,0.1 -0.21,0.25 -0.24,0.41 -0.28,0.12 -0.55,0.25 -0.81,0.36 -0.52,0.23 -1.05,0.48 -1.53,0.78 -0.44,0.28 -0.87,0.61 -1.22,1.01 -0.19,0.21 -0.38,0.45 -0.52,0.7 -0.04,0.07 -0.07,0.15 -0.1,0.23 -0.08,0.03 -0.15,0.05 -0.23,0.08 -0.69,0.2 -1.39,0.36 -2.04,0.69 -0.58,0.29 -1.11,0.76 -1.4,1.35 -0.15,0.31 -0.24,0.66 -0.24,1 -0.37,0.15 -0.74,0.29 -1.1,0.44 -0.69,-0.75 -1.43,-1.49 -2.38,-1.91 -0.53,-0.24 -1.35,-0.4 -1.98,-0.2 -0.01,-0.01 -0.01,-0.03 -0.02,-0.04 -0.1,-0.29 -0.21,-0.57 -0.34,-0.85 0.71,-0.3 1.41,-0.6 2.12,-0.9 0.26,-0.11 0.37,-0.4 0.36,-0.68 0.08,-0.16 0.13,-0.34 0.09,-0.56 -0.3,-1.96 -1.16,-3.96 -2,-5.74 -0.42,-0.88 -0.89,-1.74 -1.4,-2.58 -0.26,-0.42 -0.52,-0.83 -0.8,-1.23 -0.27,-0.39 -0.5,-0.76 -0.9,-0.97 -0.16,-0.23 -0.44,-0.38 -0.78,-0.27 -0.63,0.21 -1.23,0.53 -1.84,0.79 -0.58,0.25 -1.16,0.48 -1.75,0.71 -0.6,0.24 -1.21,0.48 -1.81,0.71 -0.48,0.19 -1.02,0.35 -1.46,0.64 -0.44,-0.63 -0.88,-1.27 -1.38,-1.85 -0.34,-0.39 -0.72,-0.89 -1.19,-1.2 0,-0.01 0,-0.02 0,-0.04 -0.04,-0.11 -0.09,-0.21 -0.17,-0.29 -0.1,-0.1 -0.31,-0.2 -0.45,-0.19 -0.1,0.01 -0.2,0.01 -0.3,0.04 -0.08,0.03 -0.16,0.07 -0.24,0.1 -0.09,0.04 -0.18,0.08 -0.27,0.12 -0.17,0.07 -0.33,0.14 -0.5,0.22 -0.17,0.07 -0.33,0.14 -0.5,0.22 -0.09,0.04 -0.18,0.08 -0.26,0.14 -0.11,0.07 -0.21,0.17 -0.3,0.25 -0.16,0.14 -0.18,0.4 -0.11,0.58 0,0 0.01,0.01 0.01,0.01 -0.13,0.31 -0.17,0.65 -0.09,0.98 0.01,0.06 0.05,0.11 0.08,0.17 -6.83,3.08 -13.68,6.11 -20.53,9.14 -1.94,-1.37 -3.94,-2.66 -6.02,-3.81 -6.4,-3.53 -13.4,-6.01 -20.58,-7.34 -7.22,-1.34 -14.59,-1.55 -21.87,-0.6 -8.1,1.06 -15.97,3.67 -23.12,7.62 -7.73,4.27 -14.52,10.12 -19.89,17.14 -5,6.54 -8.82,13.99 -11.18,21.88 -0.94,3.14 -1.62,6.36 -2.09,9.61 -4.62,1.9 -9.24,3.82 -13.81,5.82 -0.45,0.2 -0.41,0.76 -0.13,1.08 0,0.43 0.08,0.87 0.14,1.26 0.06,0.39 0.16,0.78 0.24,1.17 -0.59,0.17 -1.17,0.44 -1.72,0.66 -0.28,0.11 -0.56,0.23 -0.84,0.35 -0.05,-0.13 -0.1,-0.26 -0.16,-0.37 -0.06,-0.1 -0.11,-0.21 -0.18,-0.31 -0.01,-0.01 -0.06,-0.09 -0.1,-0.13 -0.08,-0.11 -0.17,-0.18 -0.28,-0.25 -0.18,-0.12 -0.4,-0.07 -0.56,0.05 -0.21,0.04 -0.4,0.14 -0.59,0.23 -0.17,0.07 -0.34,0.15 -0.51,0.22 -0.16,0.07 -0.33,0.14 -0.48,0.23 -0.19,0.11 -0.36,0.24 -0.52,0.39 -0.06,0.06 -0.09,0.13 -0.11,0.21 -0.17,-0.08 -0.43,0.01 -0.41,0.23 l 0.01,0.1 c -0.05,0.14 -0.08,0.27 -0.04,0.43 0.02,0.1 0.05,0.21 0.08,0.31 0.03,0.1 0.07,0.18 0.11,0.28 -0.29,0.13 -0.6,0.27 -0.91,0.42 -0.08,0.01 -0.15,0.06 -0.22,0.12 -0.35,0.19 -0.67,0.42 -0.89,0.71 -0.19,0.25 -0.12,0.58 0.15,0.7 -0.02,0.09 -0.06,0.17 -0.08,0.26 -0.13,0.61 -0.16,1.25 -0.09,1.87 0.15,1.43 0.64,2.72 1.25,4.01 0.53,1.13 1.07,2.45 2.04,3.27 0.8,0.68 1.97,1.02 2.92,0.6 -0.04,0.07 -0.09,0.12 -0.1,0.2 -0.12,1.04 0.05,2.13 0.2,3.16 0,0.02 0.01,0.04 0.01,0.06 -0.43,0.19 -0.86,0.37 -1.29,0.57 -0.35,0.16 -0.29,0.59 -0.05,0.81 -0.41,0.69 -0.63,1.52 -0.71,2.35 -0.18,0.07 -0.36,0.15 -0.54,0.22 -1.56,0.63 -3.1,1.31 -4.65,1.96 -1.5,0.64 -3,1.26 -4.49,1.92 -0.76,0.34 -1.53,0.66 -2.27,1.03 -0.16,0.08 -0.34,0.16 -0.53,0.24 -0.1,-0.03 -0.2,-0.04 -0.32,0.03 -0.92,0.51 -1.48,1.15 -1.87,2.12 -0.43,1.08 -0.55,2.14 -0.43,3.3 0.06,0.6 0.16,1.2 0.27,1.8 -0.56,0.21 -1.12,0.43 -1.67,0.65 -1.73,0.69 -3.47,1.4 -5.2,2.1 -1.69,0.69 -3.39,1.37 -5.08,2.08 -1.48,0.62 -3.01,1.18 -4.44,1.91 -0.15,0.04 -0.29,0.11 -0.44,0.23 -0.11,0.06 -0.22,0.11 -0.32,0.17 -0.28,0.16 -0.35,0.44 -0.29,0.7 -0.02,0.04 -0.04,0.07 -0.05,0.11 -0.11,0.27 -0.16,0.56 -0.19,0.85 -0.01,0.01 -0.03,0.01 -0.04,0.02 -0.26,0.12 -0.52,0.23 -0.78,0.35 -0.26,0.12 -0.52,0.23 -0.78,0.35 -0.12,0.06 -0.25,0.11 -0.37,0.17 -0.18,0.08 -0.33,0.18 -0.48,0.31 -0.15,0.12 -0.18,0.34 -0.15,0.53 -0.16,0.26 -0.3,0.55 -0.39,0.91 -0.2,0.79 -0.2,1.61 -0.13,2.42 0.17,1.93 0.88,3.76 1.7,5.5 0.82,1.72 1.85,3.7 3.35,4.93 0.42,0.35 0.99,0.63 1.57,0.81 0.02,0.01 0.02,0.03 0.04,0.04 0.05,0.02 0.11,0.03 0.16,0.04 0.07,0.03 0.14,0.05 0.22,0.05 0.04,0 0.07,-0.01 0.11,-0.01 0.78,0.12 1.54,-0.03 2.04,-0.61 l 0.33,-0.13 c 0.19,-0.08 0.38,-0.15 0.57,-0.23 0.59,0.34 1.24,0.46 1.96,0.13 0.09,-0.04 0.17,-0.1 0.24,-0.17 3.61,-0.93 7.12,-2.4 10.56,-3.79 1.91,-0.77 3.8,-1.58 5.68,-2.41 0.22,-0.1 0.43,-0.22 0.65,-0.32 0.01,0.01 0.02,0.02 0.03,0.04 0.73,0.82 1.57,1.58 2.49,2.18 0.54,0.36 1.25,0.78 1.97,0.99 0.15,0.18 0.39,0.3 0.68,0.22 0.16,-0.04 0.32,-0.1 0.48,-0.14 0.08,-0.01 0.15,-0.02 0.22,-0.04 0.03,-0.01 0.04,-0.03 0.07,-0.04 1.18,-0.37 2.33,-0.87 3.47,-1.33 1.4,-0.57 2.8,-1.14 4.2,-1.71 1.37,-0.56 2.73,-1.13 4.09,-1.7 0.4,-0.17 0.8,-0.34 1.2,-0.51 0.97,0.48 2.5,0.54 3.14,-0.33 5.11,-2.03 10.2,-4.14 15.27,-6.27 0.14,0.19 0.27,0.39 0.41,0.58 1.07,1.42 2.18,2.8 3.35,4.12 1.2,1.35 2.56,2.53 3.86,3.79 0.24,0.23 0.52,0.3 0.78,0.26 4.81,4.28 10.23,7.88 16.09,10.55 2.13,0.98 4.32,1.82 6.53,2.56 -0.39,1.55 -0.79,3.1 -1.17,4.65 -0.48,1.94 -0.96,3.89 -1.44,5.84 -0.13,0.01 -0.26,0.02 -0.38,0.03 -0.05,-0.88 -0.09,-1.79 -0.32,-2.64 -0.11,-0.4 -0.66,-0.49 -0.92,-0.21 -0.18,-0.04 -0.37,-0.06 -0.55,-0.08 -0.17,-0.01 -0.33,-0.03 -0.5,-0.04 -0.17,-0.01 -0.33,-0.03 -0.5,-0.02 -0.22,0.01 -0.43,0.03 -0.65,0.07 -0.03,0.01 -0.05,0.02 -0.08,0.03 -0.17,-0.45 -0.82,-0.55 -0.99,0 -0.58,1.88 -0.46,4.08 -0.37,6.03 0.09,2.03 0.36,4.05 0.77,6.05 0.07,0.36 0.32,0.53 0.59,0.56 0,0.03 -0.02,0.05 -0.01,0.08 0.03,0.21 0.19,0.43 0.41,0.47 0.04,0.01 0.09,0.02 0.13,0.03 0.13,0.05 0.27,0.07 0.42,0.07 0.11,0 0.23,0 0.34,0 0.02,0 0.03,0 0.05,-0.01 -1.38,5.66 -2.76,11.32 -4.17,16.98 -0.77,3.12 -1.55,6.24 -2.32,9.36 -0.38,1.52 -0.76,3.04 -1.17,4.55 -0.36,1.32 -0.78,2.64 -0.9,4.01 -1.32,0.2 -2.62,0.49 -3.89,0.88 -0.79,0.25 -1.57,0.54 -2.33,0.86 -0.2,-0.57 -0.69,-0.93 -1.2,-1.28 -0.53,-0.37 -1.11,-0.67 -1.72,-0.92 -0.31,-0.13 -0.63,-0.22 -0.95,-0.31 0.02,-0.57 0.06,-1.14 0.07,-1.72 0.11,-0.11 0.19,-0.25 0.22,-0.43 0.07,-0.55 -0.37,-1.13 -0.77,-1.47 -0.45,-0.38 -0.97,-0.62 -1.56,-0.65 -0.52,-0.03 -1.06,0.12 -1.5,0.39 -0.24,0.14 -0.51,0.36 -0.7,0.62 -0.07,-0.03 -0.15,-0.06 -0.22,-0.05 -0.25,0.04 -0.38,0.22 -0.41,0.46 -0.09,0.82 -0.04,1.66 -0.02,2.49 0.01,0.19 0.01,0.38 0.02,0.57 -0.63,0.22 -1.25,0.5 -1.82,0.85 -0.92,0.57 -2.11,1.46 -2.53,2.51 -0.06,0.1 -0.13,0.19 -0.18,0.29 -0.14,0.3 -0.23,0.6 -0.33,0.91 -0.18,0.62 -0.32,1.24 -0.41,1.88 -0.19,1.35 -0.16,2.69 0.04,4.04 0.02,0.11 0.09,0.21 0.17,0.3 -0.29,0.7 -0.57,1.4 -0.83,2.11 -0.31,0.84 -0.63,1.67 -0.93,2.51 -0.08,0.22 -0.22,0.53 -0.33,0.85 -0.44,0.21 -0.87,0.43 -1.27,0.69 -0.14,0.09 -0.05,0.33 0.12,0.28 0.25,-0.08 0.49,-0.18 0.73,-0.28 -0.13,0.15 -0.25,0.31 -0.37,0.47 -0.25,0.07 -0.49,0.15 -0.71,0.23 -0.77,0.28 -1.5,0.64 -2.15,1.13 -0.67,0.5 -1.26,1.06 -1.76,1.73 -0.2,0.27 -0.39,0.56 -0.55,0.87 -0.18,-0.04 -0.38,0.02 -0.52,0.21 -0.04,0.05 -0.06,0.13 -0.09,0.19 -0.29,0.15 -0.5,0.52 -0.29,0.9 0.03,0.05 0.06,0.09 0.09,0.14 0,0.29 0,0.57 0,0.8 -0.01,0.72 -0.01,1.44 -0.02,2.16 -0.01,0.69 -0.01,1.39 -0.01,2.08 0,0.51 -0.12,1.22 0.1,1.73 0,0.07 0.03,0.15 0.06,0.22 -1.11,0.75 -2.05,2.02 -2.53,3.26 -0.19,0.48 -0.26,1 -0.29,1.53 -0.22,0.63 -0.25,1.35 -0.28,1.98 -0.06,0.97 0.01,1.93 0.15,2.89 0.14,0.92 0.35,1.86 0.73,2.72 0.2,0.45 0.43,0.87 0.75,1.25 0.03,0.03 0.05,0.06 0.08,0.1 2.08,3.16 5.47,5.08 8.97,6.45 4.85,1.89 10.04,3.11 15.14,4.12 10.83,2.16 21.89,2.97 32.92,3.05 11.01,0.08 22.03,-0.44 33.02,-1.11 10.53,-0.64 21.12,-1.58 31.36,-4.21 5.08,-1.3 10.05,-3.03 14.78,-5.29 2.04,-0.97 4,-2.1 5.78,-3.51 0.87,-0.69 1.77,-1.5 2.52,-2.41 0.23,-0.23 0.45,-0.47 0.66,-0.73 0.54,-0.67 0.87,-1.48 1.05,-2.31 0.08,0.01 0.16,0.01 0.25,-0.01 0.1,-0.02 0.2,-0.05 0.3,-0.07 0.1,-0.01 0.21,-0.02 0.31,-0.02 0.1,0 0.19,-0.01 0.28,-0.03 0.1,-0.02 0.18,-0.07 0.27,-0.12 0.05,-0.03 0.1,-0.06 0.15,-0.09 0.31,0.06 0.62,0.11 0.93,0.14 l 0.02,0.72 c 0.01,0.25 0.01,0.49 0.02,0.74 0.01,0.17 0.01,0.35 0.04,0.52 0.03,0.16 0.1,0.29 0.2,0.4 0.02,0.03 0.02,0.08 0.05,0.1 0.03,0.02 0.06,0.05 0.08,0.07 0.19,0.34 0.72,0.53 1.04,0.65 0.42,0.15 0.9,0.2 1.34,0.24 0.9,0.07 1.89,0.01 2.57,-0.63 0.08,-0.08 0.13,-0.18 0.15,-0.29 0.21,-0.11 0.37,-0.31 0.35,-0.56 -0.03,-0.44 -0.06,-0.88 -0.13,-1.32 -0.02,-0.17 -0.06,-0.33 -0.08,-0.49 0.47,-0.04 0.91,-0.18 1.1,-0.58 0.31,-0.17 0.62,-0.33 0.92,-0.52 0.25,-0.15 0.49,-0.31 0.73,-0.47 0.26,-0.17 0.55,-0.33 0.77,-0.55 0.23,0.06 0.49,0.02 0.66,-0.17 0.14,-0.16 0.25,-0.34 0.25,-0.56 0,-0.06 -0.01,-0.13 -0.02,-0.19 -0.02,-0.19 -0.04,-0.38 -0.07,-0.56 -0.04,-0.27 -0.08,-0.55 -0.11,-0.82 -0.04,-0.27 -0.07,-0.55 -0.11,-0.82 -0.04,-0.26 -0.11,-0.51 -0.18,-0.77 0.05,-0.3 0.05,-0.64 0.07,-0.89 0.04,-0.49 0.07,-0.99 0.07,-1.48 0.01,-0.9 -0.02,-1.79 -0.16,-2.67 0.08,-0.21 0.08,-0.46 -0.03,-0.66 -0.08,-0.14 -0.2,-0.22 -0.32,-0.28 0,-0.06 0.01,-0.13 -0.01,-0.19 -0.08,-0.27 -0.16,-0.54 -0.26,-0.8 -0.05,-0.13 -0.1,-0.26 -0.15,-0.38 -0.03,-0.09 -0.07,-0.18 -0.12,-0.26 0.46,-0.06 0.88,-0.12 1.24,-0.48 0.13,-0.14 0.19,-0.32 0.22,-0.51 0.13,-0.15 0.21,-0.32 0.2,-0.53 -0.04,-0.66 -0.08,-1.31 -0.12,-1.97 -0.01,-0.21 -0.04,-0.42 -0.06,-0.64 0.2,-0.42 0.08,-1 -0.4,-1.18 -0.18,-0.16 -0.42,-0.23 -0.66,-0.1 -0.03,0.02 -0.04,0.04 -0.07,0.06 -0.04,0 -0.08,0 -0.12,0 0.05,-0.24 0.01,-0.49 -0.03,-0.74 -0.01,-0.04 -0.01,-0.09 -0.02,-0.13 0.1,-0.11 0.16,-0.24 0.16,-0.4 0,-0.2 -0.12,-0.41 -0.3,-0.53 -0.03,-0.19 -0.05,-0.37 -0.08,-0.56 -0.07,-0.43 -0.15,-0.85 -0.24,-1.27 0.07,-0.15 0.06,-0.32 -0.01,-0.48 0.01,-0.02 0.03,-0.05 0.04,-0.07 0.11,-0.4 -0.14,-0.72 -0.49,-0.86 -1.13,-0.45 -2.27,-0.91 -3.4,-1.36 -0.97,-0.39 -1.94,-0.83 -2.97,-1.07 -0.12,-0.23 -0.36,-0.37 -0.64,-0.38 -0.24,-0.01 -0.5,0.05 -0.74,0.08 -0.21,0.03 -0.42,0.06 -0.63,0.1 -0.39,0.06 -0.78,0.13 -1.17,0.19 -0.39,0.06 -0.78,0.12 -1.16,0.19 -0.01,0 -0.02,0.01 -0.03,0.01 -0.02,-0.32 -0.05,-0.65 -0.16,-0.94 1.64,-0.3 3.25,-0.72 4.83,-1.25 0.29,-0.1 0.45,-0.29 0.53,-0.52 0.16,-0.06 0.31,-0.16 0.4,-0.33 0.13,-0.23 0.17,-0.45 0.16,-0.71 0,-0.12 -0.01,-0.24 -0.01,-0.36 -0.01,-0.27 -0.02,-0.54 -0.03,-0.81 -0.01,-0.26 -0.01,-0.52 -0.04,-0.78 -0.05,-0.35 -0.05,-0.73 -0.22,-1.05 -0.07,-0.13 -0.18,-0.21 -0.31,-0.27 -0.16,-0.38 -0.46,-0.73 -0.8,-0.93 -0.67,-0.4 -1.5,-0.39 -2.26,-0.43 -1.64,-0.09 -3.29,-0.16 -4.94,-0.15 -1.6,0.01 -3.19,0.11 -4.76,0.37 -1.58,0.26 -3.27,0.62 -4.61,1.55 -0.05,0.03 -0.06,0.08 -0.09,0.12 -0.12,0.04 -0.22,0.12 -0.28,0.22 -0.1,0.02 -0.2,0.07 -0.26,0.17 -0.15,0.23 -0.2,0.58 -0.18,0.85 0.02,0.24 0.05,0.48 0.07,0.71 0.02,0.24 0.05,0.47 0.07,0.71 0.02,0.2 0.03,0.4 0.07,0.6 -0.01,0.03 -0.03,0.05 -0.03,0.08 -0.01,0.71 0.1,1.27 0.65,1.77 0.54,0.49 1.28,0.66 1.98,0.76 1.13,0.16 2.26,0.21 3.4,0.23 -0.15,0.42 -0.11,0.9 -0.1,1.35 0.01,0.45 0.02,0.9 0.04,1.35 -0.08,0.01 -0.17,0.02 -0.25,0.03 -0.02,-0.15 -0.08,-0.29 -0.19,-0.39 -0.19,-0.32 -0.51,-0.55 -0.91,-0.57 -0.06,0 -0.13,0.01 -0.19,0.02 -0.05,-0.05 -0.11,-0.09 -0.19,-0.11 -1.01,-0.2 -2.01,-0.13 -3.02,0.02 -0.82,0.13 -1.87,0.3 -2.26,1.13 -0.06,-0.01 -0.11,-0.02 -0.17,-0.01 -0.07,0.01 -0.14,0.02 -0.21,0.04 -0.04,0.01 -0.08,0.02 -0.11,0.02 -0.01,-0.13 -0.05,-0.27 -0.12,-0.4 0,-0.01 0,-0.02 0,-0.02 0,-0.02 -0.02,-0.03 -0.03,-0.04 -0.02,-0.03 -0.03,-0.06 -0.05,-0.09 -0.01,-0.02 -0.03,-0.03 -0.05,-0.05 -0.03,-0.03 -0.05,-0.07 -0.09,-0.09 -0.51,-0.58 -1.37,-0.74 -2.09,-0.86 -0.51,-0.08 -1.05,-0.16 -1.57,-0.15 -0.27,0.01 -0.54,0.04 -0.81,0.09 -0.02,-0.08 -0.04,-0.15 -0.07,-0.23 0.08,-0.09 0.14,-0.2 0.16,-0.35 0.07,-0.5 0.04,-1.02 -0.05,-1.53 0.09,-0.06 0.17,-0.13 0.23,-0.23 0.37,-0.57 0.73,-1.15 1.1,-1.73 1.91,0.3 3.82,-1.03 4.6,-2.74 0.91,-2 0.41,-4.4 -0.83,-6.15 -1.32,-1.86 -3.33,-3.01 -5.38,-3.89 -2.1,-0.9 -4.55,-1.48 -6.76,-0.59 -1.04,0.42 -1.99,1.14 -2.5,2.16 -0.46,0.93 -0.76,2.29 -0.14,3.21 0.01,0.01 0.03,0.01 0.03,0.03 -0.04,0.06 -0.07,0.12 -0.11,0.18 -0.76,-0.33 -1.57,-0.57 -2.34,-0.8 -1.27,-0.37 -2.55,-0.66 -3.84,-0.86 0.51,-0.72 0.7,-1.6 0.68,-2.48 -0.02,-1.1 -0.18,-2.21 -0.3,-3.3 -0.06,-0.56 -0.12,-1.12 -0.18,-1.68 -0.04,-0.31 -0.09,-0.62 -0.16,-0.92 -0.02,-0.09 -0.06,-0.17 -0.09,-0.26 0.43,-0.01 0.86,-0.02 1.3,-0.02 0.25,0 0.5,-0.01 0.75,-0.01 0.21,0.1 0.47,0.04 0.67,-0.1 0.18,-0.07 0.34,-0.18 0.5,-0.39 0.18,-0.24 0.09,-0.57 -0.07,-0.8 0.02,-0.49 -0.05,-0.99 -0.07,-1.46 -0.04,-0.8 -0.09,-1.6 -0.13,-2.39 -0.04,-0.77 -0.09,-1.54 -0.14,-2.3 -0.03,-0.39 -0.05,-0.77 -0.1,-1.15 -0.01,-0.09 -0.03,-0.18 -0.04,-0.28 0.19,-0.49 -0.05,-1.18 -0.73,-1.17 -1.02,0.01 -2.04,0 -3.06,0.02 -0.97,0.02 -1.95,0.01 -2.91,0.13 -0.01,-0.13 -0.01,-0.25 -0.02,-0.38 -0.03,-0.64 -0.06,-1.28 -0.11,-1.92 -0.05,-0.64 -0.02,-1.34 -0.26,-1.95 -0.05,-0.13 -0.14,-0.23 -0.25,-0.3 0,-0.03 0.01,-0.06 0.01,-0.09 -0.01,-0.32 -0.23,-0.71 -0.58,-0.76 -0.55,-0.08 -1.11,-0.04 -1.67,-0.04 -0.51,0.01 -1.02,0.01 -1.53,0.02 -0.12,0 -0.25,0.04 -0.37,0.11 -1.82,-5.67 -3.64,-11.33 -5.38,-17.03 -1.51,-4.91 -2.97,-9.83 -4.45,-14.75 3.49,-1.47 6.85,-3.23 10.02,-5.29 6.35,-4.13 11.97,-9.39 16.58,-15.4 4.66,-6.08 8.32,-12.89 10.77,-20.15 2.44,-7.25 3.64,-14.9 3.45,-22.56 -0.06,-2.43 -0.28,-4.86 -0.61,-7.27 4.67,-1.98 9.34,-3.96 14.01,-5.93 3.14,-1.33 6.27,-2.67 9.42,-3.98 1.14,-0.47 2.27,-0.95 3.41,-1.43 0.17,0.18 0.37,0.34 0.54,0.46 0.65,0.41 1.42,0.51 2.17,0.4 0.82,-0.12 1.58,-0.5 2.32,-0.87 0.32,-0.16 0.63,-0.31 0.98,-0.41 0.16,0.16 0.33,0.3 0.51,0.39 0.47,0.26 1.04,0.38 1.58,0.38 0.65,0 1.26,-0.19 1.84,-0.45 0.28,-0.12 0.54,-0.27 0.8,-0.42 0.05,-0.03 0.11,-0.06 0.16,-0.09 0.24,0.62 0.99,0.59 1.38,0.17 2.12,-0.4 4.21,-1.28 6.15,-2.19 0.99,-0.46 1.98,-0.96 2.91,-1.53 0.51,-0.31 1.04,-0.67 1.48,-1.11 0.14,0.03 0.29,0.03 0.46,-0.02 0.34,-0.09 0.68,-0.18 1.02,-0.27 0.03,-0.01 0.04,-0.02 0.07,-0.03 0.16,0.02 0.32,-0.01 0.45,-0.14 0.09,-0.1 0.17,-0.2 0.24,-0.31 0.05,-0.08 0.09,-0.17 0.13,-0.25 0.08,-0.14 0.17,-0.28 0.26,-0.41 0.13,-0.16 0.27,-0.3 0.43,-0.43 -0.05,0.04 -0.1,0.07 -0.14,0.11 0.13,-0.1 0.26,-0.2 0.39,-0.31 0.05,-0.2 0.14,-0.43 0.13,-0.58 z m -40.87,-19.59 c -0.01,0.01 -0.02,0.04 -0.02,0.05 -0.02,0.04 -0.05,0.08 -0.07,0.12 0.01,-0.01 0.01,0 -0.01,0.02 0,0.01 -0.01,0.01 -0.01,0.02 0,0.01 -0.01,0.01 -0.01,0.02 0,-0.01 0,-0.01 0.01,-0.02 -0.01,0.02 -0.03,0.03 -0.04,0.05 -0.02,0.02 -0.03,0.03 -0.05,0.05 -0.04,0.02 -0.08,0.05 -0.12,0.08 -0.01,0.01 -0.02,0.01 -0.03,0.02 -0.01,0 -0.02,0.01 -0.02,0.01 -0.06,0.02 -0.11,0.03 -0.17,0.05 -0.01,0 -0.03,0.01 -0.04,0.01 -0.05,0 -0.1,0.01 -0.15,0.01 -0.02,0 -0.05,0 -0.07,0 -0.01,0 -0.01,0 -0.01,0 -0.05,-0.01 -0.09,-0.02 -0.14,-0.03 -0.03,-0.01 -0.05,-0.02 -0.08,-0.02 -0.04,-0.02 -0.08,-0.04 -0.12,-0.06 -0.02,-0.01 -0.05,-0.04 -0.07,-0.05 0.01,0 0.01,0.01 0.02,0.01 -0.02,-0.02 -0.04,-0.04 -0.06,-0.07 0,0 -0.02,-0.01 -0.03,-0.03 0,0 0,0 0,0 -0.01,-0.01 -0.01,-0.02 -0.02,-0.02 0.01,0.01 0.01,0.01 0.02,0.02 -0.01,-0.02 -0.02,-0.03 -0.03,-0.05 -0.01,-0.02 -0.02,-0.04 -0.04,-0.07 -0.02,-0.05 -0.03,-0.11 -0.05,-0.16 -0.01,-0.03 -0.01,-0.06 -0.02,-0.09 0.01,0.02 0.01,0.03 0.01,0.04 0,0 0,-0.01 0,-0.01 0,-0.07 0,-0.14 0,-0.21 0,-0.02 0,-0.03 0,-0.05 0,-0.01 0,-0.01 0,-0.02 0.01,-0.04 0.02,-0.07 0.03,-0.11 0.02,-0.01 0.04,-0.02 0.06,-0.03 0.11,-0.07 0.22,-0.16 0.32,-0.24 -0.05,0.04 -0.1,0.07 -0.14,0.11 0.07,-0.05 0.15,-0.09 0.23,-0.13 0.1,-0.03 0.19,-0.06 0.29,-0.08 -0.01,0 -0.02,0 -0.03,0 0.03,0 0.06,-0.01 0.08,-0.02 0.02,-0.01 0.03,-0.01 0.05,-0.02 0,0 0.01,-0.01 0.03,-0.01 0.01,0 0.02,-0.01 0.03,-0.01 0.02,0 0.03,0.01 0.05,0.01 0.02,0.01 0.04,0.01 0.06,0.02 0.01,0 0.01,0 0.01,0 0.04,0.02 0.08,0.04 0.12,0.07 0,-0.01 -0.01,-0.01 -0.01,-0.01 0.02,0.02 0.05,0.04 0.07,0.06 0.02,0.02 0.04,0.04 0.06,0.06 -0.02,-0.01 -0.02,0 0.03,0.04 0,0 0,0 0,0 0,0 -0.01,-0.01 -0.01,-0.01 0.01,0.01 0.02,0.02 0.02,0.03 -0.01,0 -0.01,-0.01 -0.01,-0.01 0.02,0.03 0.04,0.06 0.05,0.08 0.01,0.02 0.02,0.04 0.03,0.06 0,-0.01 0,-0.01 0,-0.01 0,0.01 0.01,0.01 0.01,0.02 0,0 0,0 0,0 0,0 0,-0.01 0,-0.01 0.01,0.07 0.02,0.07 0.02,0.05 0.01,0.03 0.02,0.05 0.03,0.08 0.01,0.03 0.01,0.06 0.02,0.09 0,0 0,0.01 0.01,0.05 0,0 0,0 0,0 0,0 0,0 0,0 0,0.01 0,0.02 0.01,0.04 0,-0.01 0,-0.02 -0.01,-0.03 0,0.03 0,0.07 0,0.1 0,0.04 -0.02,0.13 0.01,-0.01 0,0.02 -0.01,0.05 -0.01,0.07 -0.01,0.05 -0.02,0.11 -0.04,0.16 0,0 0,0.01 0,0.01 -0.06,-0.08 -0.06,-0.08 -0.05,-0.09 z m -2.68,-4.22 c 0.42,0.06 0.75,0.27 1.06,0.54 0.58,0.52 1.11,1.1 1.59,1.71 -0.08,-0.04 -0.16,-0.09 -0.25,-0.11 -0.02,0 -0.04,-0.01 -0.06,-0.01 -0.02,0 -0.02,0 -0.02,0 -0.06,-0.03 -0.12,-0.05 -0.18,-0.08 -0.12,-0.05 -0.25,-0.07 -0.39,-0.06 -0.29,0.03 -0.53,0.09 -0.79,0.2 -0.26,0.12 -0.45,0.29 -0.62,0.53 -0.1,0.15 -0.11,0.34 -0.06,0.51 -0.16,0.38 -0.22,0.77 -0.13,1.18 0.17,0.81 0.93,1.34 1.73,1.36 0.81,0.03 1.55,-0.5 1.76,-1.29 0.06,-0.24 0.07,-0.49 0.05,-0.75 0.47,0.75 0.89,1.52 1.25,2.33 -0.54,0.27 -1.09,0.51 -1.65,0.75 -0.41,0.18 -0.81,0.35 -1.22,0.53 -0.17,0.07 -0.34,0.15 -0.51,0.23 -0.45,-1.06 -1.16,-2.05 -1.87,-2.88 -0.54,-0.64 -1.16,-1.2 -1.84,-1.69 -0.55,-0.4 -1.24,-0.88 -1.94,-1.06 0.04,-0.07 0.08,-0.14 0.12,-0.21 0.03,-0.04 0.05,-0.08 0.08,-0.13 0,-0.01 0.05,-0.07 0.06,-0.09 0.05,-0.07 0.11,-0.14 0.17,-0.2 0.01,-0.01 0.03,-0.03 0.04,-0.04 0.21,0.29 0.49,0.6 0.83,0.57 0.16,-0.02 0.31,-0.11 0.42,-0.24 0.05,0.02 0.09,0.06 0.14,0.08 0.11,0.04 0.22,0.04 0.34,0.05 0.07,0.01 0.15,0 0.22,0 0.25,-0.02 0.46,-0.07 0.69,-0.18 0.09,-0.04 0.17,-0.11 0.25,-0.18 0.03,0 0.06,0 0.09,-0.01 0.32,-0.1 0.56,-0.45 0.45,-0.79 -0.06,-0.2 -0.14,-0.4 -0.21,-0.6 0.14,0.02 0.27,0.01 0.4,0.03 z m 3.33,8.51 c -0.77,0.32 -1.55,0.65 -2.32,0.98 0,-0.02 0.01,-0.04 0.01,-0.07 0.02,-0.09 0.04,-0.18 0.06,-0.27 0.01,-0.05 0.02,-0.09 0.04,-0.13 0.01,-0.04 0.08,-0.19 0.01,-0.02 0.02,-0.05 0.05,-0.11 0.07,-0.16 0.06,-0.03 0.13,-0.06 0.19,-0.09 0.4,-0.05 0.78,-0.2 1.15,-0.34 0.41,-0.16 0.83,-0.32 1.24,-0.47 0.67,-0.26 1.35,-0.51 2.05,-0.72 0,0.05 0.01,0.09 0.01,0.14 -0.3,0.15 -0.6,0.33 -0.89,0.46 -0.54,0.24 -1.08,0.47 -1.62,0.69 z m -4.12,-1.6 c -0.28,-0.46 -0.6,-0.89 -0.95,-1.3 -0.36,-0.42 -0.76,-0.83 -1.28,-1.07 -0.06,-0.03 -0.11,-0.02 -0.17,-0.03 -0.03,-0.17 -0.04,-0.35 -0.03,-0.52 -0.43,0.19 -0.86,0.38 -1.3,0.56 0,-0.01 -0.01,-0.03 -0.01,-0.04 0.01,-0.18 -0.01,-0.35 -0.01,-0.53 -0.01,-0.22 0.01,-0.44 0.03,-0.66 0,-0.01 0.01,-0.08 0.01,-0.1 0.01,-0.03 0.02,-0.09 0.02,-0.1 0.02,-0.08 0.04,-0.16 0.06,-0.24 0.22,0.14 0.46,0.26 0.68,0.39 0.31,0.18 0.61,0.38 0.9,0.6 0.61,0.46 1.16,1 1.64,1.59 0.47,0.58 0.81,1.22 1.12,1.89 0.11,0.23 0.18,0.47 0.26,0.71 -0.01,0.04 -0.04,0.08 -0.05,0.12 -0.02,0.1 -0.04,0.2 -0.06,0.3 -0.01,0.04 -0.01,0.07 -0.02,0.11 -0.03,-0.07 -0.05,-0.14 -0.08,-0.2 -0.22,-0.51 -0.46,-1 -0.76,-1.48 z m -8.02,-0.48 c -4.35,1.89 -8.7,3.76 -13.06,5.63 -0.55,-0.78 -1.1,-1.55 -1.68,-2.3 0.11,-0.05 0.22,-0.09 0.33,-0.14 2.6,-1.06 5.21,-2.12 7.81,-3.17 2.03,-0.82 4.07,-1.61 6.07,-2.51 0.2,0.38 0.65,0.51 1.03,0.42 0.07,0.1 0.15,0.18 0.25,0.25 0.17,0.11 0.36,0.1 0.55,0.07 0.07,-0.01 0.14,-0.02 0.21,-0.04 0.12,-0.03 0.24,-0.1 0.36,-0.16 l 0.78,-0.37 c 0.13,-0.06 0.26,-0.12 0.39,-0.19 0.05,-0.03 0.09,-0.08 0.13,-0.12 0.02,0.11 0.02,0.22 0.04,0.33 -0.09,0.09 -0.16,0.19 -0.19,0.31 -0.01,0.05 -0.02,0.1 -0.03,0.15 -0.02,0.1 -0.03,0.19 -0.02,0.29 0.01,0.05 0.01,0.11 0.02,0.16 0,0.03 0.01,0.05 0.01,0.08 -1,0.44 -2,0.87 -3,1.31 z m -40.8,17.49 c 1.28,-1.66 2.55,-3.32 3.83,-4.98 2.41,-1 4.82,-2.03 7.23,-3.02 2.43,-1 4.87,-2 7.31,-3 0.65,0.77 1.27,1.56 1.88,2.36 -6.74,2.89 -13.49,5.77 -20.25,8.64 z m -32,13.41 c -0.48,-0.89 -0.96,-1.77 -1.43,-2.66 8.21,-3.52 16.44,-7 24.67,-10.47 -1.3,1.69 -2.61,3.38 -3.92,5.07 -6.43,2.7 -12.87,5.38 -19.32,8.06 z m -5.03,2.08 c -0.1,-0.19 -0.2,-0.38 -0.3,-0.57 0.29,-0.08 0.58,-0.15 0.87,-0.23 0.06,0.06 0.12,0.13 0.19,0.18 0.08,0.07 0.16,0.13 0.24,0.2 -0.33,0.14 -0.66,0.28 -1,0.42 z m -17.12,7.02 c -1.82,-0.16 -3.65,-0.32 -5.47,-0.48 5.23,-2.27 10.45,-4.55 15.68,-6.8 1.37,-0.59 2.74,-1.17 4.11,-1.75 0.45,0.87 0.9,1.74 1.35,2.61 -5.21,2.15 -10.44,4.29 -15.67,6.42 z m 12.37,-2.88 c 0.03,0.21 0.07,0.41 0.1,0.61 0.02,0.1 0.03,0.2 0.05,0.29 0.02,0.12 0.06,0.21 0.11,0.33 0.01,0.03 0.04,0.02 0.06,0.04 -0.66,0.08 -1.31,0.19 -1.95,0.33 -0.02,-0.19 -0.05,-0.38 -0.08,-0.56 -0.03,-0.2 -0.06,-0.4 -0.1,-0.59 0.09,-0.04 0.19,-0.07 0.28,-0.11 0.5,-0.2 0.99,-0.4 1.49,-0.61 z m 5.52,2.66 c 2.51,-0.14 5.02,-0.27 7.53,-0.33 5.03,-0.12 10.06,0 15.08,0.31 2.75,0.17 5.49,0.42 8.23,0.73 -0.09,0.68 -0.05,1.41 0,2.11 -0.02,-0.03 -0.03,-0.06 -0.05,-0.09 -0.08,-0.15 -0.31,-0.02 -0.23,0.14 0.11,0.21 0.21,0.43 0.32,0.65 0,0.02 0,0.04 0,0.06 0.04,1.11 0.09,2.23 0.13,3.34 0.07,2.31 0.09,4.62 0.08,6.93 -0.02,2.31 -0.12,4.62 -0.28,6.93 -0.08,1.11 -0.17,2.23 -0.24,3.34 -0.03,0.52 -0.07,1.05 -0.11,1.57 -0.79,0.01 -1.59,0.11 -2.38,0.21 -0.02,-0.26 -0.05,-0.53 -0.07,-0.79 -0.01,-0.07 -0.06,-0.14 -0.14,-0.14 -0.07,0 -0.14,0.06 -0.14,0.14 0.02,0.27 0.05,0.55 0.07,0.82 -0.21,0.03 -0.42,0.05 -0.63,0.07 -0.32,0.03 -0.65,0.05 -0.97,0.08 0.02,-0.11 0.01,-0.23 0,-0.35 -0.02,-0.18 -0.05,-0.35 -0.05,-0.53 0.01,-0.4 0.06,-0.8 0.08,-1.2 0.05,-0.78 0.03,-1.57 0.04,-2.35 0,-0.13 -0.2,-0.13 -0.2,0 -0.04,0.78 -0.09,1.57 -0.08,2.35 0,0.38 0.03,0.77 0.02,1.15 0,0.22 -0.05,0.41 -0.08,0.63 -0.02,0.11 -0.03,0.22 -0.01,0.32 -0.67,0.06 -1.34,0.11 -2.01,0.16 0.06,-0.3 -0.02,-0.65 -0.02,-0.94 0,-0.46 0.03,-0.92 0.05,-1.37 0.02,-0.44 0.07,-0.88 0.07,-1.32 0.01,-0.46 0.01,-0.92 0.02,-1.37 0,-0.16 -0.24,-0.15 -0.24,0 -0.02,0.44 -0.03,0.88 -0.05,1.32 -0.02,0.46 0.01,0.91 0,1.37 0,0.44 0,0.88 -0.02,1.32 -0.01,0.31 -0.12,0.69 -0.06,1.02 -0.05,0 -0.1,0.01 -0.15,0.01 -0.57,0.04 -1.15,0.05 -1.72,0.09 0.02,-0.06 0.04,-0.12 0.06,-0.18 0.02,-0.07 -0.07,-0.12 -0.12,-0.08 -0.02,-0.38 -0.08,-0.76 -0.1,-1.13 -0.02,-0.48 -0.03,-0.97 -0.03,-1.45 0,-0.99 0.04,-1.98 0.13,-2.96 0.01,-0.15 -0.22,-0.15 -0.23,0 -0.1,1 -0.16,2.01 -0.17,3.02 0,0.5 0.01,1.01 0.03,1.51 0.02,0.42 0,0.87 0.07,1.29 -0.54,0.03 -1.08,0.05 -1.62,0.08 0.01,-0.3 0.02,-0.6 0.03,-0.91 0.04,-0.86 -0.01,-1.73 0,-2.59 0,-0.09 -0.14,-0.09 -0.14,0 -0.03,0.87 -0.12,1.73 -0.13,2.59 0,0.31 -0.01,0.61 -0.01,0.92 -0.06,0 -0.11,0.01 -0.17,0.01 -0.05,-0.2 -0.1,-0.4 -0.14,-0.59 -0.14,-0.57 -0.29,-1.14 -0.48,-1.69 -0.36,-1.01 -0.85,-1.97 -1.52,-2.81 -0.05,-0.07 -0.11,-0.12 -0.17,-0.19 0.11,-0.1 0.19,-0.23 0.18,-0.38 -0.01,-0.1 -0.13,-0.11 -0.17,-0.02 -0.03,0.1 -0.09,0.18 -0.17,0.24 -0.18,-0.2 -0.38,-0.39 -0.58,-0.56 0.05,-0.06 0.11,-0.1 0.2,-0.12 0.07,-0.02 0.16,-0.02 0.24,0.01 0.05,0.01 0.07,0.02 0.11,0.05 0.03,0.02 0.02,0.01 0.04,0.03 0.01,0.01 0.02,0.02 0.02,0.02 0,0 0.03,0.03 0.02,0.02 0.04,0.05 0.1,0.07 0.15,0.04 0.05,-0.03 0.08,-0.1 0.04,-0.15 -0.24,-0.32 -0.73,-0.32 -0.99,-0.04 -0.14,-0.11 -0.3,-0.21 -0.45,-0.31 0.07,-0.22 0.14,-0.43 0.21,-0.65 0.02,-0.06 -0.07,-0.09 -0.1,-0.04 -0.1,0.19 -0.19,0.39 -0.28,0.58 -0.45,-0.28 -0.94,-0.49 -1.45,-0.64 0.04,-0.24 0.03,-0.49 0.06,-0.73 0.03,-0.29 0.04,-0.59 0.05,-0.88 0.01,-0.36 0.02,-0.73 0.03,-1.09 0.42,-0.16 0.83,-0.35 1.23,-0.57 v 0.19 c 0,0.2 0,0.41 -0.01,0.61 0,0.2 -0.03,0.41 0.02,0.6 0.04,0.13 0.22,0.13 0.26,0 0.05,-0.19 0.03,-0.4 0.02,-0.6 0,-0.2 0,-0.41 -0.01,-0.61 v -0.36 c 0.49,-0.3 0.96,-0.65 1.39,-1.04 -0.05,0.66 -0.1,1.31 -0.14,1.97 -0.05,0.77 -0.14,1.56 -0.07,2.33 0.01,0.11 0.18,0.15 0.21,0.03 0.16,-0.75 0.16,-1.55 0.19,-2.31 0.04,-0.76 0.06,-1.52 0.09,-2.28 0.37,-0.38 0.7,-0.8 1,-1.24 -0.01,0.49 -0.03,0.97 -0.03,1.46 l -0.01,1.08 c 0,0.33 -0.03,0.71 0.05,1.03 0.03,0.1 0.18,0.1 0.21,0 0.08,-0.32 0.05,-0.7 0.05,-1.03 l -0.01,-1.08 c 0,-0.62 -0.02,-1.24 -0.04,-1.86 0.11,-0.19 0.25,-0.38 0.35,-0.58 1.73,-3.6 0.51,-7.96 -2.65,-10.36 -0.21,-0.16 -0.44,-0.26 -0.65,-0.39 -0.07,-0.24 -0.15,-0.48 -0.22,-0.72 -0.06,-0.18 -0.34,-0.11 -0.29,0.08 0.04,0.13 0.08,0.26 0.11,0.4 -1.57,-0.83 -3.35,-1.11 -5.13,-0.82 -0.37,0.06 -0.74,0.15 -1.11,0.26 -0.01,-0.02 -0.02,-0.04 -0.04,-0.06 -0.03,-0.04 -0.09,-0.06 -0.13,-0.03 -0.04,0.03 -0.06,0.09 -0.03,0.13 0,0.01 0.01,0.01 0.01,0.02 -0.89,0.29 -1.74,0.72 -2.46,1.3 v -0.72 c 0,-0.14 -0.22,-0.14 -0.22,0 v 0.81 c 0,0.03 0.01,0.06 0.01,0.09 -0.51,0.44 -0.95,0.95 -1.27,1.55 -0.01,0.02 -0.01,0.03 -0.02,0.05 -0.91,1.13 -1.48,2.51 -1.67,3.98 -0.5,4.06 2.22,7.85 6.12,8.95 0.74,0.21 1.49,0.27 2.24,0.25 0.01,0.3 0.02,0.6 0.03,0.9 0.01,0.19 0.01,0.38 0.03,0.58 0.01,0.17 0.01,0.36 0.06,0.53 -0.55,0.06 -1.09,0.18 -1.6,0.36 0,-0.15 0.02,-0.31 0.02,-0.47 0,-0.32 0,-0.63 0,-0.95 0,-0.14 -0.21,-0.14 -0.21,0 0,0.32 0,0.63 0,0.95 0,0.18 0.01,0.36 0.02,0.53 -0.38,0.14 -0.75,0.29 -1.1,0.48 0.02,-0.18 0.02,-0.36 0.02,-0.53 L 592.14,263 c 0,-0.59 -0.02,-1.18 -0.03,-1.76 0,-0.17 -0.27,-0.17 -0.27,0 -0.01,0.59 -0.02,1.18 -0.03,1.76 l -0.01,0.86 c 0,0.22 0,0.47 0.05,0.69 -0.7,0.42 -1.36,0.91 -1.92,1.52 -0.44,0.48 -0.82,1 -1.17,1.55 -0.01,-0.31 -0.02,-0.62 -0.03,-0.93 0,-0.12 -0.18,-0.12 -0.19,0 -0.01,0.39 -0.03,0.78 -0.04,1.17 0,0.06 0,0.13 0,0.19 -0.1,0.17 -0.22,0.34 -0.31,0.51 -0.39,0.74 -0.79,1.55 -0.97,2.39 -0.16,-0.01 -0.33,-0.01 -0.49,-0.02 -0.05,-0.43 -0.11,-0.86 -0.14,-1.29 -0.05,-0.7 -0.07,-1.4 -0.07,-2.11 0.01,-1.43 0.13,-2.87 0.36,-4.28 0.02,-0.12 -0.16,-0.17 -0.19,-0.05 -0.28,1.41 -0.43,2.83 -0.46,4.27 -0.01,0.72 0,1.44 0.05,2.16 0.03,0.42 0.06,0.85 0.1,1.28 -0.31,-0.01 -0.63,-0.02 -0.94,-0.03 0.01,-0.49 0,-0.98 0,-1.46 0,-0.72 -0.04,-1.44 -0.06,-2.16 -0.02,-0.7 0.01,-1.4 0.02,-2.1 0.01,-0.74 -0.04,-1.48 -0.04,-2.22 0,-0.07 -0.1,-0.07 -0.11,0 -0.01,0.72 -0.07,1.44 -0.07,2.16 0,0.72 0.02,1.44 -0.01,2.16 -0.03,0.7 -0.08,1.4 -0.09,2.1 -0.01,0.49 -0.03,1 -0.02,1.51 -0.17,-0.01 -0.35,-0.01 -0.52,-0.02 -0.16,-0.01 -0.32,-0.02 -0.47,-0.03 0.01,-0.25 0.01,-0.51 0.02,-0.76 0.02,-0.77 0.01,-1.55 0.01,-2.32 0,-0.13 -0.2,-0.13 -0.2,0 -0.04,0.77 -0.1,1.55 -0.12,2.32 -0.01,0.25 -0.02,0.49 -0.02,0.74 -0.37,-0.02 -0.73,-0.05 -1.1,-0.07 0,-0.12 0,-0.23 0,-0.34 0,-0.26 0,-0.52 0,-0.78 -0.01,-0.53 -0.03,-1.06 -0.05,-1.6 0,-0.11 -0.16,-0.11 -0.17,0 -0.02,0.53 -0.05,1.06 -0.05,1.6 0,0.26 0,0.52 0,0.78 0,0.11 0,0.21 0,0.32 -0.46,-0.04 -0.92,-0.07 -1.38,-0.11 0.04,-0.79 0.03,-1.59 0.05,-2.38 0.02,-1.05 0.01,-2.09 0,-3.14 0,-0.12 -0.18,-0.12 -0.18,0 -0.05,1.05 -0.12,2.09 -0.14,3.14 -0.02,0.78 -0.06,1.57 -0.06,2.35 -0.49,-0.04 -0.98,-0.07 -1.48,-0.1 0.04,-0.51 -0.09,-1.06 -0.11,-1.57 -0.03,-0.55 0.01,-1.09 0.05,-1.64 0.08,-1.12 0.17,-2.23 0.35,-3.34 0.03,-0.18 -0.24,-0.26 -0.28,-0.08 -0.2,1.11 -0.35,2.23 -0.36,3.36 -0.01,0.57 0.03,1.13 0.03,1.7 0,0.5 -0.05,1.06 0.06,1.55 -0.4,-0.02 -0.79,-0.04 -1.19,-0.06 -0.02,-0.78 -0.05,-1.55 -0.04,-2.33 0.02,-1.13 0.04,-2.26 0.02,-3.39 0,-0.16 -0.24,-0.16 -0.24,0 -0.02,1.13 0,2.26 0.02,3.39 0.01,0.78 -0.01,1.55 -0.03,2.32 -0.16,-0.01 -0.32,-0.01 -0.48,-0.01 -0.09,-0.78 -0.2,-1.56 -0.28,-2.33 -0.11,-1.1 -0.21,-2.2 -0.31,-3.3 -0.2,-2.28 -0.38,-4.56 -0.44,-6.85 -0.06,-2.28 -0.07,-4.57 -0.04,-6.86 0.02,-1.1 0.05,-2.21 0.09,-3.31 0.04,-0.97 0.08,-1.96 0.03,-2.94 2.43,0.06 4.85,-0.29 7.24,-0.42 z m 38.23,12.81 c 0.98,0.09 1.96,0.18 2.94,0.28 8.71,0.82 17.43,1.55 26.14,2.39 0.35,0.03 0.61,-0.13 0.77,-0.35 -1.14,6.4 -3.33,12.59 -6.45,18.29 -3.22,5.88 -7.35,11.23 -12.27,15.79 -2.94,2.73 -6.16,5.14 -9.6,7.21 -0.37,-0.84 -0.77,-1.64 -1.3,-2.4 -0.61,-0.86 -1.13,-1.75 -1.65,-2.66 -0.95,-1.66 -1.86,-3.34 -2.79,-5.01 -1.88,-3.42 -3.76,-6.84 -5.64,-10.26 -0.45,-0.82 -0.89,-1.65 -1.34,-2.47 0.34,-1.07 0.83,-2.07 1.45,-3.02 0.67,-1.04 1.46,-2.03 2.33,-2.93 0.03,-0.01 0.07,-0.01 0.1,-0.02 0.3,0.21 0.67,0.29 1.01,0.1 0.67,-0.39 0.68,-1.02 0.72,-1.72 0.04,-0.56 0.07,-1.11 0.1,-1.67 0.06,-1.19 0.09,-2.39 0.1,-3.58 0.02,-1.9 0.02,-3.8 0.02,-5.69 1.78,-0.77 3.57,-1.52 5.36,-2.28 z m 5.74,-2.42 c -0.01,0.06 -0.02,0.12 -0.03,0.18 -0.04,0.22 -0.07,0.44 -0.11,0.66 -0.01,0.08 -0.03,0.18 -0.04,0.27 -0.67,-0.06 -1.34,-0.13 -2.01,-0.19 0.73,-0.31 1.46,-0.62 2.19,-0.92 z m 24.67,-10.44 c 0.25,2.55 0.33,5.1 0.23,7.66 -0.12,-0.13 -0.26,-0.23 -0.47,-0.27 -0.95,-0.16 -1.88,-0.28 -2.85,-0.25 -1.05,0.04 -2.08,-0.01 -3.13,-0.08 -1.91,-0.11 -3.81,-0.27 -5.72,-0.42 -1.07,-0.08 -2.14,-0.16 -3.21,-0.25 5.05,-2.12 10.1,-4.25 15.15,-6.39 z m -0.42,14.35 c -0.08,-0.25 -0.27,-0.45 -0.62,-0.48 -0.23,-0.02 -0.46,-0.05 -0.69,-0.07 0.03,-0.01 0.06,0 0.08,-0.03 0.06,-0.1 0.09,-0.21 0.13,-0.33 0.2,0.01 0.39,0.01 0.59,-0.02 0.11,-0.02 0.15,-0.17 0.03,-0.21 -0.17,-0.05 -0.34,-0.08 -0.51,-0.11 0.02,-0.09 0.05,-0.19 0.07,-0.27 0.08,-0.35 0.16,-0.69 0.24,-1.04 0.03,-0.13 0.06,-0.25 0.09,-0.38 0.16,0.02 0.33,0.04 0.49,0.04 0.09,0 0.12,-0.14 0.02,-0.17 -0.15,-0.04 -0.31,-0.06 -0.46,-0.08 0.05,-0.24 0.11,-0.48 0.16,-0.73 0.3,0.02 0.59,0.01 0.88,-0.03 -0.13,1.32 -0.29,2.62 -0.5,3.91 z m -23.9,-3.65 c 0.02,-0.13 0.04,-0.27 0.06,-0.4 0.45,0.01 0.91,0.03 1.36,0.04 0,0.03 -0.01,0.05 -0.01,0.08 -0.03,0.22 -0.07,0.44 -0.1,0.66 -0.03,0.21 -0.08,0.44 -0.03,0.64 -0.41,-0.04 -0.82,-0.08 -1.23,-0.12 -0.07,-0.01 -0.13,-0.01 -0.2,-0.02 0.02,-0.08 0.03,-0.15 0.04,-0.22 0.04,-0.22 0.07,-0.44 0.11,-0.66 z m 21.07,1.17 c 0.04,-0.24 0.08,-0.48 0.11,-0.71 0.07,0.01 0.14,0.02 0.21,0.03 0.39,0.05 0.78,0.09 1.17,0.14 0.12,0.01 0.24,0.03 0.36,0.05 -0.03,0.11 -0.05,0.22 -0.08,0.32 -0.08,0.33 -0.17,0.66 -0.25,1 -0.03,0.12 -0.05,0.25 -0.07,0.37 -0.09,-0.01 -0.17,-0.02 -0.26,-0.02 l -1.22,-0.09 c -0.05,0 -0.09,-0.01 -0.14,-0.01 0.01,-0.05 0.01,-0.1 0.02,-0.14 0.05,-0.32 0.1,-0.63 0.15,-0.94 z m 1.42,-1.5 c 0.22,0.03 0.44,0.05 0.67,0.08 -0.06,0.24 -0.12,0.48 -0.18,0.71 -0.11,-0.01 -0.22,-0.02 -0.32,-0.04 -0.41,-0.05 -0.81,-0.1 -1.22,-0.16 -0.07,-0.01 -0.15,-0.02 -0.22,-0.03 0.04,-0.27 0.09,-0.54 0.13,-0.82 0.37,0.12 0.75,0.21 1.14,0.26 z m -2.01,2.92 c -0.01,0.1 -0.02,0.21 -0.02,0.31 -1.73,-0.16 -3.47,-0.33 -5.2,-0.5 0.29,0.01 0.58,0.03 0.87,0.04 1.45,0.06 2.91,0.18 4.35,0.15 z m 0.37,0 c 0.01,0 0.02,0 0.03,0 0.04,0 0.08,0.01 0.11,0.01 0.39,0.04 0.78,0.07 1.17,0.11 0.1,0.01 0.19,0.01 0.29,0.02 -0.02,0.1 -0.03,0.19 -0.02,0.29 0,0.04 0.04,0.07 0.07,0.09 -0.58,-0.05 -1.16,-0.11 -1.74,-0.17 0.04,-0.12 0.07,-0.23 0.09,-0.35 z m 3.55,-3.08 c -0.01,0 -0.01,-0.01 -0.01,-0.01 -0.27,-0.03 -0.54,-0.04 -0.81,-0.05 0.03,-0.13 0.06,-0.26 0.09,-0.39 0.05,-0.21 -0.27,-0.3 -0.32,-0.09 -0.04,0.15 -0.08,0.3 -0.11,0.45 -0.26,-0.02 -0.51,-0.03 -0.77,-0.07 -0.62,-0.1 -1.24,-0.26 -1.83,-0.48 -0.2,-0.07 -0.28,0.25 -0.09,0.32 0.15,0.05 0.3,0.09 0.45,0.14 l -0.14,0.88 c -0.62,-0.08 -1.24,-0.16 -1.87,-0.24 -0.15,-0.02 -0.15,0.21 0,0.23 0.08,0.01 0.16,0.02 0.24,0.03 -0.03,0.23 -0.06,0.46 -0.1,0.69 -0.02,0.12 -0.04,0.25 -0.05,0.37 -0.02,0.13 -0.04,0.25 -0.01,0.38 0.02,0.11 0.19,0.13 0.24,0.03 0.06,-0.11 0.07,-0.23 0.09,-0.35 0.02,-0.12 0.04,-0.24 0.05,-0.36 0.03,-0.24 0.07,-0.47 0.1,-0.71 0,0 0,-0.01 0,-0.01 0.42,0.05 0.85,0.1 1.27,0.15 l -0.11,0.7 c -0.05,0.32 -0.1,0.64 -0.15,0.97 -0.01,0.04 -0.02,0.09 -0.02,0.13 -0.65,-0.05 -1.29,-0.1 -1.94,-0.15 -0.1,-0.01 -0.15,0.06 -0.15,0.14 -0.53,-0.02 -1.06,-0.04 -1.59,-0.06 -1.48,-0.07 -2.97,-0.14 -4.45,-0.2 -1.08,-0.05 -2.16,-0.09 -3.24,-0.14 -2.55,-0.26 -5.11,-0.51 -7.66,-0.76 0.11,-0.17 0.12,-0.4 0.16,-0.59 0.04,-0.22 0.08,-0.44 0.11,-0.66 0.01,-0.05 0.02,-0.1 0.02,-0.14 0.43,0.02 0.85,0.03 1.28,0.05 l -0.09,0.32 c -0.07,0.25 -0.21,0.56 -0.17,0.82 0.02,0.1 0.18,0.14 0.24,0.06 0.16,-0.2 0.2,-0.54 0.26,-0.79 0.04,-0.13 0.07,-0.26 0.11,-0.39 0.36,0.02 0.72,0.04 1.09,0.06 0,0.01 0,0.02 -0.01,0.03 -0.04,0.27 -0.1,0.59 -0.03,0.85 0.04,0.16 0.25,0.14 0.31,0 0.09,-0.24 0.07,-0.54 0.1,-0.8 0,-0.02 0.01,-0.04 0.01,-0.07 0.52,0.03 1.04,0.06 1.56,0.1 -0.02,0.06 -0.03,0.12 -0.05,0.18 -0.05,0.18 -0.09,0.37 -0.14,0.55 -0.04,0.18 -0.12,0.37 -0.11,0.56 0.01,0.16 0.2,0.21 0.29,0.08 0.1,-0.16 0.14,-0.35 0.2,-0.53 0.05,-0.17 0.11,-0.33 0.16,-0.5 0.03,-0.1 0.05,-0.2 0.08,-0.3 0.65,0.05 1.31,0.1 1.96,0.16 0.06,0.09 0.18,0.12 0.26,0.02 0.47,0.04 0.93,0.1 1.4,0.15 -0.01,0.02 -0.02,0.05 -0.03,0.07 -0.08,0.21 -0.22,0.45 -0.22,0.67 0,0.13 0.17,0.21 0.26,0.11 0.15,-0.17 0.21,-0.43 0.29,-0.64 0.02,-0.06 0.04,-0.11 0.07,-0.17 0.45,0.05 0.9,0.1 1.35,0.15 -0.02,0.07 -0.04,0.13 -0.05,0.2 -0.03,0.1 -0.05,0.2 -0.08,0.3 -0.03,0.1 -0.07,0.2 -0.03,0.3 0.03,0.08 0.13,0.15 0.22,0.09 0.15,-0.11 0.17,-0.37 0.22,-0.54 0.03,-0.1 0.05,-0.19 0.08,-0.29 0.44,0.06 0.88,0.12 1.32,0.18 0,0.02 -0.01,0.04 -0.01,0.06 -0.03,0.22 -0.09,0.49 -0.02,0.71 0.04,0.14 0.23,0.13 0.28,0 0.07,-0.2 0.06,-0.45 0.09,-0.66 0,-0.02 0.01,-0.04 0.01,-0.06 0.05,0.01 0.09,0.01 0.14,0.02 0.31,0.04 0.63,0.09 0.94,0.14 0.1,0.01 0.19,0.03 0.29,0.05 0,0.01 -0.01,0.02 -0.01,0.03 -0.08,0.27 -0.19,0.55 -0.21,0.84 -0.01,0.16 0.22,0.21 0.29,0.08 0.14,-0.25 0.2,-0.54 0.28,-0.82 0.01,-0.03 0.02,-0.06 0.03,-0.09 0.07,0 0.14,0.02 0.21,0.01 0.21,-0.01 0.24,-0.28 0.05,-0.36 -0.05,-0.02 -0.1,-0.02 -0.15,-0.03 0.03,-0.11 0.06,-0.22 0.09,-0.32 0.16,-0.55 0.32,-1.09 0.48,-1.64 0.07,-0.22 -0.28,-0.32 -0.35,-0.1 -0.16,0.54 -0.32,1.09 -0.48,1.63 -0.03,0.11 -0.07,0.23 -0.1,0.34 -0.37,-0.07 -0.76,-0.11 -1.12,-0.17 -0.09,-0.01 -0.18,-0.02 -0.27,-0.04 0.02,-0.06 0.02,-0.12 0.04,-0.18 0.13,-0.43 0.32,-0.84 0.57,-1.22 0.13,-0.19 -0.18,-0.37 -0.31,-0.18 -0.26,0.4 -0.46,0.85 -0.6,1.31 -0.02,0.07 -0.03,0.15 -0.05,0.23 -0.32,-0.04 -0.64,-0.09 -0.96,-0.13 -0.11,-0.01 -0.22,-0.02 -0.34,-0.04 0.09,-0.34 0.19,-0.68 0.28,-1.03 0.06,-0.22 -0.28,-0.31 -0.33,-0.09 l -0.29,1.08 c -0.44,-0.05 -0.87,-0.1 -1.31,-0.15 0.01,-0.03 0.02,-0.06 0.03,-0.08 0.15,-0.38 0.3,-0.77 0.44,-1.15 0.76,0.08 1.52,0.17 2.28,0.17 0.12,0 0.15,-0.19 0.03,-0.22 -0.77,-0.17 -1.56,-0.25 -2.34,-0.34 -0.02,-0.01 -0.04,-0.01 -0.06,-0.01 -0.03,0 -0.06,-0.01 -0.08,-0.01 -0.51,-0.06 -1.02,-0.11 -1.53,-0.17 0.09,-0.3 0.18,-0.59 0.27,-0.89 0.29,0.02 0.57,0.05 0.86,0.07 2.14,0.17 4.29,0.32 6.43,0.52 1.1,0.1 2.23,0.14 3.31,0.37 1.11,0.24 2.18,0.3 3.32,0.28 0.2,0 0.35,-0.08 0.47,-0.18 -0.05,0.4 -0.06,0.82 -0.1,1.23 z m -13.73,0.35 c -0.29,-0.03 -0.58,-0.07 -0.87,-0.1 -0.17,-0.02 -0.34,-0.03 -0.51,-0.04 0.14,-0.37 0.26,-0.74 0.37,-1.12 0.01,-0.04 0.03,-0.08 0.04,-0.12 0.48,0.05 0.96,0.11 1.45,0.16 -0.14,0.36 -0.27,0.71 -0.41,1.07 -0.03,0.05 -0.05,0.1 -0.07,0.15 z m -1.42,-1.41 c -0.13,0.41 -0.27,0.81 -0.36,1.23 -0.62,-0.06 -1.25,-0.11 -1.87,-0.16 0.04,-0.14 0.08,-0.28 0.11,-0.42 0.08,-0.3 0.16,-0.59 0.24,-0.89 0.45,0.05 0.9,0.1 1.35,0.15 0.18,0.02 0.36,0.04 0.54,0.06 -0.01,0.01 -0.01,0.02 -0.01,0.03 z M 633.04,253 c 0.51,0.06 1.03,0.12 1.54,0.17 -0.08,0.27 -0.16,0.55 -0.24,0.82 -0.05,0.16 -0.1,0.33 -0.14,0.49 -0.54,-0.04 -1.07,-0.06 -1.61,-0.09 0.02,-0.11 0.04,-0.22 0.06,-0.33 0.1,-0.36 0.25,-0.71 0.39,-1.06 z m 3.35,-0.01 c -0.44,-0.05 -0.87,-0.09 -1.31,-0.14 0.08,-0.28 0.15,-0.56 0.23,-0.83 0.65,0.05 1.31,0.11 1.96,0.16 -0.09,0.29 -0.19,0.58 -0.28,0.88 -0.2,-0.03 -0.4,-0.05 -0.6,-0.07 z m -1.46,-1 c -0.08,0.27 -0.16,0.55 -0.24,0.82 -0.51,-0.05 -1.01,-0.11 -1.52,-0.16 0.02,-0.03 0.02,-0.07 0.04,-0.11 0.06,-0.12 -0.01,-0.23 -0.1,-0.27 0.29,-0.12 0.57,-0.24 0.86,-0.36 0.32,0.02 0.64,0.05 0.96,0.08 z m -2.16,0.62 c -0.12,-0.01 -0.24,-0.03 -0.36,-0.04 0.15,-0.06 0.31,-0.13 0.46,-0.19 -0.04,0.07 -0.07,0.15 -0.1,0.23 z m -1.04,0.24 c 0.3,0.03 0.59,0.07 0.89,0.1 -0.13,0.33 -0.25,0.67 -0.34,1.02 -0.03,0.14 -0.05,0.27 -0.08,0.41 -0.35,-0.02 -0.7,-0.04 -1.06,-0.06 l 0.37,-1.38 c 0.08,-0.03 0.15,-0.06 0.22,-0.09 z m -0.61,0.26 c -0.1,0.38 -0.2,0.75 -0.31,1.13 l -0.02,0.07 c 0,0 0,0 0,0 -0.44,-0.02 -0.88,-0.01 -1.33,-0.02 0.03,-0.17 0.05,-0.34 0.08,-0.51 0.53,-0.23 1.06,-0.45 1.58,-0.67 z m -2.03,1.17 c -0.23,0 -0.46,-0.01 -0.69,-0.01 0.25,-0.11 0.5,-0.21 0.75,-0.32 -0.03,0.11 -0.05,0.22 -0.06,0.33 z m -18.31,27.43 c -0.1,0.08 -0.2,0.16 -0.29,0.24 -0.03,-0.05 -0.06,-0.09 -0.08,-0.14 -0.17,-0.58 -0.35,-1.17 -0.53,-1.75 0.3,0.55 0.6,1.1 0.9,1.65 z m 4.12,12.03 c 0.11,0.23 0.21,0.45 0.31,0.68 -0.04,0.03 -0.08,0.06 -0.12,0.08 -0.26,0.18 -0.52,0.36 -0.77,0.54 -0.14,-0.48 -0.29,-0.96 -0.43,-1.45 0.01,0 0.03,0 0.04,0 0.24,-0.12 0.48,-0.25 0.71,-0.4 0.08,0.19 0.17,0.37 0.26,0.55 z m 0.54,1.2 c 0.12,0.27 0.23,0.54 0.36,0.81 -0.21,0.16 -0.41,0.31 -0.62,0.47 -0.13,0.1 -0.27,0.2 -0.4,0.31 -0.01,0.01 -0.02,0.01 -0.02,0.02 -0.11,-0.37 -0.22,-0.74 -0.33,-1.11 0.3,-0.19 0.59,-0.4 0.88,-0.6 0.02,-0.02 0.05,-0.03 0.07,-0.05 0.02,0.04 0.04,0.09 0.06,0.15 z m 0.56,2.66 c 0,0 0.01,-0.01 0.01,-0.01 0.2,0.35 0.4,0.69 0.61,1.03 -0.09,0.07 -0.17,0.15 -0.26,0.22 -0.11,0.09 -0.22,0.19 -0.33,0.28 -0.19,-0.37 -0.37,-0.75 -0.56,-1.12 0.18,-0.13 0.35,-0.27 0.53,-0.4 z m -3.62,-12.56 c -0.01,0.01 -0.03,0.02 -0.04,0.03 -0.12,-0.21 -0.25,-0.42 -0.37,-0.63 0.07,-0.07 0.12,-0.16 0.19,-0.23 0.15,0.27 0.3,0.55 0.45,0.82 -0.08,-0.05 -0.17,-0.05 -0.23,0.01 z m -0.38,0.31 c -0.12,0.1 -0.24,0.2 -0.36,0.3 -0.03,0.02 -0.05,0.04 -0.08,0.06 -0.08,-0.27 -0.16,-0.55 -0.24,-0.82 0.04,-0.02 0.08,-0.03 0.12,-0.05 0.07,-0.04 0.12,-0.09 0.18,-0.14 0.13,0.23 0.26,0.44 0.38,0.65 z m 2.78,3.69 c -0.03,0.02 -0.06,0.05 -0.09,0.07 -0.05,-0.09 -0.1,-0.19 -0.16,-0.28 -0.06,-0.1 -0.12,-0.2 -0.17,-0.3 0.03,-0.02 0.07,-0.05 0.1,-0.07 0.11,0.19 0.22,0.39 0.32,0.58 z m -0.61,0.01 c 0.06,0.11 0.13,0.21 0.19,0.32 -0.3,0.23 -0.59,0.45 -0.89,0.68 -0.02,0.02 -0.04,0.03 -0.06,0.05 -0.12,-0.21 -0.24,-0.42 -0.36,-0.62 0.28,-0.19 0.55,-0.38 0.83,-0.58 0.05,-0.03 0.09,-0.07 0.14,-0.1 0.05,0.07 0.1,0.16 0.15,0.25 z m -0.91,2.46 c -0.07,-0.24 -0.15,-0.49 -0.22,-0.73 0.08,-0.06 0.16,-0.12 0.23,-0.18 0.12,0.22 0.26,0.44 0.38,0.66 -0.11,0.07 -0.22,0.14 -0.33,0.21 -0.02,0.01 -0.04,0.02 -0.06,0.04 z m -0.43,-1.45 c -0.04,-0.13 -0.08,-0.26 -0.11,-0.39 0.01,0 0.02,0 0.03,0 0.13,0.21 0.25,0.43 0.37,0.65 -0.06,0.04 -0.12,0.09 -0.17,0.13 -0.05,-0.13 -0.09,-0.26 -0.12,-0.39 z m 1.14,1 c -0.13,-0.23 -0.27,-0.46 -0.4,-0.69 0.03,-0.03 0.07,-0.05 0.1,-0.08 0.28,-0.22 0.57,-0.44 0.85,-0.66 0.12,0.2 0.24,0.4 0.36,0.6 0.04,0.06 0.08,0.12 0.11,0.18 -0.34,0.21 -0.68,0.43 -1.02,0.65 z m -0.27,-2.44 c -0.27,0.19 -0.53,0.39 -0.79,0.6 -0.18,-0.3 -0.37,-0.58 -0.56,-0.88 0.19,-0.13 0.38,-0.26 0.58,-0.4 0.14,-0.1 0.28,-0.19 0.42,-0.29 0.17,0.28 0.34,0.57 0.5,0.85 -0.05,0.05 -0.1,0.09 -0.15,0.12 z m -1.03,-1.06 c -0.16,0.1 -0.32,0.21 -0.48,0.32 -0.07,-0.25 -0.15,-0.5 -0.22,-0.75 0.25,-0.17 0.49,-0.35 0.73,-0.54 h 0.01 c 0.13,0.23 0.27,0.46 0.41,0.69 -0.15,0.09 -0.3,0.19 -0.45,0.28 z m -0.2,-1.23 c -0.2,0.16 -0.4,0.32 -0.59,0.48 -0.07,-0.24 -0.14,-0.48 -0.21,-0.72 0.07,-0.06 0.14,-0.13 0.22,-0.19 0.1,-0.08 0.19,-0.16 0.29,-0.25 0.12,0.21 0.24,0.41 0.36,0.62 -0.02,0.03 -0.04,0.05 -0.07,0.06 z m 2.88,12.19 c 0.14,0.28 0.28,0.56 0.42,0.84 -0.04,0.04 -0.09,0.08 -0.13,0.12 -0.1,-0.32 -0.19,-0.64 -0.29,-0.96 z m -1.56,-5.22 c -0.14,-0.49 -0.29,-0.97 -0.43,-1.46 0.05,-0.03 0.09,-0.06 0.14,-0.09 0.11,-0.07 0.21,-0.14 0.32,-0.2 0.22,0.42 0.43,0.85 0.64,1.28 -0.23,0.16 -0.45,0.31 -0.67,0.47 z m 0.34,-1.94 c 0.35,-0.22 0.7,-0.44 1.04,-0.66 0.15,0.24 0.31,0.48 0.49,0.69 0.07,0.08 0.22,-0.01 0.18,-0.11 -0.15,-0.41 -0.39,-0.82 -0.61,-1.2 -0.13,-0.24 -0.27,-0.47 -0.4,-0.71 0.03,-0.02 0.06,-0.04 0.09,-0.07 0.17,0.31 0.33,0.62 0.5,0.92 0.27,0.5 0.54,1 0.81,1.49 -0.37,0.23 -0.74,0.47 -1.11,0.7 -0.12,0.08 -0.24,0.15 -0.36,0.23 -0.2,-0.42 -0.4,-0.86 -0.63,-1.28 z m 0.07,-3.1 c -0.16,-0.28 -0.33,-0.57 -0.49,-0.85 0.04,-0.03 0.09,-0.06 0.13,-0.09 0.16,0.29 0.31,0.58 0.47,0.86 -0.04,0.02 -0.07,0.05 -0.11,0.08 z m -0.71,-1.23 c -0.13,-0.23 -0.26,-0.46 -0.4,-0.68 -0.01,-0.01 -0.02,-0.03 -0.03,-0.04 l 0.16,-0.12 c 0.14,0.25 0.27,0.5 0.41,0.75 -0.04,0.03 -0.09,0.06 -0.14,0.09 z m -0.6,-1.02 c -0.12,-0.21 -0.25,-0.42 -0.38,-0.64 0.03,-0.03 0.07,-0.06 0.1,-0.09 0.04,-0.03 0.05,-0.08 0.05,-0.13 0.13,0.24 0.26,0.48 0.39,0.72 -0.05,0.05 -0.1,0.09 -0.16,0.14 z m -1.09,-1.84 c -0.16,-0.28 -0.33,-0.55 -0.49,-0.83 0.08,-0.07 0.16,-0.14 0.24,-0.22 0.15,0.27 0.3,0.54 0.44,0.81 -0.06,0.08 -0.11,0.16 -0.19,0.24 z m -0.67,-1.14 c -0.13,-0.22 -0.26,-0.44 -0.39,-0.66 0,0 0,0 0.01,-0.01 0.09,-0.08 0.18,-0.16 0.26,-0.24 0.12,0.23 0.25,0.45 0.37,0.68 -0.08,0.08 -0.17,0.15 -0.25,0.23 z m -0.13,0.59 c 0.16,0.28 0.32,0.55 0.48,0.83 -0.06,0.04 -0.11,0.09 -0.17,0.13 -0.02,0.01 -0.04,0.02 -0.06,0.04 -0.09,-0.32 -0.19,-0.64 -0.28,-0.96 0,-0.02 0.01,-0.03 0.03,-0.04 z m 8.03,19.36 c -0.06,-0.07 -0.17,-0.1 -0.25,-0.05 -0.3,0.2 -0.61,0.41 -0.91,0.61 -0.01,0 -0.01,0.01 -0.02,0.01 -0.12,0.06 -0.24,0.11 -0.36,0.16 -0.45,-0.85 -0.89,-1.7 -1.34,-2.55 -0.13,-0.43 -0.26,-0.86 -0.38,-1.29 0,0 0,0 0,0 0.07,-0.05 0.13,-0.11 0.19,-0.17 0.05,0.1 0.1,0.19 0.14,0.29 0.15,0.31 0.3,0.63 0.46,0.95 -0.04,0.04 -0.09,0.08 -0.12,0.13 -0.05,0.08 -0.11,0.18 -0.08,0.28 0.06,0.19 0.27,0.1 0.4,0 0.17,0.34 0.36,0.66 0.56,0.97 0,0.06 -0.03,0.11 -0.02,0.16 0.01,0.1 0.08,0.2 0.2,0.2 0.11,-0.01 0.19,-0.09 0.2,-0.2 0,-0.03 0,-0.06 0.01,-0.08 0,-0.01 0,-0.02 0,-0.03 0,-0.03 0.01,-0.06 0.01,-0.09 -0.01,0.05 0,0 0,-0.01 0,-0.02 0.01,-0.03 0.01,-0.05 0.01,-0.03 0.02,-0.06 0.03,-0.1 0.01,-0.02 0.01,-0.03 0.02,-0.05 0,-0.01 0,-0.01 0,-0.01 0,0 0,0 0,-0.01 0.01,-0.03 0.03,-0.06 0.05,-0.09 0.02,-0.03 0.03,-0.06 0.05,-0.09 0.01,-0.01 0.02,-0.03 0.03,-0.04 0,0 0,0 0,-0.01 0,0 0,0 0.01,-0.01 0.04,-0.05 0.09,-0.1 0.14,-0.14 0.01,-0.01 0.03,-0.02 0.04,-0.03 -0.03,0.02 0.01,0 0.01,-0.01 0.03,-0.02 0.06,-0.04 0.08,-0.05 0.03,-0.02 0.06,-0.03 0.09,-0.05 0,0 0.04,-0.02 0.02,-0.01 -0.02,0.01 0.03,-0.01 0.03,-0.01 0.07,-0.02 0.13,-0.04 0.2,-0.05 0.09,-0.01 0.14,-0.12 0.13,-0.2 -0.01,-0.08 -0.09,-0.16 -0.18,-0.16 -0.33,0.03 -0.64,0.19 -0.86,0.44 -0.09,0.1 -0.15,0.22 -0.21,0.34 -0.12,-0.28 -0.23,-0.57 -0.37,-0.84 0.18,-0.18 0.36,-0.37 0.54,-0.55 0.28,-0.29 0.57,-0.58 0.85,-0.87 0.18,-0.19 -0.1,-0.47 -0.29,-0.29 -0.44,0.43 -0.88,0.86 -1.32,1.29 -0.13,-0.24 -0.26,-0.49 -0.38,-0.73 -0.08,-0.15 -0.15,-0.3 -0.23,-0.46 0.1,-0.09 0.21,-0.18 0.31,-0.27 0.1,-0.09 0.19,-0.17 0.29,-0.26 0,0.01 0.01,0.01 0.01,0.02 0.05,0.08 0.17,0.01 0.13,-0.08 -0.01,-0.02 -0.02,-0.03 -0.03,-0.05 0.15,-0.14 0.31,-0.28 0.46,-0.42 0.17,-0.15 -0.08,-0.4 -0.25,-0.25 -0.13,0.11 -0.26,0.23 -0.39,0.34 -0.19,-0.35 -0.38,-0.69 -0.57,-1.03 0,0 -0.01,0 -0.01,-0.01 0.35,-0.27 0.7,-0.54 1.05,-0.81 0.16,-0.13 -0.05,-0.41 -0.22,-0.29 -0.42,0.3 -0.83,0.6 -1.25,0.91 -0.16,0.11 -0.31,0.23 -0.47,0.34 -0.04,-0.09 -0.09,-0.17 -0.13,-0.26 -0.09,-0.18 -0.18,-0.35 -0.27,-0.53 0.01,-0.01 0.03,-0.02 0.04,-0.03 0.14,-0.1 0.28,-0.21 0.42,-0.31 0.2,-0.15 0.41,-0.3 0.61,-0.45 0.03,0.05 0.05,0.1 0.07,0.14 0.05,0.09 0.19,0.03 0.17,-0.07 -0.01,-0.07 -0.04,-0.14 -0.06,-0.21 0.01,-0.01 0.02,-0.02 0.03,-0.03 0.07,-0.05 0.1,-0.14 0.06,-0.21 -0.03,-0.05 -0.11,-0.08 -0.17,-0.06 -0.11,-0.34 -0.24,-0.68 -0.38,-1.02 0.31,-0.22 0.62,-0.43 0.93,-0.65 0.2,-0.14 0.01,-0.47 -0.19,-0.33 -0.3,0.21 -0.6,0.41 -0.89,0.62 -0.08,-0.19 -0.17,-0.37 -0.25,-0.55 -0.1,-0.22 -0.22,-0.43 -0.32,-0.65 0.14,-0.09 0.27,-0.18 0.41,-0.26 l 1.08,-0.68 c 0.7,1.27 1.41,2.54 2.09,3.83 0.51,0.98 1.11,1.94 1.51,2.98 0.39,1.01 0.9,1.9 1.5,2.79 -0.83,0.49 -1.66,0.93 -2.5,1.35 z m -2.89,-45.58 c -0.01,-1.64 -0.05,-3.28 -0.1,-4.92 0.01,0.05 0.03,0.09 0.05,0.14 0.27,0.91 0.46,1.85 0.61,2.78 0.08,0.49 0.15,0.99 0.19,1.48 0.01,0.06 0.01,0.13 0.01,0.19 -0.25,0.11 -0.5,0.22 -0.76,0.33 z m -26.6,11.91 c 0.39,-0.73 0.84,-1.42 1.39,-2.04 0.71,-0.8 1.6,-1.43 2.59,-1.83 -0.23,0.19 -0.44,0.41 -0.6,0.67 -0.2,0.33 -0.27,0.71 -0.25,1.09 0,0.03 0.01,0.05 0.02,0.08 -0.1,0.55 0.01,1.13 0.26,1.64 0.28,0.56 0.9,0.94 1.48,1.12 0.56,0.18 1.22,0.18 1.78,0 0.61,-0.2 1.15,-0.61 1.46,-1.17 0.27,-0.49 0.35,-1.11 0.28,-1.66 -0.08,-0.62 -0.31,-1.2 -0.74,-1.66 -0.18,-0.2 -0.4,-0.34 -0.63,-0.47 1.18,0.24 2.19,0.94 2.9,2.01 0.49,0.73 0.81,1.54 1.07,2.38 0.15,0.48 0.24,0.99 0.34,1.49 -0.51,0.02 -1.03,0.06 -1.54,0.08 -3.52,0.1 -7.03,0.06 -10.55,-0.04 0.23,-0.57 0.45,-1.15 0.74,-1.69 z m 0.16,-20.66 c 1.34,-1.36 3.34,-2.05 5.23,-1.93 0.2,0.01 0.34,-0.09 0.42,-0.24 0.77,0.06 1.53,0.26 2.22,0.6 2.73,1.36 4.38,4.66 3.57,7.65 -0.8,2.93 -3.66,5.13 -6.71,4.96 -3.16,-0.17 -6,-2.57 -6.42,-5.75 -0.25,-1.9 0.34,-3.92 1.69,-5.29 z m 7.57,12.42 -0.04,0.98 c -0.01,0.29 -0.03,0.59 -0.02,0.88 0.01,0.22 -0.01,0.46 0,0.68 -0.61,-0.15 -1.24,-0.22 -1.89,-0.18 0.02,-0.16 0.01,-0.32 0,-0.48 -0.01,-0.19 -0.03,-0.38 -0.04,-0.58 -0.02,-0.3 -0.04,-0.6 -0.07,-0.91 0.71,-0.04 1.4,-0.17 2.06,-0.39 z m -0.67,6.61 c 0,0.01 0,0.02 -0.01,0.03 0,0.01 0,0.02 0,0.02 0,-0.01 0,-0.01 0,-0.02 0,0.01 -0.01,0.02 -0.01,0.03 -0.02,0.06 -0.03,0.11 -0.05,0.16 0,0 0,0 0,0.01 0,0 0,0 0,0 -0.02,0.04 -0.04,0.08 -0.06,0.11 -0.04,0.09 -0.1,0.17 -0.15,0.25 -0.01,0.01 -0.01,0.02 -0.02,0.02 -0.04,0.04 -0.07,0.08 -0.11,0.11 -0.01,0.01 -0.02,0.02 -0.04,0.03 0,0 0,0.01 -0.03,0.03 -0.01,0 -0.01,0.01 -0.01,0.01 -0.01,0.01 -0.02,0.02 -0.03,0.03 0,-0.01 0.01,-0.01 0.01,-0.02 -0.02,0.01 -0.03,0.02 -0.05,0.03 -0.04,0.03 -0.09,0.05 -0.14,0.08 -0.01,0 -0.01,0.01 -0.02,0.01 0.01,0 0.01,0 0.01,0 -0.01,0 -0.02,0.01 -0.02,0.01 -0.01,0 -0.02,0.01 -0.03,0.01 -0.03,0.02 -0.05,0.01 -0.04,0 -0.07,0.02 -0.14,0.06 -0.21,0.07 -0.05,0.01 -0.1,0.02 -0.15,0.03 0,0 -0.01,0 -0.01,0 -0.1,0 -0.21,0.01 -0.31,0.01 -0.05,0 -0.09,-0.01 -0.14,-0.01 0,0 0,0 0,0 0,0 0,0 -0.01,0 -0.1,-0.02 -0.2,-0.04 -0.3,-0.08 -0.01,0 -0.02,-0.01 -0.04,-0.01 -0.03,-0.02 -0.11,-0.05 -0.12,-0.06 -0.04,-0.02 -0.08,-0.04 -0.12,-0.07 -0.03,-0.02 -0.05,-0.03 -0.07,-0.05 -0.02,-0.01 -0.03,-0.03 -0.04,-0.04 0,0 0.01,0.01 0.01,0.02 -0.03,-0.02 -0.05,-0.05 -0.08,-0.07 -0.04,-0.04 -0.07,-0.07 -0.11,-0.11 -0.04,-0.05 -0.09,-0.1 -0.13,-0.15 0.02,0.02 0.07,0.1 0,0 -0.02,-0.03 -0.04,-0.06 -0.06,-0.1 -0.04,-0.06 -0.08,-0.13 -0.11,-0.2 0.04,0.09 -0.03,-0.1 -0.04,-0.12 0,-0.02 -0.01,-0.03 -0.01,-0.05 0.07,-0.07 0.13,-0.16 0.16,-0.26 0.01,-0.04 0.03,-0.08 0.04,-0.13 0,-0.01 0.01,-0.02 0.01,-0.02 0.05,-0.1 0.11,-0.19 0.17,-0.29 0.04,-0.07 0.09,-0.14 0.14,-0.21 0.01,-0.02 0.03,-0.04 0.03,-0.04 0.04,-0.05 0.08,-0.09 0.13,-0.13 0.03,-0.03 0.07,-0.06 0.1,-0.09 0,0 0,0 0,0 0,0 0.01,0 0.01,-0.01 0.09,-0.06 0.18,-0.12 0.27,-0.16 0.01,-0.01 0.02,-0.01 0.03,-0.02 0.03,-0.01 0.1,-0.04 0.11,-0.04 0.1,-0.03 0.19,-0.05 0.29,-0.07 0.02,0 0.05,-0.01 0.05,-0.01 0.05,0 0.09,0 0.14,0 0.04,0 0.08,0 0.12,0.01 0.02,0 0.05,0.01 0.05,0.01 0.05,0.01 0.1,0.02 0.15,0.04 0.02,0.01 0.03,0.01 0.05,0.02 0.05,0.03 0.22,0.12 0.24,0.13 0,0 0.01,0.01 0.02,0.01 0.03,0.04 0.07,0.07 0.11,0.1 0.03,0.03 0.06,0.06 0.09,0.1 0,0 0,0 0,0.01 0,0 0,0 0,-0.01 -0.04,-0.09 0.01,0.01 0.02,0.04 0.05,0.08 0.1,0.16 0.14,0.24 0.01,0.01 0.01,0.02 0.02,0.03 0.01,0.04 0.05,0.14 0.05,0.15 0.03,0.09 0.05,0.18 0.07,0.27 0,0.01 0,0.01 0,0.02 0,0.05 0.01,0.1 0.01,0.15 0,0.04 -0.02,0.16 -0.02,0.23 0.04,-0.06 0.07,-0.09 0.05,-0.02 z m -31.99,83.16 c -0.05,0 -0.09,0 -0.14,0.02 -0.04,0.02 -0.08,0.03 -0.12,0.05 -0.09,0.03 -0.18,0.07 -0.26,0.1 -0.17,0.07 -0.33,0.14 -0.5,0.22 -0.09,0.04 -0.11,0.16 -0.08,0.24 0.03,0.08 0.14,0.15 0.23,0.11 0.17,-0.07 0.33,-0.14 0.5,-0.21 0.08,-0.04 0.17,-0.08 0.25,-0.11 0.01,0 0.01,-0.01 0.02,-0.01 -0.12,0.51 -0.25,1.02 -0.38,1.52 -0.06,0.24 -0.12,0.47 -0.18,0.71 -0.03,-0.01 -0.06,-0.03 -0.09,-0.03 -0.04,0 -0.07,0 -0.11,-0.01 -0.08,0 -0.16,-0.01 -0.25,-0.01 -0.16,-0.01 -0.32,0 -0.48,0 -0.12,0 -0.23,0.1 -0.23,0.23 0.01,0.12 0.1,0.23 0.23,0.23 0.16,0 0.32,0 0.48,0 0.08,0 0.16,-0.01 0.24,-0.01 0.04,0 0.08,0 0.12,-0.01 -0.07,0.29 -0.15,0.59 -0.22,0.88 -0.01,0 -0.02,0.01 -0.03,0.01 -0.15,0.05 -0.3,0.09 -0.46,0.14 -0.25,0.08 -0.5,0.16 -0.76,0.23 0.09,-0.39 0.19,-0.78 0.28,-1.17 0.09,-0.37 0.18,-0.75 0.27,-1.12 0.14,-0.03 0.28,-0.07 0.42,-0.1 0.27,-0.07 0.57,-0.11 0.81,-0.26 0.15,-0.09 0.08,-0.3 -0.08,-0.31 -0.08,-0.01 -0.16,-0.01 -0.24,0.01 -0.06,0.01 -0.12,0.03 -0.19,0.04 -0.14,0.03 -0.28,0.07 -0.41,0.1 -0.06,0.02 -0.13,0.03 -0.19,0.05 0.16,-0.66 0.32,-1.32 0.47,-1.98 0.14,-0.04 0.26,-0.1 0.4,-0.13 0.27,-0.04 0.55,-0.03 0.83,-0.02 -0.05,0.19 -0.1,0.39 -0.15,0.6 z m -9.38,37.36 c -0.02,-0.21 -0.04,-0.42 -0.07,-0.62 -0.04,-0.25 -0.1,-0.51 -0.11,-0.77 -0.01,-0.24 0,-0.47 0.01,-0.71 0.01,-0.47 0.02,-0.95 0,-1.42 -0.02,-0.46 -0.02,-0.97 -0.15,-1.42 -0.05,-0.16 -0.34,-0.2 -0.37,0 -0.07,0.45 -0.01,0.91 0.03,1.36 0.04,0.47 0.12,0.94 0.19,1.41 0.04,0.26 0.09,0.52 0.12,0.78 0.02,0.24 -0.01,0.47 -0.01,0.71 0,0.24 0,0.47 0.01,0.71 0.01,0.22 0,0.49 0.09,0.69 0.01,0.03 0.05,0.03 0.07,0.05 -0.15,0.56 -0.29,1.13 -0.44,1.69 -0.06,-0.08 -0.13,-0.14 -0.2,-0.21 -0.08,-0.07 -0.14,-0.16 -0.21,-0.24 -0.07,-0.09 -0.12,-0.19 -0.17,-0.3 -0.01,-0.03 -0.02,-0.06 -0.03,-0.09 0.1,-0.27 0.05,-0.57 0.02,-0.87 -0.02,-0.35 -0.04,-0.69 -0.06,-1.04 -0.03,-0.64 -0.05,-1.29 -0.06,-1.93 -0.01,-0.84 0.06,-1.69 0.04,-2.53 0.03,-0.12 0.04,-0.24 0,-0.36 0,0 0,0 0,-0.01 -0.01,-0.11 -0.02,-0.21 -0.03,-0.31 0.01,0 0.03,0.01 0.04,0.01 0.55,0.17 1.11,0.32 1.66,0.47 0,0.02 -0.02,0.02 -0.02,0.04 l 0.06,1.42 c 0.01,0.24 0.02,0.47 0.03,0.71 0.01,0.22 0.02,0.48 0.1,0.68 0,0 0.01,0 0.01,0.01 -0.19,0.71 -0.37,1.4 -0.55,2.09 z m 0.9,14.57 c 0.95,0 1.9,0.01 2.85,0.02 2.02,0.01 4.04,0.01 6.07,0.07 1.98,0.05 3.96,0.15 5.94,0.28 0.99,0.06 1.98,0.18 2.97,0.28 0.8,0.08 1.66,0.27 2.45,0.12 0.09,0.08 0.18,0.16 0.27,0.24 0.09,0.08 0.19,0.12 0.28,0.16 0.15,0.17 0.31,0.33 0.44,0.46 0.35,0.36 0.73,0.67 1.1,1 0.65,0.57 1.31,1.13 1.98,1.68 -0.2,0.28 -0.4,0.55 -0.57,0.84 -0.18,0.32 -0.33,0.65 -0.47,0.98 -0.26,-0.23 -0.52,-0.45 -0.77,-0.64 -0.66,-0.52 -1.35,-0.99 -2.1,-1.37 -1.53,-0.78 -3.18,-1.29 -4.87,-1.58 -3.94,-0.68 -7.93,-0.25 -11.89,-0.03 -1.22,0.07 -2.44,0.11 -3.65,0.06 -1.08,-0.04 -2.15,-0.22 -3.22,-0.3 0.19,-0.74 0.39,-1.49 0.58,-2.23 0.87,0.04 1.76,-0.04 2.61,-0.04 z m 15.35,-34.88 c 1.14,-0.08 2.28,-0.15 3.4,-0.33 0.09,-0.01 0.07,-0.15 -0.02,-0.16 -1.11,-0.02 -2.21,0.08 -3.32,0.17 0.11,-0.54 0.22,-1.09 0.33,-1.63 0.21,0.01 0.41,0.02 0.62,0.04 0.18,0.01 0.36,0.02 0.54,0.02 0.18,0 0.36,0.01 0.53,-0.02 0.11,-0.02 0.1,-0.18 0,-0.21 -0.17,-0.05 -0.35,-0.06 -0.53,-0.08 -0.18,-0.02 -0.36,-0.04 -0.54,-0.05 -0.18,-0.01 -0.37,-0.02 -0.55,-0.03 0.16,-0.82 0.32,-1.63 0.49,-2.45 0.44,0.03 0.89,0.04 1.34,0.04 0.51,0 1.06,0.04 1.54,-0.13 0.15,-0.05 0.15,-0.25 0,-0.3 -0.48,-0.17 -1.03,-0.14 -1.54,-0.15 -0.09,0 -0.17,0.01 -0.26,0 -0.01,0 -0.01,-0.01 -0.02,-0.01 -0.08,-0.02 -0.15,-0.04 -0.23,-0.07 -0.16,-0.05 -0.32,-0.09 -0.47,-0.14 -0.08,-0.02 -0.18,0.03 -0.2,0.12 -0.01,0.04 0,0.08 0.01,0.11 -0.02,0 -0.04,0 -0.06,0 0.02,-0.1 0.04,-0.19 0.06,-0.29 0.04,-0.02 0.09,-0.04 0.13,-0.07 0.04,-0.02 0.08,-0.05 0.13,-0.08 0.04,-0.03 0.08,-0.05 0.12,-0.08 0.02,-0.01 0.04,-0.03 0.05,-0.04 0.11,0 0.22,0 0.33,0 0.02,0 0.04,0 0.06,0 0.1,0.1 0.23,0.18 0.38,0.2 1.75,0.22 3.53,0.16 5.29,0.16 1.76,0 3.53,0 5.29,-0.01 3.53,-0.03 7.06,-0.07 10.59,-0.1 7.02,-0.07 14.04,-0.13 21.06,-0.2 1.97,-0.02 3.93,-0.03 5.9,-0.04 0.58,0 1.16,-0.01 1.75,-0.01 -0.22,-0.61 -0.43,-1.22 -0.63,-1.83 l -0.39,0.01 c -1.76,0.02 -3.53,0.05 -5.29,0.07 -3.53,0.04 -7.06,0.07 -10.59,0.11 -7.06,0.07 -14.12,0.14 -21.18,0.22 -2.01,0.02 -4.01,0.06 -6.02,0.09 -1.98,0.04 -3.98,0 -5.94,0.29 -0.22,0.03 -0.34,0.14 -0.41,0.27 -0.07,0.01 -0.15,0.02 -0.21,0.05 -0.01,0 -0.03,0.01 0,0 -0.02,0.01 -0.03,0.01 -0.05,0.02 -0.03,0.01 -0.07,0.03 -0.1,0.05 -0.04,0.02 -0.07,0.04 -0.1,0.06 0.14,-0.69 0.27,-1.37 0.41,-2.06 0.05,-0.26 0.11,-0.53 0.16,-0.79 0.08,0.04 0.17,0.07 0.27,0.08 1.66,0.19 3.38,0.08 5.05,0.1 1.68,0.02 3.36,0.01 5.05,0.02 3.36,0.01 6.73,0.02 10.09,0.03 6.77,0.02 13.54,0.04 20.31,0.06 1.88,0.01 3.77,0.01 5.65,0.02 0.17,0 0.34,0 0.51,0 0.27,0.45 0.93,0.39 1.2,0 0.38,0 0.76,0 1.13,0 -0.07,-0.22 -0.15,-0.45 -0.22,-0.67 0.14,-0.02 0.28,-0.04 0.41,-0.09 0.06,-0.02 0.1,-0.06 0.13,-0.1 0.44,1.63 0.88,3.26 1.32,4.89 -0.05,-0.01 -0.09,-0.02 -0.14,-0.01 -0.03,0 -0.06,0.01 -0.1,0.01 -0.07,0.01 -0.13,0.01 -0.2,0.02 -0.13,0.01 -0.27,0.02 -0.4,0.03 -0.11,0.01 -0.22,0.09 -0.22,0.22 0.01,0.13 0.1,0.21 0.22,0.22 0.13,0.01 0.27,0.02 0.4,0.03 0.06,0.01 0.13,0.01 0.19,0.02 0.03,0 0.06,0.01 0.1,0.01 0.06,0.01 0.11,0 0.17,-0.01 0.04,-0.01 0.07,-0.04 0.1,-0.07 0.13,0.47 0.25,0.94 0.38,1.41 -0.01,0 -0.02,0.01 -0.03,0.01 -0.02,0.01 -0.05,0.02 -0.07,0.03 -0.03,0.01 -0.07,0.01 -0.1,0.01 -0.07,0.01 -0.15,0.01 -0.22,0.01 -0.08,0 -0.15,-0.02 -0.23,-0.03 -0.15,-0.03 -0.15,0.21 0,0.18 0.07,-0.01 0.15,-0.03 0.23,-0.03 0.07,0 0.15,0.01 0.22,0.01 0.03,0 0.07,0 0.1,0.01 0.01,0.01 0.04,0.02 0.05,0.03 0.04,0.01 0.08,0.02 0.12,0.03 0.3,1.11 0.6,2.22 0.9,3.33 -0.71,0.01 -1.42,0.02 -2.13,0.03 l -12.65,0.15 c -8.44,0.1 -16.87,0.21 -25.31,0.31 -4.74,0.06 -9.49,0.06 -14.22,0.29 -0.07,0 -0.13,0.03 -0.2,0.05 0.1,-0.47 0.19,-0.93 0.28,-1.38 z m 1.71,-6.21 c 0,0.01 0.01,0.03 0.01,0.04 -0.07,0 -0.13,0 -0.19,0 0.02,-0.01 0.04,-0.02 0.06,-0.02 0.01,0 0.03,-0.01 0.04,-0.01 h 0.02 c 0.02,-0.01 0.04,-0.01 0.06,-0.01 z m 1.01,-7.39 c 0.03,0.03 0.07,0.06 0.13,0.06 0.28,0 0.55,0.01 0.83,0.01 0.14,0 0.27,0 0.41,0 0.13,0 0.32,0.02 0.43,-0.06 0.09,-0.06 0.09,-0.19 0,-0.25 -0.11,-0.07 -0.28,-0.06 -0.42,-0.06 -0.14,0 -0.28,0 -0.42,0 l -0.83,0.01 c -0.03,0 -0.05,0.02 -0.08,0.03 0.21,-1.05 0.42,-2.1 0.64,-3.15 h 0.04 c 0.07,0 0.13,0 0.2,-0.01 0.06,-0.01 0.11,-0.02 0.17,-0.03 0.06,-0.01 0.11,-0.08 0.1,-0.14 0,-0.06 -0.04,-0.13 -0.1,-0.14 -0.06,-0.01 -0.11,-0.02 -0.17,-0.03 -0.06,-0.01 -0.12,-0.01 -0.17,-0.01 0.09,-0.46 0.19,-0.93 0.28,-1.39 0,0 0,0 0,0.01 0.03,0.09 0.11,0.13 0.2,0.11 0.11,-0.02 0.22,-0.05 0.33,-0.07 0.05,-0.01 0.11,-0.02 0.16,-0.04 0.05,-0.02 0.11,-0.04 0.16,-0.06 0.06,-0.02 0.1,-0.08 0.09,-0.14 -0.01,-0.06 -0.06,-0.12 -0.13,-0.11 -0.06,0 -0.11,0.01 -0.17,0.01 -0.07,0 -0.13,0.02 -0.2,0.03 -0.11,0.02 -0.23,0.04 -0.34,0.07 -0.04,0.01 -0.07,0.04 -0.09,0.07 0.15,-0.74 0.3,-1.47 0.45,-2.21 0.1,0.05 0.22,0.08 0.35,0.09 1.84,0.11 3.69,0.12 5.53,0.17 0.9,0.02 1.81,0.04 2.71,0.06 0.4,0.01 0.86,0.06 1.31,0.06 -0.02,0.13 -0.03,0.26 -0.06,0.39 -0.13,0.57 -0.26,1.14 -0.38,1.71 -1.06,0.01 -2.12,0.02 -3.17,0.05 -1.37,0.03 -2.78,-0.03 -4.13,0.13 -0.01,-0.32 -0.03,-0.64 -0.05,-0.96 0.06,0.01 0.12,0.02 0.18,0.02 0.16,0.01 0.33,0.01 0.49,0.01 0.16,0 0.32,0.01 0.47,0.01 0.08,0 0.16,0 0.24,-0.01 0.01,0 0.03,0 0.04,0 -0.23,0.01 -0.23,0.36 0.01,0.37 0.38,0.01 0.77,0.02 1.15,0.02 0.19,0 0.38,0.01 0.57,-0.01 0.19,-0.02 0.4,0.01 0.58,-0.05 0.14,-0.05 0.14,-0.24 0,-0.29 -0.19,-0.06 -0.39,-0.03 -0.58,-0.05 -0.19,-0.02 -0.38,-0.01 -0.57,-0.01 -0.37,0 -0.74,0.01 -1.11,0.02 0.07,-0.01 0.13,-0.02 0.18,-0.06 0.12,-0.09 0.12,-0.23 0,-0.31 -0.12,-0.09 -0.34,-0.07 -0.49,-0.07 -0.16,0 -0.33,0.01 -0.49,0.01 -0.16,0 -0.32,0.01 -0.47,0.01 -0.07,0 -0.15,0.01 -0.22,0.02 -0.01,-0.11 -0.01,-0.23 -0.02,-0.34 0,0 0,-0.01 0,-0.01 0.27,0.04 0.59,0 0.84,0 0.41,-0.01 0.82,-0.01 1.23,-0.02 0.4,-0.01 0.8,-0.03 1.2,-0.07 0.22,-0.03 0.45,-0.04 0.67,-0.06 0.17,-0.01 0.35,-0.01 0.51,-0.09 0.07,-0.04 0.07,-0.14 0,-0.18 -0.16,-0.08 -0.33,-0.06 -0.51,-0.07 -0.21,-0.01 -0.43,-0.01 -0.64,-0.02 -0.41,-0.02 -0.82,-0.03 -1.23,-0.02 -0.41,0 -0.82,0.02 -1.23,0.03 -0.32,0.01 -0.73,-0.03 -1.03,0.1 -0.35,-0.33 -1.03,-0.21 -1.05,0.42 -0.04,1.35 0.02,2.7 0.04,4.04 0.01,0.66 0.02,1.32 0.03,1.98 0,0.17 0,0.34 -0.01,0.52 -0.55,0.21 -0.53,1.02 0.1,1.14 0.04,0.13 0.08,0.27 0.15,0.39 0.05,0.09 0.13,0.16 0.22,0.21 -0.02,0 -0.05,0 -0.07,0 -0.46,0 -0.92,-0.01 -1.38,-0.01 -0.34,0 -0.68,-0.01 -1.02,0 0.04,-0.05 0.08,-0.1 0.11,-0.15 0.01,0 0.02,0 0.03,0 0.02,0 0.05,-0.01 0.07,-0.01 0.02,0 0.03,0 0.05,-0.01 0.01,0 0.03,-0.01 0.04,-0.02 0.01,0 0.02,-0.01 0.03,-0.01 0.03,-0.02 0.05,-0.06 0.05,-0.09 0,-0.04 -0.02,-0.08 -0.05,-0.09 -0.01,0 -0.02,-0.01 -0.03,-0.01 -0.01,-0.01 -0.03,-0.01 -0.04,-0.02 -0.01,0 -0.03,0 -0.04,-0.01 -0.02,0 -0.05,-0.01 -0.07,-0.01 -0.03,0 -0.05,-0.01 -0.08,-0.01 -0.06,-0.03 -0.13,-0.03 -0.18,0.03 -0.13,0.16 -0.25,0.32 -0.38,0.48 -0.1,0.13 -0.03,0.28 0.13,0.3 0.45,0.06 0.93,0.04 1.38,0.05 0.46,0.01 0.92,0.01 1.38,0.02 0.46,0.01 0.92,0.01 1.38,0 0.42,0 0.9,0.05 1.32,-0.05 0.14,-0.03 0.14,-0.25 0,-0.28 -0.41,-0.1 -0.89,-0.06 -1.32,-0.08 -0.24,-0.01 -0.49,-0.01 -0.73,-0.02 0.09,-0.05 0.16,-0.12 0.21,-0.22 0.05,-0.11 0.08,-0.22 0.11,-0.33 0.89,0.01 1.79,-0.01 2.67,-0.01 1.28,0 2.57,-0.01 3.85,-0.01 2.57,-0.01 5.14,-0.02 7.71,-0.03 5.14,-0.01 10.28,-0.05 15.41,-0.1 2.82,-0.03 5.66,0.05 8.47,-0.09 0.32,0.26 0.81,0.23 1.04,-0.16 0.31,-0.51 0.15,-1.29 0.14,-1.86 -0.01,-0.62 -0.03,-1.23 -0.05,-1.85 l -0.1,-3.63 c -0.02,-0.82 -1.12,-0.93 -1.4,-0.32 -0.07,-0.01 -0.14,0 -0.18,0.05 -0.04,0.04 -0.06,0.09 -0.06,0.15 0,0.05 0.02,0.11 0.06,0.15 0.03,0.03 0.07,0.02 0.11,0.03 0,0.37 0.01,0.74 0.01,1.11 -0.04,-0.01 -0.07,-0.02 -0.11,-0.02 -2.36,0.03 -4.71,0.06 -7.07,0.09 -0.15,-0.51 -0.34,-1.02 -0.55,-1.52 -0.03,-0.07 -0.06,-0.15 -0.09,-0.22 0.55,0 1.1,0 1.66,0 0.29,0 0.59,-0.02 0.88,-0.02 0.27,-0.01 0.63,0.01 0.87,-0.13 0.1,-0.06 0.12,-0.24 0,-0.3 -0.24,-0.11 -0.57,-0.08 -0.83,-0.07 -0.3,0.01 -0.61,0.02 -0.92,0.04 -0.6,0.04 -1.2,0.1 -1.79,0.14 -0.05,-0.12 -0.1,-0.25 -0.15,-0.37 0.66,0.07 1.4,-0.07 2.03,-0.11 0.78,-0.05 1.55,-0.11 2.33,-0.17 1.26,-0.09 2.52,-0.17 3.78,-0.24 0.05,0.05 0.12,0.1 0.17,0.13 0.27,0.14 0.66,0.2 0.93,0 0.09,-0.07 0.17,-0.14 0.26,-0.21 0.95,3.75 1.83,7.52 2.75,11.27 -1.46,0 -2.93,-0.01 -4.39,-0.01 -3.36,-0.01 -6.73,-0.01 -10.09,-0.02 -6.77,-0.01 -13.54,-0.03 -20.31,-0.04 -1.88,0 -3.77,-0.01 -5.65,-0.01 -1.9,0 -3.87,-0.13 -5.76,0.08 0.12,-0.61 0.25,-1.22 0.37,-1.82 0.08,0 0.16,0 0.24,0 0.09,0 0.18,0 0.27,0 0.1,-0.01 0.22,0.01 0.31,-0.05 0.08,-0.06 0.08,-0.17 0,-0.22 -0.08,-0.06 -0.2,-0.05 -0.3,-0.05 -0.09,-0.01 -0.19,0 -0.28,0 -0.06,0 -0.12,0 -0.17,0 0.07,-0.3 0.12,-0.56 0.17,-0.82 z m 18.56,-73.26 c 0.01,0.31 0.02,0.61 0.03,0.92 -0.42,-0.03 -0.85,-0.03 -1.27,-0.02 -0.02,-0.3 -0.06,-0.6 -0.08,-0.9 0.43,0 0.88,0.01 1.32,0 z m 0.78,0.01 c 0.29,-0.01 0.57,-0.01 0.86,-0.01 -0.02,0.65 -0.03,1.3 0,1.94 -0.17,0 -0.35,0.01 -0.52,0.01 -0.23,0 -0.46,-0.01 -0.68,-0.01 0,-0.16 0.02,-0.31 0.02,-0.47 0,-0.09 0,-0.18 0,-0.27 0.01,0 0.02,0 0.03,0 0.12,-0.02 0.12,-0.23 0,-0.25 -0.01,0 -0.01,0 -0.02,0 0.01,-0.31 0.01,-0.62 0.02,-0.94 0.09,-0.01 0.19,0 0.29,0 z m 5.34,27.13 c -0.01,-0.02 -0.01,-0.05 -0.04,-0.06 -0.44,-0.06 -0.91,-0.02 -1.36,0 0,0 0,0 -0.01,0 0,-0.02 0,-0.05 0,-0.07 0.01,-0.15 -0.22,-0.15 -0.23,0 0,0.03 -0.01,0.05 -0.01,0.08 -0.4,0.02 -0.8,0.04 -1.2,0.06 -0.01,0 -0.03,0 -0.04,0 0.01,-0.14 0.01,-0.27 0.02,-0.41 0,-0.07 -0.04,-0.11 -0.09,-0.12 0.54,-0.01 1.09,-0.02 1.63,-0.02 0.43,0 0.85,0 1.28,0 0.01,0.17 0.03,0.35 0.05,0.54 z m -3.58,0.04 c 0,-0.01 0,-0.02 -0.01,-0.03 -0.03,-0.14 -0.05,-0.29 -0.05,-0.44 0,-0.03 0.01,-0.06 0.01,-0.09 0.19,0 0.39,-0.01 0.58,-0.01 -0.05,0.02 -0.1,0.05 -0.11,0.12 -0.01,0.14 -0.03,0.28 -0.04,0.42 -0.12,0.02 -0.25,0.02 -0.38,0.03 z m -1.77,0.1 c -0.02,-0.21 -0.02,-0.41 -0.02,-0.62 0.25,-0.01 0.5,-0.02 0.75,-0.02 0.22,0 0.44,-0.01 0.66,-0.01 0,0.04 -0.02,0.07 -0.02,0.1 0,0.16 0.02,0.31 0.04,0.47 -0.47,0.03 -0.94,0.05 -1.41,0.08 z m -3.94,0.23 c -0.01,-0.25 -0.03,-0.5 -0.03,-0.74 0.2,-0.01 0.4,-0.01 0.59,-0.02 0.08,0.07 0.2,0.06 0.28,-0.01 0.54,-0.02 1.08,-0.03 1.62,-0.04 -0.01,0.22 -0.02,0.45 -0.03,0.67 -0.81,0.04 -1.62,0.09 -2.43,0.14 z m -2.14,0.15 0.11,-0.86 c 0.02,0.01 0.04,0.03 0.07,0.03 0.01,0 0.01,0 0.02,0 0,0.01 0,0.03 0,0.04 0.01,0.12 0.01,0.23 0.02,0.35 0.01,0.12 0.01,0.22 0.09,0.31 0.05,0.05 0.17,0.06 0.22,0 0.14,-0.17 0.07,-0.45 0.06,-0.65 0,-0.02 0,-0.03 0,-0.05 0.38,-0.01 0.76,-0.02 1.14,-0.03 0,0.25 0.01,0.51 0.02,0.76 -0.56,0.03 -1.12,0.07 -1.69,0.1 -0.03,-0.03 -0.04,-0.01 -0.06,0 z m 5.36,-26.19 c 0,0.16 0.02,0.31 0.02,0.47 -0.43,0 -0.85,0 -1.27,-0.01 -0.01,-0.23 -0.01,-0.45 -0.03,-0.68 0.42,0.01 0.85,0 1.27,-0.02 0,0.07 0,0.16 0.01,0.24 z m 1.63,1.06 c 0.01,0.08 0.14,0.12 0.16,0.02 0.01,-0.09 0.01,-0.19 0.02,-0.28 0.47,-0.01 0.93,-0.02 1.4,-0.03 0.01,0.14 0.01,0.28 0.01,0.42 0.01,0.19 0.02,0.38 0.03,0.57 -0.06,0.04 -0.11,0.11 -0.08,0.18 0.01,0.04 0.06,0.03 0.1,0.05 0.01,0.25 0.03,0.49 0.04,0.74 -0.59,0.04 -1.17,0.09 -1.76,0.11 -0.42,0.02 -0.83,0.02 -1.25,0.03 0.01,-0.28 0.02,-0.55 0.03,-0.83 0.22,-0.01 0.43,-0.02 0.64,-0.06 0.11,-0.02 0.11,-0.21 0,-0.22 -0.21,-0.03 -0.42,-0.03 -0.63,-0.02 0.01,-0.31 0.03,-0.62 0.04,-0.94 0.25,0 0.5,0.01 0.76,0.01 0.16,0 0.32,-0.01 0.48,-0.01 0,0.09 0,0.18 0.01,0.26 z m 0.61,23.23 c -0.05,0.15 -0.05,0.3 -0.07,0.45 -0.24,0 -0.48,0 -0.72,0.01 -0.24,0.01 -0.49,0.02 -0.73,0.03 0.03,-0.33 0.08,-0.65 0.16,-0.97 0.9,-0.01 1.79,0.01 2.69,0.05 0.27,0.01 0.55,0.03 0.82,0.04 0.02,0.15 0.03,0.31 0.06,0.46 0.02,0.1 0.16,0.07 0.17,-0.02 0.01,-0.14 0.01,-0.28 0.02,-0.42 0.1,0.01 0.19,0.01 0.29,0.02 0.33,0.02 0.68,0.06 1.02,0.08 0.01,0.23 0.03,0.47 0.04,0.7 -0.41,0 -0.83,0 -1.24,0 -0.75,0 -1.49,0.02 -2.24,0.03 0.02,-0.12 0.01,-0.25 0.05,-0.36 0.05,-0.21 -0.25,-0.29 -0.32,-0.1 z m -2.72,0.54 c 0,-0.33 0.01,-0.65 0.01,-0.98 0.33,-0.01 0.67,-0.03 1,-0.03 -0.08,0.32 -0.13,0.65 -0.16,0.98 -0.29,0.01 -0.57,0.02 -0.85,0.03 z m -2.69,-1.84 c 0.13,-0.09 0.26,-0.17 0.39,-0.25 0.02,0 0.04,0 0.05,0 0,0.26 0,0.51 0,0.77 -0.16,0.01 -0.31,0.04 -0.47,0.05 0.02,-0.19 0.01,-0.38 0.03,-0.57 z m -0.38,0.61 c -0.04,0 -0.09,0.01 -0.13,0.01 0.06,-0.06 0.1,-0.13 0.15,-0.2 -0.01,0.07 -0.01,0.13 -0.02,0.19 z m 2.9,-4.51 c 0,-0.21 0,-0.43 0,-0.64 v -0.07 c 0.48,0 0.95,-0.02 1.43,-0.03 -0.02,0.37 -0.04,0.74 -0.07,1.1 -0.46,-0.01 -0.91,-0.01 -1.37,0.02 0.01,-0.13 0.01,-0.26 0.01,-0.38 z m -0.29,-1.94 v 0.82 c -0.22,0 -0.45,0 -0.67,0.01 -0.03,-0.03 -0.07,-0.06 -0.12,-0.05 -0.05,0 -0.09,0.02 -0.12,0.06 -0.16,0 -0.33,0 -0.49,0.01 0,-0.41 -0.01,-0.83 -0.01,-1.24 0.15,0 0.3,0.01 0.45,0.01 0.04,0.03 0.09,0.02 0.14,0 0.9,0.02 1.79,0.04 2.69,0.06 0,0.34 0.01,0.68 0.02,1.02 -0.07,0 -0.13,0.04 -0.14,0.12 0,0 0,0 0,0 -0.48,0.01 -0.97,0.01 -1.45,0.01 v -0.81 c -0.01,-0.2 -0.3,-0.21 -0.3,-0.02 z m -2.51,0.37 c -0.01,-0.31 -0.01,-0.62 -0.02,-0.93 0.02,0.07 0.06,0.13 0.15,0.13 0.21,0 0.41,0.01 0.62,0.01 0,0.42 -0.01,0.84 -0.01,1.26 -0.24,0 -0.48,0.01 -0.73,0.01 0,-0.16 -0.01,-0.32 -0.01,-0.48 z m 1.35,-3.39 c 0.01,0.22 0.01,0.45 0.02,0.67 -0.09,0 -0.19,0.01 -0.28,0.01 0,-0.31 -0.01,-0.63 -0.01,-0.94 0.09,0 0.18,0 0.27,0 0,0.08 0,0.17 0,0.26 z m 0.03,1.02 c 0.01,0.42 0.05,0.84 0.1,1.25 -0.12,0 -0.25,0 -0.37,-0.01 0,-0.41 -0.01,-0.83 -0.01,-1.24 0.09,0 0.18,0 0.28,0 z m 7.06,5.02 v 0.25 c -0.01,0 -0.03,0 -0.04,0 -0.05,0 -0.1,0.01 -0.15,0.01 0.05,-0.5 0.07,-1.01 0.14,-1.51 0.03,-0.2 -0.27,-0.29 -0.3,-0.08 -0.09,0.53 -0.12,1.08 -0.17,1.61 -0.36,0.02 -0.71,0.04 -1.07,0.07 0.04,-0.49 0.09,-0.98 0.2,-1.47 0.04,-0.17 -0.22,-0.24 -0.26,-0.07 -0.12,0.51 -0.2,1.04 -0.26,1.56 -0.23,0.01 -0.46,0.03 -0.68,0.04 -0.03,0 -0.05,0 -0.08,0.01 0.02,-0.3 0.05,-0.61 0.07,-0.91 0.01,-0.11 -0.12,-0.14 -0.19,-0.09 -0.01,-0.01 -0.01,-0.03 -0.03,-0.04 -0.35,-0.11 -0.76,-0.11 -1.14,-0.11 0.01,-0.33 0.02,-0.67 0.03,-1 0.06,0.01 0.13,-0.01 0.13,-0.1 0,-0.01 0,-0.01 0,-0.02 0.07,0 0.15,0 0.22,-0.01 0.67,-0.03 1.35,-0.09 2.02,-0.14 0.01,0.16 0.03,0.31 0.07,0.45 0.03,0.09 0.18,0.11 0.2,0 0.02,-0.15 0.03,-0.31 0.02,-0.47 0.04,0 0.08,-0.01 0.12,-0.01 0.77,-0.06 1.58,-0.08 2.34,-0.21 -0.04,0.39 -0.1,0.78 -0.13,1.17 -0.04,0.01 -0.09,0 -0.13,0.01 -0.1,0.02 -0.2,0.03 -0.3,0.05 -0.2,0.03 -0.4,0.06 -0.6,0.09 -0.07,0.01 -0.12,0.1 -0.11,0.17 0.01,0.07 0.07,0.14 0.15,0.13 0.2,-0.02 0.39,-0.04 0.59,-0.06 0.05,0 0.1,-0.01 0.15,-0.01 0.01,0.01 0.02,0.02 0.03,0.03 0.07,0.02 0.14,0 0.2,-0.02 -0.02,0.29 -0.03,0.57 -0.05,0.86 -0.15,0.01 -0.3,0.02 -0.45,0.03 -0.18,-0.06 -0.35,-0.15 -0.54,-0.21 z m -3.26,-3.34 c 0.57,0.01 1.14,0.02 1.7,0.03 -0.01,0.24 -0.03,0.48 -0.02,0.73 0,0.1 0,0.2 0,0.3 -0.69,0.03 -1.38,0.05 -2.06,0.06 -0.05,0 -0.1,0 -0.16,0 0.01,-0.38 0.02,-0.76 0.02,-1.13 0.17,0 0.34,0 0.52,0.01 z m 4.55,0.32 c -0.01,0 -0.01,-0.01 -0.02,0 -0.01,0 -0.02,0 -0.04,0.01 -0.02,0.01 -0.04,0.02 -0.06,0.04 -0.01,0.01 -0.01,0.02 -0.02,0.03 -0.01,0.02 -0.02,0.05 -0.02,0.07 0,0.02 0,0.04 0,0.06 0,0.01 0,0.01 0,0.02 0,0.02 0,0.03 0.01,0.05 0,0.01 0,0.02 0.01,0.03 0,0.01 0.01,0.02 0.01,0.03 0.01,0.02 0.02,0.03 0.03,0.04 0.01,0.01 0.02,0.01 0.03,0.02 0.01,0 0.02,0 0.03,0.01 -0.01,0.06 -0.01,0.12 -0.02,0.17 -0.4,0 -0.79,0.06 -1.18,0.09 -0.41,0.03 -0.83,0.05 -1.24,0.07 -0.02,0 -0.04,0 -0.07,0 0,-0.07 -0.01,-0.14 -0.01,-0.21 0,-0.27 0.01,-0.53 0.02,-0.8 0.16,0 0.31,0.01 0.46,0.01 0.42,0.01 0.84,0.01 1.26,0.02 0.28,0 0.57,0.02 0.86,0.01 -0.02,0.07 -0.03,0.15 -0.04,0.23 z m -4.55,-0.7 c -0.17,0 -0.34,0 -0.52,-0.01 0,-0.43 0,-0.86 0,-1.29 0,-0.08 -0.05,-0.11 -0.11,-0.12 0.45,-0.02 0.91,-0.05 1.36,-0.08 0.32,-0.02 0.64,-0.05 0.96,-0.07 0.08,-0.01 0.17,-0.01 0.26,-0.01 -0.1,0.53 -0.18,1.07 -0.22,1.6 -0.58,0 -1.16,-0.01 -1.73,-0.02 z m -0.8,-1.29 v 1.28 c -0.87,-0.01 -1.73,-0.03 -2.6,-0.04 0,-0.42 -0.02,-0.84 -0.06,-1.27 0.75,-0.02 1.5,-0.04 2.26,-0.07 0.17,-0.01 0.33,-0.02 0.5,-0.03 -0.05,0.02 -0.1,0.06 -0.1,0.13 z m 0.06,5.19 c 0.01,-0.17 0.01,-0.35 0.02,-0.52 0.37,0.02 0.76,0.05 1.12,0 -0.02,0.26 -0.05,0.52 -0.07,0.78 -0.36,0.03 -0.73,0.05 -1.09,0.08 0.01,-0.11 0.02,-0.23 0.02,-0.34 z m -0.21,0.78 c 0.01,0 0.01,0 0.02,0 0.41,-0.02 0.82,-0.04 1.22,-0.06 -0.01,0.07 -0.01,0.14 -0.02,0.21 -0.05,0.52 -0.14,1.07 -0.09,1.6 0.01,0.09 0.14,0.12 0.17,0.02 0.14,-0.51 0.13,-1.07 0.17,-1.59 0.01,-0.09 0.01,-0.17 0.02,-0.26 0.04,0 0.08,0 0.12,-0.01 0.21,-0.01 0.42,-0.03 0.62,-0.04 -0.02,0.27 -0.03,0.54 -0.03,0.82 0,0.1 0,0.21 0,0.31 0,0 -0.01,0 -0.01,0 -0.03,0.01 -0.05,0.02 -0.07,0.05 -0.02,0.02 -0.04,0.04 -0.05,0.07 -0.01,0.03 -0.02,0.06 -0.02,0.09 0,0.02 0.01,0.04 0.01,0.06 0.01,0.04 0.03,0.07 0.06,0.1 l 0.05,0.04 c 0.02,0.01 0.05,0.02 0.08,0.02 0.01,0.07 0.01,0.15 0.03,0.22 0.05,0.16 0.26,0.11 0.28,-0.04 0.01,-0.09 0,-0.19 0,-0.28 0.01,-0.01 0.02,-0.03 0.03,-0.04 0.01,-0.02 0.02,-0.05 0.02,-0.08 0,-0.02 0,-0.04 -0.01,-0.05 -0.01,-0.02 -0.02,-0.04 -0.04,-0.06 -0.01,-0.13 -0.02,-0.27 -0.02,-0.4 0,-0.28 0.01,-0.56 0.02,-0.84 0.36,-0.02 0.71,-0.04 1.07,-0.07 -0.02,0.23 -0.06,0.45 -0.07,0.68 -0.03,0.46 -0.05,0.93 -0.02,1.39 0.01,0.13 0.01,0.26 0.02,0.39 -0.24,-0.01 -0.48,-0.03 -0.72,-0.04 -0.89,-0.04 -1.79,-0.04 -2.68,-0.03 -0.06,-0.08 -0.19,-0.09 -0.26,0 -0.4,0.01 -0.79,0.04 -1.19,0.05 -0.04,-0.06 -0.11,-0.06 -0.15,0.01 -0.56,0.03 -1.11,0.04 -1.67,0.09 0,-0.25 0,-0.49 0,-0.74 0.31,-0.01 0.61,-0.02 0.92,-0.03 0.89,-0.04 1.77,-0.07 2.64,-0.23 0.14,-0.03 0.09,-0.22 -0.03,-0.23 -0.08,-0.01 -0.16,0 -0.23,-0.01 0,0 0.01,-0.01 0.01,-0.01 0.04,-0.03 0.09,-0.06 0.13,-0.1 0.01,-0.01 0.02,-0.04 0.01,-0.05 -0.01,-0.02 -0.03,-0.02 -0.05,-0.02 -0.05,0.01 -0.09,0.03 -0.14,0.04 l -0.14,0.05 c -0.03,0.01 -0.03,0.05 -0.04,0.08 -0.73,-0.04 -1.47,-0.01 -2.2,0.02 -0.14,0.01 -0.28,0.01 -0.41,0.02 0.41,-0.19 0.83,-0.38 1.26,-0.51 -0.05,-0.18 -0.06,-0.36 -0.1,-0.54 0.49,-0.02 0.98,-0.05 1.48,-0.07 z m -3.5,2.82 c 0,0.32 0,0.65 0,0.97 -0.18,0.01 -0.35,0.01 -0.53,0.02 0,-0.32 0.03,-0.64 0.04,-0.95 0.16,-0.01 0.33,-0.03 0.49,-0.04 z m 0.4,-0.03 c 0.54,-0.03 1.08,-0.04 1.62,-0.06 -0.01,0.33 -0.02,0.66 -0.04,0.98 -0.53,0.02 -1.05,0.04 -1.58,0.06 0,-0.32 0,-0.65 0,-0.98 z m 7.36,-0.5 c -0.13,-0.01 -0.26,-0.01 -0.39,-0.02 0,-0.14 0,-0.27 0,-0.41 0.02,-0.45 0.02,-0.89 0.03,-1.34 0.01,-0.25 0.05,-0.5 0.07,-0.76 0.07,0 0.13,-0.01 0.2,-0.01 0.01,0 0.03,0 0.04,0 v 1.16 c 0.32,0.13 0.63,0.3 0.93,0.47 0,0.33 0,0.66 0.01,0.99 -0.3,-0.04 -0.6,-0.05 -0.89,-0.08 z m 1.57,-6.53 c 0.03,0 0.06,0 0.09,0 0.16,-0.02 0.15,-0.29 0,-0.32 -0.02,0 -0.04,0 -0.06,0 0.01,-0.07 0.01,-0.14 0.02,-0.21 0.02,-0.16 -0.25,-0.19 -0.28,-0.04 -0.01,0.07 -0.02,0.15 -0.03,0.22 -0.28,-0.02 -0.57,-0.01 -0.84,-0.02 -0.42,-0.01 -0.84,-0.02 -1.26,-0.02 -0.17,0 -0.33,-0.01 -0.5,-0.01 0.03,-0.55 0.11,-1.09 0.2,-1.63 0.11,-0.01 0.23,-0.01 0.34,-0.03 0.12,-0.03 0.08,-0.18 -0.03,-0.2 -0.09,-0.01 -0.19,-0.01 -0.28,-0.01 0.01,-0.03 0.01,-0.06 0.01,-0.1 0.03,-0.17 -0.22,-0.24 -0.26,-0.07 -0.01,0.05 -0.01,0.11 -0.02,0.17 -0.14,0.01 -0.28,0.02 -0.41,0.02 -0.32,0 -0.64,0 -0.96,0 -0.62,0 -1.24,0.02 -1.86,0.04 -0.74,0.02 -1.48,0.06 -2.22,0.1 -0.02,-0.26 -0.05,-0.52 -0.06,-0.78 0,-0.05 0,-0.09 0,-0.14 1.16,0 2.32,0 3.48,0 0.8,-0.01 1.6,-0.01 2.39,-0.02 0.4,-0.01 0.8,-0.01 1.2,-0.02 0.34,0 0.7,0 1.04,-0.05 -0.01,0.02 -0.02,0.03 -0.02,0.05 0,0.33 0,0.67 0,1 0,0.16 0,0.33 0,0.49 0,0.17 0.02,0.34 0.04,0.51 0.01,0.1 0.15,0.1 0.16,0 0.02,-0.17 0.04,-0.34 0.04,-0.51 0,-0.16 0,-0.33 0,-0.49 0,-0.33 0,-0.67 0,-1 0,-0.05 -0.03,-0.08 -0.07,-0.1 0.08,-0.05 0.08,-0.19 -0.02,-0.21 -0.36,-0.07 -0.74,-0.05 -1.11,-0.05 -0.4,0 -0.8,0 -1.2,0 -0.82,0 -1.64,0.01 -2.45,0.02 -1.16,0.01 -2.32,0.03 -3.49,0.05 -0.02,-0.43 -0.03,-0.85 -0.04,-1.28 h 0.05 c 0.36,0 0.72,0 1.08,0.01 0.17,0 0.33,0 0.5,0 0.18,0 0.37,0.02 0.54,-0.04 0.13,-0.04 0.13,-0.22 0,-0.27 -0.15,-0.05 -0.32,-0.04 -0.48,-0.04 0.02,-0.41 0.01,-0.83 0,-1.24 0.21,0 0.42,-0.02 0.62,-0.05 0.13,-0.02 0.13,-0.24 0,-0.26 -0.2,-0.04 -0.42,-0.05 -0.63,-0.05 -0.01,-0.14 -0.01,-0.28 -0.02,-0.42 -0.01,-0.15 -0.01,-0.3 -0.02,-0.45 0.28,0.04 0.56,0.05 0.84,0.06 0.03,0.29 0.04,0.58 0.09,0.87 0.02,0.09 0.15,0.06 0.16,-0.02 0.02,-0.28 0.01,-0.56 0.01,-0.84 0.07,0 0.13,0.01 0.2,0.01 0.1,-0.01 0.12,-0.14 0.02,-0.17 -0.07,-0.02 -0.15,-0.03 -0.22,-0.05 -0.01,-0.67 -0.04,-1.34 -0.07,-2.01 -0.01,-0.21 -0.33,-0.21 -0.32,0 0,0.04 0,0.08 0,0.11 -0.78,-0.11 -1.56,-0.15 -2.35,-0.16 0.01,-0.34 0,-0.67 0.01,-1.01 0.13,0 0.26,0 0.39,0 0,0.22 0,0.43 0,0.65 0,0.18 0.26,0.18 0.27,0 0.01,-0.22 0,-0.43 0.01,-0.65 0.04,0 0.07,0 0.11,0 0.49,0 0.97,0 1.46,-0.01 0.41,-0.01 0.84,-0.01 1.25,-0.06 0,0.02 0,0.05 0.01,0.07 0.02,0.05 0.1,0.06 0.11,0 0.01,-0.03 0,-0.05 0,-0.08 0.09,-0.01 0.09,-0.17 0,-0.18 0,0 0,0 0,0 0,-0.06 -0.01,-0.13 -0.01,-0.19 l -0.03,-0.47 c -0.02,-0.32 -0.04,-0.63 -0.06,-0.95 -0.01,-0.09 -0.15,-0.09 -0.14,0 0.02,0.32 0.04,0.63 0.06,0.95 l 0.03,0.47 c 0,0.06 0.01,0.12 0.01,0.18 -0.4,-0.05 -0.82,-0.05 -1.23,-0.07 -0.48,-0.02 -0.97,-0.03 -1.46,-0.03 -0.03,0 -0.07,0 -0.1,0 0.01,-0.36 0.02,-0.73 0.02,-1.09 0.07,0 0.14,0 0.21,0 0.27,-0.01 0.57,0 0.84,-0.05 0.1,-0.02 0.1,-0.19 0,-0.21 -0.27,-0.05 -0.57,-0.05 -0.84,-0.05 -0.07,0 -0.13,0 -0.2,0 0,-0.11 0,-0.21 0,-0.32 0.48,-0.01 0.98,-0.01 1.45,-0.1 0.14,-0.02 0.09,-0.21 -0.03,-0.23 -0.47,-0.04 -0.95,0 -1.42,0.02 0,-0.19 -0.01,-0.38 -0.01,-0.57 0.44,0 0.89,-0.02 1.33,-0.02 0,0.02 0,0.03 0,0.05 0,0.07 0.11,0.07 0.11,0 0,-0.02 0,-0.03 0,-0.05 0.44,-0.01 0.88,-0.01 1.32,-0.02 0.58,-0.02 1.15,-0.07 1.72,-0.11 0.03,0.48 0.09,0.95 0.14,1.42 -0.23,0.02 -0.45,0.04 -0.68,0.07 -0.19,0.02 -0.19,0.31 0,0.29 0.24,-0.02 0.47,-0.04 0.71,-0.06 0.02,0.16 0.03,0.32 0.05,0.48 0.01,0.08 0.13,0.05 0.13,-0.02 0.01,-0.16 0,-0.32 0.01,-0.48 0.47,-0.04 0.94,-0.08 1.41,-0.12 0.24,-0.02 0.48,-0.05 0.72,-0.07 0.01,0.05 0,0.11 0.01,0.16 0.01,0.08 0.15,0.08 0.17,0 0.01,-0.06 0.01,-0.12 0.02,-0.18 0.08,-0.01 0.15,-0.01 0.23,-0.02 0.25,-0.02 0.52,-0.04 0.78,-0.09 0.01,0.33 0.01,0.66 0.01,0.98 -0.01,1.96 -0.02,3.92 -0.03,5.88 -0.01,1.92 0.03,3.84 -0.03,5.76 -0.03,1.04 -0.11,2.11 -0.16,3.17 -0.15,0.01 -0.31,0.02 -0.45,0.03 0.02,-1.12 0.1,-2.27 0.23,-3.42 z m -8.5,-5.45 c 0,-0.25 0.01,-0.5 0.01,-0.75 0,0 0,0 0.01,0 h 1.19 c 0.08,0 0.17,0 0.26,0 0.01,0.42 0.03,0.83 0.07,1.24 -0.12,0 -0.25,0 -0.37,0 -0.36,0 -0.72,0 -1.08,0.01 h -0.06 c -0.02,-0.17 -0.03,-0.34 -0.03,-0.5 z m -1.79,-6.08 c -0.01,-0.22 -0.02,-0.45 -0.03,-0.67 0.01,0.06 0.05,0.11 0.13,0.11 0.19,0 0.38,0 0.58,0 -0.02,0.37 -0.04,0.73 -0.06,1.1 -0.2,0 -0.4,0 -0.6,0 -0.02,-0.18 -0.01,-0.36 -0.02,-0.54 z m 1.06,-1.13 c 0.39,-0.01 0.77,-0.03 1.16,-0.04 0,0.1 0.01,0.21 0.01,0.31 -0.12,0 -0.24,0 -0.36,0 -0.27,0 -0.55,0 -0.82,0 -0.01,-0.09 0,-0.18 0.01,-0.27 z m 0.44,-2.62 c 0.1,0.03 0.19,0.09 0.29,0.12 -0.02,-0.31 0,-0.64 0.04,-0.95 0.07,0 0.14,0.01 0.22,0.01 0.03,0.34 0.07,0.69 0.09,1.03 -0.27,0.01 -0.54,0.03 -0.81,0.04 0.08,-0.07 0.12,-0.16 0.17,-0.25 z m 0.98,0.48 c 0.37,-0.01 0.73,-0.01 1.1,-0.03 0.07,0 0.13,0 0.2,-0.01 0.02,0.28 0.03,0.55 0.04,0.83 -0.44,0.01 -0.88,0.03 -1.32,0.03 0,-0.27 -0.01,-0.55 -0.02,-0.82 z m -0.62,2.72 c 0.12,0 0.24,0 0.36,0 0,0.36 0,0.73 0,1.09 -0.42,0 -0.85,0 -1.27,0 0.03,-0.36 0.05,-0.73 0.07,-1.1 0.28,0 0.56,0.01 0.84,0.01 z m 2.41,4.44 c -0.27,-0.06 -0.54,-0.12 -0.82,-0.16 -0.02,-0.46 -0.03,-0.92 -0.05,-1.38 0,-0.03 -0.03,-0.02 -0.04,-0.04 0.28,-0.01 0.55,-0.02 0.83,-0.05 0.01,0.55 0.04,1.09 0.08,1.63 z m -1.06,-0.19 c -0.15,-0.02 -0.3,-0.04 -0.45,-0.06 -0.32,-0.04 -0.64,-0.08 -0.95,-0.12 0,-0.4 0,-0.8 0.01,-1.2 0.46,0.01 0.93,0.01 1.39,0 -0.01,0.01 -0.03,0.01 -0.03,0.03 0.01,0.45 0.02,0.9 0.03,1.35 z m -1.65,-0.21 c -0.27,-0.03 -0.53,-0.07 -0.8,-0.1 -0.04,0 -0.07,0.01 -0.09,0.03 0.06,-0.37 0.11,-0.75 0.15,-1.13 0.25,0.01 0.51,0.02 0.76,0.03 -0.01,0.38 -0.02,0.77 -0.02,1.17 z m -0.71,-1.6 c 0.03,-0.34 0.05,-0.67 0.07,-1 0.23,0 0.45,0 0.68,0.01 -0.02,0.34 -0.01,0.67 -0.02,1.01 -0.24,-0.01 -0.49,-0.01 -0.73,-0.02 z m -0.83,-1.01 c 0.19,0 0.38,0 0.57,0.01 -0.03,0.33 -0.05,0.67 -0.08,1.01 -0.16,0 -0.31,0 -0.46,0 -0.02,-0.35 -0.02,-0.68 -0.03,-1.02 z m 0.02,1.37 c 0.14,0.01 0.29,0.01 0.43,0.02 -0.03,0.43 -0.06,0.86 -0.06,1.28 0,0.11 0.15,0.13 0.2,0.05 0.01,0.05 0.04,0.09 0.1,0.1 0.28,0.04 0.56,0.08 0.84,0.12 -0.01,0.38 -0.02,0.76 -0.02,1.13 -0.48,0 -0.96,0 -1.44,0 0,-0.89 -0.03,-1.79 -0.05,-2.7 z m 1.76,1.61 c 0.31,0.05 0.63,0.1 0.94,0.14 0.16,0.02 0.32,0.04 0.47,0.07 0,0.16 0.01,0.32 0.01,0.48 0,0.14 0.01,0.28 0.01,0.42 -0.08,0 -0.17,0 -0.25,0 h -1.19 c 0,0 0,0 0,0 0.01,-0.38 0.01,-0.74 0.01,-1.11 z m 5.54,-7.14 c 0.19,-0.02 0.37,-0.04 0.56,-0.06 0.5,-0.07 1.06,-0.15 1.56,-0.33 -0.01,0.28 -0.01,0.56 -0.01,0.84 -0.42,0.05 -0.85,0.1 -1.27,0.13 -0.27,0.02 -0.55,0.03 -0.82,0.05 0,-0.21 -0.01,-0.42 -0.02,-0.63 z m 0.91,0.98 c 0.4,-0.03 0.8,-0.07 1.2,-0.11 0,0.01 0,0.03 0,0.04 0,0.45 0,0.9 0.03,1.35 -0.23,0.02 -0.47,0.04 -0.7,0.06 -0.47,0.05 -0.94,0.09 -1.41,0.14 0.01,-0.48 0.02,-0.95 0.01,-1.43 0.29,-0.02 0.58,-0.03 0.87,-0.05 z m 2.44,-0.29 c 0,0.5 0,0.99 0.01,1.48 -0.26,0 -0.53,0.03 -0.77,0.05 -0.07,0.01 -0.13,0.01 -0.2,0.02 0.05,-0.44 0.06,-0.89 0.08,-1.33 0,-0.03 0,-0.05 0,-0.08 0.31,-0.03 0.59,-0.09 0.88,-0.14 z m 0.01,-0.35 c -0.29,0.02 -0.58,0.04 -0.87,0.07 0.01,-0.33 0.02,-0.65 0.02,-0.98 0.06,-0.03 0.12,-0.07 0.18,-0.12 0.1,0.11 0.22,0.2 0.38,0.26 0.11,0.04 0.22,0.04 0.32,0.02 -0.01,0.25 -0.03,0.5 -0.03,0.75 z m -6.93,-0.66 c -0.06,0 -0.12,0 -0.18,0.01 -0.37,0.01 -0.74,0.02 -1.11,0.04 -0.01,-0.34 -0.03,-0.67 -0.04,-1.01 0.43,0.01 0.85,0.01 1.28,0.02 0.01,0.3 0.03,0.62 0.05,0.94 z m -1.76,-1.31 c -0.04,0 -0.07,0 -0.11,-0.01 0.02,-0.1 0.03,-0.2 0.06,-0.29 -0.15,-0.02 -0.3,-0.02 -0.45,-0.03 -0.01,-0.12 -0.02,-0.23 -0.03,-0.35 0.16,0 0.31,0 0.47,0 0.03,0.22 0.04,0.45 0.06,0.68 z m 0.15,1.65 c 0.02,0.27 0.01,0.55 0.02,0.82 -0.35,0 -0.7,-0.02 -1.05,-0.02 0.01,-0.26 0.01,-0.53 0.02,-0.79 0.34,-0.01 0.67,-0.01 1.01,-0.01 z m 0.03,1.2 c 0,0.2 0.01,0.39 0.02,0.59 -0.38,0.02 -0.75,0.03 -1.13,0.05 0.01,-0.22 0.03,-0.45 0.04,-0.67 0.36,0.01 0.71,0.03 1.07,0.03 z m -1.5,1.2 c -0.2,0 -0.39,0 -0.59,0 -0.08,0 -0.12,0.06 -0.13,0.12 -0.02,-0.47 -0.04,-0.93 -0.07,-1.4 0.29,0.01 0.58,0.02 0.87,0.03 -0.03,0.42 -0.06,0.84 -0.08,1.25 z m 0.84,6.19 c 0,0.27 -0.02,0.54 -0.01,0.81 0,0.14 0.01,0.29 0.01,0.43 l -0.99,0.01 c 0,-0.01 0,-0.01 0,-0.02 0.01,-0.11 0.02,-0.23 0.03,-0.34 0.02,-0.23 0.04,-0.45 0.07,-0.68 0.01,-0.08 -0.07,-0.14 -0.14,-0.14 -0.08,0 -0.14,0.07 -0.14,0.14 -0.02,0.22 -0.05,0.44 -0.07,0.67 -0.01,0.11 -0.03,0.22 -0.03,0.33 0,0.02 0,0.03 0,0.05 h -0.12 c 0,-0.17 -0.01,-0.34 -0.01,-0.51 0,-0.25 -0.01,-0.5 -0.01,-0.75 0.46,0 0.93,0 1.41,0 z m -1.26,1.57 c 0.03,0.09 0.17,0.12 0.2,0.01 0,0 0,0 0,0 l 1.06,0.01 c 0.01,0.43 0.02,0.86 0.04,1.29 -0.09,0 -0.18,0 -0.26,0 0,-0.27 0,-0.53 -0.01,-0.8 0,-0.18 -0.27,-0.18 -0.27,0 0,0.27 0,0.53 -0.01,0.8 -0.17,0 -0.35,0 -0.52,0.01 -0.19,0 -0.19,0.29 0,0.29 0.17,0 0.34,0 0.52,0 0,0.32 -0.01,0.64 -0.01,0.96 -0.21,0.01 -0.43,0.02 -0.64,0.03 -0.21,0.01 -0.22,0.34 0,0.34 0.21,-0.01 0.42,-0.01 0.64,-0.02 0,0.41 -0.01,0.81 -0.01,1.22 -0.21,0 -0.41,-0.01 -0.62,-0.01 -0.09,0 -0.14,0.06 -0.15,0.13 -0.02,-0.79 -0.03,-1.58 -0.04,-2.36 0.02,0.02 0.02,0.06 0.06,0.06 0.15,0 0.15,-0.23 0,-0.23 -0.04,0 -0.04,0.04 -0.06,0.06 -0.01,-0.6 -0.03,-1.19 -0.03,-1.79 z m -0.02,6.08 c 0.24,0.01 0.48,0.01 0.71,0.01 0,0.44 0,0.88 -0.01,1.31 -0.22,0.03 -0.45,0.06 -0.67,0.1 -0.01,-0.47 -0.02,-0.95 -0.03,-1.42 z m 1.1,0.02 c 0.15,0 0.29,0.01 0.44,0.01 V 301 c 0,0.07 0,0.14 0,0.2 0,0.03 0,0.07 0,0.1 0,0.06 0.02,0.1 0.05,0.15 0.04,0.09 0.2,0.09 0.24,0 0.02,-0.05 0.05,-0.09 0.05,-0.15 0,-0.03 0,-0.06 0,-0.09 0,-0.07 0,-0.14 0,-0.21 0,-0.04 0,-0.08 0,-0.12 0.21,0 0.41,0.01 0.62,0.01 v 0.06 c 0,0.21 0,0.43 0,0.64 0,0.13 0,0.26 0.01,0.4 -0.46,0.03 -0.93,0.07 -1.39,0.13 -0.01,-0.43 -0.01,-0.84 -0.02,-1.26 z m 1.72,1.49 c 0.44,-0.01 0.87,-0.02 1.31,-0.02 -0.01,0.16 -0.02,0.31 -0.02,0.47 0,0.12 -0.01,0.24 -0.01,0.36 0,0.02 0,0.04 0,0.06 -0.48,0.04 -0.96,0.07 -1.45,0.11 -0.04,-0.23 -0.1,-0.46 -0.13,-0.7 -0.48,0.14 -0.95,0.33 -1.41,0.53 0,-0.22 0,-0.44 0,-0.66 0.57,-0.06 1.14,-0.14 1.71,-0.15 z m -4.2,4.89 c -0.01,-0.14 -0.01,-0.28 -0.02,-0.42 0.08,-0.08 0.17,-0.15 0.26,-0.23 0.33,-0.03 0.65,-0.05 0.98,-0.07 -0.02,0.31 -0.03,0.63 -0.04,0.94 -0.39,0.02 -0.78,0.02 -1.16,0.05 C 588,307.42 588,307.33 588,307.24 Z m 4.32,0.48 c 0.28,-0.01 0.55,-0.02 0.83,-0.02 0,0.21 0,0.42 0.02,0.63 -0.28,0.02 -0.57,0.03 -0.85,0.05 0,-0.22 0,-0.44 0,-0.66 z m 6.87,-1.2 c 0,0 0.01,0 0,0 0.26,-0.02 0.33,-0.38 0.07,-0.45 -0.03,-0.01 -0.06,-0.01 -0.09,-0.01 -0.01,-0.27 -0.01,-0.55 -0.02,-0.82 0.16,0.1 0.31,0.22 0.47,0.33 0,0.02 0,0.05 0,0.07 0,0.06 0.03,0.1 0.04,0.16 0.03,0.35 0.05,0.7 0.09,1.05 0.01,0.12 0.02,0.24 0.03,0.36 -0.18,0 -0.37,0 -0.55,0 -0.01,-0.23 -0.03,-0.46 -0.04,-0.69 z m 0.14,-3.23 c 0.1,0 0.19,-0.01 0.29,-0.01 0,0.05 0,0.1 0,0.15 -0.1,-0.06 -0.2,-0.1 -0.29,-0.14 z m -1.65,-21.67 c 0,0.3 -0.01,0.6 -0.01,0.9 -0.33,0.07 -0.65,0.16 -0.97,0.21 -0.1,0.02 -0.21,0.03 -0.32,0.04 -0.03,-0.58 -0.07,-1.17 -0.1,-1.75 0.46,0.01 0.92,0.01 1.34,-0.1 0.04,-0.01 0.06,-0.05 0.06,-0.09 0.01,0.27 0,0.53 0,0.79 z m -1.67,1.31 c -0.45,0.01 -0.91,0.02 -1.36,0.03 0.06,-0.65 0.11,-1.29 0.12,-1.94 0.27,0 0.54,-0.01 0.81,-0.01 0.12,0 0.25,0 0.37,0.01 0.01,0.63 0.03,1.27 0.06,1.91 z m -4.96,-1 c -0.16,0 -0.31,0 -0.47,0 -0.03,-0.29 -0.07,-0.58 -0.11,-0.86 0,-0.01 -0.01,-0.03 -0.01,-0.04 0.16,0 0.32,0 0.49,0 0.04,0.3 0.07,0.6 0.1,0.9 z m -1.71,-1.55 c -0.01,0.03 -0.02,0.06 -0.03,0.09 0.01,-0.03 0.01,-0.06 0.02,-0.09 0,0.01 0.01,0 0.01,0 z m -0.13,0.55 c 0,0.01 0,0.02 0.01,0.03 0,0.04 -0.01,0.08 -0.01,0.12 -0.02,0.28 -0.01,0.57 0.01,0.85 -0.04,0 -0.08,0 -0.12,0 -0.04,0 -0.07,0.02 -0.09,0.04 0.06,-0.34 0.13,-0.69 0.2,-1.04 z m -0.26,1.24 c 0.02,0.05 0.06,0.1 0.14,0.1 0.05,0 0.09,0 0.14,0 0.01,0.2 0.02,0.4 0.03,0.59 -0.15,-0.01 -0.29,-0.01 -0.44,-0.02 0.04,-0.22 0.09,-0.45 0.13,-0.67 z m -0.2,1 c 0.18,0.01 0.35,0.02 0.53,0.03 0,0.07 0.01,0.14 0.01,0.21 0.01,0.2 0,0.42 0.07,0.61 0.06,0.15 0.15,0.28 0.28,0.38 -0.09,0 -0.18,0.01 -0.27,0.01 -0.14,0.01 -0.14,0.21 0,0.21 0.19,0 0.38,0 0.57,-0.01 -0.01,0.26 -0.01,0.52 -0.03,0.78 -0.3,-0.01 -0.6,-0.01 -0.9,-0.02 -0.01,-0.2 -0.01,-0.41 -0.03,-0.61 -0.02,-0.29 -0.09,-0.88 -0.29,-1.32 0.02,-0.09 0.04,-0.18 0.06,-0.27 z m 0.68,19.95 c -0.01,-0.18 -0.01,-0.36 -0.01,-0.54 0.22,-0.03 0.44,-0.03 0.67,-0.06 0,0.27 0,0.54 0,0.82 -0.21,0.11 -0.41,0.22 -0.6,0.34 -0.03,-0.19 -0.05,-0.38 -0.06,-0.56 z m -1.82,4.07 c 0,0.02 0,0.04 0,0.05 0,0.09 0.01,0.18 0.01,0.28 0,0 0,0 0,0 -0.07,0 -0.11,0.05 -0.13,0.1 -0.04,-0.03 -0.08,-0.05 -0.13,-0.05 -0.04,0 -0.06,0.02 -0.08,0.04 0.11,-0.14 0.21,-0.29 0.33,-0.42 z m 1.58,1.71 c 0,0.03 0,0.07 0,0.1 -0.29,-0.02 -0.57,-0.04 -0.86,-0.06 0.29,-0.01 0.58,-0.03 0.86,-0.04 z m 0.43,0.13 c 0,-0.05 -0.01,-0.1 -0.01,-0.15 0.8,-0.04 1.6,-0.07 2.4,-0.11 0,0.1 -0.01,0.2 -0.01,0.31 -0.79,-0.01 -1.59,-0.01 -2.38,-0.05 z m 2.69,0.05 c 0,-0.11 0,-0.22 0,-0.33 0.3,-0.01 0.6,-0.03 0.89,-0.04 0,0 0.01,0 0.01,0 0,0.03 0.01,0.06 0.01,0.08 0.02,0.1 0.04,0.21 0.09,0.3 -0.33,0.01 -0.66,0 -1,-0.01 z m 1.28,-0.32 c 0,-0.02 -0.01,-0.04 -0.01,-0.06 0.51,-0.03 1.03,-0.05 1.54,-0.08 0.02,0.02 0.03,0.05 0.06,0.06 0.06,0.02 0.1,-0.01 0.14,-0.06 0,0 0,-0.01 0,-0.01 0.11,-0.01 0.23,-0.01 0.34,-0.02 0,0.05 -0.01,0.11 -0.01,0.16 -0.01,0.08 -0.02,0.17 -0.02,0.25 -0.67,0.03 -1.33,0.07 -2,0.08 0,-0.1 -0.02,-0.21 -0.04,-0.32 z m 2.37,-0.01 c 0,-0.06 0.01,-0.12 0.01,-0.18 0.02,0 0.04,0 0.06,0 0.39,-0.02 0.77,-0.04 1.16,-0.07 -0.01,0.14 -0.03,0.28 -0.04,0.42 -0.13,0.01 -0.25,0.03 -0.38,0.04 -0.27,0.02 -0.55,0.02 -0.82,0.03 0.01,-0.08 0.01,-0.16 0.01,-0.24 z m 1.49,-0.26 c 0.01,0 0.02,0 0.03,0 0.44,-0.03 0.93,-0.04 1.36,-0.14 0.03,-0.01 0.04,-0.05 0.05,-0.08 0.02,0.16 0.02,0.32 0.04,0.48 -0.5,0.05 -1,0.1 -1.5,0.14 0.01,-0.13 0.02,-0.26 0.02,-0.4 z m 1.89,0.23 c -0.01,0 -0.01,0 0,0 -0.03,-0.37 -0.05,-0.73 -0.08,-1.1 0.19,0 0.37,0 0.56,0 0.01,0.09 0.02,0.19 0.03,0.28 0.02,0.23 0.04,0.51 0.1,0.75 -0.2,0.03 -0.41,0.05 -0.61,0.07 z m 0.89,-0.86 c -0.01,-0.08 -0.02,-0.16 -0.03,-0.24 0.18,0 0.36,0 0.53,-0.08 0.09,-0.04 0.09,-0.18 0,-0.23 -0.18,-0.09 -0.37,-0.09 -0.57,-0.09 -0.01,-0.13 -0.03,-0.27 -0.04,-0.4 -0.01,-0.12 -0.03,-0.24 -0.04,-0.36 0.23,0.16 0.51,0.21 0.78,0.16 0.01,0.01 0.02,0.02 0.03,0.03 -0.01,0.12 -0.02,0.24 -0.03,0.36 -0.01,0.16 -0.07,0.38 -0.01,0.53 0.06,0.17 0.31,0.23 0.4,0.05 0.07,-0.14 0.07,-0.32 0.07,-0.49 0.2,0.24 0.39,0.49 0.56,0.75 -0.01,0.02 -0.03,0.04 -0.03,0.07 0,0.03 0.01,0.06 0.01,0.09 -0.31,0.01 -0.63,0.01 -0.94,0.02 -0.21,0 -0.21,0.32 0,0.32 0.32,0.01 0.65,0.01 0.97,0.02 0,0.01 0,0.02 0,0.03 -0.54,0.08 -1.09,0.17 -1.63,0.23 0.03,-0.27 -0.01,-0.54 -0.03,-0.77 z m 3.43,-0.74 c -0.54,-0.84 -1.21,-1.56 -1.94,-2.2 0.06,-1.71 -0.09,-3.46 -0.15,-5.16 -0.07,-1.96 -0.01,-3.92 -0.01,-5.88 0,-1.92 0,-3.84 0,-5.76 0,-1.44 0.12,-2.97 -0.02,-4.44 0.3,1.14 0.6,2.27 0.9,3.41 0.62,2.34 1.22,4.68 1.81,7.03 0.58,2.31 1.14,4.62 1.69,6.94 0.27,1.16 0.54,2.32 0.81,3.48 0.21,0.92 0.41,1.83 0.71,2.71 -1.27,0.32 -2.54,0.6 -3.83,0.84 0.19,-0.27 0.26,-0.61 0.03,-0.97 z m -2.61,-25.25 c -0.17,-0.1 -0.38,-0.1 -0.57,-0.03 -0.01,-0.18 -0.01,-0.36 -0.02,-0.55 -0.01,-0.29 -0.03,-0.59 -0.04,-0.89 0.16,0.03 0.31,0.05 0.47,0.08 -0.13,0.47 0.03,0.94 0.16,1.39 z m -2.4,0.53 c -0.19,0 -0.39,0.01 -0.58,0.04 0,-0.28 -0.01,-0.56 -0.01,-0.83 0,-0.5 -0.01,-1 -0.02,-1.5 0.23,0.02 0.46,0.05 0.68,0.07 -0.03,0.75 -0.05,1.48 -0.07,2.22 z m -0.96,-1.57 c 0,-0.04 -0.02,-0.08 -0.06,-0.09 -0.43,-0.11 -0.9,-0.11 -1.36,-0.09 -0.01,-0.21 -0.02,-0.42 -0.04,-0.63 0.49,0.01 0.98,0.04 1.48,0.08 -0.01,0.24 -0.01,0.49 -0.02,0.73 z m -1.78,-0.81 c 0,0.22 0.02,0.43 0.02,0.65 -0.1,0 -0.2,0.01 -0.3,0.01 -0.29,0 -0.57,-0.01 -0.86,-0.01 0,-0.22 0.01,-0.44 0.01,-0.65 0.04,0 0.08,-0.01 0.13,-0.01 0.33,-0.01 0.67,0 1,0.01 z m -1.5,0.63 c -0.29,0 -0.58,-0.01 -0.87,-0.01 -0.1,0 -0.2,0 -0.3,0 0,-0.19 -0.02,-0.38 -0.03,-0.57 0.41,-0.02 0.82,-0.05 1.23,-0.05 -0.01,0.21 -0.02,0.42 -0.03,0.63 z m -1.65,-0.01 c -0.45,0 -0.91,0 -1.36,0.01 -0.02,-0.16 -0.03,-0.32 -0.04,-0.48 0.1,-0.01 0.21,-0.03 0.31,-0.04 0.37,-0.03 0.74,-0.03 1.12,-0.05 -0.01,0.19 -0.03,0.37 -0.03,0.56 z m -1.89,-0.42 c 0.01,0.14 0.03,0.29 0.05,0.43 -0.18,0 -0.35,0 -0.53,0 0,-0.12 0.01,-0.25 0.01,-0.37 0.16,-0.02 0.32,-0.04 0.47,-0.06 z m -3.73,10.51 c 0.03,1.23 0.06,2.46 0.11,3.69 0.08,1.95 0.11,3.9 0.16,5.84 0.02,0.95 0.06,1.91 0.07,2.86 0,0.48 0,0.95 -0.01,1.43 0,0.25 0,0.48 0.02,0.7 -0.73,0.76 -1.33,1.65 -1.76,2.65 -0.25,0.6 0.51,1.08 0.89,0.52 0.17,-0.24 0.37,-0.46 0.56,-0.7 0,0.01 -0.02,0.03 -0.02,0.04 -0.05,0.36 -0.09,0.72 -0.14,1.08 -1.22,-0.11 -2.43,-0.25 -3.64,-0.43 0,-0.01 0,-0.02 0.01,-0.03 1.24,-5.88 2.5,-11.77 3.75,-17.65 z m -4.56,21.57 c 0.85,0.28 1.72,0.52 2.61,0.66 0.5,0.08 1.01,0.13 1.51,0.17 0.46,0.03 1.06,0.13 1.5,-0.05 0.16,-0.07 0.17,-0.27 0,-0.33 -0.45,-0.17 -1.03,-0.09 -1.5,-0.12 -0.5,-0.03 -1,-0.08 -1.49,-0.16 -0.86,-0.13 -1.71,-0.31 -2.55,-0.55 0.04,-0.2 0.08,-0.41 0.13,-0.61 0.34,0.07 0.67,0.13 1.01,0.19 0.24,0.04 0.47,0.08 0.71,0.11 0.13,0.02 0.26,0.03 0.4,0.04 0.13,0.01 0.24,0.02 0.36,-0.04 0.1,-0.05 0.11,-0.2 0.04,-0.27 -0.09,-0.09 -0.21,-0.11 -0.34,-0.14 -0.13,-0.03 -0.25,-0.06 -0.38,-0.08 -0.24,-0.04 -0.47,-0.07 -0.71,-0.1 -0.33,-0.05 -0.67,-0.08 -1,-0.12 0.03,-0.15 0.06,-0.3 0.09,-0.46 1.27,0.2 2.54,0.38 3.82,0.5 6.83,0.65 13.78,0.18 20.46,-1.38 0.69,-0.16 1.38,-0.34 2.07,-0.53 -0.22,-0.69 -0.43,-1.39 -0.63,-2.09 -0.17,0.05 -0.33,0.08 -0.5,0.12 -0.11,-0.9 -0.32,-1.77 -0.53,-2.66 -0.27,-1.16 -0.54,-2.32 -0.82,-3.47 -0.56,-2.35 -1.15,-4.7 -1.74,-7.04 -0.59,-2.31 -1.19,-4.61 -1.81,-6.9 -0.31,-1.15 -0.63,-2.29 -0.95,-3.44 -0.16,-0.57 -0.32,-1.15 -0.48,-1.72 -0.12,-0.43 -0.22,-0.89 -0.48,-1.25 0.05,0.01 0.11,0 0.16,0.01 0.19,0.68 0.38,1.35 0.57,2.03 2.34,8.37 4.76,16.71 7.12,25.08 0.14,0.5 0.28,1.01 0.42,1.51 -0.34,0.1 -0.69,0.2 -1.03,0.3 -0.73,0.21 -1.45,0.46 -2.18,0.68 -0.71,0.22 -1.42,0.44 -2.13,0.67 -0.34,0.11 -0.71,0.15 -1.05,0.25 -0.39,0.11 -0.77,0.23 -1.15,0.35 -0.23,0.07 -0.13,0.42 0.1,0.36 0.37,-0.1 0.74,-0.19 1.1,-0.3 0.35,-0.1 0.68,-0.25 1.03,-0.35 0.73,-0.21 1.48,-0.39 2.21,-0.58 0.72,-0.19 1.44,-0.37 2.15,-0.57 0.35,-0.1 0.69,-0.2 1.04,-0.3 0.02,0 0.03,-0.01 0.05,-0.01 0.06,0.2 0.11,0.41 0.17,0.61 -0.23,0.04 -0.44,0.16 -0.64,0.26 -0.28,0.14 -0.56,0.27 -0.84,0.39 -0.6,0.26 -1.21,0.49 -1.82,0.68 -0.61,0.19 -1.21,0.39 -1.85,0.47 -0.63,0.08 -1.26,0.17 -1.89,0.23 -0.25,0.02 -0.25,0.41 0,0.39 0.64,-0.04 1.27,-0.09 1.89,-0.24 0.65,-0.15 1.32,-0.25 1.97,-0.43 0.63,-0.17 1.25,-0.37 1.86,-0.61 0.29,-0.12 0.58,-0.24 0.86,-0.37 0.2,-0.09 0.41,-0.19 0.59,-0.33 0.15,0.53 0.29,1.05 0.44,1.58 0,-0.01 -0.01,-0.01 -0.01,-0.02 -4.36,1.22 -8.86,1.99 -13.36,2.3 -4.98,0.34 -9.99,0.13 -14.92,-0.62 0.11,-0.58 0.22,-1.14 0.34,-1.7 z m 28.75,2.91 c -0.66,0.39 -1.51,0.39 -2.26,0.46 -0.82,0.07 -1.63,0.12 -2.45,0.14 -0.21,0.01 -0.43,-0.01 -0.64,-0.01 0.88,-0.17 1.76,-0.36 2.64,-0.56 0.85,-0.2 1.69,-0.42 2.53,-0.65 0.07,0.21 0.12,0.41 0.18,0.62 z m -8.94,13.81 c -0.09,0 -0.16,0.07 -0.16,0.16 v 0.28 c 0,0.05 0,0.1 0,0.15 -0.07,0 -0.15,0 -0.22,0 0,-0.03 0.01,-0.06 0.01,-0.09 0.01,-0.19 0.02,-0.38 0.03,-0.56 0.02,-0.37 0.04,-0.74 0.06,-1.11 0.01,-0.19 -0.29,-0.19 -0.3,0 -0.02,0.36 -0.05,0.72 -0.07,1.08 -0.01,0.18 -0.02,0.36 -0.03,0.54 0,0.04 0,0.09 -0.01,0.14 -0.15,0 -0.3,0.01 -0.46,0.01 -0.19,0 -0.37,0 -0.56,0 0.01,-0.17 0.02,-0.35 0.02,-0.52 0.02,-0.46 0.04,-0.92 0.06,-1.38 0.01,-0.18 -0.28,-0.18 -0.29,0 l -0.07,1.38 c -0.01,0.14 -0.01,0.28 -0.02,0.42 -0.01,0.02 -0.02,0.04 -0.03,0.06 0,0.02 0,0.03 0,0.05 -0.24,0 -0.49,0 -0.73,0 -0.01,-0.23 -0.01,-0.47 -0.01,-0.7 -0.01,-0.49 -0.04,-0.99 -0.07,-1.48 -0.01,-0.12 -0.2,-0.12 -0.19,0 0.02,0.49 0.03,0.99 0.06,1.48 0.02,0.23 0.03,0.47 0.05,0.7 -0.29,0 -0.58,0 -0.87,0 0.18,-0.3 0.21,-0.71 0.24,-1.05 0.04,-0.34 0.06,-0.68 0.08,-1.02 0.03,-0.57 0.06,-1.13 0.06,-1.7 0.01,0 0.01,0 0.02,0 0.45,-0.03 0.9,-0.07 1.36,-0.1 0.81,-0.06 1.65,-0.1 2.47,-0.2 0.1,0.31 0.16,0.64 0.25,0.97 0.13,0.46 0.16,0.67 0.19,1.08 0.01,0.2 0.02,0.4 0.01,0.6 0,0.11 -0.01,0.21 -0.02,0.32 0,0.05 -0.01,0.1 -0.01,0.14 -0.01,0.09 -0.03,0.18 -0.05,0.26 -0.01,0.04 -0.03,0.07 -0.04,0.11 0,0.01 -0.01,0.02 -0.02,0.04 -0.07,0.17 -0.13,0.34 -0.19,0.51 -0.14,0 -0.28,0 -0.41,0.01 0,-0.05 0,-0.1 0,-0.14 v -0.28 c 0.02,-0.09 -0.05,-0.17 -0.14,-0.16 z m -7.63,0.63 c -0.41,0 -0.81,0 -1.22,0.01 -0.1,-0.11 -0.19,-0.23 -0.27,-0.36 0.06,-0.32 0.11,-0.63 0.19,-0.95 0.04,-0.17 0.09,-0.34 0.15,-0.5 0,-0.01 0,-0.01 0.01,-0.02 0.01,-0.02 0.02,-0.05 0.03,-0.07 0.04,-0.09 0.09,-0.17 0.14,-0.26 0.04,-0.06 0.08,-0.12 0.12,-0.18 0.02,-0.03 0.03,-0.05 0.05,-0.07 0,0 0,0 0,-0.01 0.07,-0.09 0.15,-0.16 0.23,-0.24 0.01,0 0.02,-0.01 0.03,-0.01 0.17,-0.06 0.36,-0.09 0.52,-0.15 0.12,-0.05 0.27,-0.12 0.41,-0.18 0.03,-0.01 0.05,-0.03 0.08,-0.05 0.02,0 0.04,0.01 0.04,0 0.06,0.01 0.12,0.02 0.18,0.04 0.02,0.01 0.12,0.04 0.14,0.04 0.01,0.01 0.02,0.01 0.03,0.01 0.04,0.02 0.08,0.04 0.12,0.06 0.06,0.03 0.12,0.07 0.17,0.11 0,0 0.02,0.01 0.03,0.02 0.02,0.02 0.05,0.04 0.06,0.05 0.05,0.04 0.1,0.09 0.15,0.14 0.02,0.02 0.07,0.08 0.09,0.1 0.02,0.03 0.07,0.1 0.08,0.12 0.03,0.05 0.06,0.11 0.09,0.17 0,0 0.04,0.08 0.05,0.11 0.03,0.08 0.05,0.16 0.06,0.24 0.01,0.02 0.01,0.05 0.01,0.07 0,0 0,0 0,0.01 0,0.08 0.01,0.17 0.01,0.25 0,0.06 -0.01,0.11 -0.01,0.17 0,0.01 -0.01,0.1 -0.02,0.13 -0.02,0.07 -0.03,0.14 -0.05,0.21 -0.01,0.03 -0.02,0.07 -0.03,0.1 0,0.01 -0.02,0.05 -0.03,0.08 -0.01,0.02 -0.02,0.04 -0.02,0.04 -0.02,0.04 -0.04,0.09 -0.07,0.13 -0.03,0.06 -0.07,0.13 -0.11,0.19 -0.04,0.06 -0.08,0.12 -0.12,0.18 0.07,-0.1 -0.06,0.07 -0.09,0.1 -0.04,0.05 -0.09,0.09 -0.14,0.14 -0.34,0.03 -0.72,0.03 -1.09,0.03 z m -4.78,-1.8 c -0.03,0.44 -0.06,0.88 -0.09,1.31 -0.01,0.17 -0.02,0.34 -0.03,0.51 -0.28,0 -0.56,0 -0.84,0 0.07,-0.42 0.07,-0.84 0.07,-1.27 0,-0.45 0,-0.9 0,-1.36 0,-0.17 -0.27,-0.17 -0.27,0 0,0.45 0,0.9 0,1.36 0,0.43 0,0.85 0.07,1.27 -0.21,0 -0.41,0 -0.62,0 -0.33,0 -0.66,0.01 -0.99,0.01 0,-0.01 -0.01,-0.02 -0.01,-0.03 -0.06,-0.27 -0.11,-0.54 -0.14,-0.82 -0.06,-0.55 -0.06,-1.1 -0.01,-1.65 0.02,-0.18 -0.27,-0.18 -0.29,0 -0.07,0.58 -0.07,1.16 0,1.74 0.03,0.26 0.07,0.51 0.13,0.77 -0.29,0 -0.59,0.01 -0.88,0.01 0.03,-0.19 0,-0.38 -0.04,-0.58 -0.02,-0.09 -0.04,-0.18 -0.05,-0.27 -0.01,-0.03 -0.01,-0.06 -0.02,-0.1 0,-0.01 0,-0.03 -0.01,-0.06 -0.04,-0.35 -0.06,-0.71 -0.07,-1.06 0,-0.58 0.1,-1.16 0.07,-1.74 0.86,0.11 1.74,0.11 2.61,0.13 0.46,0.01 0.92,0.02 1.39,0.03 0.33,0.01 0.66,-0.02 0.95,-0.14 -0.01,0.5 -0.02,0.99 -0.03,1.49 -0.02,0.02 -0.05,0.02 -0.05,0.05 0,0.36 -0.01,0.72 -0.01,1.08 0,0.18 0,0.36 -0.01,0.54 0,0.17 0,0.33 0.02,0.49 0,0.01 0,0.01 0,0.02 -0.01,0.03 0,0.05 -0.01,0.08 -0.21,0 -0.41,0 -0.62,0 0.01,-0.17 0.02,-0.34 0.02,-0.51 0.01,-0.44 0.03,-0.88 0.04,-1.31 0.02,-0.18 -0.27,-0.18 -0.28,0.01 z m -10.5,-0.21 c 0.02,0 0.03,0 0.05,0 0.11,0 0.23,0 0.34,0 0.12,0 0.24,0 0.35,-0.04 0.15,-0.05 0.15,-0.25 0,-0.3 -0.12,-0.04 -0.23,-0.04 -0.35,-0.04 -0.1,0 -0.21,0 -0.31,0 0.05,-0.27 0.11,-0.54 0.16,-0.82 0.22,0 0.45,0.01 0.67,0.01 0.2,0 0.41,0 0.61,0 0.11,0 0.22,0 0.33,-0.01 0.03,0 0.06,-0.01 0.1,-0.01 -0.02,0.29 -0.03,0.58 -0.05,0.87 -0.03,0.61 -0.1,1.23 -0.15,1.84 0,-0.04 -0.02,-0.09 -0.08,-0.1 -0.19,-0.05 -0.37,-0.03 -0.57,-0.02 -0.19,0.01 -0.38,0.02 -0.58,0.03 l -0.81,0.05 c 0.1,-0.49 0.19,-0.98 0.29,-1.46 z m 2.03,-7.44 c -0.01,-0.01 -0.02,-0.01 -0.03,-0.01 -0.05,-0.02 -0.09,-0.03 -0.14,-0.04 -0.04,0 -0.08,0 -0.13,-0.01 -0.08,0 -0.17,0.01 -0.25,0.01 0.09,-0.47 0.19,-0.93 0.29,-1.4 0.22,-0.01 0.45,-0.03 0.67,-0.04 -0.09,0.55 -0.1,1.13 -0.12,1.66 -0.01,-0.03 -0.01,-0.06 -0.03,-0.08 -0.05,-0.04 -0.09,-0.07 -0.15,-0.08 -0.01,0 -0.12,-0.02 -0.12,-0.02 -0.01,0 0,0 0.01,0.01 z m 17.12,-2.9 c 0.01,0.19 0.03,0.38 0.05,0.58 0.01,0.09 0.02,0.18 0.03,0.27 0,0.02 0.01,0.04 0.01,0.07 -0.42,-0.51 -0.93,-0.93 -1.54,-1.23 0.48,0 0.95,-0.01 1.43,-0.01 0,0.09 0.01,0.21 0.02,0.32 z m -0.89,9.45 c -0.15,-0.28 -0.33,-0.53 -0.56,-0.76 0.16,-0.09 0.31,-0.19 0.46,-0.29 0.07,0.04 0.13,0.09 0.21,0.11 -0.05,0.31 -0.08,0.63 -0.11,0.94 z m 0.44,-4.94 c -0.22,1.5 -1.39,2.92 -2.95,3.13 -1.5,0.19 -3.13,-0.68 -3.72,-2.1 -0.31,-0.74 -0.31,-1.55 -0.09,-2.3 0.27,-0.25 0.55,-0.49 0.82,-0.74 0.35,-0.33 0.67,-0.69 1.07,-0.97 0.67,-0.48 1.48,-0.84 2.32,-0.69 1.69,0.27 2.8,2.04 2.55,3.67 z m -7.51,-4.79 c 0.85,0.03 1.69,0.04 2.54,0.03 -0.04,0.02 -0.08,0.03 -0.12,0.05 -0.55,0.3 -1.04,0.71 -1.48,1.14 -0.03,-0.01 -0.06,-0.03 -0.09,-0.04 -0.26,-0.09 -0.54,-0.07 -0.81,-0.08 -0.06,0 -0.12,0 -0.18,0 0.41,-0.18 0.66,-0.85 0.14,-1.1 z m -7.34,4.73 c 0.03,0.09 0.11,0.16 0.22,0.13 0.1,-0.02 0.2,-0.05 0.3,-0.07 -0.01,0.16 -0.01,0.32 -0.02,0.47 -0.18,0.08 -0.36,0.17 -0.53,0.27 0.01,-0.26 0.02,-0.53 0.03,-0.8 z m 1.28,-1.35 c 0.03,0 0.06,0 0.09,-0.01 0,0.09 0,0.19 -0.01,0.28 0,0.17 -0.01,0.34 -0.01,0.51 -0.04,0.01 -0.07,0.02 -0.11,0.03 -0.08,0.02 -0.16,0.04 -0.24,0.06 0.01,-0.29 0.02,-0.58 0.04,-0.87 0.08,0.01 0.16,0.01 0.24,0 z m -0.22,5 c -0.07,0.02 -0.13,0.05 -0.2,0.07 0.01,-0.27 0.02,-0.55 0.03,-0.82 0.03,-0.01 0.06,-0.02 0.08,-0.02 0.09,-0.03 0.19,-0.06 0.28,-0.08 -0.01,0.28 -0.02,0.55 -0.03,0.83 -0.05,0 -0.1,0 -0.16,0.02 z m -0.62,-1.53 c -0.01,0.15 -0.01,0.31 -0.02,0.46 -0.18,0.06 -0.36,0.12 -0.54,0.18 l 0.02,-0.48 c 0.18,-0.08 0.36,-0.12 0.54,-0.16 z m 0.83,0.18 c -0.12,0.04 -0.24,0.08 -0.36,0.12 0,-0.14 0.01,-0.28 0.01,-0.43 0.12,-0.02 0.24,-0.02 0.36,-0.03 0,0.11 -0.01,0.22 -0.01,0.34 z m 0.03,-0.98 c 0,0.05 0,0.1 0,0.15 -0.12,0.01 -0.24,0.02 -0.36,0.04 0.01,-0.21 0.01,-0.43 0.02,-0.64 0.06,-0.02 0.11,-0.04 0.17,-0.05 0.06,-0.01 0.13,-0.02 0.19,-0.03 -0.01,0.17 -0.01,0.35 -0.02,0.53 z m -1.44,1.88 c 0.18,-0.05 0.36,-0.11 0.55,-0.16 -0.01,0.28 -0.02,0.56 -0.03,0.84 -0.2,0.08 -0.38,0.18 -0.57,0.29 z m 1.91,-3.43 c 0.04,-0.01 0.09,-0.02 0.13,-0.03 0.1,-0.02 0.19,-0.05 0.29,-0.07 0,0.2 0,0.4 0,0.59 -0.12,-0.08 -0.28,-0.08 -0.42,-0.06 -0.01,-0.15 0,-0.29 0,-0.43 z m 0.42,-0.54 c -0.04,0.01 -0.08,0.01 -0.12,0.02 -0.1,0.02 -0.19,0.05 -0.29,0.07 0,0 -0.01,0 -0.01,0 0,-0.11 0,-0.22 0.01,-0.33 0,-0.12 0,-0.25 0.01,-0.37 0.07,-0.01 0.13,-0.01 0.2,-0.02 0.09,-0.01 0.17,-0.02 0.24,-0.06 -0.02,0.22 -0.03,0.45 -0.04,0.69 z m -0.85,0.63 c 0,0.14 -0.01,0.28 -0.01,0.41 -0.11,0.02 -0.22,0.04 -0.33,0.07 -0.01,0 -0.01,0.01 -0.02,0.01 0,-0.14 0.01,-0.27 0.01,-0.41 0.11,-0.02 0.23,-0.05 0.35,-0.08 z m -1.39,1.4 c 0.03,0 0.05,0.01 0.09,-0.01 0.15,-0.09 0.3,-0.16 0.45,-0.22 -0.01,0.19 -0.01,0.38 -0.02,0.57 -0.18,0.04 -0.36,0.09 -0.53,0.16 -0.01,-0.17 0,-0.33 0.01,-0.5 z m -0.16,3.29 c 0.07,0.06 0.15,0.09 0.24,0.03 0.1,-0.06 0.21,-0.11 0.32,-0.16 -0.01,0.23 -0.02,0.47 -0.02,0.7 -0.2,0.06 -0.39,0.13 -0.58,0.21 z m 1.05,-0.32 c 0.12,-0.04 0.23,-0.08 0.35,-0.11 0.01,0 0.03,0 0.04,-0.01 0,0.29 0.01,0.58 0.02,0.87 -0.14,0.01 -0.29,0.01 -0.43,0.03 0,-0.26 0.01,-0.52 0.02,-0.78 z m 1.09,-0.83 c -0.06,0.03 -0.11,0.08 -0.16,0.14 0,0 0,0 0,0 -0.02,0 -0.03,0.01 -0.04,0.01 0.01,-0.3 0.01,-0.6 0.01,-0.9 0.03,-0.01 0.06,-0.02 0.09,-0.03 0.13,-0.04 0.21,-0.08 0.26,-0.21 0.03,-0.08 -0.02,-0.17 -0.09,-0.21 -0.08,-0.06 -0.17,-0.04 -0.26,-0.02 0,-0.08 0,-0.17 0,-0.25 0.1,-0.01 0.2,-0.02 0.28,-0.09 0.07,-0.06 0.06,-0.17 0,-0.23 -0.07,-0.08 -0.18,-0.09 -0.28,-0.11 0,-0.06 0,-0.11 0,-0.17 0,-0.2 0.01,-0.4 0.01,-0.59 0.15,-0.01 0.3,-0.04 0.42,-0.12 -0.01,0.36 -0.01,0.72 -0.02,1.08 -0.01,0.37 -0.08,0.86 0.01,1.26 -0.13,0.09 -0.21,0.26 -0.23,0.44 z m 0.33,-5.16 c -0.01,0 0,0 0,0 -0.14,-0.08 -0.31,-0.05 -0.46,-0.04 0,-0.18 0,-0.36 0,-0.55 0.1,0 0.19,0 0.28,0 0.11,0 0.21,0.02 0.3,-0.04 -0.05,0.21 -0.1,0.42 -0.12,0.63 z m -0.88,0 c -0.03,0 -0.07,0.01 -0.1,0.01 -0.07,0.01 -0.15,0.01 -0.22,0.02 0.01,-0.19 0,-0.38 0,-0.57 0.03,0 0.07,-0.02 0.1,-0.02 0.08,-0.01 0.16,0 0.24,-0.01 -0.01,0.19 -0.02,0.38 -0.02,0.57 z m -0.81,0.06 c -0.09,0.01 -0.17,0.01 -0.26,0.02 -0.1,0.01 -0.19,0.08 -0.19,0.19 0,0.1 0.09,0.2 0.19,0.19 0.08,-0.01 0.16,-0.01 0.25,-0.02 -0.01,0.32 -0.02,0.65 -0.03,0.97 -0.14,0.04 -0.27,0.07 -0.41,0.11 -0.07,0.02 -0.1,0.06 -0.12,0.11 0.01,-0.34 0.03,-0.68 0.04,-1.02 0.01,-0.31 0.04,-0.65 0.06,-0.99 0.17,-0.04 0.34,-0.06 0.5,-0.1 -0.01,0.19 -0.03,0.37 -0.03,0.54 z m -0.84,7.58 c 0.19,-0.1 0.38,-0.18 0.58,-0.24 -0.01,0.36 -0.03,0.71 -0.04,1.07 -0.2,0.08 -0.39,0.17 -0.57,0.28 0.01,-0.37 0.02,-0.74 0.03,-1.11 z m 1.06,-0.26 c 0,-0.03 0,-0.06 0,-0.09 0.02,0 0.04,-0.01 0.05,-0.01 0.12,-0.02 0.23,-0.01 0.35,-0.02 -0.01,0.14 -0.04,0.29 -0.05,0.43 -0.01,0.18 0,0.36 0,0.54 -0.13,0.02 -0.27,0.03 -0.4,0.06 0.03,-0.31 0.04,-0.61 0.05,-0.91 z m 2.84,-3.93 c 0,-0.44 0,-0.88 -0.01,-1.32 -0.01,-0.79 0.04,-1.61 -0.1,-2.39 0.8,0.04 1.61,0.03 2.42,0.04 0.39,0 0.77,0 1.16,0 -0.07,0.12 -0.15,0.24 -0.23,0.35 0,0 0,0 0,0 -0.07,0.04 -0.11,0.11 -0.09,0.19 0,0.01 0.01,0.01 0.01,0.01 -0.01,0.06 -0.01,0.12 0,0.18 -0.01,0.04 -0.02,0.08 -0.03,0.12 -0.18,0.03 -0.36,0.06 -0.54,0.08 -0.35,0.05 -0.71,0.1 -1.06,0.15 -0.21,0.03 -0.16,0.4 0.05,0.38 0.35,-0.04 0.71,-0.09 1.06,-0.13 0.13,-0.02 0.26,-0.03 0.39,-0.04 -0.1,0.45 -0.15,0.9 -0.1,1.35 0.03,0.23 0.08,0.44 0.14,0.65 -0.17,0.01 -0.34,0.02 -0.51,0.03 -0.41,0.03 -0.83,0.05 -1.24,0.08 -0.22,0.01 -0.22,0.35 0,0.34 0.42,-0.02 0.84,-0.04 1.27,-0.06 0.2,-0.01 0.4,-0.02 0.6,-0.03 0.09,0.25 0.2,0.48 0.33,0.7 -0.14,-0.01 -0.29,-0.02 -0.43,-0.04 -0.22,-0.03 -0.45,-0.03 -0.67,-0.04 -0.45,-0.02 -0.9,-0.04 -1.36,-0.06 -0.22,-0.01 -0.22,0.33 0,0.34 0.45,0.02 0.9,0.04 1.36,0.07 0.23,0.01 0.45,0.03 0.68,0.02 0.2,-0.01 0.4,0.01 0.61,-0.01 0.04,0.06 0.08,0.13 0.13,0.19 -0.26,-0.08 -0.55,-0.1 -0.83,-0.09 -0.46,0 -0.92,0.01 -1.39,0.01 -0.54,0 -1.08,0 -1.61,0.02 0.01,-0.12 0.01,-0.24 0.01,-0.37 -0.01,-0.25 -0.01,-0.49 -0.02,-0.72 z m 4.98,4.5 c -0.02,-0.78 -0.06,-1.56 -0.09,-2.34 0.33,0.24 0.68,0.45 1.06,0.61 -0.24,0.27 -0.44,0.57 -0.59,0.9 -0.18,0.25 -0.29,0.53 -0.38,0.83 z m -6.28,-9 c 0,0.03 0.02,0.06 0.02,0.1 -0.08,-0.04 -0.16,-0.06 -0.25,-0.08 -0.11,-0.02 -0.22,-0.04 -0.33,-0.04 0,0 0,0 -0.01,0 -0.01,-0.14 -0.01,-0.28 -0.03,-0.42 0.16,-0.01 0.33,-0.03 0.49,-0.04 0.1,0 0.19,-0.01 0.29,-0.01 -0.11,0.13 -0.19,0.29 -0.18,0.49 z m -0.88,-0.02 c -0.11,0 -0.23,0 -0.34,0.01 -0.02,0 -0.04,0.01 -0.06,0.01 0,-0.13 0.01,-0.26 0,-0.39 0.15,-0.01 0.29,-0.02 0.44,-0.03 -0.02,0.13 -0.03,0.27 -0.04,0.4 z m -0.81,0.09 c -0.18,0.04 -0.35,0.09 -0.52,0.15 0,-0.18 -0.02,-0.36 -0.03,-0.54 0.19,-0.02 0.39,-0.03 0.58,-0.04 -0.02,0.14 -0.02,0.29 -0.03,0.43 z m -0.96,10.31 c 0.18,-0.13 0.38,-0.25 0.58,-0.34 0,0.18 -0.01,0.36 -0.01,0.54 0,0.07 0,0.13 0,0.19 -0.2,0 -0.39,0.01 -0.59,0.02 0,-0.14 0.01,-0.27 0.02,-0.41 z m 1.02,0.39 c 0,-0.04 0,-0.09 0.01,-0.13 0.01,-0.24 0.02,-0.48 0.03,-0.72 0,-0.02 0,-0.03 0,-0.05 0.05,-0.01 0.09,-0.04 0.13,-0.05 0.09,-0.02 0.19,-0.02 0.29,-0.03 0,0.02 0,0.03 0,0.05 0.01,0.18 0.02,0.36 0.04,0.55 0.01,0.14 0.04,0.27 0.07,0.39 -0.19,-0.01 -0.37,-0.01 -0.57,-0.01 z m 13.72,-0.08 c 0,0 0,0.01 0,0 0,0.01 0,0.01 0,0 0,0.01 0,0 0,0 z m 8.03,-0.1 c -0.03,0.01 -0.05,0.03 -0.08,0.04 -0.06,0 -0.12,0 -0.18,0 -0.01,-0.16 -0.02,-0.32 -0.02,-0.48 0,0 0,0 0,0 0.06,-0.03 0.12,-0.09 0.11,-0.17 0,-0.02 0,-0.04 -0.01,-0.05 -0.02,-0.06 -0.06,-0.09 -0.11,-0.12 -0.01,-0.34 -0.01,-0.68 -0.02,-1.02 0.11,-0.02 0.23,-0.04 0.34,-0.05 0.01,0 0.03,0 0.04,0 -0.01,0.46 -0.01,0.91 -0.05,1.37 -0.01,0.17 -0.02,0.32 -0.02,0.48 z m -1.55,-6.91 c 0,0.16 0.01,0.32 0.01,0.48 -0.06,0.01 -0.12,0.01 -0.17,0.02 -0.04,0.01 -0.06,0.04 -0.08,0.07 0.02,-0.17 0.05,-0.34 0.06,-0.5 0,-0.01 0,-0.03 0,-0.04 0.06,-0.01 0.12,-0.02 0.18,-0.03 z m 1.62,3.21 c -0.09,0.02 -0.17,0.03 -0.26,0.05 -0.05,0.01 -0.11,0.03 -0.16,0.04 -0.01,-0.29 -0.01,-0.58 -0.02,-0.87 0.09,-0.01 0.18,-0.01 0.27,-0.02 0.05,-0.01 0.1,-0.02 0.16,-0.02 0.01,0.28 0.01,0.55 0.01,0.82 z m -0.76,2.94 c -0.03,0.01 -0.06,0.01 -0.1,0.02 -0.02,0 -0.05,0.01 -0.07,0.01 0.02,-0.3 0.01,-0.6 -0.01,-0.9 0.05,-0.02 0.1,-0.04 0.15,-0.05 0.01,0.31 0.02,0.62 0.03,0.92 z m -0.46,-4.15 c -0.01,-0.39 -0.01,-0.77 -0.02,-1.16 0.11,-0.02 0.22,-0.04 0.33,-0.05 0.01,0.26 0.01,0.51 0.02,0.77 0,0.15 0.01,0.29 0.01,0.44 l -0.34,0.02 c 0,0 0,-0.01 0,-0.02 z m 0.35,0.47 c 0.01,0.32 0.02,0.63 0.03,0.95 -0.12,0.03 -0.25,0.07 -0.37,0.1 0.01,-0.35 0.02,-0.69 0.01,-1.03 0.1,-0.01 0.22,-0.01 0.33,-0.02 z m -0.34,1.53 c 0.13,-0.03 0.25,-0.07 0.38,-0.1 0.01,0.28 0.02,0.57 0.02,0.85 -0.06,0.02 -0.12,0.05 -0.19,0.07 -0.03,-0.28 -0.13,-0.55 -0.21,-0.82 z m 0.29,-3.61 c -0.11,0 -0.22,0.03 -0.33,0.05 0,-0.16 -0.01,-0.32 -0.01,-0.49 0.07,-0.01 0.14,-0.02 0.21,-0.03 0.04,-0.01 0.08,-0.01 0.12,-0.02 0,0.16 0,0.32 0.01,0.49 z m -1.12,1.15 c 0.09,-0.21 0.1,-0.44 0.14,-0.66 0,-0.02 0.01,-0.05 0.01,-0.07 0.04,0.08 0.11,0.13 0.22,0.1 0.02,-0.01 0.05,0 0.07,-0.01 0.01,0.37 0.01,0.74 0.02,1.1 0,0.02 0,0.03 0,0.05 l -0.39,0.02 c 0,-0.02 0.01,-0.04 0,-0.06 -0.02,-0.13 -0.07,-0.24 -0.14,-0.34 0.02,-0.05 0.05,-0.08 0.07,-0.13 z m 0.46,0.97 c 0,0.18 0,0.36 0.01,0.55 -0.04,-0.06 -0.06,-0.14 -0.1,-0.2 -0.09,-0.12 -0.19,-0.22 -0.28,-0.33 0.12,-0.01 0.24,-0.02 0.37,-0.02 z m 0.62,4.38 c 0.01,-0.11 0.01,-0.21 0.02,-0.32 0.06,-0.01 0.12,-0.02 0.19,-0.03 h 0.01 c 0,0.13 0,0.27 0,0.4 -0.07,0 -0.15,0 -0.22,0 -0.01,-0.01 -0.01,-0.03 0,-0.05 z m 0.57,-2.26 c -0.01,-0.28 -0.01,-0.56 -0.02,-0.84 0.09,-0.02 0.18,-0.04 0.27,-0.07 0.05,-0.01 0.09,-0.03 0.14,-0.05 0,0.3 0.01,0.6 0.01,0.89 -0.03,0 -0.06,0 -0.09,0.01 -0.1,0.01 -0.2,0.04 -0.31,0.06 z m 0.38,-2.91 c 0,0.09 0,0.17 0,0.26 -0.07,0 -0.14,-0.01 -0.21,-0.01 -0.07,0 -0.15,0.01 -0.22,0.01 0,-0.14 -0.01,-0.28 -0.01,-0.41 -0.01,-0.26 -0.01,-0.51 -0.02,-0.77 0.05,0 0.1,0 0.15,0.01 0.03,0.01 0.07,0.01 0.1,0.02 0.06,0.01 0.1,0 0.15,-0.01 0,0 0,0 0.01,0 0.01,0.3 0.04,0.6 0.05,0.9 z m -0.24,-1.31 c -0.08,-0.01 -0.16,-0.01 -0.23,-0.02 0,-0.19 -0.01,-0.38 -0.01,-0.56 0.12,-0.02 0.24,-0.04 0.33,-0.12 0.03,-0.03 0.04,-0.08 0.04,-0.12 0.02,0.29 0.03,0.59 0.05,0.88 -0.06,-0.02 -0.12,-0.05 -0.18,-0.06 z m 0.07,-1.75 c 0.02,0.3 0.03,0.61 0.05,0.92 -0.01,-0.05 -0.03,-0.09 -0.07,-0.11 -0.1,-0.04 -0.2,-0.04 -0.31,-0.02 -0.01,-0.4 -0.02,-0.81 -0.03,-1.21 0.11,0 0.21,0 0.32,0.01 0.02,0.14 0.03,0.28 0.04,0.41 z m -0.76,0.86 c -0.06,0.01 -0.13,0.02 -0.19,0.03 -0.04,0.01 -0.09,0.01 -0.13,0.02 -0.01,-0.4 -0.02,-0.81 -0.03,-1.21 0.11,-0.03 0.21,-0.08 0.32,-0.1 0,0.42 0.02,0.84 0.03,1.26 z m -0.69,0.11 c -0.05,0.01 -0.1,0.02 -0.16,0.03 0.02,-0.33 0.04,-0.66 0.03,-1 0,-0.05 -0.01,-0.11 -0.01,-0.16 0.04,-0.02 0.08,-0.02 0.12,-0.04 0.01,0.39 0.01,0.78 0.02,1.17 z m 1.37,-1.88 c -0.1,-0.01 -0.19,-0.03 -0.29,-0.03 -0.01,-0.21 -0.02,-0.41 -0.03,-0.62 0.08,0.01 0.17,0.03 0.26,0.03 0.02,0.21 0.03,0.42 0.06,0.62 z m -0.72,0.02 c -0.03,0.01 -0.07,0.01 -0.11,0.01 -0.08,0.01 -0.15,0.04 -0.23,0.06 -0.01,-0.28 -0.01,-0.56 -0.02,-0.84 0.08,0.01 0.17,0.02 0.25,0.03 0.03,0 0.06,0.01 0.1,0.01 0.01,0.25 0.01,0.49 0.01,0.73 z m -0.67,0.16 c -0.05,0.02 -0.1,0.04 -0.15,0.06 -0.02,-0.25 -0.02,-0.5 -0.06,-0.75 -0.01,-0.1 -0.03,-0.21 -0.06,-0.33 0.08,0.01 0.17,0.02 0.25,0.03 0.01,0.34 0.01,0.66 0.02,0.99 z m 1.25,-2.41 c -0.01,0.4 0.02,0.81 0.05,1.21 -0.06,-0.01 -0.12,-0.02 -0.17,-0.02 -0.03,0 -0.05,-0.01 -0.08,-0.01 -0.02,-0.39 -0.03,-0.78 -0.05,-1.17 0.08,0 0.17,-0.01 0.25,-0.01 z m -0.59,1.13 c 0,0 0,0 0,0 -0.12,-0.02 -0.24,-0.03 -0.35,-0.05 -0.01,-0.35 -0.02,-0.71 -0.03,-1.06 0.01,0 0.01,0 0.02,0 0.12,-0.01 0.24,0 0.35,-0.01 0.01,0.38 0.01,0.75 0.01,1.12 z m -0.69,-1.06 c 0,0.32 0.01,0.64 0.01,0.97 -0.09,-0.01 -0.18,-0.03 -0.27,-0.04 -0.01,0 -0.02,0 -0.03,0 0.17,-0.15 0.29,-0.36 0.28,-0.6 0,-0.1 -0.04,-0.21 -0.08,-0.32 0.03,0 0.06,-0.01 0.09,-0.01 z m -1.94,1.26 c 0.04,0 0.08,0 0.12,0 0,0.18 0,0.35 0.01,0.51 0.03,0.44 0.06,0.87 0.05,1.31 0,0.44 -0.03,0.87 -0.08,1.31 -0.03,0.25 -0.04,0.35 -0.07,0.54 -0.04,0.26 -0.11,0.53 -0.11,0.8 0,0.02 0.01,0.04 0.01,0.06 -0.18,0.02 -0.37,0.04 -0.55,0.06 -0.45,0.04 -0.9,0.09 -1.36,0.13 -0.43,0.04 -0.86,0.08 -1.29,0.13 0.01,-0.01 0.02,-0.03 0.02,-0.04 l 1,-0.12 0.53,-0.06 c 0.17,-0.02 0.45,-0.02 0.54,-0.19 0.04,-0.07 0.03,-0.16 -0.03,-0.21 -0.14,-0.14 -0.4,-0.07 -0.57,-0.04 -0.17,0.03 -0.35,0.06 -0.52,0.08 -0.23,0.04 -0.46,0.07 -0.7,0.11 0.11,-0.21 0.21,-0.42 0.29,-0.65 0.21,-0.02 0.41,-0.03 0.62,-0.05 0.14,-0.01 0.27,-0.02 0.41,-0.04 0.14,-0.02 0.3,-0.02 0.43,-0.08 0.1,-0.05 0.07,-0.21 -0.03,-0.24 -0.13,-0.04 -0.28,-0.01 -0.41,-0.01 -0.14,0.01 -0.27,0.02 -0.41,0.03 -0.16,0.01 -0.32,0.03 -0.47,0.04 0.01,-0.02 0.02,-0.04 0.03,-0.07 0.09,-0.31 0.14,-0.63 0.17,-0.95 0.31,-0.03 0.62,-0.06 0.93,-0.09 0.19,-0.02 0.38,-0.04 0.58,-0.07 0.18,-0.02 0.43,-0.02 0.57,-0.16 0.05,-0.05 0.04,-0.14 -0.02,-0.18 -0.17,-0.1 -0.41,-0.04 -0.59,-0.02 -0.19,0.02 -0.39,0.04 -0.58,0.07 l -0.88,0.12 c 0.01,-0.38 -0.02,-0.75 -0.1,-1.12 0.1,-0.01 0.21,-0.01 0.31,-0.02 0.17,-0.01 0.34,-0.02 0.51,-0.03 0.08,-0.01 0.16,-0.01 0.23,-0.02 0.1,-0.01 0.18,-0.05 0.27,-0.08 0.15,-0.04 0.1,-0.24 -0.03,-0.26 -0.09,-0.01 -0.17,-0.04 -0.25,-0.04 -0.08,0 -0.17,0.01 -0.25,0.01 -0.16,0.01 -0.33,0.02 -0.49,0.04 -0.13,0.01 -0.25,0.02 -0.38,0.03 -0.05,-0.17 -0.11,-0.34 -0.18,-0.51 0.51,0.01 1.01,0 1.53,-0.02 0.39,0.02 0.79,0.01 1.19,-0.01 z m -20.45,-3.3 c 1.47,0.24 2.95,0.44 4.44,0.58 0.15,0.01 0.3,0.02 0.45,0.03 -0.37,0.02 -0.74,0.02 -1.11,0.06 -1.32,0.12 -2.7,0.24 -4.02,0.51 0.08,-0.39 0.16,-0.78 0.24,-1.18 z m -1.15,5.6 h 0.16 c 0,0 0,0.01 0.01,0.01 0.12,0.02 0.23,0.05 0.35,0.07 0.06,0.01 0.11,0.02 0.17,0.03 0.03,0.01 0.06,0.01 0.09,0.02 0.03,0.01 0.06,0.01 0.1,0 0.02,-0.01 0.04,-0.02 0.06,-0.03 0.04,-0.02 0.06,-0.06 0.06,-0.1 0.01,-0.05 -0.01,-0.08 -0.04,-0.11 -0.03,-0.04 -0.07,-0.06 -0.12,-0.07 -0.03,-0.01 -0.05,-0.01 -0.08,-0.02 -0.02,0 -0.05,-0.01 -0.07,-0.01 -0.01,-0.02 -0.01,-0.04 -0.03,-0.06 -0.06,-0.04 -0.13,-0.04 -0.2,-0.05 -0.08,-0.01 -0.16,-0.03 -0.24,-0.03 -0.05,0 -0.11,0 -0.16,0 0.05,-0.26 0.11,-0.52 0.16,-0.78 0.12,0.01 0.23,0.02 0.35,0.02 0.04,0 0.08,0 0.12,-0.01 0.06,0 0.1,-0.01 0.15,-0.04 0.01,0 0.01,-0.01 0.02,-0.01 0.01,-0.01 0.01,-0.01 -0.02,0.01 0,-0.01 0.11,-0.02 0.12,-0.02 0.06,-0.01 0.1,-0.04 0.15,-0.08 0.02,-0.02 0.02,-0.05 0.03,-0.08 0,0.06 0,0.12 -0.01,0.18 -0.05,0.72 -0.1,1.44 -0.14,2.16 -0.12,-0.05 -0.27,-0.07 -0.39,-0.07 -0.19,0 -0.38,0.03 -0.56,0.07 -0.1,0.02 -0.18,0.08 -0.28,0.11 0.1,-0.37 0.17,-0.74 0.24,-1.11 z m -0.54,2.77 c 0.08,-0.01 0.15,-0.02 0.23,-0.03 l 0.24,-0.04 c 0.04,-0.01 0.08,-0.01 0.12,-0.02 0.06,-0.01 0.1,-0.04 0.15,-0.08 0.07,-0.06 0.05,-0.2 -0.03,-0.24 -0.06,-0.03 -0.1,-0.05 -0.17,-0.04 -0.04,0 -0.09,0.01 -0.13,0.01 -0.08,0.01 -0.16,0.02 -0.24,0.03 -0.03,0 -0.06,0.01 -0.09,0.01 0.05,-0.27 0.1,-0.53 0.16,-0.8 0.16,-0.05 0.3,-0.13 0.47,-0.16 0.15,-0.03 0.31,-0.04 0.46,-0.05 0.08,0 0.15,-0.01 0.23,-0.02 0.05,0 0.09,-0.01 0.14,-0.01 -0.02,0.28 -0.04,0.56 -0.06,0.84 -0.04,0.71 -0.08,1.42 -0.12,2.13 -0.04,0 -0.07,-0.01 -0.12,-0.01 -0.11,-0.01 -0.22,-0.01 -0.33,-0.01 -0.2,0 -0.41,0 -0.61,0 -0.2,0 -0.4,0 -0.6,0.01 0.1,-0.51 0.2,-1.01 0.3,-1.52 z m -1.26,6.41 c 0.26,0.03 0.53,0.06 0.79,0.07 0.05,0 0.1,-0.03 0.13,-0.07 0.02,-0.04 0.03,-0.07 0.01,-0.11 -0.01,-0.05 -0.05,-0.09 -0.1,-0.1 -0.26,-0.04 -0.52,-0.06 -0.78,-0.08 0.08,-0.41 0.16,-0.81 0.24,-1.22 0.29,-0.01 0.58,-0.03 0.87,-0.04 0.19,-0.01 0.38,-0.02 0.58,-0.03 0.19,-0.01 0.38,-0.01 0.57,-0.08 0.05,-0.02 0.07,-0.06 0.08,-0.11 -0.04,0.49 -0.07,0.98 -0.06,1.46 0.02,0.8 0.76,1 1.28,0.71 0.81,0.1 1.69,0.02 2.47,0.02 1.12,0 2.24,-0.01 3.36,-0.02 1.76,-0.02 3.51,-0.04 5.27,-0.06 0.42,0.21 0.88,0.32 1.36,0.3 0.43,-0.03 0.83,-0.14 1.2,-0.32 1.72,-0.02 3.43,-0.03 5.15,-0.05 2.24,-0.02 4.5,0.05 6.73,-0.06 1.01,-0.05 1.02,-1.55 0,-1.58 -0.18,-0.01 -0.36,0 -0.54,0 0.01,-0.17 0,-0.35 0,-0.54 -0.02,-0.55 0,-1.1 0,-1.65 0,-1.06 -0.02,-2.12 -0.07,-3.17 -0.01,-0.29 -0.04,-0.58 -0.06,-0.87 0.04,0.03 0.08,0.06 0.13,0.06 h 0.48 c 0.08,0 0.16,-0.01 0.24,-0.01 0.1,-0.01 0.21,0 0.29,-0.06 0.1,-0.08 0.1,-0.19 0,-0.27 -0.08,-0.06 -0.18,-0.05 -0.28,-0.06 C 608.09,323 608.01,323 607.92,323 h -0.48 c -0.06,0 -0.11,0.03 -0.15,0.07 -0.04,-0.67 -0.07,-1.33 -0.13,-2 -0.09,-1.07 -0.15,-2.18 -0.44,-3.21 -0.17,-0.58 -0.9,-0.58 -1.17,-0.16 -0.01,0 -0.02,0 -0.02,0 -0.12,0 -0.23,0.01 -0.35,0.02 0,-0.03 0,-0.06 0,-0.09 -0.01,-0.21 -0.32,-0.21 -0.32,0 0,0.04 0,0.07 0,0.11 -0.13,0.01 -0.26,0.01 -0.39,0.02 -0.22,0.03 -0.44,0.07 -0.65,0.11 -0.08,-0.06 -0.17,-0.11 -0.27,-0.12 -0.44,-0.07 -0.88,0.01 -1.32,0.05 -0.32,0.03 -0.64,0.07 -0.96,0.11 0.43,-0.1 0.86,-0.18 1.3,-0.2 0.24,-0.01 0.48,-0.01 0.71,-0.01 0.25,0.01 0.52,0.06 0.76,0.01 0.17,-0.04 0.2,-0.29 0.05,-0.37 -0.23,-0.11 -0.5,-0.11 -0.76,-0.12 -0.27,-0.01 -0.53,0 -0.79,0.03 -0.52,0.05 -1.03,0.16 -1.53,0.32 -0.22,0.07 -0.14,0.39 0.08,0.37 -0.03,0 -0.06,0.01 -0.09,0.01 -0.29,0.03 -0.57,0.07 -0.85,0.11 -0.01,-0.05 -0.01,-0.1 -0.02,-0.15 -0.03,-0.25 -0.07,-0.49 -0.11,-0.74 -0.02,-0.15 -0.05,-0.3 -0.07,-0.44 0.42,-0.04 0.85,-0.1 1.27,-0.15 0.06,0.14 0.17,0.25 0.36,0.29 1.64,0.36 3.37,0.43 5.05,0.44 0.85,0.01 1.7,-0.03 2.55,-0.09 0.79,-0.06 1.67,-0.27 2.45,-0.08 0.08,0.02 0.15,0 0.23,0 0.15,0.55 0.31,1.1 0.46,1.66 -0.09,-0.06 -0.2,-0.09 -0.3,-0.11 -0.13,-0.02 -0.26,-0.03 -0.4,-0.03 -0.26,0 -0.52,0.05 -0.77,0.15 -0.09,0.03 -0.15,0.12 -0.12,0.22 0.02,0.09 0.13,0.16 0.22,0.12 0.22,-0.08 0.45,-0.12 0.68,-0.12 0.11,0 0.22,0.01 0.33,0.03 0.06,0.01 0.12,0.02 0.18,0.03 0.07,0.01 0.13,0.01 0.2,0.01 0.02,0 0.03,-0.02 0.05,-0.03 0.08,0.28 0.16,0.56 0.23,0.84 -0.05,-0.02 -0.1,-0.05 -0.15,-0.07 -0.02,-0.01 -0.05,-0.02 -0.07,-0.02 -0.03,-0.01 -0.05,0 -0.08,0 -0.02,0.01 -0.05,0.02 -0.06,0.03 -0.02,0.01 -0.04,0.03 -0.05,0.05 -0.02,0.04 -0.04,0.1 -0.02,0.15 0.02,0.05 0.04,0.09 0.09,0.11 0.05,0.03 0.1,0.06 0.14,0.08 0.02,0.01 0.04,0.03 0.07,0.04 0.02,0.01 0.04,0.02 0.06,0.03 0.05,0.01 0.11,0.01 0.16,-0.02 0.01,0 0.01,-0.01 0.01,-0.01 0.05,0.2 0.1,0.39 0.16,0.59 -0.27,0.03 -0.55,0.06 -0.82,0.09 -0.66,0.07 -1.31,0.14 -1.97,0.21 -0.22,0.02 -0.22,0.37 0,0.35 l 2,-0.2 c 0.29,-0.03 0.59,-0.06 0.88,-0.09 0.51,1.89 1.01,3.79 1.52,5.68 -0.95,0.03 -1.9,0.13 -2.82,0.36 -0.17,0.04 -0.1,0.3 0.07,0.26 0.94,-0.19 1.89,-0.26 2.85,-0.26 0.36,1.36 0.74,2.73 1.09,4.09 0,0 0,0 0,0 -0.9,0.38 -1.76,0.84 -2.57,1.4 -0.41,0.29 -0.81,0.6 -1.2,0.91 -0.3,0.24 -0.57,0.49 -0.81,0.78 -0.59,0.44 -1.14,0.91 -1.65,1.38 -1.44,1.32 -2.75,2.91 -3.62,4.66 -1,2.01 -1.08,4.03 -0.3,6.13 0.64,1.72 2,3.94 1.11,5.8 -0.82,0.09 -1.64,0.18 -2.47,0.19 -0.55,0.01 -1.1,-0.01 -1.65,-0.03 -0.08,0 -0.19,-0.01 -0.33,0 -0.01,-1.33 -0.15,-2.69 -0.51,-3.98 0.03,-0.04 0.08,-0.06 0.1,-0.11 0.47,-1.05 -0.53,-2.22 -1.43,-2.68 -1.16,-0.59 -2.54,-0.58 -3.81,-0.6 -0.97,-0.01 -1.98,0.09 -2.91,0.39 0,0 0,-0.01 0,-0.01 -0.14,-0.04 -0.28,-0.03 -0.42,-0.05 -0.12,-0.02 -0.23,-0.02 -0.35,-0.03 -0.27,-0.01 -0.54,-0.01 -0.81,-0.01 -0.54,0 -1.08,0 -1.63,0 -0.23,0 -0.23,0.36 0,0.36 0.54,0 1.08,0 1.63,0 0.27,0 0.54,0 0.81,-0.01 0.05,0 0.1,-0.01 0.15,-0.01 -0.02,0.01 -0.04,0.02 -0.07,0.03 -0.42,0.2 -0.86,0.49 -1.22,0.86 -0.06,0.01 -0.11,0.03 -0.16,0.08 -0.7,0.86 -0.88,2.18 -0.99,3.25 -0.06,0.57 -0.07,1.14 -0.03,1.71 0.02,0.28 0.04,0.58 0.08,0.87 -0.64,0.04 -1.28,0.07 -1.92,0.11 -0.44,0.02 -0.88,0.06 -1.32,0.1 -0.2,0.02 -0.4,0.04 -0.59,0.07 0.04,-0.52 -0.16,-1.05 -0.16,-1.58 0,-0.47 0.08,-0.94 0.17,-1.4 0.21,-1.04 0.5,-2.06 0.64,-3.11 0.27,-1.95 -0.11,-3.9 -0.96,-5.67 -0.65,-1.36 -1.6,-2.54 -2.71,-3.55 0.61,0.02 1.22,0.04 1.84,0.06 0.37,0.01 0.75,0.01 1.12,-0.01 0.33,-0.02 0.68,0.01 1.01,-0.04 0.09,0.07 0.18,0.14 0.25,0.22 0.25,0.24 0.49,0.48 0.72,0.73 0.46,0.5 0.89,1.05 1.25,1.63 0.37,0.58 0.65,1.2 0.95,1.83 0.14,0.3 0.24,0.62 0.34,0.94 0.1,0.33 0.12,0.74 0.4,0.98 0.11,0.09 0.24,0.1 0.36,0.07 0.05,0.02 0.08,0.06 0.14,0.07 1.25,0.16 2.5,0.24 3.76,0.27 0.63,0.02 1.25,0.03 1.88,0.05 0.62,0.02 1.33,0.13 1.93,0 0.59,-0.13 0.65,-0.88 0.27,-1.24 0,-0.04 0.01,-0.09 0.01,-0.13 0.04,-0.36 0.11,-0.73 0.21,-1.08 0.2,-0.7 0.52,-1.34 0.89,-1.97 0.14,-0.24 0.29,-0.47 0.45,-0.69 0.01,0.09 0.06,0.17 0.17,0.17 0.34,-0.01 0.68,-0.01 1.02,-0.02 0.33,-0.01 0.68,-0.03 1,-0.12 0.09,-0.02 0.09,-0.16 0,-0.18 -0.33,-0.07 -0.67,-0.08 -1,-0.08 -0.34,0.01 -0.68,0.02 -1.02,0.02 -0.03,0 -0.04,0.02 -0.06,0.03 0.21,-0.3 0.44,-0.59 0.7,-0.87 0.26,-0.28 0.53,-0.54 0.82,-0.79 0.18,-0.15 0.36,-0.29 0.55,-0.43 0.05,-0.05 0.12,-0.08 0.16,-0.13 0.06,-0.05 0.12,-0.09 0.17,-0.15 0.3,-0.31 0.17,-0.79 -0.15,-0.98 0.43,0 0.86,0.01 1.3,0.01 0.25,0 0.5,0.02 0.75,0 0.23,-0.01 0.5,0 0.72,-0.07 0.12,-0.03 0.12,-0.21 0,-0.24 -0.23,-0.07 -0.49,-0.05 -0.72,-0.07 -0.25,-0.02 -0.5,0 -0.75,0 -0.5,0.01 -0.99,0.01 -1.49,0.02 -0.16,0 -0.2,0.18 -0.13,0.28 -0.02,0 -0.05,0 -0.07,0.01 -0.03,-0.01 -0.05,-0.05 -0.08,-0.06 -0.66,-0.19 -1.33,-0.14 -2.02,-0.14 -0.64,0 -1.28,0 -1.91,0 -1.36,0 -2.71,0.01 -4.07,0.02 -1.32,0.01 -2.63,0.01 -3.95,0.04 -1.25,0.02 -2.76,-0.15 -3.91,0.38 -0.19,0.09 -0.28,0.29 -0.3,0.49 -0.13,0.18 -0.17,0.43 -0.04,0.66 0.07,0.14 0.19,0.25 0.31,0.36 -0.27,-0.03 -0.54,-0.04 -0.81,-0.07 -0.37,-0.04 -0.74,-0.06 -1.12,-0.07 -0.75,-0.02 -1.49,-0.04 -2.24,-0.07 -0.02,0 -0.02,0.01 -0.04,0.01 -0.17,-0.14 -0.32,-0.29 -0.5,-0.42 -0.53,-0.4 -1.1,-0.73 -1.69,-1.04 0.37,0.01 0.75,0.02 1.12,0.02 0.28,0 0.55,0 0.83,-0.02 0.27,-0.02 0.56,-0.03 0.83,-0.09 0.13,-0.03 0.13,-0.24 0,-0.26 -0.27,-0.05 -0.56,-0.07 -0.83,-0.09 -0.28,-0.02 -0.55,-0.02 -0.83,-0.02 -0.57,0 -1.13,0.02 -1.7,0.03 -0.06,0 -0.09,0.03 -0.12,0.05 -0.04,-0.02 -0.08,-0.04 -0.12,-0.06 -0.64,-0.29 -1.47,-0.72 -2.22,-0.74 0.05,-0.26 0.1,-0.52 0.15,-0.78 0.03,-0.15 0.06,-0.29 0.09,-0.44 0.29,0.03 0.57,0.06 0.86,0.08 0.26,0.02 0.52,0.05 0.78,0.07 0.25,0.02 0.5,0.05 0.75,0.01 0.13,-0.02 0.1,-0.2 0,-0.23 -0.24,-0.08 -0.5,-0.09 -0.75,-0.12 -0.26,-0.03 -0.52,-0.05 -0.78,-0.07 -0.27,-0.02 -0.53,-0.04 -0.8,-0.06 0.04,-0.24 0.09,-0.47 0.14,-0.71 0.16,0 0.32,0 0.48,0 0.23,0 0.45,-0.01 0.68,-0.01 0.21,0 0.46,0.01 0.65,-0.09 0.06,-0.03 0.07,-0.14 0,-0.17 -0.19,-0.09 -0.42,-0.07 -0.62,-0.07 -0.23,0 -0.47,0.01 -0.7,0.01 -0.14,0 -0.28,0.01 -0.42,0.01 0.07,-0.37 0.14,-0.73 0.21,-1.1 z m 42.03,19.6 c -0.07,-0.02 -0.14,-0.04 -0.21,-0.05 -0.18,-0.02 -0.36,-0.02 -0.54,-0.01 -0.23,0.02 -0.45,0.08 -0.66,0.16 -0.05,-0.19 -0.1,-0.38 -0.15,-0.57 0.26,-0.05 0.51,-0.11 0.77,-0.13 0.21,-0.02 0.41,-0.01 0.62,-0.01 0.06,0.2 0.11,0.4 0.17,0.61 z m -0.73,0.39 c 0.15,0 0.3,0 0.44,0.03 0.12,0.02 0.27,0.05 0.41,0.02 0.08,0.31 0.17,0.62 0.25,0.93 -0.12,-0.05 -0.25,-0.07 -0.38,-0.07 -0.15,-0.01 -0.31,0 -0.46,0.02 -0.2,0.02 -0.38,0.1 -0.57,0.15 -0.09,-0.32 -0.17,-0.64 -0.26,-0.96 0.18,-0.07 0.37,-0.12 0.57,-0.12 z m 1.86,3.76 c 0.03,0.12 0.07,0.25 0.1,0.37 -0.09,0.01 -0.18,0.02 -0.26,0.04 -0.02,0 -0.02,0 0.01,0 -0.01,0 -0.02,0 -0.04,0 -0.03,0 -0.05,0.01 -0.08,0.01 -0.05,0.01 -0.09,0.01 -0.14,0.02 -0.1,0.01 -0.2,0.03 -0.3,0.04 -0.11,0.01 -0.23,0.09 -0.22,0.22 0.01,0.11 0.1,0.23 0.22,0.22 0.2,-0.01 0.41,-0.02 0.61,-0.03 0.05,0 0.1,0 0.15,0 0,0.02 -0.01,0.03 -0.01,0.05 -0.01,0.11 0.13,0.22 0.23,0.18 0.01,-0.01 0.02,-0.01 0.04,-0.02 0.02,0.09 0.05,0.17 0.07,0.26 -0.06,0.01 -0.12,0.02 -0.18,0.04 -0.04,0.01 -0.08,0.01 -0.12,0.02 -0.01,0 -0.06,0.01 -0.06,0.01 -0.07,0.01 -0.15,0.01 -0.22,0.02 -0.29,0.01 -0.56,-0.02 -0.84,-0.08 0,0 -0.01,0 -0.01,0 -0.13,-0.47 -0.25,-0.93 -0.38,-1.4 0.22,0 0.43,0.01 0.65,0.01 0.24,0.01 0.49,0.01 0.73,0.01 0,0.01 0.03,0.01 0.05,0.01 z m -0.59,2.26 c -0.06,0.05 -0.12,0.1 -0.19,0.14 -0.04,-0.16 -0.09,-0.33 -0.13,-0.49 0.2,0.05 0.4,0.1 0.61,0.11 -0.1,0.08 -0.2,0.16 -0.29,0.24 z m 0.77,0.68 c 0.01,-0.01 0.02,-0.02 0.03,-0.02 0.03,-0.02 0.08,-0.03 0.11,-0.05 0.06,-0.04 0.13,-0.09 0.19,-0.14 0.1,-0.08 0.11,-0.26 0.05,-0.36 -0.07,-0.12 -0.2,-0.16 -0.33,-0.13 -0.03,0.01 -0.06,0.01 -0.09,0.01 0.02,-0.01 0.05,-0.02 0.07,-0.03 0.07,-0.03 0.15,-0.06 0.22,-0.09 0.05,-0.02 0.1,-0.05 0.15,-0.07 0.08,0.3 0.17,0.61 0.25,0.91 -0.03,-0.01 -0.06,-0.04 -0.1,-0.04 -0.17,0.01 -0.35,0.04 -0.52,0.08 -0.02,-0.02 -0.02,-0.04 -0.03,-0.07 z m -0.98,-3.5 c -0.26,0.01 -0.53,0.01 -0.79,0.02 -0.07,-0.24 -0.13,-0.48 -0.2,-0.72 0.2,-0.04 0.4,-0.07 0.6,-0.05 0.03,0 0.06,0.01 0.09,0.01 0.03,0 0.04,0 0.02,0 0.02,0 0.05,0.01 0.07,0.01 0.02,0 0.05,0.01 0.07,0.01 0.04,0 0.04,0.01 0.02,0 0.03,0 0.06,0.01 0.09,0.02 0.07,0.01 0.14,0.03 0.21,0.05 0.04,0.01 0.09,0.02 0.14,0.02 0.03,0 0.07,-0.01 0.1,-0.01 -0.02,0 -0.02,-0.01 0.02,-0.01 0,0 0.01,-0.01 0.01,-0.01 0.06,0.22 0.12,0.44 0.18,0.66 -0.2,-0.01 -0.41,-0.01 -0.63,0 z m 0.09,-1.27 c -0.15,-0.02 -0.3,-0.03 -0.45,-0.02 -0.25,0.02 -0.5,0.06 -0.74,0.13 -0.05,-0.17 -0.09,-0.33 -0.14,-0.5 0.16,-0.04 0.32,-0.11 0.47,-0.12 0.14,-0.01 0.29,-0.01 0.43,0 0.16,0.01 0.28,0.03 0.46,0 0.02,0 0.02,-0.03 0.03,-0.04 0.05,0.2 0.11,0.39 0.16,0.59 -0.07,-0.02 -0.15,-0.03 -0.22,-0.04 z m -2.11,-3.24 c -0.06,-0.24 -0.13,-0.47 -0.19,-0.71 0.32,0.01 0.65,0.02 0.97,0.03 0.16,0.01 0.31,0.01 0.47,0.01 0.04,0.15 0.08,0.31 0.13,0.46 -0.46,0.03 -0.92,0.1 -1.38,0.21 z m 0.79,-1.13 c -0.36,0.01 -0.72,0.02 -1.08,0.04 -0.04,-0.14 -0.08,-0.29 -0.12,-0.43 0.13,-0.01 0.26,-0.02 0.39,-0.03 0.11,-0.01 0.22,-0.02 0.33,-0.02 0.12,-0.01 0.25,-0.01 0.37,-0.05 0.1,-0.03 0.16,-0.12 0.15,-0.23 -0.01,-0.11 -0.1,-0.17 -0.2,-0.18 -0.11,-0.01 -0.22,0 -0.33,0.02 -0.11,0.01 -0.22,0.03 -0.33,0.04 -0.16,0.02 -0.32,0.04 -0.48,0.06 -0.09,-0.35 -0.19,-0.69 -0.28,-1.04 0.2,0.04 0.4,0.09 0.6,0.13 0.16,0.03 0.31,0.06 0.47,0.09 0.09,0.01 0.19,0.04 0.28,0.04 0.04,0 0.09,-0.02 0.13,-0.02 0.14,0.53 0.29,1.05 0.43,1.58 -0.11,-0.01 -0.22,-0.01 -0.33,0 z m -0.63,-3.55 c 0.04,0.15 0.08,0.31 0.12,0.46 -0.04,-0.02 -0.07,-0.04 -0.11,-0.05 l -0.29,-0.13 c -0.2,-0.09 -0.4,-0.18 -0.6,-0.27 -0.02,-0.01 -0.05,-0.01 -0.08,-0.01 0.18,-0.03 0.37,-0.07 0.55,-0.09 0.06,-0.01 0.11,-0.01 0.17,-0.02 0.03,0.05 0.07,0.1 0.13,0.11 0.04,0 0.07,0 0.11,0 z m -0.54,-0.58 c -0.21,0.05 -0.43,0.09 -0.64,0.14 -0.12,0.03 -0.21,0.18 -0.17,0.3 0.04,0.12 0.14,0.17 0.26,0.16 -0.04,0.02 -0.09,0.04 -0.11,0.08 -0.05,0.1 -0.04,0.27 0.08,0.32 0.2,0.09 0.41,0.18 0.61,0.27 0.1,0.05 0.2,0.09 0.3,0.14 0.06,0.03 0.12,0.06 0.19,0.08 0.05,0.01 0.11,0.02 0.16,0.04 0.04,0.01 0.07,0 0.1,-0.01 0.05,0.19 0.1,0.37 0.15,0.56 -0.05,-0.02 -0.1,-0.03 -0.15,-0.05 -0.15,-0.04 -0.31,-0.08 -0.46,-0.11 -0.3,-0.06 -0.6,-0.13 -0.91,-0.19 -0.03,-0.12 -0.06,-0.23 -0.09,-0.35 -0.19,-0.72 -0.38,-1.44 -0.56,-2.15 0.22,-0.05 0.45,-0.09 0.68,-0.07 0.14,0.01 0.28,0.02 0.42,0.05 0.11,0.02 0.22,0.04 0.32,0.06 0.06,0.21 0.11,0.43 0.17,0.64 -0.11,0.03 -0.23,0.06 -0.35,0.09 z m -40.76,9.87 c -0.01,-0.11 -0.02,-0.23 -0.02,-0.34 -0.01,-0.27 -0.02,-0.55 -0.03,-0.82 0,0 0,0 0,0 -0.01,0.23 0.31,0.33 0.38,0.09 0.01,-0.03 0.01,-0.05 0.02,-0.08 0.24,0 0.47,-0.01 0.71,-0.01 0,0.01 0,0.03 0,0.05 0.03,0.08 0.14,0.1 0.18,0.02 0.01,-0.02 0.01,-0.05 0.02,-0.07 0.23,0 0.45,-0.01 0.68,-0.01 0.04,0.05 0.1,0.08 0.16,0.04 0.02,-0.01 0.03,-0.03 0.04,-0.04 1.63,-0.01 3.27,-0.02 4.9,-0.06 0.04,0.08 0.06,0.17 0.11,0.24 v 0 c -0.13,0.05 -0.13,0.21 0,0.26 0.01,0 0.01,0.01 0.02,0.01 0.02,0.02 0.05,0.03 0.08,0.04 0,0 0.06,0.01 0.04,0 0.03,0.01 0.05,0.02 0.07,0.03 0.06,0.02 0.13,0.02 0.2,0.03 0.07,0.03 0.13,0.05 0.2,0.06 0.01,0.03 0.02,0.05 0.03,0.08 0.16,0.31 0.55,0.28 0.75,0.06 0.06,0.01 0.12,0.03 0.19,0.04 0.2,0.02 0.41,0.02 0.61,0.02 0.44,-0.01 0.88,-0.01 1.32,-0.03 0.77,-0.04 1.53,-0.07 2.3,-0.11 0.09,0.08 0.21,0.14 0.35,0.12 0.16,-0.02 0.33,-0.14 0.39,-0.3 0.08,-0.07 0.12,-0.17 0.15,-0.28 0.18,0.01 0.37,0.03 0.55,0.04 0.04,0 0.09,0 0.13,0.01 0.01,0.14 0.07,0.26 0.26,0.29 0.02,0 0.04,0 0.05,0.01 0.14,0.1 0.34,0.11 0.5,0.05 0.75,0.08 1.51,0.09 2.27,0.04 0.46,-0.03 0.92,-0.07 1.38,-0.13 0.29,-0.04 0.59,-0.08 0.89,-0.14 0.04,0.02 0.07,0.06 0.12,0.06 0.22,0.03 0.48,-0.1 0.56,-0.32 0.05,-0.05 0.11,-0.1 0.13,-0.16 0.06,0 0.13,0.01 0.19,0.01 0.1,0 0.2,0 0.3,0 0.03,0.09 0.12,0.14 0.22,0.12 -0.26,0.08 -0.52,0.19 -0.76,0.32 -0.09,0.05 -0.12,0.18 -0.07,0.27 0.06,0.1 0.17,0.11 0.27,0.07 0.35,-0.15 0.71,-0.24 1.09,-0.3 0.18,-0.03 0.35,-0.05 0.54,-0.06 0.05,0 0.11,0 0.16,-0.01 0.05,-0.01 0.07,-0.03 0.12,-0.03 0.1,-0.01 0.2,-0.01 0.29,-0.03 0.11,-0.03 0.13,-0.19 0.03,-0.24 -0.08,-0.04 -0.16,-0.05 -0.25,-0.07 0.13,0 0.25,0 0.38,-0.01 0.04,0.05 0.09,0.09 0.15,0.11 0.19,0.37 0.9,0.43 1.24,0.46 0.57,0.05 1.14,0.08 1.71,0.08 0.81,0.01 1.63,-0.06 2.45,-0.16 0.07,0.08 0.16,0.15 0.25,0.2 -2.06,0.02 -4.12,0.05 -6.18,0.07 -5.14,0.06 -10.28,0.18 -15.41,0.28 -1.4,0.03 -2.81,0.05 -4.21,0.08 -1.05,0.01 -2.13,0.01 -3.2,0.05 z m 6.83,-3.71 c 0.03,0 0.06,0 0.09,0 -0.05,0.36 -0.09,0.79 -0.09,1.22 -0.09,-0.01 -0.17,0.03 -0.2,0.12 0,0 0,0 0,0.01 -0.1,0 -0.2,0 -0.29,0.01 0.01,-0.03 0.02,-0.05 0.03,-0.08 0.07,-0.19 0.14,-0.38 0.21,-0.57 0.08,-0.24 0.16,-0.47 0.25,-0.71 z m -0.59,0.59 c -0.07,0.18 -0.14,0.37 -0.21,0.55 -0.03,0.07 -0.06,0.15 -0.08,0.22 -0.28,0.01 -0.56,0.01 -0.84,0.02 0.09,-0.17 0.18,-0.35 0.26,-0.53 0.11,-0.27 0.2,-0.55 0.28,-0.84 0.28,0 0.55,0 0.83,-0.01 -0.09,0.2 -0.17,0.39 -0.24,0.59 z m -1.28,0.07 c -0.11,0.23 -0.23,0.46 -0.36,0.68 -0.01,0.02 -0.02,0.03 -0.03,0.05 -0.25,0.01 -0.5,0.01 -0.75,0.02 0.11,-0.23 0.22,-0.46 0.32,-0.7 0.1,-0.23 0.2,-0.46 0.3,-0.68 0.26,0 0.51,0 0.77,-0.01 -0.07,0.21 -0.15,0.43 -0.25,0.64 z m -1.19,-0.14 c -0.12,0.26 -0.25,0.53 -0.37,0.8 -0.02,0.03 -0.03,0.07 -0.05,0.1 -0.24,0.01 -0.49,0.02 -0.73,0.02 0.05,-0.15 0.11,-0.29 0.16,-0.44 0.11,-0.32 0.23,-0.64 0.34,-0.97 0.12,0 0.24,-0.01 0.36,-0.01 0.18,0 0.35,0 0.53,0 -0.08,0.17 -0.16,0.34 -0.24,0.5 z m -1.33,0.36 c -0.08,0.19 -0.15,0.38 -0.22,0.58 -0.24,0.01 -0.47,0.01 -0.71,0.02 0.05,-0.2 0.09,-0.39 0.15,-0.59 0.09,-0.28 0.2,-0.56 0.32,-0.83 0.26,-0.01 0.52,-0.01 0.79,-0.01 -0.11,0.27 -0.22,0.55 -0.33,0.83 z m -1.07,-0.11 c -0.08,0.23 -0.14,0.47 -0.19,0.71 -0.19,0.01 -0.38,0.01 -0.58,0.02 0.03,-0.16 0.08,-0.32 0.11,-0.49 0.06,-0.27 0.11,-0.53 0.17,-0.8 0.01,-0.06 0.02,-0.12 0.04,-0.18 0.25,0 0.5,0.03 0.75,0.02 -0.12,0.24 -0.22,0.48 -0.3,0.72 z m -0.89,-0.69 c -0.07,0.27 -0.13,0.55 -0.19,0.82 -0.05,0.2 -0.08,0.41 -0.13,0.62 -0.05,0 -0.09,0 -0.14,0 -0.04,0 -0.07,0.02 -0.11,0.03 0,-0.08 -0.01,-0.16 -0.01,-0.24 -0.01,-0.43 -0.03,-0.87 -0.04,-1.31 0.21,0.02 0.42,0.01 0.62,0.02 0.01,0.02 0,0.04 0,0.06 z m 14.21,-3.51 c 0.03,0.02 0.05,0.04 0.1,0.04 1.22,-0.01 2.43,-0.02 3.65,-0.06 0.6,-0.02 1.2,-0.04 1.8,-0.06 0.45,-0.02 0.94,-0.01 1.41,-0.07 0.21,0.12 0.4,0.26 0.56,0.44 0.23,0.25 0.29,0.56 0.42,0.85 -0.03,0.04 -0.05,0.09 -0.04,0.14 0.01,0.08 0.09,0.18 0.19,0.16 0,0 0,0 0,0 0.03,0.18 0.06,0.37 0.09,0.55 -0.21,-0.01 -0.43,0.02 -0.64,0.03 -0.17,0.01 -0.34,0.02 -0.51,0.03 -0.07,-0.07 -0.19,-0.06 -0.25,0.01 -0.26,0.01 -0.53,0.03 -0.79,0.06 0,-0.06 0,-0.12 -0.01,-0.19 0.15,0 0.3,0 0.43,-0.09 0.07,-0.05 0.07,-0.15 0,-0.2 -0.13,-0.09 -0.3,-0.09 -0.45,-0.09 -0.02,-0.19 -0.04,-0.38 -0.1,-0.56 -0.02,-0.05 -0.05,-0.08 -0.08,-0.11 0.47,-0.01 0.94,-0.02 1.39,-0.11 0.08,-0.02 0.08,-0.15 0,-0.17 -0.6,-0.1 -1.23,-0.06 -1.83,-0.05 -0.47,0 -0.94,0.01 -1.42,0.02 -0.38,-0.01 -0.76,-0.01 -1.14,-0.02 -0.4,-0.01 -0.8,-0.02 -1.2,-0.01 -0.21,0.01 -0.43,0 -0.63,0.06 -0.02,0.01 -0.05,0.03 -0.07,0.04 -0.44,0.01 -0.88,0.02 -1.32,0.03 -0.19,0 -0.19,0.29 0,0.29 0.2,0 0.39,0 0.59,-0.01 -0.16,0.35 -0.12,0.82 -0.13,1.2 -0.1,0 -0.21,0.01 -0.31,0.01 -0.25,0.01 -0.5,0.02 -0.75,0.03 -0.03,0 -0.05,0.02 -0.08,0.03 0.04,-0.26 0.05,-0.52 0.11,-0.77 0.06,-0.26 0.14,-0.51 0.2,-0.77 0.26,-0.22 0.51,-0.47 0.81,-0.68 z m 0.67,-0.38 c 0.92,-0.37 1.91,-0.37 2.89,-0.32 0.74,0.04 1.51,0.04 2.24,0.18 -0.07,0 -0.14,0.01 -0.2,0.01 -0.62,0.01 -1.24,0.03 -1.86,0.04 -1.05,0.03 -2.1,0.07 -3.14,0.12 0.03,0 0.04,-0.02 0.07,-0.03 z m 6.23,6.33 c 0.05,0 0.1,0 0.14,0 0.03,0 0.07,0 0.1,0 -0.12,0.02 -0.23,0.06 -0.35,0.1 0.03,-0.02 0.07,-0.04 0.09,-0.07 0.02,-0.01 0.02,-0.02 0.02,-0.03 z m -8.02,-0.77 c 0,0.01 0,0.01 0,0.02 -0.03,-0.16 -0.06,-0.32 -0.08,-0.48 -0.05,-0.52 -0.06,-1.04 -0.03,-1.56 0.06,0.03 0.13,0.05 0.19,0.05 0.1,0 0.19,0 0.29,0 -0.08,0.41 -0.15,0.82 -0.23,1.23 -0.05,0.25 -0.1,0.49 -0.14,0.74 z m 0.47,-0.68 c 0.08,-0.43 0.16,-0.86 0.24,-1.3 0.04,0 0.08,0 0.12,0 0.1,0 0.2,0 0.3,0 0,0.12 0,0.25 0,0.37 0,0.16 0,0.32 0,0.48 -0.03,0.03 -0.05,0.06 -0.05,0.11 -0.02,0.23 -0.05,0.45 -0.07,0.68 -0.01,0.11 -0.03,0.23 -0.03,0.34 0,0.02 0,0.04 0,0.06 -0.04,0 -0.08,0 -0.12,0 -0.17,-0.01 -0.34,0 -0.52,-0.01 0.04,-0.25 0.08,-0.49 0.13,-0.73 z m 6.87,0.25 c -0.04,0.1 -0.08,0.19 -0.12,0.29 -0.04,0 -0.08,0 -0.12,0 0,-0.09 0,-0.19 0,-0.28 0.01,-0.42 0.01,-0.84 0.02,-1.27 0,-0.18 0,-0.36 0,-0.55 0.23,0.01 0.45,0.01 0.68,-0.01 -0.04,0.33 -0.1,0.65 -0.18,0.98 -0.09,0.28 -0.18,0.57 -0.28,0.84 z m -5.08,0.96 c -0.02,-0.1 -0.07,-0.19 -0.14,-0.25 0,-0.17 -0.01,-0.35 -0.01,-0.52 0,-0.45 -0.01,-0.91 -0.01,-1.36 0,-0.44 0,-0.88 -0.01,-1.31 -0.01,-0.26 0.01,-0.56 -0.03,-0.85 0.26,0.12 0.62,0.11 0.9,0.12 0.37,0.02 0.75,0.02 1.12,0.03 0.73,0.02 1.45,0.04 2.18,0.05 -0.03,0.2 -0.04,0.4 -0.06,0.6 -0.03,0.41 -0.07,0.81 -0.09,1.22 -0.02,0.41 -0.04,0.81 -0.07,1.22 -0.01,0.22 -0.03,0.44 -0.05,0.66 -0.23,0.04 -0.46,0.1 -0.69,0.13 -0.43,0.07 -0.86,0.11 -1.29,0.15 -0.58,0.06 -1.16,0.08 -1.75,0.11 z m 5.42,-0.68 c 0.01,-0.04 0.03,-0.07 0.04,-0.11 0.11,-0.3 0.2,-0.6 0.27,-0.9 0.08,-0.36 0.13,-0.73 0.16,-1.1 0.15,0 0.31,-0.01 0.46,-0.01 l -0.43,1.2 c -0.1,0.28 -0.2,0.57 -0.29,0.85 -0.01,0.02 -0.02,0.04 -0.02,0.06 -0.07,0 -0.13,0.01 -0.19,0.01 z m 1.31,-0.02 c -0.21,0 -0.43,0.01 -0.64,0.01 0.09,-0.26 0.17,-0.53 0.26,-0.79 0.14,-0.45 0.28,-0.9 0.42,-1.35 0.13,-0.01 0.26,-0.01 0.38,-0.03 0,0.04 0.01,0.07 0.02,0.11 0.02,0.17 0.02,0.34 0.04,0.52 -0.07,0 -0.15,0.03 -0.16,0.11 l -0.14,0.61 -0.07,0.3 c -0.01,0.05 -0.02,0.1 -0.03,0.15 -0.01,0.06 -0.01,0.12 -0.01,0.18 0.01,0.13 0.18,0.19 0.25,0.07 0.03,-0.05 0.06,-0.1 0.07,-0.16 0.01,-0.05 0.02,-0.09 0.03,-0.14 0.02,-0.1 0.05,-0.21 0.07,-0.31 0.01,-0.06 0.03,-0.12 0.04,-0.18 0.02,0.3 0.02,0.61 0.02,0.91 -0.19,-0.02 -0.37,-0.01 -0.55,-0.01 z m 7.72,1.3 c 0.14,-0.28 0.24,-0.57 0.32,-0.86 2.36,-0.04 4.72,-0.07 7.08,-0.11 0,0.13 0,0.27 0,0.4 -0.09,-0.01 -0.19,-0.03 -0.28,-0.04 -0.18,-0.02 -0.36,-0.03 -0.54,-0.05 -0.11,-0.01 -0.2,0.09 -0.22,0.19 -0.01,0.1 0.05,0.22 0.16,0.24 0.18,0.03 0.36,0.06 0.54,0.09 0.1,0.02 0.21,0.03 0.31,0.04 0.01,0 0.02,0 0.04,0 0,0.11 0,0.22 0.01,0.33 -2.38,-0.05 -4.77,0.05 -7.14,0.08 -0.18,0 -0.36,0 -0.54,0.01 0.09,-0.07 0.19,-0.17 0.26,-0.32 z m 7.33,-2.67 c 0.02,-0.04 0.03,-0.07 0.05,-0.11 0,0.19 0,0.39 0.01,0.58 -0.09,0 -0.19,0 -0.28,0.01 0.02,-0.04 0.04,-0.08 0.06,-0.12 0.05,-0.12 0.1,-0.24 0.16,-0.36 z m -0.3,-0.16 c -0.06,0.12 -0.11,0.25 -0.17,0.37 -0.04,0.09 -0.07,0.18 -0.1,0.27 -0.14,0 -0.27,0.01 -0.41,0.01 0.01,-0.03 0.03,-0.07 0.05,-0.1 0.07,-0.17 0.15,-0.34 0.22,-0.51 0.07,-0.15 0.13,-0.3 0.2,-0.45 0.14,0 0.27,0 0.41,-0.01 -0.08,0.15 -0.14,0.28 -0.2,0.42 z m -0.66,-0.1 c -0.08,0.16 -0.16,0.33 -0.24,0.49 -0.04,0.08 -0.09,0.17 -0.13,0.27 -0.35,0.01 -0.7,0.02 -1.05,0.02 0.07,-0.17 0.14,-0.35 0.21,-0.52 0.08,-0.19 0.15,-0.37 0.23,-0.56 0.38,0 0.76,-0.01 1.14,-0.01 -0.06,0.11 -0.11,0.21 -0.16,0.31 z m -1.5,0.13 c -0.09,0.19 -0.17,0.38 -0.26,0.56 -0.02,0.03 -0.03,0.07 -0.05,0.1 -0.33,0.01 -0.66,0.01 -0.99,0.02 0.08,-0.15 0.16,-0.3 0.24,-0.45 0.11,-0.21 0.23,-0.43 0.34,-0.64 0.3,0 0.6,-0.01 0.91,-0.01 -0.06,0.14 -0.13,0.28 -0.19,0.42 z m -1.4,0.03 c -0.11,0.2 -0.23,0.4 -0.34,0.59 -0.01,0.02 -0.03,0.05 -0.04,0.07 -0.32,0.01 -0.64,0.01 -0.96,0.02 0.04,-0.09 0.07,-0.17 0.11,-0.26 0.12,-0.28 0.24,-0.56 0.35,-0.84 0.38,0 0.76,-0.01 1.13,-0.01 -0.08,0.14 -0.16,0.29 -0.25,0.43 z m -1.59,0.28 c -0.06,0.14 -0.13,0.28 -0.19,0.42 -0.28,0.01 -0.56,0.01 -0.84,0.02 0.03,-0.16 0.05,-0.33 0.1,-0.49 0.06,-0.22 0.16,-0.42 0.25,-0.63 0.33,0 0.67,-0.01 1,-0.01 -0.11,0.23 -0.21,0.46 -0.32,0.69 z m -1.3,-0.15 c -0.03,0.11 -0.04,0.22 -0.07,0.33 0,-0.28 -0.03,-0.57 -0.07,-0.85 0.12,0 0.23,0 0.35,0 -0.07,0.17 -0.16,0.33 -0.21,0.52 z m -1.97,-6.11 c -0.23,-1.01 -0.09,-2 0.28,-2.95 0.67,-1.75 1.94,-3.33 3.26,-4.63 1.11,-1.1 2.42,-1.91 3.65,-2.83 0.33,1.82 0.89,3.62 1.34,5.4 0.36,1.44 0.73,2.88 1.1,4.32 -1.57,0.18 -3.14,0.32 -4.72,0.45 -0.81,0.07 -1.61,0.13 -2.42,0.21 -0.77,0.07 -1.67,0.05 -2.39,0.35 -0.03,-0.11 -0.08,-0.21 -0.1,-0.32 z m 9.17,-7.57 c 0.24,0.03 0.48,0.05 0.71,0.09 0.13,0.02 0.27,0.04 0.4,0.06 0.02,0 0.04,0 0.06,0 0.03,0.12 0.06,0.24 0.1,0.36 -0.08,0 -0.15,-0.01 -0.23,0 -0.31,0.04 -0.61,0.16 -0.87,0.34 -0.1,0.07 -0.14,0.19 -0.08,0.3 0.06,0.1 0.2,0.14 0.3,0.08 0.12,-0.07 0.21,-0.11 0.34,-0.15 0.02,0 0.03,-0.01 0.05,-0.01 0.01,0 0.01,0 0.01,0 0.04,-0.01 0.08,-0.01 0.11,-0.02 0.01,0 0.01,0 0.01,0 0.02,0 0.03,0 0.05,-0.01 0.03,0 0.07,0 0.1,-0.01 0.07,0 0.14,0 0.2,0.01 0,0 0.05,0.01 0.05,0.01 0.03,0 0.05,0.01 0.08,0.01 0,0 0.01,0 0.01,0 0.07,0.25 0.13,0.49 0.2,0.74 -0.14,-0.02 -0.28,-0.03 -0.42,-0.03 -0.32,0.01 -0.62,0.09 -0.9,0.22 -0.24,-0.91 -0.48,-1.82 -0.72,-2.73 -0.09,-0.34 -0.18,-0.68 -0.27,-1.02 0.17,0 0.34,0 0.51,0.01 0.1,0 0.21,0 0.31,0 0.06,0 0.11,0 0.17,-0.01 0.06,-0.01 0.11,-0.04 0.16,-0.07 0.08,-0.05 0.08,-0.17 0,-0.21 -0.05,-0.03 -0.1,-0.06 -0.16,-0.07 -0.06,-0.01 -0.11,-0.01 -0.17,-0.01 -0.1,0 -0.21,0 -0.31,0 -0.2,0 -0.4,0.01 -0.6,0.01 -0.06,-0.21 -0.13,-0.42 -0.19,-0.63 0.15,-0.01 0.31,-0.01 0.46,-0.02 0.14,-0.01 0.27,-0.01 0.41,-0.02 0.16,-0.01 0.31,-0.02 0.45,-0.1 0.01,-0.01 0,-0.02 0.01,-0.03 0.13,0.51 0.27,1.02 0.41,1.53 -0.09,-0.01 -0.18,-0.02 -0.28,-0.02 -0.26,0.01 -0.51,0.07 -0.75,0.18 -0.11,0.05 -0.14,0.2 -0.1,0.3 0.04,0.1 0.17,0.18 0.29,0.14 0.1,-0.04 0.2,-0.07 0.31,-0.09 0.02,0 0.03,-0.01 0.05,-0.01 0.01,0 0.03,0 0.04,0 0.05,0 0.11,-0.01 0.16,-0.01 0.05,0 0.1,0 0.15,0.01 0.01,0 0.05,0.01 0.06,0.01 0.02,0 0.03,0 0.05,0.01 0.06,0.01 0.11,0.02 0.17,0.03 0.04,0.16 0.09,0.32 0.13,0.48 -0.1,-0.01 -0.19,-0.01 -0.29,-0.01 -0.25,0 -0.51,-0.02 -0.76,-0.04 -0.1,-0.01 -0.19,0.09 -0.19,0.19 0.01,0.13 0.1,0.19 0.21,0.21 z m 1.95,3.04 c -0.01,0 -0.02,0 -0.03,-0.01 -0.16,-0.02 -0.32,-0.03 -0.48,-0.02 -0.28,0.01 -0.57,0.08 -0.84,0.16 -0.07,-0.25 -0.13,-0.5 -0.2,-0.75 0.02,0 0.04,0.01 0.06,0.01 0.26,-0.1 0.47,-0.14 0.74,-0.13 0.06,0 0.13,0.01 0.19,0.01 0.01,0 0.01,0 0.01,0 0.01,0 0.03,0 0.04,0.01 0.03,0.01 0.06,0.01 0.1,0.02 0.08,0.02 0.15,0.02 0.23,0.03 0.06,0.22 0.12,0.44 0.18,0.67 z m 0.41,1.54 c -0.02,-0.02 -0.03,-0.05 -0.05,-0.07 -0.03,-0.02 -0.06,-0.04 -0.09,-0.06 -0.03,-0.03 -0.06,-0.05 -0.1,-0.07 -0.03,-0.01 -0.06,-0.03 -0.09,-0.04 -0.07,-0.02 -0.15,-0.02 -0.22,-0.02 -0.12,0 -0.25,0.02 -0.37,0.05 -0.17,0.04 -0.32,0.12 -0.46,0.22 -0.09,-0.34 -0.18,-0.68 -0.27,-1.02 0.24,-0.05 0.48,-0.09 0.74,-0.07 0.14,0.01 0.25,0.03 0.4,0.06 0.07,0.02 0.14,0.03 0.21,0.05 0.02,0 0.03,0 0.05,0 0.08,0.32 0.17,0.65 0.25,0.97 z m -2.28,-8.55 c -0.01,0 -0.01,0 0,0 0,0 0,0 0,0 z m 0,0.01 c 0.07,0.26 0.14,0.52 0.21,0.78 -0.13,-0.04 -0.26,-0.03 -0.4,-0.02 -0.14,0.01 -0.27,0.03 -0.41,0.04 -0.19,0.02 -0.38,0.04 -0.56,0.07 -0.04,-0.12 -0.08,-0.24 -0.12,-0.36 0.03,-0.03 0.07,-0.05 0.1,-0.08 0.02,-0.02 0.01,-0.04 0.03,-0.05 0.09,-0.03 0.18,-0.07 0.29,-0.11 0.22,-0.08 0.45,-0.15 0.67,-0.22 0.06,-0.01 0.13,-0.03 0.19,-0.05 z m 2.56,9.93 c -0.16,-0.02 -0.33,-0.03 -0.49,-0.02 -0.27,0.02 -0.53,0.07 -0.78,0.15 -0.09,-0.34 -0.18,-0.68 -0.26,-1.01 0.01,-0.01 0.03,-0.01 0.04,-0.02 0,0 0,0 0,0 0.01,-0.01 0.01,-0.01 0.02,-0.02 0.02,-0.02 0.05,-0.03 0.07,-0.04 0.02,-0.01 0.04,-0.02 0.06,-0.04 0.01,-0.01 0.02,-0.01 0.03,-0.02 0,0 0.01,-0.01 0.02,-0.01 0,0 0,0 0,0 0.01,-0.01 0.03,-0.01 0.04,-0.01 0.02,-0.01 0.05,-0.01 0.07,-0.02 0.02,-0.01 0.05,-0.01 0.07,-0.02 0.01,0 0.03,0 0.04,-0.01 -0.02,0.01 -0.05,0.01 -0.01,0 0.05,0 0.1,0 0.15,0 0.02,0 0.05,0 0.07,0.01 0.01,0 0.02,0 0.03,0.01 0.07,0.01 0.13,0.02 0.2,0.03 0.02,0 0.07,0 0.08,0 0.02,0 0.03,0.01 0.05,0.01 0.11,0.03 0.22,-0.03 0.27,-0.13 0.01,-0.02 0,-0.04 0,-0.06 0.11,0.42 0.22,0.83 0.33,1.25 -0.04,-0.02 -0.07,-0.03 -0.1,-0.03 z m -18.46,-5.64 c 0,-0.02 -0.01,-0.04 -0.02,-0.05 0.32,0 0.64,0 0.97,0 -0.36,0.39 -0.67,0.81 -0.96,1.27 0,-0.13 0.01,-0.26 0.01,-0.39 0.01,-0.28 0,-0.56 0,-0.83 z m -0.26,1.63 c -0.04,0.07 -0.09,0.13 -0.12,0.2 -0.12,0.23 -0.2,0.48 -0.29,0.73 0,-0.33 -0.01,-0.65 -0.01,-0.98 0,-0.31 -0.01,-0.61 -0.01,-0.92 0,-0.02 0.01,-0.03 0,-0.04 0,-0.11 0,-0.22 -0.01,-0.32 0.08,-0.06 0.07,-0.17 0,-0.24 0,-0.03 0,-0.06 0,-0.09 0.15,0 0.3,0 0.45,0 -0.01,0.02 -0.02,0.03 -0.02,0.05 0,0.27 0,0.54 0,0.81 -0.02,0.26 -0.03,0.53 0.01,0.8 z m -2.54,3.76 c -0.07,0 -0.07,0.07 -0.03,0.11 -0.51,0 -1.02,0 -1.53,0.01 -0.91,0 -1.81,0.05 -2.71,0.11 0.01,-0.02 0.03,-0.03 0.03,-0.05 -0.03,-0.39 -0.06,-0.78 -0.07,-1.17 0,-0.09 -0.14,-0.09 -0.14,0 -0.02,0.39 -0.04,0.78 -0.07,1.17 0,0.02 0.02,0.04 0.04,0.07 -0.22,0.02 -0.44,0.03 -0.66,0.05 -0.02,-0.12 -0.05,-0.25 -0.07,-0.37 -0.07,-0.37 -0.17,-0.74 -0.26,-1.11 -0.18,-0.73 -0.52,-1.44 -0.89,-2.09 -0.05,-0.08 -0.1,-0.16 -0.15,-0.24 0.07,0 0.14,-0.03 0.15,-0.1 0.04,-0.18 0.07,-0.36 0.11,-0.54 0.01,-0.03 -0.03,-0.04 -0.04,-0.06 0.15,0.01 0.29,0.01 0.44,0.02 -0.01,0.14 -0.02,0.27 -0.03,0.41 -0.11,0.03 -0.12,0.18 -0.02,0.25 0,0.01 0,0.02 0,0.03 -0.01,0.12 -0.02,0.25 -0.03,0.37 -0.01,0.13 -0.02,0.22 0.05,0.33 0.03,0.04 0.09,0.06 0.13,0.02 0.09,-0.09 0.09,-0.17 0.11,-0.29 0.02,-0.13 0.03,-0.27 0.05,-0.4 0,0 0,0 0,-0.01 0.21,0.02 0.42,0.03 0.63,0.05 0.04,0.02 0.06,0.03 0.1,0.01 0.14,0.01 0.28,0.02 0.43,0.03 -0.01,0.49 -0.01,0.99 0.04,1.48 0,0 0,0 0,0 0,0.08 0.05,0.15 0.15,0.14 0.28,-0.01 0.55,-0.02 0.83,-0.03 0.01,0.11 0.01,0.22 0.02,0.33 0.01,0.1 0.02,0.17 0.05,0.26 0.03,0.09 0.03,0.17 0.07,0.26 0.03,0.06 0.12,0.04 0.13,-0.02 0.03,-0.09 0.02,-0.19 0.04,-0.28 0.02,-0.08 0.02,-0.16 0.02,-0.24 0,-0.11 -0.01,-0.22 -0.02,-0.32 0.18,-0.01 0.37,-0.01 0.55,-0.02 l 0.85,-0.03 c 0.27,-0.01 0.55,0 0.82,-0.06 0.13,-0.03 0.14,-0.25 0,-0.27 -0.27,-0.04 -0.55,-0.01 -0.82,0 -0.28,0.01 -0.57,0.02 -0.85,0.04 -0.19,0.01 -0.38,0.02 -0.57,0.02 -0.02,-0.33 -0.05,-0.66 -0.07,-0.98 -0.01,-0.19 -0.3,-0.19 -0.29,0 0.02,0.33 0.03,0.67 0.05,1 -0.27,0.01 -0.53,0.02 -0.8,0.03 0.06,-0.43 0.09,-0.86 0.1,-1.29 0.65,0.04 1.31,0.06 1.96,0.06 0,0.01 0,0.01 0,0.02 0.01,0.29 0.03,0.59 0.09,0.87 0.02,0.1 0.19,0.1 0.2,0 0.04,-0.29 0.05,-0.6 0.04,-0.9 0.35,0 0.7,0 1.05,-0.02 0,0.21 0.02,0.43 0.05,0.64 0.01,0.06 0.1,0.05 0.11,0 0.06,-0.21 0.09,-0.42 0.11,-0.64 0.13,-0.01 0.26,-0.02 0.39,-0.03 0,0.11 -0.01,0.21 -0.01,0.32 -0.01,0.29 -0.01,0.62 0.04,0.91 0.02,0.12 0.2,0.11 0.23,0 0.07,-0.28 0.09,-0.61 0.1,-0.91 0,-0.12 0.01,-0.23 0.01,-0.35 0.24,-0.02 0.47,-0.03 0.71,-0.06 0.01,0.25 0.01,0.5 0.03,0.74 0.01,0.1 0.15,0.1 0.15,0 0.02,-0.25 0.02,-0.51 0.03,-0.76 0.01,0 0.02,0 0.03,0 0.19,-0.02 0.2,-0.32 0,-0.31 0,0 -0.01,0 -0.01,0 0,-0.23 0.01,-0.46 0.01,-0.68 0.19,-0.02 0.37,-0.05 0.55,-0.08 0,0.25 0,0.5 0,0.75 0,0.35 0,0.7 0,1.05 0,0.3 -0.01,0.61 0.07,0.9 -0.06,0.23 -0.13,0.45 -0.17,0.68 -0.08,0.42 -0.14,0.84 -0.18,1.26 -0.39,0 -0.78,0.03 -1.15,0.03 -0.1,0 -0.2,0 -0.3,0 0.06,-0.05 0.06,-0.12 -0.01,-0.12 z m -6.73,-4.24 c 0.04,0.04 0.1,0.04 0.14,0.01 0.03,0 0.06,0 0.09,0 0,0 -0.01,0 -0.01,0.01 -0.05,0.17 -0.1,0.34 -0.15,0.5 -0.11,-0.18 -0.22,-0.37 -0.34,-0.54 0.1,0.01 0.18,0.02 0.27,0.02 z m 8.47,-0.63 c -0.18,0 -0.37,0 -0.55,0.03 0,-0.05 0,-0.11 0,-0.16 0.19,0 0.37,-0.02 0.55,-0.04 0,0.05 0,0.11 0,0.17 z m -0.8,0.05 c -0.08,0.01 -0.17,0.02 -0.25,0.03 -0.13,0.01 -0.27,0.02 -0.4,0.02 0,-0.07 0,-0.15 0.01,-0.22 0.14,0 0.28,-0.01 0.42,-0.01 0.07,0 0.15,0 0.23,0 -0.01,0.06 -0.01,0.12 -0.01,0.18 z m -2.8,1.12 c -0.01,-0.17 -0.02,-0.35 -0.02,-0.52 0,-0.01 0,-0.01 0,-0.02 0.37,-0.02 0.75,-0.04 1.12,-0.07 -0.01,0.09 -0.01,0.18 -0.02,0.28 -0.01,0.1 0,0.21 -0.01,0.31 -0.36,0.01 -0.71,0.01 -1.07,0.02 z m 1.39,-0.33 c 0,-0.1 0.01,-0.2 0.01,-0.3 0.12,-0.01 0.25,-0.02 0.37,-0.04 -0.01,0.11 -0.01,0.23 -0.02,0.34 0,0.09 -0.01,0.18 -0.01,0.27 -0.13,0 -0.25,0.01 -0.38,0.02 0.02,-0.09 0.03,-0.19 0.03,-0.29 z m 0.74,0.01 c 0,-0.13 0.01,-0.25 0.01,-0.38 0.17,-0.02 0.35,-0.03 0.53,-0.05 0.04,0 0.08,-0.01 0.13,-0.01 0,0.22 0.01,0.45 0.01,0.67 -0.23,0.01 -0.45,0.02 -0.68,0.03 0,-0.09 0,-0.17 0,-0.26 z m -0.33,-0.72 c -0.13,0.01 -0.25,0.02 -0.38,0.02 0,-0.08 0.01,-0.16 0.01,-0.25 0.13,0 0.25,-0.01 0.38,-0.01 -0.01,0.08 -0.01,0.16 -0.01,0.24 z m -0.68,0.03 c -0.39,0.02 -0.78,0.02 -1.16,0.02 0,-0.08 -0.01,-0.16 -0.01,-0.24 0.4,-0.01 0.79,-0.02 1.19,-0.03 -0.01,0.08 -0.02,0.16 -0.02,0.25 z m -1.49,0.03 c -0.27,0 -0.54,0.02 -0.81,0.02 0,-0.01 0,-0.02 0,-0.03 0,-0.07 0,-0.14 0,-0.21 0.27,-0.01 0.54,-0.01 0.8,-0.02 0.01,0.07 0.01,0.15 0.01,0.24 z m -1.08,0.69 c 0.06,0.08 0.16,0.08 0.23,0 0.04,-0.05 0.05,-0.11 0.05,-0.18 0.27,-0.01 0.54,-0.04 0.82,-0.05 0.01,0.17 0.01,0.35 0.02,0.52 -0.65,0.01 -1.29,0 -1.94,-0.02 0,-0.03 0,-0.07 0,-0.1 0,-0.12 0.01,-0.24 0.01,-0.36 0.25,0 0.51,0.01 0.76,0.01 0.01,0.07 0.02,0.13 0.05,0.18 z m -1.13,0.13 c 0,0.04 0,0.08 0,0.12 -0.1,0 -0.21,-0.01 -0.31,-0.02 0,0 0,0 0,-0.01 0.01,-0.09 0,-0.19 0,-0.28 0,-0.05 0,-0.1 0,-0.15 0.11,0 0.21,0 0.32,0 -0.01,0.13 -0.01,0.24 -0.01,0.34 z m -0.65,0.09 c -0.16,-0.01 -0.33,-0.02 -0.49,-0.03 0.01,-0.13 0.03,-0.26 0.04,-0.39 0.15,0.01 0.3,0 0.45,0 0,0.05 0,0.1 0,0.15 0,0.08 -0.01,0.17 0,0.26 0,0 0,0.01 0,0.01 z m 6.83,-1.63 c -0.19,-0.01 -0.37,-0.02 -0.56,-0.01 0,-0.01 0,-0.01 0,-0.02 0.19,0 0.37,0 0.56,0 0.01,0.01 0,0.02 0,0.03 z m -0.8,-0.01 c -0.11,0 -0.22,0.01 -0.34,0.01 -0.1,0 -0.2,0 -0.3,0.01 0,-0.02 0,-0.03 0,-0.05 0.21,0 0.42,0 0.63,0 0.01,0.02 0.01,0.02 0.01,0.03 z m -0.97,0.03 c -0.13,0 -0.26,0.01 -0.38,0.01 0,-0.01 0,-0.01 0,-0.02 0,-0.02 -0.01,-0.03 -0.02,-0.04 0.13,0 0.27,0 0.4,0 0,0.02 0,0.03 0,0.05 z m -0.67,-0.01 c 0,0.01 0,0.02 0,0.02 -0.01,0 -0.02,0 -0.03,0 -0.4,0.01 -0.8,0.02 -1.2,0.03 0,-0.03 0,-0.06 0,-0.09 0.42,0 0.84,0 1.25,0 -0.01,0.01 -0.02,0.02 -0.02,0.04 z m -1.55,-0.04 c 0,0.03 0,0.07 0,0.1 -0.27,0.01 -0.53,0.01 -0.8,0.02 0,-0.03 0,-0.05 0,-0.08 0,-0.02 -0.01,-0.03 -0.02,-0.04 0.28,0 0.55,0 0.82,0 z m -1.09,0.04 c 0,0.03 0,0.06 0,0.08 -0.04,0 -0.08,0 -0.12,0 -0.26,0.01 -0.26,0.41 0,0.4 0.04,0 0.07,0 0.11,0 0,0.07 0,0.14 0,0.2 0,0.01 0,0.02 0,0.02 -0.25,0 -0.5,-0.01 -0.75,-0.01 0.01,-0.25 0.01,-0.5 0.02,-0.76 0.26,0 0.51,0 0.77,0 -0.02,0.04 -0.03,0.05 -0.03,0.07 z m -1.08,0.71 c -0.11,0 -0.23,0 -0.34,0 0,-0.25 0,-0.5 -0.01,-0.75 0.12,0 0.25,0 0.37,0 0,0.25 -0.01,0.5 -0.02,0.75 z m -0.66,-0.01 c -0.14,0 -0.27,0 -0.41,0 0.02,-0.25 0.04,-0.5 0.07,-0.75 0.12,0 0.23,0 0.35,0 -0.01,0.25 -0.01,0.5 -0.01,0.75 z m -0.74,-0.01 c -0.22,-0.01 -0.44,-0.02 -0.66,-0.03 0,-0.12 0,-0.23 0,-0.35 0,-0.12 0,-0.23 0,-0.35 0.12,0 0.25,-0.01 0.37,0 0.12,0 0.24,0 0.36,0 -0.02,0.24 -0.04,0.48 -0.07,0.73 z m -1,-0.05 c -0.19,-0.01 -0.38,-0.01 -0.58,-0.01 -0.1,-0.13 -0.19,-0.26 -0.3,-0.38 -0.09,-0.1 -0.19,-0.19 -0.28,-0.28 0.39,0.01 0.78,0.01 1.16,0 0,0.12 0,0.23 0,0.35 0,0.09 0,0.2 0,0.32 z m -12.78,-2.21 c 0.21,0.11 0.44,0.21 0.66,0.31 0.41,0.18 0.82,0.37 1.22,0.59 0.79,0.42 1.55,0.92 2.25,1.47 1.38,1.09 2.52,2.49 3.18,4.13 0.38,0.92 0.56,1.85 0.59,2.8 -0.47,-0.02 -0.95,0.02 -1.37,0.02 -0.94,-0.01 -1.88,-0.02 -2.82,-0.03 -1.84,-0.01 -3.69,-0.06 -5.53,-0.01 0,0 -0.01,0 -0.01,0 0.63,-3.09 1.24,-6.18 1.83,-9.28 z m 51.54,46.96 c 0.01,0.08 0.02,0.15 0.03,0.23 -0.05,0.01 -0.09,0.01 -0.14,0.02 0.03,-0.17 0.05,-0.33 0.06,-0.5 0.01,0.08 0.03,0.17 0.05,0.25 z m -43.49,0.06 c 7.35,0.12 14.72,-0.06 22.07,-0.3 7.03,-0.22 14.07,-0.68 20.99,-1.83 0.02,0.1 0.05,0.2 0.07,0.3 -0.01,0.02 -0.03,0.04 -0.03,0.07 -0.04,0.37 -0.07,0.73 -0.11,1.1 -0.02,0.18 -0.03,0.36 -0.05,0.54 -0.01,0.13 -0.01,0.26 -0.01,0.39 -0.33,0.06 -0.67,0.11 -1,0.16 0,-0.07 0.02,-0.13 0.02,-0.2 0.02,-0.2 0.03,-0.39 0.05,-0.59 0.03,-0.4 0.07,-0.8 0.1,-1.2 0.02,-0.22 -0.32,-0.22 -0.34,0 -0.04,0.46 -0.08,0.92 -0.12,1.38 -0.02,0.22 -0.04,0.43 -0.05,0.65 -0.56,0.08 -1.11,0.19 -1.67,0.26 0,-0.16 0,-0.32 0,-0.48 0,-0.34 0,-0.68 0,-1.02 0,-0.24 -0.37,-0.24 -0.37,0 0,0.34 0,0.68 0,1.02 0,0.17 0,0.33 0,0.5 0,0.01 0,0.02 0,0.04 -0.66,0.09 -1.33,0.15 -1.99,0.23 -0.03,-0.1 -0.06,-0.21 -0.07,-0.31 -0.02,-0.34 0.06,-0.67 0.24,-0.95 0.11,-0.18 -0.18,-0.35 -0.29,-0.17 -0.21,0.34 -0.31,0.74 -0.28,1.14 0.01,0.11 0.04,0.22 0.07,0.34 -0.65,0.07 -1.31,0.16 -1.96,0.22 0,-0.08 0.01,-0.16 0.01,-0.24 v -0.6 c 0,-0.16 -0.24,-0.16 -0.24,0 v 0.6 c 0,0.09 0.01,0.18 0.01,0.27 -0.77,0.07 -1.54,0.13 -2.31,0.19 0,-0.35 0,-0.7 0,-1.05 0,-0.22 -0.35,-0.22 -0.35,0 0,0.36 0,0.72 0,1.08 -0.88,0.07 -1.75,0.15 -2.63,0.2 0,-0.03 -0.02,-0.05 -0.02,-0.08 0.01,-0.2 -0.3,-0.2 -0.31,0 0,0.03 0.01,0.07 0.01,0.1 -1.49,0.09 -2.98,0.17 -4.47,0.23 -7.16,0.29 -14.35,0.43 -21.52,0.43 -3.26,0 -6.52,-0.06 -9.77,-0.19 0,-0.02 0.02,-0.02 0.02,-0.04 0.01,-0.05 0.02,-0.11 0.03,-0.16 0.02,-0.12 0.04,-0.24 0.06,-0.37 0.03,-0.24 0.07,-0.48 0.1,-0.73 0.02,-0.12 -0.03,-0.27 -0.17,-0.3 -0.11,-0.03 -0.28,0.03 -0.3,0.17 -0.03,0.24 -0.07,0.48 -0.1,0.73 -0.02,0.13 -0.04,0.26 -0.05,0.39 -0.01,0.1 -0.02,0.2 -0.01,0.29 -0.65,-0.03 -1.31,-0.07 -1.96,-0.11 -0.01,-0.04 -0.03,-0.08 -0.04,-0.12 -0.06,-0.28 -0.06,-0.58 0,-0.87 0.05,-0.25 -0.32,-0.35 -0.38,-0.1 -0.08,0.35 -0.08,0.71 0,1.06 0,0 0,0.01 0,0.01 -0.64,-0.04 -1.28,-0.07 -1.93,-0.12 -0.06,-0.24 -0.12,-0.49 -0.18,-0.73 -0.06,-0.24 -0.44,-0.14 -0.38,0.1 0.05,0.2 0.1,0.4 0.15,0.61 -0.64,-0.05 -1.29,-0.1 -1.93,-0.15 0,0 0,-0.01 0,-0.01 0,-0.24 0,-0.47 0,-0.71 0,-0.2 -0.31,-0.2 -0.31,0 0,0.23 0,0.46 0,0.69 -0.45,-0.04 -0.9,-0.09 -1.35,-0.13 0,-0.02 0,-0.04 0,-0.06 l -0.01,-0.9 c 0,-0.17 -0.27,-0.17 -0.27,0 l 0.01,0.9 c 0,0.01 0,0.02 0,0.04 -0.63,-0.06 -1.26,-0.11 -1.89,-0.19 0.02,-0.38 0.01,-0.77 0.01,-1.15 0,-0.44 0,-0.89 0,-1.33 0.19,-1.07 0.41,-2.13 0.62,-3.2 0,-0.02 0.01,-0.05 0.01,-0.07 3.77,0.78 7.63,1.13 11.46,1.41 3.92,0.29 7.84,0.46 11.77,0.52 7.78,0.11 15.54,-0.43 23.29,-1.09 2.19,-0.19 4.37,-0.41 6.56,-0.67 1.09,-0.13 2.18,-0.22 3.27,-0.35 0.86,-0.11 1.7,-0.2 2.52,-0.46 0.1,0.36 0.19,0.73 0.29,1.09 -5.92,0.99 -11.94,1.45 -17.96,1.7 -7.13,0.29 -14.28,0.43 -21.41,0.43 -6.61,0 -13.24,-0.2 -19.81,-0.92 -0.19,0.53 -0.37,1.07 -0.53,1.61 5.69,0.66 11.4,0.97 17.12,1.06 z m -15.51,-7.29 c -0.03,-0.22 -0.04,-0.45 -0.05,-0.68 0.04,0 0.08,-0.01 0.12,-0.01 0.06,0.25 0.12,0.5 0.19,0.75 -0.03,0 -0.05,0.01 -0.08,0.01 -0.06,0.01 -0.11,0.01 -0.17,0.02 0.01,-0.03 0,-0.06 -0.01,-0.09 z m 0.07,-2.34 c 0.1,0 0.19,0 0.29,-0.01 -0.01,0.15 -0.01,0.29 -0.02,0.44 -0.13,0 -0.26,0 -0.39,0.01 0,-0.02 0,-0.05 0,-0.07 0,-0.02 -0.01,-0.02 -0.01,-0.04 0.02,-0.11 0.04,-0.22 0.06,-0.32 0.03,-0.01 0.05,-0.01 0.07,-0.01 z m 0.25,0.82 c 0,0.06 -0.01,0.12 -0.01,0.17 -0.14,-0.11 -0.4,-0.01 -0.35,0.22 -0.01,0 -0.02,0 -0.03,0 0,-0.13 0.01,-0.27 0.01,-0.4 0.13,0.01 0.26,0.01 0.38,0.01 z m 0.78,2.88 c -0.03,-0.12 -0.07,-0.23 -0.09,-0.35 -0.06,-0.23 -0.12,-0.46 -0.19,-0.69 0.02,-0.05 0.06,-0.09 0.08,-0.14 0.03,-0.11 -0.07,-0.22 -0.17,-0.22 -0.01,-0.02 -0.01,-0.04 -0.02,-0.06 l 0.02,-0.54 c 0.01,0 0.03,0 0.04,0 0.11,0.01 0.23,0.03 0.34,0.03 0,0.24 0,0.49 -0.01,0.73 0,0.41 -0.01,0.82 0,1.24 z m -0.88,-0.38 c 0,0.05 -0.01,0.1 -0.01,0.15 -0.01,-0.04 -0.02,-0.08 -0.03,-0.12 0.01,-0.01 0.03,-0.02 0.04,-0.03 z m 0.43,0.59 c 0.02,0.05 0.04,0.09 0.06,0.13 -0.03,0 -0.05,0 -0.08,-0.01 0.01,-0.04 0.02,-0.08 0.02,-0.12 z m 0.46,-2.62 c -0.11,-0.03 -0.24,-0.05 -0.33,-0.06 -0.01,0 -0.03,0 -0.04,0 v -0.02 c 0,-0.13 0.01,-0.26 0.01,-0.39 0.12,0 0.24,0 0.37,0 0,0.16 -0.01,0.31 -0.01,0.47 z m -0.74,-1.62 c 0,0 0,0 0,0 -0.1,-0.02 -0.2,-0.01 -0.3,-0.01 0.05,-0.24 0.09,-0.47 0.14,-0.71 0.01,-0.07 0.03,-0.13 0.04,-0.2 0.05,0 0.11,0.01 0.16,0.01 -0.01,0.3 -0.02,0.6 -0.04,0.91 z m -0.76,2.32 c 0.01,0.14 0.01,0.28 0.02,0.42 0,0.02 0.01,0.04 0.01,0.05 -0.04,0 -0.08,0.01 -0.12,0.01 0.03,-0.16 0.06,-0.32 0.09,-0.48 z m 0.21,1.63 c 0.03,0.13 0.07,0.26 0.12,0.38 -0.24,-0.01 -0.48,-0.03 -0.72,-0.05 0,-0.01 0,-0.02 0.01,-0.03 0.21,-0.08 0.41,-0.19 0.59,-0.3 z m 48.88,-0.27 c -0.12,0 -0.24,0.01 -0.36,0.01 -0.1,0 -0.19,0.08 -0.19,0.19 0,0.1 0.08,0.18 0.19,0.19 0.12,0 0.25,0.01 0.38,0.01 0.04,0 0.07,0 0.11,0 0.04,0.09 0.07,0.19 0.13,0.28 0.04,0.06 0.12,0.1 0.19,0.08 0.03,-0.01 0.05,-0.02 0.08,-0.04 0.04,-0.03 0.06,-0.12 0.04,-0.17 -0.03,-0.08 -0.04,-0.16 -0.07,-0.23 0.02,-0.02 0.06,-0.02 0.07,-0.06 0.01,-0.03 0.01,-0.07 0,-0.1 -0.03,-0.07 -0.09,-0.11 -0.16,-0.12 -0.03,-0.1 -0.07,-0.2 -0.09,-0.3 -0.03,-0.18 -0.01,-0.37 0.01,-0.55 0.25,0 0.51,0 0.76,0 0.01,0.16 0.02,0.33 0.03,0.49 0,0.08 0.01,0.16 0.01,0.24 -0.01,0 -0.01,-0.01 -0.03,-0.01 -0.22,0 -0.22,0.34 0,0.34 0.02,0 0.03,-0.01 0.04,-0.02 0.01,0.16 0.02,0.34 0.11,0.46 0.05,0.06 0.15,0.03 0.19,-0.02 0.05,-0.08 0.04,-0.17 0.05,-0.26 0,-0.08 0,-0.16 0,-0.23 -0.01,-0.18 -0.03,-0.35 -0.04,-0.53 l -0.04,-0.47 c 0.06,0 0.12,0 0.18,0 0.05,0.3 0.1,0.6 0.15,0.9 0.04,0.24 0.08,0.47 0.12,0.71 -1.11,0.14 -2.22,0.28 -3.33,0.4 0,0 0.01,0 0.01,-0.01 0.02,-0.09 -0.01,-0.17 -0.04,-0.26 -0.03,-0.08 -0.05,-0.17 -0.08,-0.25 -0.05,-0.16 -0.08,-0.32 -0.11,-0.48 -0.04,-0.29 -0.02,-0.59 0.03,-0.88 0.32,0 0.64,0 0.93,-0.09 0.03,-0.01 0.03,-0.04 0.05,-0.07 0.21,0.01 0.43,0.01 0.64,0.01 -0.02,0.28 -0.01,0.56 0.04,0.84 z m -17.84,0.28 c -0.01,-0.03 -0.01,-0.06 -0.01,-0.08 0.25,0 0.52,-0.01 0.77,-0.05 0.11,-0.02 0.1,-0.19 0,-0.22 -0.25,-0.07 -0.53,-0.09 -0.78,-0.11 -0.01,0 -0.03,0 -0.04,0 -0.01,-0.08 -0.03,-0.15 -0.03,-0.23 0.43,0 0.86,-0.01 1.29,-0.01 0.01,0.4 0.03,0.79 0.04,1.19 0,0.03 0,0.06 0,0.08 -0.13,-0.01 -0.26,-0.02 -0.38,-0.02 -0.23,0 -0.46,0.01 -0.69,0.02 -0.07,-0.2 -0.13,-0.38 -0.17,-0.57 z m 3.38,0.15 c 0.31,0.01 0.62,0.01 0.94,0.01 0.02,0.14 0.04,0.29 0.06,0.43 -0.05,0 -0.1,0 -0.14,0 -0.37,0 -0.74,0.03 -1.11,0.05 -0.03,-0.14 -0.07,-0.27 -0.1,-0.41 -0.08,-0.32 -0.16,-0.64 -0.24,-0.96 0.2,0 0.4,-0.01 0.6,-0.01 0.2,-0.01 0.4,-0.02 0.59,-0.03 0.07,-0.01 0.14,-0.01 0.22,-0.01 l 0.07,0.63 c -0.3,0.01 -0.6,0 -0.89,0.01 -0.19,0 -0.19,0.28 0,0.29 z m -0.93,-0.88 c 0.08,0.34 0.15,0.68 0.23,1.03 0.03,0.12 0.05,0.23 0.08,0.35 -0.08,0 -0.16,0.01 -0.25,0.01 -0.29,-0.02 -0.58,-0.05 -0.87,-0.07 0,-0.04 -0.01,-0.09 -0.01,-0.13 -0.02,-0.39 -0.05,-0.78 -0.07,-1.17 0.18,0 0.36,0 0.54,-0.01 0.12,0 0.23,-0.01 0.35,-0.01 z m -1.66,1.73 c 0.15,0.01 0.31,0 0.46,0 0.01,0.15 0.02,0.3 0.04,0.45 -0.29,0.01 -0.58,0.04 -0.87,0.08 0.01,-0.18 -0.06,-0.38 -0.13,-0.56 0.16,0.01 0.33,0.02 0.5,0.03 z m 0.88,0 c 0.28,-0.01 0.56,-0.03 0.84,-0.03 0.11,0 0.22,0.01 0.33,0.02 0.04,0.15 0.08,0.3 0.13,0.44 0.06,0.15 0.31,0.14 0.3,-0.04 -0.01,-0.13 -0.04,-0.25 -0.07,-0.38 0.32,0.03 0.64,0.07 0.97,0.08 0.1,0 0.2,0.01 0.3,0.01 0.03,0.12 0.07,0.23 0.13,0.34 0.04,0.08 0.18,0.07 0.2,-0.03 0.02,-0.1 0.03,-0.2 0.03,-0.3 0.34,0.01 0.68,0 0.99,-0.09 0.16,-0.04 0.15,-0.26 0,-0.31 -0.32,-0.1 -0.67,-0.12 -1.02,-0.12 -0.02,-0.14 -0.04,-0.29 -0.06,-0.43 0.37,0.01 0.74,0.01 1.11,0.02 0,0.03 0,0.06 0,0.09 0.01,0.16 0,0.37 0.08,0.51 0.05,0.1 0.2,0.07 0.23,-0.03 0.05,-0.15 0.02,-0.35 0.01,-0.5 0,-0.02 0,-0.04 0,-0.06 0.48,0.01 0.95,0.02 1.43,0.02 0,0.01 0,0.02 0.01,0.02 0.04,0.13 0.25,0.12 0.26,-0.02 0.1,0 0.2,0 0.3,0 0.26,0 0.51,0 0.77,0 0.01,0.05 0.02,0.1 0.03,0.14 0.03,0.08 0.06,0.16 0.1,0.24 -0.52,0.02 -1.04,0.04 -1.56,0.06 -0.29,0.01 -0.29,0.44 0,0.44 0.72,0.01 1.44,0.04 2.16,0.04 0.74,0.01 1.48,-0.09 2.22,-0.11 0.72,-0.02 1.44,-0.02 2.16,-0.01 0.32,0.01 0.64,0.02 0.97,0.03 -3.63,0.38 -7.31,0.68 -10.96,0.73 -0.8,0.01 -1.6,0.01 -2.4,0.02 0,-0.01 0.01,-0.01 0.01,-0.02 0.02,-0.25 0.01,-0.51 0,-0.77 z m 6.03,-1.7 c -0.02,-0.09 -0.04,-0.18 -0.06,-0.27 0.37,0 0.74,0 1.12,0 0,0.22 0.02,0.44 0.05,0.65 0,0.03 0.02,0.06 0.02,0.09 -0.22,0 -0.45,0 -0.67,0 -0.12,0 -0.25,0.01 -0.37,0.01 -0.03,-0.16 -0.06,-0.32 -0.09,-0.48 z m 6.41,1.31 c -0.74,0.03 -1.48,0.04 -2.22,0.03 -0.72,0 -1.44,-0.09 -2.16,-0.07 -0.1,0 -0.19,0.01 -0.29,0.01 -0.03,-0.11 -0.06,-0.23 -0.09,-0.33 0,-0.01 -0.01,-0.03 -0.01,-0.04 0.39,0 0.77,0 1.16,-0.01 0.04,0 0.08,0 0.12,0 0.01,0.11 0.02,0.23 0.07,0.32 0.06,0.11 0.2,0.07 0.24,-0.03 0.03,-0.09 0.03,-0.19 0.02,-0.3 0.25,0 0.49,-0.01 0.74,-0.01 0.1,0 0.22,0 0.33,0 0,0.01 0,0.03 0.01,0.04 0.04,0.15 0.28,0.13 0.28,-0.04 0,0 0,-0.01 0,-0.01 0.19,-0.01 0.38,-0.02 0.55,-0.09 0.09,-0.04 0.09,-0.15 0,-0.18 -0.18,-0.07 -0.38,-0.09 -0.59,-0.09 -0.02,-0.19 -0.04,-0.39 -0.07,-0.58 -0.01,-0.09 -0.03,-0.18 -0.04,-0.28 0.02,0 0.05,0 0.07,0 0.32,0 0.63,0.01 0.95,0.03 0.04,0.2 0.08,0.4 0.13,0.6 0.03,0.16 0.07,0.31 0.1,0.47 0.02,0.08 0.05,0.15 0.07,0.23 0.02,0.08 0.04,0.16 0.08,0.23 0.05,0.08 0.16,0.04 0.16,-0.04 0.01,-0.08 -0.01,-0.16 -0.02,-0.25 -0.01,-0.07 -0.01,-0.15 -0.03,-0.22 -0.03,-0.16 -0.07,-0.32 -0.1,-0.48 -0.04,-0.17 -0.07,-0.35 -0.11,-0.52 0.41,0.02 0.82,0.04 1.24,0.04 0.12,0 0.25,0 0.37,0 0.04,0.17 0.09,0.34 0.13,0.52 0.04,0.17 0.09,0.33 0.13,0.5 0.05,0.17 0.08,0.38 0.2,0.51 0.07,0.08 0.21,0.04 0.24,-0.06 0.04,-0.18 -0.04,-0.37 -0.09,-0.55 -0.04,-0.17 -0.09,-0.33 -0.13,-0.5 -0.04,-0.14 -0.08,-0.28 -0.11,-0.42 0.14,0 0.28,0 0.41,0 -0.04,0.3 -0.06,0.6 -0.02,0.9 0.02,0.19 0.06,0.37 0.11,0.55 0.01,0.05 0.04,0.09 0.05,0.14 -0.62,-0.09 -1.26,-0.04 -1.88,-0.02 z m -4.92,-1 c -0.03,-0.19 -0.05,-0.38 -0.06,-0.57 0.21,0 0.42,0.01 0.63,0 0.26,-0.01 0.52,-0.02 0.78,-0.03 0.01,0.18 0.02,0.37 0.04,0.55 0.01,0.08 0.01,0.15 0.02,0.23 -0.01,0 -0.02,0 -0.04,0 -0.44,0 -0.88,0 -1.32,-0.01 -0.02,-0.06 -0.04,-0.11 -0.05,-0.17 z m 2.67,-0.31 c 0.02,0.17 0.06,0.34 0.09,0.51 -0.07,0 -0.14,0 -0.2,0 -0.28,-0.01 -0.55,-0.01 -0.83,-0.02 -0.01,-0.09 -0.01,-0.17 -0.02,-0.26 -0.01,-0.18 -0.02,-0.37 -0.04,-0.55 0.32,-0.01 0.63,-0.02 0.95,-0.03 z m -4.62,-0.27 c 0.03,0 0.05,0 0.08,0 0.02,0.11 0.05,0.23 0.07,0.34 0.03,0.14 0.07,0.28 0.11,0.42 -0.45,0 -0.9,0.01 -1.36,0.02 0,-0.02 0,-0.05 -0.01,-0.07 -0.02,-0.31 -0.05,-0.63 -0.07,-0.94 0.33,0 0.66,0 0.99,0.01 -0.02,0.1 0.04,0.22 0.19,0.22 z m -1.48,-0.24 c 0.02,0.32 0.04,0.64 0.06,0.97 0,0.02 0,0.04 0,0.06 -0.38,0.01 -0.76,0.01 -1.14,0.02 -0.04,-0.23 -0.07,-0.45 -0.11,-0.68 0.02,-0.01 0.03,0 0.05,-0.01 0.17,-0.07 0.18,-0.29 0,-0.36 0.39,0 0.77,0 1.14,0 z m -5.9,0.06 c 0,-0.03 0,-0.06 0,-0.09 0.71,0 1.43,0.01 2.14,0.01 -0.71,0.02 -1.43,0.05 -2.14,0.08 z m -0.36,0.02 c -0.25,0.04 -0.26,0.42 0.01,0.43 0,0.07 0.02,0.13 0.02,0.2 -0.13,-0.01 -0.25,-0.02 -0.38,-0.03 -0.19,-0.01 -0.37,-0.01 -0.56,-0.02 -0.03,-0.23 -0.06,-0.47 -0.08,-0.7 0.33,0 0.66,0 0.99,0.01 0,0.04 0,0.08 0,0.11 z m -1.33,-0.12 c 0.02,0.23 0.05,0.46 0.07,0.69 -0.24,-0.01 -0.48,-0.02 -0.71,-0.02 -0.27,-0.01 -0.27,0.41 0,0.42 0.25,0.01 0.51,0.02 0.76,0.03 0.02,0.18 0.04,0.36 0.06,0.55 0.02,0.2 0.02,0.41 0.09,0.61 0.05,0.13 0.28,0.17 0.31,0 0.03,-0.21 -0.01,-0.4 -0.03,-0.61 -0.02,-0.18 -0.04,-0.35 -0.06,-0.53 0.17,0.01 0.34,0.01 0.51,0.02 0.14,0.01 0.29,0 0.43,0 0.01,0.05 0.01,0.11 0.02,0.16 0.03,0.17 0.08,0.33 0.12,0.49 -0.2,0.01 -0.4,0.02 -0.6,0.01 -0.2,0 -0.2,0.3 0,0.31 0.23,0.01 0.46,0.03 0.69,0.04 0.06,0.2 0.15,0.46 0.3,0.63 -0.01,0 -0.02,0 -0.02,0 -0.44,0.04 -0.87,0.06 -1.31,0.07 -0.89,0.02 -1.78,-0.04 -2.66,-0.18 -0.22,-0.04 -0.32,0.3 -0.09,0.34 0.01,0 0.03,0 0.04,0.01 -0.82,0 -1.64,-0.01 -2.46,-0.02 0.04,-0.21 0.03,-0.44 0.03,-0.63 0,-0.31 -0.01,-0.61 -0.01,-0.92 0,-0.1 0,-0.21 -0.01,-0.31 0.29,0 0.57,0 0.86,-0.01 0.27,0 0.55,-0.01 0.82,-0.02 v 0.07 c 0,0.24 0.02,0.49 0.05,0.73 0.01,0.07 0.1,0.07 0.11,0 0.03,-0.24 0.05,-0.49 0.05,-0.73 v -0.08 c 0.01,0 0.01,0 0.02,0 0.15,-0.02 0.15,-0.22 0,-0.24 -0.01,0 -0.01,0 -0.02,0 v -0.41 c 0,0 0,0 0,0 0.18,0 0.37,0.01 0.55,0.01 0.12,0 0.15,-0.19 0.03,-0.21 -0.73,-0.16 -1.48,-0.25 -2.23,-0.32 1.42,0.04 2.86,0.05 4.29,0.05 z m -17.75,2.53 c -0.02,-0.01 -0.03,-0.02 -0.05,-0.02 -0.02,0 -0.02,0.01 -0.03,0.01 -0.61,-0.04 -1.23,-0.09 -1.84,-0.15 0,-0.14 0.01,-0.29 -0.01,-0.44 0,-0.03 -0.03,-0.05 -0.05,-0.06 -0.02,-0.22 -0.04,-0.45 -0.06,-0.67 0.2,0 0.4,-0.01 0.6,-0.01 0,0.03 0,0.07 0,0.1 0,0.1 0.01,0.2 0.02,0.31 0.01,0.1 0,0.21 0.06,0.29 -0.25,-0.01 -0.25,0.39 0.01,0.41 1.43,0.14 2.86,0.25 4.3,0.33 0,0.02 0.01,0.04 0.02,0.06 -0.79,-0.04 -1.59,-0.07 -2.39,-0.13 -0.2,0 -0.39,-0.02 -0.58,-0.03 z m -1.08,-0.93 c 0,-0.09 -0.01,-0.19 -0.01,-0.28 0,-0.04 -0.01,-0.08 -0.01,-0.13 0.25,0 0.51,0.01 0.76,0.01 0,0.01 0,0.03 0,0.04 0,0.05 0.03,0.09 0.05,0.13 0.04,0.09 0.2,0.09 0.24,0 0.02,-0.04 0.04,-0.07 0.04,-0.11 0,-0.02 0,-0.04 0,-0.06 0.19,0 0.38,0 0.57,0.01 0.01,0.12 0.01,0.24 0.02,0.36 0.01,0.15 0.03,0.31 0.04,0.46 -0.58,-0.04 -1.15,-0.08 -1.73,-0.13 0,0 0,0 0,0 0.05,-0.09 0.03,-0.19 0.03,-0.3 z m 1.97,0.46 c 0,-0.16 0.01,-0.32 0,-0.48 -0.01,-0.12 -0.01,-0.24 -0.02,-0.36 0.25,0.01 0.5,0.02 0.75,0.03 0.01,0.12 0.02,0.24 0.05,0.36 0.04,0.15 0.23,0.1 0.24,-0.03 0.01,-0.1 0.01,-0.21 0,-0.31 0.3,0.01 0.59,0.02 0.89,0.04 0.02,0.27 0.04,0.55 0.06,0.82 0,0.02 0,0.05 0.01,0.07 -0.66,-0.05 -1.32,-0.1 -1.98,-0.14 z m 1.88,-1.27 c -0.3,-0.02 -0.59,-0.02 -0.89,-0.04 0,-0.04 -0.01,-0.08 -0.01,-0.11 0,-0.06 -0.01,-0.12 -0.01,-0.18 0.3,0 0.6,0 0.89,-0.08 0,0.13 0.01,0.27 0.02,0.41 z m -1.19,-0.13 c 0,0.03 0,0.06 0,0.08 -0.25,-0.01 -0.5,-0.02 -0.74,-0.03 -0.01,-0.08 -0.01,-0.16 -0.02,-0.25 0.25,0 0.5,0 0.75,0 0,0.07 0.01,0.13 0.01,0.2 z m -1.05,0.05 c -0.18,0 -0.36,0 -0.55,0 0,-0.06 0,-0.11 0,-0.17 0,-0.03 0,-0.05 0,-0.08 0.18,0 0.36,0.01 0.54,0.01 0.01,0.07 0.01,0.16 0.01,0.24 z m -0.87,-0.17 c 0,0.06 0,0.11 0,0.17 -0.27,0 -0.53,-0.01 -0.8,-0.01 0,0 0,-0.01 0,-0.01 -0.01,-0.08 -0.01,-0.16 -0.02,-0.24 0.27,0 0.54,0.01 0.81,0.01 z m 3.56,2.11 c 0.86,0.05 1.72,0.1 2.58,0.13 1.2,0.04 2.39,0.06 3.59,0.07 1.12,0 2.27,0.05 3.39,-0.14 0,0.04 0,0.08 0,0.12 0,0.08 0,0.15 0.01,0.22 -3.19,-0.05 -6.38,-0.16 -9.57,-0.33 0,-0.03 0,-0.05 0,-0.07 z m 8.74,-0.73 c -0.02,-0.26 -0.06,-0.52 -0.09,-0.78 l -0.12,-0.93 c 0.35,0.04 0.7,0.08 1.05,0.12 -0.01,0.39 -0.02,0.78 -0.02,1.18 0,0.29 -0.01,0.59 -0.01,0.88 0,0.02 0,0.05 0,0.07 -0.27,-0.03 -0.53,-0.06 -0.8,-0.07 0,-0.16 0.01,-0.32 -0.01,-0.47 z m -1.73,-1.38 c 0.01,0.08 0.01,0.17 0.02,0.25 -0.09,0.01 -0.18,0.02 -0.27,0.03 -0.23,0.02 -0.47,0.02 -0.7,0.03 0,-0.06 0,-0.12 0,-0.18 v -0.55 c 0.26,0 0.52,-0.01 0.77,0 0.05,0 0.1,0 0.15,0.01 0.01,0.13 0.02,0.27 0.03,0.41 z m -2.48,0.26 c -0.03,-0.2 -0.06,-0.4 -0.09,-0.6 0.28,-0.03 0.57,-0.07 0.86,-0.08 0.16,-0.01 0.31,0 0.47,0 v 0.55 c 0,0.07 0,0.13 0,0.2 -0.04,0 -0.08,0 -0.12,0.01 -0.37,0.01 -0.74,0 -1.1,0.02 -0.01,-0.04 -0.01,-0.07 -0.02,-0.1 z m 7.12,0.11 c -0.27,-0.02 -0.55,-0.02 -0.82,-0.02 -0.29,0 -0.58,0 -0.87,-0.01 0,-0.17 -0.01,-0.34 -0.01,-0.51 0.57,0.06 1.13,0.11 1.7,0.13 0,0 0,0 0,0 z m -9.15,-1.01 c 0,0.02 0.01,0.04 0.01,0.06 -0.13,0.02 -0.25,0.04 -0.38,0.06 -0.22,0.04 -0.17,0.41 0.05,0.38 0.13,-0.01 0.26,-0.03 0.39,-0.04 0.02,0.1 0.03,0.2 0.05,0.3 0.02,0.14 0.04,0.27 0.07,0.41 0.03,0.13 0.04,0.27 0.1,0.39 0.03,0.05 0.12,0.05 0.13,-0.02 0.02,-0.13 -0.02,-0.27 -0.03,-0.4 -0.02,-0.14 -0.04,-0.28 -0.07,-0.42 -0.02,-0.09 -0.03,-0.19 -0.05,-0.28 0.31,-0.03 0.62,-0.05 0.93,-0.09 0.14,-0.02 0.29,-0.03 0.43,-0.04 0.03,0.21 0.05,0.41 0.08,0.62 0,0.02 0.01,0.05 0.01,0.07 -0.28,0.02 -0.57,0.04 -0.85,0.07 -0.22,0.02 -0.23,0.36 0,0.35 0.3,-0.01 0.61,-0.02 0.91,-0.03 0.01,0.07 0.02,0.14 0.03,0.21 0.03,0.11 0.05,0.22 0.08,0.32 0.03,0.13 0.1,0.28 0.09,0.41 0,0.04 0.03,0.07 0.06,0.08 0.15,0.05 0.28,-0.12 0.2,-0.26 -0.03,-0.05 -0.11,-0.02 -0.09,0.04 -0.01,0.01 -0.02,0.02 -0.03,0.03 -0.01,-0.1 0,-0.21 0,-0.3 -0.01,-0.12 -0.01,-0.24 -0.02,-0.36 0,-0.06 -0.02,-0.13 -0.02,-0.19 0.37,-0.02 0.73,-0.08 1.1,-0.11 0.03,0 0.06,0 0.09,-0.01 0,0.11 0.01,0.21 0.05,0.31 0.03,0.07 0.14,0.07 0.17,0 0.04,-0.1 0.05,-0.22 0.05,-0.33 0.26,-0.02 0.53,-0.05 0.79,-0.05 0.07,0 0.14,0 0.2,0 0.01,0.14 0.01,0.29 0.08,0.4 0.05,0.08 0.19,0.1 0.23,0 0.06,-0.13 0.04,-0.27 0.03,-0.4 0.19,0 0.37,-0.02 0.56,-0.06 0.18,-0.04 0.12,-0.28 -0.04,-0.3 -0.18,-0.02 -0.36,-0.01 -0.54,0.01 -0.01,-0.07 -0.01,-0.14 -0.02,-0.22 -0.01,-0.13 -0.02,-0.27 -0.03,-0.4 0.09,0 0.19,0.01 0.28,0.01 0.2,0.01 0.4,0.02 0.6,0 0.04,0.33 0.08,0.65 0.12,0.98 0.03,0.26 0.06,0.51 0.1,0.76 0.02,0.12 0.04,0.24 0.07,0.35 0.01,0.04 0.03,0.09 0.03,0.13 -0.82,-0.02 -1.65,0.01 -2.47,0.01 -0.98,0 -1.96,-0.03 -2.93,-0.06 0.02,-0.03 0.04,-0.05 0.06,-0.07 0.02,-0.02 0.01,-0.06 -0.01,-0.08 -0.02,-0.02 -0.06,-0.03 -0.08,-0.01 -0.08,0.05 -0.14,0.11 -0.22,0.17 -0.11,0 -0.23,0 -0.34,-0.01 -0.84,-0.03 -1.68,-0.08 -2.52,-0.12 0,-0.03 0,-0.06 0,-0.09 -0.02,-0.27 -0.04,-0.54 -0.06,-0.81 0.28,0.01 0.56,0.03 0.84,0.04 0.2,0.01 0.41,0.02 0.62,0.02 0,0.07 0,0.14 0,0.21 0.01,0.17 0.26,0.17 0.27,0 0,-0.07 0,-0.15 0,-0.22 0.05,-0.01 0.11,0 0.17,-0.01 0.15,-0.03 0.12,-0.24 0,-0.28 -0.05,-0.02 -0.11,-0.02 -0.17,-0.04 0,-0.37 0.01,-0.75 0,-1.12 0.28,0.02 0.56,0.03 0.84,0.03 z m 0.2,0.01 c 0.06,0 0.12,0 0.17,0 -0.06,0.01 -0.11,0.02 -0.17,0.03 0,-0.01 0,-0.02 0,-0.03 z m -1.32,-0.02 c -0.01,0.36 0,0.71 0,1.07 -0.19,-0.03 -0.38,-0.05 -0.55,-0.07 -0.31,-0.03 -0.63,-0.06 -0.94,-0.08 -0.03,-0.32 -0.05,-0.63 -0.08,-0.95 0.52,0 1.05,0.02 1.57,0.03 z m -1.89,-0.04 c 0.01,0.08 0.01,0.17 0.02,0.25 -0.29,-0.08 -0.6,-0.08 -0.91,-0.08 0,-0.06 -0.01,-0.12 -0.01,-0.19 0.29,0.01 0.6,0.01 0.9,0.02 z m -1.17,-0.02 c 0,0.06 0.01,0.13 0.01,0.19 -0.25,0 -0.5,-0.01 -0.75,0 0,-0.07 -0.01,-0.13 -0.01,-0.2 0.24,0 0.49,0 0.75,0.01 z m -1.04,-0.02 c 0,0.07 0,0.14 0.01,0.2 -0.17,0 -0.35,0.01 -0.52,0.01 0,-0.07 0,-0.15 0,-0.22 0.17,0 0.34,0 0.51,0.01 z m -0.84,0.21 c -0.28,0 -0.56,0.01 -0.84,0.01 -0.01,-0.09 -0.01,-0.17 -0.02,-0.26 0.29,0.01 0.57,0.01 0.86,0.02 z m -1.18,-0.25 0.01,0.27 c 0,0 0,0 0,0 -0.25,0.01 -0.25,0.39 0,0.4 0.01,0 0.02,0 0.02,0 l 0.01,0.25 c 0,0 0,0.01 0,0.01 -0.21,0 -0.42,0 -0.64,0 -0.04,-0.32 -0.09,-0.63 -0.13,-0.94 0.25,0 0.49,0 0.73,0.01 z m -1.12,-0.02 c 0.04,0.32 0.08,0.65 0.13,0.97 -0.15,0.01 -0.29,0.03 -0.43,0.05 -0.02,-0.34 -0.04,-0.69 -0.07,-1.03 0.12,0 0.24,0 0.37,0.01 z m -0.21,2.38 c -0.02,-0.32 -0.05,-0.64 -0.07,-0.96 0.16,0.01 0.32,0.03 0.48,0.03 0.06,0.38 0.13,0.76 0.2,1.15 -0.2,-0.02 -0.39,-0.03 -0.59,-0.05 0,-0.06 -0.01,-0.12 -0.02,-0.17 z m 46.9,-1.09 c -0.99,0.15 -1.98,0.35 -2.97,0.49 -0.01,-0.05 -0.02,-0.09 -0.03,-0.14 l -0.15,-0.77 c -0.05,-0.26 -0.1,-0.52 -0.15,-0.78 0.63,-0.49 0.45,-1.6 -0.56,-1.71 -1.42,-0.15 -2.9,-0.05 -4.33,-0.06 -1.36,0 -2.73,0 -4.09,0 -2.81,0.01 -5.61,0 -8.42,0.02 -5.61,0.04 -11.22,0.04 -16.83,0.04 -3.21,0 -6.41,0.04 -9.62,0.11 -0.13,0 -0.24,0.03 -0.33,0.08 -0.27,-0.17 -0.67,-0.11 -0.75,0.26 -0.08,0.41 -0.11,0.79 -0.1,1.21 0.01,0.4 0.02,0.81 0.03,1.21 0.01,0.39 0.02,0.78 0.03,1.17 0,0 0,0 0,0 -1.45,-0.13 -2.89,-0.26 -4.34,-0.37 0.05,-0.57 0.03,-1.15 0.02,-1.72 -0.01,-0.63 -0.01,-1.27 -0.02,-1.9 -0.01,-1.03 -0.03,-2.06 -0.06,-3.09 7.87,0.12 15.76,-0.12 23.63,-0.22 l 25.31,-0.32 c 1.37,-0.02 2.74,-0.03 4.1,-0.05 -0.16,-0.53 -0.29,-1.07 -0.39,-1.62 0.18,0.66 0.35,1.31 0.53,1.96 0.53,1.98 1.06,3.95 1.59,5.93 -0.7,0.02 -1.39,0.16 -2.1,0.27 z m -54.79,-6.13 c 0.12,0.09 0.26,0.16 0.45,0.17 0.06,0 0.12,0 0.18,0 -0.03,0.99 -0.05,1.98 -0.06,2.97 -0.12,-0.01 -0.24,0 -0.36,0 0.02,-0.57 0.03,-1.13 0.04,-1.7 0.1,-0.05 0.07,-0.17 0.01,-0.24 0,-0.22 0.01,-0.44 0.02,-0.66 0,-0.24 -0.36,-0.24 -0.38,0 -0.01,0.19 -0.02,0.37 -0.02,0.56 -0.03,0 -0.07,-0.01 -0.1,-0.01 0.08,-0.37 0.15,-0.73 0.22,-1.09 z m -1.12,5.66 c 0.09,-0.01 0.19,-0.01 0.28,-0.02 0.01,0.08 0.02,0.16 0.04,0.24 -0.01,0.01 -0.03,0.03 -0.04,0.04 -0.12,0.09 -0.25,0.16 -0.37,0.23 0.03,-0.16 0.06,-0.32 0.09,-0.49 z m -1.34,8.04 c -0.04,0 -0.07,-0.01 -0.11,-0.01 0.03,-0.27 0.06,-0.53 0.1,-0.8 -0.01,0.27 0,0.54 0.01,0.81 z m 0.22,1.68 c 0,0.2 0,0.41 0,0.61 0,0.4 0,0.81 0.1,1.19 0.02,0.08 0.14,0.08 0.16,0 0.09,-0.39 0.1,-0.8 0.1,-1.19 v -0.57 c 1.48,0.18 2.96,0.34 4.45,0.48 0,0.3 0,0.6 0,0.89 0,0.18 0,0.36 0.01,0.54 0.01,0.18 0,0.36 0.05,0.53 0.03,0.11 0.19,0.11 0.23,0 0.05,-0.17 0.04,-0.36 0.05,-0.53 0.01,-0.18 0.01,-0.36 0.01,-0.54 0,-0.29 0,-0.58 0,-0.87 1.13,0.1 2.26,0.19 3.4,0.27 0,0.51 0,1.03 0,1.54 0,0.56 -0.06,1.17 0.08,1.72 0.02,0.08 0.15,0.08 0.17,0 0.14,-0.55 0.08,-1.16 0.08,-1.72 0,-0.51 0,-1.02 0,-1.53 1.24,0.08 2.48,0.14 3.72,0.19 0.01,0.29 0.03,0.57 0.04,0.86 0.02,0.42 0.04,0.85 0.14,1.26 0.02,0.07 0.14,0.08 0.16,0 0.06,-0.42 0.04,-0.84 0.02,-1.26 -0.01,-0.28 -0.03,-0.56 -0.04,-0.84 0.46,0.02 0.93,0.02 1.39,0.04 0.03,0.26 0.05,0.52 0.08,0.78 0.02,0.18 0.04,0.37 0.06,0.55 0.01,0.1 0.03,0.19 0.04,0.29 0.01,0.1 0.01,0.2 0.1,0.27 0.09,0.07 0.18,0.06 0.25,-0.03 0.07,-0.09 0.04,-0.19 0.03,-0.29 -0.01,-0.1 -0.02,-0.19 -0.03,-0.29 -0.02,-0.18 -0.05,-0.37 -0.08,-0.55 -0.03,-0.24 -0.07,-0.48 -0.1,-0.72 0.61,0.02 1.21,0.04 1.82,0.05 0,0.2 0,0.4 0,0.61 0,0.1 0,0.2 0,0.3 0,0.05 0,0.1 0,0.14 0,0.05 0.02,0.11 0.03,0.16 0.01,0.06 0.12,0.06 0.12,0 0.01,-0.05 0.02,-0.1 0.03,-0.15 0.01,-0.05 0,-0.1 0,-0.16 0,-0.1 0,-0.2 0,-0.3 0,-0.2 0,-0.4 0,-0.6 0.26,0.01 0.53,0.02 0.79,0.02 0.13,0 0.27,0 0.4,0 l -0.01,0.7 c 0,0.16 0,0.32 0,0.48 0,0.18 0.04,0.34 0.05,0.52 0.02,0.17 0.25,0.17 0.27,0 0.02,-0.17 0.05,-0.33 0.05,-0.5 0,-0.17 0.01,-0.33 0,-0.5 l -0.01,-0.7 c 0.6,0.01 1.2,0.01 1.79,0.01 0,0.19 0,0.38 0,0.57 0,0.12 0,0.25 0.01,0.37 0.01,0.12 0,0.26 0.04,0.37 0.04,0.1 0.17,0.1 0.2,0 0.04,-0.11 0.03,-0.25 0.04,-0.37 0.01,-0.12 0.01,-0.25 0.01,-0.37 0,-0.19 0,-0.38 0,-0.56 0.53,0 1.05,0.01 1.58,0.01 -0.01,0.02 -0.03,0.04 -0.03,0.07 v 0.69 c 0,0.11 0,0.23 0,0.34 0,0.06 0,0.11 0.01,0.17 0,0.07 0.01,0.13 0.04,0.19 0.04,0.08 0.18,0.08 0.22,0 0.03,-0.07 0.04,-0.12 0.04,-0.19 0,-0.05 0,-0.1 0.01,-0.16 0,-0.12 0,-0.23 0,-0.35 v -0.69 c 0,-0.03 -0.02,-0.05 -0.03,-0.07 0.94,0 1.88,-0.01 2.82,-0.01 0.01,0.06 0.01,0.11 0.02,0.17 0.01,0.12 0.02,0.25 0.04,0.37 0.01,0.06 0.01,0.11 0.02,0.17 0.01,0.07 0.03,0.14 0.06,0.2 0.03,0.1 0.21,0.12 0.23,0 0.01,-0.07 0.03,-0.14 0.03,-0.2 0,-0.06 -0.01,-0.12 -0.01,-0.17 -0.01,-0.12 -0.02,-0.25 -0.03,-0.37 0,-0.06 -0.01,-0.11 -0.01,-0.17 0.58,0 1.17,-0.01 1.75,-0.02 0,0.01 0,0.01 0,0.02 0.04,0.25 0.09,0.5 0.13,0.75 0.04,0.24 0.07,0.51 0.2,0.73 0.05,0.08 0.19,0.07 0.21,-0.03 0.05,-0.26 -0.03,-0.53 -0.07,-0.78 l -0.13,-0.69 c 0.46,-0.01 0.93,-0.01 1.39,-0.02 0.02,0.17 0.05,0.34 0.09,0.51 0.04,0.2 0.08,0.4 0.13,0.6 l 0.13,0.6 c 0.05,0.21 0.09,0.43 0.19,0.63 0.08,0.16 0.32,0.08 0.33,-0.09 0.01,-0.21 -0.04,-0.41 -0.09,-0.61 -0.05,-0.21 -0.09,-0.41 -0.14,-0.62 -0.04,-0.2 -0.09,-0.4 -0.14,-0.6 -0.03,-0.14 -0.07,-0.29 -0.12,-0.43 1.7,-0.03 3.41,-0.07 5.11,-0.11 -0.03,0.03 -0.05,0.07 -0.05,0.11 0,0.11 0,0.23 0.01,0.34 0,0.06 0,0.11 0,0.17 0,0.06 0.02,0.13 0.03,0.19 0.03,0.12 0.22,0.12 0.25,0 0.01,-0.06 0.03,-0.13 0.03,-0.19 0,-0.06 0,-0.11 0,-0.17 0,-0.11 0,-0.23 0.01,-0.34 0,-0.04 -0.02,-0.09 -0.05,-0.12 1.12,-0.03 2.23,-0.06 3.35,-0.1 0.01,0.07 0.01,0.14 0.02,0.21 0,0.03 0.01,0.06 0.03,0.08 0.02,0.02 0.05,0.04 0.08,0.03 0.07,0 0.11,-0.05 0.12,-0.12 0.01,-0.07 0.01,-0.15 0.02,-0.22 0.5,-0.02 1.01,-0.03 1.51,-0.04 0.38,-0.01 0.76,-0.03 1.14,-0.05 0.01,0.15 0.02,0.31 0.03,0.46 0.02,0.31 0.05,0.63 0.13,0.93 0.02,0.07 0.13,0.08 0.15,0 0.02,-0.15 0.01,-0.31 0.03,-0.46 0.02,-0.16 -0.01,-0.32 -0.02,-0.48 -0.01,-0.16 -0.02,-0.32 -0.03,-0.48 0.73,-0.03 1.46,-0.06 2.18,-0.09 0.01,0.05 0.01,0.1 0.02,0.16 0.01,0.1 0.02,0.2 0.04,0.3 0.05,0.17 0.07,0.36 0.13,0.53 0.05,0.12 0.2,0.1 0.22,-0.03 0.02,-0.18 -0.01,-0.35 0,-0.53 0,-0.09 -0.02,-0.18 -0.03,-0.26 -0.01,-0.06 -0.01,-0.11 -0.02,-0.17 0.6,-0.03 1.19,-0.05 1.79,-0.08 -0.05,0.01 -0.09,0.04 -0.09,0.11 0,0.33 0.01,0.66 0.02,1 0.01,0.33 0,0.67 0.04,1 0.01,0.08 0.12,0.08 0.13,0 0.04,-0.33 0.03,-0.67 0.04,-1 0.01,-0.33 0.02,-0.66 0.02,-1 0,-0.07 -0.05,-0.1 -0.1,-0.11 1.27,-0.07 2.53,-0.16 3.79,-0.25 0,0.24 0,0.48 0,0.71 0,0.15 0,0.29 0,0.44 0,0.15 0,0.3 0.03,0.44 0.03,0.13 0.24,0.13 0.27,0 0.04,-0.15 0.03,-0.29 0.03,-0.44 0,-0.15 0,-0.29 0,-0.44 0,-0.25 0,-0.49 0,-0.74 0.47,-0.04 0.95,-0.06 1.43,-0.1 0,0.26 0,0.52 0,0.77 0,0.16 0,0.32 0,0.47 0,0.15 -0.01,0.32 0.03,0.47 0.03,0.1 0.17,0.1 0.2,0 0.04,-0.15 0.03,-0.31 0.03,-0.47 0,-0.16 0,-0.32 0,-0.47 0,-0.27 0,-0.53 0,-0.8 0.76,-0.07 1.53,-0.16 2.29,-0.24 -0.07,0.28 -0.12,0.57 -0.11,0.86 0,0.18 0.02,0.37 0.05,0.55 0.02,0.08 0.05,0.16 0.08,0.24 0.03,0.09 0.07,0.18 0.13,0.26 0.06,0.07 0.2,0.04 0.22,-0.06 0.01,-0.09 0,-0.16 0,-0.25 -0.01,-0.08 0,-0.17 -0.01,-0.25 -0.02,-0.16 -0.03,-0.33 -0.03,-0.49 0,-0.3 0.03,-0.6 0.09,-0.9 0.33,-0.03 0.66,-0.06 0.99,-0.1 l 0.04,0.78 c 0.01,0.16 0.02,0.32 0.03,0.47 0.01,0.16 0.01,0.32 0.06,0.47 0.04,0.11 0.22,0.13 0.25,0 0.03,-0.16 0.02,-0.31 0.01,-0.47 -0.01,-0.16 -0.02,-0.32 -0.03,-0.47 -0.02,-0.27 -0.04,-0.54 -0.05,-0.82 0.31,-0.04 0.63,-0.06 0.95,-0.1 -0.03,0.71 -0.05,1.43 -0.07,2.14 -0.02,0.83 -0.06,1.67 0.08,2.5 0.01,0.07 0.12,0.07 0.14,0 0.18,-0.82 0.17,-1.66 0.19,-2.5 0.01,-0.73 0.02,-1.46 0.02,-2.19 0.26,-0.03 0.51,-0.08 0.77,-0.12 0.02,0.27 0.03,0.54 0.05,0.81 0.01,0.18 0.02,0.36 0.04,0.54 0.01,0.17 0.03,0.37 0.09,0.53 0.04,0.09 0.17,0.11 0.2,0 0.05,-0.17 0.04,-0.36 0.03,-0.53 -0.01,-0.18 -0.02,-0.36 -0.03,-0.54 -0.02,-0.29 -0.03,-0.58 -0.05,-0.86 0.65,-0.09 1.3,-0.19 1.95,-0.29 0,0.59 -0.01,1.18 -0.01,1.77 0,0.33 0,0.66 -0.01,0.98 0,0.3 -0.02,0.65 0.05,0.94 0.03,0.1 0.18,0.1 0.21,0 0.08,-0.29 0.06,-0.64 0.05,-0.94 0,-0.33 0,-0.66 -0.01,-0.98 0,-0.61 -0.01,-1.21 -0.01,-1.82 0.34,-0.05 0.69,-0.1 1.03,-0.15 0,0 0,0 0,0 0,0 0,0 0,0 -0.02,0.31 -0.04,0.62 -0.07,0.93 -0.02,0.31 -0.07,0.62 -0.04,0.93 0,0.06 0.05,0.09 0.1,0.11 -0.03,0.44 -0.09,0.89 -0.17,1.33 -0.07,0.03 -0.12,0.08 -0.12,0.16 l 0.01,0.45 c -0.18,0.78 -0.44,1.54 -0.75,2.28 -0.02,-0.16 -0.04,-0.33 -0.05,-0.49 -0.01,-0.38 0.01,-0.75 0.09,-1.12 0.05,-0.24 -0.3,-0.33 -0.36,-0.1 -0.11,0.39 -0.19,0.79 -0.2,1.2 0,0.2 0,0.4 0.03,0.59 0.02,0.17 0.04,0.42 0.16,0.56 -0.26,0.02 -0.53,0.04 -0.79,0.07 -0.02,-0.04 -0.04,-0.08 -0.06,-0.11 -0.04,-0.07 -0.09,-0.15 -0.12,-0.23 -0.07,-0.15 -0.12,-0.31 -0.15,-0.47 -0.06,-0.32 -0.04,-0.66 0.07,-0.97 0.03,-0.1 -0.04,-0.21 -0.13,-0.23 -0.11,-0.03 -0.2,0.04 -0.23,0.13 -0.14,0.37 -0.17,0.78 -0.11,1.17 0.03,0.19 0.09,0.38 0.17,0.56 0.02,0.06 0.06,0.13 0.1,0.2 -0.5,0.07 -1,0.14 -1.49,0.23 -0.04,-0.16 -0.07,-0.31 -0.09,-0.47 -0.05,-0.4 -0.05,-0.81 0.01,-1.21 0.01,-0.09 -0.02,-0.18 -0.12,-0.21 -0.08,-0.02 -0.2,0.03 -0.21,0.12 -0.06,0.44 -0.08,0.88 -0.02,1.32 0.02,0.17 0.06,0.34 0.1,0.51 -0.38,0.07 -0.76,0.13 -1.14,0.2 -0.01,-0.1 -0.01,-0.2 -0.02,-0.3 -0.02,-0.18 -0.05,-0.37 -0.07,-0.55 -0.05,-0.38 -0.1,-0.75 -0.14,-1.13 -0.01,-0.09 -0.06,-0.16 -0.16,-0.16 -0.08,0 -0.17,0.07 -0.16,0.16 0.04,0.38 0.09,0.77 0.13,1.15 0.02,0.19 0.04,0.38 0.07,0.58 0.01,0.11 0.04,0.21 0.05,0.31 -0.29,0.05 -0.59,0.11 -0.88,0.15 -0.04,0.01 -0.07,0.01 -0.11,0.01 0,-0.02 0.01,-0.04 0.01,-0.06 0.01,-0.1 0.02,-0.2 0.02,-0.3 0,-0.22 0,-0.45 0,-0.67 v -1.31 c 0,-0.22 -0.34,-0.22 -0.34,0 v 1.96 c 0,0.11 0.01,0.21 0.02,0.32 0,0.03 0.01,0.06 0.02,0.09 -0.68,0.1 -1.37,0.17 -2.05,0.26 -0.01,-0.14 -0.02,-0.27 -0.03,-0.41 -0.02,-0.3 -0.05,-0.6 -0.07,-0.9 -0.01,-0.17 -0.28,-0.18 -0.27,0 0.02,0.3 0.03,0.6 0.05,0.9 0.01,0.15 0.02,0.29 0.03,0.44 0,0 0,0 0,0.01 -0.47,0.06 -0.93,0.12 -1.4,0.18 0,-0.01 -0.01,-0.02 -0.02,-0.03 -0.05,-0.13 -0.08,-0.26 -0.1,-0.39 -0.04,-0.26 -0.03,-0.53 0.04,-0.79 0.05,-0.21 -0.27,-0.3 -0.32,-0.09 -0.08,0.31 -0.09,0.63 -0.04,0.94 0.02,0.14 0.06,0.27 0.11,0.4 -0.45,0.05 -0.9,0.12 -1.35,0.17 -0.08,0.01 -0.16,0.01 -0.24,0.02 0.04,-0.44 0.06,-0.89 0.08,-1.33 0.03,-0.72 0.03,-1.45 0.05,-2.17 0,-0.21 -0.32,-0.21 -0.32,0 -0.03,0.72 -0.07,1.45 -0.08,2.17 -0.01,0.45 -0.02,0.9 0,1.35 -0.56,0.06 -1.12,0.1 -1.68,0.16 0.01,-0.08 0.02,-0.17 0.02,-0.25 0.02,-0.26 0.05,-0.52 0.07,-0.77 0.01,-0.1 -0.09,-0.18 -0.18,-0.18 -0.11,0 -0.18,0.08 -0.18,0.18 -0.02,0.25 -0.05,0.51 -0.07,0.76 -0.01,0.1 -0.02,0.2 -0.02,0.3 -1.47,0.14 -2.93,0.27 -4.4,0.38 -0.02,-0.17 -0.04,-0.34 -0.06,-0.51 -0.01,-0.09 -0.08,-0.19 -0.18,-0.18 -0.09,0 -0.19,0.08 -0.18,0.18 0.02,0.18 0.04,0.36 0.06,0.53 -0.32,0.02 -0.64,0.04 -0.96,0.06 0,-0.02 0,-0.04 -0.01,-0.06 0,-0.03 -0.01,-0.05 -0.03,-0.08 -0.02,-0.02 -0.05,-0.03 -0.08,-0.03 -0.03,0 -0.06,0.01 -0.08,0.03 -0.02,0.02 -0.03,0.05 -0.03,0.08 0,0.03 0,0.05 -0.01,0.08 -1.06,0.07 -2.12,0.15 -3.18,0.21 -0.17,0.01 -0.33,0.01 -0.5,0.02 -0.01,-0.03 -0.02,-0.06 -0.03,-0.08 -0.01,-0.04 -0.04,-0.08 -0.08,-0.1 -0.04,-0.02 -0.09,-0.03 -0.13,-0.02 -0.04,0.01 -0.08,0.04 -0.1,0.08 -0.02,0.04 -0.02,0.08 -0.02,0.13 0,0 0,0.01 0,0.01 -0.92,0.04 -1.84,0.07 -2.76,0.1 0,0 0,-0.01 0,-0.01 0,-0.05 0.01,-0.09 0.01,-0.14 0,-0.04 -0.02,-0.08 -0.05,-0.11 -0.03,-0.03 -0.07,-0.05 -0.11,-0.05 -0.04,0 -0.08,0.02 -0.11,0.05 -0.03,0.03 -0.05,0.07 -0.05,0.11 0,0.05 0.01,0.09 0.01,0.14 0,0.01 0,0.02 0,0.02 -0.66,0.02 -1.31,0.06 -1.96,0.07 0,-0.17 0,-0.33 0,-0.5 0,-0.19 -0.3,-0.19 -0.3,0 0,0.17 0,0.33 0,0.5 -0.41,0.01 -0.83,0 -1.24,0.01 0.02,-0.61 0.02,-1.23 0.03,-1.84 0,-0.13 -0.2,-0.13 -0.2,0 0,0.61 0.01,1.23 0.03,1.84 -0.63,0.01 -1.26,0.01 -1.89,0.01 0,-0.15 0.01,-0.29 0.01,-0.44 0,-0.34 0,-0.68 0,-1.02 0,-0.22 -0.33,-0.22 -0.34,0 0,0.34 0,0.68 0,1.02 0,0.15 0,0.3 0.01,0.44 -0.7,0 -1.4,0.02 -2.1,0.01 0,-0.58 0,-1.16 0,-1.74 0,-0.17 -0.27,-0.17 -0.27,0 0,0.58 0,1.16 0,1.74 -0.4,0 -0.79,-0.02 -1.18,-0.02 0.03,-0.28 -0.02,-0.57 -0.04,-0.85 -0.02,-0.29 -0.05,-0.58 -0.07,-0.86 -0.01,-0.09 -0.07,-0.17 -0.17,-0.17 -0.09,0 -0.17,0.08 -0.17,0.17 0.02,0.29 0.04,0.59 0.06,0.88 0.02,0.27 0.02,0.56 0.09,0.82 -0.38,-0.01 -0.77,-0.02 -1.15,-0.02 0,-0.09 0,-0.18 0,-0.26 0,-0.34 0,-0.68 0,-1.02 0,-0.2 -0.31,-0.2 -0.31,0 0,0.34 0,0.68 0,1.02 0,0.09 0,0.17 0,0.26 -0.41,-0.01 -0.82,-0.01 -1.23,-0.03 -0.01,-0.13 -0.03,-0.27 -0.05,-0.4 -0.03,-0.28 -0.07,-0.57 -0.1,-0.85 -0.07,-0.58 -0.13,-1.15 -0.2,-1.73 -0.02,-0.18 -0.3,-0.18 -0.28,0 0.06,0.59 0.12,1.18 0.18,1.76 0.03,0.29 0.06,0.59 0.09,0.88 0.01,0.11 0.02,0.22 0.04,0.33 -0.67,-0.02 -1.35,-0.04 -2.02,-0.07 0,-0.03 0,-0.06 0,-0.1 v -0.68 c 0,-0.17 -0.26,-0.17 -0.26,0 v 0.68 c 0,0.03 0,0.06 0,0.08 -0.36,-0.01 -0.71,-0.04 -1.07,-0.05 0,-0.02 0,-0.03 0,-0.05 0,-0.16 0,-0.33 0,-0.49 0,-0.32 0,-0.65 0,-0.97 0,-0.17 -0.26,-0.17 -0.26,0 0,0.32 0,0.64 0,0.97 0,0.16 0,0.32 0,0.47 0,0.02 0,0.04 0,0.05 -0.51,-0.02 -1.02,-0.05 -1.54,-0.08 0.03,-0.02 0.06,-0.02 0.07,-0.05 0.03,-0.13 0.03,-0.25 0.04,-0.38 0,-0.12 0.01,-0.25 0.01,-0.37 0,-0.25 0,-0.5 0,-0.75 0,-0.23 -0.35,-0.23 -0.35,0 0,0.25 0,0.5 0,0.75 0,0.12 0.01,0.25 0.01,0.37 0,0.13 0.01,0.25 0.04,0.38 0.01,0.03 0.04,0.03 0.06,0.05 -0.56,-0.03 -1.12,-0.05 -1.68,-0.08 -0.18,-0.01 -0.35,-0.03 -0.53,-0.04 0.04,-0.22 0.02,-0.45 0.02,-0.68 0,-0.25 0,-0.5 0,-0.75 0,-0.23 -0.36,-0.23 -0.35,0 0,0.25 0.01,0.5 0.01,0.75 0,0.21 -0.01,0.44 0.03,0.65 -0.39,-0.03 -0.79,-0.06 -1.18,-0.09 0,-0.02 0,-0.04 0,-0.06 -0.01,-0.12 -0.02,-0.25 -0.03,-0.37 -0.02,-0.25 -0.04,-0.5 -0.06,-0.75 -0.01,-0.09 -0.07,-0.16 -0.16,-0.16 -0.08,0 -0.17,0.08 -0.16,0.16 0.02,0.25 0.04,0.5 0.06,0.75 0.01,0.12 0.02,0.25 0.03,0.37 0,0.01 0,0.02 0,0.03 -0.52,-0.04 -1.03,-0.08 -1.55,-0.13 0.01,-0.16 0.02,-0.33 0.02,-0.49 0,-0.06 -0.05,-0.11 -0.11,-0.11 -0.06,0 -0.11,0.05 -0.11,0.11 0,0.16 0.01,0.32 0.02,0.48 -0.52,-0.05 -1.03,-0.09 -1.55,-0.14 0.02,-0.03 0.04,-0.06 0.03,-0.11 -0.1,-0.33 -0.21,-0.67 -0.25,-1.01 -0.04,-0.35 -0.04,-0.7 0.01,-1.04 0.01,-0.08 -0.02,-0.16 -0.1,-0.18 -0.07,-0.02 -0.17,0.02 -0.18,0.1 -0.11,0.73 -0.06,1.56 0.3,2.22 -0.49,-0.05 -0.98,-0.09 -1.47,-0.13 0.01,-0.01 0.03,-0.01 0.04,-0.03 0.04,-0.14 0.03,-0.28 0.04,-0.43 0,-0.07 0.01,-0.15 0.01,-0.22 0,-0.07 -0.01,-0.15 -0.01,-0.22 -0.02,-0.29 -0.04,-0.59 -0.06,-0.88 -0.01,-0.1 -0.08,-0.18 -0.18,-0.18 -0.09,0 -0.19,0.08 -0.18,0.18 0.02,0.29 0.04,0.59 0.06,0.88 0.01,0.15 0.03,0.3 0.06,0.45 0.03,0.15 0.04,0.28 0.09,0.42 0,0.01 0.02,0.01 0.03,0.02 -0.7,-0.06 -1.41,-0.13 -2.11,-0.19 -0.01,-0.13 -0.03,-0.25 -0.03,-0.38 0,-0.26 0.04,-0.52 0.13,-0.77 0.03,-0.08 -0.03,-0.17 -0.11,-0.19 -0.09,-0.02 -0.16,0.03 -0.19,0.11 -0.1,0.28 -0.15,0.57 -0.14,0.87 0,0.11 0.02,0.22 0.04,0.33 -0.72,-0.06 -1.44,-0.11 -2.17,-0.16 -0.06,-0.12 -0.13,-0.24 -0.19,-0.37 0,-0.12 -0.01,-0.24 -0.01,-0.35 0,-0.32 0,-0.63 0,-0.95 0,-0.62 -0.01,-1.24 -0.01,-1.87 0,-0.21 -0.32,-0.21 -0.32,0 0,0.62 -0.01,1.24 -0.01,1.87 0,0.17 0,0.34 0,0.52 -0.18,-0.44 -0.35,-0.88 -0.48,-1.34 -0.46,-1.55 -0.57,-3.15 -0.5,-4.75 0.04,0.11 0.19,0.13 0.35,0.15 z m 11.41,9.91 c 3.94,0.29 7.89,0.46 11.85,0.52 7.91,0.12 15.82,-0.22 23.69,-0.99 2.18,-0.21 4.36,-0.47 6.53,-0.73 1.14,-0.13 2.28,-0.27 3.41,-0.43 0.46,-0.06 0.92,-0.12 1.38,-0.19 -0.67,1.03 -1.42,2 -2.22,2.94 -0.05,-0.1 -0.13,-0.18 -0.28,-0.2 -1.63,-0.23 -3.34,-0.07 -4.98,0.1 -1.66,0.17 -3.32,0.32 -4.98,0.46 -3.36,0.28 -6.72,0.51 -10.09,0.67 -6.66,0.33 -13.32,0.38 -19.98,0.32 -1.9,-0.02 -3.81,-0.05 -5.71,-0.11 -0.95,-0.03 -1.9,-0.08 -2.85,-0.08 -0.74,0.01 -1.51,-0.03 -2.24,0.12 -0.98,-1.01 -1.91,-2.06 -2.71,-3.21 -0.04,-0.05 -0.07,-0.1 -0.1,-0.16 3.07,0.48 6.19,0.74 9.28,0.97 z m 65.73,-6.07 c -0.16,-0.02 -0.3,-0.03 -0.46,-0.03 h -1.27 c -0.12,-0.35 -0.23,-0.7 -0.35,-1.05 0.29,-0.02 0.59,-0.05 0.88,-0.07 0.2,-0.02 0.41,-0.03 0.61,-0.05 0.2,-0.02 0.45,-0.01 0.62,-0.11 0.13,-0.08 0.09,-0.25 -0.04,-0.3 -0.18,-0.07 -0.42,-0.01 -0.61,0 -0.2,0.01 -0.41,0.03 -0.61,0.05 -0.33,0.03 -0.66,0.06 -0.99,0.09 -0.29,-0.87 -0.57,-1.73 -0.86,-2.6 0.43,-0.22 0.82,-0.51 1.17,-0.84 0.07,0.03 0.14,0.06 0.22,0.08 0.1,0.04 0.21,0.08 0.31,0.11 0.05,0.02 0.1,0.04 0.16,0.06 0.08,0.03 0.15,0.03 0.23,0 0.11,-0.03 0.2,-0.19 0.12,-0.29 -0.06,-0.07 -0.11,-0.12 -0.2,-0.15 -0.05,-0.02 -0.11,-0.03 -0.16,-0.05 -0.11,-0.03 -0.21,-0.07 -0.32,-0.1 -0.01,0 -0.01,0 -0.02,-0.01 0.16,-0.18 0.31,-0.37 0.45,-0.57 0.14,-0.21 0.28,-0.44 0.4,-0.68 0.12,0.02 0.25,0.04 0.37,0.06 0.22,0.04 0.44,0.07 0.66,0.1 0.23,0.03 0.45,0.08 0.68,0.05 0.13,-0.02 0.15,-0.23 0.04,-0.29 -0.2,-0.09 -0.42,-0.11 -0.64,-0.15 -0.22,-0.04 -0.44,-0.07 -0.66,-0.1 l -0.31,-0.04 c 0.04,-0.11 0.1,-0.22 0.13,-0.34 0.07,-0.25 0.08,-0.49 0.07,-0.74 0,0.01 0.01,0.01 0.01,0.02 0,0 0.01,0.01 0.01,0.01 0.01,0.01 0.01,0.02 0.02,0.02 0.02,0.01 0.03,0 0.05,0.01 0.02,0.01 0.03,0.02 0.05,0.02 0.28,0.04 0.56,0.07 0.84,0.11 0.14,0.02 0.27,0.03 0.41,0.05 0.07,0.01 0.15,0.02 0.22,0.03 0.08,0.01 0.16,0.02 0.22,-0.05 0.04,-0.05 0.05,-0.11 0.02,-0.17 -0.04,-0.09 -0.13,-0.1 -0.21,-0.11 -0.07,-0.01 -0.15,-0.02 -0.22,-0.03 -0.14,-0.02 -0.28,-0.03 -0.42,-0.05 -0.17,-0.02 -0.34,-0.04 -0.51,-0.06 0.13,-0.09 0.27,-0.16 0.42,-0.2 0.13,-0.03 0.26,-0.03 0.39,-0.02 0.13,0.01 0.26,0.07 0.39,0.09 0.13,0.02 0.24,-0.12 0.13,-0.23 -0.13,-0.13 -0.31,-0.17 -0.49,-0.19 -0.17,-0.02 -0.34,-0.01 -0.51,0.03 -0.34,0.07 -0.63,0.27 -0.83,0.54 -0.01,-0.12 -0.04,-0.23 -0.07,-0.35 0.03,-0.03 0.06,-0.06 0.09,-0.1 0.06,-0.11 0.09,-0.24 0.1,-0.37 0.69,0.14 1.47,0.1 2.14,0.11 0.91,0.02 1.82,0.04 2.74,0.06 0.23,0.01 0.66,-0.04 1.04,-0.01 -0.37,0.32 -0.69,0.73 -1,1.09 -0.48,0.55 -0.95,1.11 -1.41,1.67 -0.73,0.89 -1.47,1.78 -2.2,2.67 -0.01,0 -0.01,0 -0.02,0 -0.34,-0.04 -0.69,-0.08 -1.03,-0.12 -0.7,-0.08 -1.39,-0.1 -2.09,-0.15 -0.26,-0.02 -0.49,0.22 -0.52,0.46 -0.03,0.26 0.12,0.51 0.38,0.58 0.67,0.2 1.32,0.43 1.99,0.6 0.17,0.04 0.33,0.08 0.5,0.13 0.04,0.17 0.12,0.34 0.29,0.48 0.07,0.06 0.15,0.09 0.23,0.12 -0.04,0.47 -0.03,0.94 -0.02,1.38 0.01,0.54 0.08,1.08 0.19,1.62 -0.12,-0.06 -0.26,-0.1 -0.38,-0.13 -0.19,-0.04 -0.38,-0.06 -0.58,-0.06 -0.38,0 -0.75,0.09 -1.1,0.24 v 0 c -0.16,-0.49 -0.33,-0.98 -0.49,-1.48 h 1.15 c 0.16,0 0.31,-0.01 0.46,-0.03 0.14,-0.01 0.14,-0.25 0,-0.27 z m 0.46,-21.26 c 0.22,-0.36 0.46,-0.72 0.7,-1.08 0.08,-0.12 0.15,-0.24 0.23,-0.37 1,-0.35 2.1,-0.14 3.11,0.21 1.17,0.41 2.34,0.95 3.35,1.66 0.91,0.64 1.65,1.53 1.94,2.62 0.06,0.24 0.11,0.48 0.12,0.73 -0.05,-0.19 -0.1,-0.38 -0.16,-0.57 -0.1,-0.33 -0.2,-0.66 -0.3,-1 -0.04,-0.13 -0.24,-0.07 -0.2,0.06 0.1,0.33 0.2,0.67 0.3,1 0.1,0.33 0.19,0.67 0.31,0.99 0.01,0.01 0.02,0.01 0.03,0.02 -0.01,0.07 0,0.14 -0.01,0.21 0,0.02 -0.01,0.03 -0.02,0.05 -0.08,-0.15 -0.16,-0.3 -0.23,-0.44 -0.19,-0.38 -0.38,-0.76 -0.57,-1.14 -0.38,-0.74 -0.75,-1.48 -1.13,-2.23 -0.09,-0.17 -0.34,-0.02 -0.26,0.15 0.36,0.75 0.73,1.5 1.09,2.25 0.18,0.37 0.36,0.74 0.54,1.1 0.12,0.25 0.26,0.53 0.42,0.78 -0.12,0.36 -0.26,0.72 -0.34,1.09 0,0.02 0.01,0.04 0,0.06 -0.25,0.31 -0.5,0.62 -0.73,0.95 -0.09,0.13 -0.18,0.27 -0.28,0.4 0.05,-0.39 0.04,-0.81 0,-1.17 -0.06,-0.51 -0.19,-1.01 -0.38,-1.49 -0.38,-0.96 -0.99,-1.81 -1.79,-2.45 -0.13,-0.1 -0.31,0.08 -0.18,0.18 0.77,0.63 1.37,1.45 1.73,2.38 0.17,0.46 0.29,0.93 0.35,1.42 0.03,0.23 0.04,0.46 0.03,0.69 0,0.26 -0.05,0.51 -0.04,0.77 0,0.02 0.03,0.02 0.04,0.04 -0.11,0.16 -0.22,0.31 -0.33,0.47 -0.08,-0.87 -0.48,-1.76 -0.91,-2.52 -0.46,-0.81 -1.09,-1.54 -1.79,-2.15 -0.11,-0.1 -0.27,0.06 -0.16,0.16 0.67,0.62 1.21,1.33 1.66,2.12 0.22,0.39 0.41,0.8 0.56,1.22 0.15,0.41 0.24,0.84 0.38,1.26 -0.38,-0.92 -0.86,-1.75 -1.49,-2.53 -0.64,-0.79 -1.41,-1.5 -2.28,-2.02 -0.45,-0.27 -0.93,-0.51 -1.43,-0.69 -0.41,-0.15 -0.85,-0.21 -1.28,-0.27 -0.06,-0.14 -0.16,-0.27 -0.28,-0.36 -0.28,-0.49 -0.68,-0.93 -1.08,-1.23 0.24,-0.44 0.49,-0.89 0.76,-1.33 z m 14.31,18.37 c 1.24,-0.01 2.47,-0.03 3.71,-0.08 0.64,-0.02 1.28,-0.05 1.91,-0.09 0.09,0 0.18,-0.01 0.27,-0.01 -0.01,0.39 0.04,0.79 0.06,1.16 0.03,0.51 0.06,1.02 0.12,1.53 -0.01,0 -0.01,0 -0.02,0 -0.34,0.04 -0.68,0.08 -1.02,0.12 0.03,-0.19 0.02,-0.39 -0.07,-0.57 -0.07,-0.13 -0.19,-0.26 -0.32,-0.32 -0.17,-0.08 -0.34,-0.09 -0.51,-0.01 -0.09,0.04 -0.12,0.17 -0.08,0.26 0.04,0.09 0.15,0.16 0.24,0.12 0.01,0 0.03,-0.01 0.05,-0.02 0,0 0,0 0,0 0.01,0 0.01,0 0.02,0 0,0 0.01,0 0.01,0 0,0 0,0 0,0 0,0 0.01,0 0.01,0 0.01,0 0.02,0.01 0.03,0.01 0,0 0,0 0,0 0.01,0.01 0.03,0.01 0.04,0.02 0,0 0.01,0 0.01,0.01 0.01,0 0.01,0.01 0.02,0.01 0.01,0.01 0.04,0.03 0.05,0.05 0,0 0,0 0,0 0.01,0.01 0.01,0.02 0.02,0.03 0,0.01 0.01,0.03 0.02,0.04 -0.01,-0.01 -0.01,-0.04 0,0 0,0.01 0.01,0.02 0.01,0.04 0,0 0,0.01 0,0.02 0,0.01 0,0.03 0,0.03 0,0.02 0,0.03 0,0.05 0,0.02 0,0.03 0,0.05 0,0.01 -0.01,0.07 0,0.02 -0.01,0.03 -0.01,0.07 -0.02,0.1 -0.01,0.03 -0.02,0.07 -0.03,0.1 -0.05,0.01 -0.09,0.01 -0.14,0.02 L 665,389.53 c -0.03,-0.1 -0.07,-0.2 -0.1,-0.3 -0.03,-0.08 -0.12,-0.15 -0.21,-0.12 -0.08,0.03 -0.15,0.12 -0.12,0.21 0.03,0.09 0.06,0.18 0.09,0.27 -0.27,0.03 -0.53,0.04 -0.8,0.07 -0.17,-0.49 -0.23,-1 -0.11,-1.52 0.06,-0.26 -0.33,-0.37 -0.4,-0.11 -0.14,0.53 -0.13,1.13 0.03,1.67 -0.27,0.02 -0.54,0.05 -0.81,0.07 -0.01,-0.07 -0.04,-0.14 -0.05,-0.21 -0.02,-0.34 0.05,-0.67 0.23,-0.96 0.13,-0.21 -0.2,-0.4 -0.33,-0.19 -0.22,0.34 -0.32,0.76 -0.29,1.17 0,0.08 0.03,0.15 0.05,0.23 -0.34,0.03 -0.69,0.07 -1.03,0.09 -0.24,0.02 -0.48,0.02 -0.72,0.03 -0.02,-0.05 -0.05,-0.1 -0.07,-0.15 -0.09,-0.31 -0.09,-0.66 0.04,-0.96 0.05,-0.11 0.03,-0.23 -0.08,-0.3 -0.09,-0.06 -0.25,-0.03 -0.3,0.08 -0.19,0.41 -0.22,0.86 -0.11,1.29 0.01,0.02 0.02,0.04 0.03,0.07 -0.29,0.02 -0.59,0.03 -0.88,0.04 -0.01,-0.06 -0.01,-0.12 -0.02,-0.18 -0.04,-0.31 -0.07,-0.62 -0.11,-0.93 -0.01,-0.09 -0.07,-0.17 -0.17,-0.17 -0.08,0 -0.18,0.08 -0.17,0.17 0.03,0.32 0.07,0.63 0.1,0.95 0.01,0.06 0.01,0.12 0.02,0.18 -0.34,0.01 -0.69,0.04 -1.03,0.05 0,-0.01 -0.01,-0.02 -0.01,-0.02 -0.07,-0.14 -0.11,-0.28 -0.15,-0.43 -0.06,-0.29 -0.05,-0.59 0.03,-0.88 0.06,-0.22 -0.28,-0.31 -0.34,-0.09 -0.1,0.34 -0.11,0.71 -0.04,1.05 0.03,0.13 0.08,0.25 0.13,0.38 -0.33,0.01 -0.67,0.01 -1,0.01 -0.05,-0.53 -0.11,-1.07 -0.17,-1.6 -0.01,-0.09 -0.07,-0.16 -0.16,-0.16 -0.08,0 -0.17,0.08 -0.16,0.16 0.05,0.53 0.1,1.06 0.15,1.6 -0.32,0 -0.65,0 -0.97,0.01 -0.02,-0.1 -0.03,-0.2 -0.05,-0.31 -0.07,-0.45 -0.14,-0.9 -0.21,-1.35 -0.03,-0.21 -0.34,-0.12 -0.31,0.09 0.07,0.44 0.13,0.88 0.2,1.32 0.01,0.09 0.03,0.17 0.04,0.26 -0.09,0.01 -0.18,0.02 -0.28,0.03 -0.57,-0.91 -0.79,-2.01 -0.81,-3.1 0,-0.16 0.01,-0.31 0.02,-0.47 1.08,0.19 2.22,0.2 3.3,0.24 1.26,0.05 2.49,0.06 3.73,0.05 z m 5.28,-2.47 c -0.01,-0.21 -0.03,-0.43 -0.04,-0.64 0,-0.02 -0.01,-0.04 -0.01,-0.06 0.01,0 0.03,0 0.04,0 -0.01,0 -0.03,0 -0.04,-0.01 0,0 0,0 0,0 0.14,0.02 0.28,0.03 0.42,0.05 0,0.03 0,0.07 0,0.1 0.02,0.42 0.03,0.85 0.11,1.26 -0.13,0.01 -0.26,0.03 -0.38,0.03 -0.04,0 -0.09,0 -0.13,0.01 0.04,-0.15 0.06,-0.29 0.05,-0.45 -0.01,-0.09 -0.01,-0.19 -0.02,-0.29 z m 4.27,-2.34 c 0.03,0.32 0.06,0.65 0.08,0.97 -0.28,0.01 -0.57,0.03 -0.85,0.05 -0.02,-0.17 -0.05,-0.34 -0.06,-0.5 -0.01,-0.07 -0.01,-0.14 -0.02,-0.2 0.14,0 0.29,0.01 0.43,0 0.08,-0.01 0.08,-0.12 0,-0.13 -0.15,-0.01 -0.3,0 -0.45,-0.01 -0.04,-0.36 -0.08,-0.73 -0.11,-1.09 0.29,-0.06 0.59,-0.15 0.88,-0.28 0.03,0.4 0.07,0.8 0.1,1.19 z m -1.32,-0.85 c 0.03,0.35 0.07,0.69 0.1,1.04 -0.1,0 -0.2,0 -0.29,0 -0.31,0 -0.62,0 -0.93,0 -0.02,-0.33 -0.04,-0.66 -0.06,-0.99 0.38,0.02 0.78,0 1.18,-0.05 z m 7.31,23.27 c -0.37,-0.01 -0.74,-0.02 -1.11,0.01 -0.22,0.02 -0.44,0.03 -0.66,0.08 -0.2,0.05 -0.36,0.16 -0.56,0.22 -0.11,0.03 -0.18,0.12 -0.22,0.21 0.06,-0.85 0.06,-1.7 0.02,-2.56 -0.03,-0.62 -0.06,-1.24 -0.05,-1.86 0,-0.17 0.01,-0.33 0.01,-0.5 0.03,-0.43 0.02,-0.87 -0.04,-1.33 0,-0.02 -0.02,-0.04 -0.03,-0.06 0.05,-0.01 0.11,-0.01 0.16,-0.02 0.09,-0.01 0.19,-0.03 0.28,-0.03 0.09,0 0.19,0.01 0.28,0.02 0.04,0 0.09,0.01 0.13,0.01 0.05,0 0.09,-0.02 0.14,-0.03 0.02,0.03 0.04,0.07 0.07,0.1 0.21,0.17 0.39,0.23 0.65,0.23 0.13,0 0.27,0.01 0.4,0.01 0.28,0 0.55,-0.01 0.83,-0.01 0,0 0,0 0.01,0 0.11,0.13 0.24,0.19 0.4,0.21 0,0.03 0,0.06 0,0.1 0.01,0.35 0.03,0.69 0.04,1.04 0.01,0.33 0.05,0.67 0.07,1 0.01,0.17 0.03,0.33 0.04,0.5 0,0 0,0 0,0.01 -0.22,0.09 -0.36,0.36 -0.33,0.59 0.04,0.29 0.27,0.47 0.56,0.49 0.14,0.01 0.27,0.03 0.39,0.04 0.03,0 0.05,0.01 0.08,0.01 0,0 0.01,0 0.01,0 0.15,0.02 0.31,0.04 0.5,0.06 0.02,0 0.18,0.02 0.2,0.02 0.06,0.01 0.12,0.02 0.18,0.03 0.17,0.03 0.35,0.06 0.52,0.1 0.32,0.07 0.64,0.16 0.95,0.27 0.16,0.05 0.31,0.11 0.46,0.17 -0.01,0 -0.01,0 -0.02,-0.01 0.01,0 0.01,0 0.02,0.01 0,0.03 -0.02,0.04 -0.02,0.07 -0.01,0.28 0.02,0.57 0.05,0.85 -0.7,0.02 -1.41,0.02 -2.11,0.01 -0.76,-0.02 -1.53,-0.05 -2.3,-0.06 z m -6.55,-5.05 c -0.07,0.03 -0.15,0.05 -0.22,0.08 -0.06,-0.17 -0.13,-0.34 -0.2,-0.5 -0.14,-0.35 -0.3,-0.69 -0.48,-1.02 -0.29,-0.53 -0.64,-1.03 -1.08,-1.44 0.29,-0.34 0.45,-0.79 0.54,-1.29 0,-0.01 0.01,-0.01 0.01,-0.02 0.1,0.03 0.2,0.05 0.31,0.08 0.09,0.03 0.19,0.05 0.29,0.05 0.01,0 0.02,0 0.03,0 0.03,0.07 0.07,0.13 0.11,0.19 0.02,0.26 0.04,0.51 0.12,0.74 0.04,0.11 0.22,0.13 0.25,0 0.08,0.16 0.2,0.29 0.38,0.34 0.02,0 0.04,0.01 0.05,0.01 0.11,0.15 0.22,0.29 0.33,0.44 0.44,0.58 0.87,1.17 1.3,1.76 -0.25,0.07 -0.5,0.14 -0.74,0.22 -0.35,0.13 -0.67,0.25 -1,0.36 z m -4.14,-3.65 c -0.02,-0.1 -0.05,-0.2 -0.06,-0.28 -0.05,-0.36 -0.08,-0.73 -0.09,-1.1 -0.02,-0.76 0.05,-1.51 0.23,-2.25 0.05,-0.2 -0.26,-0.29 -0.32,-0.09 -0.2,0.76 -0.31,1.55 -0.31,2.34 0,0.39 0.02,0.77 0.07,1.16 0.02,0.19 0.05,0.41 0.1,0.62 -0.37,0.39 -0.75,0.78 -1.15,1.15 0,-0.04 0,-0.07 0,-0.11 0,-0.34 0,-0.68 -0.01,-1.03 0,-0.7 -0.01,-1.4 -0.01,-2.09 0,-0.18 -0.28,-0.18 -0.28,0 0,0.7 -0.01,1.4 -0.01,2.09 0,0.34 0,0.68 -0.01,1.03 0,0.14 0,0.29 -0.01,0.43 -0.35,0.32 -0.74,0.6 -1.11,0.89 -0.01,-0.3 -0.03,-0.61 -0.04,-0.91 -0.04,-0.85 -0.08,-1.69 -0.12,-2.54 -0.01,-0.2 -0.32,-0.2 -0.31,0 0.03,0.85 0.05,1.7 0.08,2.54 0.01,0.4 0.03,0.79 0.04,1.19 -0.45,0.35 -0.9,0.7 -1.37,1.02 0,-0.13 -0.01,-0.26 -0.01,-0.38 0,-0.44 0,-0.88 0,-1.32 -0.01,-0.88 -0.01,-1.76 -0.02,-2.64 0,-0.2 -0.31,-0.2 -0.31,0 -0.01,0.88 -0.01,1.76 -0.02,2.64 0,0.44 -0.01,0.88 0,1.32 0,0.2 -0.01,0.41 -0.01,0.62 -0.32,0.21 -0.64,0.4 -0.97,0.59 0,-0.03 0,-0.05 0,-0.08 0.02,-0.28 0.03,-0.56 0.05,-0.84 0.03,-0.55 0.06,-1.11 0.09,-1.66 0.01,-0.23 -0.34,-0.23 -0.35,0 -0.04,0.55 -0.08,1.11 -0.12,1.66 -0.02,0.27 -0.04,0.54 -0.06,0.81 -0.01,0.11 -0.03,0.25 -0.04,0.38 -0.16,0.09 -0.3,0.2 -0.46,0.28 -0.98,0.53 -2,0.98 -3.03,1.38 0,-0.01 0,-0.02 -0.01,-0.02 l -0.01,-0.01 c 0,0 0,0 0,0 l -0.03,-0.03 c -0.03,-0.02 -0.06,-0.02 -0.09,-0.02 -0.02,0 -0.03,0 -0.05,0 -0.04,0 -0.07,0 -0.11,-0.01 -0.02,0 -0.05,0 -0.07,0.02 -0.02,0.01 -0.04,0.02 -0.06,0.04 -0.02,0.02 -0.03,0.04 -0.04,0.06 -0.01,0.02 -0.02,0.04 -0.02,0.07 0,0.03 0.02,0.06 0.03,0.08 -1.14,0.43 -2.31,0.8 -3.5,1.12 0,-0.04 -0.01,-0.08 -0.01,-0.12 -0.02,-0.21 -0.04,-0.42 -0.06,-0.63 -0.04,-0.41 -0.08,-0.83 -0.12,-1.24 -0.02,-0.2 -0.34,-0.21 -0.32,0 0.03,0.42 0.06,0.84 0.09,1.27 0.01,0.2 0.03,0.41 0.04,0.61 0.01,0.07 0.01,0.15 0.02,0.22 -0.14,0.04 -0.28,0.08 -0.42,0.11 0,-0.09 0,-0.19 0,-0.28 0,-0.51 -0.01,-1.02 -0.01,-1.53 0,-0.21 -0.33,-0.21 -0.33,0 0,0.51 -0.01,1.02 -0.01,1.53 0,0.13 0,0.25 0,0.38 -0.35,0.09 -0.69,0.17 -1.04,0.25 -0.04,-0.12 -0.07,-0.25 -0.12,-0.37 -0.11,-0.27 -0.24,-0.53 -0.39,-0.78 0,-0.04 -0.01,-0.08 -0.01,-0.12 -0.01,-0.19 -0.03,-0.37 -0.05,-0.56 -0.03,-0.37 -0.07,-0.75 -0.1,-1.12 -0.02,-0.19 -0.32,-0.19 -0.3,0 0.04,0.38 0.08,0.76 0.11,1.14 0.01,0.06 0.01,0.13 0.02,0.19 -0.12,-0.16 -0.26,-0.3 -0.4,-0.44 0.05,-0.18 0.07,-0.37 -0.01,-0.58 -0.32,-0.92 -0.63,-1.84 -0.94,-2.76 3.22,-0.57 6.39,-1.33 9.39,-2.5 3.03,-1.18 6.04,-2.81 8.39,-4.9 0.02,0 0.04,0 0.06,0 0.47,-0.04 0.94,-0.09 1.4,-0.14 0,0.06 0,0.11 0,0.17 0,0.01 -0.01,0.02 -0.01,0.04 0.01,0.08 0.01,0.16 0.02,0.24 0,0.03 0,0.06 0,0.08 0.02,0.82 0.09,1.65 0.05,2.46 0,0.03 -0.01,0.05 -0.01,0.07 -0.33,0.37 -0.66,0.79 -1.02,1.19 z m -20.16,11.34 c -0.01,-0.01 -0.02,-0.03 -0.04,-0.04 -0.01,-0.01 -0.01,-0.02 -0.02,-0.02 -0.01,-0.01 -0.02,-0.03 -0.01,-0.01 0.01,0.02 0,0 -0.01,-0.01 -0.01,-0.01 -0.01,-0.02 -0.02,-0.03 -0.01,-0.02 -0.02,-0.04 -0.03,-0.05 0,-0.01 -0.01,-0.01 -0.01,-0.02 0,0 0,0 0,0 -0.01,-0.04 -0.03,-0.08 -0.04,-0.13 0,0 0,-0.01 0,-0.01 0,0 0,-0.01 0,-0.02 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,-0.01 0,-0.01 0,0 0,0 0,0 0,-0.02 0,-0.04 0,-0.06 0,-0.02 0,-0.04 0,-0.07 0,-0.01 0,-0.02 0,-0.02 0,-0.02 0.01,-0.04 0.02,-0.06 0,-0.01 0.01,-0.02 0.01,-0.03 0,0 0,0 0,0 0,-0.01 0.03,-0.05 0.03,-0.05 0.01,-0.01 0.01,-0.02 0.02,-0.03 0,0 0,0 0,0 0.06,-0.08 0.08,-0.19 0,-0.27 -0.07,-0.06 -0.2,-0.08 -0.27,0 -0.16,0.2 -0.22,0.44 -0.18,0.69 0.02,0.1 0.06,0.2 0.11,0.3 -0.05,0.01 -0.11,0.01 -0.16,0.02 -0.57,0.06 -1.14,0.12 -1.71,0.17 0,-0.09 0,-0.17 0,-0.26 0,-0.41 -0.01,-0.83 -0.01,-1.24 0,-0.23 -0.35,-0.23 -0.35,0 0,0.41 -0.01,0.83 -0.01,1.24 0,0.1 0,0.2 0,0.3 -0.5,0.05 -1,0.1 -1.5,0.15 -0.11,0.01 -0.22,0.02 -0.32,0.03 -0.02,-0.16 -0.04,-0.32 -0.06,-0.48 -0.05,-0.42 -0.1,-0.83 -0.14,-1.25 -0.01,-0.09 -0.07,-0.18 -0.18,-0.18 -0.09,0 -0.18,0.08 -0.18,0.18 0.03,0.42 0.06,0.83 0.08,1.25 0.01,0.18 0.02,0.35 0.03,0.53 -0.5,0.05 -1,0.1 -1.49,0.15 0.06,-0.02 0.1,-0.07 0.1,-0.13 0,-0.04 0,-0.08 -0.01,-0.11 -0.01,-0.04 -0.06,-0.1 -0.08,-0.12 -0.03,-0.04 -0.07,-0.11 -0.11,-0.16 -0.09,-0.13 -0.14,-0.23 -0.18,-0.36 -0.08,-0.26 -0.08,-0.52 0.02,-0.79 0.07,-0.2 -0.26,-0.34 -0.34,-0.15 -0.15,0.33 -0.18,0.69 -0.09,1.05 0.04,0.17 0.11,0.33 0.2,0.48 0.09,0.15 0.27,0.32 0.45,0.3 -0.67,0.07 -1.34,0.14 -2.01,0.21 0,-0.08 0,-0.16 0,-0.24 0,-0.3 -0.01,-0.6 -0.01,-0.91 0,-0.22 -0.34,-0.22 -0.34,0 l -0.01,0.91 c 0,0.09 0,0.18 0,0.27 -0.38,0.04 -0.76,0.08 -1.14,0.12 -0.01,-0.07 -0.01,-0.15 -0.02,-0.22 -0.04,-0.49 -0.07,-0.98 -0.11,-1.48 -0.02,-0.24 -0.38,-0.24 -0.37,0 0.03,0.49 0.06,0.98 0.09,1.48 0.01,0.09 0.01,0.17 0.02,0.26 -0.31,0.03 -0.63,0.06 -0.94,0.1 0,0 0,-0.01 0,-0.01 -0.03,-0.15 -0.06,-0.29 -0.08,-0.44 -0.04,-0.27 -0.06,-0.55 -0.06,-0.82 -0.01,-0.58 0.06,-1.15 0.19,-1.7 0.06,-0.26 -0.33,-0.37 -0.4,-0.11 -0.15,0.59 -0.24,1.2 -0.24,1.81 0,0.3 0.02,0.59 0.06,0.89 0.02,0.15 0.04,0.29 0.07,0.43 -0.71,0.07 -1.41,0.15 -2.12,0.22 0,-0.03 0,-0.05 0,-0.08 0,-0.28 0,-0.55 -0.01,-0.83 0,-0.21 -0.32,-0.21 -0.32,0 0,0.28 0,0.55 -0.01,0.83 0,0.04 0,0.08 0,0.11 -0.54,0.06 -1.08,0.11 -1.62,0.17 -0.01,-0.03 -0.04,-0.06 -0.05,-0.09 -0.06,-0.25 -0.05,-0.51 0.04,-0.76 0.03,-0.09 -0.04,-0.2 -0.13,-0.23 -0.11,-0.03 -0.19,0.04 -0.23,0.13 -0.13,0.31 -0.14,0.66 -0.06,0.99 -0.55,0.06 -1.1,0.12 -1.65,0.17 -0.05,-0.08 -0.11,-0.16 -0.14,-0.23 -0.09,-0.26 -0.11,-0.54 0,-0.79 0.04,-0.09 0.03,-0.18 -0.06,-0.23 -0.07,-0.04 -0.2,-0.02 -0.23,0.06 -0.15,0.33 -0.17,0.71 -0.05,1.06 0.02,0.07 0.07,0.12 0.1,0.18 -0.08,0.01 -0.16,0.02 -0.24,0.03 -0.52,0.05 -1.05,0.1 -1.57,0.15 -0.02,-0.03 -0.04,-0.07 -0.06,-0.1 -0.03,-0.04 -0.06,-0.09 -0.1,-0.15 -0.04,-0.06 -0.07,-0.12 -0.1,-0.18 -0.03,-0.05 -0.04,-0.08 -0.06,-0.16 -0.02,-0.06 -0.03,-0.13 -0.05,-0.19 0,-0.01 0,-0.01 0,-0.01 0,0 0,0 0,-0.01 0,-0.02 0,-0.03 0,-0.05 0,-0.03 0,-0.07 -0.01,-0.1 -0.01,-0.07 -0.01,-0.14 0,-0.21 0.01,-0.13 -0.19,-0.22 -0.28,-0.11 -0.18,0.21 -0.37,0.4 -0.57,0.6 -0.12,0.12 0.06,0.29 0.18,0.18 0.1,-0.1 0.2,-0.19 0.3,-0.28 0.01,0.18 0.05,0.37 0.12,0.54 0.04,0.11 0.12,0.2 0.19,0.29 -0.52,0.05 -1.05,0.1 -1.57,0.15 -0.56,0.05 -1.12,0.11 -1.68,0.16 -0.14,0.01 -0.27,0.03 -0.39,0.05 0.14,-0.19 0.28,-0.38 0.44,-0.56 0.29,-0.32 0.59,-0.63 0.92,-0.91 0.67,-0.56 1.42,-1.06 2.21,-1.45 3.05,-1.54 6.52,-1.89 9.89,-1.99 2.14,-0.06 4.29,-0.04 6.43,-0.22 1.02,-0.09 2.04,-0.21 3.05,-0.41 1.01,-0.19 2,-0.39 2.91,-0.88 0.09,0.12 0.19,0.23 0.28,0.35 0.13,0.18 0.24,0.36 0.35,0.55 0.01,0.02 0.01,0.02 0.02,0.03 0,0 0,0 0.01,0.02 0.02,0.04 0.04,0.09 0.06,0.13 0.04,0.1 0.08,0.2 0.12,0.3 0.02,0.06 0.04,0.11 0.05,0.17 -0.3,0.06 -0.6,0.13 -0.89,0.19 -0.01,0.31 -0.03,0.62 -0.05,0.93 -0.03,-0.01 -0.05,-0.03 -0.07,-0.03 -0.12,0.01 -0.22,0.1 -0.22,0.22 0,0.24 -0.01,0.47 -0.01,0.71 0,0.07 0,0.14 0,0.21 -0.45,0.04 -0.87,0.09 -1.29,0.14 z m -29.3,1.65 c -0.04,-0.08 -0.08,-0.17 -0.11,-0.25 -0.1,-0.25 -0.17,-0.5 -0.23,-0.77 -0.12,-0.54 -0.14,-1.11 -0.06,-1.66 0.02,-0.16 -0.22,-0.23 -0.24,-0.07 -0.09,0.58 -0.09,1.17 0.02,1.75 0.05,0.29 0.13,0.57 0.24,0.85 0.02,0.05 0.04,0.11 0.07,0.17 -0.58,0.04 -1.17,0.08 -1.75,0.11 0,-0.01 0,-0.02 0,-0.03 -0.02,-0.44 -0.04,-0.88 -0.08,-1.32 -0.06,-0.9 -0.16,-1.8 -0.23,-2.69 -0.01,-0.15 -0.25,-0.16 -0.24,0 0.06,0.91 0.1,1.83 0.17,2.75 0.03,0.44 0.08,0.88 0.12,1.32 -0.24,0.02 -0.48,0.03 -0.72,0.05 -1.23,0.07 -2.45,0.13 -3.68,0.19 0,-0.01 -0.01,-0.02 -0.01,-0.03 -0.07,-0.24 -0.14,-0.47 -0.2,-0.71 -0.05,-0.19 -0.35,-0.11 -0.29,0.08 0.06,0.23 0.13,0.45 0.19,0.68 -0.55,0.03 -1.11,0.06 -1.66,0.08 -0.01,-0.01 -0.01,-0.01 -0.02,-0.02 -0.1,-0.13 -0.19,-0.28 -0.26,-0.43 -0.13,-0.3 -0.18,-0.63 -0.16,-0.95 0.01,-0.07 -0.07,-0.13 -0.14,-0.14 -0.08,0 -0.13,0.06 -0.14,0.14 -0.04,0.37 0.02,0.75 0.16,1.09 0.05,0.12 0.12,0.22 0.19,0.33 -0.5,0.02 -1.01,0.06 -1.51,0.08 -5,0.21 -10.01,0.32 -15.01,0.33 -0.01,-0.05 -0.01,-0.09 -0.01,-0.14 -0.03,-0.3 -0.07,-0.6 -0.1,-0.9 -0.01,-0.08 -0.07,-0.16 -0.16,-0.16 -0.08,0 -0.17,0.07 -0.16,0.16 0.03,0.31 0.07,0.61 0.1,0.92 0,0.04 0.01,0.08 0.02,0.12 -0.69,0 -1.39,0 -2.08,0 -0.01,-0.17 -0.02,-0.34 -0.03,-0.51 -0.03,-0.51 -0.07,-1.02 -0.1,-1.53 -0.01,-0.22 -0.35,-0.22 -0.34,0 0.02,0.52 0.05,1.04 0.07,1.56 0.01,0.16 0.02,0.32 0.03,0.48 -0.4,0 -0.8,0 -1.19,0 0,0 0.01,0 0.01,-0.01 0.05,-0.25 -0.08,-0.52 -0.15,-0.76 -0.07,-0.27 -0.13,-0.54 -0.17,-0.81 -0.08,-0.55 -0.09,-1.11 -0.04,-1.66 0.02,-0.2 -0.29,-0.2 -0.32,0 -0.06,0.57 -0.06,1.14 0.01,1.71 0.03,0.27 0.08,0.54 0.14,0.8 0.05,0.23 0.12,0.55 0.29,0.72 -0.05,0 -0.1,0 -0.15,0 -0.18,0 -0.36,-0.01 -0.55,-0.01 0,-0.19 0,-0.38 -0.01,-0.56 -0.01,-0.55 -0.01,-1.11 -0.02,-1.66 0,-0.21 -0.32,-0.21 -0.32,0 l -0.02,1.66 c 0,0.18 0,0.37 -0.01,0.55 -0.58,-0.02 -1.17,-0.03 -1.76,0 0.01,-0.29 0.02,-0.58 0.03,-0.88 0.02,-0.71 0.04,-1.42 0.06,-2.14 0.01,-0.24 -0.36,-0.24 -0.37,0 -0.04,0.71 -0.09,1.42 -0.13,2.14 -0.02,0.3 -0.03,0.6 -0.05,0.9 -0.38,0.04 -0.76,0.1 -1.12,0.21 -0.02,-0.28 -0.04,-0.57 -0.05,-0.85 -0.02,-0.35 -0.04,-0.7 -0.06,-1.05 0.06,-0.11 0.11,-0.22 0.18,-0.32 0.07,-0.12 0.13,-0.24 0.2,-0.35 0.01,-0.01 0.02,-0.01 0.03,-0.02 0.18,-0.19 0.28,-0.48 0.27,-0.76 0,-0.01 0.01,-0.02 0.01,-0.04 0.04,-0.21 -0.05,-0.37 -0.2,-0.47 -0.03,-0.03 -0.04,-0.08 -0.08,-0.11 -0.85,-0.69 -1.7,-1.36 -2.56,-2.03 -0.37,-0.29 -0.74,-0.58 -1.14,-0.84 0,-0.08 -0.02,-0.16 -0.04,-0.24 0.08,0.1 0.17,0.18 0.29,0.22 1.38,0.39 2.9,0.37 4.32,0.46 1.46,0.1 2.93,0.12 4.39,0.16 2.89,0.07 5.78,0.07 8.67,0.03 5.78,-0.09 11.56,-0.38 17.32,-0.89 1.62,-0.14 3.23,-0.3 4.85,-0.47 0.65,-0.07 1.3,-0.14 1.95,-0.22 -0.24,0.2 -0.48,0.4 -0.72,0.61 -0.82,0.72 -1.62,1.45 -2.42,2.19 -0.03,0.03 -0.04,0.08 -0.07,0.11 -0.14,0.11 -0.22,0.28 -0.17,0.48 0,0.01 0.01,0.02 0.01,0.03 0,0.05 0.01,0.1 0.02,0.16 -0.09,0.01 -0.17,0.06 -0.16,0.16 0.08,0.62 0.17,1.25 0.25,1.87 0.04,0.31 0.08,0.61 0.12,0.92 0,0.01 0,0.03 0.01,0.04 -0.14,0.01 -0.29,0.02 -0.42,0.03 -0.2,0.03 -0.41,0.04 -0.62,0.06 z m 1.45,-0.1 c 0,-0.01 0,-0.02 -0.01,-0.04 -0.05,-0.32 -0.1,-0.63 -0.15,-0.95 -0.08,-0.5 -0.16,-0.99 -0.23,-1.49 0.02,0.03 0.04,0.06 0.06,0.09 0.01,0.01 0.02,0.01 0.03,0.02 0.07,0.11 0.14,0.23 0.22,0.34 0.23,0.34 0.45,0.67 0.65,1.03 0.03,0.05 0.06,0.11 0.08,0.16 0.01,0.01 0.01,0.02 0.01,0.03 0.04,0.09 0.08,0.17 0.12,0.26 0.08,0.18 0.15,0.36 0.23,0.54 -0.32,-0.02 -0.67,-0.01 -1.01,0.01 z m 29.18,-11.96 c 0,0.02 0,0.05 0.01,0.07 0.06,0.09 0.16,0.11 0.25,0.07 0.17,-0.07 0.34,-0.15 0.51,-0.22 0.22,-0.03 0.43,-0.06 0.65,-0.08 0.49,-0.06 0.97,-0.12 1.46,-0.18 0.48,-0.06 1.09,-0.04 1.47,-0.37 0.13,0.05 0.27,0.06 0.4,0.01 0.02,-0.01 0.04,-0.02 0.06,-0.02 -0.13,0.01 -0.12,0 0.02,-0.01 0.12,-0.02 0.23,-0.06 0.33,-0.12 0.14,-0.08 0.24,-0.2 0.35,-0.32 0.15,-0.16 0.31,-0.33 0.46,-0.49 0.32,-0.34 0.63,-0.68 0.95,-1.02 0.31,-0.33 0.61,-0.67 0.91,-1.01 0.07,-0.08 0.13,-0.17 0.2,-0.25 0.03,0.04 0.08,0.07 0.14,0.05 0.6,-0.18 1.19,-0.41 1.74,-0.71 0.21,-0.11 0.42,-0.24 0.62,-0.37 0.11,0 0.23,0.01 0.33,0.01 0.43,0.02 0.87,0.01 1.3,0.02 0,0 -0.01,0.01 -0.01,0.01 -0.12,0.09 -0.25,0.18 -0.37,0.27 -0.24,0.18 -0.48,0.36 -0.73,0.53 0,0 0,0 0,0 -1.2,0.53 -2.37,1.1 -3.56,1.64 -0.08,0.04 -0.01,0.15 0.07,0.12 1.16,-0.52 2.34,-1.02 3.49,-1.56 0.04,0.03 0.09,0.04 0.13,0.01 0.11,-0.07 0.21,-0.15 0.32,-0.22 0.15,-0.07 0.31,-0.14 0.46,-0.21 0.05,-0.03 0.04,-0.08 0.02,-0.12 0.11,-0.07 0.21,-0.15 0.32,-0.22 0.07,-0.05 0.13,-0.09 0.2,-0.14 0.04,-0.03 0.06,-0.08 0.08,-0.11 0.68,0.01 1.37,0.04 2.05,0.03 0.05,0 0.09,-0.01 0.14,-0.01 -1.14,0.77 -2.33,1.47 -3.6,2.08 -3.49,1.66 -7.33,2.65 -11.23,3.32 -0.05,-0.16 -0.11,-0.32 -0.16,-0.48 0.09,0.01 0.15,0 0.22,0 z m 1.43,-9.05 c 0.01,-0.03 0.02,-0.05 0.03,-0.08 0.73,-0.88 1.45,-1.77 2.18,-2.66 0.45,-0.55 0.89,-1.1 1.33,-1.66 0.24,-0.31 0.49,-0.61 0.72,-0.92 -0.04,0.39 -0.12,0.78 -0.16,1.06 -0.34,2.87 -0.72,6.18 1.38,8.47 -0.03,0.03 -0.06,0.05 -0.09,0.07 -0.34,0.32 -0.68,0.64 -1,0.96 -0.32,0.32 -0.64,0.64 -0.96,0.95 -0.13,0.13 -0.26,0.26 -0.4,0.39 -0.06,-0.07 -0.13,-0.13 -0.22,-0.18 -0.27,-0.14 -0.58,-0.2 -0.82,-0.33 -0.26,-0.14 -0.45,-0.29 -0.66,-0.5 -0.38,-0.39 -0.69,-0.88 -0.88,-1.4 -0.24,-0.67 -0.35,-1.38 -0.38,-2.09 -0.03,-0.67 0.06,-1.41 -0.07,-2.08 z m 6.9,4.74 c 0.07,-0.1 0.11,-0.19 0.15,-0.29 0.11,-0.13 0.18,-0.27 0.21,-0.43 0.05,0.01 0.1,0.01 0.15,-0.01 0.01,0 0.02,-0.01 0.03,-0.01 0.36,0.03 0.71,0.05 1.07,0.06 -0.05,0.03 -0.1,0.07 -0.16,0.1 -0.48,0.26 -0.98,0.47 -1.5,0.64 0.02,-0.03 0.04,-0.04 0.05,-0.06 z m 28.15,0.49 c 0.02,0.05 0.04,0.1 0.06,0.14 0.03,0.08 0.07,0.17 0.1,0.25 0.04,0.09 0.08,0.18 0.13,0.26 0.03,0.06 0.09,0.06 0.14,0.05 0.01,0.04 0.01,0.08 0.02,0.12 -0.5,0.12 -1.01,0.32 -1.47,0.44 -0.34,0.09 -0.68,0.16 -1.02,0.25 -0.06,-0.19 -0.12,-0.38 -0.17,-0.56 -0.07,-0.23 -0.43,-0.14 -0.36,0.1 0.05,0.19 0.1,0.37 0.15,0.56 -0.38,0.09 -0.76,0.19 -1.14,0.28 -0.06,-0.11 -0.13,-0.21 -0.16,-0.32 -0.11,-0.35 -0.11,-0.72 0.02,-1.08 0,-0.01 0,-0.02 0,-0.03 0.19,-0.02 0.37,-0.03 0.56,-0.05 0.99,-0.11 1.98,-0.24 2.96,-0.37 0.05,-0.02 0.11,-0.03 0.18,-0.04 z m 1.24,5.04 c -0.02,0.48 -0.05,0.95 -0.08,1.43 0,0.01 0,0.02 0,0.02 -0.11,0.01 -0.22,0.02 -0.33,0.02 -0.19,0.01 -0.38,0.02 -0.57,0.03 0.07,-0.02 0.14,-0.06 0.17,-0.15 0.04,-0.11 0.06,-0.23 0.09,-0.35 0.01,-0.01 0.03,-0.01 0.03,-0.03 0.02,-0.07 0.02,-0.15 0.01,-0.22 0.01,-0.06 0.04,-0.13 0.03,-0.19 0,-0.04 -0.02,-0.07 -0.05,-0.1 -0.01,-0.13 -0.02,-0.27 -0.04,-0.4 -0.04,-0.31 -0.07,-0.61 -0.11,-0.92 -0.01,-0.05 -0.03,-0.09 -0.07,-0.12 -0.02,-0.02 -0.05,-0.03 -0.08,-0.03 -0.01,0 -0.01,-0.01 -0.02,-0.01 0,0 0,0 0,0 -0.1,-0.02 -0.22,0.03 -0.22,0.17 0,0.36 -0.01,0.71 -0.02,1.07 -0.01,0.36 -0.04,0.71 -0.04,1.07 0,0.13 0.08,0.2 0.18,0.22 -0.19,0.01 -0.38,0.02 -0.57,0.03 -0.01,0 -0.01,0 -0.02,0 0,-0.01 0,-0.02 0,-0.03 -0.02,-0.26 -0.03,-0.53 -0.05,-0.79 -0.04,-0.52 -0.07,-1.04 -0.11,-1.56 0,-0.04 -0.03,-0.06 -0.04,-0.08 0.07,-0.03 0.14,-0.07 0.21,-0.1 0.58,-0.28 1.16,-0.57 1.74,-0.86 -0.01,0.61 -0.01,1.25 -0.04,1.88 z m -15.97,-4 c -0.01,-0.09 -0.03,-0.17 -0.03,-0.26 -0.02,-0.26 -0.02,-0.52 -0.02,-0.78 -0.05,-0.01 -0.1,0.01 -0.15,0.01 -0.01,-0.12 -0.02,-0.26 -0.02,-0.37 -0.02,-0.39 -0.05,-0.78 -0.07,-1.17 0.03,0.02 0.05,0.04 0.08,0.06 0.15,0.09 0.3,0.16 0.45,0.25 0.05,0.72 0.11,1.44 0.16,2.16 0,0.01 0,0.01 0,0.02 -0.1,0 -0.21,0.02 -0.3,0.05 -0.04,0.01 -0.07,0.02 -0.1,0.03 z m 4.88,3.77 c -0.24,0.07 -0.4,0.31 -0.36,0.56 0,0.02 0.02,0.03 0.02,0.05 -0.01,0.01 -0.02,0.03 -0.04,0.03 -0.01,0 -0.01,0 -0.02,0 -0.02,-0.03 -0.03,-0.07 -0.05,-0.1 -0.28,-0.34 -0.55,-0.69 -0.83,-1.04 0.23,0.05 0.46,0.09 0.69,0.14 0.35,0.07 0.73,0.17 1.09,0.19 -0.01,0.01 -0.03,0.01 -0.04,0.02 -0.16,0.06 -0.31,0.1 -0.46,0.15 z m 0.55,-3.91 c 0.02,0 0.05,-0.01 0.07,-0.02 -0.04,0.26 -0.04,0.53 -0.06,0.77 -0.01,0.09 0,0.17 -0.01,0.26 0,-0.07 -0.01,-0.14 -0.01,-0.22 l -0.05,-0.81 c 0.02,0.01 0.04,0.02 0.06,0.02 z m 1.6,3.42 0.31,-0.11 c 0.03,-0.01 0.05,-0.04 0.08,-0.06 0.26,-0.02 0.52,-0.06 0.77,-0.09 0.01,0.01 0.01,0.03 0.02,0.04 0.08,0.08 0.2,0.02 0.23,-0.08 0.13,-0.02 0.27,-0.04 0.4,-0.06 0.86,-0.12 1.72,-0.29 2.57,-0.48 0.43,-0.1 0.85,-0.23 1.28,-0.34 -0.11,0.06 -0.23,0.12 -0.34,0.18 -0.2,0.1 -0.4,0.22 -0.59,0.34 -0.1,0.06 -0.2,0.11 -0.29,0.18 -0.14,0.1 -0.19,0.2 -0.31,0.32 -0.06,0.06 -0.09,0.15 -0.11,0.23 -0.05,0 -0.1,0 -0.15,0 -0.16,0.01 -0.32,0.05 -0.48,0.07 -0.15,0.02 -0.3,0.07 -0.45,0.12 -0.03,-0.02 -0.05,-0.06 -0.08,-0.08 -0.33,-0.2 -0.7,-0.14 -1.06,-0.1 -0.32,0.03 -0.64,0.06 -0.95,0.11 -0.26,0.04 -0.53,0.09 -0.79,0.13 -0.02,0 -0.05,0.01 -0.08,0.02 0.02,-0.11 0.03,-0.22 0.02,-0.34 z m 2.83,3.06 c 0,0 0,-0.01 0,-0.01 -0.05,-0.46 -0.11,-0.91 -0.18,-1.36 0.14,-0.05 0.28,-0.1 0.42,-0.15 0.02,-0.01 0.04,-0.02 0.07,-0.02 0.09,0.43 0.18,0.85 0.27,1.28 -0.01,0.01 -0.03,0.01 -0.04,0.02 -0.18,0.06 -0.36,0.15 -0.54,0.24 z m 1,-0.43 -0.32,-1.25 c 0.11,-0.04 0.22,-0.07 0.33,-0.12 0.1,-0.05 0.22,-0.1 0.32,-0.15 0.03,-0.02 0.22,-0.15 0.13,-0.09 0.06,-0.04 0.12,-0.08 0.18,-0.12 0.05,-0.03 0.08,-0.09 0.11,-0.13 0.12,0 0.24,0 0.36,-0.03 0.01,0 0.02,-0.01 0.03,-0.01 -0.03,0.34 -0.02,0.68 0.02,1.01 0.03,0.2 0.09,0.4 0.14,0.59 -0.14,-0.07 -0.29,-0.1 -0.45,-0.04 -0.27,0.11 -0.56,0.23 -0.85,0.34 z m 1.84,-0.25 c -0.08,-0.23 -0.15,-0.47 -0.19,-0.72 -0.06,-0.38 -0.05,-0.76 -0.01,-1.14 0.19,-0.08 0.38,-0.15 0.56,-0.24 0.22,-0.11 0.43,-0.21 0.65,-0.32 0.02,0.5 0.04,0.99 0.06,1.49 0.01,0.25 0.02,0.51 0.03,0.76 0,0.02 0,0.05 0,0.07 -0.37,0.04 -0.74,0.07 -1.1,0.1 z m -2.16,-4.98 c 0.03,0.09 0.09,0.18 0.13,0.27 -0.24,0.05 -0.48,0.09 -0.72,0.14 -0.01,-0.07 -0.04,-0.13 -0.05,-0.19 -0.06,-0.42 -0.04,-0.86 0.06,-1.27 0.01,-0.04 -0.01,-0.07 -0.02,-0.1 0.21,-0.02 0.41,-0.04 0.62,-0.06 -0.13,0.38 -0.14,0.81 -0.02,1.21 z m -1.03,0.49 c -0.34,0.06 -0.67,0.14 -1.01,0.2 -0.12,0.02 -0.24,0.04 -0.37,0.06 0,-0.03 -0.02,-0.07 -0.02,-0.1 -0.06,-0.55 -0.05,-1.1 0.03,-1.64 0.16,-0.01 0.33,-0.03 0.49,-0.04 0.31,-0.02 0.61,-0.06 0.91,-0.08 -0.11,0.51 -0.13,1.06 -0.03,1.6 z m -1.82,0.18 c 0,0.05 0.02,0.09 0.02,0.13 -0.24,0.03 -0.47,0.07 -0.71,0.12 0,-0.33 0,-0.66 -0.02,-0.99 -0.02,-0.28 -0.02,-0.59 -0.08,-0.88 0.28,0 0.55,-0.01 0.83,-0.03 -0.07,0.55 -0.1,1.1 -0.04,1.65 z m -2.74,-1.55 c 0.02,0.3 0.04,0.59 0.05,0.89 0.01,0.25 0.03,0.51 0.05,0.76 0.01,0.18 0.05,0.36 0.08,0.53 -0.17,-0.03 -0.34,-0.05 -0.5,-0.07 l -0.34,-0.06 c -0.01,-0.14 -0.06,-0.28 -0.1,-0.42 -0.06,-0.18 -0.12,-0.36 -0.17,-0.54 -0.1,-0.35 -0.19,-0.71 -0.26,-1.07 -0.03,-0.15 -0.04,-0.3 -0.06,-0.45 0.4,0.16 0.82,0.32 1.25,0.43 z m -1.74,-0.61 c 0.02,0.01 0.04,0.02 0.06,0.02 0.03,0.23 0.05,0.45 0.08,0.68 0.07,0.38 0.15,0.75 0.25,1.11 0.06,0.23 0.13,0.53 0.25,0.78 l -0.25,-0.04 c -0.28,-0.05 -0.57,-0.07 -0.85,-0.11 -0.03,-0.17 -0.06,-0.35 -0.08,-0.5 -0.05,-0.37 -0.09,-0.75 -0.14,-1.12 -0.05,-0.4 -0.1,-0.79 -0.15,-1.19 0.28,0.13 0.55,0.26 0.83,0.37 z m -1.2,-0.53 c 0.05,0.46 0.11,0.93 0.16,1.39 0.04,0.37 0.09,0.75 0.13,1.12 0.01,0.12 0.02,0.26 0.03,0.4 -0.03,0 -0.06,-0.01 -0.08,-0.01 -0.08,-0.1 -0.15,-0.19 -0.23,-0.29 -0.23,-0.29 -0.47,-0.62 -0.79,-0.81 -0.02,-0.05 -0.04,-0.11 -0.07,-0.16 -0.04,-0.05 -0.08,-0.1 -0.12,-0.15 -0.07,-0.08 -0.18,-0.13 -0.29,-0.16 l -0.01,-0.09 c -0.06,-0.65 -0.11,-1.31 -0.17,-1.96 0.27,0.15 0.53,0.32 0.81,0.45 0.21,0.1 0.42,0.18 0.63,0.27 z m 11.14,9.5 c -0.09,0.06 -0.17,0.14 -0.22,0.23 -0.24,-0.15 -0.53,-0.24 -0.8,-0.32 -0.35,-0.11 -0.7,-0.19 -1.06,-0.25 -0.36,-0.05 -0.72,-0.09 -1.08,-0.11 -0.01,-0.05 -0.01,-0.11 -0.01,-0.16 0.03,-0.01 0.07,-0.01 0.1,-0.02 0.22,-0.04 0.44,-0.1 0.66,-0.17 0.04,0.14 0.09,0.27 0.2,0.35 0.07,0.05 0.2,0.01 0.24,-0.06 0.07,-0.13 0.05,-0.29 0.01,-0.45 0.3,-0.11 0.61,-0.22 0.91,-0.33 0.08,-0.03 0.15,-0.07 0.21,-0.12 0.66,0.01 1.32,0.03 1.98,0 0.41,-0.01 0.81,-0.03 1.22,-0.04 0.06,0 0.14,0 0.2,0 -0.03,0.01 -0.06,0.03 -0.09,0.04 -0.04,0.02 -0.05,0.02 -0.04,0.02 -0.06,0.02 -0.18,0.08 -0.21,0.09 -0.06,0.03 -0.13,0.07 -0.19,0.1 -0.23,0.12 -0.46,0.23 -0.67,0.37 -0.46,0.28 -0.91,0.56 -1.36,0.83 z m 1.96,-9.03 c -0.01,-0.04 -0.03,-0.07 -0.04,-0.11 -0.01,-0.03 -0.03,-0.07 -0.04,-0.1 0.04,0 0.07,-0.01 0.11,-0.02 -0.02,0.08 -0.04,0.15 -0.03,0.23 z m 1.02,-4.04 c 0,0.1 0,0.2 0,0.3 0,0.47 0.01,0.93 0.01,1.4 -0.13,0.02 -0.26,0.04 -0.4,0.06 -0.5,0.08 -1.01,0.16 -1.51,0.23 -0.96,0.14 -1.92,0.27 -2.88,0.38 -0.98,0.12 -1.95,0.24 -2.93,0.35 -0.71,0.09 -1.47,0.13 -2.18,0.3 -0.04,-0.44 -0.08,-0.87 -0.13,-1.31 -0.03,-0.29 -0.06,-0.6 -0.1,-0.9 0.13,-0.05 0.24,-0.14 0.32,-0.25 0.57,-0.03 1.14,-0.08 1.71,-0.13 0.98,-0.08 1.95,-0.14 2.93,-0.21 1.73,-0.11 3.44,-0.18 5.16,-0.22 z m -11.78,1.77 c 0.02,0.21 0.04,0.42 0.05,0.63 -0.18,-0.06 -0.37,-0.11 -0.55,-0.18 -0.56,-0.2 -1.09,-0.41 -1.59,-0.64 -0.55,-0.25 -1.1,-0.48 -1.64,-0.74 -0.24,-0.12 -0.49,-0.21 -0.74,-0.3 0,-0.02 0.01,-0.03 0.01,-0.05 -0.01,-0.57 -0.11,-1.15 -0.17,-1.72 -0.03,-0.23 -0.04,-0.48 -0.07,-0.73 0.1,0.07 0.2,0.15 0.31,0.22 0.6,0.39 1.23,0.73 1.86,1.06 0.61,0.33 1.23,0.63 1.87,0.91 0.2,0.09 0.4,0.17 0.6,0.26 -0.01,0.43 0.03,0.87 0.06,1.28 z m -21.45,-11.5 c -0.06,-0.14 -0.14,-0.27 -0.21,-0.4 -0.1,-0.18 -0.2,-0.35 -0.3,-0.52 -0.22,-0.37 -0.44,-0.74 -0.66,-1.11 -0.44,-0.74 -0.89,-1.48 -1.33,-2.23 -0.1,-0.17 -0.37,-0.02 -0.27,0.16 0.43,0.75 0.87,1.5 1.3,2.24 0.22,0.37 0.43,0.75 0.65,1.12 0.1,0.17 0.2,0.35 0.31,0.52 0.04,0.07 0.09,0.14 0.13,0.22 -0.38,0 -0.76,-0.01 -1.13,-0.01 -0.03,-0.07 -0.05,-0.14 -0.08,-0.2 -0.17,-0.43 -0.38,-0.83 -0.65,-1.21 -0.45,-0.65 -1.05,-1.17 -1.72,-1.58 0.01,-0.02 0.03,-0.04 0.04,-0.06 0.17,-0.31 0.07,-0.63 -0.13,-0.85 0,-0.03 -0.01,-0.07 -0.01,-0.1 -0.02,-0.42 -0.04,-0.84 -0.06,-1.25 -0.02,-0.38 -0.02,-0.78 -0.04,-1.17 0.15,0.09 0.3,0.18 0.46,0.26 0.37,0.2 0.73,0.42 1.08,0.67 0.68,0.51 1.32,1.1 1.84,1.77 0.5,0.64 0.94,1.41 1.22,2.15 0.16,0.41 0.28,0.84 0.37,1.27 0.03,0.13 0.04,0.25 0.06,0.38 -0.29,-0.05 -0.58,-0.06 -0.87,-0.07 z m -6.04,0.09 c -0.03,-0.15 -0.05,-0.31 -0.07,-0.47 0.01,0.06 0.02,0.12 0.02,0.18 -0.01,-0.1 -0.03,-0.2 -0.04,-0.3 0.39,-0.33 0.76,-0.67 1.1,-1.04 0.3,0.28 0.61,0.54 0.88,0.85 0.18,0.21 0.35,0.42 0.52,0.64 -0.79,-0.01 -1.66,-0.07 -2.41,0.14 z m 2.82,-0.12 c -0.21,-0.29 -0.43,-0.56 -0.67,-0.83 -0.29,-0.33 -0.63,-0.61 -0.95,-0.91 0.09,-0.11 0.19,-0.22 0.27,-0.34 0.22,-0.08 0.42,-0.26 0.49,-0.53 0.01,-0.05 0,-0.1 0.01,-0.14 0.62,0.41 1.17,0.91 1.58,1.53 0.23,0.35 0.43,0.73 0.58,1.12 0.01,0.04 0.02,0.07 0.04,0.11 -0.45,0 -0.9,-0.01 -1.35,-0.01 z m 5.33,-2.26 c 0.02,0.04 0.05,0.06 0.09,0.07 -0.01,0.02 -0.02,0.03 -0.04,0.05 -0.01,-0.04 -0.03,-0.08 -0.05,-0.12 z m -7.74,-3.31 c 0,0.11 -0.01,0.23 -0.01,0.34 -0.01,0.35 -0.03,0.69 -0.05,1.04 -0.04,0.06 -0.05,0.13 -0.02,0.2 0,0.01 0.01,0.02 0.01,0.02 -0.01,0.19 -0.03,0.39 -0.04,0.58 -0.42,0.4 -0.86,0.79 -1.31,1.17 -0.02,-0.11 -0.04,-0.23 -0.04,-0.34 -0.01,-0.38 0.05,-0.75 0.18,-1.11 0.03,-0.09 -0.04,-0.2 -0.12,-0.22 -0.1,-0.03 -0.19,0.03 -0.22,0.12 -0.15,0.39 -0.22,0.81 -0.21,1.22 0,0.2 0.03,0.4 0.07,0.6 -0.27,0.22 -0.53,0.45 -0.82,0.65 -0.09,0.06 -0.18,0.11 -0.27,0.17 0,-0.15 0,-0.29 0,-0.44 l -0.01,-1.76 c 1.07,-0.63 2.06,-1.37 2.86,-2.24 z m -3.23,4.01 c 0,0.23 0,0.45 0,0.68 -0.35,0.22 -0.7,0.42 -1.06,0.62 0,-0.08 0,-0.15 0,-0.23 0,-0.68 -0.01,-1.36 -0.01,-2.03 0,-0.01 0,-0.01 -0.01,-0.01 0.37,-0.18 0.73,-0.37 1.09,-0.58 z m -1.35,1.07 c 0,0.13 0,0.25 0,0.38 -0.13,0.07 -0.26,0.14 -0.39,0.21 -0.22,-0.67 -0.45,-1.34 -0.67,-2.02 0.36,-0.15 0.71,-0.31 1.07,-0.48 0,0.63 -0.01,1.27 -0.01,1.91 z m 2.72,1.03 c 0.04,0.41 0.13,0.81 0.26,1.19 0.05,0.15 0.14,0.27 0.26,0.37 -0.01,0.02 -0.01,0.03 -0.03,0.07 -0.06,0.12 -0.12,0.24 -0.17,0.37 -0.02,0.04 -0.03,0.08 -0.05,0.13 0,0.01 -0.01,0.02 -0.02,0.03 -0.04,0.09 -0.08,0.19 -0.12,0.29 0,0.01 -0.01,0.01 -0.01,0.02 -0.05,0.1 -0.09,0.2 -0.14,0.29 -0.1,0.19 -0.21,0.37 -0.33,0.54 -0.02,0.03 -0.04,0.06 -0.06,0.08 -0.01,0.01 -0.02,0.03 -0.04,0.05 -0.07,0.08 -0.14,0.17 -0.22,0.25 -0.14,0.15 -0.3,0.29 -0.46,0.42 0,0 -0.01,0 -0.01,0.01 -0.05,0.03 -0.1,0.07 -0.15,0.1 -0.08,0.05 -0.16,0.1 -0.24,0.15 -0.33,-1 -0.66,-2 -0.99,-3 0.87,-0.39 1.72,-0.84 2.52,-1.36 z m 3.05,13.37 c -0.16,-0.06 -0.39,-0.01 -0.56,0.01 -0.19,0.02 -0.37,0.04 -0.56,0.06 -0.14,0.02 -0.29,0.03 -0.43,0.05 -0.16,-0.47 -0.31,-0.94 -0.47,-1.41 0.03,0 0.05,0 0.08,-0.01 0.29,-0.13 0.62,-0.19 0.94,-0.19 0.15,0 0.31,0.02 0.46,0.05 0.08,0.02 0.16,0.04 0.23,0.06 0.09,0.03 0.17,0.07 0.27,0.06 0.03,0 0.04,-0.03 0.06,-0.04 0.06,0.24 0.1,0.48 0.19,0.71 0.29,0.73 0.69,1.4 1.24,1.96 0.16,0.16 0.35,0.33 0.55,0.48 -0.33,0.06 -0.66,0.11 -0.98,0.17 -0.62,0.1 -1.24,0.2 -1.85,0.35 -0.04,-0.11 -0.07,-0.21 -0.11,-0.32 0.05,0.01 0.11,0.02 0.16,0.02 0.11,0.02 0.23,0.03 0.34,0.05 0.13,0.02 0.27,0.05 0.4,0.05 0.05,0 0.09,-0.02 0.12,-0.04 0.05,-0.01 0.09,-0.02 0.13,-0.05 0.06,-0.05 0.07,-0.12 0.02,-0.18 -0.03,-0.04 -0.07,-0.06 -0.11,-0.08 -0.03,-0.03 -0.07,-0.06 -0.1,-0.07 -0.12,-0.03 -0.26,-0.03 -0.38,-0.05 -0.12,-0.01 -0.24,-0.02 -0.36,-0.04 l -0.35,-0.03 c -0.12,-0.37 -0.24,-0.74 -0.37,-1.11 0.11,-0.01 0.23,-0.02 0.34,-0.03 0.19,-0.02 0.37,-0.03 0.56,-0.05 0.18,-0.02 0.41,-0.01 0.57,-0.1 0.13,-0.07 0.09,-0.23 -0.03,-0.28 z m -0.75,8.9 c -1.07,0.15 -2.12,0.4 -3.19,0.51 -1.21,0.13 -2.43,0.17 -3.65,0.18 -3.97,0.04 -7.97,-0.11 -11.86,0.83 -1.66,0.4 -3.28,1.02 -4.75,1.9 -0.72,0.43 -1.38,0.94 -2,1.51 -0.23,0.21 -0.48,0.45 -0.72,0.69 -0.17,-0.32 -0.34,-0.64 -0.54,-0.95 0,0 -0.01,-0.01 -0.01,-0.01 0,0 -0.01,-0.01 -0.01,-0.02 -0.18,-0.27 -0.39,-0.52 -0.6,-0.77 0.63,-0.6 1.25,-1.2 1.86,-1.81 0.35,-0.35 0.71,-0.69 1.03,-1.07 0.12,-0.14 0.27,-0.31 0.41,-0.49 0.09,-0.05 0.19,-0.09 0.27,-0.18 0.09,-0.09 0.17,-0.17 0.26,-0.26 0.8,0.1 1.64,-0.16 2.44,-0.29 0.98,-0.16 1.96,-0.34 2.94,-0.48 1.97,-0.26 3.94,-0.49 5.91,-0.68 2.01,-0.19 4.03,-0.34 6.05,-0.48 0.95,-0.07 1.9,-0.15 2.85,-0.21 0.85,-0.05 1.74,-0.05 2.59,-0.15 0.23,0.77 0.48,1.5 0.72,2.23 z m -70.81,-2.55 c 0.87,0.1 1.74,0.15 2.61,0.2 1.7,0.09 3.41,0.17 5.11,0.23 3.33,0.12 6.66,0.15 9.99,0.12 6.74,-0.06 13.48,-0.35 20.2,-0.87 1.9,-0.15 3.79,-0.31 5.69,-0.5 1.68,-0.16 3.46,-0.33 5.07,-0.86 -0.7,0.77 -1.42,1.51 -2.15,2.25 -0.32,-0.03 -0.65,-0.01 -0.99,0.03 -0.75,0.08 -1.49,0.17 -2.24,0.25 -1.42,0.15 -2.84,0.29 -4.26,0.42 -2.88,0.26 -5.76,0.47 -8.65,0.64 -5.77,0.33 -11.56,0.44 -17.34,0.39 -1.58,-0.01 -3.17,-0.07 -4.75,-0.09 -1.62,-0.02 -3.32,-0.18 -4.92,0.09 -0.41,0.07 -0.5,0.47 -0.39,0.8 -0.05,-0.08 -0.1,-0.17 -0.19,-0.24 -1.08,-0.94 -2.16,-1.89 -3.21,-2.89 0.16,0 0.29,0.02 0.42,0.03 z m 2.73,11.35 c -0.12,0 -0.24,-0.01 -0.36,-0.01 -0.06,-0.05 -0.11,-0.12 -0.18,-0.16 -0.13,-0.08 -0.24,0.03 -0.25,0.15 -0.3,-0.01 -0.6,-0.02 -0.9,-0.03 -0.08,0 -0.17,-0.01 -0.25,-0.01 -0.01,-0.07 -0.01,-0.13 -0.02,-0.2 -0.04,-0.39 -0.07,-0.78 -0.11,-1.16 -0.02,-0.24 -0.4,-0.25 -0.38,0 0.03,0.39 0.05,0.79 0.08,1.18 0,0.06 0.01,0.11 0.01,0.17 -0.46,-0.01 -0.92,-0.03 -1.38,-0.04 -0.01,-0.18 -0.02,-0.36 -0.01,-0.53 0.03,-0.43 0.13,-0.87 0.31,-1.27 0.04,-0.1 0.03,-0.22 -0.07,-0.28 -0.09,-0.05 -0.23,-0.03 -0.28,0.07 -0.2,0.45 -0.33,0.93 -0.37,1.42 -0.02,0.19 -0.01,0.38 0,0.57 -0.38,-0.01 -0.76,-0.02 -1.14,-0.03 -0.04,0 -0.09,0 -0.13,0 0,-0.16 0,-0.33 0,-0.49 0,-0.39 0,-0.77 0,-1.16 0,-0.24 -0.38,-0.24 -0.38,0 0,0.39 0,0.77 0,1.16 0,0.16 0,0.32 0,0.48 -0.47,-0.02 -0.93,-0.03 -1.4,-0.05 0,-0.09 0.01,-0.18 0.01,-0.27 0,-0.22 0,-0.43 -0.01,-0.65 0,-0.42 -0.01,-0.85 -0.01,-1.27 0,-0.25 -0.38,-0.25 -0.38,0 0,0.42 -0.01,0.85 -0.01,1.27 0,0.21 0,0.41 -0.01,0.62 0,0.09 0,0.19 0.01,0.28 -0.63,-0.02 -1.26,-0.05 -1.88,-0.07 0,0 0,0 0,0 0.12,-0.15 0.08,-0.4 0.08,-0.58 0.01,-0.19 0,-0.37 0,-0.56 0,-0.39 0,-0.77 0,-1.16 0,-0.25 -0.38,-0.25 -0.38,0 0,0.39 0,0.77 0,1.16 0,0.19 0,0.37 0,0.56 0,0.18 -0.03,0.43 0.08,0.57 -0.92,-0.03 -1.85,-0.07 -2.77,-0.1 0,-0.07 -0.02,-0.13 -0.06,-0.2 -0.04,-0.07 -0.08,-0.14 -0.11,-0.21 -0.07,-0.14 -0.12,-0.28 -0.15,-0.43 -0.07,-0.3 -0.08,-0.61 -0.02,-0.91 0.02,-0.09 -0.03,-0.18 -0.12,-0.21 -0.08,-0.02 -0.19,0.03 -0.21,0.12 -0.07,0.35 -0.07,0.71 0.01,1.06 0.04,0.17 0.1,0.33 0.17,0.49 0.04,0.08 0.08,0.16 0.13,0.23 0.01,0.01 0.02,0.03 0.03,0.04 -0.46,-0.02 -0.93,-0.03 -1.39,-0.05 -0.03,-0.07 -0.06,-0.13 -0.09,-0.2 -0.07,-0.15 -0.12,-0.31 -0.15,-0.48 -0.06,-0.33 -0.02,-0.67 0.1,-0.99 0.04,-0.11 -0.05,-0.23 -0.15,-0.26 -0.12,-0.03 -0.22,0.04 -0.26,0.15 -0.16,0.38 -0.19,0.8 -0.13,1.2 0.03,0.19 0.09,0.38 0.17,0.55 -0.32,-0.01 -0.65,-0.02 -0.97,-0.03 -0.01,-0.01 -0.01,-0.02 -0.02,-0.02 -0.11,-0.08 -0.21,-0.19 -0.3,-0.3 -0.02,-0.03 -0.08,-0.1 -0.11,-0.15 -0.04,-0.06 -0.08,-0.13 -0.11,-0.19 -0.01,-0.01 -0.01,-0.03 -0.02,-0.04 0.01,0.02 -0.01,-0.02 -0.01,-0.02 -0.01,-0.03 -0.02,-0.07 -0.04,-0.1 -0.02,-0.07 -0.04,-0.14 -0.05,-0.22 0,-0.01 -0.01,-0.05 0,-0.02 0,-0.02 0,-0.04 -0.01,-0.06 0,-0.04 0,-0.07 -0.01,-0.11 0,-0.08 0,-0.16 0.01,-0.23 0.01,-0.1 -0.09,-0.19 -0.18,-0.21 -0.09,-0.01 -0.21,0.05 -0.23,0.15 -0.06,0.37 0,0.73 0.15,1.07 0.07,0.16 0.17,0.31 0.29,0.44 -0.5,-0.02 -1,-0.04 -1.5,-0.05 -0.01,-0.08 -0.02,-0.17 -0.03,-0.24 -0.02,-0.17 -0.04,-0.34 -0.06,-0.51 -0.04,-0.35 -0.08,-0.7 -0.12,-1.06 -0.01,-0.08 -0.07,-0.16 -0.16,-0.16 -0.08,0 -0.17,0.07 -0.16,0.16 0.03,0.36 0.06,0.72 0.09,1.08 0.02,0.18 0.03,0.35 0.04,0.53 0.01,0.06 0.01,0.12 0.02,0.19 -0.4,-0.01 -0.8,-0.03 -1.2,-0.04 -0.04,-0.14 -0.08,-0.28 -0.11,-0.41 -0.06,-0.29 -0.11,-0.57 -0.14,-0.87 -0.07,-0.61 -0.06,-1.21 0.03,-1.82 0,0 0,0 0,0 2.08,0.03 4.16,-0.13 6.24,-0.21 3.36,-0.13 6.85,-0.01 10,1.32 0.81,0.34 1.59,0.78 2.3,1.3 0.35,0.25 0.67,0.54 0.98,0.84 0.17,0.17 0.32,0.36 0.47,0.53 -0.11,-0.01 -0.23,-0.02 -0.37,-0.02 z m -21.05,-0.73 c 0,-0.03 0,-0.05 0,-0.08 0,-0.2 0,-0.41 0,-0.61 0,-0.16 -0.25,-0.16 -0.25,0 0,0.2 0,0.41 0,0.61 0,0.02 0,0.05 0,0.07 -0.32,-0.01 -0.63,-0.02 -0.95,-0.03 -0.01,-0.07 -0.02,-0.14 -0.03,-0.19 -0.02,-0.14 -0.03,-0.27 -0.05,-0.41 -0.04,-0.28 -0.07,-0.56 -0.11,-0.85 -0.01,-0.09 -0.07,-0.17 -0.17,-0.17 -0.08,0 -0.18,0.08 -0.17,0.17 0.03,0.29 0.07,0.57 0.1,0.86 0.02,0.14 0.03,0.28 0.05,0.42 0,0.04 0.01,0.1 0.02,0.15 -0.24,-0.01 -0.49,-0.02 -0.73,-0.02 -0.08,0 -0.17,-0.01 -0.25,-0.01 -0.02,-0.13 -0.05,-0.26 -0.08,-0.39 -0.07,-0.35 -0.14,-0.69 -0.21,-1.04 -0.04,-0.18 -0.32,-0.11 -0.28,0.08 0.07,0.34 0.14,0.68 0.2,1.02 0.02,0.11 0.04,0.22 0.07,0.32 -0.66,-0.03 -1.32,-0.07 -1.97,-0.07 -0.02,-0.06 -0.05,-0.12 -0.07,-0.19 -0.1,-0.37 -0.13,-0.75 -0.08,-1.13 0.01,-0.08 -0.08,-0.16 -0.16,-0.16 -0.09,0 -0.15,0.07 -0.16,0.16 -0.05,0.41 -0.02,0.83 0.1,1.23 0.01,0.03 0.03,0.06 0.04,0.09 -0.09,0 -0.18,0.01 -0.28,0.02 -0.07,-0.2 -0.14,-0.41 -0.18,-0.62 0,-0.01 0,-0.01 0,-0.02 -0.02,-0.4 -0.02,-0.8 -0.03,-1.2 0,0 0,0 0,0 0.01,-0.05 0.02,-0.1 0.03,-0.14 0.02,-0.12 0.05,-0.24 0.09,-0.35 0.03,-0.1 0.06,-0.21 0.1,-0.31 0.02,-0.05 0.03,-0.09 0.05,-0.14 0.01,-0.01 0.01,-0.01 0.01,-0.02 0,-0.01 0.01,-0.01 0.02,-0.03 0.09,-0.2 0.19,-0.39 0.31,-0.57 0.08,-0.12 0.17,-0.24 0.25,-0.37 0.94,0.42 1.95,0.55 2.97,0.68 0.98,0.12 1.96,0.17 2.94,0.19 -0.1,0.61 -0.15,1.24 -0.11,1.85 0.02,0.32 0.06,0.63 0.12,0.95 0.02,0.09 0.04,0.19 0.07,0.28 -0.42,0 -0.82,-0.02 -1.22,-0.03 z m -7.81,-3.04 c 0.01,-0.14 0,-0.29 0,-0.42 -0.01,-0.3 -0.01,-0.59 -0.02,-0.89 -0.01,-0.56 -0.03,-1.11 -0.05,-1.67 -0.03,-1.09 -0.07,-2.19 -0.1,-3.28 0.89,0.16 1.78,0.31 2.66,0.46 -0.07,-0.67 -0.12,-1.34 -0.14,-2.01 -2.32,-0.36 -4.63,-0.79 -6.93,-1.27 0.66,-0.17 1.3,-0.39 1.89,-0.75 0.98,-0.58 1.72,-1.38 2.28,-2.28 0.45,0.29 0.9,0.59 1.35,0.88 0.56,0.37 1.11,0.78 1.72,1.06 0.08,0.03 0.17,-0.06 0.1,-0.12 -0.5,-0.44 -1.1,-0.78 -1.66,-1.13 l -1.39,-0.88 c 0.19,-0.33 0.35,-0.66 0.49,-1.01 0.17,-0.21 0.28,-0.45 0.34,-0.71 0.16,0.43 0.41,0.82 0.75,1.11 0.02,0.02 0.04,0.03 0.06,0.05 -0.01,0.1 0.06,0.22 0.19,0.2 0.02,0 0.04,-0.01 0.06,-0.01 0.33,0.21 0.71,0.36 1.09,0.36 0.08,0 0.1,-0.12 0.02,-0.14 -0.23,-0.07 -0.46,-0.12 -0.67,-0.23 -0.03,-0.01 -0.05,-0.03 -0.07,-0.05 0.47,-0.07 0.94,-0.15 1.42,-0.22 0.31,-0.05 0.61,-0.09 0.92,-0.14 0.09,-0.01 0.19,-0.03 0.28,-0.04 -0.68,2.64 -1.35,5.28 -2.04,7.91 -0.26,1.01 -0.53,2.01 -0.81,3.01 -0.06,0.22 -0.03,0.41 0.03,0.58 -0.03,0.03 -0.06,0.06 -0.09,0.1 0.03,-0.24 0.02,-0.49 0.02,-0.73 0,-0.28 -0.01,-0.57 -0.01,-0.85 -0.01,-0.58 -0.02,-1.15 -0.02,-1.73 0,-0.22 -0.34,-0.22 -0.34,0 0,0.58 -0.01,1.15 -0.02,1.73 0,0.28 -0.01,0.57 -0.01,0.85 0,0.29 -0.03,0.58 0.03,0.86 0.01,0.07 0.08,0.11 0.14,0.12 -0.13,0.18 -0.25,0.38 -0.35,0.58 -0.01,-0.26 -0.05,-0.53 -0.09,-0.78 -0.07,-0.41 -0.13,-0.81 -0.2,-1.22 -0.13,-0.8 -0.26,-1.59 -0.39,-2.39 -0.03,-0.2 -0.34,-0.11 -0.3,0.08 0.12,0.78 0.24,1.57 0.36,2.35 l 0.18,1.17 c 0.05,0.35 0.06,0.78 0.25,1.09 0.01,0.02 0.03,0.02 0.05,0.02 -0.07,0.16 -0.14,0.33 -0.2,0.49 0,0.01 0,0.02 -0.01,0.03 -0.26,-0.02 -0.51,-0.08 -0.77,-0.14 z m -1.46,-0.32 c -0.03,-0.1 -0.06,-0.2 -0.09,-0.3 -0.13,-0.46 -0.25,-0.93 -0.34,-1.41 -0.19,-0.99 -0.27,-1.99 -0.24,-3 0,-0.2 -0.3,-0.2 -0.31,0 -0.04,1.02 0.02,2.04 0.18,3.05 0.08,0.49 0.19,0.99 0.32,1.47 0.01,0.03 0.02,0.06 0.03,0.09 -0.34,-0.08 -0.68,-0.16 -1.02,-0.24 0,-0.12 -0.01,-0.23 -0.01,-0.35 -0.02,-0.49 -0.03,-0.98 -0.05,-1.47 -0.03,-0.98 -0.09,-1.97 -0.12,-2.95 0,-0.12 -0.18,-0.12 -0.19,-0.01 0,0 0,0 0,0 0.01,-0.22 0,-0.44 0,-0.66 0,-0.25 0,-0.5 0,-0.75 0.93,0.19 1.86,0.38 2.8,0.54 0.02,1.13 0.05,2.26 0.07,3.4 0.01,0.58 0.02,1.15 0.04,1.73 0.01,0.34 -0.02,0.74 0.02,1.11 -0.37,-0.09 -0.73,-0.17 -1.09,-0.25 z m -7.09,-23.79 c -0.95,0.03 -1.92,0.27 -2.82,0.66 0.16,-0.1 0.3,-0.22 0.47,-0.31 0.65,-0.37 1.34,-0.65 2.07,-0.83 0.21,-0.05 0.12,-0.38 -0.09,-0.33 -0.75,0.18 -1.48,0.47 -2.16,0.86 -0.22,0.13 -0.42,0.28 -0.63,0.42 0.13,-0.36 0.26,-0.72 0.39,-1.08 0.95,-0.65 2.05,-1.07 3.24,-1.1 0.15,0 0.15,-0.23 0,-0.23 -1.07,-0.01 -2.13,0.3 -3.06,0.82 0.02,-0.06 0.04,-0.11 0.06,-0.17 0.05,-0.06 0.09,-0.13 0.15,-0.19 0.23,-0.27 0.48,-0.54 0.76,-0.77 0.57,-0.49 1.22,-0.88 1.92,-1.15 0.08,-0.03 0.05,-0.17 -0.04,-0.14 -0.72,0.25 -1.39,0.63 -1.99,1.11 -0.22,0.18 -0.42,0.39 -0.61,0.59 0.24,-0.71 0.47,-1.43 0.67,-2.15 0.17,-0.16 0.33,-0.33 0.51,-0.46 0.68,-0.51 1.45,-0.89 2.27,-1.1 0.11,-0.03 0.06,-0.19 -0.04,-0.16 -0.86,0.2 -1.68,0.57 -2.39,1.09 -0.08,0.06 -0.15,0.14 -0.22,0.2 0.09,-0.32 0.18,-0.64 0.26,-0.97 0.15,-0.25 0.29,-0.5 0.47,-0.73 0.13,-0.12 0.27,-0.24 0.42,-0.34 0.73,-0.5 1.61,-0.79 2.5,-0.76 0.17,0.01 0.21,-0.28 0.04,-0.3 -0.62,-0.09 -1.24,0 -1.82,0.21 0.54,-0.45 1.15,-0.83 1.86,-1.04 0.79,-0.23 1.65,-0.26 2.46,-0.08 0.42,0.1 0.8,0.25 1.19,0.44 0.28,0.14 0.54,0.34 0.81,0.51 -0.02,0.14 -0.06,0.28 -0.07,0.42 -0.05,0.51 -0.01,1.03 0.06,1.54 0,0.02 0.01,0.05 0.01,0.07 -0.03,-0.02 -0.05,-0.05 -0.07,-0.07 -0.38,-0.26 -0.82,-0.41 -1.28,-0.42 -0.13,0 -0.13,0.19 0,0.2 0.42,0.02 0.83,0.16 1.17,0.41 0.09,0.07 0.17,0.16 0.25,0.24 0.02,0.08 0.03,0.17 0.05,0.25 0.07,0.27 0.14,0.61 0.31,0.84 0.13,0.17 0.3,0.3 0.5,0.35 0.49,0.7 1.14,1.28 1.88,1.76 -0.09,0.28 -0.17,0.57 -0.23,0.87 -0.11,0.55 -0.19,1.1 -0.28,1.66 -0.19,1.15 -0.34,2.3 -0.51,3.45 -0.02,0.12 -0.03,0.23 -0.05,0.35 -0.08,-0.14 -0.18,-0.27 -0.26,-0.41 0.04,-0.02 0.08,-0.05 0.08,-0.1 0,-0.53 -0.34,-1.13 -0.61,-1.57 -0.31,-0.5 -0.69,-0.95 -1.14,-1.34 -0.88,-0.76 -1.98,-1.21 -3.14,-1.28 -0.14,-0.01 -0.14,0.21 0,0.22 1.1,0.1 2.15,0.6 2.98,1.32 0.41,0.36 0.76,0.77 1.04,1.23 0.15,0.24 0.27,0.49 0.38,0.75 0.04,0.09 0.06,0.18 0.09,0.28 -0.99,-1.37 -2.37,-2.44 -3.95,-3.03 -1.18,-0.44 -2.54,-0.62 -3.86,-0.51 z m 12.13,-0.59 c -0.03,0.09 -0.06,0.18 -0.08,0.27 -0.35,0.11 -0.71,0.23 -1.08,0.29 -0.16,0.03 -0.32,0.06 -0.48,0.08 0.04,-0.29 0.08,-0.59 0.1,-0.89 0.01,-0.13 0.01,-0.26 0.01,-0.39 0.5,0.24 1.01,0.45 1.53,0.64 z m 1.23,10.67 c -0.53,-0.04 -1.03,-0.27 -1.45,-0.62 0.18,-0.02 0.36,-0.04 0.55,-0.06 0.38,-0.05 0.77,-0.08 1.13,-0.22 -0.07,0.3 -0.15,0.6 -0.23,0.9 z m -3.46,-1.37 c -0.01,-0.1 -0.16,-0.1 -0.15,0 0.02,0.22 0.07,0.42 0.14,0.62 -0.23,0.03 -0.46,0.06 -0.69,0.09 0,-0.01 0,-0.03 0.01,-0.04 l 0.24,-1.67 c 0,-0.03 0.01,-0.05 0.01,-0.08 0.28,-0.03 0.57,-0.05 0.85,-0.08 0.01,0.13 0,0.26 0.05,0.38 0.03,0.07 0.15,0.09 0.16,0 0.02,-0.13 0.02,-0.26 0.03,-0.4 0.07,-0.01 0.14,-0.01 0.2,-0.02 0.01,0.6 0.24,1.17 0.62,1.62 -0.09,0.01 -0.19,0.02 -0.28,0.04 -0.34,0.04 -0.68,0.09 -1.02,0.13 -0.08,-0.19 -0.15,-0.38 -0.17,-0.59 z m 0.07,2.34 c -0.37,-0.31 -0.65,-0.72 -0.79,-1.19 -0.01,-0.02 -0.03,-0.01 -0.05,-0.02 0,-0.01 0.01,-0.03 0.01,-0.04 0.3,-0.04 0.6,-0.07 0.9,-0.11 0.17,0.3 0.4,0.56 0.67,0.78 0.23,0.18 0.49,0.32 0.77,0.41 -0.47,0.08 -0.93,0.17 -1.4,0.25 -0.03,-0.03 -0.07,-0.05 -0.11,-0.08 z m -0.46,-3.83 c 0.04,-0.26 0.07,-0.51 0.11,-0.77 0.05,0 0.09,0.01 0.14,0.01 -0.05,0.08 0.05,0.2 0.14,0.14 0.05,-0.03 0.08,-0.08 0.12,-0.12 0.17,0.01 0.34,0.03 0.5,0.04 -0.04,0.1 -0.1,0.19 -0.13,0.29 -0.03,0.1 -0.05,0.21 -0.07,0.32 -0.26,0.03 -0.54,0.06 -0.81,0.09 z m 2.02,-2.9 c -0.2,0 -0.41,0 -0.61,0.01 -0.12,0 -0.24,0 -0.37,0 0.11,-0.08 0.23,-0.15 0.34,-0.23 0.29,-0.21 0.59,-0.41 0.88,-0.62 0,0.24 0.01,0.48 0.01,0.73 -0.01,0.01 -0.03,0 -0.04,0.02 -0.03,0.03 -0.06,0.07 -0.1,0.1 -0.03,-0.01 -0.07,-0.01 -0.11,-0.01 z m -1.38,-1.68 c 0.07,0 0.14,-0.01 0.21,-0.01 0,0 0,0 0,0 -0.09,0.1 -0.15,0.21 -0.22,0.32 -0.02,0.02 -0.02,0.05 -0.04,0.07 0.02,-0.13 0.03,-0.25 0.05,-0.38 z m -0.23,1.7 c 0,-0.03 0.01,-0.06 0.01,-0.08 0.04,-0.28 0.08,-0.56 0.12,-0.84 0.03,0 0.07,0.01 0.09,-0.01 0.09,-0.08 0.16,-0.18 0.25,-0.26 0.09,-0.09 0.18,-0.16 0.27,-0.24 0.12,-0.11 0.26,-0.21 0.39,-0.31 0.11,-0.01 0.22,-0.01 0.33,-0.02 0.13,-0.01 0.26,-0.01 0.4,-0.02 0,0.18 0,0.35 0,0.53 0,0.03 0,0.07 0,0.1 0,0 -0.01,0 -0.01,0 -0.34,0.24 -0.67,0.48 -1.01,0.71 -0.16,0.12 -0.33,0.23 -0.48,0.35 -0.04,0.03 -0.07,0.06 -0.11,0.08 -0.09,0 -0.17,0.01 -0.25,0.01 z m 1.85,-2.18 c -0.01,0 -0.03,0 -0.04,0 0.02,-0.01 0.03,-0.02 0.04,-0.03 0,0.02 0,0.02 0,0.03 z m -0.1,2.55 c 0.04,0 0.08,0 0.12,0 0,0.13 0,0.25 0.01,0.38 0.02,0.35 0.04,0.69 0.06,1.04 0,0.05 0.01,0.11 0.01,0.16 -0.29,-0.03 -0.58,-0.06 -0.88,-0.07 0.05,-0.07 0.09,-0.15 0.15,-0.21 0.11,-0.12 -0.07,-0.3 -0.18,-0.18 -0.11,0.12 -0.19,0.24 -0.28,0.38 -0.12,-0.01 -0.24,-0.01 -0.36,-0.02 0.03,-0.03 0.07,-0.06 0.09,-0.09 0.17,-0.19 0.34,-0.38 0.51,-0.57 0.26,-0.27 0.5,-0.54 0.75,-0.82 z m -1.02,2.2 c 0.04,-0.13 0.09,-0.25 0.15,-0.37 0.35,0.03 0.7,0.06 1.06,0.06 -0.03,0.13 -0.04,0.26 -0.03,0.39 -0.31,0.03 -0.62,0.06 -0.93,0.09 -0.04,-0.06 -0.13,-0.08 -0.14,0.01 0,0 0,0 0,0 -0.05,0.01 -0.1,0.01 -0.15,0.02 0.02,-0.07 0.02,-0.13 0.04,-0.2 z m 0.29,0.59 c 0.32,-0.03 0.64,-0.06 0.96,-0.09 0,0 0.01,0 0.01,0 0.06,0.28 0.16,0.55 0.3,0.79 0.1,0.17 0.23,0.33 0.37,0.47 0.09,0.09 0.2,0.19 0.31,0.25 0.01,0.01 0.03,0.01 0.04,0.01 -0.17,0.02 -0.35,0.04 -0.52,0.07 -0.28,0.03 -0.57,0.07 -0.85,0.11 -0.39,-0.46 -0.62,-1.02 -0.62,-1.61 z m 0.85,-5.82 c -0.05,0.02 -0.11,0.03 -0.16,0.05 -0.24,0.1 -0.47,0.23 -0.69,0.37 -0.05,0.03 -0.08,0.08 -0.13,0.12 -0.2,0.01 -0.41,0.03 -0.61,0.04 0.04,-0.27 0.08,-0.54 0.11,-0.81 0.03,0 0.06,0.01 0.1,0.01 0.3,0 0.6,-0.03 0.9,-0.07 0.17,-0.02 0.33,-0.08 0.5,-0.11 -0.01,0.12 -0.02,0.26 -0.02,0.4 z m -1.93,3.07 c 0,0 0.01,0 0.01,0 0.04,-0.02 0.07,-0.04 0.1,-0.06 0.31,0 0.63,0.01 0.94,0.01 0.13,0 0.25,0 0.38,0 -0.19,0.21 -0.38,0.41 -0.57,0.62 -0.17,0.18 -0.34,0.36 -0.5,0.55 -0.09,0.1 -0.18,0.2 -0.26,0.3 -0.1,-0.01 -0.2,-0.01 -0.3,-0.02 0.07,-0.46 0.13,-0.93 0.2,-1.4 z m 3.39,5.79 c -0.15,0.03 -0.3,0.07 -0.43,0.09 -0.26,0.05 -0.52,0.1 -0.78,0.14 -0.11,-0.01 -0.22,-0.02 -0.33,-0.05 -0.3,-0.08 -0.59,-0.22 -0.85,-0.41 -0.24,-0.18 -0.44,-0.4 -0.61,-0.65 0.3,-0.03 0.59,-0.07 0.89,-0.1 0.19,-0.02 0.39,-0.05 0.58,-0.07 0.46,0.39 1.02,0.63 1.63,0.65 -0.04,0.14 -0.07,0.27 -0.1,0.4 z m 2.11,-8.21 c -0.01,-0.19 -0.02,-0.39 -0.03,-0.58 l -0.08,-1.39 c 0.19,0.05 0.38,0.11 0.57,0.16 -0.14,0.61 -0.3,1.21 -0.46,1.81 z m 0.95,-3.65 c -0.01,0 -0.01,-0.01 0,0 -0.04,-0.16 -0.07,-0.31 -0.1,-0.46 -0.07,-0.31 -0.14,-0.62 -0.21,-0.93 -0.05,-0.22 -0.38,-0.12 -0.33,0.09 0.07,0.31 0.14,0.62 0.21,0.93 l 0.1,0.45 c 0.02,0.1 0.04,0.2 0.08,0.3 -0.34,-0.09 -0.69,-0.17 -1.04,-0.26 0,-0.09 -0.01,-0.19 -0.01,-0.27 0,-0.25 0,-0.49 0,-0.74 0,-0.48 0,-0.97 -0.01,-1.45 0,-0.2 -0.31,-0.2 -0.31,0 0,0.48 0,0.97 -0.01,1.45 0,0.24 0,0.47 0,0.71 0,0.06 0,0.14 -0.01,0.21 -0.45,-0.11 -0.91,-0.24 -1.37,-0.37 -0.02,-0.14 -0.03,-0.27 -0.04,-0.41 -0.03,-0.27 -0.07,-0.53 -0.1,-0.8 -0.01,-0.06 -0.04,-0.11 -0.11,-0.11 -0.05,0 -0.12,0.05 -0.11,0.11 0.03,0.27 0.07,0.54 0.1,0.81 0.01,0.11 0.03,0.22 0.05,0.33 -0.86,-0.25 -1.7,-0.55 -2.48,-0.93 0,-0.03 0,-0.06 0,-0.09 0,-0.18 -0.11,-0.29 -0.23,-0.36 -0.01,-0.04 -0.03,-0.09 -0.04,-0.13 -0.06,-0.24 -0.11,-0.48 -0.15,-0.72 -0.07,-0.5 -0.07,-1.01 -0.02,-1.52 0.02,-0.14 -0.2,-0.13 -0.21,0 -0.07,0.52 -0.07,1.05 0,1.58 0.03,0.24 0.08,0.49 0.14,0.73 0,0 0,0.01 0,0.01 -0.08,0.01 -0.15,0.04 -0.21,0.09 -0.54,-0.33 -1.04,-0.7 -1.45,-1.15 0.01,-0.06 0.03,-0.11 0.02,-0.17 -0.04,-0.46 -0.26,-0.91 -0.34,-1.37 -0.07,-0.35 -0.08,-0.78 -0.07,-1.22 0,-0.07 0.01,-0.14 0.01,-0.21 0.15,0.16 0.32,0.31 0.49,0.45 0.02,0.23 0.03,0.46 0.06,0.69 0.03,0.34 0.05,0.69 0.13,1.02 0.04,0.18 0.31,0.14 0.32,-0.04 0.01,-0.33 -0.03,-0.67 -0.07,-1 -0.01,-0.11 -0.03,-0.23 -0.04,-0.34 1.25,0.94 2.84,1.55 4.34,2.02 1.17,0.37 2.37,0.68 3.56,0.99 -0.19,0.7 -0.37,1.39 -0.54,2.08 z m 1.56,-6.15 c -0.02,0 -0.04,-0.01 -0.05,-0.01 -0.47,-0.11 -1.08,-0.19 -1.47,-0.52 -0.78,-0.66 0.54,-1.23 1.02,-1.5 0.37,-0.21 0.76,-0.38 1.15,-0.56 -0.22,0.86 -0.43,1.73 -0.65,2.59 z m 5.61,-27.49 c 0.04,0 0.08,0.01 0.12,-0.02 0.04,-0.03 0.09,-0.05 0.13,-0.08 0.02,-0.01 0.05,-0.02 0.07,-0.03 0,0 0,0 0,0 0.01,-0.01 0.03,-0.01 0.04,-0.02 0.1,-0.04 0.21,-0.07 0.32,-0.08 0,0 0,0 0,0 0.01,0 0.02,0 0.03,0 0.03,0 0.06,0 0.08,-0.01 0.06,0 0.11,0 0.17,0 0.1,0 0.19,0.01 0.29,0.02 -0.05,0.19 -0.1,0.39 -0.14,0.58 -0.04,0.01 -0.09,0.02 -0.13,0.03 -0.26,0.05 -0.51,0.1 -0.77,0.15 -0.09,0.02 -0.15,0.13 -0.12,0.22 0.03,0.1 0.12,0.14 0.22,0.12 0.24,-0.04 0.48,-0.08 0.72,-0.12 -0.08,0.32 -0.16,0.65 -0.24,0.97 -0.34,-0.05 -0.66,-0.04 -1,0.01 -0.07,0.01 -0.14,0.04 -0.21,0.05 0.14,-0.6 0.28,-1.19 0.42,-1.79 z m -0.82,8.21 c -0.01,-0.02 -0.01,-0.05 -0.03,-0.06 -0.09,-0.06 -0.2,-0.06 -0.31,-0.06 -0.09,-0.01 -0.19,-0.01 -0.28,-0.01 h -0.48 c 0.04,-0.18 0.09,-0.36 0.13,-0.54 0.32,-0.1 0.64,-0.2 0.97,-0.3 0.09,-0.03 0.18,-0.06 0.28,-0.08 -0.1,0.35 -0.19,0.7 -0.28,1.05 z m -1.2,0.27 c 0.01,0 0.02,0.01 0.03,0.01 h 0.55 c 0.09,0 0.18,0 0.27,-0.01 0.1,-0.01 0.21,-0.01 0.3,-0.06 -0.02,0.09 -0.04,0.18 -0.07,0.27 -0.15,0.07 -0.3,0.13 -0.44,0.2 -0.27,0.12 -0.55,0.24 -0.82,0.36 0.06,-0.25 0.12,-0.51 0.18,-0.77 z m 0.12,4.08 c 0,0 -0.01,0 -0.01,0 -0.08,-0.01 -0.15,-0.02 -0.23,-0.03 l -0.47,-0.06 c -0.05,-0.01 -0.1,-0.01 -0.15,0.02 -0.04,0.02 -0.08,0.07 -0.09,0.12 -0.02,0.09 0.03,0.22 0.14,0.24 l 0.42,0.06 c -0.02,0.01 -0.04,0.01 -0.05,0.02 -0.27,0.11 -0.55,0.22 -0.82,0.33 0.1,-0.43 0.2,-0.86 0.31,-1.28 0.17,-0.07 0.34,-0.15 0.52,-0.19 0.14,-0.03 0.28,-0.06 0.43,-0.07 0.07,-0.01 0.15,-0.01 0.22,-0.01 -0.08,0.28 -0.15,0.57 -0.22,0.85 z m -1.38,1.21 c 0.14,-0.05 0.29,-0.1 0.43,-0.15 -0.04,0.02 -0.07,0.04 -0.11,0.06 -0.11,0.07 -0.23,0.13 -0.34,0.2 0,-0.04 0.01,-0.07 0.02,-0.11 z m -0.27,1.2 c 0.01,0.01 0.02,0.03 0.04,0.03 0.16,0.03 0.31,0.06 0.47,0.07 0.07,0.01 0.14,0.02 0.2,0.02 0.01,0 0.02,0 0.03,0 -0.16,0.03 -0.31,0.07 -0.46,0.12 -0.13,0.04 -0.24,0.12 -0.36,0.17 0.01,-0.13 0.04,-0.27 0.08,-0.41 z m 1.03,0.1 c -0.04,0 -0.08,0.01 -0.12,0.01 0.03,-0.01 0.06,-0.01 0.08,-0.02 0.04,-0.02 0.06,-0.07 0.07,-0.11 -0.01,0.04 -0.02,0.08 -0.03,0.12 z m -1.5,6.05 c -0.32,-0.02 -0.65,-0.02 -0.97,0.01 0.09,-0.28 0.18,-0.57 0.26,-0.86 0,0 0,0 0.01,0 0.02,-0.02 0.04,-0.03 0.06,-0.04 0.05,-0.03 0.09,-0.06 0.14,-0.08 0.03,-0.01 0.05,-0.03 0.08,-0.04 0.01,-0.01 0.02,-0.01 0.04,-0.02 0.01,0 0.01,0 0.01,0 0,0 0,0 0,0 0.01,0 0.04,-0.02 0.05,-0.02 0.01,0 0.02,-0.01 0.02,-0.01 0.03,-0.01 0.06,-0.02 0.08,-0.03 0.05,-0.02 0.11,-0.03 0.16,-0.05 0.05,-0.01 0.11,-0.03 0.16,-0.04 0.03,-0.01 0.05,-0.01 0.08,-0.02 0.06,-0.02 0.09,-0.06 0.12,-0.1 0.04,-0.05 0.02,-0.15 -0.02,-0.19 -0.07,-0.07 -0.14,-0.07 -0.23,-0.07 -0.07,0 -0.15,0.01 -0.22,0.02 -0.13,0.03 -0.26,0.07 -0.38,0.12 -0.01,0.01 -0.02,0.02 -0.03,0.02 0.07,-0.33 0.15,-0.66 0.22,-0.99 0.01,-0.01 0.03,-0.01 0.04,-0.02 0.05,-0.05 0.1,-0.08 0.15,-0.12 0.02,0.14 0.14,0.21 0.27,0.18 0.07,-0.01 0.14,-0.03 0.21,-0.05 0.04,0.03 0.07,0.06 0.13,0.06 0.05,0 0.1,0 0.15,0 -0.21,0.78 -0.4,1.56 -0.59,2.34 z m 0.69,-2.8 c -0.05,0 -0.09,-0.01 -0.14,-0.01 -0.08,-0.04 -0.17,-0.05 -0.25,0 0,0 0,0 0,0 -0.03,0 -0.06,0 -0.1,0.01 0.06,-0.04 0.13,-0.08 0.19,-0.11 0.03,-0.01 0.06,-0.03 0.09,-0.04 0.01,0 0.03,-0.01 0.03,-0.01 0.02,-0.01 0.03,-0.01 0.05,-0.02 0.06,-0.02 0.12,-0.04 0.19,-0.06 -0.02,0.07 -0.04,0.16 -0.06,0.24 z m 0.2,-0.79 c -0.08,0 -0.16,0.02 -0.23,0.04 -0.17,0.05 -0.34,0.12 -0.5,0.2 -0.14,0.07 -0.25,0.18 -0.38,0.26 0.04,-0.19 0.09,-0.38 0.13,-0.57 0.06,0.05 0.14,0.07 0.22,0.03 0.2,-0.11 0.41,-0.23 0.61,-0.34 0.1,-0.06 0.19,-0.13 0.28,-0.19 0,0 0.01,0 0.01,-0.01 -0.05,0.2 -0.1,0.39 -0.14,0.58 z m 0.24,-0.97 c -0.1,0.03 -0.19,0.07 -0.28,0.11 -0.1,0.05 -0.21,0.08 -0.31,0.14 -0.18,0.1 -0.36,0.2 -0.55,0.3 0.08,-0.38 0.17,-0.75 0.25,-1.13 0.18,-0.09 0.37,-0.19 0.57,-0.25 0.18,-0.05 0.37,-0.07 0.55,-0.1 -0.08,0.31 -0.16,0.62 -0.23,0.93 z m 0.41,-1.65 c 0,-0.05 -0.01,-0.1 -0.04,-0.13 -0.04,-0.04 -0.09,-0.08 -0.15,-0.09 -0.03,-0.01 -0.06,-0.01 -0.09,-0.02 -0.07,-0.01 -0.14,-0.03 -0.21,-0.04 -0.14,-0.03 -0.28,-0.04 -0.42,-0.06 -0.02,0 -0.05,0.01 -0.07,0.01 0.02,-0.08 0.04,-0.16 0.06,-0.25 0.06,0.03 0.13,0.04 0.19,0 0.16,-0.09 0.31,-0.18 0.47,-0.27 0.08,-0.04 0.15,-0.09 0.23,-0.13 0.09,-0.05 0.16,-0.12 0.24,-0.19 0.06,-0.05 0.07,-0.16 0.03,-0.22 -0.02,-0.03 -0.05,-0.06 -0.09,-0.08 0.05,-0.02 0.1,-0.03 0.14,-0.05 0.03,-0.01 0.06,-0.02 0.09,-0.03 -0.12,0.52 -0.25,1.03 -0.38,1.55 z m 0.92,-3.72 c -0.28,-0.01 -0.58,0.03 -0.85,0.09 -0.11,0.02 -0.2,0.08 -0.3,0.12 0.06,-0.25 0.12,-0.51 0.18,-0.76 0.1,0.01 0.2,0.03 0.3,0.04 0.09,0.01 0.18,0.01 0.27,0.01 0.09,0 0.18,0.01 0.26,-0.02 0.11,-0.04 0.12,-0.17 0.03,-0.24 -0.07,-0.05 -0.15,-0.07 -0.24,-0.09 -0.08,-0.02 -0.15,-0.05 -0.23,-0.06 -0.1,-0.02 -0.21,-0.03 -0.31,-0.04 0.04,-0.15 0.07,-0.3 0.11,-0.45 0.01,0 0.03,0 0.04,0 0.37,-0.16 0.75,-0.32 1.12,-0.48 0.03,-0.01 0.06,-0.02 0.09,-0.04 -0.15,0.64 -0.31,1.28 -0.47,1.92 z m 3.5,-14.13 c -0.1,0.01 -0.21,0.02 -0.31,0.03 -0.23,0.02 -0.47,0.05 -0.7,0.07 -0.11,0.01 -0.2,0.08 -0.2,0.2 0,0.1 0.09,0.21 0.2,0.2 l 0.72,-0.07 c 0.07,-0.01 0.13,-0.02 0.2,-0.02 -0.04,0.16 -0.08,0.32 -0.12,0.48 -0.05,0.02 -0.09,0.03 -0.14,0.05 -0.2,0.07 -0.4,0.14 -0.59,0.21 -0.11,0.04 -0.19,0.15 -0.15,0.26 0.03,0.11 0.15,0.19 0.26,0.15 l 0.49,-0.16 c -0.08,0.32 -0.16,0.63 -0.23,0.95 -0.02,-0.01 -0.03,-0.02 -0.05,-0.02 -0.22,-0.09 -0.47,-0.08 -0.71,-0.05 -0.17,0.02 -0.33,0.11 -0.49,0.18 0.28,-1.18 0.56,-2.36 0.85,-3.53 0.05,0.02 0.09,0.03 0.14,0.01 0.23,-0.09 0.45,-0.18 0.68,-0.27 0.18,-0.07 0.37,-0.14 0.54,-0.24 -0.13,0.51 -0.26,1.04 -0.39,1.57 z m 0.5,-2.02 c -0.03,-0.01 -0.05,-0.03 -0.08,-0.02 -0.26,0.02 -0.5,0.16 -0.74,0.26 -0.18,0.08 -0.35,0.15 -0.53,0.23 0.03,-0.14 0.07,-0.28 0.1,-0.42 0.07,0.02 0.15,0.01 0.2,-0.04 0.18,-0.16 0.42,-0.25 0.66,-0.26 0.14,0 0.23,0.01 0.37,0.04 0.03,0.01 0.05,0.02 0.07,0.03 -0.02,0.06 -0.04,0.12 -0.05,0.18 z m 0.61,-2.48 c -0.03,0.01 -0.07,0.01 -0.1,0.02 -0.11,0.02 -0.23,0.05 -0.34,0.07 -0.23,0.05 -0.45,0.09 -0.68,0.14 -0.11,0.02 -0.18,0.16 -0.15,0.26 0.04,0.12 0.15,0.17 0.26,0.15 0.23,-0.04 0.45,-0.09 0.68,-0.13 0.07,-0.01 0.14,-0.03 0.2,-0.04 -0.12,0.48 -0.24,0.96 -0.35,1.44 -0.14,-0.05 -0.28,-0.09 -0.43,-0.1 -0.31,-0.01 -0.6,0.09 -0.86,0.26 0.23,-0.96 0.46,-1.93 0.69,-2.89 0.02,0 0.05,0.01 0.07,0.01 0.26,-0.04 0.52,-0.09 0.78,-0.13 0.16,-0.03 0.31,-0.06 0.47,-0.09 -0.07,0.34 -0.15,0.68 -0.24,1.03 z m 0.36,-1.47 c -0.23,0.02 -0.45,0.05 -0.67,0.09 -0.21,0.04 -0.43,0.07 -0.64,0.11 0.16,-0.67 0.32,-1.34 0.48,-2 0.05,-0.22 0.1,-0.43 0.16,-0.65 0.23,-0.09 0.47,-0.12 0.72,-0.1 0.11,0.01 0.26,0.05 0.39,0.09 0.05,0.02 0.11,0.04 0.16,0.05 -0.05,0.22 -0.11,0.44 -0.16,0.67 -0.01,0 -0.02,0 -0.02,0 -0.09,0.02 -0.18,0.04 -0.27,0.07 -0.18,0.05 -0.37,0.09 -0.55,0.14 -0.13,0.03 -0.22,0.19 -0.18,0.32 0.04,0.14 0.18,0.22 0.32,0.18 0.18,-0.05 0.37,-0.09 0.55,-0.14 0,0 0.01,0 0.01,0 -0.11,0.38 -0.21,0.78 -0.3,1.17 z m 0.68,-2.83 c -0.03,-0.02 -0.06,-0.04 -0.09,-0.06 -0.18,-0.08 -0.36,-0.11 -0.55,-0.13 -0.21,-0.01 -0.41,0.02 -0.61,0.07 0.07,-0.28 0.14,-0.57 0.2,-0.85 0.04,0.04 0.09,0.06 0.15,0.06 0.38,-0.02 0.76,-0.04 1.14,-0.07 -0.08,0.33 -0.16,0.66 -0.24,0.98 z m 0.7,-5.44 c 0.21,-0.01 0.42,-0.03 0.63,-0.04 -0.02,0.09 -0.05,0.19 -0.07,0.28 -0.01,0 -0.02,0.01 -0.03,0.01 -0.09,0.04 -0.18,0.08 -0.27,0.11 -0.16,0.07 -0.32,0.14 -0.48,0.2 -0.07,0.03 -0.09,0.12 -0.07,0.2 -0.01,0 -0.02,0 -0.03,0.01 -0.01,-0.26 -0.02,-0.53 -0.04,-0.79 0.11,0.01 0.23,0.03 0.36,0.02 z m -0.33,1.2 0.4,-0.05 c -0.13,0.04 -0.27,0.09 -0.4,0.13 0,-0.03 0,-0.06 0,-0.08 z m -0.96,2.23 c 0.3,-0.05 0.66,-0.06 0.92,-0.23 0.13,-0.08 0.22,-0.2 0.29,-0.32 -0.09,0.37 -0.18,0.75 -0.27,1.12 -0.13,0.01 -0.27,0.02 -0.4,0.03 -0.28,0.03 -0.57,0.05 -0.85,0.08 -0.02,0 -0.04,0.02 -0.06,0.03 0.05,-0.23 0.11,-0.45 0.16,-0.68 0.07,-0.01 0.14,-0.02 0.21,-0.03 z m 1.3,-0.92 c 0,-0.05 0.03,-0.1 0.03,-0.16 -0.03,-0.22 -0.16,-0.45 -0.35,-0.58 0.18,-0.05 0.36,-0.1 0.54,-0.15 -0.07,0.29 -0.15,0.59 -0.22,0.89 z m 1.31,-5.42 c 0,-0.02 0,-0.04 0,-0.05 0.01,-0.54 0.03,-1.09 0.04,-1.63 0,-0.18 -0.28,-0.18 -0.29,0 -0.02,0.53 -0.04,1.06 -0.06,1.6 -0.01,0.37 -0.03,0.75 -0.03,1.13 -0.07,0.01 -0.14,0.02 -0.21,0.03 0,-0.28 0,-0.56 0,-0.84 -0.01,-0.68 -0.01,-1.36 -0.02,-2.04 0,-0.16 -0.25,-0.16 -0.25,0 -0.01,0.68 -0.03,1.36 -0.04,2.04 -0.01,0.3 -0.01,0.59 -0.01,0.89 -0.11,0.02 -0.22,0.03 -0.33,0.05 0,-0.03 0,-0.06 0,-0.09 0,-0.32 -0.01,-0.63 -0.03,-0.95 -0.01,-0.31 -0.03,-0.61 -0.05,-0.92 -0.02,-0.31 -0.02,-0.63 -0.09,-0.93 -0.05,-0.23 -0.36,-0.15 -0.38,0.05 -0.03,0.3 0,0.61 0.02,0.92 0.01,0.31 0.02,0.61 0.04,0.92 0.02,0.31 0.04,0.61 0.07,0.92 0,0.05 0.01,0.1 0.02,0.16 -0.06,0.01 -0.12,0.03 -0.18,0.05 -0.05,-0.67 -0.1,-1.34 -0.13,-2 -0.03,-0.57 -0.06,-1.14 -0.09,-1.71 0.19,0.02 0.38,0.05 0.57,0.05 l 0.69,0.02 c 0.23,0.01 0.46,0.01 0.69,0.02 0.11,0 0.21,0.01 0.32,0.01 h 0.16 c 0.04,0 0.07,-0.01 0.11,-0.01 -0.18,0.74 -0.36,1.53 -0.54,2.31 z m 1.52,-6.62 c -0.01,0 -0.02,-0.01 -0.03,-0.01 -0.05,-0.01 -0.11,-0.02 -0.16,-0.03 -0.13,-0.02 -0.26,-0.03 -0.39,-0.03 -0.23,0 -0.46,0.05 -0.67,0.13 0.1,-0.44 0.21,-0.87 0.31,-1.31 0.03,0.11 0.11,0.21 0.23,0.2 0.2,-0.02 0.4,-0.04 0.6,-0.06 0.13,-0.01 0.26,-0.03 0.38,-0.05 -0.09,0.38 -0.18,0.77 -0.27,1.16 z m 0.39,-1.68 c -0.17,0.01 -0.34,0.03 -0.51,0.05 -0.2,0.03 -0.39,0.05 -0.59,0.08 -0.06,0.01 -0.13,0.03 -0.17,0.08 0.08,-0.33 0.16,-0.67 0.24,-1 0.07,-0.04 0.14,-0.07 0.23,-0.1 0.11,-0.04 0.23,-0.07 0.35,-0.09 0.01,0 0.02,0 0.02,0 0,0 0.01,0 0.02,0 0.03,0 0.07,-0.01 0.1,-0.01 0.06,0 0.12,0 0.17,0 0.06,0 0.12,0.01 0.17,0.01 0.03,0 0.07,0.01 0.1,0.01 -0.04,-0.01 -0.02,0 0.05,0.01 0.02,0 0.03,0 0.05,-0.01 -0.08,0.31 -0.16,0.64 -0.23,0.97 z m 0.32,-1.43 c 0,0 0,-0.01 0,0 -0.14,-0.07 -0.32,-0.07 -0.47,-0.07 -0.15,0 -0.29,0.02 -0.44,0.05 -0.12,0.02 -0.22,0.09 -0.34,0.13 0.06,-0.24 0.11,-0.48 0.17,-0.73 0.17,0 0.34,0.01 0.51,0.01 0.1,0 0.19,0 0.29,0.01 0.12,0 0.24,0.02 0.35,-0.02 0.04,-0.01 0.06,-0.04 0.08,-0.06 -0.04,0.23 -0.09,0.45 -0.15,0.68 z m 0.22,-0.96 c -0.03,-0.06 -0.07,-0.11 -0.14,-0.14 -0.11,-0.04 -0.23,-0.02 -0.34,-0.02 l -0.3,0.01 c -0.13,0 -0.26,0.01 -0.39,0.01 0.07,-0.29 0.14,-0.59 0.21,-0.88 0.07,-0.03 0.14,-0.05 0.21,-0.07 0.01,0 0.04,-0.01 0.05,-0.01 0.02,0 0.04,0 0.07,-0.01 0.05,0 0.1,0 0.14,0 0.03,0 0.05,0 0.08,0 0.01,0 0.04,0 0.06,0.01 0.01,0 0.03,0 0.04,0.01 0.03,0 0.05,0.01 0.08,0.02 0.13,0.03 0.3,0.12 0.42,0.02 0.09,-0.07 0.13,-0.15 0.11,-0.27 -0.03,-0.17 -0.26,-0.23 -0.4,-0.26 -0.13,-0.02 -0.26,-0.04 -0.38,-0.03 -0.13,0 -0.24,0.06 -0.36,0.09 0.09,-0.36 0.17,-0.73 0.26,-1.09 0.01,0 0.03,0 0.04,0 0.03,0 0.05,0 0.08,0 0.01,0 0.02,0 0.04,0 0,0 0,0 0,0 0,0 0,0 0.01,0 0,0 0,0 0,0 0.01,0.01 0.02,0.01 0.02,0 0.02,0 0.05,0.01 0.06,0.01 0.03,0.01 0.05,0.01 0.08,0.02 0.05,0.01 0.11,0.03 0.16,0.05 0.01,0 0.02,0.01 0.03,0.01 0,0 0,0 0,0 0,0 0,0 0,0 0.01,0 0,0 0,0 0,0 0,0 0,0 0.01,0 0,0 0,0 0.02,0.01 0.04,0.02 0.06,0.03 0.05,0.03 0.1,0.05 0.15,0.08 0.02,0.01 0.05,0.03 0.07,0.04 0.01,0.01 0.02,0.01 0.03,0.02 0,0 0,0 0,0 0.03,0.03 0.06,0.06 0.1,0.08 0.05,0.03 0.11,0.03 0.16,0.03 0.01,0 0.02,-0.01 0.03,-0.01 -0.2,0.76 -0.37,1.51 -0.54,2.25 z m 1.6,-11.91 c 0.05,0.02 0.1,0.04 0.15,0.02 0.31,-0.1 0.62,-0.21 0.94,-0.31 0.04,-0.01 0.09,-0.03 0.13,-0.04 -0.05,0.23 -0.11,0.46 -0.16,0.7 -0.03,-0.01 -0.06,-0.01 -0.09,-0.01 -0.02,0 -0.05,0 -0.07,0 -0.12,0.01 -0.24,0.04 -0.36,0.08 -0.22,0.08 -0.43,0.21 -0.58,0.4 -0.04,0.04 -0.05,0.09 -0.06,0.14 -0.04,-0.01 -0.07,-0.02 -0.11,-0.03 0.06,-0.32 0.13,-0.63 0.21,-0.95 z m 0.4,1.1 c 0.01,0 0.01,-0.01 0.02,-0.01 0.02,-0.01 0.04,-0.03 0.06,-0.04 0.03,-0.02 0.07,-0.04 0.11,-0.05 0.01,0 0.02,-0.01 0.03,-0.01 0.02,-0.01 0.04,-0.01 0.07,-0.02 0.02,-0.01 0.04,-0.01 0.06,-0.01 0,0 0.01,0 0.01,0 0.04,0 0.09,-0.01 0.13,-0.01 0.01,0 0.02,0 0.03,0 -0.02,0.11 -0.05,0.21 -0.07,0.32 -0.16,-0.05 -0.31,-0.09 -0.47,-0.14 0.01,-0.01 0.01,-0.02 0.02,-0.03 z m 1.16,-2.96 c -0.07,0.29 -0.14,0.59 -0.2,0.88 -0.14,0.05 -0.28,0.11 -0.42,0.16 -0.27,0.1 -0.55,0.21 -0.82,0.31 0.06,-0.27 0.13,-0.54 0.19,-0.82 0.16,-0.69 0.33,-1.37 0.49,-2.06 0.03,0.01 0.05,0.03 0.08,0.03 0.2,0.01 0.4,0.01 0.6,0.02 0.1,0 0.19,0.01 0.29,0.01 0.04,0 0.09,0 0.13,0.01 -0.03,0.14 -0.07,0.29 -0.1,0.43 -0.16,0.06 -0.32,0.1 -0.48,0.18 -0.26,0.13 -0.49,0.31 -0.71,0.49 -0.2,0.17 0.06,0.51 0.28,0.37 0.11,-0.08 0.23,-0.14 0.35,-0.21 0.04,-0.02 0,0 0.04,-0.02 0.05,-0.02 0.1,-0.04 0.14,-0.06 0.01,0 0.04,-0.02 0.05,-0.02 0.03,-0.01 0.06,-0.02 0.08,-0.03 0.03,-0.01 0.06,-0.01 0.09,-0.02 -0.02,0.11 -0.05,0.23 -0.08,0.35 z m 4.59,-23.69 c 0.15,0.05 0.32,0.07 0.48,0.09 0.05,0.01 0.11,0.01 0.16,0.01 0.02,0.05 0.03,0.1 0.05,0.15 -0.03,0.14 -0.06,0.28 -0.1,0.41 -0.09,-0.02 -0.18,-0.04 -0.27,-0.04 -0.16,0 -0.31,0.07 -0.46,0.11 0.06,-0.23 0.1,-0.48 0.14,-0.73 z m -0.21,1.16 c 0.17,-0.07 0.36,-0.1 0.54,-0.1 0.06,0 0.11,0.01 0.16,0.01 -0.04,0.17 -0.08,0.35 -0.12,0.52 h -0.33 c -0.1,0 -0.19,0.09 -0.19,0.19 0,0.1 0.08,0.19 0.19,0.19 0.08,0 0.16,0 0.24,0 -0.02,0.08 -0.04,0.16 -0.06,0.25 -0.25,0.03 -0.48,0.1 -0.7,0.2 0.1,-0.42 0.19,-0.84 0.27,-1.26 z m -0.37,1.76 c 0.02,0 0.05,0.01 0.07,-0.01 0.2,-0.11 0.41,-0.17 0.63,-0.19 -0.07,0.31 -0.14,0.62 -0.21,0.92 -0.13,0.02 -0.26,0.03 -0.39,0.05 -0.12,0.01 -0.23,0.09 -0.23,0.23 0.01,0.11 0.1,0.24 0.23,0.23 0.09,-0.01 0.19,-0.02 0.28,-0.03 -0.05,0.21 -0.1,0.42 -0.14,0.63 -0.02,0.01 -0.04,0.02 -0.07,0.03 -0.11,0.04 -0.19,0.15 -0.15,0.27 0.02,0.06 0.07,0.11 0.12,0.13 -0.05,0.24 -0.1,0.47 -0.15,0.71 -0.14,0.02 -0.28,0.04 -0.42,0.06 -0.07,0.01 -0.12,0.02 -0.17,0.07 -0.04,0.04 -0.07,0.11 -0.07,0.17 0.01,0.12 0.11,0.26 0.24,0.24 0.1,-0.01 0.21,-0.02 0.31,-0.04 -0.05,0.24 -0.1,0.48 -0.16,0.72 -0.11,0.02 -0.21,0.04 -0.32,0.07 -0.13,0.04 -0.25,0.12 -0.38,0.17 0.05,-0.24 0.12,-0.47 0.17,-0.7 0.28,-1.25 0.55,-2.49 0.81,-3.73 z m -1.99,11.85 c -0.1,0.03 -0.21,0.05 -0.31,0.08 -0.21,0.06 -0.42,0.11 -0.64,0.17 0.12,-0.4 0.24,-0.81 0.35,-1.22 0.26,-0.05 0.52,-0.11 0.77,-0.16 0.03,-0.01 0.05,-0.01 0.08,-0.02 -0.07,0.38 -0.16,0.76 -0.25,1.15 z m -0.73,3.21 c -0.12,0.04 -0.24,0.09 -0.36,0.13 -0.26,0.09 -0.52,0.18 -0.78,0.28 0.1,-0.41 0.2,-0.81 0.3,-1.22 0.16,-0.08 0.33,-0.14 0.51,-0.19 0.18,-0.05 0.36,-0.08 0.54,-0.09 0.02,0 0.03,0 0.05,0 -0.09,0.36 -0.17,0.73 -0.26,1.09 z m 2.14,-9.54 c -0.24,0.05 -0.47,0.1 -0.71,0.15 0.05,-0.21 0.1,-0.42 0.15,-0.63 0.22,-0.12 0.42,-0.21 0.67,-0.27 0.02,0 0.03,-0.01 0.05,-0.01 -0.05,0.26 -0.1,0.51 -0.16,0.76 z m -1.59,3.94 c 0.16,-0.02 0.32,-0.03 0.47,-0.05 0.09,-0.01 0.18,-0.02 0.26,-0.04 -0.06,0.28 -0.13,0.57 -0.19,0.85 -0.1,0.03 -0.2,0.05 -0.3,0.08 -0.18,0.05 -0.36,0.1 -0.55,0.14 0.09,-0.33 0.17,-0.67 0.26,-1 0.03,0.01 0.04,0.02 0.05,0.02 z m 0.97,-1.1 c -0.04,0.18 -0.08,0.36 -0.12,0.54 -0.05,0 -0.11,0 -0.15,0.01 -0.09,0.01 -0.19,0.02 -0.28,0.04 -0.11,0.02 -0.22,0.04 -0.34,0.06 0.01,-0.04 0.02,-0.08 0.03,-0.13 0.04,-0.17 0.08,-0.34 0.12,-0.51 l 0.78,-0.21 c -0.01,0.06 -0.02,0.13 -0.04,0.2 z m 0.02,-0.73 c -0.21,0.06 -0.41,0.13 -0.62,0.19 0.15,-0.59 0.29,-1.18 0.43,-1.77 0.05,0.04 0.12,0.07 0.2,0.06 0.16,-0.03 0.33,-0.06 0.49,-0.08 -0.11,0.52 -0.23,1.04 -0.34,1.55 -0.06,0.01 -0.11,0.03 -0.16,0.05 z m -2.75,8.12 c 0.02,0.01 0.04,0.02 0.07,0.01 0.3,-0.08 0.59,-0.16 0.89,-0.23 0.05,-0.01 0.11,-0.03 0.16,-0.04 -0.06,0.24 -0.11,0.49 -0.17,0.73 -0.18,0.05 -0.36,0.13 -0.51,0.24 -0.26,0.19 -0.45,0.44 -0.57,0.74 -0.04,0.11 0.05,0.26 0.16,0.28 0.14,0.03 0.23,-0.04 0.28,-0.16 -0.01,0.03 0,0.01 0.01,-0.01 0.01,-0.01 0.01,-0.02 0.02,-0.04 0.01,-0.03 0.03,-0.05 0.04,-0.08 0.02,-0.03 0.03,-0.05 0.05,-0.08 0,0 0.01,-0.01 0.01,-0.02 0.01,-0.01 0.02,-0.02 0.02,-0.02 0.04,-0.05 0.08,-0.09 0.13,-0.13 0.01,-0.01 0.02,-0.02 0.03,-0.03 0,0 0.01,-0.01 0.02,-0.02 0.01,0 0.01,-0.01 0.02,-0.01 0.01,-0.01 0.03,-0.02 0.04,-0.03 0.04,-0.03 0.08,-0.05 0.12,-0.07 -0.16,0.69 -0.31,1.38 -0.47,2.08 -0.07,-0.01 -0.15,0 -0.22,0 -0.1,0 -0.2,0.01 -0.3,0.01 -0.2,0.01 -0.39,0.01 -0.59,0.02 0.26,-1.05 0.51,-2.1 0.76,-3.14 z m 1.54,-2.13 c -0.05,0 -0.09,0 -0.14,0.01 -0.21,0.03 -0.42,0.07 -0.62,0.13 -0.11,0.04 -0.21,0.09 -0.32,0.14 0.06,-0.23 0.11,-0.46 0.17,-0.69 0.08,-0.23 0.17,-0.45 0.24,-0.68 0.3,-0.06 0.59,-0.12 0.89,-0.18 0.03,-0.01 0.05,-0.01 0.08,-0.02 -0.1,0.43 -0.2,0.86 -0.3,1.29 z m 3.42,-16.98 c -0.12,-0.02 -0.24,-0.03 -0.36,-0.03 0.04,-0.21 0.08,-0.42 0.11,-0.63 0.09,0.22 0.18,0.44 0.25,0.66 z m -2.52,5.6 c -0.02,0.04 -0.06,0.05 -0.08,0.1 -1.51,5.5 -2.76,11.07 -4.13,16.6 -0.36,1.44 -0.72,2.88 -1.08,4.32 -4.35,-1.45 -8.51,-3.38 -12.4,-5.82 0.05,-0.03 0.1,-0.06 0.14,-0.11 0.65,-0.72 1.24,-1.44 1.73,-2.28 0.53,-0.91 1.12,-1.75 1.73,-2.61 1.11,-1.55 2.26,-3.08 3.4,-4.62 2.33,-3.13 4.66,-6.26 6.99,-9.39 1.44,-1.93 2.89,-3.84 4.35,-5.75 0.11,0.21 0.24,0.4 0.35,0.61 0.23,0.42 0.43,0.85 0.63,1.28 -0.54,2.56 -1.07,5.11 -1.63,7.67 z m -40.23,5.1 c -0.35,-0.41 -0.69,-0.83 -1.02,-1.26 -0.61,-0.8 -1.16,-1.64 -1.66,-2.51 -0.65,-1.11 -1.2,-2.27 -1.67,-3.46 0.49,0.43 1.02,0.82 1.58,1.17 0.56,1.16 1.15,2.3 1.83,3.39 0.61,0.98 1.31,1.94 2.18,2.71 -0.28,0.12 -0.57,0.25 -0.85,0.37 -0.14,-0.14 -0.28,-0.28 -0.39,-0.41 z m -19.95,-26.55 c 0,-0.01 -0.01,-0.01 -0.01,-0.02 -0.32,-0.41 -0.64,-0.82 -1.01,-1.18 -0.39,-0.38 -0.84,-0.61 -1.26,-0.92 -0.19,-0.14 -0.39,-0.02 -0.49,0.17 -0.05,-0.12 -0.11,-0.23 -0.16,-0.35 0.71,-0.32 1.42,-0.65 2.1,-1.02 0.27,-0.14 0.55,-0.29 0.83,-0.45 0.3,0.43 0.59,0.87 0.92,1.27 0.29,0.36 0.72,0.33 1.06,0.11 0.16,0.1 0.35,0.13 0.57,0.04 1.85,-0.75 3.69,-1.53 5.53,-2.31 0.06,0.46 0.13,0.91 0.2,1.37 -2.77,1.1 -5.53,2.18 -8.28,3.29 z m -0.35,9.58 c -0.58,0.26 -1.17,0.48 -1.76,0.71 -0.17,0.07 -0.46,0.19 -0.71,0.35 -0.12,-0.23 -0.24,-0.46 -0.35,-0.69 -0.23,-0.5 -0.45,-1 -0.65,-1.51 -0.37,-0.93 -0.69,-1.88 -0.97,-2.84 -0.27,-0.96 -0.5,-1.94 -0.68,-2.92 -0.14,-0.77 -0.24,-1.56 -0.38,-2.34 0.08,-0.04 0.17,-0.07 0.25,-0.11 0.04,-0.02 0.07,-0.04 0.11,-0.06 0.03,0.07 0.06,0.14 0.08,0.21 0.18,0.5 0.29,1.02 0.44,1.53 -0.12,-0.02 -0.24,0.04 -0.23,0.2 0,0.53 0.04,0.99 0.16,1.51 0.11,0.47 0.25,0.93 0.4,1.38 0.33,0.97 0.68,1.94 1.14,2.86 0.2,0.4 0.41,0.94 0.8,1.2 0.43,0.28 0.89,0.17 1.32,-0.04 0.46,-0.23 0.91,-0.49 1.37,-0.74 0.48,-0.26 1.03,-0.49 1.44,-0.86 0.44,-0.39 0.05,-1.13 -0.48,-1.11 -0.16,-0.32 -0.32,-0.64 -0.48,-0.96 -0.23,-0.46 -0.43,-0.93 -0.65,-1.4 -0.22,-0.47 -0.43,-0.94 -0.65,-1.4 -0.15,-0.32 -0.33,-0.61 -0.51,-0.89 0.14,-0.17 0.2,-0.38 0.11,-0.6 -0.08,-0.19 -0.18,-0.37 -0.28,-0.56 0.08,0.11 0.15,0.22 0.23,0.33 0.56,0.83 1.07,1.71 1.54,2.6 0.82,1.52 1.46,3.12 1.97,4.76 -0.26,0.16 -0.53,0.32 -0.8,0.47 -0.58,0.35 -1.17,0.65 -1.78,0.92 z m -4.97,-14.36 c 0.08,-0.01 0.16,-0.01 0.25,-0.01 0.06,0.32 0.11,0.65 0.19,0.96 0.17,0.65 0.39,1.29 0.62,1.91 0.24,0.65 0.51,1.28 0.8,1.9 0.11,0.23 0.23,0.47 0.34,0.71 -0.08,0.04 -0.16,0.08 -0.24,0.12 -0.13,0.07 -0.27,0.13 -0.4,0.2 -0.04,0.02 -0.08,0.05 -0.12,0.07 -0.16,-0.37 -0.33,-0.74 -0.48,-1.12 -0.22,-0.56 -0.45,-1.11 -0.69,-1.66 -0.4,-0.9 -0.82,-1.86 -1.43,-2.65 0.03,-0.02 0.05,-0.04 0.08,-0.05 0.06,0 0.11,-0.01 0.17,-0.03 0.09,-0.03 0.18,-0.07 0.27,-0.12 0.06,-0.04 0.13,-0.07 0.2,-0.1 0.15,-0.06 0.3,-0.1 0.44,-0.13 z m 3.76,9.54 c 0,0 0.02,0.02 0.03,0.04 0,0 0,0.01 0,0.01 0.01,0.01 0.01,0.02 0.02,0.03 -0.01,-0.01 -0.01,-0.01 -0.01,-0.02 0.01,0.02 0.01,0.04 0.02,0.07 0,0 0,0.02 0.01,0.05 0,0 0,-0.01 0,-0.01 0,-0.01 0,-0.01 0,-0.02 0,0.02 0.01,0.05 0.01,0.06 -0.01,-0.01 -0.01,-0.02 -0.01,-0.04 0,0.04 0,0.08 -0.01,0.13 0,-0.01 0,-0.01 0.01,-0.02 -0.01,0.02 -0.01,0.04 -0.01,0.06 -0.01,0.05 -0.03,0.11 -0.05,0.16 -0.01,0.02 -0.01,0.03 -0.02,0.04 -0.02,0.03 -0.04,0.07 -0.06,0.1 0.01,-0.01 0.01,0 -0.01,0.03 -0.01,0.01 -0.01,0.01 -0.02,0.02 -0.01,0.01 -0.02,0.02 -0.02,0.04 0.01,0 0.01,0 0.01,-0.01 0,0 -0.01,0.01 -0.01,0.01 -0.01,0.01 -0.02,0.01 -0.03,0.02 0,0 0,0 0,0 -0.02,0.01 -0.03,0.02 -0.04,0.03 -0.02,0.01 -0.04,0.02 -0.06,0.04 -0.01,0 -0.02,0.01 -0.03,0.01 -0.02,0 -0.03,0.01 -0.05,0.01 -0.05,0 -0.1,0 -0.15,0 -0.01,0 -0.03,-0.01 -0.04,-0.01 -0.05,-0.01 -0.12,-0.05 -0.16,-0.05 0.01,0.01 0.03,0.01 0.04,0.02 0.09,0.04 0.05,0.02 -0.1,-0.04 0,0 -0.01,0 -0.01,0 -0.04,-0.02 -0.09,-0.04 -0.13,-0.07 -0.01,-0.01 -0.03,-0.02 -0.05,-0.04 -0.01,-0.02 -0.03,-0.03 -0.05,-0.05 -0.03,-0.04 -0.05,-0.08 -0.07,-0.12 0,0.01 0,0.01 0,0.01 0,0 -0.01,-0.01 -0.01,-0.03 0,0 0,0 0,0 -0.02,-0.04 -0.01,-0.03 0,-0.01 -0.01,-0.02 -0.02,-0.05 -0.02,-0.06 -0.01,-0.03 -0.02,-0.07 -0.02,-0.1 0,0 0,0 0,0 0,0 0,0 0,0 0,-0.07 0,-0.14 0,-0.21 0,0 0,0 0,-0.01 0,-0.03 0.01,-0.05 0.02,-0.08 0.02,-0.07 0.04,-0.13 0.06,-0.2 0.01,-0.02 0.02,-0.05 0.03,-0.07 0.04,-0.01 0.09,-0.01 0.13,-0.02 0.02,0 0.03,0 0.04,0 0.11,-0.01 0.21,-0.01 0.32,-0.03 0,0 0,0 0,0 0,0 0.01,0 0.01,0 0,0 0,0 0,0 0.02,0 0.05,0.01 0.07,0.01 0.05,0.01 0.1,0.03 0.15,0.05 0.02,0.01 0.04,0.02 0.06,0.03 0.02,0.01 0.03,0.02 0.05,0.03 0,0 0.01,0.01 0.01,0.01 0.04,0.04 0.08,0.07 0.11,0.11 0.01,0.01 0.02,0.02 0.02,0.03 0,0.02 0.01,0.04 0.02,0.06 z m -0.85,2.02 c 0.74,0.2 1.57,-0.1 1.93,-0.81 0.01,-0.02 0.01,-0.03 0.01,-0.05 0.12,0.29 0.23,0.59 0.35,0.88 -0.11,0.07 -0.23,0.14 -0.34,0.21 -0.37,0.22 -0.75,0.44 -1.12,0.66 -0.16,0.1 -0.34,0.18 -0.49,0.29 -0.03,-0.04 -0.05,-0.07 -0.06,-0.08 -0.24,-0.37 -0.46,-0.74 -0.68,-1.12 -0.05,-0.08 -0.08,-0.16 -0.13,-0.24 0.17,0.12 0.34,0.21 0.53,0.26 z m 0.72,-3.52 c -0.19,-0.07 -0.4,-0.14 -0.6,-0.15 -0.2,-0.01 -0.45,-0.01 -0.63,0.07 -0.14,0.06 -0.26,0.12 -0.35,0.24 -0.05,0.07 -0.09,0.16 -0.11,0.24 -0.02,0.04 -0.03,0.08 -0.04,0.1 -0.02,0.08 -0.03,0.18 -0.01,0.27 0,0.01 0.01,0.01 0.01,0.02 0,0 -0.01,0.01 -0.01,0.01 -0.16,0.27 -0.25,0.59 -0.26,0.91 -0.06,-0.15 -0.14,-0.29 -0.19,-0.45 -0.15,-0.41 -0.29,-0.83 -0.42,-1.24 -0.09,-0.28 -0.2,-0.55 -0.31,-0.81 0.22,0.13 0.5,0.12 0.72,0 0.09,0.01 0.17,0.01 0.26,-0.01 0.2,-0.06 0.4,-0.12 0.59,-0.21 0.14,-0.06 0.27,-0.12 0.41,-0.18 0.12,-0.05 0.23,-0.1 0.35,-0.15 0.07,0.04 0.15,0.07 0.23,0.07 0.09,0.32 0.16,0.64 0.3,0.96 0.05,0.12 0.1,0.24 0.16,0.36 -0.04,-0.01 -0.07,-0.03 -0.1,-0.05 z m 3.39,-1.79 c -0.02,0.22 -0.03,0.44 -0.04,0.66 0,0.08 0,0.17 0,0.25 -0.23,-0.39 -0.48,-0.77 -0.74,-1.14 0.28,-0.11 0.56,-0.22 0.84,-0.33 -0.02,0.19 -0.04,0.38 -0.06,0.56 z m -0.24,-6.65 c -0.29,-0.1 -0.51,-0.34 -0.59,-0.63 l -0.09,-0.32 c 0,-0.01 0,-0.01 0,-0.02 l -0.05,-0.17 c -0.02,0 -0.03,0.01 -0.05,0.01 -0.05,0.02 -0.09,0.04 -0.14,0.06 -0.15,-0.24 -0.32,-0.48 -0.47,-0.73 -0.69,-1.21 -1.31,-2.46 -1.85,-3.74 -0.53,-1.25 -0.98,-2.53 -1.35,-3.84 -0.18,-0.63 -0.35,-1.27 -0.51,-1.91 -0.09,-0.36 -0.16,-0.77 -0.28,-1.15 0.51,-0.19 1.01,-0.39 1.51,-0.58 0.02,0.2 0.03,0.4 0.05,0.6 0.02,0.2 0.02,0.4 0.06,0.59 0.04,0.19 0.07,0.38 0.13,0.56 0.04,0.1 0.22,0.14 0.24,0 0.07,-0.38 0.03,-0.77 -0.01,-1.15 -0.03,-0.25 -0.05,-0.51 -0.08,-0.76 0.5,-0.19 0.99,-0.38 1.49,-0.57 -0.04,0.31 -0.05,0.61 -0.01,0.92 0.04,0.33 0.1,0.71 0.31,0.97 0.07,0.09 0.24,0.02 0.23,-0.09 -0.02,-0.16 -0.07,-0.3 -0.11,-0.45 -0.04,-0.15 -0.07,-0.3 -0.1,-0.46 -0.04,-0.3 -0.04,-0.61 0.01,-0.91 0,-0.03 0,-0.06 -0.01,-0.09 0.73,-0.28 1.46,-0.55 2.19,-0.84 0.02,0.22 0.03,0.44 0.05,0.66 0.01,0.18 0.02,0.37 0.04,0.55 0.01,0.1 0.02,0.2 0.03,0.3 0.01,0.11 0.01,0.21 0.1,0.29 0.06,0.05 0.17,0.07 0.23,0 0.08,-0.09 0.07,-0.17 0.07,-0.28 0,-0.1 -0.01,-0.2 -0.01,-0.3 -0.01,-0.18 -0.03,-0.37 -0.05,-0.55 -0.02,-0.27 -0.05,-0.54 -0.07,-0.81 1.25,-0.49 2.49,-0.99 3.74,-1.49 -0.01,0.03 -0.02,0.05 -0.01,0.09 0.07,0.25 0.13,0.5 0.2,0.75 0.03,0.12 0.07,0.24 0.1,0.37 0.04,0.14 0.06,0.3 0.19,0.38 0.07,0.04 0.18,0.02 0.22,-0.06 0.07,-0.13 0.01,-0.28 -0.02,-0.41 -0.03,-0.13 -0.07,-0.25 -0.1,-0.38 -0.07,-0.25 -0.14,-0.5 -0.2,-0.75 -0.01,-0.05 -0.05,-0.08 -0.08,-0.1 0.77,-0.31 1.53,-0.61 2.3,-0.92 -0.03,0.14 -0.05,0.27 -0.06,0.41 -0.01,0.17 0.01,0.34 0.03,0.51 0.03,0.15 0.07,0.39 0.2,0.49 0.08,0.06 0.23,0.05 0.25,-0.07 0.01,-0.05 0.02,-0.09 0.01,-0.14 -0.01,-0.04 -0.02,-0.07 -0.03,-0.11 -0.02,-0.07 -0.03,-0.15 -0.04,-0.22 -0.02,-0.15 -0.04,-0.29 -0.04,-0.44 0,-0.21 0.04,-0.41 0.1,-0.61 1.28,-0.52 2.56,-1.04 3.83,-1.57 -0.14,0.59 -0.16,1.29 0.11,1.84 0.03,0.06 0.12,0.08 0.18,0.06 0.07,-0.03 0.1,-0.1 0.08,-0.17 -0.05,-0.28 -0.11,-0.56 -0.13,-0.84 -0.01,-0.29 0.01,-0.57 0.08,-0.85 0.02,-0.07 -0.01,-0.11 -0.05,-0.15 0.09,-0.04 0.17,-0.07 0.26,-0.11 0.11,0.17 0.43,0.13 0.46,-0.13 0,-0.02 0,-0.04 0.01,-0.06 1.39,-0.57 2.78,-1.14 4.17,-1.72 l -0.09,0.44 c -0.02,0.1 -0.04,0.19 -0.06,0.29 -0.02,0.11 -0.03,0.21 -0.04,0.32 0,0.06 0.05,0.12 0.11,0.12 0.07,0.01 0.12,-0.03 0.14,-0.09 0.04,-0.09 0.06,-0.19 0.08,-0.28 0.02,-0.1 0.04,-0.19 0.06,-0.29 0.04,-0.19 0.08,-0.39 0.12,-0.58 0,-0.02 -0.01,-0.04 -0.01,-0.07 1.42,-0.59 2.83,-1.17 4.25,-1.75 0,0.04 0,0.09 0,0.13 0,0.11 0.02,0.2 0.04,0.31 0.01,0.07 0.09,0.12 0.16,0.12 0.07,0 0.15,-0.05 0.16,-0.12 0.02,-0.1 0.03,-0.19 0.03,-0.29 0,-0.1 0,-0.19 -0.01,-0.28 0,-0.01 0,-0.01 0,-0.01 0.2,-0.08 0.4,-0.16 0.6,-0.25 0.41,-0.17 0.82,-0.34 1.23,-0.51 0,0.25 -0.02,0.5 0.02,0.75 0.02,0.13 0.23,0.13 0.25,0 0.05,-0.26 0.03,-0.52 0.03,-0.78 0,-0.03 0,-0.07 0,-0.1 0.66,-0.27 1.32,-0.55 1.99,-0.82 l -0.01,0.08 c -0.01,0.14 -0.03,0.28 -0.04,0.42 0,0.07 0.01,0.15 0.02,0.22 0.01,0.07 0.01,0.14 0.03,0.21 0.02,0.07 0.14,0.1 0.17,0.02 0.12,-0.27 0.12,-0.57 0.14,-0.85 0.01,-0.08 0.01,-0.16 0.02,-0.24 0.67,-0.28 1.34,-0.56 2.01,-0.83 0,0.03 0,0.06 0.01,0.09 0.01,0.13 0.02,0.26 0.05,0.39 0.03,0.13 0.05,0.25 0.1,0.37 0.04,0.09 0.17,0.06 0.2,-0.03 0.03,-0.12 0.03,-0.25 0.04,-0.38 0.01,-0.13 0,-0.25 -0.01,-0.38 -0.01,-0.08 -0.01,-0.15 -0.02,-0.23 0.52,-0.21 1.03,-0.43 1.55,-0.64 -0.05,0.13 -0.09,0.28 -0.09,0.42 0,0.23 0.06,0.53 0.27,0.65 0.05,0.03 0.11,0.02 0.15,-0.01 0.05,-0.04 0.06,-0.09 0.05,-0.14 0,-0.01 0,-0.01 0,-0.01 0,0 0,0 0,-0.01 0,-0.02 0,-0.03 -0.01,-0.05 0,-0.01 -0.02,-0.05 -0.01,-0.02 0,-0.01 -0.01,-0.02 -0.01,-0.03 -0.02,-0.05 -0.03,-0.09 -0.04,-0.14 -0.01,-0.04 -0.02,-0.09 -0.03,-0.13 0,0 0,0 0,0 0,0 0,0 0,0 0,-0.01 0,-0.02 0,-0.03 0,-0.03 0,-0.05 0,-0.08 0,-0.02 0,-0.05 0,-0.07 0,-0.01 0,-0.02 0,-0.03 0,0 0,-0.01 0,-0.01 0.01,-0.04 0.02,-0.09 0.03,-0.13 0.01,-0.02 0.02,-0.05 0.02,-0.07 -0.01,0.02 -0.01,0.02 0,0 0.01,-0.01 0.01,-0.02 0.02,-0.03 0.02,-0.04 0.05,-0.08 0.07,-0.12 0.03,-0.04 0.03,-0.09 0.02,-0.13 0.76,-0.32 1.52,-0.63 2.28,-0.95 0.01,0.1 0.01,0.2 0.02,0.29 0.01,0.23 0.03,0.45 0.07,0.68 0.01,0.06 0.1,0.05 0.11,-0.01 0.01,-0.23 -0.01,-0.45 -0.03,-0.68 -0.01,-0.11 -0.02,-0.23 -0.03,-0.34 0.52,-0.21 1.03,-0.43 1.55,-0.64 0.01,0.14 0.02,0.27 0.04,0.41 0.04,0.23 0.09,0.45 0.17,0.66 0.04,0.11 0.1,0.2 0.15,0.31 0.06,0.11 0.11,0.21 0.2,0.3 0.06,0.06 0.17,0.02 0.17,-0.07 0,-0.11 -0.02,-0.21 -0.04,-0.32 -0.03,-0.11 -0.03,-0.23 -0.05,-0.34 -0.05,-0.21 -0.1,-0.43 -0.14,-0.65 -0.03,-0.17 -0.02,-0.34 -0.03,-0.5 0.79,-0.33 1.58,-0.66 2.37,-0.98 0.03,0.39 0.07,0.78 0.1,1.17 0.04,0.4 0.03,0.84 0.18,1.22 0.04,0.11 0.23,0.15 0.26,0 0.07,-0.4 -0.01,-0.81 -0.05,-1.22 -0.04,-0.41 -0.09,-0.82 -0.13,-1.23 0,-0.03 -0.02,-0.05 -0.03,-0.08 0.57,-0.24 1.14,-0.47 1.71,-0.71 -0.01,0.1 -0.05,0.19 -0.05,0.29 -0.01,0.19 -0.01,0.37 0.02,0.57 0.03,0.18 0.04,0.38 0.13,0.55 0.06,0.1 0.24,0.09 0.26,-0.04 0.03,-0.18 0,-0.35 0,-0.53 0,-0.18 0,-0.35 0.01,-0.53 0.01,-0.17 0.05,-0.33 0.08,-0.49 0.76,-0.31 1.51,-0.63 2.27,-0.94 0,0.13 -0.01,0.25 -0.01,0.38 0,0.12 -0.01,0.24 0,0.35 0,0.06 0,0.12 0,0.18 0,0.03 0,0.05 0,0.08 0,0.05 0.02,0.08 0.04,0.13 0.05,0.1 0.2,0.09 0.25,0 0.07,-0.11 0.06,-0.26 0.06,-0.38 0.01,-0.12 0.01,-0.24 0.01,-0.35 0,-0.18 0.01,-0.35 0.01,-0.53 0.47,-0.2 0.95,-0.39 1.42,-0.59 0,0.23 0,0.46 -0.01,0.69 0,0.13 -0.01,0.25 0,0.38 0,0.06 0,0.13 0.01,0.19 0.01,0.07 0.03,0.14 0.05,0.22 0.03,0.14 0.26,0.14 0.29,0 0.01,-0.07 0.04,-0.14 0.05,-0.21 0.01,-0.06 0.01,-0.12 0.01,-0.17 0.01,-0.13 0,-0.26 0,-0.39 0,-0.26 0,-0.52 0,-0.77 0,-0.03 -0.02,-0.04 -0.03,-0.07 0.85,-0.35 1.71,-0.71 2.56,-1.06 -0.03,0.18 -0.06,0.37 -0.05,0.55 0.01,0.14 0.04,0.29 0.08,0.43 0.02,0.06 0.04,0.13 0.07,0.19 0.01,0.04 0.03,0.08 0.05,0.12 0.02,0.03 0.05,0.06 0.08,0.09 0.1,0.09 0.27,0.03 0.28,-0.11 0,-0.13 -0.05,-0.26 -0.08,-0.39 -0.03,-0.11 -0.05,-0.23 -0.06,-0.33 -0.02,-0.24 -0.01,-0.48 0.04,-0.71 0.94,-0.39 1.89,-0.78 2.83,-1.17 0.16,-0.07 0.32,-0.13 0.48,-0.2 0.01,0.08 0.03,0.16 0.04,0.24 0.02,0.11 0.04,0.22 0.06,0.33 0.02,0.12 0.03,0.24 0.1,0.34 0.08,0.11 0.24,0.09 0.28,-0.04 0.04,-0.12 0,-0.25 -0.01,-0.37 -0.02,-0.12 -0.03,-0.23 -0.05,-0.35 -0.02,-0.1 -0.03,-0.2 -0.05,-0.3 0.41,-0.17 0.81,-0.34 1.22,-0.51 0.02,0.07 0.04,0.13 0.05,0.2 0.06,0.21 0.09,0.46 0.23,0.64 0.06,0.09 0.19,0.05 0.2,-0.05 0.02,-0.22 -0.07,-0.46 -0.13,-0.67 -0.02,-0.08 -0.04,-0.16 -0.06,-0.24 0.63,-0.26 1.26,-0.53 1.9,-0.8 0.01,0.16 0.02,0.32 0.03,0.48 0.01,0.11 0.02,0.23 0.02,0.34 0.01,0.12 0.02,0.24 0.05,0.36 0.02,0.07 0.09,0.11 0.16,0.1 0.07,-0.01 0.12,-0.07 0.12,-0.14 0.01,-0.06 0.02,-0.12 0.01,-0.17 0,-0.06 -0.01,-0.12 -0.01,-0.17 -0.01,-0.11 -0.01,-0.22 -0.02,-0.33 -0.01,-0.2 -0.03,-0.41 -0.04,-0.61 0.61,-0.26 1.22,-0.52 1.84,-0.77 0,0.06 -0.01,0.13 0,0.19 0.02,0.16 0.05,0.32 0.09,0.48 0.02,0.07 0.04,0.15 0.07,0.22 0.02,0.04 0.03,0.1 0.05,0.14 0.02,0.04 0.06,0.07 0.09,0.1 0.1,0.11 0.29,0.02 0.29,-0.12 0,-0.15 -0.06,-0.29 -0.1,-0.44 -0.03,-0.13 -0.06,-0.27 -0.08,-0.4 -0.01,-0.12 0.01,-0.23 0.01,-0.35 1.18,-0.49 2.35,-0.99 3.53,-1.49 0,0.01 0,0.02 0.01,0.02 0.09,0.07 0.19,0.15 0.28,0.22 0.05,0.04 0.09,0.07 0.14,0.11 0.03,0.02 0.06,0.05 0.09,0.07 0.03,0.02 0.05,0.03 0.08,0.04 0.03,0 0.05,0 0.08,-0.01 0.05,-0.01 0.1,-0.07 0.1,-0.13 0,-0.02 0,-0.04 -0.01,-0.06 -0.01,-0.03 -0.03,-0.06 -0.06,-0.08 -0.02,-0.02 -0.05,-0.04 -0.07,-0.06 -0.05,-0.04 -0.09,-0.07 -0.14,-0.11 -0.06,-0.05 -0.12,-0.1 -0.18,-0.15 0.34,-0.14 0.68,-0.28 1.01,-0.43 0.03,0.09 0.11,0.16 0.22,0.13 0.13,-0.04 0.15,-0.17 0.1,-0.26 0.23,-0.1 0.46,-0.19 0.69,-0.29 0.14,0.12 0.3,0.21 0.43,0.35 0.14,0.14 0.25,0.31 0.38,0.45 0.14,0.15 0.23,0.35 0.38,0.49 0.13,0.12 0.3,0 0.27,-0.16 -0.04,-0.22 -0.18,-0.4 -0.29,-0.59 -0.1,-0.19 -0.27,-0.36 -0.42,-0.52 -0.08,-0.08 -0.17,-0.15 -0.26,-0.23 0.71,-0.3 1.42,-0.6 2.13,-0.9 0.13,0.14 0.26,0.28 0.41,0.4 0.11,0.08 0.26,-0.08 0.19,-0.19 -0.08,-0.13 -0.19,-0.23 -0.29,-0.34 0.83,-0.35 1.67,-0.7 2.5,-1.05 0.07,0.09 0.13,0.18 0.2,0.27 0.12,0.15 0.23,0.32 0.37,0.45 0.08,0.07 0.17,-0.02 0.13,-0.1 -0.08,-0.18 -0.21,-0.33 -0.31,-0.5 -0.05,-0.07 -0.1,-0.14 -0.15,-0.22 0.77,-0.33 1.54,-0.65 2.31,-0.97 0.06,0.07 0.12,0.13 0.17,0.2 0.1,0.12 0.2,0.28 0.36,0.33 0.12,0.04 0.2,-0.08 0.18,-0.18 -0.02,-0.09 -0.08,-0.15 -0.14,-0.22 -0.05,-0.06 -0.11,-0.12 -0.16,-0.18 l -0.08,-0.09 c 0.77,-0.33 1.53,-0.64 2.3,-0.97 0.07,0.07 0.13,0.14 0.2,0.21 0.08,0.08 0.16,0.17 0.25,0.25 0.04,0.04 0.08,0.08 0.13,0.12 0.05,0.04 0.1,0.09 0.17,0.09 0.05,0 0.1,-0.04 0.09,-0.09 0,-0.07 -0.05,-0.12 -0.09,-0.17 -0.03,-0.04 -0.07,-0.08 -0.11,-0.12 -0.08,-0.09 -0.17,-0.17 -0.26,-0.26 -0.04,-0.04 -0.09,-0.09 -0.13,-0.13 0.61,-0.26 1.23,-0.52 1.84,-0.78 0,0 0.01,0 0.01,0.01 0.08,0.06 0.15,0.13 0.23,0.19 l 0.11,0.09 c 0.02,0.02 0.04,0.04 0.07,0.05 0.02,0.01 0.05,0.02 0.08,0.03 0.09,0.03 0.16,-0.08 0.12,-0.16 -0.03,-0.05 -0.06,-0.08 -0.1,-0.12 -0.04,-0.03 -0.08,-0.06 -0.11,-0.09 -0.05,-0.04 -0.09,-0.07 -0.14,-0.11 0.59,-0.25 1.18,-0.5 1.77,-0.75 0.11,0.1 0.23,0.2 0.34,0.29 0.13,0.11 0.26,0.21 0.41,0.29 0.04,0.03 0.1,0.02 0.14,-0.02 0.03,-0.03 0.05,-0.1 0.02,-0.14 -0.05,-0.07 -0.11,-0.14 -0.17,-0.2 -0.05,-0.06 -0.11,-0.11 -0.17,-0.16 -0.08,-0.07 -0.15,-0.14 -0.23,-0.2 0.64,-0.27 1.27,-0.55 1.91,-0.82 0.34,0.16 0.67,0.31 1.01,0.47 0.17,0.08 0.35,0.18 0.53,0.23 0.09,0.03 0.18,0.05 0.27,0.09 0.1,0.04 0.18,0.06 0.29,0.07 0.08,0.01 0.12,-0.11 0.07,-0.16 -0.13,-0.13 -0.31,-0.2 -0.46,-0.31 -0.08,-0.06 -0.18,-0.09 -0.26,-0.14 -0.09,-0.04 -0.18,-0.08 -0.26,-0.12 l -0.71,-0.33 c 0.6,-0.26 1.19,-0.52 1.79,-0.77 0.08,0.08 0.17,0.16 0.25,0.24 0.09,0.09 0.19,0.18 0.28,0.27 0.05,0.04 0.1,0.09 0.15,0.13 0.06,0.05 0.11,0.09 0.19,0.12 0.05,0.02 0.11,-0.01 0.14,-0.05 0.03,-0.05 0.03,-0.09 0.01,-0.15 -0.05,-0.12 -0.17,-0.21 -0.26,-0.31 -0.09,-0.09 -0.19,-0.18 -0.28,-0.27 -0.05,-0.05 -0.1,-0.09 -0.14,-0.14 0.21,-0.09 0.41,-0.18 0.62,-0.27 0.05,0.09 0.09,0.18 0.14,0.26 0.04,0.07 0.07,0.13 0.11,0.19 0.04,0.07 0.08,0.14 0.17,0.18 0.08,0.04 0.22,0.02 0.23,-0.1 0.01,-0.1 -0.01,-0.17 -0.05,-0.25 -0.03,-0.07 -0.07,-0.13 -0.1,-0.2 -0.05,-0.08 -0.09,-0.16 -0.14,-0.24 0.83,-0.36 1.67,-0.72 2.5,-1.08 0.04,0.04 0.07,0.07 0.11,0.11 0.06,0.06 0.13,0.12 0.2,0.18 0.07,0.06 0.14,0.12 0.22,0.18 0.08,0.05 0.17,-0.05 0.12,-0.12 -0.05,-0.08 -0.11,-0.15 -0.18,-0.22 -0.06,-0.07 -0.11,-0.14 -0.18,-0.2 -0.01,-0.01 -0.02,-0.02 -0.03,-0.03 0.31,-0.13 0.62,-0.27 0.93,-0.4 0.37,0.19 0.72,0.4 1.03,0.68 0.23,0.21 0.43,0.44 0.6,0.7 0.09,0.13 0.17,0.27 0.23,0.41 0.06,0.12 0.14,0.29 0.26,0.35 0.03,0.02 0.08,0.01 0.09,-0.03 0.12,-0.27 -0.14,-0.66 -0.28,-0.89 -0.18,-0.3 -0.39,-0.58 -0.63,-0.83 -0.23,-0.24 -0.49,-0.45 -0.78,-0.62 0.53,-0.23 1.07,-0.46 1.6,-0.69 0.14,0.13 0.29,0.26 0.43,0.39 0.12,0.11 0.24,0.22 0.38,0.32 0.13,0.09 0.26,0.2 0.41,0.26 0.08,0.03 0.14,-0.07 0.1,-0.13 -0.08,-0.14 -0.22,-0.26 -0.33,-0.37 -0.11,-0.11 -0.23,-0.21 -0.35,-0.31 -0.11,-0.09 -0.22,-0.19 -0.33,-0.28 0.61,-0.26 1.21,-0.52 1.82,-0.79 0.02,0.02 0.05,0.03 0.07,0.05 0.06,0.04 0.11,0.08 0.17,0.12 0.03,0.02 0.06,0.04 0.09,0.06 0.03,0.02 0.07,0.03 0.1,0.05 0.05,0.02 0.1,0.02 0.14,-0.03 0.03,-0.04 0.03,-0.1 -0.01,-0.14 -0.02,-0.03 -0.04,-0.05 -0.07,-0.08 -0.03,-0.03 -0.07,-0.05 -0.1,-0.08 -0.03,-0.03 -0.07,-0.05 -0.1,-0.08 0.61,-0.26 1.23,-0.53 1.84,-0.79 0.26,0.22 0.52,0.45 0.81,0.64 0.1,0.06 0.2,-0.08 0.12,-0.16 -0.21,-0.21 -0.45,-0.39 -0.68,-0.58 0.67,-0.29 1.35,-0.58 2.02,-0.87 0.06,0.03 0.12,0.05 0.18,0.08 0.11,0.05 0.2,-0.09 0.1,-0.17 -0.01,-0.01 -0.02,-0.01 -0.03,-0.02 0.65,-0.28 1.3,-0.56 1.94,-0.84 0.14,0.12 0.28,0.25 0.43,0.36 0.08,0.06 0.17,-0.07 0.11,-0.14 -0.11,-0.11 -0.22,-0.21 -0.33,-0.31 1.69,-0.73 3.39,-1.46 5.08,-2.19 0,0 0.01,0.01 0.01,0.01 0.15,0.12 0.31,0.24 0.46,0.37 0.15,0.12 0.31,0.24 0.49,0.31 0.08,0.03 0.16,-0.08 0.12,-0.15 -0.1,-0.16 -0.26,-0.29 -0.4,-0.41 -0.11,-0.09 -0.21,-0.18 -0.32,-0.27 0.6,-0.26 1.19,-0.51 1.79,-0.77 0.01,-0.01 0.02,-0.01 0.04,-0.02 0.09,0.07 0.2,0.12 0.28,0.2 0.1,0.1 0.2,0.21 0.28,0.32 0.1,0.13 0.17,0.28 0.29,0.4 0.05,0.05 0.14,0.06 0.2,0.02 0.07,-0.04 0.08,-0.11 0.07,-0.18 -0.02,-0.17 -0.13,-0.32 -0.22,-0.46 -0.1,-0.14 -0.21,-0.28 -0.33,-0.4 -0.04,-0.04 -0.09,-0.06 -0.13,-0.09 0.66,-0.29 1.31,-0.57 1.97,-0.86 0.08,0.04 0.15,0.09 0.23,0.13 0.15,0.09 0.3,0.18 0.45,0.26 0.08,0.04 0.16,0.08 0.23,0.12 0.1,0.05 0.18,0.1 0.29,0.1 0.13,-0.01 0.21,-0.14 0.15,-0.26 -0.05,-0.1 -0.13,-0.14 -0.22,-0.2 -0.07,-0.05 -0.15,-0.09 -0.22,-0.14 -0.14,-0.08 -0.28,-0.16 -0.42,-0.24 0.68,-0.3 1.37,-0.6 2.05,-0.9 0.13,0.08 0.27,0.16 0.41,0.24 0.08,0.04 0.16,0.09 0.24,0.13 0.04,0.02 0.08,0.05 0.13,0.07 0.05,0.03 0.1,0.05 0.16,0.06 0.11,0.02 0.19,-0.1 0.11,-0.19 -0.04,-0.04 -0.08,-0.07 -0.12,-0.1 -0.04,-0.02 -0.08,-0.05 -0.12,-0.07 -0.08,-0.05 -0.16,-0.1 -0.24,-0.15 -0.07,-0.04 -0.15,-0.08 -0.22,-0.13 0.77,-0.34 1.54,-0.67 2.31,-1.01 0.2,0.11 0.41,0.21 0.61,0.32 0.15,0.08 0.29,0.16 0.44,0.23 0.15,0.07 0.3,0.17 0.46,0.2 0.08,0.02 0.14,-0.08 0.08,-0.14 -0.12,-0.11 -0.28,-0.17 -0.42,-0.25 -0.15,-0.08 -0.3,-0.15 -0.45,-0.23 -0.16,-0.08 -0.32,-0.16 -0.47,-0.24 0.84,-0.37 1.68,-0.74 2.53,-1.1 0.06,0.04 0.11,0.07 0.17,0.11 0.05,0.03 0.09,0.06 0.14,0.09 0.05,0.03 0.11,0.05 0.16,0.08 0.11,0.05 0.22,0.12 0.34,0.16 0.09,0.03 0.14,-0.09 0.08,-0.15 -0.08,-0.09 -0.18,-0.16 -0.26,-0.24 -0.05,-0.05 -0.09,-0.09 -0.15,-0.13 -0.04,-0.03 -0.08,-0.06 -0.13,-0.08 0.69,-0.3 1.38,-0.6 2.07,-0.9 0.12,0.07 0.26,0.12 0.38,0.19 0.16,0.1 0.31,0.22 0.47,0.32 0.17,0.1 0.3,0.26 0.47,0.35 0.12,0.07 0.26,-0.07 0.19,-0.19 -0.1,-0.18 -0.27,-0.31 -0.42,-0.46 -0.15,-0.15 -0.33,-0.27 -0.51,-0.38 -0.03,-0.02 -0.07,-0.03 -0.1,-0.04 0.67,-0.29 1.34,-0.59 2.01,-0.88 0.18,0.11 0.36,0.21 0.54,0.32 0.17,0.1 0.34,0.21 0.52,0.3 0.09,0.05 0.18,0.09 0.28,0.14 0.09,0.04 0.19,0.1 0.29,0.12 0.09,0.02 0.15,-0.08 0.09,-0.15 -0.06,-0.08 -0.16,-0.13 -0.24,-0.19 -0.08,-0.06 -0.17,-0.12 -0.26,-0.17 -0.18,-0.11 -0.36,-0.21 -0.54,-0.31 -0.12,-0.07 -0.24,-0.14 -0.36,-0.2 0.54,-0.23 1.07,-0.47 1.61,-0.7 0.22,0.15 0.46,0.28 0.66,0.46 0.19,0.16 0.35,0.33 0.49,0.53 0.14,0.2 0.26,0.41 0.4,0.6 0.09,0.13 0.3,0.02 0.22,-0.13 -0.12,-0.21 -0.29,-0.4 -0.46,-0.57 -0.18,-0.18 -0.36,-0.37 -0.54,-0.55 -0.16,-0.17 -0.34,-0.31 -0.52,-0.45 0.52,-0.23 1.04,-0.45 1.56,-0.68 0.09,0.07 0.18,0.14 0.27,0.21 0.1,0.08 0.21,0.14 0.31,0.21 0.11,0.07 0.22,0.15 0.35,0.2 0.08,0.03 0.16,-0.08 0.11,-0.15 -0.08,-0.11 -0.18,-0.19 -0.28,-0.27 -0.1,-0.09 -0.2,-0.17 -0.3,-0.25 -0.04,-0.03 -0.09,-0.06 -0.13,-0.1 0.8,-0.35 1.59,-0.69 2.39,-1.04 l 0.24,0.14 c 0.12,0.07 0.24,0.14 0.37,0.19 0.13,0.06 0.27,0.14 0.41,0.17 0.1,0.03 0.18,-0.1 0.1,-0.18 -0.1,-0.1 -0.23,-0.18 -0.35,-0.26 -0.12,-0.08 -0.24,-0.16 -0.36,-0.23 l -0.02,-0.01 c 0.72,-0.31 1.44,-0.63 2.15,-0.94 0.15,0.11 0.3,0.23 0.45,0.34 0.11,0.08 0.21,0.16 0.32,0.23 0.11,0.07 0.23,0.16 0.35,0.2 0.1,0.03 0.19,-0.09 0.13,-0.17 -0.07,-0.11 -0.18,-0.19 -0.28,-0.28 -0.1,-0.09 -0.21,-0.17 -0.32,-0.25 -0.1,-0.07 -0.2,-0.15 -0.3,-0.22 0.7,-0.31 1.41,-0.61 2.11,-0.92 0.32,0.19 0.63,0.4 0.91,0.64 0.16,0.14 0.32,0.28 0.47,0.43 0.07,0.07 0.16,0.13 0.23,0.21 0.08,0.08 0.16,0.16 0.25,0.23 0.08,0.06 0.17,-0.06 0.13,-0.13 -0.05,-0.1 -0.11,-0.18 -0.18,-0.27 -0.07,-0.09 -0.12,-0.18 -0.2,-0.26 -0.15,-0.17 -0.31,-0.32 -0.49,-0.47 -0.23,-0.2 -0.5,-0.36 -0.75,-0.53 0.51,-0.22 1.02,-0.45 1.53,-0.67 l 0.51,0.35 c 0.08,0.06 0.17,0.11 0.26,0.16 0.09,0.06 0.18,0.12 0.28,0.15 0.02,0.01 0.03,-0.01 0.05,-0.02 0.16,0.27 0.32,0.54 0.47,0.82 0.76,1.4 1.47,2.81 2.07,4.28 0.58,1.43 1.12,2.88 1.55,4.37 0.22,0.74 0.41,1.49 0.59,2.24 0.04,0.19 0.08,0.38 0.11,0.57 -0.24,0.09 -0.48,0.18 -0.72,0.27 -0.01,-0.39 -0.07,-0.79 -0.11,-1.15 -0.07,-0.64 -0.19,-1.28 -0.34,-1.9 -0.3,-1.25 -0.77,-2.46 -1.36,-3.6 -0.09,-0.18 -0.36,-0.02 -0.27,0.16 0.54,1.13 0.96,2.33 1.24,3.55 0.14,0.61 0.25,1.23 0.32,1.85 0.04,0.3 0.07,0.6 0.09,0.91 0.01,0.11 0.01,0.23 0.02,0.35 -0.28,0.11 -0.55,0.2 -0.83,0.31 -0.01,-0.37 -0.09,-0.75 -0.17,-1.11 -0.1,-0.49 -0.22,-0.97 -0.37,-1.45 -0.29,-0.93 -0.59,-1.86 -0.97,-2.76 -0.04,-0.1 -0.21,-0.06 -0.17,0.05 0.36,0.88 0.69,1.79 0.91,2.72 0.11,0.47 0.21,0.94 0.3,1.41 0.08,0.4 0.12,0.83 0.23,1.23 -0.39,0.16 -0.78,0.32 -1.17,0.49 0.05,-0.42 -0.03,-0.9 -0.08,-1.3 -0.07,-0.53 -0.18,-1.06 -0.33,-1.57 -0.3,-1.03 -0.75,-2 -1.34,-2.9 -0.12,-0.18 -0.4,-0.01 -0.29,0.17 0.55,0.88 0.98,1.83 1.26,2.83 0.13,0.48 0.24,0.97 0.31,1.46 0.04,0.28 0.07,0.55 0.08,0.83 0.01,0.21 0.01,0.42 0.06,0.62 -0.46,0.2 -0.93,0.39 -1.39,0.58 0.02,-0.39 -0.03,-0.8 -0.07,-1.15 -0.06,-0.55 -0.16,-1.09 -0.29,-1.63 -0.28,-1.1 -0.73,-2.15 -1.31,-3.13 -0.11,-0.19 -0.4,-0.02 -0.29,0.17 0.54,0.96 0.93,2 1.18,3.08 0.13,0.54 0.21,1.08 0.26,1.62 0.04,0.39 0.03,0.82 0.07,1.23 -0.02,0.01 -0.04,0.02 -0.06,0.02 -0.29,0.12 -0.58,0.24 -0.86,0.36 0.01,-0.06 0.01,-0.12 0.01,-0.18 0.01,-0.15 0.01,-0.31 0,-0.46 -0.01,-0.28 -0.04,-0.56 -0.08,-0.84 -0.09,-0.59 -0.25,-1.16 -0.48,-1.71 -0.06,-0.15 -0.32,-0.09 -0.25,0.07 0.2,0.53 0.34,1.09 0.41,1.65 0.03,0.27 0.05,0.55 0.05,0.83 0,0.14 -0.01,0.29 -0.01,0.43 0,0.12 -0.02,0.25 0.01,0.36 -0.32,0.13 -0.65,0.27 -0.97,0.4 0.03,-0.37 0.01,-0.76 -0.02,-1.12 -0.05,-0.49 -0.14,-0.98 -0.26,-1.45 -0.26,-0.99 -0.68,-1.93 -1.22,-2.79 -0.06,-0.1 -0.21,-0.01 -0.15,0.09 0.52,0.86 0.89,1.8 1.12,2.77 0.11,0.49 0.19,0.99 0.22,1.49 0.03,0.37 0.01,0.76 0.03,1.13 -0.28,0.11 -0.55,0.23 -0.83,0.35 0.01,-0.17 0,-0.35 -0.02,-0.51 -0.03,-0.28 -0.08,-0.55 -0.15,-0.83 -0.14,-0.57 -0.36,-1.12 -0.65,-1.63 -0.09,-0.17 -0.35,-0.02 -0.26,0.15 0.27,0.49 0.47,1.01 0.6,1.56 0.06,0.26 0.11,0.53 0.13,0.8 0.02,0.18 0.03,0.38 0.06,0.57 -0.39,0.16 -0.79,0.33 -1.18,0.49 -0.1,-0.95 -0.35,-1.89 -0.64,-2.79 -0.36,-1.12 -0.86,-2.19 -1.46,-3.21 -0.09,-0.15 -0.31,-0.01 -0.23,0.13 0.57,1.02 1.03,2.09 1.38,3.21 0.29,0.92 0.45,1.85 0.6,2.79 -0.34,0.14 -0.67,0.28 -1.01,0.42 -0.09,-0.52 -0.23,-1.04 -0.35,-1.56 -0.14,-0.59 -0.28,-1.19 -0.43,-1.78 -0.04,-0.18 -0.32,-0.1 -0.27,0.07 l 0.42,1.75 c 0.13,0.54 0.23,1.09 0.41,1.62 -0.21,0.09 -0.41,0.17 -0.62,0.26 -0.33,0.14 -0.65,0.27 -0.98,0.41 0.07,-0.92 -0.15,-1.91 -0.43,-2.76 -0.35,-1.07 -0.92,-2.05 -1.63,-2.92 -0.13,-0.16 -0.35,0.07 -0.22,0.23 0.68,0.84 1.18,1.81 1.51,2.84 0.16,0.51 0.28,1.04 0.35,1.57 0.05,0.39 0.07,0.78 0.1,1.18 -0.29,0.12 -0.59,0.25 -0.88,0.37 -0.02,-0.36 -0.07,-0.72 -0.14,-1.07 -0.15,-0.72 -0.43,-1.39 -0.79,-2.03 -0.11,-0.2 -0.41,-0.02 -0.3,0.18 0.32,0.6 0.53,1.27 0.65,1.94 0.06,0.34 0.09,0.68 0.1,1.02 0,0.06 0,0.11 0,0.17 -0.37,0.15 -0.74,0.31 -1.1,0.46 -0.04,-0.2 -0.07,-0.4 -0.11,-0.58 -0.12,-0.57 -0.27,-1.12 -0.46,-1.67 -0.37,-1.06 -0.88,-2.05 -1.49,-2.99 -0.12,-0.18 -0.4,-0.01 -0.29,0.17 0.58,0.91 1.04,1.9 1.37,2.93 0.16,0.5 0.29,1 0.4,1.51 0.06,0.26 0.09,0.54 0.12,0.82 -0.53,0.22 -1.06,0.44 -1.58,0.66 0.03,-0.25 0,-0.53 -0.03,-0.76 -0.04,-0.32 -0.09,-0.63 -0.16,-0.94 -0.14,-0.66 -0.34,-1.3 -0.57,-1.93 -0.07,-0.2 -0.38,-0.12 -0.32,0.09 0.21,0.62 0.35,1.27 0.47,1.92 0.06,0.32 0.11,0.65 0.15,0.98 0.03,0.25 0.05,0.54 0.14,0.79 -0.38,0.16 -0.75,0.31 -1.13,0.47 0.01,-0.05 0.03,-0.1 0.03,-0.15 0,-0.12 -0.01,-0.23 -0.02,-0.35 -0.02,-0.24 -0.05,-0.48 -0.1,-0.72 -0.09,-0.47 -0.25,-0.92 -0.44,-1.35 -0.04,-0.08 -0.16,-0.1 -0.23,-0.06 -0.09,0.05 -0.1,0.15 -0.06,0.23 0.18,0.41 0.31,0.83 0.39,1.27 0.04,0.21 0.07,0.43 0.08,0.65 0.01,0.11 0.01,0.22 0.01,0.33 0,0.1 0.03,0.18 0.06,0.27 -0.45,0.19 -0.91,0.38 -1.36,0.57 0.02,-0.12 0.02,-0.24 0.03,-0.35 0.02,-0.3 0.02,-0.59 0.01,-0.89 -0.03,-0.58 -0.13,-1.15 -0.3,-1.7 -0.33,-1.1 -0.92,-2.12 -1.72,-2.95 -0.13,-0.14 -0.34,0.07 -0.21,0.21 0.75,0.82 1.29,1.81 1.59,2.88 0.15,0.52 0.24,1.06 0.26,1.6 0.01,0.26 0.01,0.53 -0.01,0.79 -0.01,0.19 -0.04,0.38 -0.05,0.57 -0.31,0.13 -0.63,0.26 -0.94,0.39 -0.01,-0.23 -0.05,-0.46 -0.07,-0.65 -0.06,-0.46 -0.13,-0.92 -0.24,-1.37 -0.21,-0.9 -0.52,-1.77 -0.89,-2.61 -0.09,-0.21 -0.39,-0.03 -0.3,0.18 0.36,0.82 0.62,1.67 0.79,2.54 0.09,0.43 0.16,0.87 0.21,1.31 0.02,0.21 0.04,0.43 0.07,0.64 0.01,0.05 0.01,0.09 0.01,0.14 -0.42,0.18 -0.84,0.35 -1.27,0.53 -0.06,-1.54 -0.58,-3.1 -1.32,-4.42 -0.11,-0.19 -0.4,-0.02 -0.29,0.17 0.39,0.72 0.7,1.47 0.91,2.26 0.19,0.71 0.28,1.42 0.35,2.14 -0.36,0.15 -0.72,0.3 -1.08,0.45 -0.01,-0.02 -0.01,-0.04 -0.02,-0.05 -0.04,-0.13 -0.08,-0.25 -0.11,-0.38 -0.07,-0.24 -0.15,-0.49 -0.22,-0.73 -0.14,-0.5 -0.28,-1 -0.41,-1.5 -0.06,-0.2 -0.37,-0.12 -0.31,0.08 0.13,0.5 0.27,1 0.4,1.51 0.06,0.25 0.12,0.49 0.18,0.74 0.03,0.12 0.06,0.24 0.09,0.36 0.01,0.05 0.02,0.09 0.03,0.14 -0.06,0.02 -0.11,0.05 -0.17,0.07 -0.88,0.37 -1.75,0.74 -2.63,1.1 -0.03,-0.16 -0.07,-0.33 -0.1,-0.47 -0.07,-0.32 -0.16,-0.64 -0.26,-0.95 -0.2,-0.62 -0.46,-1.22 -0.76,-1.8 -0.1,-0.18 -0.37,-0.02 -0.28,0.16 0.29,0.56 0.52,1.15 0.71,1.76 0.09,0.29 0.16,0.59 0.23,0.89 0.04,0.18 0.06,0.37 0.11,0.56 -0.49,0.2 -0.97,0.41 -1.45,0.61 -0.05,-0.26 -0.13,-0.52 -0.18,-0.75 -0.14,-0.55 -0.31,-1.1 -0.52,-1.63 -0.41,-1.06 -0.98,-2.05 -1.64,-2.98 -0.08,-0.11 -0.27,-0.01 -0.19,0.11 0.62,0.92 1.11,1.92 1.49,2.96 0.19,0.5 0.34,1.01 0.47,1.53 0.06,0.25 0.12,0.5 0.17,0.75 0.01,0.05 0.02,0.11 0.03,0.17 -0.31,0.13 -0.61,0.26 -0.92,0.38 0,0 0,-0.01 0,-0.01 -0.03,-0.03 -0.08,-0.05 -0.12,-0.05 -0.04,0 -0.09,0.02 -0.12,0.05 -0.03,0.03 -0.05,0.07 -0.05,0.12 0,0 0,0.01 0,0.01 -0.29,0.12 -0.58,0.24 -0.87,0.36 -0.03,-0.23 -0.09,-0.46 -0.12,-0.64 -0.09,-0.42 -0.21,-0.84 -0.35,-1.25 -0.28,-0.79 -0.65,-1.55 -1.11,-2.26 -0.11,-0.17 -0.38,-0.01 -0.28,0.16 0.42,0.71 0.75,1.46 0.99,2.24 0.11,0.37 0.2,0.75 0.28,1.13 0.04,0.21 0.07,0.43 0.1,0.65 0.01,0.05 0.02,0.1 0.02,0.15 -0.27,0.11 -0.54,0.23 -0.8,0.34 -0.02,-0.12 -0.05,-0.24 -0.07,-0.36 -0.02,-0.09 -0.11,-0.14 -0.2,-0.13 -0.08,0.01 -0.16,0.09 -0.16,0.18 0.01,0.13 0.01,0.26 0.02,0.38 l 0.01,0.1 c -0.36,0.15 -0.71,0.3 -1.07,0.45 0.06,-0.84 -0.15,-1.73 -0.38,-2.52 -0.28,-0.96 -0.69,-1.87 -1.2,-2.73 -0.1,-0.17 -0.37,-0.02 -0.27,0.16 0.49,0.84 0.87,1.73 1.13,2.66 0.12,0.45 0.22,0.9 0.3,1.36 0.06,0.39 0.11,0.78 0.18,1.17 -0.43,0.18 -0.85,0.36 -1.28,0.54 0,-0.05 0.01,-0.1 0.01,-0.15 0,-0.3 -0.03,-0.6 -0.08,-0.89 -0.11,-0.58 -0.34,-1.13 -0.66,-1.63 -0.1,-0.16 -0.36,-0.01 -0.26,0.15 0.29,0.46 0.49,0.97 0.59,1.51 0.05,0.26 0.07,0.53 0.06,0.8 0,0.12 -0.01,0.24 -0.02,0.35 -0.48,0.2 -0.95,0.4 -1.43,0.6 -0.02,-0.13 -0.04,-0.26 -0.06,-0.39 -0.09,-0.51 -0.21,-1.01 -0.36,-1.51 -0.3,-0.96 -0.72,-1.84 -1.22,-2.71 -0.07,-0.13 -0.28,-0.01 -0.2,0.12 0.48,0.84 0.84,1.75 1.11,2.68 0.13,0.45 0.23,0.9 0.31,1.35 0.04,0.2 0.06,0.4 0.08,0.6 -0.33,0.14 -0.67,0.28 -1,0.42 -0.03,-0.15 -0.07,-0.3 -0.1,-0.46 -0.09,-0.41 -0.18,-0.81 -0.27,-1.21 -0.05,-0.2 -0.35,-0.12 -0.31,0.08 0.08,0.41 0.16,0.82 0.24,1.22 0.03,0.17 0.07,0.34 0.1,0.51 -0.37,0.15 -0.74,0.31 -1.11,0.46 -0.02,-0.21 -0.06,-0.41 -0.11,-0.61 -0.11,-0.44 -0.3,-0.86 -0.55,-1.24 -0.11,-0.17 -0.38,-0.01 -0.27,0.16 0.23,0.36 0.4,0.75 0.49,1.17 0.05,0.22 0.07,0.44 0.08,0.67 -0.39,0.16 -0.78,0.33 -1.17,0.49 0,-0.01 -0.01,-0.03 -0.01,-0.04 -0.07,-0.3 -0.16,-0.6 -0.26,-0.9 -0.2,-0.59 -0.45,-1.17 -0.73,-1.73 -0.08,-0.15 -0.29,-0.02 -0.22,0.13 0.26,0.55 0.48,1.12 0.66,1.71 0.09,0.29 0.16,0.58 0.23,0.87 0.01,0.03 0.01,0.06 0.02,0.08 -0.59,0.25 -1.18,0.5 -1.77,0.74 0,-0.02 0,-0.03 -0.01,-0.05 -0.09,-0.46 -0.22,-0.9 -0.4,-1.33 -0.34,-0.83 -0.81,-1.58 -1.42,-2.24 -0.14,-0.15 -0.35,0.07 -0.22,0.22 0.57,0.64 1.03,1.38 1.34,2.18 0.14,0.38 0.26,0.77 0.33,1.18 0.01,0.06 0.02,0.12 0.03,0.18 -0.59,0.25 -1.18,0.49 -1.77,0.74 -0.06,-0.24 -0.12,-0.48 -0.18,-0.72 -0.16,-0.6 -0.32,-1.2 -0.47,-1.8 -0.04,-0.16 -0.27,-0.09 -0.24,0.06 0.13,0.6 0.26,1.19 0.39,1.79 0.06,0.27 0.12,0.54 0.18,0.8 -0.38,0.16 -0.76,0.32 -1.14,0.48 -0.06,-0.5 -0.17,-1 -0.3,-1.47 -0.26,-0.92 -0.68,-1.8 -1.21,-2.6 -0.11,-0.17 -0.38,-0.01 -0.27,0.16 0.5,0.79 0.86,1.64 1.11,2.54 0.14,0.51 0.21,1.02 0.27,1.54 -0.39,0.17 -0.79,0.33 -1.18,0.5 -0.01,-0.03 -0.02,-0.05 -0.02,-0.08 -0.08,-0.29 -0.16,-0.58 -0.24,-0.87 -0.16,-0.58 -0.32,-1.16 -0.48,-1.73 -0.05,-0.2 -0.37,-0.12 -0.31,0.08 l 0.46,1.74 c 0.08,0.29 0.15,0.58 0.23,0.87 0.01,0.04 0.02,0.08 0.03,0.13 -0.42,0.18 -0.85,0.36 -1.28,0.54 -0.02,-0.15 -0.05,-0.3 -0.07,-0.45 -0.08,-0.47 -0.19,-0.95 -0.33,-1.4 -0.3,-0.93 -0.74,-1.82 -1.29,-2.63 -0.1,-0.16 -0.36,-0.01 -0.25,0.15 0.51,0.8 0.9,1.66 1.18,2.58 0.13,0.43 0.24,0.86 0.31,1.3 0.03,0.2 0.05,0.41 0.07,0.61 -0.33,0.14 -0.67,0.28 -1.01,0.42 -0.09,0.04 -0.18,0.08 -0.27,0.11 -0.01,-0.06 -0.02,-0.12 -0.03,-0.17 -0.06,-0.3 -0.14,-0.6 -0.24,-0.89 -0.19,-0.57 -0.45,-1.13 -0.75,-1.65 -0.09,-0.16 -0.34,-0.02 -0.25,0.15 0.28,0.52 0.5,1.06 0.67,1.63 0.08,0.27 0.15,0.55 0.2,0.83 0.02,0.08 0.03,0.17 0.05,0.26 -0.49,0.21 -0.99,0.42 -1.48,0.63 -0.01,-0.07 -0.03,-0.14 -0.04,-0.2 -0.09,-0.44 -0.21,-0.88 -0.36,-1.3 -0.29,-0.82 -0.71,-1.59 -1.19,-2.31 -0.08,-0.12 -0.27,-0.01 -0.19,0.11 0.47,0.72 0.83,1.5 1.11,2.32 0.13,0.38 0.23,0.77 0.32,1.17 0.02,0.11 0.03,0.23 0.05,0.34 -0.55,0.23 -1.1,0.47 -1.65,0.7 -0.02,-0.07 -0.05,-0.14 -0.07,-0.2 -0.12,-0.36 -0.25,-0.71 -0.37,-1.07 -0.25,-0.7 -0.52,-1.39 -0.79,-2.08 -0.05,-0.13 -0.26,-0.08 -0.22,0.06 0.21,0.71 0.42,1.41 0.65,2.11 0.11,0.34 0.23,0.69 0.35,1.03 0.03,0.1 0.07,0.19 0.1,0.29 -0.39,0.17 -0.78,0.33 -1.18,0.5 -0.01,-0.03 -0.02,-0.06 -0.02,-0.09 -0.13,-0.49 -0.3,-0.98 -0.49,-1.45 -0.37,-0.91 -0.85,-1.77 -1.42,-2.57 -0.08,-0.12 -0.28,-0.01 -0.19,0.11 0.54,0.83 0.99,1.72 1.33,2.64 0.17,0.45 0.31,0.9 0.42,1.36 0.01,0.05 0.02,0.1 0.03,0.15 -0.37,0.16 -0.74,0.32 -1.11,0.47 -0.08,-0.34 -0.17,-0.67 -0.28,-1 -0.23,-0.7 -0.53,-1.37 -0.89,-2.03 -0.06,-0.12 -0.23,-0.01 -0.18,0.1 0.31,0.66 0.57,1.35 0.77,2.04 0.1,0.33 0.18,0.67 0.25,1.01 -0.48,0.2 -0.95,0.41 -1.43,0.61 -0.04,-0.22 -0.09,-0.45 -0.13,-0.67 -0.11,-0.52 -0.25,-1.04 -0.41,-1.54 -0.32,-0.99 -0.74,-1.95 -1.24,-2.86 -0.08,-0.15 -0.3,-0.02 -0.22,0.13 0.48,0.92 0.87,1.88 1.17,2.87 0.15,0.47 0.27,0.95 0.37,1.44 0.05,0.26 0.09,0.52 0.14,0.78 -1.15,0.49 -2.31,0.98 -3.46,1.47 -0.1,-0.63 -0.33,-1.26 -0.54,-1.84 -0.28,-0.77 -0.64,-1.5 -1.05,-2.21 -0.06,-0.11 -0.23,-0.01 -0.17,0.1 0.38,0.72 0.69,1.46 0.96,2.23 0.13,0.37 0.24,0.75 0.34,1.13 0.06,0.23 0.12,0.47 0.18,0.71 -0.46,0.19 -0.92,0.39 -1.37,0.59 -0.01,-0.06 -0.01,-0.12 -0.02,-0.17 -0.05,-0.29 -0.12,-0.58 -0.21,-0.86 -0.18,-0.58 -0.45,-1.13 -0.78,-1.64 -0.08,-0.13 -0.28,-0.01 -0.2,0.12 0.3,0.51 0.52,1.06 0.69,1.63 0.08,0.27 0.15,0.55 0.19,0.84 0.01,0.07 0.02,0.14 0.03,0.21 -0.38,0.16 -0.76,0.32 -1.14,0.48 0,-0.01 0,-0.01 -0.01,-0.02 -0.05,-0.2 -0.11,-0.39 -0.16,-0.59 -0.11,-0.38 -0.21,-0.77 -0.32,-1.15 -0.06,-0.21 -0.38,-0.12 -0.33,0.09 0.1,0.39 0.2,0.77 0.31,1.16 0.05,0.19 0.1,0.38 0.15,0.57 0.01,0.03 0.02,0.06 0.02,0.09 -0.48,0.2 -0.96,0.41 -1.44,0.61 -0.03,-0.16 -0.06,-0.33 -0.09,-0.48 -0.1,-0.51 -0.25,-1.02 -0.44,-1.51 -0.37,-0.95 -0.88,-1.82 -1.51,-2.62 -0.11,-0.14 -0.36,0.05 -0.25,0.2 0.6,0.79 1.07,1.69 1.4,2.63 0.16,0.46 0.29,0.94 0.38,1.42 0.03,0.18 0.05,0.37 0.07,0.55 -0.31,0.13 -0.63,0.27 -0.94,0.4 0.01,-0.05 0.02,-0.09 0.02,-0.14 0,-0.16 -0.05,-0.33 -0.13,-0.47 -0.05,-0.08 -0.16,-0.12 -0.25,-0.06 -0.08,0.05 -0.11,0.16 -0.06,0.25 0.01,0.01 0.02,0.03 0.02,0.04 0,0 0,0.01 0.01,0.01 0.01,0.03 0.02,0.05 0.03,0.08 0,0.02 0.01,0.03 0.01,0.05 0,0 0,0 0,0.01 0,0 0,0 0,0 0,0.03 0,0.06 0,0.09 0,0.01 0,0.03 0,0.04 0,0 0,0 0,0 0,0 0,0.01 0,0.01 -0.01,0.03 -0.01,0.06 -0.02,0.09 0,0.01 -0.01,0.02 -0.01,0.03 0,0.01 0,0.01 -0.01,0.02 -0.02,0.04 -0.03,0.07 -0.03,0.12 0,0 0,0.01 0,0.01 -0.2,0.09 -0.4,0.17 -0.6,0.26 -0.03,-0.08 -0.05,-0.17 -0.08,-0.25 -0.08,-0.23 -0.16,-0.45 -0.24,-0.67 -0.16,-0.47 -0.32,-0.93 -0.48,-1.4 -0.08,-0.23 -0.44,-0.14 -0.37,0.1 0.15,0.48 0.29,0.96 0.43,1.44 0.07,0.24 0.14,0.47 0.21,0.71 0.03,0.09 0.05,0.17 0.08,0.26 -0.53,0.23 -1.06,0.45 -1.58,0.67 -0.03,-0.03 -0.07,-0.05 -0.12,-0.04 -0.15,-0.4 -0.33,-0.78 -0.5,-1.17 -0.22,-0.53 -0.44,-1.06 -0.65,-1.59 -0.08,-0.19 -0.38,-0.11 -0.31,0.08 0.21,0.54 0.42,1.08 0.63,1.63 0.16,0.42 0.31,0.86 0.5,1.27 -0.39,0.17 -0.77,0.33 -1.16,0.49 0,-0.01 -0.01,-0.02 -0.01,-0.03 -0.01,-0.04 -0.02,-0.07 -0.03,-0.11 -0.02,-0.07 -0.04,-0.14 -0.07,-0.22 -0.02,-0.08 -0.11,-0.14 -0.2,-0.12 -0.09,0.03 -0.14,0.11 -0.12,0.2 l 0.05,0.22 c 0.01,0.03 0.02,0.07 0.03,0.1 0.01,0.03 0.01,0.06 0.02,0.09 -0.28,0.12 -0.57,0.24 -0.85,0.36 -0.14,-0.27 -0.29,-0.53 -0.44,-0.8 -0.34,-0.62 -0.68,-1.24 -1.02,-1.86 -0.09,-0.17 -0.34,-0.02 -0.25,0.15 0.32,0.63 0.64,1.27 0.96,1.9 0.13,0.26 0.26,0.51 0.39,0.77 -0.21,0.09 -0.41,0.18 -0.62,0.26 -0.07,-0.13 -0.13,-0.27 -0.2,-0.4 -0.04,-0.08 -0.15,-0.1 -0.22,-0.06 -0.08,0.05 -0.09,0.14 -0.06,0.22 0.06,0.12 0.11,0.25 0.17,0.37 -0.37,0.16 -0.74,0.31 -1.1,0.47 -0.01,-0.02 -0.01,-0.04 -0.02,-0.07 -0.04,-0.08 -0.07,-0.15 -0.11,-0.23 -0.08,-0.17 -0.17,-0.34 -0.25,-0.51 -0.17,-0.34 -0.33,-0.67 -0.5,-1.01 -0.04,-0.08 -0.16,-0.11 -0.24,-0.06 -0.09,0.05 -0.1,0.15 -0.06,0.24 0.16,0.33 0.31,0.67 0.47,1 0.08,0.17 0.16,0.33 0.24,0.5 0.04,0.09 0.09,0.19 0.14,0.28 -0.92,0.4 -1.84,0.8 -2.76,1.19 -0.1,-0.31 -0.26,-0.63 -0.39,-0.92 -0.17,-0.39 -0.33,-0.78 -0.5,-1.16 -0.34,-0.77 -0.7,-1.53 -1.02,-2.31 -0.1,-0.23 -0.43,-0.03 -0.33,0.2 0.33,0.77 0.62,1.56 0.94,2.34 0.15,0.38 0.31,0.75 0.47,1.12 0.12,0.29 0.24,0.63 0.39,0.92 -0.39,0.17 -0.78,0.34 -1.17,0.51 -0.08,-0.12 -0.17,-0.23 -0.25,-0.35 -0.1,-0.16 -0.2,-0.33 -0.28,-0.51 -0.17,-0.35 -0.28,-0.73 -0.35,-1.12 -0.02,-0.1 -0.13,-0.15 -0.22,-0.13 -0.1,0.03 -0.14,0.12 -0.13,0.22 0.06,0.42 0.18,0.82 0.35,1.21 0.12,0.29 0.29,0.59 0.48,0.85 -0.4,0.17 -0.79,0.34 -1.19,0.51 -0.05,-0.06 -0.1,-0.13 -0.15,-0.19 -0.14,-0.17 -0.27,-0.35 -0.39,-0.54 -0.24,-0.37 -0.44,-0.75 -0.61,-1.16 -0.08,-0.2 -0.4,-0.12 -0.32,0.09 0.17,0.44 0.37,0.86 0.61,1.26 0.12,0.2 0.24,0.39 0.38,0.57 0.03,0.04 0.07,0.09 0.1,0.13 -0.44,0.19 -0.88,0.38 -1.33,0.57 -0.08,-0.15 -0.16,-0.3 -0.22,-0.44 -0.19,-0.41 -0.38,-0.82 -0.57,-1.23 -0.37,-0.8 -0.74,-1.61 -1.11,-2.41 -0.08,-0.18 -0.35,-0.02 -0.27,0.16 0.35,0.79 0.71,1.59 1.06,2.38 0.18,0.4 0.35,0.8 0.53,1.19 0.07,0.17 0.15,0.33 0.22,0.5 -0.43,0.18 -0.85,0.37 -1.28,0.55 -0.07,-0.09 -0.14,-0.19 -0.2,-0.28 -0.27,-0.38 -0.55,-0.75 -0.82,-1.13 -0.13,-0.18 -0.43,-0.01 -0.3,0.18 0.27,0.39 0.54,0.78 0.81,1.17 0.05,0.07 0.1,0.15 0.15,0.22 -0.63,0.27 -1.25,0.54 -1.88,0.81 -0.19,-0.23 -0.37,-0.46 -0.56,-0.7 -0.06,-0.07 -0.18,-0.06 -0.23,0 -0.07,0.07 -0.05,0.16 0,0.23 0.16,0.2 0.32,0.4 0.48,0.6 -0.51,0.22 -1.02,0.44 -1.53,0.66 -0.02,-0.09 -0.06,-0.17 -0.1,-0.25 -0.06,-0.12 -0.12,-0.23 -0.18,-0.34 -0.11,-0.21 -0.23,-0.42 -0.35,-0.63 -0.24,-0.43 -0.48,-0.87 -0.72,-1.3 -0.1,-0.17 -0.36,-0.02 -0.27,0.16 0.23,0.44 0.46,0.88 0.69,1.32 0.11,0.21 0.22,0.43 0.33,0.64 0.06,0.11 0.12,0.23 0.18,0.34 0.04,0.07 0.09,0.13 0.14,0.18 -0.5,0.21 -0.99,0.43 -1.49,0.64 -0.05,-0.08 -0.11,-0.17 -0.16,-0.25 -0.14,-0.22 -0.29,-0.44 -0.43,-0.65 -0.3,-0.44 -0.6,-0.88 -0.89,-1.32 -0.13,-0.19 -0.44,-0.02 -0.31,0.18 0.29,0.46 0.57,0.92 0.85,1.38 0.14,0.23 0.29,0.46 0.43,0.69 0.03,0.05 0.06,0.11 0.1,0.16 -0.49,0.21 -0.98,0.43 -1.48,0.64 -0.01,-0.01 -0.03,-0.02 -0.04,-0.03 -0.13,-0.1 -0.26,-0.19 -0.38,-0.3 -0.24,-0.21 -0.46,-0.45 -0.65,-0.72 -0.38,-0.53 -0.65,-1.11 -0.77,-1.76 -0.04,-0.22 -0.37,-0.13 -0.33,0.09 0.12,0.67 0.38,1.34 0.77,1.9 0.19,0.28 0.42,0.54 0.67,0.77 0.09,0.09 0.19,0.17 0.29,0.24 -0.47,0.2 -0.93,0.4 -1.4,0.61 -0.09,-0.08 -0.18,-0.16 -0.26,-0.24 -0.24,-0.22 -0.46,-0.46 -0.66,-0.71 -0.4,-0.5 -0.74,-1.05 -0.99,-1.64 -0.07,-0.17 -0.37,-0.05 -0.3,0.13 0.25,0.62 0.57,1.22 0.98,1.75 0.2,0.26 0.42,0.51 0.66,0.74 0.05,0.05 0.11,0.1 0.16,0.14 -0.56,0.25 -1.13,0.49 -1.7,0.73 -0.2,-0.13 -0.4,-0.26 -0.59,-0.41 -0.21,-0.18 -0.41,-0.37 -0.59,-0.58 -0.36,-0.42 -0.65,-0.92 -0.84,-1.44 -0.07,-0.18 -0.36,-0.11 -0.29,0.08 0.2,0.57 0.5,1.09 0.88,1.55 0.3,0.36 0.67,0.7 1.08,0.96 -0.61,0.26 -1.21,0.52 -1.82,0.79 -0.27,-0.2 -0.54,-0.41 -0.78,-0.64 -0.39,-0.39 -0.74,-0.82 -1.03,-1.29 -0.58,-0.93 -0.95,-1.97 -1.06,-3.06 -0.02,-0.17 -0.29,-0.18 -0.28,0 0.08,1.13 0.42,2.23 1.01,3.2 0.29,0.47 0.62,0.91 1.01,1.3 0.22,0.23 0.47,0.45 0.73,0.66 -0.55,0.24 -1.1,0.47 -1.65,0.71 -0.07,-0.04 -0.14,-0.08 -0.21,-0.13 -0.24,-0.17 -0.45,-0.37 -0.64,-0.59 -0.39,-0.44 -0.67,-0.96 -0.82,-1.53 -0.04,-0.17 -0.31,-0.1 -0.27,0.07 0.14,0.61 0.43,1.17 0.83,1.65 0.19,0.24 0.42,0.45 0.66,0.63 0.03,0.02 0.06,0.04 0.08,0.06 -0.54,0.23 -1.08,0.47 -1.62,0.7 -0.12,-0.11 -0.24,-0.22 -0.36,-0.34 -0.34,-0.36 -0.63,-0.77 -0.87,-1.21 -0.47,-0.87 -0.73,-1.85 -0.73,-2.83 0,-0.16 -0.25,-0.16 -0.25,0 -0.04,1.05 0.2,2.08 0.7,3 0.24,0.45 0.55,0.87 0.89,1.25 0.08,0.09 0.17,0.18 0.27,0.28 -0.56,0.25 -1.12,0.49 -1.68,0.74 -0.59,-0.55 -1.12,-1.12 -1.54,-1.83 -0.43,-0.74 -0.73,-1.55 -0.88,-2.4 -0.03,-0.17 -0.28,-0.1 -0.26,0.07 0.24,1.61 1.06,3.23 2.3,4.32 -0.4,0.17 -0.79,0.35 -1.19,0.52 0,0 0,0 0,0 -0.11,-0.05 -0.22,-0.12 -0.33,-0.18 -0.22,-0.14 -0.43,-0.32 -0.61,-0.51 -0.36,-0.39 -0.62,-0.86 -0.75,-1.37 -0.05,-0.19 -0.33,-0.11 -0.29,0.08 0.13,0.56 0.41,1.08 0.79,1.51 0.19,0.21 0.4,0.39 0.63,0.55 0.05,0.04 0.11,0.07 0.17,0.1 -0.34,0.15 -0.67,0.29 -1.01,0.44 -0.25,-0.17 -0.54,-0.3 -0.78,-0.49 -0.32,-0.25 -0.6,-0.54 -0.83,-0.87 -0.46,-0.65 -0.71,-1.43 -0.71,-2.23 0,-0.2 -0.31,-0.2 -0.31,0 -0.01,0.86 0.26,1.72 0.74,2.43 0.24,0.35 0.52,0.66 0.85,0.93 0.18,0.14 0.39,0.3 0.62,0.42 -0.39,0.17 -0.77,0.34 -1.16,0.51 -0.12,-0.11 -0.25,-0.21 -0.36,-0.32 -0.35,-0.37 -0.63,-0.81 -0.83,-1.28 -0.06,-0.16 -0.32,-0.09 -0.26,0.07 0.19,0.52 0.47,0.99 0.83,1.41 0.08,0.1 0.19,0.18 0.28,0.27 -0.22,0.09 -0.43,0.19 -0.65,0.28 -0.16,-0.13 -0.33,-0.26 -0.47,-0.41 -0.39,-0.42 -0.7,-0.91 -0.89,-1.45 -0.06,-0.17 -0.33,-0.1 -0.27,0.07 0.19,0.59 0.51,1.13 0.92,1.59 0.11,0.13 0.25,0.23 0.38,0.34 -0.53,0.23 -1.07,0.47 -1.6,0.7 -0.13,-0.11 -0.27,-0.22 -0.39,-0.35 -0.4,-0.42 -0.74,-0.89 -1.01,-1.4 -0.56,-1.01 -0.86,-2.16 -0.87,-3.32 0,-0.16 -0.24,-0.16 -0.25,0 -0.03,1.2 0.26,2.38 0.82,3.44 0.28,0.52 0.62,1 1.02,1.44 0.1,0.11 0.21,0.23 0.32,0.34 -0.5,0.22 -1,0.44 -1.5,0.66 -0.02,-0.04 -0.05,-0.09 -0.07,-0.13 -0.15,-0.26 -0.3,-0.51 -0.46,-0.77 -0.32,-0.53 -0.64,-1.06 -0.97,-1.59 -0.09,-0.15 -0.31,-0.01 -0.23,0.14 0.3,0.54 0.59,1.09 0.9,1.63 0.15,0.26 0.29,0.52 0.44,0.78 0.02,0.03 0.04,0.06 0.05,0.09 -0.4,0.18 -0.8,0.35 -1.19,0.52 -0.19,-0.19 -0.38,-0.38 -0.55,-0.59 -0.32,-0.39 -0.59,-0.81 -0.82,-1.26 -0.46,-0.88 -0.75,-1.84 -0.84,-2.83 -0.02,-0.19 -0.31,-0.2 -0.3,0 0.07,1.02 0.33,2.02 0.79,2.93 0.23,0.46 0.51,0.9 0.83,1.31 0.15,0.2 0.32,0.41 0.51,0.61 -0.53,0.24 -1.07,0.47 -1.6,0.7 -0.01,-0.01 -0.02,-0.02 -0.03,-0.02 -0.23,-0.24 -0.43,-0.49 -0.61,-0.77 -0.36,-0.56 -0.59,-1.18 -0.67,-1.84 -0.03,-0.21 -0.35,-0.21 -0.33,0 0.08,0.7 0.31,1.39 0.67,2 0.17,0.29 0.38,0.55 0.6,0.79 -0.05,0.02 -0.11,0.05 -0.16,0.07 -0.39,0.17 -0.78,0.35 -1.18,0.52 -0.12,-0.1 -0.23,-0.2 -0.34,-0.31 -0.31,-0.33 -0.58,-0.7 -0.81,-1.1 -0.46,-0.79 -0.73,-1.69 -0.79,-2.6 -0.01,-0.13 -0.22,-0.14 -0.21,0 0.05,0.95 0.32,1.86 0.76,2.69 0.22,0.41 0.48,0.8 0.79,1.15 0.09,0.1 0.19,0.2 0.29,0.3 -0.45,0.2 -0.9,0.4 -1.36,0.6 0,0 -0.01,-0.01 -0.01,-0.01 -0.16,-0.2 -0.32,-0.41 -0.46,-0.62 -0.28,-0.42 -0.52,-0.86 -0.73,-1.32 -0.06,-0.14 -0.26,-0.02 -0.2,0.12 0.2,0.47 0.45,0.92 0.73,1.34 0.14,0.2 0.28,0.4 0.43,0.59 -0.28,0.12 -0.56,0.25 -0.85,0.37 -1.49,-1.04 -2.51,-2.73 -2.69,-4.55 -0.01,-0.15 -0.25,-0.16 -0.24,0 0.15,1.87 1.14,3.57 2.63,4.68 -0.44,0.19 -0.88,0.39 -1.31,0.58 -0.07,-0.14 -0.16,-0.28 -0.23,-0.38 -0.12,-0.19 -0.24,-0.38 -0.37,-0.57 -0.25,-0.38 -0.5,-0.77 -0.75,-1.15 -0.12,-0.18 -0.4,-0.01 -0.29,0.17 0.25,0.39 0.5,0.79 0.75,1.18 0.13,0.2 0.25,0.39 0.38,0.59 0.06,0.09 0.12,0.2 0.19,0.3 -0.33,0.15 -0.67,0.29 -1,0.44 -0.31,-0.42 -0.65,-0.8 -0.94,-1.23 -0.29,-0.43 -0.56,-0.88 -0.8,-1.34 -0.49,-0.96 -0.87,-1.97 -1.12,-3.02 -0.05,-0.2 -0.36,-0.12 -0.31,0.08 0.23,1.07 0.59,2.11 1.08,3.08 0.24,0.48 0.52,0.94 0.82,1.39 0.28,0.41 0.58,0.83 0.93,1.19 -0.26,0.11 -0.52,0.23 -0.77,0.35 -0.01,-0.02 -0.02,-0.04 -0.04,-0.06 -0.82,-0.57 -1.47,-1.33 -1.81,-2.28 -0.07,-0.19 -0.36,-0.11 -0.3,0.08 0.33,0.96 0.97,1.85 1.83,2.41 -0.3,0.14 -0.6,0.28 -0.9,0.42 -0.01,-0.01 -0.01,-0.02 -0.02,-0.03 -0.7,-0.46 -1.24,-1.15 -1.51,-1.94 -0.06,-0.16 -0.32,-0.1 -0.26,0.07 0.27,0.82 0.8,1.53 1.5,2.04 -0.37,0.17 -0.73,0.34 -1.09,0.5 0.01,-0.05 0.03,-0.1 -0.01,-0.13 -0.03,-0.04 -0.08,-0.07 -0.12,-0.1 l -0.13,-0.1 c -0.08,-0.06 -0.16,-0.12 -0.24,-0.18 -0.16,-0.13 -0.31,-0.27 -0.47,-0.4 -0.07,-0.06 -0.17,0.04 -0.11,0.11 0.15,0.15 0.3,0.29 0.44,0.45 0.07,0.08 0.14,0.15 0.21,0.23 0.07,0.08 0.14,0.16 0.22,0.23 -0.36,0.16 -0.71,0.33 -1.06,0.49 -0.31,-0.36 -0.62,-0.71 -0.89,-1.11 -0.33,-0.5 -0.62,-1.04 -0.84,-1.6 -0.07,-0.17 -0.35,-0.1 -0.28,0.08 0.23,0.58 0.52,1.14 0.87,1.67 0.25,0.38 0.55,0.75 0.88,1.08 -0.31,0.15 -0.63,0.29 -0.94,0.43 0.01,-0.05 0.01,-0.1 -0.02,-0.14 -0.12,-0.15 -0.3,-0.28 -0.44,-0.42 -0.15,-0.15 -0.29,-0.3 -0.42,-0.47 -0.26,-0.32 -0.51,-0.65 -0.72,-1.01 -0.07,-0.12 -0.25,-0.01 -0.18,0.11 0.19,0.38 0.42,0.76 0.69,1.09 0.13,0.17 0.28,0.33 0.43,0.49 0.14,0.15 0.3,0.33 0.48,0.44 0,0 0,0 0.01,0 -0.39,0.18 -0.78,0.35 -1.17,0.54 -0.4,-0.34 -0.76,-0.73 -0.97,-1.23 -0.05,-0.12 -0.25,-0.03 -0.21,0.09 0.17,0.49 0.46,0.94 0.82,1.31 -0.13,0.06 -0.27,0.12 -0.4,0.19 -0.22,-0.32 -0.43,-0.64 -0.65,-0.95 0.02,-0.02 0.04,-0.03 0.05,-0.05 0.03,-0.04 0.06,-0.08 0.09,-0.12 -0.12,-0.07 -0.18,-0.13 -0.22,-0.21 z m 79.91,-49.78 c -7.16,3.09 -14.33,6.14 -21.5,9.2 -3.84,-7.22 -7.59,-14.5 -11.58,-21.63 2.82,-1.38 5.74,-2.54 8.74,-3.44 6.17,-1.86 12.62,-2.66 19.06,-2.46 6.44,0.21 12.84,1.43 18.9,3.6 3.38,1.21 6.65,2.75 9.77,4.56 -7.8,3.41 -15.59,6.81 -23.39,10.17 z m -34.56,-11.67 c 3.44,6.85 7.14,13.58 10.75,20.34 0.22,0.41 0.44,0.82 0.66,1.23 -1.08,0.46 -2.16,0.93 -3.25,1.39 -3.32,-6.28 -6.63,-12.57 -9.99,-18.82 0.29,-0.15 0.59,-0.3 0.88,-0.45 l 0.61,-0.31 c 0.04,0.07 0.08,0.15 0.13,0.21 0.07,0.09 0.2,-0.01 0.18,-0.11 -0.02,-0.08 -0.05,-0.15 -0.07,-0.23 0.28,-0.14 0.6,-0.27 0.83,-0.48 0.08,-0.07 -0.01,-0.18 -0.1,-0.16 -0.29,0.07 -0.57,0.24 -0.83,0.37 -0.04,-0.09 -0.07,-0.18 -0.11,-0.26 -0.1,-0.23 -0.21,-0.47 -0.32,-0.7 0.13,-0.08 0.26,-0.16 0.37,-0.26 0.1,-0.09 -0.01,-0.28 -0.14,-0.23 -0.13,0.05 -0.25,0.12 -0.37,0.19 -0.02,-0.05 -0.05,-0.1 -0.07,-0.15 0.05,-0.09 0.03,-0.22 -0.09,-0.2 0,0 0,0 -0.01,0 -0.11,-0.23 -0.22,-0.47 -0.33,-0.7 0.41,-0.22 0.84,-0.44 1.27,-0.67 z m -2.44,3.01 c 0.05,0.04 0.1,0.06 0.17,0.02 0.08,-0.05 0.16,-0.1 0.25,-0.15 0,0 0,0.01 0.01,0.01 0.1,0.19 0.2,0.41 0.36,0.55 0.14,0.13 0.33,0 0.3,-0.17 -0.03,-0.21 -0.18,-0.42 -0.28,-0.6 0,-0.01 -0.01,-0.01 -0.01,-0.02 0.13,-0.08 0.26,-0.16 0.39,-0.24 0.1,-0.06 0.21,-0.12 0.32,-0.19 0.14,0.31 0.29,0.62 0.45,0.91 -0.2,0.1 -0.4,0.21 -0.6,0.31 -0.29,0.15 -0.58,0.3 -0.87,0.45 -0.18,-0.29 -0.33,-0.59 -0.49,-0.88 z m 1.36,-1.09 c -0.11,0.07 -0.23,0.15 -0.34,0.21 -0.13,0.08 -0.25,0.15 -0.38,0.23 -0.04,-0.08 -0.09,-0.16 -0.13,-0.23 l -0.04,-0.07 c 0.07,-0.02 0.14,-0.04 0.2,-0.07 0.15,-0.05 0.29,-0.1 0.44,-0.16 0.06,-0.02 0.12,-0.05 0.18,-0.07 0.02,0.05 0.04,0.1 0.07,0.16 z m -1.23,0.43 c 0.04,0.08 0.09,0.16 0.13,0.24 -0.08,0.05 -0.17,0.1 -0.25,0.15 -0.06,0.04 -0.07,0.09 -0.07,0.15 -0.12,-0.22 -0.23,-0.43 -0.35,-0.65 0.04,0.04 0.09,0.08 0.17,0.05 0.1,-0.03 0.19,-0.06 0.29,-0.1 0.02,0.06 0.05,0.11 0.08,0.16 z m 0.74,-1.5 c 0.09,0.2 0.19,0.41 0.28,0.61 -0.19,0.05 -0.39,0.12 -0.58,0.18 -0.1,0.03 -0.19,0.06 -0.28,0.09 l -0.23,-0.41 c 0.27,-0.15 0.54,-0.31 0.81,-0.47 z m -1.18,0.69 c 0.06,0.11 0.12,0.22 0.18,0.33 -0.07,0.02 -0.14,0.05 -0.21,0.07 -0.1,0.03 -0.13,0.13 -0.12,0.21 -0.06,-0.1 -0.11,-0.21 -0.17,-0.32 -0.02,-0.03 -0.04,-0.05 -0.06,-0.08 0.13,-0.06 0.26,-0.13 0.38,-0.21 z m -1.48,0.92 c 3.63,7.05 7.33,14.07 11.04,21.08 -9.2,3.9 -18.41,7.76 -27.64,11.58 -2.83,1.17 -5.67,2.33 -8.51,3.48 1.09,-4.77 2.76,-9.41 4.99,-13.76 3.35,-6.56 7.89,-12.5 13.43,-17.37 2.1,-1.84 4.34,-3.5 6.69,-5.01 z m 93.68,-11.76 c -0.02,-0.01 -0.03,-0.03 -0.05,-0.04 -0.08,-0.06 -0.17,-0.13 -0.26,-0.19 -0.12,-0.08 -0.25,-0.17 -0.37,-0.25 0.1,-0.05 0.21,-0.09 0.31,-0.14 0.13,0.21 0.25,0.41 0.37,0.62 z m -40.01,36.25 c -0.12,-0.08 -0.24,-0.16 -0.36,-0.25 0.22,-0.26 0.44,-0.5 0.65,-0.77 0.05,0.03 0.1,0.07 0.15,0.11 0.09,0.06 0.18,0.1 0.27,0.16 -0.19,0.28 -0.38,0.55 -0.56,0.84 0,0 -0.01,0.01 -0.01,0.01 -0.05,-0.03 -0.09,-0.06 -0.14,-0.1 z m 4.06,-3.3 c -0.28,0.37 -0.56,0.73 -0.84,1.1 -0.09,-0.07 -0.18,-0.13 -0.28,-0.2 -0.11,-0.08 -0.24,-0.14 -0.36,-0.21 0.28,-0.34 0.58,-0.66 0.88,-0.98 0.2,0.11 0.4,0.2 0.6,0.29 z m -2.39,2.62 c -0.13,-0.06 -0.25,-0.14 -0.38,-0.21 0.05,-0.07 0.09,-0.14 0.13,-0.21 0.27,-0.39 0.57,-0.76 0.86,-1.13 0.11,0.07 0.23,0.13 0.34,0.2 0.1,0.07 0.2,0.14 0.3,0.22 -0.03,0.04 -0.07,0.09 -0.1,0.13 -0.29,0.38 -0.57,0.75 -0.86,1.13 -0.1,-0.04 -0.19,-0.09 -0.29,-0.13 z m -0.07,0.44 c -0.34,0.14 -0.68,0.29 -1.01,0.43 0.15,-0.25 0.31,-0.49 0.47,-0.73 0.13,0.08 0.26,0.16 0.39,0.23 0.05,0.02 0.1,0.05 0.15,0.07 z m -1.84,-1.62 c 0.27,-0.39 0.51,-0.8 0.76,-1.21 0.22,0.08 0.44,0.16 0.65,0.25 -0.31,0.43 -0.63,0.84 -0.96,1.26 -0.15,-0.09 -0.3,-0.19 -0.45,-0.3 z m 1.73,-0.8 c 0.09,0.04 0.18,0.07 0.26,0.12 0.07,0.04 0.13,0.08 0.19,0.12 -0.29,0.36 -0.58,0.71 -0.85,1.09 -0.06,0.08 -0.11,0.17 -0.17,0.25 -0.09,-0.05 -0.18,-0.09 -0.27,-0.15 -0.05,-0.03 -0.09,-0.06 -0.14,-0.09 0.35,-0.45 0.68,-0.89 0.98,-1.34 z m 0.76,-0.14 c -0.09,-0.05 -0.17,-0.1 -0.26,-0.15 -0.08,-0.04 -0.16,-0.07 -0.25,-0.11 0.19,-0.29 0.37,-0.58 0.55,-0.87 0.13,-0.06 0.27,-0.11 0.4,-0.17 0.14,0.11 0.3,0.21 0.45,0.31 -0.31,0.32 -0.61,0.65 -0.89,0.99 z m -0.82,-0.39 c -0.15,-0.06 -0.29,-0.14 -0.45,-0.19 0.26,-0.11 0.53,-0.22 0.79,-0.33 -0.11,0.17 -0.22,0.35 -0.34,0.52 z m -1.45,0.23 c -0.19,0.27 -0.38,0.54 -0.57,0.82 -0.13,-0.11 -0.27,-0.22 -0.4,-0.33 0.03,-0.04 0.06,-0.08 0.09,-0.11 0.29,-0.13 0.58,-0.26 0.88,-0.38 z m -1.19,0.77 c 0.13,0.12 0.27,0.24 0.41,0.35 -0.2,0.29 -0.4,0.59 -0.61,0.87 -0.16,-0.11 -0.33,-0.22 -0.49,-0.33 0.23,-0.29 0.46,-0.59 0.69,-0.89 z m -0.91,1.18 c 0.17,0.12 0.33,0.23 0.5,0.35 -0.04,0.06 -0.08,0.12 -0.12,0.18 -0.39,0.52 -0.8,1.01 -1.21,1.51 -0.2,-0.05 -0.4,-0.11 -0.6,-0.16 0.47,-0.63 0.95,-1.26 1.43,-1.88 z m 0.69,0.8 c 0.05,-0.07 0.1,-0.14 0.15,-0.21 0.09,0.06 0.18,0.13 0.27,0.19 0.02,0.01 0.04,0.02 0.05,0.04 -0.12,0.13 -0.23,0.27 -0.35,0.4 -0.31,0.33 -0.63,0.66 -0.93,1 -0.1,-0.02 -0.19,-0.05 -0.29,-0.07 0.39,-0.45 0.75,-0.9 1.1,-1.35 z m 0.65,-0.33 c -0.09,-0.06 -0.18,-0.12 -0.27,-0.19 0.2,-0.27 0.4,-0.55 0.6,-0.83 0.14,0.11 0.28,0.2 0.43,0.31 -0.21,0.26 -0.44,0.51 -0.67,0.77 -0.04,-0.02 -0.07,-0.04 -0.09,-0.06 z m 5.13,-3.15 c -0.01,0 -0.02,-0.01 -0.03,-0.01 -0.25,-0.08 -0.48,-0.19 -0.71,-0.31 -0.03,-0.04 -0.08,-0.07 -0.13,-0.07 -0.12,-0.06 -0.22,-0.14 -0.34,-0.21 0.55,-0.23 1.11,-0.46 1.66,-0.7 0.04,0.02 0.07,0.04 0.11,0.06 0.09,0.05 0.17,0.1 0.26,0.15 -0.27,0.37 -0.54,0.73 -0.82,1.09 z m 1.13,-1.48 c -0.03,-0.02 -0.07,-0.03 -0.1,-0.05 0.07,-0.03 0.14,-0.06 0.21,-0.09 -0.04,0.05 -0.08,0.1 -0.11,0.14 z m -35.57,17.42 c -0.07,-0.12 -0.12,-0.24 -0.18,-0.37 0.26,-0.11 0.53,-0.22 0.8,-0.32 0.14,-0.05 0.29,-0.1 0.43,-0.15 0.01,0.02 0.03,0.05 0.04,0.07 0.05,0.15 0.13,0.28 0.2,0.42 -0.1,0.02 -0.21,0.04 -0.3,0.06 -0.14,0.03 -0.28,0.08 -0.41,0.12 -0.2,0.06 -0.39,0.12 -0.58,0.17 z m -2.81,-1.27 c 0.05,0.08 0.12,0.14 0.17,0.22 -0.13,0.06 -0.27,0.12 -0.4,0.18 -0.04,-0.08 -0.09,-0.16 -0.13,-0.24 0.12,-0.05 0.24,-0.11 0.36,-0.16 z m 1.3,1.12 c -0.2,-0.22 -0.36,-0.47 -0.54,-0.7 0.38,-0.16 0.76,-0.32 1.14,-0.48 0.01,-0.01 0.03,-0.01 0.04,-0.02 0.04,0.26 0.1,0.51 0.18,0.76 -0.27,0.14 -0.55,0.28 -0.82,0.44 z m -0.85,0.57 c -0.17,-0.31 -0.33,-0.62 -0.5,-0.93 0.15,-0.07 0.31,-0.13 0.46,-0.2 0.19,0.26 0.36,0.52 0.57,0.76 -0.17,0.13 -0.35,0.24 -0.53,0.37 z m 2.02,-1.17 c -0.08,-0.24 -0.15,-0.49 -0.18,-0.74 0.25,-0.11 0.5,-0.21 0.74,-0.32 0.08,-0.03 0.16,-0.07 0.24,-0.11 0.13,0.23 0.25,0.47 0.38,0.7 -0.13,0.04 -0.26,0.09 -0.37,0.13 -0.27,0.1 -0.54,0.21 -0.81,0.34 z m 0.48,-1.78 c 0.04,0.07 0.08,0.14 0.12,0.21 -0.07,0.03 -0.14,0.06 -0.21,0.08 -0.19,0.08 -0.39,0.17 -0.58,0.25 0,-0.09 -0.01,-0.17 0,-0.26 0.22,-0.09 0.45,-0.18 0.67,-0.28 z m -1.03,0.44 c 0,0.09 0,0.18 0,0.26 -0.07,0.03 -0.14,0.06 -0.21,0.09 -0.41,0.18 -0.81,0.36 -1.22,0.54 -0.05,-0.08 -0.12,-0.14 -0.17,-0.22 0.55,-0.22 1.08,-0.44 1.6,-0.67 z m -0.68,2.44 c 0.03,0.03 0.05,0.05 0.08,0.08 l -0.37,0.11 c 0.1,-0.07 0.19,-0.13 0.29,-0.19 z m 0.34,-0.2 c 0.23,-0.13 0.47,-0.25 0.71,-0.36 0.05,0.11 0.1,0.22 0.15,0.32 l -0.7,0.2 c -0.05,-0.05 -0.11,-0.11 -0.16,-0.16 z m -22.25,10.01 c 0.14,0 0.17,-0.14 0.13,-0.23 0.23,0.02 0.45,0.04 0.68,0.06 0.55,-0.22 1.11,-0.4 1.66,-0.6 -1.45,0.59 -2.91,1.17 -4.37,1.76 0.01,-0.07 0.02,-0.13 0.03,-0.2 0.03,-0.15 0.07,-0.3 0.11,-0.44 0.01,0 0.03,0 0.04,0 0.36,0.01 0.83,0.1 1.17,-0.02 0.12,-0.04 0.19,-0.25 0.04,-0.32 -0.32,-0.14 -0.72,-0.11 -1.07,-0.11 0.04,-0.09 0.08,-0.18 0.12,-0.27 0.44,0.04 0.89,0.08 1.33,0.12 -0.05,0.09 -0.02,0.25 0.13,0.25 z m 5.44,4.44 c 0.13,0.56 0.21,1.18 0.5,1.68 0.05,0.08 0.15,0.02 0.14,-0.06 -0.09,-0.55 -0.33,-1.07 -0.43,-1.62 -0.1,-0.57 -0.14,-1.16 -0.15,-1.74 -0.03,-1.02 0.07,-2.02 0.25,-3.01 0.29,-0.12 0.58,-0.23 0.87,-0.35 -0.02,0.22 -0.04,0.44 -0.03,0.66 0,0.24 0.02,0.47 0.06,0.7 0.03,0.22 0.06,0.47 0.17,0.67 0.09,0.15 0.3,0.07 0.31,-0.08 0.02,-0.21 -0.05,-0.43 -0.07,-0.64 -0.02,-0.21 -0.04,-0.43 -0.04,-0.64 -0.01,-0.28 0.03,-0.57 0.06,-0.85 0.64,-0.26 1.28,-0.51 1.92,-0.77 -0.08,0.35 -0.17,0.69 -0.2,1.05 -0.03,0.29 -0.04,0.58 -0.03,0.87 0.01,0.29 0.07,0.59 0.12,0.87 0.02,0.11 0.2,0.09 0.2,-0.03 -0.01,-0.28 0.02,-0.56 0.02,-0.84 0,-0.28 0.01,-0.56 0.04,-0.84 0.03,-0.41 0.11,-0.82 0.2,-1.22 0.56,-0.22 1.12,-0.45 1.67,-0.67 -0.06,0.4 -0.1,0.81 -0.08,1.22 0.01,0.26 0.04,0.53 0.08,0.79 0.02,0.13 0.05,0.26 0.09,0.39 0.04,0.13 0.06,0.26 0.15,0.36 0.06,0.07 0.2,0.03 0.22,-0.06 0.02,-0.12 -0.01,-0.22 -0.03,-0.34 -0.02,-0.12 -0.03,-0.25 -0.05,-0.37 -0.04,-0.25 -0.07,-0.51 -0.09,-0.77 -0.03,-0.45 -0.01,-0.91 0.05,-1.36 0.56,-0.23 1.12,-0.45 1.68,-0.67 -0.01,0.01 -0.02,0.02 -0.02,0.03 -0.19,1.09 -0.24,2.3 0.15,3.36 0.03,0.09 0.18,0.08 0.17,-0.02 -0.04,-0.54 -0.11,-1.07 -0.12,-1.61 -0.02,-0.55 0.02,-1.1 0.11,-1.64 0.02,-0.1 -0.05,-0.16 -0.12,-0.19 0.52,-0.21 1.05,-0.42 1.57,-0.63 0.03,0.18 0.06,0.35 0.08,0.53 0.03,0.19 0.06,0.38 0.1,0.57 -0.07,0.02 -0.15,0.03 -0.22,0.05 -0.13,0.04 -0.23,0.11 -0.31,0.19 -0.19,0.03 -0.35,0.16 -0.42,0.42 -0.28,1.09 -0.34,2.26 -0.4,3.38 -0.02,0.04 -0.03,0.05 0,0.09 -0.07,1.18 -0.1,2.36 -0.14,3.54 -0.06,2.29 -0.06,4.57 -0.01,6.86 0.05,2.28 0.09,4.57 0.22,6.85 0.02,0.29 0.04,0.58 0.06,0.87 -0.41,-1.1 -0.78,-2.22 -1.06,-3.36 -0.05,-0.19 -0.33,-0.11 -0.29,0.08 0.35,1.55 0.86,3.05 1.44,4.52 0.04,0.47 0.06,0.95 0.1,1.42 0.05,0.58 0.09,1.18 0.14,1.77 -0.73,-1.23 -1.37,-2.51 -1.89,-3.84 -0.06,-0.14 -0.29,-0.09 -0.24,0.06 0.55,1.5 1.2,2.95 1.96,4.35 0.1,0.18 0.21,0.34 0.31,0.52 0.03,0.23 0.05,0.46 0.09,0.69 0.09,0.42 0.4,0.64 0.75,0.69 0.03,0.05 0.06,0.1 0.09,0.15 0.23,0.34 0.47,0.67 0.71,1 0.08,0.1 0.16,0.23 0.25,0.35 -0.43,0.18 -0.85,0.36 -1.28,0.54 -0.03,-0.03 -0.06,-0.07 -0.1,-0.1 -0.31,-0.34 -0.61,-0.69 -0.9,-1.05 -0.62,-0.77 -1.17,-1.6 -1.67,-2.45 -0.97,-1.68 -1.72,-3.51 -2.16,-5.4 -0.05,-0.23 -0.4,-0.13 -0.35,0.1 0.45,1.96 1.15,3.83 2.15,5.58 0.49,0.85 1.03,1.66 1.64,2.43 0.29,0.38 0.6,0.74 0.92,1.09 -0.38,0.16 -0.76,0.32 -1.13,0.48 -0.31,-0.35 -0.61,-0.71 -0.91,-1.07 -0.62,-0.76 -1.2,-1.56 -1.74,-2.38 -1.06,-1.62 -1.98,-3.34 -2.7,-5.13 -0.07,-0.18 -0.37,-0.1 -0.3,0.08 0.8,2.02 1.78,3.95 2.96,5.77 0.59,0.91 1.23,1.77 1.91,2.61 0.09,0.11 0.18,0.22 0.27,0.34 -0.19,0.08 -0.37,0.16 -0.56,0.24 -0.11,-0.16 -0.26,-0.31 -0.38,-0.46 -0.17,-0.2 -0.34,-0.39 -0.5,-0.6 -0.32,-0.39 -0.63,-0.79 -0.93,-1.2 -0.59,-0.81 -1.15,-1.64 -1.66,-2.5 -0.09,-0.15 -0.32,-0.01 -0.23,0.14 0.53,0.89 1.1,1.76 1.71,2.6 0.29,0.4 0.6,0.79 0.91,1.18 0.26,0.32 0.52,0.68 0.83,0.96 -0.43,0.18 -0.85,0.36 -1.28,0.54 -0.44,-0.47 -0.9,-0.92 -1.33,-1.4 -0.52,-0.6 -1.02,-1.22 -1.48,-1.87 -0.91,-1.28 -1.69,-2.64 -2.34,-4.06 -0.08,-0.18 -0.36,-0.02 -0.27,0.16 0.66,1.46 1.46,2.85 2.39,4.15 0.45,0.63 0.92,1.23 1.43,1.81 0.4,0.46 0.82,0.92 1.27,1.34 -0.48,0.2 -0.96,0.41 -1.44,0.61 -0.15,-0.11 -0.29,-0.22 -0.43,-0.33 -0.32,-0.27 -0.62,-0.55 -0.89,-0.86 -0.56,-0.63 -1.02,-1.34 -1.38,-2.11 -0.06,-0.12 -0.24,-0.01 -0.19,0.11 0.36,0.77 0.83,1.48 1.39,2.12 0.28,0.32 0.58,0.63 0.89,0.91 0.11,0.1 0.22,0.18 0.33,0.27 -0.43,0.18 -0.85,0.36 -1.28,0.54 -0.22,-0.2 -0.45,-0.4 -0.66,-0.6 -0.37,-0.34 -0.72,-0.7 -1.06,-1.07 -0.67,-0.73 -1.28,-1.51 -1.82,-2.34 -1.08,-1.67 -1.89,-3.52 -2.41,-5.44 -0.05,-0.18 -0.32,-0.1 -0.28,0.07 0.49,1.96 1.3,3.84 2.4,5.54 0.53,0.83 1.12,1.62 1.76,2.37 0.34,0.39 0.7,0.77 1.07,1.13 0.17,0.17 0.35,0.36 0.54,0.52 -0.47,0.2 -0.95,0.4 -1.42,0.61 -0.18,-0.17 -0.37,-0.33 -0.54,-0.49 -0.3,-0.29 -0.59,-0.59 -0.87,-0.9 -0.58,-0.65 -1.11,-1.34 -1.59,-2.07 -0.94,-1.43 -1.66,-2.99 -2.15,-4.63 -0.04,-0.14 -0.27,-0.08 -0.23,0.06 0.47,1.67 1.19,3.26 2.12,4.72 0.46,0.71 0.96,1.4 1.51,2.04 0.28,0.33 0.58,0.65 0.88,0.96 0.14,0.15 0.3,0.32 0.47,0.48 -0.38,0.16 -0.77,0.33 -1.15,0.49 -0.26,-0.13 -0.51,-0.27 -0.74,-0.48 -0.32,-0.29 -0.61,-0.62 -0.89,-0.95 -0.64,-0.74 -1.25,-1.5 -1.82,-2.3 -1.12,-1.56 -2.12,-3.19 -2.95,-4.92 -0.07,-0.15 -0.29,-0.02 -0.22,0.13 0.85,1.84 1.84,3.62 3.02,5.26 0.57,0.79 1.18,1.56 1.82,2.29 0.34,0.39 0.76,0.87 1.24,1.19 -0.38,0.16 -0.75,0.32 -1.13,0.48 -0.58,-0.52 -1.16,-1.03 -1.71,-1.59 -0.67,-0.69 -1.3,-1.44 -1.87,-2.21 -1.14,-1.55 -2.17,-3.25 -2.9,-5.04 -0.03,-0.08 -0.16,-0.05 -0.13,0.04 0.7,1.86 1.56,3.63 2.73,5.24 0.98,1.35 2.12,2.69 3.42,3.77 -0.41,0.17 -0.82,0.35 -1.23,0.52 -0.2,-0.2 -0.41,-0.39 -0.6,-0.57 -0.33,-0.32 -0.64,-0.66 -0.95,-1 -0.64,-0.71 -1.24,-1.45 -1.8,-2.22 -1.09,-1.52 -2.02,-3.18 -2.73,-4.92 -0.06,-0.14 -0.29,-0.08 -0.23,0.06 0.7,1.78 1.57,3.46 2.64,5.04 0.53,0.78 1.09,1.52 1.71,2.23 0.31,0.36 0.64,0.71 0.97,1.05 0.16,0.16 0.32,0.35 0.5,0.53 -0.3,0.13 -0.6,0.26 -0.9,0.38 -0.21,-0.22 -0.42,-0.43 -0.63,-0.65 -0.32,-0.34 -0.63,-0.68 -0.93,-1.03 -0.63,-0.73 -1.2,-1.51 -1.72,-2.32 -0.5,-0.78 -0.95,-1.59 -1.36,-2.42 -0.42,-0.87 -0.85,-1.75 -1.17,-2.67 -0.02,-0.06 -0.11,-0.03 -0.09,0.02 0.28,0.9 0.55,1.79 0.94,2.65 0.4,0.89 0.87,1.76 1.39,2.59 0.5,0.8 1.04,1.58 1.63,2.31 0.3,0.38 0.61,0.74 0.94,1.1 0.18,0.2 0.37,0.41 0.57,0.6 -0.17,0.07 -0.35,0.15 -0.52,0.22 -1.88,-2.26 -3.59,-4.67 -5.11,-7.2 0.14,-2.17 -0.28,-4.37 -1.16,-6.35 -0.89,-2.01 -2.31,-3.69 -4.07,-4.92 -0.34,-1.01 -0.67,-2.03 -0.95,-3.06 -0.3,-1.07 -0.55,-2.16 -0.7,-3.25 -0.15,-1.08 -0.05,-2.1 0.06,-3.16 0.21,-0.08 0.42,-0.17 0.63,-0.25 -0.02,0.15 -0.03,0.29 -0.04,0.42 -0.04,0.38 -0.05,0.76 -0.03,1.13 0.02,0.36 0.06,0.72 0.13,1.08 0.06,0.34 0.12,0.75 0.3,1.05 0.07,0.11 0.23,0.06 0.24,-0.07 0.02,-0.35 -0.08,-0.73 -0.11,-1.08 -0.03,-0.34 -0.05,-0.68 -0.05,-1.02 -0.01,-0.34 0,-0.68 0.02,-1.02 0.01,-0.17 0.03,-0.34 0.04,-0.51 0.01,-0.07 0.01,-0.13 0.01,-0.19 1.4,-0.56 2.8,-1.13 4.2,-1.69 -0.13,0.49 -0.17,1.04 -0.19,1.53 -0.04,0.65 -0.05,1.31 0.02,1.96 0.06,0.61 0.23,1.2 0.35,1.8 0.12,0.59 0.14,1.29 0.46,1.81 0.04,0.07 0.17,0.04 0.16,-0.04 -0.03,-0.58 -0.31,-1.14 -0.43,-1.71 -0.13,-0.63 -0.1,-1.28 -0.13,-1.92 -0.03,-0.6 -0.04,-1.2 -0.01,-1.79 0.01,-0.31 0.04,-0.61 0.07,-0.92 0.03,-0.28 0.08,-0.58 0.08,-0.87 0.56,-0.22 1.12,-0.45 1.69,-0.68 -0.19,0.46 -0.32,0.94 -0.36,1.45 -0.04,0.62 0.06,1.28 0.38,1.82 0.06,0.1 0.25,0.07 0.23,-0.06 -0.03,-0.29 -0.07,-0.58 -0.1,-0.87 -0.03,-0.28 -0.04,-0.58 -0.03,-0.86 0.01,-0.56 0.11,-1.12 0.29,-1.65 0.75,-0.3 1.51,-0.6 2.26,-0.91 -0.08,0.4 -0.15,0.79 -0.16,1.2 -0.01,0.24 0.01,0.48 0.04,0.72 0.01,0.11 0.03,0.23 0.04,0.34 0.02,0.13 0.07,0.25 0.11,0.37 0.05,0.15 0.27,0.13 0.27,-0.04 0,-0.11 0.01,-0.22 0.01,-0.33 0,-0.11 -0.01,-0.22 -0.02,-0.34 -0.01,-0.23 0,-0.46 0.01,-0.7 0.01,-0.45 0.05,-0.91 0.14,-1.36 0,-0.01 -0.01,-0.02 -0.01,-0.04 0.62,-0.25 1.23,-0.5 1.85,-0.74 -0.04,0.03 -0.06,0.07 -0.07,0.13 l -0.13,1.43 c -0.02,0.23 -0.05,0.46 -0.06,0.69 -0.01,0.12 0,0.25 0,0.37 0,0.12 -0.01,0.24 0.03,0.36 0.04,0.13 0.23,0.17 0.3,0.04 0.1,-0.21 0.11,-0.49 0.14,-0.72 0.03,-0.24 0.04,-0.48 0.05,-0.72 0.03,-0.49 0.05,-0.97 0.08,-1.46 0.01,-0.13 -0.09,-0.2 -0.19,-0.2 0.64,-0.26 1.28,-0.51 1.92,-0.77 -0.03,0.25 -0.05,0.5 -0.08,0.75 -0.03,0.25 -0.04,0.5 -0.06,0.74 -0.01,0.13 0,0.26 0,0.39 0,0.13 -0.01,0.25 0.02,0.37 0.03,0.12 0.22,0.16 0.27,0.04 0.05,-0.12 0.07,-0.23 0.09,-0.35 0.02,-0.13 0.05,-0.25 0.07,-0.38 0.03,-0.26 0.05,-0.51 0.07,-0.77 0.02,-0.32 0.05,-0.64 0.07,-0.96 0.71,-0.28 1.41,-0.57 2.12,-0.85 -0.04,0.42 -0.07,0.84 -0.11,1.26 -0.02,0.26 -0.03,0.53 -0.05,0.79 -0.01,0.27 -0.03,0.56 0.02,0.83 0.03,0.14 0.22,0.11 0.25,0 0.09,-0.26 0.11,-0.56 0.13,-0.83 0.02,-0.26 0.05,-0.53 0.07,-0.79 0.03,-0.47 0.05,-0.95 0.08,-1.42 0.56,-0.23 1.13,-0.45 1.69,-0.68 -0.2,0.96 -0.31,1.95 -0.23,2.91 0.13,0.63 0.23,1.19 0.36,1.75 z m 9.6,26.49 c -0.12,-0.05 -0.24,-0.1 -0.36,-0.16 -0.11,-0.05 -0.23,-0.03 -0.29,0.08 -0.05,0.09 -0.03,0.25 0.08,0.29 0.11,0.05 0.21,0.09 0.32,0.14 -0.14,0.19 -0.28,0.38 -0.43,0.58 -0.03,0 -0.05,-0.01 -0.08,0 -0.02,0 -0.04,0.01 -0.05,0.01 0,0 -0.01,0 -0.02,0 -0.07,0.01 -0.13,0.01 -0.2,0 -0.02,0 -0.04,0 -0.05,0 -0.03,0 0,0 -0.02,0 -0.03,0 -0.07,-0.01 -0.1,-0.02 -0.03,-0.01 -0.06,-0.02 -0.1,-0.03 -0.01,0 -0.03,-0.01 -0.04,-0.02 0,0 -0.02,-0.01 -0.03,-0.01 -0.12,-0.06 -0.22,-0.12 -0.31,-0.21 -0.04,-0.04 -0.06,-0.07 -0.09,-0.11 0.17,-0.23 0.35,-0.46 0.52,-0.69 0.65,-0.28 1.31,-0.55 1.96,-0.83 -0.24,0.33 -0.47,0.66 -0.71,0.98 z m -5.56,7.45 c -0.1,-0.02 -0.2,-0.03 -0.29,-0.05 -0.16,-0.03 -0.32,-0.07 -0.47,-0.11 -0.28,-0.08 -0.55,-0.19 -0.81,-0.32 0.34,-0.36 0.66,-0.74 0.99,-1.11 0.13,0.06 0.24,0.13 0.37,0.18 0.33,0.13 0.69,0.28 1.04,0.31 -0.27,0.36 -0.55,0.73 -0.83,1.1 z m -3.68,1.03 c -0.15,-0.09 -0.29,-0.17 -0.44,-0.26 0.28,-0.35 0.56,-0.69 0.84,-1.03 0.1,0.06 0.19,0.13 0.29,0.19 0.11,0.07 0.22,0.15 0.33,0.22 -0.29,0.32 -0.58,0.64 -0.87,0.96 -0.06,-0.02 -0.11,-0.05 -0.15,-0.08 z m 6.07,-7.8 c -0.42,0.38 -0.82,0.77 -1.23,1.16 -0.2,-0.13 -0.39,-0.26 -0.59,-0.39 0.6,-0.26 1.21,-0.52 1.82,-0.77 z m 1.42,-0.61 c -0.06,0.08 -0.12,0.15 -0.18,0.22 -0.04,-0.03 -0.09,-0.06 -0.14,-0.04 -0.08,0.02 -0.15,0.12 -0.11,0.2 0.01,0.03 0.04,0.06 0.05,0.09 -0.23,0.28 -0.46,0.56 -0.69,0.84 -0.02,-0.02 -0.04,-0.04 -0.06,-0.06 -0.11,-0.18 -0.39,-0.02 -0.29,0.17 0.03,0.06 0.09,0.1 0.14,0.15 -0.2,0.24 -0.39,0.48 -0.59,0.71 -0.01,-0.01 -0.02,-0.01 -0.03,-0.02 -0.15,-0.1 -0.3,-0.19 -0.44,-0.29 0.44,-0.43 0.89,-0.87 1.34,-1.29 0.09,-0.08 0.05,-0.18 -0.02,-0.24 0.34,-0.15 0.68,-0.29 1.02,-0.44 z m -3.46,4.21 c -0.01,-0.01 -0.02,-0.01 -0.04,-0.02 -0.22,-0.12 -0.41,-0.28 -0.6,-0.44 0.28,-0.29 0.55,-0.59 0.83,-0.88 0.12,0.09 0.24,0.19 0.36,0.28 0.06,0.05 0.13,0.1 0.19,0.15 -0.25,0.29 -0.48,0.6 -0.73,0.88 0,0.01 0,0.02 -0.01,0.03 z m -3.69,2.46 c -0.16,-0.11 -0.33,-0.22 -0.49,-0.32 0.15,-0.16 0.29,-0.33 0.43,-0.49 0.12,0.14 0.27,0.27 0.41,0.4 -0.11,0.13 -0.23,0.26 -0.33,0.4 -0.01,0 -0.01,0 -0.02,0.01 z m -1.08,-0.71 c 0.49,-0.62 0.97,-1.25 1.46,-1.88 0.1,0.11 0.22,0.2 0.32,0.3 -0.47,0.61 -0.94,1.22 -1.37,1.85 -0.13,-0.09 -0.27,-0.18 -0.41,-0.27 z m 1.23,-0.32 c 0,0 -0.01,0 -0.01,-0.01 0.28,-0.33 0.57,-0.66 0.84,-1 0.14,0.12 0.29,0.24 0.44,0.35 -0.3,0.34 -0.59,0.69 -0.87,1.04 -0.14,-0.12 -0.28,-0.24 -0.4,-0.38 z m 1.01,-1.23 c 0.2,-0.24 0.4,-0.49 0.6,-0.73 0.11,-0.14 0.23,-0.28 0.34,-0.42 0.14,0.17 0.27,0.35 0.43,0.5 -0.22,0.24 -0.45,0.46 -0.67,0.7 -0.09,0.1 -0.16,0.2 -0.25,0.29 -0.15,-0.1 -0.3,-0.22 -0.45,-0.34 z m 2.41,-2.89 c 0.23,0.16 0.46,0.31 0.69,0.47 -0.15,0.14 -0.3,0.27 -0.44,0.42 -0.22,-0.17 -0.43,-0.33 -0.65,-0.5 0.08,-0.1 0.16,-0.21 0.24,-0.31 0.05,-0.03 0.11,-0.06 0.16,-0.08 z m -0.6,0.65 c 0.21,0.16 0.41,0.32 0.62,0.48 -0.28,0.28 -0.55,0.58 -0.82,0.86 -0.17,-0.16 -0.32,-0.33 -0.46,-0.52 0.22,-0.27 0.44,-0.54 0.66,-0.82 z m -0.81,2.52 c 0.21,-0.23 0.44,-0.46 0.65,-0.69 0.2,0.17 0.4,0.34 0.63,0.47 -0.27,0.3 -0.54,0.6 -0.81,0.9 -0.12,-0.06 -0.24,-0.1 -0.35,-0.17 -0.13,-0.07 -0.24,-0.16 -0.36,-0.24 0.08,-0.08 0.16,-0.18 0.24,-0.27 z m 2.29,-1.8 c -0.11,-0.09 -0.22,-0.17 -0.33,-0.26 0.15,-0.15 0.3,-0.29 0.45,-0.43 0.16,0.11 0.33,0.22 0.49,0.33 0,0 0,0 0.01,0 -0.14,0.17 -0.28,0.34 -0.42,0.51 -0.07,-0.05 -0.13,-0.1 -0.2,-0.15 z m -1.86,-0.95 c -0.4,0.51 -0.8,1.03 -1.2,1.53 -0.18,0.22 -0.33,0.46 -0.51,0.68 -0.11,-0.1 -0.22,-0.19 -0.32,-0.29 0.41,-0.53 0.82,-1.06 1.23,-1.59 0.27,-0.11 0.53,-0.22 0.8,-0.33 z m -3.87,4.28 c 0.15,0.1 0.29,0.19 0.44,0.29 0,0.07 0.06,0.11 0.12,0.08 0.17,0.12 0.35,0.23 0.52,0.35 -0.28,0.35 -0.55,0.71 -0.82,1.07 -0.35,-0.2 -0.69,-0.41 -1.04,-0.61 -0.04,-0.02 -0.08,-0.02 -0.12,-0.01 0.3,-0.39 0.6,-0.78 0.9,-1.17 z m 1.83,0.81 c -0.09,-0.06 -0.18,-0.12 -0.27,-0.18 0.01,-0.02 0.03,-0.04 0.04,-0.05 0.09,-0.11 0.18,-0.21 0.27,-0.31 0.2,0.17 0.42,0.3 0.64,0.44 -0.11,0.11 -0.21,0.23 -0.31,0.34 -0.13,-0.08 -0.25,-0.16 -0.37,-0.24 z m 0.24,-0.77 c 0.31,-0.36 0.62,-0.71 0.94,-1.07 0.14,0.09 0.26,0.19 0.4,0.28 0.09,0.05 0.19,0.09 0.29,0.14 -0.33,0.36 -0.65,0.73 -0.98,1.09 -0.23,-0.13 -0.45,-0.27 -0.65,-0.44 z m 3.53,-0.18 c -0.01,-0.02 0,-0.04 -0.02,-0.05 -0.32,-0.15 -0.67,-0.21 -1,-0.34 -0.11,-0.04 -0.22,-0.11 -0.33,-0.15 0.27,-0.3 0.54,-0.6 0.81,-0.91 0.21,0.1 0.41,0.22 0.64,0.29 0.16,0.05 0.33,0.11 0.5,0.13 0.04,0.01 0.09,0.02 0.14,0.02 -0.24,0.34 -0.49,0.67 -0.74,1.01 z m 0.97,-1.31 c -0.09,-0.02 -0.18,-0.03 -0.25,-0.05 -0.16,-0.04 -0.32,-0.08 -0.48,-0.13 -0.19,-0.06 -0.36,-0.15 -0.54,-0.24 0.24,-0.27 0.46,-0.56 0.69,-0.84 0.07,0.05 0.13,0.1 0.2,0.15 0.11,0.08 0.21,0.17 0.32,0.25 0.11,0.09 0.22,0.19 0.37,0.2 0.08,0.01 0.16,-0.1 0.13,-0.17 -0.05,-0.13 -0.16,-0.2 -0.27,-0.29 -0.11,-0.08 -0.21,-0.16 -0.32,-0.25 -0.07,-0.05 -0.14,-0.11 -0.21,-0.16 0.14,-0.17 0.29,-0.35 0.43,-0.52 0.14,0.1 0.29,0.2 0.43,0.3 0.13,0.09 0.26,0.18 0.39,0.26 0.05,0.03 0.09,0.06 0.14,0.1 -0.34,0.47 -0.68,0.93 -1.03,1.39 z m 1.24,-1.65 c -0.04,-0.03 -0.07,-0.07 -0.12,-0.1 -0.13,-0.09 -0.26,-0.17 -0.39,-0.26 -0.15,-0.1 -0.29,-0.19 -0.44,-0.29 0.17,-0.22 0.36,-0.42 0.53,-0.64 0.16,0.12 0.35,0.22 0.54,0.27 0.19,0.05 0.39,0.07 0.58,0.04 0.01,0 0.02,-0.01 0.04,-0.01 -0.25,0.33 -0.5,0.66 -0.74,0.99 z m 1.05,-1.42 c -0.06,0.01 -0.11,0.03 -0.17,0.04 -0.08,0.02 -0.15,0.03 -0.24,0.04 -0.13,0.02 -0.29,0.01 -0.43,-0.02 -0.15,-0.04 -0.3,-0.1 -0.43,-0.19 0.21,-0.27 0.41,-0.55 0.62,-0.82 0.12,0.14 0.26,0.27 0.42,0.35 0.15,0.07 0.32,0.12 0.49,0.13 0.03,0 0.06,0 0.09,-0.01 -0.11,0.16 -0.23,0.32 -0.35,0.48 z m 2.62,-5.55 c -0.22,-0.3 -0.45,-0.6 -0.66,-0.9 0.15,-0.06 0.29,-0.14 0.4,-0.26 0.1,0.02 0.2,0.04 0.3,0.05 0.14,0.48 0.45,0.94 0.74,1.36 -0.14,0.06 -0.27,0.12 -0.41,0.18 -0.13,-0.14 -0.26,-0.29 -0.37,-0.43 z m -28.84,14.34 c -0.11,-0.06 -0.23,-0.11 -0.33,-0.17 -0.19,-0.11 -0.38,-0.22 -0.56,-0.35 -0.37,-0.26 -0.7,-0.57 -1,-0.91 -0.34,-0.39 -0.61,-0.84 -0.84,-1.3 0.43,-0.14 0.85,-0.3 1.27,-0.49 0.11,-0.05 0.21,-0.11 0.32,-0.16 0.28,0.53 0.59,1.03 0.98,1.48 0.29,0.32 0.61,0.62 0.95,0.88 0.17,0.13 0.35,0.26 0.53,0.37 0.03,0.02 0.07,0.04 0.11,0.06 -0.47,0.2 -0.95,0.4 -1.43,0.59 z m 2.07,-0.84 c -0.07,0.03 -0.14,0.05 -0.2,0.08 -0.1,-0.07 -0.19,-0.14 -0.29,-0.2 -0.18,-0.11 -0.35,-0.23 -0.51,-0.35 -0.33,-0.25 -0.63,-0.52 -0.91,-0.82 -0.4,-0.42 -0.72,-0.9 -1,-1.4 0.51,-0.26 1.01,-0.55 1.48,-0.88 0.3,0.62 0.66,1.21 1.14,1.71 0.29,0.3 0.6,0.57 0.94,0.81 0.17,0.12 0.35,0.23 0.53,0.34 0.05,0.03 0.12,0.07 0.19,0.12 -0.46,0.18 -0.91,0.39 -1.37,0.59 z m 1.76,-0.78 c -0.12,-0.08 -0.26,-0.15 -0.37,-0.21 -0.17,-0.09 -0.33,-0.19 -0.49,-0.3 -0.34,-0.23 -0.66,-0.5 -0.96,-0.78 -0.49,-0.48 -0.89,-1.03 -1.23,-1.63 0.44,-0.32 0.85,-0.68 1.24,-1.06 0.54,1.46 1.56,2.7 2.89,3.5 -0.35,0.16 -0.71,0.32 -1.08,0.48 z m 2.13,-0.93 c -0.07,-0.03 -0.14,-0.02 -0.18,0.05 0,0.01 -0.01,0.02 -0.01,0.03 -0.09,0.04 -0.19,0.08 -0.28,0.12 -1.43,-0.76 -2.6,-1.99 -3.18,-3.51 0.35,-0.36 0.68,-0.75 0.99,-1.15 0.41,0.7 0.87,1.38 1.36,2.03 0.48,0.63 0.99,1.31 1.61,1.82 0.16,0.13 0.34,-0.06 0.22,-0.22 -0.25,-0.31 -0.53,-0.59 -0.79,-0.89 -0.26,-0.3 -0.52,-0.6 -0.76,-0.91 -0.5,-0.63 -0.96,-1.29 -1.38,-1.97 -0.02,-0.04 -0.06,-0.06 -0.1,-0.07 0.19,-0.26 0.37,-0.53 0.54,-0.81 0.13,0.22 0.26,0.45 0.4,0.67 0.85,1.38 1.96,3.09 3.41,3.98 -0.5,0.23 -1,0.47 -1.5,0.69 -0.12,0.04 -0.23,0.09 -0.35,0.14 z m -1,-7.49 c 0.08,-0.23 0.15,-0.47 0.21,-0.7 0.16,0.26 0.31,0.52 0.48,0.78 1.15,1.77 2.4,3.48 3.7,5.14 -1.65,-0.41 -2.8,-2.45 -3.65,-3.73 -0.29,-0.43 -0.55,-0.88 -0.82,-1.32 0.03,-0.05 0.06,-0.11 0.08,-0.17 z m -7.07,-15.82 c -0.31,-1.11 -0.59,-2.23 -0.82,-3.35 -0.23,-1.15 -0.38,-2.31 -0.35,-3.48 0.02,-0.55 0.11,-1.05 0.24,-1.55 0.09,-0.03 0.17,-0.06 0.26,-0.09 0.16,-0.05 0.28,-0.14 0.38,-0.23 0.04,0.05 0.09,0.11 0.12,0.16 -0.71,1.86 -0.45,4.21 -0.03,6.1 0.2,0.89 0.44,1.78 0.71,2.65 -0.17,-0.07 -0.34,-0.14 -0.51,-0.21 z m -8.77,-7.42 c -1,0.4 -1.99,0.83 -2.98,1.26 -0.01,-0.13 -0.03,-0.26 -0.04,-0.4 4.06,-1.8 8.12,-3.61 12.18,-5.4 1.53,0.15 3.06,0.29 4.59,0.43 -1.58,0.64 -3.16,1.28 -4.74,1.91 -0.1,0.04 -0.19,0.08 -0.29,0.11 -0.03,-0.24 -0.13,-0.45 -0.3,-0.6 0,0 0,0 0,0 0.23,-0.6 -0.71,-1.15 -1.11,-0.64 -0.19,0.24 -0.35,0.5 -0.49,0.76 -2.28,0.82 -4.57,1.66 -6.82,2.57 z m -7.05,3.96 c 0.02,0.08 0.06,0.14 0.11,0.2 -0.06,0.02 -0.11,0.04 -0.17,0.07 0.02,-0.09 0.04,-0.18 0.06,-0.27 z m 0.03,-0.41 c -0.02,0.03 -0.02,0.07 -0.03,0.1 -0.08,-0.35 -0.59,-0.4 -0.82,-0.12 -0.15,0.17 -0.26,0.37 -0.37,0.57 -0.04,-0.3 -0.08,-0.61 -0.12,-0.91 0.9,-0.39 1.8,-0.78 2.7,-1.18 0.01,0.13 0.03,0.26 0.05,0.39 -0.57,0.3 -1.1,0.66 -1.41,1.15 z m 28.3,-11.88 c -0.26,-0.01 -0.53,-0.01 -0.79,-0.02 -0.19,0 -0.38,-0.01 -0.57,-0.01 0.05,-0.13 0.08,-0.27 0.14,-0.39 0.46,0.04 0.93,0.08 1.39,0.12 -0.05,0.11 -0.13,0.2 -0.17,0.3 z m -1.67,1.86 c 0,-0.01 0,-0.02 0,-0.03 0,-0.07 0,-0.15 0,-0.22 0,0 0,0 0,0 0.17,0.01 0.34,0.03 0.51,0.04 -0.17,0.07 -0.34,0.14 -0.51,0.21 z m -5.62,0.19 c 0.03,-0.13 0.05,-0.27 0.08,-0.4 0.26,-0.11 0.52,-0.23 0.78,-0.34 0.11,0.01 0.22,0.01 0.33,0.02 l -0.07,0.19 c -0.07,0.2 -0.14,0.4 -0.22,0.61 -0.07,0.2 -0.21,0.45 -0.1,0.66 0.02,0.04 0.05,0.06 0.08,0.08 -0.34,-0.03 -0.69,-0.06 -1.03,-0.1 0.01,-0.07 0.03,-0.13 0.04,-0.2 0.05,-0.17 0.08,-0.35 0.11,-0.52 z m 2.2,0.94 c -0.39,-0.04 -0.79,-0.07 -1.18,-0.11 0.03,-0.01 0.05,0 0.07,-0.02 0.05,-0.05 0.1,-0.07 0.13,-0.14 0.02,-0.05 0.04,-0.1 0.06,-0.15 0.04,-0.1 0.08,-0.21 0.11,-0.31 0.07,-0.2 0.13,-0.41 0.2,-0.61 0.03,-0.1 0.06,-0.19 0.1,-0.29 0.21,0.01 0.42,0.03 0.63,0.04 -0.03,0.14 -0.07,0.27 -0.09,0.41 -0.03,0.21 -0.06,0.43 -0.08,0.64 -0.01,0.19 -0.03,0.38 0.05,0.54 z m 0.5,0.05 c -0.05,0 -0.1,-0.01 -0.15,-0.01 0.1,-0.15 0.09,-0.35 0.11,-0.53 0.02,-0.21 0.04,-0.42 0.08,-0.63 0.02,-0.14 0.06,-0.29 0.09,-0.43 0.21,0.01 0.42,0.03 0.64,0.04 0.19,0.01 0.37,0.02 0.56,0.03 -0.01,0.1 -0.04,0.2 -0.05,0.3 -0.02,0.18 -0.02,0.37 -0.02,0.56 0,0.06 0,0.11 0,0.17 -0.43,0.16 -0.84,0.33 -1.26,0.5 z m 1.77,-3.29 c -0.03,0.06 -0.04,0.13 -0.06,0.19 -0.12,0 -0.24,-0.01 -0.36,-0.01 0.13,-0.06 0.28,-0.12 0.42,-0.18 z m -1.38,0.59 c 0.26,-0.11 0.51,-0.22 0.77,-0.33 -0.07,0.11 -0.02,0.3 0.15,0.3 0.09,0 0.18,0.01 0.27,0.01 -0.04,0.13 -0.1,0.26 -0.13,0.39 -0.03,0.11 -0.03,0.23 -0.05,0.34 -0.21,-0.01 -0.42,-0.02 -0.63,-0.04 -0.18,-0.01 -0.36,-0.02 -0.55,-0.03 0.02,-0.08 0.03,-0.17 0.05,-0.26 0.03,-0.12 0.08,-0.24 0.12,-0.38 z m 1.48,0.74 c 0.01,-0.08 0.02,-0.16 0.03,-0.24 0.04,-0.17 0.1,-0.33 0.16,-0.5 0.17,0.01 0.35,0.01 0.52,0.02 -0.06,0.25 -0.1,0.5 -0.12,0.75 -0.2,0 -0.39,-0.01 -0.59,-0.03 z m -0.12,0.84 c 0.01,-0.13 0.04,-0.25 0.05,-0.37 0.21,0.01 0.42,0.03 0.63,0.04 0,0.07 -0.01,0.15 0,0.22 0.01,0.08 0.02,0.16 0.04,0.24 -0.24,0.1 -0.49,0.2 -0.73,0.29 0,-0.14 0,-0.28 0.01,-0.42 z m 2.52,-0.71 c -0.43,-0.04 -0.87,-0.04 -1.29,-0.07 -0.01,0 -0.02,0 -0.03,0 0.02,-0.24 0.04,-0.48 0.1,-0.72 0,-0.01 0.01,-0.02 0.01,-0.04 0.23,0.01 0.45,0.02 0.68,0.03 0.24,0.01 0.48,0.02 0.71,0.03 -0.06,0.21 -0.14,0.41 -0.17,0.63 0,0.04 0,0.1 -0.01,0.14 z m -1.55,-1.25 c -0.18,0 -0.36,-0.01 -0.54,-0.01 0.06,-0.16 0.13,-0.3 0.2,-0.45 0.17,0.01 0.33,0.03 0.5,0.04 -0.05,0.14 -0.11,0.28 -0.16,0.42 z m -2.93,0.65 c -0.03,0.12 -0.05,0.24 -0.08,0.36 -0.19,-0.01 -0.39,-0.02 -0.58,-0.03 0.01,-0.02 0.01,-0.04 0.02,-0.05 0.21,-0.1 0.42,-0.19 0.64,-0.28 0,0 0,0 0,0 z m -2.86,1.23 c -0.01,0.03 -0.01,0.06 -0.02,0.09 -0.04,0.17 -0.07,0.34 -0.1,0.51 -0.02,0.09 -0.03,0.17 -0.05,0.26 0,0.01 0,0.02 -0.01,0.03 -0.51,-0.05 -1.03,-0.1 -1.55,-0.15 0.58,-0.24 1.16,-0.49 1.73,-0.74 z M 530,260.48 c 0,0 0.01,0 0,0 0.02,-0.12 0.03,-0.23 0.04,-0.34 0.03,-0.16 0.1,-0.32 0.17,-0.46 0.03,-0.07 0.08,-0.14 0.13,-0.21 0.03,-0.05 0.07,-0.1 0.11,-0.14 0,0 0,0.01 0,0.01 0,0.01 0,0.05 0,0.03 0,0.02 0,0.04 0,0.06 0,0.09 0,0.17 0.02,0.25 0.03,0.09 0.16,0.12 0.21,0.03 0.04,-0.07 0.06,-0.14 0.08,-0.22 0.03,-0.08 0.07,-0.12 0.1,-0.21 0.01,-0.04 0.02,-0.07 0.04,-0.11 0,-0.01 0.01,-0.02 0.01,-0.04 0,0 0.01,-0.03 0.02,-0.04 0.03,-0.07 0.06,-0.14 0.1,-0.2 0.04,-0.08 0.09,-0.16 0.13,-0.24 0.09,-0.02 0.18,-0.03 0.27,-0.04 0.02,0 0.03,0 0.05,0 0.09,0.01 0.19,0.02 0.27,0.04 0.15,-0.03 0.3,-0.08 0.46,-0.13 -0.04,0.13 -0.08,0.26 -0.12,0.4 -0.04,0.15 -0.11,0.31 -0.08,0.46 0.02,0.1 0.15,0.12 0.22,0.06 0.06,-0.06 0.08,-0.13 0.11,-0.22 0.03,-0.07 0.05,-0.15 0.08,-0.22 0.05,-0.14 0.09,-0.27 0.13,-0.41 0.02,-0.07 0.04,-0.14 0.06,-0.21 0.46,-0.18 0.9,-0.39 1.33,-0.58 -0.01,0.07 -0.03,0.13 -0.04,0.2 -0.04,0.17 -0.07,0.34 -0.11,0.51 -0.02,0.09 -0.03,0.17 -0.04,0.26 -0.01,0.09 -0.03,0.19 0,0.28 0.02,0.07 0.13,0.12 0.19,0.05 0.06,-0.07 0.08,-0.15 0.1,-0.24 0.03,-0.09 0.05,-0.18 0.07,-0.27 0.04,-0.17 0.07,-0.34 0.1,-0.51 l 0.09,-0.45 c 0.01,0 0.02,-0.01 0.02,-0.01 0.5,-0.21 1,-0.41 1.5,-0.61 -0.17,0.31 -0.3,0.64 -0.38,0.98 -0.04,0.17 -0.07,0.34 -0.08,0.51 -0.01,0.09 0,0.18 0.01,0.27 0.01,0.09 0.02,0.18 0.06,0.25 0.04,0.07 0.13,0.04 0.16,-0.02 0.03,-0.07 0.03,-0.15 0.04,-0.23 0.01,-0.08 0.02,-0.16 0.03,-0.25 0.02,-0.16 0.04,-0.32 0.07,-0.48 0.07,-0.32 0.18,-0.62 0.34,-0.91 0.05,-0.1 -0.02,-0.18 -0.1,-0.2 0.69,-0.28 1.37,-0.57 2.06,-0.84 0.08,-0.03 0.15,-0.06 0.23,-0.09 -0.02,0.12 -0.04,0.25 -0.05,0.37 -0.03,0.22 -0.05,0.44 -0.06,0.66 0,0.1 0,0.2 0.02,0.28 0.02,0.1 0.01,0.22 0.02,0.33 0.01,0.11 0.15,0.13 0.19,0.03 0.03,-0.1 0.05,-0.22 0.09,-0.32 0.03,-0.08 0.06,-0.17 0.08,-0.27 0.04,-0.22 0.06,-0.44 0.08,-0.67 0.02,-0.19 0.03,-0.39 0.05,-0.58 0.6,-0.24 1.2,-0.46 1.8,-0.69 -0.07,0.46 -0.13,0.93 -0.19,1.39 -0.07,0.6 -0.16,1.21 -0.12,1.81 0.01,0.11 0.16,0.13 0.19,0.03 0.18,-0.57 0.24,-1.18 0.31,-1.77 0.06,-0.53 0.12,-1.06 0.17,-1.59 0.63,-0.24 1.27,-0.47 1.91,-0.7 -0.08,0.41 -0.16,0.81 -0.24,1.22 -0.1,0.51 -0.2,1.03 -0.18,1.55 0,0.09 0.15,0.15 0.19,0.05 0.2,-0.47 0.29,-0.99 0.38,-1.49 0.08,-0.49 0.17,-0.98 0.25,-1.47 0.16,-0.06 0.32,-0.11 0.48,-0.16 -0.16,1.19 -0.08,2.44 0.07,3.56 0.17,1.25 0.46,2.49 0.79,3.72 -0.31,-0.07 -0.62,-0.13 -0.93,-0.18 0.01,-0.01 0.03,-0.02 0.03,-0.04 -0.07,-0.67 -0.29,-1.32 -0.46,-1.96 -0.05,-0.17 -0.3,-0.1 -0.26,0.07 0.17,0.64 0.31,1.31 0.59,1.92 -0.26,-0.04 -0.53,-0.06 -0.79,-0.08 -0.05,-0.18 -0.1,-0.35 -0.14,-0.53 -0.12,-0.56 -0.2,-1.12 -0.23,-1.69 -0.01,-0.16 -0.25,-0.16 -0.24,0 0,0.58 0.05,1.17 0.17,1.74 0.03,0.15 0.08,0.3 0.12,0.46 -0.59,-0.03 -1.18,0 -1.76,0.05 -0.02,-0.06 -0.03,-0.12 -0.05,-0.18 -0.08,-0.34 -0.08,-0.69 -0.05,-1.03 0,-0.05 -0.08,-0.05 -0.08,0 -0.04,0.35 -0.03,0.71 -0.02,1.07 0,0.05 0.02,0.1 0.02,0.16 -0.61,0.06 -1.22,0.17 -1.82,0.31 -0.01,-0.74 -0.1,-1.47 -0.18,-2.2 -0.02,-0.17 -0.29,-0.18 -0.28,0 0.07,0.75 0.15,1.51 0.31,2.24 -0.63,0.16 -1.25,0.36 -1.84,0.61 -0.11,0.04 -0.2,0.1 -0.31,0.15 0,-0.01 0,-0.02 0,-0.03 0,-0.03 0,-0.06 0,-0.09 0,-0.07 -0.01,-0.14 -0.02,-0.21 -0.01,-0.14 -0.03,-0.27 -0.04,-0.41 -0.01,-0.09 -0.07,-0.17 -0.17,-0.17 -0.08,0 -0.18,0.07 -0.17,0.17 l 0.04,0.41 c 0.01,0.07 0.01,0.14 0.02,0.21 0.01,0.08 0.03,0.18 0.07,0.25 0,0.01 0.01,0 0.02,0.01 -0.5,0.25 -0.99,0.53 -1.44,0.87 -0.65,0.49 -1.13,1.12 -1.68,1.71 -0.35,0.38 -0.67,0.8 -0.97,1.23 -0.15,0.2 -0.26,0.42 -0.4,0.63 -0.02,-0.08 -0.03,-0.16 -0.05,-0.25 -0.1,-0.51 -0.19,-1.03 -0.29,-1.54 -0.03,-0.17 -0.29,-0.1 -0.25,0.07 0.1,0.51 0.2,1.02 0.3,1.54 0.03,0.16 0.06,0.33 0.1,0.49 -0.16,0.26 -0.35,0.51 -0.5,0.78 -0.21,-0.76 -0.41,-1.53 -0.57,-2.3 -0.26,-1.23 -0.45,-2.48 -0.41,-3.74 -0.02,-0.44 0.04,-0.89 0.12,-1.33 z m 1.33,10.71 c 0.27,-1.35 0.77,-2.64 1.52,-3.8 0.32,-0.5 0.7,-0.97 1.12,-1.4 0.49,-0.5 1.14,-0.82 1.73,-1.18 4.57,-2.77 11.01,-2.17 14.2,2.42 1.56,2.25 2.27,5.1 1.87,7.82 -0.39,2.69 -1.86,5 -4.04,6.61 -2.18,1.61 -4.85,2.42 -7.55,2.14 -2.7,-0.27 -5.18,-1.81 -6.9,-3.87 -0.34,-0.41 -0.65,-0.84 -0.93,-1.3 -1.01,-2.37 -1.54,-4.85 -1.02,-7.44 z m 9.26,17.66 c -0.74,-0.62 -1.35,-1.39 -1.87,-2.19 -0.32,-0.49 -0.62,-1.01 -0.91,-1.52 0.44,0.14 0.88,0.26 1.33,0.34 0.28,1.07 0.89,2 1.62,2.83 0.4,0.46 0.85,0.88 1.34,1.24 0.17,0.13 0.36,0.25 0.54,0.37 -0.74,-0.27 -1.42,-0.54 -2.05,-1.07 z m 2.88,0.59 c -0.09,-0.21 -0.46,-0.06 -0.37,0.16 0.04,0.08 0.09,0.16 0.12,0.24 -0.02,0.01 -0.03,0.02 -0.05,0.02 -0.29,-0.16 -0.58,-0.33 -0.86,-0.53 -0.48,-0.35 -0.91,-0.77 -1.3,-1.22 -0.63,-0.74 -1.06,-1.64 -1.43,-2.55 0.33,0.05 0.66,0.08 0.99,0.1 0.31,0.8 0.73,1.58 1.3,2.21 0.34,0.37 0.71,0.7 1.1,1.01 0.29,0.23 0.6,0.44 0.91,0.65 -0.1,0.04 -0.2,0.09 -0.3,0.14 -0.03,-0.08 -0.07,-0.16 -0.11,-0.23 z m 0.82,-0.09 c -0.02,-0.04 -0.04,-0.08 -0.06,-0.12 -0.05,-0.07 -0.16,-0.05 -0.16,0.04 0,0.03 0.01,0.05 0.01,0.08 -0.34,-0.17 -0.68,-0.36 -0.98,-0.59 -0.37,-0.3 -0.71,-0.64 -1.01,-1.01 -0.53,-0.64 -0.96,-1.33 -1.29,-2.07 0.52,0.02 1.03,0.02 1.55,-0.02 -0.01,0.02 -0.04,0.03 -0.04,0.06 0.18,0.82 0.55,1.59 1.11,2.22 0.27,0.31 0.58,0.58 0.92,0.82 0.17,0.12 0.35,0.24 0.53,0.34 0,0 0,0 0.01,0 -0.19,0.08 -0.39,0.16 -0.59,0.25 z m 0.79,-0.34 c -0.04,-0.02 -0.08,-0.04 -0.12,-0.06 -0.17,-0.09 -0.33,-0.2 -0.49,-0.31 -0.33,-0.24 -0.62,-0.53 -0.88,-0.84 -0.51,-0.62 -0.9,-1.35 -1.09,-2.14 0,-0.02 -0.03,-0.01 -0.04,-0.02 0.5,-0.05 1,-0.12 1.49,-0.23 0,0.02 -0.02,0.03 -0.01,0.04 0.11,0.16 0.23,0.31 0.34,0.47 0.06,0.08 0.11,0.15 0.17,0.23 0.06,0.08 0.11,0.16 0.18,0.23 0.04,0.04 0.11,-0.01 0.08,-0.06 -0.04,-0.09 -0.1,-0.17 -0.16,-0.25 -0.05,-0.08 -0.11,-0.15 -0.16,-0.23 -0.11,-0.15 -0.22,-0.31 -0.33,-0.46 0.4,-0.09 0.8,-0.19 1.19,-0.31 0.23,0.52 0.51,1.01 0.88,1.45 0.31,0.36 0.66,0.69 1.04,0.97 0.19,0.14 0.39,0.27 0.6,0.39 0.01,0.01 0.02,0.01 0.03,0.02 -0.89,0.37 -1.81,0.73 -2.72,1.11 z m 6.02,-0.5 c 1.39,-0.58 2.77,-1.18 4.14,-1.8 0.69,-0.31 1.37,-0.62 2.05,-0.94 0.7,-0.33 1.49,-0.61 2.13,-1.04 0.04,-0.03 0.07,-0.07 0.1,-0.1 0.28,-0.18 0.39,-0.46 0.39,-0.74 0.15,-0.21 0.23,-0.46 0.2,-0.73 1.76,-0.75 3.53,-1.49 5.29,-2.24 -3.65,4.78 -7.29,9.56 -10.98,14.31 -0.06,0.08 -0.09,0.16 -0.12,0.25 -1.08,-0.9 -2.14,-1.83 -3.16,-2.8 -0.52,-0.6 -1.03,-1.21 -1.55,-1.81 -0.37,-0.42 -0.71,-0.85 -1.07,-1.28 0.86,-0.36 1.72,-0.72 2.58,-1.08 z m 4.56,7.85 c 0.3,-0.38 0.6,-0.77 0.89,-1.15 0,0 0,0 0,0 0.26,0.33 0.53,0.67 0.79,1 0.26,0.33 0.51,0.69 0.81,0.99 0.06,0.06 0.15,-0.02 0.11,-0.09 -0.22,-0.36 -0.51,-0.69 -0.77,-1.02 l -0.8,-1.02 c -0.01,-0.01 -0.02,0 -0.03,0 1.97,-2.56 3.96,-5.12 5.94,-7.67 0.49,0.29 0.98,0.59 1.47,0.88 0.29,0.17 0.57,0.34 0.86,0.51 0.13,0.08 0.27,0.16 0.4,0.23 0.14,0.08 0.28,0.19 0.45,0.22 0.12,0.03 0.2,-0.11 0.12,-0.21 -0.11,-0.12 -0.27,-0.2 -0.41,-0.28 -0.13,-0.08 -0.27,-0.16 -0.4,-0.24 -0.29,-0.17 -0.58,-0.33 -0.87,-0.5 -0.49,-0.28 -0.97,-0.56 -1.46,-0.84 0.28,-0.35 0.55,-0.71 0.83,-1.06 0.52,0.33 1.04,0.66 1.56,0.98 0.27,0.17 0.54,0.34 0.81,0.51 0.13,0.08 0.25,0.16 0.38,0.24 0.13,0.08 0.27,0.19 0.43,0.22 0.1,0.02 0.24,-0.1 0.16,-0.2 -0.18,-0.23 -0.5,-0.36 -0.74,-0.51 -0.28,-0.17 -0.56,-0.35 -0.84,-0.52 -0.52,-0.32 -1.04,-0.65 -1.56,-0.97 0.29,-0.38 0.58,-0.75 0.88,-1.13 -0.01,0.06 0,0.11 0.07,0.15 0.34,0.2 0.68,0.4 1.02,0.6 -0.14,0.2 -0.29,0.4 -0.42,0.61 -0.06,0.09 0.08,0.2 0.15,0.12 0.17,-0.19 0.33,-0.4 0.49,-0.6 0.16,0.1 0.32,0.19 0.48,0.29 l 0.08,0.05 c -0.21,0.23 -0.42,0.46 -0.63,0.69 -0.08,0.09 0.04,0.21 0.13,0.13 0.25,-0.22 0.47,-0.47 0.71,-0.7 l 0.57,0.34 c 0.28,0.16 0.55,0.34 0.86,0.44 0,0 0.01,-0.01 0.01,0 -0.07,0.16 -0.15,0.31 -0.22,0.46 -0.02,0.06 0.05,0.11 0.08,0.05 0.29,-0.52 0.56,-1.05 0.83,-1.58 0.05,-0.1 -0.1,-0.18 -0.14,-0.08 -0.16,0.31 -0.3,0.63 -0.45,0.95 -0.24,-0.21 -0.52,-0.37 -0.8,-0.53 -0.16,-0.1 -0.33,-0.19 -0.49,-0.29 0.31,-0.3 0.62,-0.59 0.92,-0.9 0.39,0.27 0.79,0.54 1.2,0.76 0.15,0.08 0.33,-0.13 0.19,-0.24 -0.36,-0.28 -0.74,-0.54 -1.12,-0.79 0.11,-0.11 0.23,-0.22 0.34,-0.33 0.29,0.15 0.6,0.28 0.92,0.37 0.16,0.05 0.33,0.09 0.5,0.12 0.05,0.01 0.11,0.02 0.17,0.03 -0.94,1.24 -1.87,2.49 -2.81,3.73 -1.29,1.72 -2.56,3.46 -3.87,5.16 -0.67,0.87 -1.31,1.82 -2.08,2.61 -0.8,0.81 -1.42,1.69 -2,2.66 -0.04,0.07 -0.05,0.14 -0.07,0.21 -0.21,-0.14 -0.43,-0.28 -0.65,-0.43 -1.06,-0.73 -2.08,-1.53 -3.1,-2.33 0.04,-0.02 0.08,-0.05 0.12,-0.1 z m 28.25,-59.38 c -0.11,-0.1 -0.23,-0.2 -0.34,-0.3 -0.02,-0.01 -0.03,-0.03 -0.04,-0.04 0.17,-0.05 0.34,-0.09 0.52,-0.14 0.02,-0.01 0.04,-0.01 0.07,-0.02 0.06,0.1 0.14,0.21 0.23,0.32 -0.16,0.07 -0.3,0.12 -0.44,0.18 z m 0.79,-0.33 c -0.03,-0.04 -0.06,-0.07 -0.08,-0.11 -0.04,-0.05 -0.07,-0.11 -0.11,-0.16 0.14,-0.04 0.29,-0.08 0.43,-0.11 0.15,-0.04 0.3,-0.08 0.45,-0.12 0.12,-0.04 0.25,-0.08 0.36,-0.14 0.04,0.05 0.06,0.12 0.09,0.17 -0.37,0.16 -0.75,0.32 -1.14,0.47 z m 25.88,-11.64 c 0.19,0.05 0.39,0.11 0.58,0.16 -0.2,0.23 -0.4,0.46 -0.6,0.7 -0.31,0.13 -0.63,0.26 -0.94,0.4 0.32,-0.42 0.64,-0.84 0.96,-1.26 z m 1.03,0.29 c 0.05,0.01 0.1,0.03 0.16,0.04 0.01,0 0.03,0.01 0.04,0.01 -0.05,0.02 -0.1,0.04 -0.15,0.06 -0.08,0.03 -0.16,0.07 -0.24,0.1 0.06,-0.07 0.13,-0.14 0.19,-0.21 z m 1.23,-0.39 c 0.19,-0.2 0.38,-0.4 0.56,-0.59 0.14,-0.15 0.26,-0.31 0.39,-0.46 0.13,0.09 0.26,0.18 0.39,0.27 0.06,0.04 0.12,0.07 0.17,0.11 -0.01,0.01 -0.02,0.03 -0.03,0.04 -0.48,0.21 -0.98,0.42 -1.48,0.63 z m 28.95,-12.34 c -0.59,-0.8 -1.19,-1.58 -1.82,-2.35 0.3,-0.12 0.61,-0.25 0.91,-0.37 0.28,0.39 0.56,0.78 0.85,1.17 0.26,0.35 0.51,0.7 0.77,1.06 0.04,0.05 0.08,0.1 0.11,0.15 -0.27,0.11 -0.54,0.23 -0.82,0.34 z m 1.15,-0.49 c -0.06,-0.08 -0.13,-0.17 -0.19,-0.25 -0.25,-0.34 -0.5,-0.68 -0.75,-1.02 -0.27,-0.36 -0.54,-0.73 -0.81,-1.09 0.31,-0.13 0.62,-0.26 0.93,-0.38 0.33,0.41 0.65,0.82 0.98,1.23 0.2,0.25 0.39,0.49 0.59,0.74 0.09,0.11 0.18,0.23 0.27,0.34 -0.34,0.14 -0.68,0.29 -1.02,0.43 z m 1.34,-0.57 c 0,-0.01 -0.01,-0.01 -0.01,-0.02 -0.1,-0.13 -0.2,-0.25 -0.3,-0.38 -0.2,-0.25 -0.41,-0.5 -0.61,-0.76 -0.31,-0.38 -0.62,-0.76 -0.92,-1.14 0.31,-0.13 0.63,-0.26 0.94,-0.39 0.6,0.76 1.18,1.54 1.74,2.32 -0.28,0.13 -0.56,0.25 -0.84,0.37 z m 20.41,-13.92 c 0.05,0.21 0.11,0.42 0.2,0.62 -0.36,0.23 -0.64,0.63 -0.85,0.98 -0.11,0.19 -0.2,0.38 -0.28,0.58 -0.11,-0.58 -0.24,-1.15 -0.39,-1.72 0.44,-0.13 0.88,-0.29 1.32,-0.46 z m 2.14,-1.49 c 0.02,0.12 0.05,0.24 0.08,0.36 0.07,0.3 0.16,0.59 0.25,0.88 0.13,0.41 0.27,0.82 0.41,1.23 -0.03,0.02 -0.06,0.04 -0.09,0.05 -0.08,0.03 -0.17,0.05 -0.25,0.07 -0.06,0 -0.12,0.01 -0.17,0.01 -0.04,0 -0.09,0 -0.13,0 -0.01,0 -0.02,0 -0.03,0 0,0 0,0 0,0 -0.01,0 -0.01,0 -0.02,0 0,0 -0.01,0 -0.01,0 0,0 0,0 0,0 -0.08,-0.01 -0.17,0 -0.25,0.03 -0.02,-0.03 -0.04,-0.06 -0.07,-0.08 0.08,0.1 -0.03,-0.04 -0.04,-0.06 -0.18,-0.24 -0.33,-0.5 -0.46,-0.77 -0.02,-0.05 -0.05,-0.1 -0.07,-0.15 0.01,0.01 -0.05,-0.13 -0.06,-0.15 -0.03,-0.07 -0.06,-0.14 -0.09,-0.2 -0.01,-0.02 -0.01,-0.02 -0.01,-0.03 -0.02,-0.06 -0.05,-0.12 -0.07,-0.18 -0.06,-0.16 -0.1,-0.32 -0.17,-0.47 0.08,-0.02 0.17,-0.05 0.24,-0.09 0.05,-0.02 0.11,-0.04 0.16,-0.07 0.04,-0.02 0.08,-0.05 0.13,-0.08 0.15,-0.09 0.3,-0.16 0.46,-0.23 0.07,-0.02 0.17,-0.04 0.26,-0.07 z m -6.96,-9.25 c 0.28,-0.1 0.55,-0.2 0.83,-0.31 0.07,0.11 0.14,0.23 0.21,0.34 0.08,0.13 0.16,0.26 0.24,0.39 0.04,0.07 0.09,0.13 0.14,0.19 0.05,0.06 0.09,0.13 0.16,0.16 0.07,0.03 0.15,-0.01 0.16,-0.09 0,-0.08 -0.04,-0.15 -0.07,-0.22 -0.04,-0.07 -0.07,-0.14 -0.11,-0.21 -0.08,-0.13 -0.17,-0.26 -0.25,-0.39 -0.06,-0.1 -0.12,-0.19 -0.19,-0.29 0.23,-0.09 0.47,-0.17 0.7,-0.26 0.62,-0.24 1.24,-0.5 1.85,-0.76 0.39,-0.16 0.79,-0.32 1.17,-0.5 0.03,0.04 0.06,0.09 0.09,0.13 0.07,0.12 0.15,0.23 0.22,0.35 0.08,0.13 0.17,0.26 0.29,0.36 0.03,0.02 0.06,0.04 0.09,0.04 0.15,0.24 0.3,0.47 0.44,0.71 0.48,0.81 0.91,1.65 1.3,2.51 0.39,0.85 0.74,1.73 1.03,2.62 0.27,0.83 0.46,1.67 0.69,2.51 l -0.45,0.19 c -0.02,-0.25 -0.05,-0.5 -0.09,-0.74 -0.1,-0.64 -0.27,-1.27 -0.49,-1.88 -0.43,-1.19 -1.08,-2.26 -1.89,-3.22 -0.09,-0.11 -0.24,0.05 -0.16,0.16 0.77,0.97 1.34,2.09 1.74,3.25 0.19,0.55 0.33,1.11 0.42,1.68 0.05,0.3 0.07,0.6 0.1,0.9 l -0.55,0.23 c -0.01,0 -0.02,-0.02 -0.03,-0.02 -0.02,-0.08 -0.03,-0.15 -0.04,-0.22 -0.07,-0.4 -0.15,-0.8 -0.26,-1.19 -0.21,-0.78 -0.53,-1.54 -0.87,-2.27 -0.08,-0.17 -0.32,-0.02 -0.24,0.14 0.33,0.73 0.56,1.5 0.74,2.27 0.09,0.38 0.17,0.76 0.23,1.15 0,0.03 0.01,0.07 0.01,0.1 -0.14,0.02 -0.29,0.05 -0.42,0.09 -0.24,0.06 -0.48,0.16 -0.7,0.27 -0.03,0.01 -0.05,0.04 -0.08,0.05 0,-0.05 0.01,-0.1 0.01,-0.14 0.01,-0.43 -0.03,-0.86 -0.11,-1.28 -0.16,-0.85 -0.51,-1.67 -1.01,-2.38 -0.12,-0.17 -0.4,-0.01 -0.28,0.17 0.46,0.67 0.78,1.42 0.94,2.22 0.08,0.4 0.11,0.81 0.1,1.23 0,0.15 -0.03,0.31 -0.05,0.46 -0.04,0.03 -0.08,0.05 -0.11,0.08 -0.11,0.1 -0.22,0.26 -0.29,0.42 -0.01,-0.03 -0.03,-0.06 -0.04,-0.09 -0.04,0.02 -0.08,0.04 -0.13,0.06 -0.02,-0.08 -0.05,-0.16 -0.07,-0.23 -0.1,-0.38 -0.23,-0.75 -0.36,-1.12 -0.27,-0.74 -0.62,-1.44 -0.99,-2.14 -0.09,-0.16 -0.33,-0.02 -0.24,0.14 0.36,0.68 0.65,1.4 0.89,2.13 0.12,0.36 0.23,0.72 0.33,1.09 0.02,0.09 0.04,0.2 0.06,0.3 -0.23,0.1 -0.46,0.2 -0.68,0.3 -0.13,-0.9 -0.31,-1.78 -0.63,-2.64 -0.43,-1.14 -1.02,-2.14 -1.77,-3.1 -0.1,-0.13 -0.32,-0.01 -0.22,0.13 0.63,0.95 1.15,2.02 1.56,3.08 0.33,0.86 0.58,1.76 0.76,2.68 -0.18,0.09 -0.35,0.18 -0.52,0.27 -0.11,-0.34 -0.22,-0.69 -0.33,-1.03 -0.56,-1.68 -1.24,-3.33 -2.02,-4.92 -0.6,-1.23 -1.29,-2.41 -2.03,-3.56 0.03,-0.01 0.05,-0.01 0.08,-0.02 0.08,0.07 0.17,0.15 0.25,0.22 0.13,0.12 0.27,0.24 0.4,0.35 0.14,0.13 0.27,0.24 0.46,0.3 0.1,0.04 0.18,-0.09 0.13,-0.17 -0.09,-0.17 -0.23,-0.28 -0.38,-0.39 -0.13,-0.11 -0.27,-0.22 -0.4,-0.33 -0.03,-0.03 -0.07,-0.05 -0.1,-0.08 0.3,-0.03 0.57,-0.14 0.83,-0.23 z m -6.01,-2.61 c 0.17,-0.07 0.34,-0.13 0.51,-0.2 0.11,-0.04 0.22,-0.08 0.34,-0.12 0.22,0.42 0.53,0.81 0.75,1.15 0.43,0.67 0.89,1.31 1.31,1.99 0.9,1.44 1.71,2.94 2.42,4.48 0.7,1.51 1.28,3.06 1.77,4.65 0.48,1.55 0.77,3.14 1.15,4.71 -0.1,0.05 -0.2,0.1 -0.3,0.15 l -0.38,0.2 c -0.01,0.01 -0.02,0.02 -0.03,0.02 -0.17,-1.45 -0.63,-2.93 -1.05,-4.31 -0.49,-1.58 -1.06,-3.15 -1.75,-4.65 -0.67,-1.47 -1.43,-2.91 -2.29,-4.28 -0.72,-1.15 -1.52,-2.35 -2.55,-3.25 -0.01,-0.03 -0.03,-0.06 -0.04,-0.09 -0.02,0.01 -0.03,0.01 -0.05,0.02 -0.11,-0.09 -0.21,-0.2 -0.32,-0.28 0.17,-0.06 0.34,-0.13 0.51,-0.19 z m -0.87,0.59 c 0,-0.01 0,-0.02 0,-0.04 0.02,0.06 0.05,0.12 0.08,0.18 -0.01,0.01 -0.02,0.01 -0.03,0.02 -0.02,-0.05 -0.04,-0.11 -0.05,-0.16 z m -117.33,34.22 c 3.67,-7.19 8.64,-13.69 14.71,-19.01 6.66,-5.85 14.65,-10.22 23.13,-12.78 6.75,-2.04 13.82,-2.92 20.87,-2.69 7.05,0.22 14.05,1.57 20.7,3.95 4.95,1.77 9.7,4.18 14.08,7.11 -0.22,0.1 -0.44,0.2 -0.66,0.29 -0.2,-0.31 -0.47,-0.6 -0.73,-0.85 -0.32,-0.31 -0.67,-0.6 -1.03,-0.85 -0.74,-0.5 -1.57,-0.88 -2.42,-1.14 -0.14,-0.04 -0.2,0.17 -0.06,0.22 0.83,0.28 1.58,0.7 2.27,1.24 0.33,0.26 0.65,0.53 0.94,0.83 0.22,0.23 0.42,0.48 0.63,0.72 -0.37,0.16 -0.73,0.33 -1.1,0.49 -2.76,-2.75 -6.36,-4.73 -10.04,-5.91 -1.12,-0.36 -2.25,-0.67 -3.41,-0.86 -0.19,-0.03 -0.27,0.25 -0.08,0.29 2.01,0.39 3.96,0.93 5.84,1.76 1.83,0.81 3.55,1.85 5.14,3.06 0.76,0.57 1.46,1.2 2.16,1.84 -0.21,0.09 -0.42,0.18 -0.62,0.27 -0.28,-0.22 -0.57,-0.42 -0.83,-0.61 -0.54,-0.39 -1.11,-0.76 -1.69,-1.1 -1.13,-0.66 -2.32,-1.2 -3.56,-1.63 -0.2,-0.07 -0.28,0.24 -0.09,0.31 1.22,0.43 2.4,0.98 3.51,1.64 0.53,0.31 1.05,0.65 1.56,1.02 0.24,0.17 0.47,0.35 0.7,0.53 -0.09,0.04 -0.18,0.08 -0.27,0.12 -0.83,-0.52 -1.67,-1.04 -2.53,-1.51 -5.85,-3.22 -12.24,-5.49 -18.8,-6.7 -6.59,-1.22 -13.33,-1.41 -19.97,-0.54 -7.4,0.97 -14.59,3.35 -21.12,6.96 -7.06,3.9 -13.27,9.24 -18.17,15.65 -4.57,5.98 -8.06,12.77 -10.21,19.99 -0.52,1.74 -0.93,3.5 -1.29,5.28 -0.3,0.12 -0.6,0.24 -0.9,0.37 0.05,-0.37 0.11,-0.74 0.17,-1.11 0.2,-1.04 0.44,-2.06 0.7,-3.09 0.53,-2.07 1.38,-4.05 2.31,-5.97 0.07,-0.14 -0.14,-0.27 -0.21,-0.13 -1.05,1.9 -1.8,3.93 -2.48,5.99 -0.34,1.03 -0.61,2.11 -0.81,3.17 -0.09,0.45 -0.16,0.9 -0.23,1.36 -0.34,0.14 -0.67,0.27 -1.01,0.41 0.11,-0.81 0.22,-1.62 0.37,-2.43 0.22,-1.17 0.47,-2.34 0.78,-3.49 0.3,-1.15 0.64,-2.3 1.03,-3.43 0.38,-1.13 0.75,-2.26 1.19,-3.37 0.03,-0.07 -0.1,-0.13 -0.13,-0.06 -0.39,0.84 -0.8,1.67 -1.12,2.54 -0.32,0.87 -0.62,1.76 -0.9,2.65 -0.55,1.8 -0.99,3.63 -1.33,5.49 -0.14,0.76 -0.26,1.52 -0.36,2.29 -0.29,0.12 -0.58,0.24 -0.87,0.36 1.09,-6.59 3.21,-13 6.24,-18.94 z m -27.24,31.2 c 0.18,-0.04 0.35,-0.11 0.53,-0.18 0.17,-0.06 0.33,-0.13 0.5,-0.19 0.02,-0.01 0.05,-0.02 0.07,-0.03 0.04,0.11 0.07,0.21 0.11,0.32 0.08,0.22 0.16,0.44 0.25,0.66 l 0.13,0.34 c 0.01,0.03 0.02,0.06 0.03,0.09 -0.15,0.06 -0.29,0.12 -0.44,0.18 -0.22,0.09 -0.45,0.18 -0.66,0.29 -0.03,0.02 -0.05,0.03 -0.08,0.05 -0.07,-0.15 -0.15,-0.3 -0.23,-0.44 l -0.3,-0.56 c -0.09,-0.17 -0.19,-0.33 -0.29,-0.49 0.12,-0.01 0.25,-0.01 0.38,-0.04 z m -0.68,7.32 c -0.43,-0.9 -0.79,-1.85 -0.98,-2.83 -0.08,-0.44 -0.12,-0.89 -0.13,-1.34 0,-0.23 0.01,-0.46 0.03,-0.69 0,-0.01 0,-0.01 0,-0.02 0.32,-0.13 0.63,-0.27 0.93,-0.4 0.06,0.14 0.13,0.28 0.24,0.36 0.2,0.16 0.43,0.22 0.68,0.13 0.02,0.01 0.03,0.04 0.04,0.05 0.14,0.07 0.27,0.12 0.43,0.11 0.14,-0.01 0.28,-0.05 0.41,-0.08 0.19,-0.05 0.37,-0.12 0.55,-0.19 0.37,-0.14 0.75,-0.29 1.12,-0.43 0.17,-0.06 0.31,-0.15 0.4,-0.31 0.08,-0.14 0.11,-0.34 0.06,-0.5 -0.01,-0.04 -0.04,-0.08 -0.06,-0.12 0,-0.03 0.02,-0.05 0.02,-0.08 -0.01,-0.15 -0.05,-0.29 -0.1,-0.42 0.22,-0.08 0.44,-0.16 0.65,-0.24 0.54,-0.19 1.14,-0.34 1.7,-0.55 0.32,1.15 0.68,2.29 1.12,3.4 0.62,1.59 1.38,3.19 2.27,4.71 -0.1,0.07 -0.2,0.13 -0.3,0.19 -0.02,-0.05 -0.04,-0.09 -0.07,-0.14 -0.06,-0.13 -0.12,-0.25 -0.18,-0.37 -0.14,-0.28 -0.27,-0.56 -0.41,-0.84 -0.28,-0.54 -0.55,-1.09 -0.82,-1.63 -0.09,-0.19 -0.36,-0.02 -0.28,0.16 0.26,0.54 0.51,1.08 0.76,1.63 0.13,0.27 0.26,0.54 0.39,0.81 0.06,0.12 0.12,0.25 0.18,0.37 0.03,0.07 0.06,0.14 0.1,0.21 -0.02,0.01 -0.03,0.02 -0.05,0.03 -0.02,0.01 -0.03,0.02 -0.05,0.03 -0.05,-0.06 -0.11,-0.12 -0.15,-0.18 -0.17,-0.23 -0.33,-0.46 -0.49,-0.7 -0.3,-0.46 -0.56,-0.95 -0.79,-1.45 -0.47,-1.03 -0.78,-2.15 -0.94,-3.27 -0.02,-0.13 -0.24,-0.1 -0.23,0.03 0.1,1.17 0.39,2.29 0.86,3.36 0.24,0.54 0.52,1.05 0.84,1.54 0.16,0.25 0.34,0.5 0.52,0.74 0.02,0.03 0.04,0.06 0.07,0.09 -0.22,0.13 -0.45,0.24 -0.67,0.36 -0.01,-0.01 -0.02,-0.02 -0.03,-0.03 -0.07,-0.06 -0.14,-0.12 -0.21,-0.18 -0.14,-0.12 -0.27,-0.25 -0.41,-0.37 -0.08,-0.07 -0.18,0.04 -0.11,0.11 0.12,0.14 0.25,0.27 0.37,0.41 0.05,0.06 0.1,0.12 0.15,0.19 -0.21,0.11 -0.42,0.23 -0.64,0.34 -0.03,-0.08 -0.06,-0.15 -0.09,-0.23 -0.12,-0.32 -0.26,-0.63 -0.38,-0.94 -0.05,-0.13 -0.12,-0.24 -0.18,-0.36 0.01,-0.07 0.03,-0.15 0.02,-0.22 -0.07,-0.32 -0.41,-0.51 -0.73,-0.54 -0.02,-0.05 -0.03,-0.09 -0.05,-0.14 -0.22,-0.56 -0.46,-1.12 -0.68,-1.67 -0.07,-0.17 -0.34,-0.1 -0.28,0.07 0.22,0.57 0.44,1.15 0.67,1.71 0.01,0.01 0.01,0.03 0.02,0.04 -0.11,0.01 -0.23,0.02 -0.34,0.05 -0.29,0.07 -0.58,0.19 -0.83,0.36 -0.07,0.05 -0.14,0.1 -0.21,0.15 -0.11,0.09 -0.18,0.16 -0.26,0.28 -0.05,0.08 -0.08,0.16 -0.09,0.25 -0.14,-0.23 -0.28,-0.46 -0.39,-0.71 -0.29,-0.68 -0.5,-1.38 -0.57,-2.12 -0.01,-0.12 -0.2,-0.13 -0.2,0 0.05,0.73 0.2,1.48 0.5,2.15 0.13,0.31 0.3,0.63 0.48,0.93 -0.08,0.06 -0.14,0.17 -0.11,0.28 0.14,0.68 0.4,1.34 0.69,1.98 -0.05,0.02 -0.11,0.04 -0.16,0.06 -0.02,0 -0.03,-0.01 -0.05,-0.01 0.02,-0.05 0.03,-0.1 0,-0.14 -0.1,-0.14 -0.22,-0.28 -0.33,-0.41 -0.11,-0.13 -0.22,-0.26 -0.32,-0.39 -0.04,-0.05 -0.13,-0.05 -0.18,-0.01 -0.05,0.04 -0.08,0.12 -0.03,0.18 l 0.3,0.4 c 0.09,0.12 0.19,0.25 0.29,0.37 -0.04,0.01 -0.07,0 -0.11,0.01 -0.75,0.24 -1.28,-0.04 -1.72,-0.7 -0.57,-0.82 -1.03,-1.77 -1.47,-2.68 z m 4.08,4.95 c 0.01,0 0.01,0 0,0 0.07,-0.02 0.13,-0.04 0.19,-0.06 -0.01,0.01 -0.02,0.01 -0.03,0.02 -0.03,0.02 -0.06,0.04 -0.08,0.07 -0.04,0.04 -0.09,0.07 -0.13,0.11 -0.03,0 -0.06,-0.02 -0.09,-0.02 0.04,-0.04 0.1,-0.07 0.14,-0.12 z m -32.5,42.28 c -1.03,-1.21 -1.84,-2.69 -2.53,-4.12 -0.63,-1.32 -1.22,-2.73 -1.56,-4.16 -0.22,-0.91 -0.21,-1.92 0.1,-2.81 0.13,-0.05 0.26,-0.1 0.39,-0.15 0.15,-0.06 0.31,-0.11 0.46,-0.17 -0.02,0.05 -0.06,0.1 -0.07,0.16 -0.03,0.11 -0.04,0.23 -0.05,0.34 0,0.06 0.02,0.11 0.03,0.16 -0.06,-0.07 -0.19,-0.07 -0.22,0.04 -0.08,0.33 -0.12,0.67 -0.1,1.01 0.02,0.34 0.07,0.68 0.22,0.99 0.07,0.13 0.26,0.04 0.23,-0.1 -0.06,-0.3 -0.15,-0.6 -0.17,-0.91 -0.02,-0.3 0.01,-0.59 0.07,-0.88 0,0.01 0,0.02 0.01,0.03 0.03,0.07 0.08,0.12 0.16,0.11 0.08,-0.01 0.13,-0.07 0.13,-0.15 0,-0.02 0,-0.05 0.01,-0.07 0,-0.01 0,-0.04 0,-0.01 0,-0.02 0.01,-0.04 0.01,-0.06 0,-0.05 0,-0.1 0,-0.15 0,-0.05 0,-0.1 0.01,-0.15 0,-0.01 0,-0.02 0,-0.03 0,0 0,-0.01 0,-0.01 0,0 0,0 0,0 0,-0.02 0.01,-0.05 0.01,-0.07 0.01,-0.05 0.02,-0.09 0.03,-0.14 0.01,-0.02 0.01,-0.05 0.02,-0.07 0,-0.01 0.01,-0.03 0.01,-0.04 0,0 0.01,-0.03 0.01,-0.02 -0.01,0.02 0.01,-0.02 0.01,-0.03 0,-0.01 0.01,-0.02 0.01,-0.03 0.01,-0.02 0.02,-0.04 0.03,-0.07 0,0 0.01,-0.01 0.01,-0.01 l 0.16,-0.06 c 0,0.04 0.01,0.09 0.01,0.13 0.18,2.07 0.86,4.07 1.74,5.94 0.89,1.89 2,3.66 3.12,5.42 0.18,0.29 0.4,0.61 0.64,0.92 -0.14,0.07 -0.28,0.14 -0.42,0.21 -0.27,-0.31 -0.56,-0.6 -0.8,-0.93 -0.75,-1.01 -1.4,-2.11 -1.9,-3.27 -0.05,-0.11 -0.25,-0.03 -0.2,0.09 0.49,1.22 1.11,2.37 1.89,3.43 0.22,0.3 0.46,0.57 0.7,0.85 -0.03,0.02 -0.06,0.04 -0.09,0.05 -0.09,-0.01 -0.19,-0.02 -0.28,-0.04 -0.57,-0.71 -1.1,-1.44 -1.61,-2.2 -0.05,-0.07 -0.16,-0.01 -0.12,0.07 0.38,0.72 0.83,1.39 1.32,2.04 -0.58,-0.17 -1.05,-0.62 -1.43,-1.08 z m 22.05,-5.9 c -0.11,0.05 -0.22,0.09 -0.32,0.14 -0.34,-0.47 -0.68,-0.93 -0.98,-1.42 -0.87,-1.4 -1.64,-2.86 -2.28,-4.38 -0.06,-0.13 -0.29,-0.04 -0.24,0.1 0.6,1.55 1.34,3.04 2.21,4.46 0.29,0.48 0.62,0.93 0.94,1.39 -0.22,0.1 -0.45,0.19 -0.68,0.29 -0.08,-0.1 -0.18,-0.19 -0.26,-0.29 -0.52,-0.64 -0.94,-1.35 -1.26,-2.11 -0.06,-0.13 -0.29,-0.04 -0.23,0.1 0.31,0.79 0.71,1.54 1.22,2.22 0.05,0.07 0.13,0.15 0.18,0.22 -0.17,0.07 -0.33,0.14 -0.5,0.21 -1.26,-1.46 -2.2,-3.2 -2.64,-5.07 -0.05,-0.2 -0.34,-0.11 -0.3,0.08 0.41,1.92 1.31,3.67 2.55,5.16 -0.28,0.12 -0.56,0.24 -0.84,0.36 -0.57,-0.65 -1.04,-1.39 -1.38,-2.2 -0.07,-0.17 -0.35,-0.1 -0.28,0.08 0.33,0.83 0.82,1.56 1.38,2.24 -0.3,0.13 -0.6,0.26 -0.91,0.38 -0.18,-0.19 -0.38,-0.36 -0.55,-0.57 -0.64,-0.79 -1.13,-1.71 -1.43,-2.68 -0.05,-0.15 -0.28,-0.09 -0.24,0.06 0.29,1.02 0.77,1.97 1.42,2.81 0.14,0.18 0.32,0.34 0.48,0.51 -0.23,0.1 -0.47,0.2 -0.7,0.3 -0.05,0.02 -0.1,0.04 -0.16,0.06 -0.4,-0.46 -0.74,-0.97 -0.97,-1.53 -0.05,-0.12 -0.26,-0.07 -0.21,0.06 0.22,0.57 0.53,1.1 0.91,1.58 -0.27,0.11 -0.55,0.22 -0.83,0.33 -0.22,-0.24 -0.45,-0.48 -0.64,-0.74 -0.62,-0.83 -1.11,-1.71 -1.46,-2.68 -0.03,-0.07 -0.15,-0.04 -0.12,0.03 0.34,0.98 0.81,1.94 1.43,2.79 0.17,0.24 0.38,0.46 0.57,0.69 -0.27,0.11 -0.54,0.22 -0.81,0.32 -0.01,-0.01 -0.02,-0.02 -0.04,-0.04 -0.47,-0.6 -0.82,-1.3 -1,-2.04 -0.04,-0.15 -0.26,-0.09 -0.23,0.06 0.16,0.77 0.49,1.5 0.96,2.13 -0.21,0.08 -0.41,0.16 -0.62,0.24 -0.27,-0.3 -0.52,-0.62 -0.75,-0.97 -0.68,-1.03 -1.19,-2.17 -1.48,-3.37 -0.01,-0.06 -0.1,-0.03 -0.09,0.02 0.36,1.59 1.12,3.1 2.15,4.38 -0.26,0.1 -0.51,0.19 -0.77,0.29 -0.47,-0.59 -0.89,-1.24 -1.17,-1.94 -0.07,-0.17 -0.35,-0.1 -0.28,0.08 0.28,0.72 0.65,1.38 1.09,2.01 -0.25,0.09 -0.5,0.19 -0.74,0.28 -0.24,-0.24 -0.5,-0.47 -0.72,-0.73 -0.71,-0.85 -1.28,-1.83 -1.68,-2.86 -0.05,-0.13 -0.27,-0.08 -0.22,0.06 0.37,1.05 0.9,2.03 1.59,2.91 0.21,0.27 0.46,0.5 0.69,0.75 -0.27,0.1 -0.54,0.21 -0.81,0.32 -0.29,-0.33 -0.55,-0.69 -0.74,-1.09 -0.04,-0.08 -0.15,-0.01 -0.11,0.07 0.18,0.39 0.4,0.75 0.65,1.1 -0.18,0.07 -0.36,0.14 -0.54,0.21 -0.11,-0.12 -0.23,-0.23 -0.33,-0.35 -0.55,-0.67 -0.99,-1.44 -1.33,-2.23 -0.02,-0.05 -0.11,-0.01 -0.09,0.04 0.33,0.82 0.76,1.59 1.28,2.31 0.08,0.11 0.17,0.21 0.25,0.32 -0.21,0.08 -0.42,0.16 -0.63,0.25 -0.31,-0.38 -0.57,-0.8 -0.75,-1.26 -0.04,-0.12 -0.23,-0.07 -0.19,0.05 0.17,0.47 0.41,0.9 0.7,1.3 -0.25,0.1 -0.5,0.21 -0.74,0.31 -0.17,-0.16 -0.34,-0.32 -0.49,-0.5 -0.68,-0.76 -1.17,-1.67 -1.45,-2.65 -0.02,-0.08 -0.15,-0.05 -0.13,0.04 0.26,1 0.75,1.92 1.43,2.71 0.15,0.17 0.33,0.31 0.5,0.46 -0.15,0.06 -0.3,0.13 -0.46,0.2 -0.09,-0.09 -0.18,-0.18 -0.26,-0.28 -0.5,-0.57 -0.94,-1.17 -1.3,-1.84 -0.02,-0.04 -0.08,0 -0.06,0.04 0.34,0.69 0.73,1.36 1.2,1.97 0.06,0.07 0.12,0.14 0.18,0.21 -0.12,0.05 -0.24,0.11 -0.36,0.16 -0.04,-0.01 -0.07,-0.03 -0.11,-0.04 -0.09,-0.02 -0.17,-0.03 -0.25,-0.04 -0.01,-0.01 -0.03,-0.03 -0.04,-0.04 -0.59,-0.71 -1.05,-1.57 -1.36,-2.44 -0.04,-0.11 -0.21,-0.07 -0.18,0.05 0.19,0.85 0.58,1.6 1.08,2.3 -0.17,-0.07 -0.33,-0.18 -0.52,-0.39 -0.46,-0.49 -0.79,-1.1 -1.14,-1.66 -0.92,-1.44 -1.81,-2.9 -2.56,-4.44 -0.72,-1.46 -1.32,-2.98 -1.66,-4.57 -0.14,-0.65 -0.25,-1.32 -0.28,-1.98 0.01,-0.05 -0.01,-0.11 -0.01,-0.16 0,-0.05 -0.01,-0.11 -0.01,-0.16 0,-0.28 0.01,-0.62 0.1,-0.93 0.18,-0.05 0.36,-0.1 0.53,-0.15 0,0.07 0.01,0.15 0.02,0.21 0.01,0.18 0.03,0.37 0.05,0.55 0.03,0.19 0.04,0.38 0.07,0.56 0.03,0.18 0.02,0.41 0.11,0.57 0.07,0.12 0.22,0.07 0.26,-0.04 0.06,-0.16 0.02,-0.37 0.02,-0.54 0,-0.19 -0.01,-0.38 -0.01,-0.57 0,-0.18 -0.02,-0.37 -0.04,-0.55 -0.01,-0.1 -0.02,-0.23 -0.04,-0.35 0.59,-0.21 1.18,-0.43 1.77,-0.67 -0.02,0.29 -0.02,0.57 -0.01,0.86 0.02,0.61 0.09,1.22 0.32,1.78 0.04,0.09 0.18,0.04 0.18,-0.05 -0.03,-0.58 -0.13,-1.15 -0.16,-1.73 -0.02,-0.34 0.03,-0.68 0.05,-1.01 0.37,-0.15 0.75,-0.3 1.12,-0.44 l 0.03,0.99 c 0.01,0.19 0,0.39 0.02,0.58 0.02,0.19 0.01,0.41 0.07,0.59 0.03,0.1 0.18,0.11 0.21,0 0.05,-0.18 0.03,-0.38 0.04,-0.56 0.01,-0.2 -0.01,-0.4 -0.01,-0.6 -0.01,-0.37 -0.02,-0.75 -0.04,-1.12 0.46,-0.18 0.93,-0.37 1.39,-0.55 0,0.2 0,0.4 -0.01,0.6 l -0.01,0.48 c 0,0.08 -0.01,0.16 0,0.24 0,0.08 0.03,0.17 0.04,0.25 0.02,0.1 0.17,0.09 0.19,0 0.02,-0.08 0.04,-0.16 0.05,-0.25 0,-0.07 0,-0.15 0,-0.22 0,-0.17 0,-0.34 0.01,-0.5 0,-0.24 0.01,-0.48 0.01,-0.71 0.31,-0.12 0.62,-0.24 0.93,-0.37 -0.05,0.23 -0.07,0.47 -0.07,0.71 0,0.25 0.04,0.51 0.1,0.75 0.03,0.13 0.07,0.25 0.13,0.37 0.05,0.11 0.11,0.26 0.22,0.32 0.07,0.04 0.17,0.01 0.19,-0.08 0.02,-0.11 -0.03,-0.21 -0.06,-0.31 -0.03,-0.11 -0.07,-0.22 -0.1,-0.33 -0.06,-0.23 -0.1,-0.46 -0.11,-0.69 -0.01,-0.3 0.03,-0.6 0.1,-0.89 0.44,-0.18 0.89,-0.35 1.33,-0.53 -0.04,0.02 -0.07,0.05 -0.07,0.09 -0.05,0.35 -0.06,0.7 -0.01,1.05 0.02,0.17 0.05,0.33 0.1,0.49 0.02,0.09 0.05,0.17 0.08,0.25 0.03,0.09 0.06,0.18 0.15,0.23 0.08,0.04 0.17,0 0.2,-0.08 0.03,-0.08 -0.01,-0.16 -0.03,-0.23 -0.03,-0.07 -0.05,-0.15 -0.07,-0.22 -0.05,-0.15 -0.08,-0.31 -0.1,-0.47 -0.04,-0.31 -0.04,-0.62 0.01,-0.93 0.01,-0.09 -0.02,-0.18 -0.12,-0.21 -0.03,-0.01 -0.07,0 -0.11,0.01 0.25,-0.1 0.5,-0.2 0.75,-0.3 0.89,-0.35 1.79,-0.71 2.68,-1.07 -0.03,0.43 -0.03,0.85 0.03,1.28 0.06,0.49 0.17,1.01 0.39,1.46 0.07,0.14 0.29,0.04 0.24,-0.1 -0.07,-0.24 -0.16,-0.47 -0.23,-0.71 -0.06,-0.23 -0.11,-0.47 -0.14,-0.71 -0.06,-0.44 -0.06,-0.88 -0.02,-1.31 0.42,-0.17 0.85,-0.34 1.27,-0.51 l -0.01,0.22 c -0.01,0.14 -0.02,0.28 -0.02,0.43 0,0.15 -0.04,0.33 0.04,0.46 0.05,0.08 0.18,0.11 0.24,0.03 0.06,-0.07 0.07,-0.14 0.08,-0.23 0.01,-0.07 0.01,-0.15 0.02,-0.22 0.01,-0.15 0.02,-0.3 0.03,-0.44 l 0.02,-0.4 c 0.16,-0.06 0.31,-0.12 0.47,-0.19 0.5,-0.2 1,-0.4 1.5,-0.61 0.33,1.23 0.74,2.43 1.17,3.61 0.85,2.34 1.87,4.62 3.08,6.8 0.75,1.35 1.56,2.69 2.47,3.95 -0.09,0 -0.15,0.02 -0.22,0.05 z m 14.73,-0.19 c -0.07,-0.05 -0.14,-0.1 -0.21,-0.15 -0.2,-0.15 -0.4,-0.31 -0.6,-0.47 -0.37,-0.3 -0.73,-0.61 -1.08,-0.94 -0.7,-0.65 -1.36,-1.34 -1.97,-2.07 -1.23,-1.48 -2.28,-3.11 -3.09,-4.86 -0.07,-0.15 -0.28,-0.02 -0.21,0.13 0.76,1.79 1.75,3.48 2.99,4.99 0.61,0.75 1.28,1.46 1.99,2.13 0.35,0.33 0.71,0.64 1.08,0.94 0.17,0.14 0.35,0.28 0.53,0.41 0.04,0.03 0.08,0.06 0.12,0.1 -0.85,0.37 -1.71,0.73 -2.56,1.1 -0.42,-0.29 -0.84,-0.56 -1.23,-0.89 -0.49,-0.42 -0.94,-0.88 -1.36,-1.37 -0.85,-1.01 -1.51,-2.15 -1.96,-3.4 -0.05,-0.12 -0.24,-0.07 -0.2,0.05 0.44,1.25 1.08,2.43 1.9,3.47 0.42,0.53 0.89,1.02 1.39,1.48 0.32,0.29 0.68,0.58 1.05,0.84 -0.34,0.14 -0.67,0.29 -1.01,0.43 -0.09,0.04 -0.18,0.08 -0.27,0.11 -0.99,-1.01 -1.93,-2.06 -2.75,-3.2 -1.07,-1.48 -1.95,-3.09 -2.68,-4.77 -0.02,-0.05 -0.1,-0.01 -0.08,0.03 1.24,2.95 3.02,5.71 5.19,8.07 -0.42,0.18 -0.84,0.35 -1.26,0.54 -0.2,-0.16 -0.39,-0.33 -0.58,-0.5 -0.38,-0.34 -0.75,-0.7 -1.11,-1.08 -0.74,-0.77 -1.42,-1.6 -2.03,-2.47 -1.22,-1.74 -2.19,-3.69 -2.87,-5.7 -0.04,-0.12 -0.23,-0.07 -0.2,0.05 0.58,2.1 1.51,4.05 2.75,5.84 0.61,0.87 1.28,1.7 2.01,2.48 0.38,0.4 0.77,0.78 1.18,1.15 0.15,0.14 0.31,0.27 0.46,0.4 -0.23,0.11 -0.45,0.24 -0.68,0.35 -0.32,-0.2 -0.66,-0.36 -1.02,-0.5 -0.62,-0.47 -1.13,-1.1 -1.6,-1.72 -0.85,-1.13 -1.6,-2.32 -2.33,-3.52 -0.07,-0.11 -0.22,-0.01 -0.17,0.1 0.68,1.38 1.54,2.67 2.48,3.89 0.19,0.25 0.39,0.51 0.6,0.77 0,0.01 0,0.01 0,0.02 -0.42,-0.25 -0.8,-0.53 -1.17,-0.84 0.01,0 0.03,0.01 0.04,0.01 0.08,0.04 0.15,0.08 0.23,0.11 0.07,0.02 0.15,-0.07 0.1,-0.14 -0.05,-0.07 -0.12,-0.13 -0.18,-0.2 0,-0.01 0,-0.01 -0.01,-0.02 -0.02,-0.03 -0.05,-0.06 -0.08,-0.08 -0.03,-0.02 -0.06,-0.04 -0.08,-0.06 -0.05,-0.04 -0.11,-0.08 -0.16,-0.12 -0.03,-0.02 -0.09,-0.03 -0.12,-0.02 -0.04,0.01 -0.08,0.04 -0.1,0.08 -0.02,0.03 -0.02,0.06 -0.01,0.1 -0.13,-0.12 -0.27,-0.23 -0.39,-0.35 0,0 0,0 0,0 0,0 0.01,0 0.02,-0.01 -0.01,0 -0.02,0 -0.02,0 -1.33,-1.34 -2.37,-2.93 -3.34,-4.55 -2.29,-3.84 -3.93,-7.97 -5.06,-12.29 -0.31,-1.19 -0.51,-2.34 -0.46,-3.58 0.02,-0.48 0.12,-1 0.3,-1.49 0.26,-0.01 0.52,-0.08 0.78,-0.17 -0.02,0.09 -0.05,0.18 -0.06,0.28 -0.05,0.5 -0.03,1.02 0.17,1.49 0.08,0.18 0.34,0.07 0.35,-0.09 0.01,-0.45 -0.02,-0.89 0.04,-1.34 0.03,-0.19 0.07,-0.37 0.12,-0.55 0.11,-0.04 0.23,-0.09 0.34,-0.13 0.79,-0.27 1.55,-0.59 2.33,-0.9 0.37,-0.15 0.73,-0.31 1.1,-0.46 0,0.15 -0.01,0.29 -0.01,0.44 -0.01,0.33 -0.04,0.67 0.02,0.99 0.03,0.17 0.29,0.16 0.33,0 0.07,-0.32 0.04,-0.66 0.05,-0.99 0,-0.2 0,-0.4 0,-0.6 0.33,-0.14 0.66,-0.27 0.99,-0.41 -0.14,0.82 -0.15,1.65 -0.01,2.48 0.17,1.01 0.55,2.12 1.23,2.91 0.09,0.11 0.25,-0.03 0.19,-0.15 -0.46,-0.92 -0.87,-1.78 -1.06,-2.8 -0.16,-0.85 -0.13,-1.73 0.01,-2.58 0.51,-0.21 1.03,-0.42 1.54,-0.64 -0.06,0.7 -0.09,1.39 -0.07,2.09 0.01,0.48 0.04,0.95 0.09,1.43 0.04,0.43 0.06,0.95 0.22,1.36 0.05,0.14 0.25,0.12 0.26,-0.03 0.03,-0.46 -0.08,-0.96 -0.12,-1.42 -0.04,-0.46 -0.07,-0.92 -0.08,-1.38 -0.02,-0.73 0,-1.45 0.04,-2.18 0.49,-0.2 0.97,-0.41 1.46,-0.61 -0.29,1.1 -0.37,2.23 -0.22,3.36 0.09,0.64 0.24,1.28 0.47,1.89 0.21,0.56 0.46,1.21 0.89,1.63 0.06,0.06 0.18,0 0.15,-0.09 -0.19,-0.56 -0.53,-1.07 -0.74,-1.62 -0.22,-0.58 -0.38,-1.18 -0.47,-1.79 -0.18,-1.15 -0.12,-2.35 0.14,-3.48 0.54,-0.22 1.08,-0.45 1.62,-0.68 -0.12,0.57 -0.21,1.16 -0.23,1.74 -0.01,0.36 0,0.71 0.03,1.07 0.03,0.34 0.07,0.73 0.22,1.05 0.05,0.11 0.21,0.04 0.22,-0.06 0.03,-0.34 -0.04,-0.72 -0.06,-1.06 -0.02,-0.33 -0.03,-0.66 -0.02,-0.99 0.02,-0.64 0.09,-1.27 0.21,-1.9 0.22,-0.09 0.44,-0.18 0.65,-0.27 0.29,2.38 1.06,4.73 1.83,6.99 1.86,5.47 4.39,10.72 7.54,15.57 0.45,0.69 0.92,1.46 1.48,2.14 -0.01,0 -0.01,0 -0.02,0.01 -0.29,-0.31 -0.58,-0.62 -0.85,-0.95 -0.55,-0.67 -1.06,-1.37 -1.54,-2.09 -0.96,-1.44 -1.77,-2.98 -2.41,-4.58 -0.05,-0.12 -0.24,-0.07 -0.19,0.05 0.63,1.63 1.41,3.21 2.36,4.68 0.46,0.72 0.96,1.42 1.49,2.09 0.25,0.31 0.5,0.64 0.77,0.95 -0.17,0.07 -0.34,0.14 -0.51,0.21 -0.29,-0.33 -0.58,-0.67 -0.86,-1.01 -0.61,-0.76 -1.17,-1.55 -1.71,-2.36 -1.08,-1.63 -2,-3.36 -2.72,-5.17 -0.06,-0.14 -0.28,-0.08 -0.23,0.06 0.68,1.84 1.53,3.61 2.57,5.28 0.5,0.81 1.06,1.59 1.65,2.34 0.28,0.36 0.57,0.71 0.87,1.05 -0.27,0.11 -0.54,0.23 -0.81,0.34 -0.1,-0.09 -0.19,-0.19 -0.26,-0.3 -0.09,-0.15 -0.23,-0.28 -0.34,-0.41 -0.11,-0.14 -0.22,-0.29 -0.31,-0.45 -0.07,-0.12 -0.25,-0.01 -0.19,0.11 0.09,0.17 0.18,0.33 0.29,0.49 0.1,0.15 0.22,0.32 0.37,0.43 0.09,0.07 0.18,0.14 0.27,0.21 -0.13,0.06 -0.27,0.11 -0.4,0.17 -3.05,-2.36 -5.4,-5.63 -6.71,-9.26 -0.04,-0.1 -0.2,-0.06 -0.17,0.05 1.19,3.69 3.46,6.94 6.46,9.39 -0.33,0.06 -0.64,0.19 -0.95,0.32 z m 8.82,-2.2 c -0.04,0.02 -0.08,0.03 -0.12,0.05 -0.14,-0.1 -0.3,-0.18 -0.47,-0.18 -0.06,0 -0.12,0.01 -0.18,0.01 -0.15,-0.14 -0.29,-0.28 -0.44,-0.42 -0.31,-0.3 -0.6,-0.61 -0.9,-0.92 -0.61,-0.66 -1.18,-1.35 -1.72,-2.07 -1.03,-1.39 -1.93,-2.89 -2.7,-4.43 -0.07,-0.13 -0.25,-0.01 -0.19,0.11 0.71,1.63 1.61,3.15 2.67,4.58 0.51,0.68 1.06,1.34 1.63,1.98 0.29,0.32 0.59,0.63 0.89,0.93 0.11,0.11 0.22,0.21 0.33,0.32 -0.06,0.02 -0.12,0.02 -0.19,0.05 -0.15,0.05 -0.27,0.09 -0.43,0.08 -0.49,-0.02 -0.87,-0.38 -1.18,-0.72 -0.78,-0.86 -1.39,-1.93 -2.01,-2.9 -1.36,-2.13 -2.61,-4.33 -3.72,-6.6 -2.11,-4.29 -3.87,-8.89 -4.88,-13.57 -0.21,-1 -0.3,-2 -0.24,-3.02 0.02,-0.45 0.05,-0.84 0.23,-1.26 0.09,-0.21 0.19,-0.41 0.3,-0.61 0.12,0.56 0.25,1.12 0.4,1.67 0.03,0.11 0.08,0.22 0.11,0.33 -0.02,0.3 -0.04,0.61 -0.04,0.91 0,0.45 0.01,0.9 0.04,1.35 0.03,0.44 0.03,0.97 0.2,1.38 0.05,0.11 0.26,0.16 0.28,0 0.06,-0.42 -0.02,-0.87 -0.05,-1.29 -0.03,-0.39 -0.04,-0.78 -0.04,-1.17 0.17,0.52 0.31,1.04 0.5,1.55 0.14,0.35 0.28,0.74 0.43,1.13 0.17,0.76 0.34,1.53 0.53,2.29 0.19,0.8 0.35,1.61 0.67,2.37 0.03,0.08 0.17,0.08 0.16,-0.02 -0.07,-0.81 -0.29,-1.6 -0.49,-2.39 -0.08,-0.31 -0.16,-0.62 -0.24,-0.93 0.11,0.18 0.22,0.36 0.35,0.51 0.37,0.43 0.93,0.2 1.15,-0.21 0.06,0.01 0.12,0.01 0.19,0.01 0.1,0.4 0.2,0.8 0.3,1.2 0.07,0.26 0.13,0.53 0.2,0.79 0.06,0.24 0.11,0.55 0.26,0.75 0.06,0.08 0.22,0.03 0.23,-0.06 0.04,-0.24 -0.07,-0.52 -0.13,-0.75 -0.07,-0.27 -0.15,-0.54 -0.22,-0.82 -0.1,-0.38 -0.2,-0.75 -0.3,-1.13 0.27,-0.04 0.54,-0.11 0.74,-0.16 0.22,-0.05 0.43,-0.13 0.64,-0.21 0.02,0.11 0.02,0.21 0.05,0.32 0.06,0.25 0.14,0.51 0.24,0.75 0.05,0.11 0.1,0.22 0.17,0.32 0.07,0.11 0.12,0.24 0.23,0.32 0.09,0.07 0.21,0.01 0.19,-0.11 -0.02,-0.11 -0.08,-0.22 -0.13,-0.32 -0.05,-0.11 -0.09,-0.23 -0.13,-0.35 -0.09,-0.23 -0.17,-0.46 -0.22,-0.7 -0.03,-0.11 -0.03,-0.22 -0.05,-0.33 0.33,-0.13 0.67,-0.27 0.99,-0.41 0.13,-0.06 0.26,-0.13 0.38,-0.19 0.03,0.13 0.06,0.26 0.09,0.39 0.11,0.47 0.19,0.97 0.38,1.41 0.03,0.07 0.16,0.08 0.15,-0.02 -0.02,-0.48 -0.16,-0.96 -0.26,-1.44 -0.03,-0.16 -0.07,-0.31 -0.1,-0.47 0.37,-0.17 0.75,-0.34 1.11,-0.54 0.08,-0.04 0.15,-0.09 0.23,-0.13 0.06,0.24 0.11,0.49 0.17,0.73 0.06,0.28 0.13,0.55 0.19,0.83 0.03,0.13 0.06,0.27 0.09,0.4 0.04,0.16 0.11,0.29 0.17,0.45 0.03,0.08 0.18,0.08 0.17,-0.02 -0.01,-0.15 -0.01,-0.29 -0.04,-0.43 -0.02,-0.13 -0.06,-0.27 -0.09,-0.4 -0.07,-0.29 -0.14,-0.57 -0.2,-0.86 -0.07,-0.28 -0.13,-0.56 -0.2,-0.84 0.12,-0.07 0.23,-0.13 0.35,-0.21 0.06,-0.04 0.13,-0.08 0.19,-0.12 0.26,-0.02 0.51,-0.13 0.68,-0.33 0.1,0.32 0.2,0.63 0.3,0.95 0.07,0.23 0.15,0.45 0.22,0.68 0.04,0.11 0.08,0.22 0.13,0.33 0.04,0.11 0.08,0.21 0.15,0.3 0.07,0.08 0.18,0.01 0.19,-0.08 0.01,-0.12 -0.04,-0.24 -0.06,-0.35 -0.02,-0.11 -0.05,-0.21 -0.09,-0.32 -0.07,-0.23 -0.15,-0.45 -0.22,-0.68 -0.14,-0.43 -0.28,-0.86 -0.42,-1.3 0.01,-0.11 0.01,-0.21 -0.03,-0.34 -0.57,-1.97 -1.35,-3.88 -2.37,-5.66 0.04,-0.1 0.05,-0.2 0.07,-0.31 0.02,-0.11 0.05,-0.21 0.07,-0.32 0.03,-0.21 0.07,-0.42 0.1,-0.64 0.03,-0.25 0.04,-0.5 0.07,-0.74 0.29,-0.11 0.59,-0.23 0.88,-0.34 -0.01,0.1 -0.05,0.19 -0.05,0.29 -0.02,0.22 -0.01,0.44 0,0.66 0.01,0.11 0.03,0.22 0.05,0.33 0.02,0.11 0.04,0.21 0.08,0.31 0.04,0.08 0.19,0.07 0.2,-0.03 0.02,-0.11 0.01,-0.21 0,-0.32 0,-0.1 0,-0.2 0,-0.3 -0.01,-0.21 -0.01,-0.42 0,-0.64 0,-0.15 0.05,-0.3 0.06,-0.45 0.19,-0.07 0.37,-0.14 0.56,-0.22 -0.02,0.49 -0.03,0.97 -0.01,1.46 0.01,0.45 0.04,0.9 0.09,1.35 0.04,0.42 0.08,0.88 0.22,1.28 0.04,0.11 0.21,0.1 0.21,-0.03 0.03,-0.44 -0.05,-0.91 -0.09,-1.35 -0.04,-0.44 -0.06,-0.87 -0.08,-1.31 -0.02,-0.52 0.01,-1.03 0.02,-1.55 0.32,-0.13 0.65,-0.25 0.97,-0.38 -0.13,1.22 -0.12,2.44 0.04,3.66 0.11,0.84 0.3,1.67 0.55,2.48 0.25,0.79 0.55,1.62 1.01,2.31 0.05,0.08 0.2,0.03 0.17,-0.07 -0.26,-0.77 -0.58,-1.51 -0.81,-2.29 -0.23,-0.78 -0.41,-1.57 -0.53,-2.38 -0.19,-1.27 -0.21,-2.57 -0.1,-3.85 0.51,-0.2 1.02,-0.39 1.52,-0.59 -0.12,0.93 -0.18,1.86 -0.14,2.8 0.03,0.6 0.09,1.2 0.21,1.79 0.13,0.62 0.24,1.27 0.46,1.87 0.02,0.06 0.11,0.04 0.1,-0.03 -0.1,-0.61 -0.25,-1.21 -0.32,-1.82 -0.06,-0.6 -0.11,-1.21 -0.15,-1.81 -0.05,-0.97 -0.02,-1.94 0.08,-2.9 0.34,-0.13 0.68,-0.26 1.01,-0.39 -0.17,1.47 -0.15,2.96 0.07,4.43 0.14,0.98 0.37,1.95 0.68,2.89 0.15,0.47 0.33,0.93 0.52,1.39 0.16,0.39 0.33,0.89 0.63,1.19 0.1,0.1 0.23,-0.01 0.21,-0.12 -0.07,-0.45 -0.37,-0.9 -0.54,-1.32 -0.18,-0.44 -0.34,-0.89 -0.49,-1.35 -0.28,-0.88 -0.49,-1.78 -0.62,-2.68 -0.23,-1.51 -0.25,-3.05 -0.09,-4.57 0.03,-0.01 0.07,-0.03 0.1,-0.04 0.23,-0.09 0.46,-0.18 0.69,-0.27 0.03,0.78 0.05,1.55 0.08,2.33 0.02,0.61 0.05,1.23 0.08,1.84 0.03,0.59 0,1.24 0.13,1.82 0.04,0.17 0.26,0.11 0.28,-0.04 0.08,-0.61 -0.01,-1.28 -0.04,-1.9 -0.02,-0.59 -0.06,-1.19 -0.08,-1.78 -0.04,-0.8 -0.09,-1.6 -0.13,-2.39 0.15,-0.06 0.29,-0.11 0.44,-0.17 0,0.04 -0.01,0.09 -0.02,0.13 -0.12,1.18 -0.04,2.38 0.13,3.55 0.26,1.8 0.75,3.58 1.29,5.33 -0.96,2.98 -0.58,6.13 0.85,8.91 0.63,1.22 1.47,2.33 2.45,3.3 0.48,1.44 1.1,2.83 1.85,4.15 0.51,0.9 1.09,1.77 1.72,2.6 0.3,0.4 0.62,0.79 0.94,1.17 0.12,0.14 0.24,0.28 0.37,0.41 -0.29,0.13 -0.58,0.25 -0.88,0.38 -0.2,-0.36 -0.59,-0.65 -0.87,-0.95 -0.29,-0.31 -0.57,-0.64 -0.84,-0.97 -0.59,-0.72 -1.12,-1.47 -1.61,-2.26 -0.96,-1.53 -1.78,-3.18 -2.36,-4.9 -0.05,-0.14 -0.26,-0.08 -0.22,0.06 0.56,1.77 1.28,3.46 2.26,5.03 0.48,0.77 1,1.51 1.57,2.21 0.29,0.36 0.59,0.71 0.9,1.05 0.25,0.28 0.53,0.64 0.85,0.86 -0.36,0.16 -0.73,0.31 -1.09,0.47 -0.09,-0.13 -0.21,-0.24 -0.33,-0.36 -0.2,-0.19 -0.4,-0.38 -0.6,-0.57 -0.36,-0.37 -0.71,-0.75 -1.05,-1.14 -0.68,-0.8 -1.3,-1.66 -1.84,-2.56 -1.09,-1.81 -1.91,-3.81 -2.37,-5.88 -0.04,-0.18 -0.32,-0.11 -0.28,0.08 0.45,2.13 1.24,4.17 2.36,6.04 0.55,0.92 1.17,1.79 1.86,2.6 0.36,0.42 0.73,0.83 1.12,1.21 0.2,0.19 0.4,0.38 0.6,0.57 0.06,0.06 0.13,0.11 0.19,0.16 -0.33,0.14 -0.65,0.28 -0.98,0.42 -0.29,-0.41 -0.67,-0.79 -0.99,-1.17 -0.42,-0.49 -0.82,-1 -1.21,-1.51 -0.75,-0.97 -1.46,-1.97 -2.11,-3.01 -0.08,-0.12 -0.27,-0.01 -0.2,0.12 0.65,1.08 1.34,2.14 2.1,3.15 0.36,0.48 0.74,0.94 1.12,1.4 0.32,0.38 0.65,0.8 1.03,1.14 -0.47,0.2 -0.94,0.41 -1.41,0.61 -0.09,-0.09 -0.18,-0.17 -0.26,-0.26 -0.37,-0.39 -0.72,-0.79 -1.06,-1.19 -0.73,-0.87 -1.4,-1.79 -2.01,-2.75 -1.2,-1.88 -2.21,-3.93 -2.92,-6.04 -0.05,-0.14 -0.27,-0.08 -0.23,0.06 0.53,1.7 1.2,3.33 2.06,4.89 0.86,1.55 1.88,3.02 3.03,4.37 0.31,0.36 0.63,0.75 0.97,1.11 -0.3,0.13 -0.59,0.26 -0.89,0.39 -0.05,-0.05 -0.11,-0.1 -0.16,-0.15 -0.31,-0.31 -0.62,-0.64 -0.92,-0.97 -0.6,-0.66 -1.16,-1.36 -1.68,-2.08 -1.03,-1.43 -1.92,-2.96 -2.66,-4.56 -0.08,-0.17 -0.31,-0.02 -0.24,0.14 0.71,1.65 1.6,3.22 2.65,4.68 0.51,0.71 1.05,1.39 1.63,2.04 0.3,0.33 0.6,0.66 0.91,0.98 0.03,0.03 0.06,0.06 0.08,0.08 -0.39,0.17 -0.78,0.35 -1.18,0.52 -0.21,-0.18 -0.41,-0.36 -0.62,-0.54 -0.37,-0.33 -0.72,-0.67 -1.06,-1.03 -0.67,-0.71 -1.27,-1.47 -1.81,-2.28 -1.08,-1.63 -1.91,-3.44 -2.4,-5.33 -0.04,-0.17 -0.3,-0.1 -0.26,0.07 0.48,1.95 1.27,3.81 2.38,5.49 0.54,0.82 1.15,1.6 1.82,2.33 0.46,0.51 0.97,1.04 1.53,1.49 -0.32,0.14 -0.63,0.28 -0.95,0.42 -2.1,-2 -3.82,-4.42 -4.92,-7.1 -0.05,-0.11 -0.23,-0.07 -0.19,0.05 1.05,2.73 2.66,5.17 4.75,7.21 -0.44,0.19 -0.88,0.38 -1.31,0.58 -1.43,-1.36 -2.74,-2.8 -3.85,-4.46 -1.21,-1.81 -2.17,-3.79 -2.9,-5.84 -0.05,-0.14 -0.28,-0.09 -0.23,0.06 0.66,2.11 1.62,4.11 2.82,5.95 1.05,1.61 2.3,3.16 3.72,4.47 -0.2,0.09 -0.4,0.17 -0.59,0.26 -0.29,0.25 -0.6,0.43 -0.94,0.58 z m 30.47,6.96 c -2.9,-2 -5.65,-4.26 -8.2,-6.72 -0.57,-0.66 -1.13,-1.32 -1.7,-1.98 -0.88,-1.01 -1.72,-2.05 -2.54,-3.11 0.23,-0.05 0.41,-0.17 0.52,-0.34 0.15,-0.04 0.29,-0.08 0.44,-0.12 0.57,1.08 1.19,2.13 1.95,3.11 0.56,0.72 1.14,1.43 1.85,2 0.72,0.58 1.35,1.26 2.07,1.84 0.8,0.64 1.65,1.26 2.57,1.72 0.16,0.08 0.28,-0.14 0.14,-0.23 -0.74,-0.5 -1.5,-0.97 -2.21,-1.5 -0.72,-0.54 -1.51,-1.06 -2.09,-1.76 -1.15,-1.37 -2.33,-2.74 -3.27,-4.27 -0.21,-0.33 -0.4,-0.67 -0.59,-1.02 0.27,-0.08 0.53,-0.16 0.79,-0.25 0.41,0.56 0.81,1.12 1.23,1.67 0.28,0.37 0.55,0.74 0.84,1.1 0.14,0.18 0.29,0.37 0.45,0.54 0.16,0.17 0.31,0.36 0.48,0.5 0.12,0.1 0.28,-0.02 0.22,-0.17 -0.09,-0.21 -0.24,-0.41 -0.36,-0.6 -0.12,-0.2 -0.26,-0.39 -0.4,-0.57 -0.28,-0.38 -0.57,-0.75 -0.86,-1.12 -0.39,-0.5 -0.79,-1 -1.18,-1.49 0.31,-0.11 0.62,-0.21 0.93,-0.33 0.53,0.67 1.07,1.33 1.63,1.97 1.1,1.24 2.34,2.31 3.52,3.46 0.22,0.21 0.47,0.28 0.71,0.24 4.39,3.91 9.35,7.19 14.69,9.64 1.81,0.83 3.66,1.52 5.54,2.15 -0.01,0.03 -0.01,0.05 -0.02,0.08 0.1,0.01 0.2,0.02 0.3,0.04 0.03,0.01 0.07,0.02 0.1,0.03 0.09,0.04 0.23,0.08 0.32,0.14 0.09,0.06 0.19,0.13 0.27,0.22 0.01,-0.06 0.03,-0.12 0.04,-0.18 0.36,0.11 0.71,0.24 1.07,0.35 -0.08,0.36 -0.16,0.71 -0.24,1.07 -0.04,-0.01 -0.09,-0.02 -0.13,-0.04 -0.37,-0.11 -0.73,-0.22 -1.09,-0.33 -0.73,-0.22 -1.46,-0.44 -2.18,-0.7 -1.46,-0.53 -2.9,-1.1 -4.32,-1.73 -0.16,-0.07 -0.31,0.17 -0.14,0.24 1.4,0.64 2.82,1.23 4.27,1.77 0.72,0.27 1.43,0.55 2.15,0.8 0.38,0.13 0.76,0.25 1.14,0.38 0.07,0.02 0.14,0.04 0.21,0.07 -0.1,0.42 -0.2,0.85 -0.29,1.27 -0.2,-0.04 -0.4,-0.07 -0.59,-0.12 -0.41,-0.11 -0.8,-0.25 -1.19,-0.41 -0.82,-0.33 -1.6,-0.75 -2.35,-1.22 -0.15,-0.1 -0.29,0.14 -0.14,0.24 0.74,0.49 1.51,0.91 2.33,1.25 0.41,0.17 0.84,0.33 1.26,0.48 0.18,0.07 0.38,0.15 0.58,0.21 -0.03,0.13 -0.06,0.25 -0.09,0.38 -0.37,-0.11 -0.73,-0.21 -1.1,-0.32 0.03,-0.14 0.07,-0.29 0.1,-0.43 -0.05,0.02 -0.1,0.04 -0.15,0.06 -0.01,0 -0.01,0 -0.02,0.01 -0.17,0.05 -0.35,0.05 -0.52,0 -0.08,-0.03 -0.16,-0.07 -0.24,-0.1 -0.07,-0.04 -0.13,-0.09 -0.18,-0.14 -0.02,0.09 -0.04,0.18 -0.07,0.27 -5.76,-1.88 -11.25,-4.54 -16.26,-8 z m 17.95,10.8 c -0.03,0.11 -0.05,0.22 -0.08,0.33 -0.06,-0.08 -0.14,-0.15 -0.21,-0.2 -0.11,-0.08 -0.23,-0.14 -0.36,-0.18 -0.17,-0.06 -0.34,-0.06 -0.51,-0.05 0.02,-0.08 0.04,-0.16 0.06,-0.24 0.35,0.12 0.72,0.23 1.1,0.34 z m -2.98,7.53 c 0.05,0.03 0.11,0.04 0.17,0.02 0.1,-0.04 0.21,-0.06 0.32,-0.08 0.01,0 0.02,0 0.03,-0.01 0,0 0.01,0 0.02,0 0.02,0 0.05,0 0.07,-0.01 0.05,0 0.11,-0.01 0.16,0 0.05,0 0.11,0.01 0.16,0.01 0.01,0 0.01,0 0.01,0 0,0 0,0 0.01,0 0.03,0.01 0.06,0.01 0.09,0.02 0.05,0.01 0.11,0.03 0.16,0.04 0.01,0 0.01,0 0.02,0.01 0,0 0,0 0.01,0 -0.06,0.25 -0.11,0.49 -0.17,0.74 -0.18,0.02 -0.35,0.06 -0.52,0.11 -0.17,0.05 -0.35,0.1 -0.52,0.15 -0.14,0.04 -0.24,0.2 -0.19,0.34 0.05,0.15 0.19,0.23 0.34,0.19 0.18,-0.04 0.35,-0.08 0.53,-0.12 0.08,-0.02 0.15,-0.05 0.23,-0.07 -0.05,0.23 -0.1,0.46 -0.16,0.69 -0.02,0 -0.04,-0.02 -0.06,-0.02 -0.02,0 -0.03,0 -0.05,0 -0.08,-0.01 -0.16,0.01 -0.23,0.04 -0.06,0.02 -0.12,0.04 -0.17,0.05 l -0.34,0.09 c -0.04,0 -0.09,0 -0.13,0 -0.1,0 -0.21,0.01 -0.31,0.01 0.18,-0.73 0.35,-1.46 0.52,-2.2 z m -0.73,2.22 c -0.06,0 -0.11,0 -0.17,0 -0.23,0.01 -0.46,0.01 -0.69,0.02 -0.06,0 -0.12,0.01 -0.18,0.02 0.31,-0.24 0.71,-0.24 1.04,-0.04 z m -3.91,8.91 c -0.06,0.02 -0.12,0.04 -0.18,0.06 0,-0.05 0.01,-0.09 0,-0.15 -0.02,-0.08 -0.03,-0.17 -0.04,-0.25 0.08,0.02 0.18,0 0.22,-0.08 0.01,-0.02 0.02,-0.04 0.04,-0.06 0,0 0,0 0,0 0,-0.01 0.01,-0.01 0.01,-0.02 0.01,-0.01 0.03,-0.03 0.04,-0.04 0,0 0,0 0,0 0.01,-0.01 0.02,-0.01 0.03,-0.02 0.02,-0.01 0.04,-0.02 0.06,-0.03 -0.06,0.03 0,0 0.02,-0.01 0.02,-0.01 0.04,-0.01 0.07,-0.02 0,0 0,0 0,0 0.01,0 0.02,0 0.02,0 0.02,0 0.05,0 0.07,0 0.01,0 0.02,0 0.03,0 0.04,0.01 0.08,0.02 0.12,0.03 0.01,0 0.01,0.01 0.02,0.01 0.02,0.01 0.04,0.02 0.06,0.03 0,0 0,0 0,0 0.05,0.03 0.09,0.05 0.14,0.07 0.01,0.01 0.02,0.02 0.02,0.02 0.03,0.03 0.05,0.05 0.09,0.08 0.07,0.05 0.16,0 0.18,-0.07 0.03,-0.08 0,-0.17 -0.04,-0.25 -0.01,-0.09 -0.08,-0.15 -0.15,-0.21 -0.06,-0.05 -0.13,-0.08 -0.21,-0.1 -0.13,-0.04 -0.27,-0.04 -0.41,-0.02 -0.23,0.03 -0.41,0.18 -0.52,0.37 -0.06,-0.32 -0.11,-0.63 -0.17,-0.95 0.13,-0.01 0.26,-0.03 0.4,-0.04 0.11,-0.01 0.21,-0.02 0.32,-0.03 0.13,-0.01 0.29,-0.01 0.36,-0.13 0.04,-0.06 0.02,-0.14 -0.02,-0.18 -0.1,-0.1 -0.24,-0.06 -0.36,-0.05 l -0.31,0.04 c -0.15,0.02 -0.3,0.03 -0.45,0.05 -0.02,-0.12 -0.04,-0.23 -0.06,-0.35 0.12,-0.01 0.23,-0.02 0.35,-0.03 0.1,-0.01 0.2,-0.02 0.31,-0.03 0.05,0 0.09,-0.01 0.14,-0.02 0.07,-0.01 0.12,-0.03 0.18,-0.05 0.07,-0.02 0.12,-0.09 0.11,-0.16 -0.01,-0.08 -0.07,-0.12 -0.14,-0.13 -0.05,-0.01 -0.1,-0.02 -0.15,-0.01 -0.05,0 -0.1,0.01 -0.15,0.02 -0.1,0.01 -0.2,0.02 -0.29,0.04 -0.13,0.02 -0.26,0.03 -0.39,0.05 -0.1,-0.66 -0.16,-1.32 -0.22,-1.98 0.19,0 0.39,0.01 0.58,0.01 0.11,0 0.23,0.01 0.34,0.01 0.13,0 0.31,0.02 0.4,-0.09 0.06,-0.08 0.06,-0.17 0,-0.24 -0.09,-0.11 -0.26,-0.08 -0.38,-0.09 -0.12,0 -0.23,0 -0.35,0.01 -0.21,0 -0.41,0.01 -0.62,0.01 -0.02,-0.24 -0.06,-0.49 -0.07,-0.73 0.04,0.03 0.08,0.05 0.13,0.06 0.43,0.03 0.87,0.04 1.3,0.03 0.12,0 0.24,-0.1 0.23,-0.23 -0.01,-0.13 -0.1,-0.23 -0.23,-0.23 -0.43,-0.01 -0.87,0 -1.3,0.03 -0.06,0 -0.11,0.03 -0.14,0.07 -0.05,-0.88 -0.08,-1.76 -0.07,-2.65 0.01,-0.58 0.03,-1.16 0.03,-1.74 0.15,0.06 0.3,0.11 0.45,0.15 0.16,0.04 0.31,0.06 0.47,0.08 0.16,0.02 0.32,0.05 0.48,0.07 0.17,0.02 0.34,0.05 0.51,0.06 -0.05,1.43 0.12,2.9 0.18,4.3 0.08,1.79 0.05,3.63 0.23,5.42 -0.2,0.04 -0.39,0.08 -0.59,0.12 -0.25,0.04 -0.49,0.09 -0.73,0.17 z m -10.91,38.37 c 0.98,-0.25 1.97,-0.44 2.97,-0.57 0.19,0.07 0.39,0.04 0.56,-0.08 0.44,-0.05 0.91,-0.09 1.38,-0.14 -0.08,0.33 -0.17,0.67 -0.25,1 -0.87,0.14 -1.72,0.38 -2.5,0.79 -0.58,0.3 -1.17,0.66 -1.54,1.22 -0.42,0.63 -0.41,1.42 -0.04,2.07 0.54,0.93 1.63,1.29 2.69,1.52 -0.02,0.08 -0.04,0.15 -0.06,0.23 -0.07,0.27 -0.14,0.53 -0.2,0.79 -0.39,-0.09 -0.78,-0.18 -1.17,-0.28 -2.58,-0.66 -5.89,-1.32 -7.68,-3.36 0.02,-0.04 0.05,-0.08 0.05,-0.13 0.01,-0.39 0.5,-0.95 0.8,-1.16 0.46,-0.33 1.03,-0.53 1.55,-0.75 1.12,-0.46 2.27,-0.85 3.44,-1.15 z m -7.28,-0.85 c 0.52,0.21 1.02,0.49 1.48,0.82 0.24,0.17 0.45,0.36 0.67,0.52 -0.01,0.01 -0.02,0.01 -0.03,0.01 -0.12,0.07 -0.24,0.16 -0.35,0.23 -0.34,-0.28 -0.79,-0.47 -1.17,-0.63 -0.42,-0.18 -0.86,-0.32 -1.31,-0.43 0.23,-0.09 0.39,-0.31 0.4,-0.57 0,-0.02 0,-0.04 0,-0.07 0.11,0.05 0.21,0.08 0.31,0.12 z m -1.25,-2.67 c -0.07,0.61 -0.14,1.23 -0.2,1.84 -0.01,0 -0.02,0.01 -0.03,0.01 -0.06,0.06 -0.13,0.12 -0.2,0.17 -0.09,0.02 -0.18,0.05 -0.27,0.07 -0.01,0 -0.13,0.02 -0.18,0.02 -0.07,0 -0.14,0 -0.21,-0.01 -0.03,0 -0.07,-0.01 -0.1,-0.01 0.01,0 0.02,0 0.03,0 -0.07,-0.01 -0.15,-0.03 -0.22,-0.05 -0.07,-0.02 -0.14,-0.04 -0.21,-0.06 0,0 -0.01,0 -0.01,0 -0.02,-0.01 -0.05,-0.02 -0.06,-0.02 -0.07,-0.03 -0.14,-0.07 -0.21,-0.11 -0.03,-0.02 -0.07,-0.04 -0.1,-0.06 0,0 0,0 0,0 -0.05,-0.06 -0.14,-0.13 -0.2,-0.17 -0.01,-0.01 -0.02,-0.01 -0.03,-0.02 -0.01,-0.02 -0.06,-0.05 -0.08,-0.07 -0.06,-0.05 -0.11,-0.11 -0.16,-0.16 0,0 0,0 0,0 0,0 0,0 0,0 -0.03,-0.04 -0.05,-0.06 -0.08,-0.09 -0.01,-0.02 -0.03,-0.04 -0.04,-0.06 -0.01,-0.01 -0.03,-0.02 -0.04,-0.03 -0.02,-0.25 -0.04,-0.5 -0.06,-0.75 -0.03,-0.43 -0.06,-0.86 -0.1,-1.29 0.3,0.4 0.7,0.73 1.16,0.89 0.43,0.15 0.94,0.17 1.38,0.05 0.08,-0.03 0.15,-0.07 0.22,-0.09 z m -2.63,3.06 c 0.02,-0.03 0.02,-0.06 0.03,-0.09 0.05,0.04 0.1,0.08 0.15,0.11 -0.08,0.01 -0.16,0.02 -0.24,0.04 0.02,-0.03 0.04,-0.04 0.06,-0.06 z m 0.44,-4.86 c 0.01,0 0.01,-0.01 0.02,-0.01 0.07,-0.05 0.15,-0.1 0.23,-0.14 0.01,-0.01 0.08,-0.04 0.09,-0.04 0.03,-0.01 0.05,-0.02 0.08,-0.03 0.09,-0.03 0.19,-0.05 0.29,-0.07 0,0 0,0 0.01,0 0,0 0,0 0,0 0.04,0 0.09,-0.01 0.13,-0.01 0.05,0 0.11,0 0.16,0.01 0,0 0.01,0 0.01,0 0.08,0.02 0.17,0.04 0.25,0.06 0.04,0.01 0.08,0.03 0.12,0.04 0.01,0 0.01,0 0.02,0.01 0,0 0,0 0.01,0 0.08,0.04 0.15,0.08 0.23,0.13 0.01,0.01 0.03,0.02 0.05,0.03 0.03,0.02 0.05,0.04 0.08,0.06 0.07,0.06 0.14,0.13 0.2,0.21 0,0.01 0,0 0.01,0.01 0.01,0.01 0.01,0.02 0.02,0.03 -0.01,0.01 -0.03,0.01 -0.04,0.02 -0.07,0.04 -0.14,0.08 -0.21,0.12 -0.03,0.01 -0.07,0.03 -0.1,0.04 -0.07,0.02 -0.14,0.04 -0.21,0.06 -0.04,0.01 -0.08,0.02 -0.12,0.03 -0.02,0 -0.07,0.01 -0.09,0.01 -0.01,0 -0.01,0 -0.02,0 -0.04,0 -0.08,0 -0.12,0 -0.04,0 -0.08,0 -0.12,0 0,0 -0.01,0 -0.01,0 -0.14,-0.03 -0.28,-0.06 -0.42,-0.11 0,0 -0.06,-0.03 -0.08,-0.03 -0.02,-0.01 -0.04,-0.02 -0.04,-0.02 -0.06,-0.04 -0.12,-0.08 -0.18,-0.12 -0.01,-0.01 -0.03,-0.02 -0.04,-0.03 -0.03,-0.03 -0.06,-0.05 -0.09,-0.08 -0.05,-0.05 -0.09,-0.1 -0.13,-0.15 0,-0.02 0,-0.02 0.01,-0.03 0,0 0,0 0,0 z m -4.22,5.84 c 0.4,-0.38 0.84,-0.72 1.32,-1 0.4,-0.24 0.83,-0.41 1.27,-0.56 0.02,0.21 0.06,0.42 0.18,0.58 0.07,0.1 0.17,0.17 0.28,0.22 -0.19,0.05 -0.37,0.1 -0.56,0.16 -1.12,0.4 -2.16,1.03 -3.03,1.85 -0.11,0.1 -0.22,0.23 -0.33,0.34 0.05,-0.19 0.1,-0.38 0.14,-0.57 0.02,-0.11 0.04,-0.21 0.06,-0.32 0.22,-0.23 0.43,-0.48 0.67,-0.7 z m -1.28,4.09 c 0.46,-0.65 0.83,-1.36 1.41,-1.94 0.75,-0.75 1.65,-1.34 2.66,-1.65 1.02,-0.31 2.19,-0.32 3.24,-0.14 0.52,0.09 1.04,0.24 1.53,0.44 0.28,0.12 0.56,0.31 0.84,0.47 -0.09,0.18 -0.12,0.34 -0.13,0.51 0,0 0,0 0,0 -0.13,-0.03 -0.27,0 -0.38,0.07 -0.63,-0.36 -1.37,-0.6 -2.01,-0.72 -1.12,-0.22 -2.3,-0.18 -3.38,0.21 -1.68,0.59 -3.14,1.94 -3.68,3.64 -0.01,0.01 -0.03,0.01 -0.04,0.03 -0.04,0.08 -0.07,0.16 -0.11,0.24 -0.01,-0.4 0.02,-0.78 0.05,-1.16 z m -3.44,12.27 c 0.56,-1.33 1.67,-2.37 2.96,-2.98 0.88,-0.18 1.74,-0.35 2.6,-0.41 -0.25,0.11 -0.5,0.25 -0.71,0.43 -0.13,0.11 0.05,0.28 0.18,0.18 0.43,-0.34 0.97,-0.53 1.52,-0.55 0.27,-0.01 0.53,0.01 0.79,0.08 0.13,0.03 0.25,0.07 0.38,0.12 0.13,0.05 0.25,0.14 0.38,0.16 0.07,0.01 0.13,-0.05 0.13,-0.12 1.35,0.42 2.56,1.18 3.43,2.31 1.78,2.3 1.63,5.65 -0.55,7.66 -2.31,2.13 -6.45,1.92 -8.98,0.34 -2.35,-1.48 -3.2,-4.69 -2.13,-7.22 z m -4.15,2.05 c 0.45,-0.51 0.95,-0.98 1.51,-1.36 0.3,-0.2 0.61,-0.39 0.93,-0.55 -0.71,2.29 -0.32,4.93 1.14,6.84 -1.22,-0.59 -2.37,-1.3 -3.36,-2.22 -0.47,-0.44 -0.87,-0.93 -1.24,-1.44 0.35,-0.41 0.66,-0.86 1.02,-1.27 z m -0.2,4.3 c -0.01,-0.05 -0.02,-0.1 -0.02,-0.15 0.05,0.05 0.11,0.1 0.16,0.15 -0.05,-0.02 -0.09,-0.02 -0.14,0 z m -0.41,-0.51 c 0.05,0.46 0.11,0.92 0.17,1.38 0.03,0.25 0.07,0.5 0.11,0.75 0.03,0.16 0.07,0.32 0.11,0.48 0,0.06 0.01,0.12 0.01,0.19 0.01,0.36 0.03,0.71 0.05,1.07 0.02,0.33 0.02,0.71 0.12,1.02 0.03,0.1 0.19,0.12 0.22,0 0.07,-0.32 0.04,-0.69 0.03,-1.02 -0.01,-0.36 -0.03,-0.71 -0.05,-1.07 -0.04,-0.71 -0.07,-1.42 -0.11,-2.14 0,-0.03 -0.02,-0.05 -0.04,-0.07 0.88,0.76 1.86,1.4 2.9,1.95 -0.11,0.41 -0.17,0.83 -0.13,1.26 0.02,0.22 0.04,0.46 0.12,0.67 0.08,0.22 0.18,0.43 0.29,0.63 0.07,0.12 0.23,0.01 0.18,-0.1 -0.09,-0.2 -0.15,-0.4 -0.19,-0.61 -0.04,-0.21 -0.09,-0.42 -0.11,-0.64 -0.03,-0.36 0.02,-0.72 0.11,-1.08 0.64,0.32 1.29,0.62 1.95,0.88 -0.02,0.02 -0.04,0.06 -0.04,0.1 0.03,0.47 0.06,0.95 0.08,1.42 0.01,0.24 0.03,0.47 0.04,0.71 0.01,0.22 0,0.48 0.08,0.69 0.04,0.1 0.21,0.13 0.24,0 0.05,-0.22 0.01,-0.47 -0.01,-0.69 -0.02,-0.24 -0.04,-0.47 -0.05,-0.71 -0.04,-0.47 -0.07,-0.95 -0.11,-1.42 0.36,0.14 0.72,0.26 1.09,0.39 -0.05,0.39 -0.06,0.78 -0.01,1.17 0.06,0.51 0.17,1.08 0.46,1.52 0.09,0.14 0.32,0.05 0.27,-0.11 -0.14,-0.48 -0.32,-0.93 -0.38,-1.43 -0.04,-0.34 -0.03,-0.69 0,-1.03 0.96,0.31 1.93,0.59 2.91,0.86 -0.01,0.61 -0.02,1.22 0.03,1.83 0.01,0.16 0.23,0.16 0.24,0 0.05,-0.58 0.04,-1.16 0.03,-1.74 0.74,0.2 1.5,0.37 2.25,0.55 0,0 0,0 0,0 0.03,0.47 0.06,0.95 0.09,1.42 0.03,0.47 0.05,0.94 0.12,1.41 0.02,0.16 0.27,0.11 0.27,-0.04 0.01,-0.47 -0.04,-0.93 -0.07,-1.4 l -0.09,-1.32 c 0.62,0.14 1.24,0.28 1.87,0.41 0,0.28 0,0.55 0,0.83 0,0.22 -0.01,0.44 0,0.66 0.01,0.21 0,0.45 0.07,0.64 0.04,0.12 0.2,0.12 0.24,0 0.05,-0.16 0.06,-0.35 0.06,-0.53 0.02,0.95 0.02,1.9 0.04,2.85 0.01,0.49 0.02,0.98 0.03,1.47 0,0.09 0,0.18 0.01,0.27 -0.43,-0.11 -0.86,-0.23 -1.3,-0.34 0,-0.23 0,-0.47 0,-0.7 0,-0.55 -0.01,-1.11 -0.01,-1.66 0,-0.18 -0.29,-0.18 -0.29,0 0,0.55 -0.01,1.11 -0.01,1.66 0,0.21 0,0.41 0,0.62 -0.65,-0.17 -1.31,-0.33 -1.96,-0.51 0,-0.08 -0.01,-0.17 -0.01,-0.25 0.02,-0.47 0.03,-0.94 0.01,-1.42 -0.04,-0.96 -0.07,-1.93 -0.11,-2.89 -0.01,-0.17 -0.26,-0.17 -0.26,0 0.03,0.96 0.05,1.93 0.08,2.89 0.01,0.48 0.05,0.94 0.1,1.42 0.01,0.07 0,0.14 0.01,0.21 -0.1,-0.03 -0.21,-0.05 -0.31,-0.08 -0.24,-0.07 -0.49,-0.14 -0.74,-0.21 0,-0.01 0,-0.01 0,-0.02 -0.04,-0.34 -0.08,-0.68 -0.11,-1.02 -0.01,-0.08 -0.06,-0.14 -0.14,-0.14 -0.07,0 -0.15,0.06 -0.14,0.14 0.03,0.32 0.06,0.63 0.08,0.95 -0.47,-0.13 -0.94,-0.28 -1.41,-0.42 0,-0.11 0.01,-0.22 0.01,-0.33 0,-0.27 0,-0.53 0,-0.8 0,-0.17 -0.27,-0.17 -0.27,0 0,0.27 0,0.53 0,0.8 0,0.08 0.01,0.16 0.01,0.25 -0.59,-0.19 -1.18,-0.39 -1.77,-0.61 -0.01,-0.13 -0.02,-0.27 -0.02,-0.4 -0.02,-0.32 -0.04,-0.63 -0.07,-0.95 -0.04,-0.62 -0.09,-1.24 -0.14,-1.87 -0.01,-0.13 -0.21,-0.13 -0.2,0 0.02,0.62 0.05,1.24 0.07,1.87 0.01,0.31 0.02,0.61 0.04,0.92 0.01,0.11 0.01,0.21 0.02,0.32 -0.43,-0.17 -0.85,-0.35 -1.27,-0.54 0,-0.01 0.01,-0.01 0.01,-0.02 -0.03,-0.08 -0.1,-0.16 -0.15,-0.23 l -0.15,-0.19 -0.3,-0.4 c -0.04,-0.06 -0.12,-0.09 -0.18,-0.05 -0.06,0.04 -0.09,0.12 -0.05,0.18 0.1,0.14 0.2,0.27 0.3,0.41 0.02,0.02 0.03,0.05 0.05,0.07 -0.71,-0.34 -1.39,-0.73 -2.03,-1.17 -0.01,-0.09 -0.01,-0.17 -0.02,-0.26 -0.02,-0.32 -0.04,-0.64 -0.07,-0.97 -0.04,-0.49 -0.1,-0.98 -0.16,-1.47 0.05,0.08 0.08,0.16 0.15,0.22 0.09,0.07 0.22,0.01 0.2,-0.12 -0.03,-0.13 -0.11,-0.25 -0.16,-0.38 -0.05,-0.12 -0.1,-0.24 -0.14,-0.36 -0.1,-0.25 -0.17,-0.51 -0.22,-0.77 -0.1,-0.53 -0.1,-1.08 0,-1.62 0.04,-0.21 -0.28,-0.3 -0.32,-0.09 -0.11,0.58 -0.12,1.16 -0.02,1.74 0.05,0.27 0.12,0.53 0.22,0.79 -0.03,0.02 -0.05,0.06 -0.04,0.11 0.06,0.64 0.12,1.29 0.19,1.93 0.04,0.31 0.07,0.62 0.12,0.93 0.01,0.04 0.01,0.08 0.02,0.12 -0.59,-0.42 -1.16,-0.87 -1.67,-1.4 -0.05,-0.05 -0.09,-0.11 -0.14,-0.16 -0.02,-0.2 -0.02,-0.39 0.02,-0.58 0.04,-0.17 -0.23,-0.25 -0.27,-0.07 -0.03,0.11 -0.03,0.22 -0.04,0.33 -0.36,-0.42 -0.68,-0.87 -0.96,-1.35 0.24,-0.48 0.11,-1.17 0.1,-1.69 -0.02,-0.72 -0.03,-1.44 -0.05,-2.16 -0.01,-0.31 -0.02,-0.62 -0.02,-0.93 0.13,0.13 0.26,0.26 0.39,0.39 z m -2.74,8.45 c 0.32,-1.05 1.09,-1.76 1.7,-2.61 1.92,2.9 5.13,4.7 8.34,5.93 2.06,0.79 4.17,1.44 6.31,2.03 0.34,0.15 0.69,0.31 1.03,0.46 0.27,0.12 0.54,0.24 0.81,0.36 0.26,0.11 0.52,0.26 0.8,0.32 0.14,0.03 0.21,-0.15 0.1,-0.23 -0.24,-0.16 -0.53,-0.26 -0.8,-0.38 -0.08,-0.03 -0.15,-0.07 -0.23,-0.1 1.32,0.34 2.65,0.65 3.98,0.95 0.02,0.42 0.07,0.84 0.19,1.24 0.07,0.23 0.24,0.43 0.46,0.54 0.04,0.24 0.2,0.45 0.54,0.52 1.17,0.23 2.38,0.22 3.57,0.28 1.2,0.06 2.41,0.12 3.61,0.19 2.41,0.12 4.81,0.25 7.22,0.36 2.41,0.12 4.81,0.23 7.22,0.35 1.2,0.06 2.41,0.13 3.61,0.2 0.56,0.03 1.12,0.06 1.68,0.09 0.66,0.04 1.33,0.15 1.81,-0.41 0.23,-0.27 0.36,-0.72 0.13,-1.03 -0.02,-0.03 -0.05,-0.04 -0.07,-0.07 0.1,-0.02 0.19,-0.05 0.28,-0.09 0.17,-0.02 0.33,-0.08 0.45,-0.22 0.34,-0.38 0.4,-0.91 0.56,-1.38 0.06,-0.19 0.13,-0.38 0.2,-0.57 0.03,-0.09 0.07,-0.18 0.11,-0.27 0,-0.01 0.01,-0.02 0.01,-0.03 0.02,-0.05 0.05,-0.11 0.07,-0.16 0.04,-0.08 0.09,-0.16 0.13,-0.24 0.01,0.19 0.02,0.39 0.03,0.58 0.02,0.34 0.03,0.68 0.05,1.02 -0.4,0.38 -0.3,1.08 0.29,1.29 1.17,0.41 2.56,0.29 3.79,0.31 1.27,0.02 2.55,0.03 3.82,0.03 2.51,0 5.01,-0.03 7.52,-0.08 5.05,-0.1 10.1,-0.3 15.15,-0.6 1.43,-0.08 2.86,-0.18 4.29,-0.28 0.67,-0.05 1.4,-0.03 2.05,-0.19 0.27,-0.07 0.53,-0.14 0.8,-0.23 0.01,0.04 0.01,0.09 0.03,0.13 0.06,0.15 0.29,0.18 0.33,0 0.02,-0.09 0.02,-0.18 0.03,-0.28 0.08,0.03 0.17,0.05 0.26,0.06 -0.02,0.03 -0.04,0.04 -0.06,0.08 -0.21,0.33 -0.04,0.77 0.2,1.02 0.51,0.52 1.18,0.36 1.83,0.28 0.56,-0.07 1.12,-0.14 1.67,-0.21 1.2,-0.15 2.39,-0.3 3.59,-0.44 2.39,-0.28 4.79,-0.56 7.18,-0.83 1.52,-0.18 3.04,-0.36 4.55,-0.54 -0.64,0.18 -1.28,0.36 -1.94,0.5 -1.67,0.36 -3.38,0.59 -5.08,0.7 -0.19,0.01 -0.19,0.31 0,0.3 1.73,-0.07 3.44,-0.28 5.12,-0.64 0.84,-0.18 1.68,-0.4 2.51,-0.64 0.45,-0.14 0.91,-0.28 1.36,-0.45 0.22,-0.03 0.43,-0.05 0.65,-0.08 1.2,-0.14 2.39,-0.29 3.59,-0.43 1.18,-0.14 2.39,-0.21 3.54,-0.52 0.33,-0.09 0.48,-0.31 0.5,-0.55 0.21,-0.13 0.37,-0.33 0.42,-0.57 0.04,-0.17 0.05,-0.34 0.07,-0.51 6.61,-1.46 13.16,-3.99 17.25,-9.43 0.07,0.14 0.13,0.29 0.2,0.42 -0.01,0.01 -0.03,0 -0.04,0.02 -0.6,1.48 -1.45,2.8 -2.66,3.85 -0.59,0.51 -1.24,0.97 -1.94,1.3 -0.36,0.17 -0.73,0.31 -1.11,0.43 -0.39,0.12 -0.79,0.17 -1.18,0.27 -0.06,0.02 -0.05,0.12 0.02,0.11 0.77,-0.01 1.6,-0.29 2.3,-0.59 0.76,-0.32 1.48,-0.73 2.12,-1.25 1.23,-1 2.23,-2.42 2.59,-3.97 0.12,0.23 0.25,0.47 0.36,0.71 0.03,0.07 0.07,0.15 0.1,0.22 0.02,0.04 0.03,0.07 0.05,0.11 0,0 0,0 0,0.01 0.04,0.1 0.09,0.2 0.13,0.31 0,0 0,0 0,0 0,-0.01 0,-0.01 0,0 -0.79,1.25 -1.73,2.4 -2.86,3.36 -0.63,0.54 -1.31,1.01 -2.02,1.42 -0.35,0.2 -0.7,0.4 -1.07,0.57 -0.37,0.18 -0.78,0.33 -1.14,0.53 -0.09,0.05 -0.03,0.17 0.07,0.16 0.39,-0.07 0.81,-0.25 1.17,-0.41 0.4,-0.18 0.79,-0.37 1.17,-0.59 0.71,-0.41 1.38,-0.9 2.01,-1.43 1.11,-0.94 2.05,-2.06 2.78,-3.32 0.04,0.1 0.08,0.2 0.11,0.3 0.06,0.19 0.11,0.4 0.22,0.56 0.13,0.2 0.37,0.34 0.61,0.33 0.06,0.03 0.11,0.06 0.17,0.07 -1.23,2.23 -3.29,3.83 -5.7,4.68 -0.13,0.05 -0.08,0.24 0.06,0.21 2.6,-0.58 4.78,-2.51 6,-4.85 0.21,-0.01 0.42,-0.04 0.61,-0.07 0.34,-0.05 0.69,-0.1 1.03,-0.16 0.21,-0.03 0.41,-0.08 0.61,-0.12 -0.18,0.31 -0.37,0.61 -0.57,0.91 -0.04,-0.07 -0.14,-0.1 -0.2,-0.01 -0.69,1.04 -1.55,1.94 -2.54,2.71 -0.98,0.77 -2.08,1.34 -3.21,1.85 -0.12,0.05 -0.03,0.25 0.09,0.21 1.19,-0.35 2.29,-0.97 3.26,-1.75 -1.24,1.1 -2.63,2.01 -4.07,2.81 -4.29,2.37 -9,4.06 -13.7,5.41 -9.84,2.83 -20.06,3.95 -30.25,4.64 -10.61,0.72 -21.26,1.29 -31.89,1.42 -10.73,0.13 -21.53,-0.21 -32.15,-1.84 -5.27,-0.8 -10.49,-1.9 -15.61,-3.38 -2.87,-0.82 -5.88,-1.77 -8.49,-3.33 -0.21,-0.22 -0.46,-0.4 -0.69,-0.6 -0.49,-0.4 -1.02,-0.74 -1.51,-1.14 -0.94,-0.76 -1.76,-1.63 -2.18,-2.78 -0.39,-1.02 -0.6,-2.06 -0.27,-3.15 z m 118.99,16.33 c 0,-0.01 0,-0.01 0,0 -0.04,-0.21 -0.07,-0.42 -0.11,-0.62 -0.01,-0.09 -0.12,-0.13 -0.2,-0.11 -0.09,0.03 -0.13,0.11 -0.11,0.2 l 0.1,0.6 v 0.01 c -0.39,0.09 -0.78,0.17 -1.17,0.26 -0.04,-0.2 -0.04,-0.43 0.04,-0.62 0.04,-0.08 0.03,-0.18 -0.06,-0.23 -0.07,-0.04 -0.19,-0.02 -0.23,0.06 -0.12,0.27 -0.14,0.57 -0.08,0.86 -0.38,0.08 -0.76,0.17 -1.13,0.25 -0.01,-0.11 -0.02,-0.22 -0.03,-0.33 -0.03,-0.31 -0.06,-0.61 -0.09,-0.92 -0.01,-0.09 -0.07,-0.16 -0.16,-0.16 -0.08,0 -0.17,0.07 -0.16,0.16 0.03,0.31 0.06,0.61 0.1,0.92 0.01,0.13 0.03,0.26 0.04,0.4 -0.83,0.17 -1.66,0.32 -2.5,0.47 0,-0.13 0,-0.26 0,-0.39 0,-0.07 -0.11,-0.07 -0.11,0 0,0.14 0,0.27 0,0.41 -6.71,1.23 -13.53,1.89 -20.33,2.35 -10.61,0.72 -21.26,1.29 -31.89,1.42 -10.73,0.13 -21.53,-0.21 -32.15,-1.84 -2.12,-0.32 -4.22,-0.71 -6.32,-1.13 -0.02,-0.06 -0.05,-0.12 -0.07,-0.19 -0.07,-0.26 -0.07,-0.53 0,-0.79 0.05,-0.19 -0.24,-0.26 -0.29,-0.08 -0.09,0.31 -0.09,0.64 -0.01,0.95 0,0.01 0.01,0.02 0.01,0.03 -1.68,-0.34 -3.35,-0.71 -5.01,-1.12 0,-0.02 0,-0.05 -0.01,-0.08 -0.05,-0.29 -0.11,-0.58 -0.16,-0.86 -0.11,-0.57 -0.21,-1.15 -0.32,-1.72 -0.04,-0.21 -0.35,-0.12 -0.31,0.09 0.09,0.57 0.19,1.13 0.28,1.7 0.04,0.26 0.09,0.52 0.13,0.78 -0.48,-0.12 -0.96,-0.26 -1.43,-0.38 l -0.01,-0.12 c -0.03,-0.27 -0.07,-0.54 -0.1,-0.81 -0.01,-0.07 -0.06,-0.14 -0.14,-0.14 -0.07,0 -0.14,0.06 -0.14,0.14 l 0.1,0.83 v 0.03 c -0.41,-0.11 -0.82,-0.21 -1.23,-0.33 -0.01,-0.05 -0.03,-0.1 -0.06,-0.14 -0.04,-0.08 -0.08,-0.15 -0.12,-0.24 -0.07,-0.15 -0.12,-0.32 -0.16,-0.48 -0.07,-0.34 -0.07,-0.69 -0.01,-1.02 0.04,-0.18 -0.24,-0.26 -0.28,-0.08 -0.08,0.38 -0.09,0.77 -0.01,1.15 0.04,0.19 0.09,0.37 0.17,0.54 0.02,0.04 0.04,0.1 0.07,0.17 -0.06,-0.02 -0.13,-0.03 -0.19,-0.05 -1.02,-0.29 -2.07,-0.6 -3.11,-0.95 0,-0.02 0.01,-0.03 0.01,-0.05 0.03,-0.17 0.04,-0.34 0.05,-0.51 0.03,-0.35 0.07,-0.7 0.1,-1.06 0.01,-0.08 -0.08,-0.16 -0.16,-0.16 -0.09,0 -0.15,0.07 -0.16,0.16 -0.04,0.35 -0.07,0.69 -0.11,1.04 -0.02,0.16 -0.04,0.31 -0.05,0.47 -2.98,-1.02 -5.9,-2.36 -8.12,-4.58 -0.34,-0.34 -0.65,-0.71 -0.94,-1.09 -0.01,-0.04 -0.02,-0.08 -0.03,-0.12 -0.1,-0.42 -0.21,-0.83 -0.34,-1.25 -0.26,-0.83 -0.52,-1.65 -0.69,-2.51 -0.04,-0.2 -0.06,-0.4 -0.09,-0.6 0.24,0.31 0.49,0.6 0.76,0.88 0.03,0.55 0.11,1.09 0.18,1.63 0.03,0.27 0.06,0.54 0.1,0.81 0.04,0.26 0.05,0.57 0.16,0.81 0.06,0.12 0.27,0.09 0.29,-0.04 0.05,-0.25 -0.01,-0.54 -0.04,-0.79 -0.03,-0.28 -0.07,-0.56 -0.1,-0.84 -0.05,-0.38 -0.1,-0.77 -0.16,-1.15 0.08,0.07 0.15,0.14 0.23,0.2 1.74,1.85 3.97,3.2 6.33,4.23 0.01,0.17 0.02,0.33 0.05,0.5 0.05,0.27 0.13,0.54 0.23,0.8 0.09,0.24 0.2,0.52 0.39,0.7 0.1,0.09 0.26,0 0.23,-0.13 -0.06,-0.24 -0.2,-0.48 -0.29,-0.71 -0.09,-0.23 -0.16,-0.47 -0.21,-0.72 -0.02,-0.09 -0.02,-0.19 -0.03,-0.28 0.31,0.13 0.62,0.27 0.93,0.39 3.5,1.37 7.18,2.37 10.88,3.21 -0.09,0 -0.19,0.07 -0.18,0.19 0.06,0.44 0.13,0.88 0.19,1.33 0.03,0.22 0.06,0.44 0.09,0.66 0.02,0.1 0.04,0.2 0.06,0.3 0.02,0.11 0.03,0.23 0.1,0.32 0.06,0.09 0.19,0.08 0.23,-0.03 0.04,-0.11 0.01,-0.23 0,-0.34 -0.01,-0.1 -0.02,-0.2 -0.03,-0.3 -0.03,-0.23 -0.07,-0.46 -0.11,-0.68 -0.07,-0.45 -0.15,-0.9 -0.22,-1.34 -0.01,-0.04 -0.03,-0.07 -0.06,-0.09 1.4,0.32 2.8,0.62 4.2,0.89 10.83,2.16 21.89,2.97 32.92,3.05 11.01,0.08 22.03,-0.44 33.02,-1.11 10.52,-0.64 21.1,-1.58 31.34,-4.2 -0.02,0.03 -0.04,0.06 -0.04,0.1 0.03,0.59 0.07,1.17 0.1,1.76 0.02,0.28 0.02,0.58 0.05,0.86 -0.7,0.18 -1.4,0.37 -2.1,0.54 z m 20.89,-8.56 c 0,-0.05 0,-0.1 0,-0.14 0,-0.35 0,-0.7 0,-1.06 0,-0.22 -0.35,-0.22 -0.35,0 0,0.35 0,0.7 0,1.06 0,0.14 0,0.27 0,0.41 -0.34,0.25 -0.67,0.51 -1.02,0.74 0,-0.18 0,-0.35 0,-0.53 0,-0.49 -0.01,-0.99 -0.01,-1.48 0,-0.24 -0.37,-0.24 -0.37,0 0,0.49 -0.01,0.99 -0.01,1.48 0,0.24 0,0.47 -0.01,0.71 0,0.02 0,0.04 0,0.06 -0.4,0.25 -0.8,0.51 -1.21,0.74 0,-0.01 0,-0.02 0,-0.03 0,-0.59 -0.01,-1.17 -0.01,-1.76 0,-0.22 -0.34,-0.22 -0.34,0 0,0.59 -0.01,1.17 -0.01,1.76 0,0.08 0,0.15 0,0.23 -0.47,0.26 -0.96,0.48 -1.44,0.72 v -1.12 c 0,-0.23 -0.35,-0.23 -0.35,0 v 1.24 c 0,0.02 0,0.04 0,0.06 -0.5,0.24 -0.98,0.5 -1.48,0.73 l -0.18,-1.07 c -0.03,-0.2 -0.34,-0.12 -0.31,0.09 0.06,0.37 0.12,0.74 0.19,1.12 -1.87,0.84 -3.79,1.57 -5.74,2.23 0,-0.02 0,-0.04 0,-0.06 0.03,-0.38 0.06,-0.76 0.09,-1.14 0.01,-0.1 -0.09,-0.18 -0.18,-0.18 -0.1,0 -0.17,0.08 -0.18,0.18 -0.04,0.37 -0.07,0.75 -0.11,1.12 -0.01,0.07 -0.01,0.14 -0.02,0.21 -0.43,0.14 -0.86,0.28 -1.3,0.41 -0.02,-0.05 -0.04,-0.11 -0.05,-0.16 -0.07,-0.21 -0.14,-0.41 -0.21,-0.62 -0.03,-0.08 -0.11,-0.14 -0.2,-0.12 -0.08,0.02 -0.14,0.12 -0.12,0.2 0.07,0.21 0.14,0.41 0.21,0.62 0.02,0.06 0.04,0.11 0.06,0.17 -0.52,0.16 -1.05,0.33 -1.57,0.48 -0.01,-0.07 -0.02,-0.14 -0.02,-0.21 -0.03,-0.31 -0.07,-0.61 -0.1,-0.92 -0.01,-0.09 -0.07,-0.17 -0.17,-0.17 -0.08,0 -0.18,0.08 -0.17,0.17 0.03,0.31 0.07,0.62 0.1,0.93 0.01,0.1 0.02,0.2 0.03,0.3 -0.09,0.03 -0.18,0.06 -0.28,0.08 -0.53,0.15 -1.07,0.28 -1.6,0.43 -0.01,-0.27 -0.03,-0.54 -0.05,-0.81 -0.03,-0.58 -0.07,-1.15 -0.1,-1.73 0,-0.09 -0.07,-0.13 -0.13,-0.15 5.03,-1.3 9.95,-3.01 14.63,-5.25 2.04,-0.97 4,-2.1 5.78,-3.51 1.05,-0.83 2.12,-1.82 2.94,-2.95 -0.01,0.47 -0.02,0.94 -0.08,1.4 -0.03,0.24 -0.09,0.48 -0.15,0.72 -0.01,-0.21 -0.02,-0.43 -0.03,-0.64 -0.01,-0.2 -0.31,-0.2 -0.31,0 0,0.3 0.01,0.59 0,0.89 0,0.15 -0.01,0.3 -0.01,0.44 0,0.14 -0.01,0.28 0,0.41 -0.09,0.1 -0.18,0.22 -0.27,0.32 -0.19,0.2 -0.42,0.36 -0.62,0.55 0,-0.01 -0.01,-0.02 -0.01,-0.03 -0.01,-0.02 -0.02,-0.05 -0.02,-0.07 0,-0.01 -0.01,-0.03 -0.01,-0.04 -0.01,-0.04 0,-0.02 0,0.01 0,-0.03 -0.01,-0.06 -0.01,-0.09 0,-0.03 0,-0.05 0,-0.08 0,0 0,0 0,0 0,-0.01 0,-0.03 0.01,-0.04 0.01,-0.03 0.01,-0.05 0.02,-0.08 0,0 0.01,-0.01 0.01,-0.02 0,0 0,-0.01 0,-0.01 0,0 0,0 0,0 0,0 0,-0.01 0,-0.01 0,0 0,0 0,0 0,0 0,0 0,0 0.01,-0.02 0.02,-0.05 0.04,-0.07 0,0 0.01,-0.01 0.01,-0.02 0,0 0,0 0,0 l 0.01,-0.01 c 0.02,-0.02 0.04,-0.04 0.06,-0.05 0,0 0,0 0,0 0,0 0,0 0.01,0 0.01,-0.01 0.03,-0.02 0.04,-0.02 0.09,-0.05 0.13,-0.18 0.07,-0.27 -0.06,-0.09 -0.17,-0.12 -0.27,-0.07 -0.28,0.14 -0.43,0.46 -0.44,0.76 -0.01,0.16 0.03,0.31 0.09,0.46 0.01,0.02 0.04,0.04 0.05,0.06 -0.25,0.21 -0.5,0.42 -0.77,0.62 0,-0.16 -0.01,-0.32 -0.01,-0.49 -0.01,-0.41 -0.02,-0.83 -0.03,-1.24 -0.01,-0.25 -0.39,-0.25 -0.4,0 -0.01,0.41 -0.02,0.83 -0.03,1.24 0,0.2 -0.01,0.41 -0.01,0.61 0,0.07 0,0.14 -0.01,0.2 -0.27,0.18 -0.52,0.38 -0.8,0.54 -0.23,0.23 -0.5,0.41 -0.76,0.61 z m 12.63,-2.21 c -0.01,0 -0.02,0 -0.05,0.01 -0.14,0.01 -0.28,0.03 -0.43,0.05 0.15,-0.02 -0.14,0.02 -0.17,0.02 -0.07,0.01 -0.15,0.01 -0.23,0.02 -0.19,0.01 -0.38,0.01 -0.56,0 -0.09,0 -0.17,-0.01 -0.26,-0.02 -0.02,0 -0.2,-0.02 -0.21,-0.02 -0.16,-0.03 -0.33,-0.06 -0.49,-0.09 -0.11,-0.02 -0.24,-0.05 -0.37,-0.07 0,-0.12 -0.01,-0.24 -0.01,-0.34 -0.01,-0.25 -0.03,-0.49 -0.05,-0.74 -0.01,-0.19 -0.03,-0.38 -0.04,-0.57 0.31,0.02 0.62,0.05 0.93,0.06 0.74,0.03 1.48,0.02 2.22,0.01 -0.01,0.21 -0.02,0.41 -0.02,0.62 -0.01,0.35 0.02,0.7 0.04,1.06 -0.05,0 -0.1,0 -0.14,0 -0.07,-0.01 -0.12,-0.01 -0.16,0 z m 3.83,-4.8 c -0.13,0.09 -0.25,0.18 -0.38,0.27 -0.26,0.19 -0.52,0.37 -0.78,0.57 -0.22,0.17 -0.42,0.35 -0.64,0.52 -0.06,-0.02 -0.11,-0.04 -0.17,-0.05 0,-0.02 -0.01,-0.03 -0.01,-0.05 -0.09,-0.37 -0.24,-0.72 -0.4,-1.07 0.02,-0.03 0.05,-0.06 0.06,-0.1 0.18,0.06 0.38,0.06 0.56,-0.05 l 1.36,-0.88 c 0.37,-0.24 0.71,-0.52 1.05,-0.8 -0.01,0.13 -0.04,0.25 -0.05,0.38 -0.02,0.28 -0.04,0.56 -0.06,0.85 0,0.04 0,0.08 -0.01,0.12 -0.01,0 -0.02,0 -0.03,0 -0.18,0.09 -0.33,0.17 -0.5,0.29 z m -4.73,-15.64 c -1.02,0.08 -2.03,0.2 -3.05,0.32 -0.67,0.08 -1.32,0.19 -1.98,0.32 -0.14,-0.06 -0.29,-0.12 -0.43,-0.18 -0.3,-0.12 -0.59,-0.25 -0.89,-0.39 -0.63,-0.29 -1.26,-0.59 -1.88,-0.9 -0.6,-0.3 -1.19,-0.63 -1.78,-0.95 -0.31,-0.17 -0.64,-0.33 -0.96,-0.48 -0.14,-0.06 -0.27,-0.12 -0.41,-0.18 -0.01,-0.01 -0.02,-0.02 -0.04,-0.03 -0.02,-0.01 -0.04,-0.01 -0.06,-0.01 -0.01,0 -0.02,-0.01 -0.02,-0.01 0,-0.03 0.01,-0.06 0.01,-0.1 0.16,0.11 0.33,0.22 0.5,0.3 0.47,0.21 0.95,0.35 1.46,0.42 0.54,0.08 1.09,0.03 1.63,-0.07 0.41,-0.08 0.78,-0.24 1.12,-0.47 0.02,0 0.04,0.01 0.06,0.01 0.81,0.59 1.78,0.98 2.71,1.3 1.1,0.39 2.23,0.68 3.38,0.87 0.32,0.05 0.64,-0.04 0.83,-0.29 0.72,0 1.44,-0.07 2.17,-0.14 0.57,-0.06 1.13,-0.12 1.69,-0.17 0.02,0.2 0.05,0.4 0.11,0.57 -1.38,0.09 -2.77,0.16 -4.17,0.26 z m 3.93,-3.34 c 0.01,0.3 0,0.6 0.02,0.9 0.01,0.13 0.02,0.25 0.03,0.38 -0.55,0.06 -1.1,0.12 -1.65,0.18 -0.75,0.09 -1.49,0.17 -2.23,0.33 -0.05,-0.05 -0.12,-0.08 -0.19,-0.11 -0.02,-0.15 -0.06,-0.3 -0.08,-0.45 -0.04,-0.21 -0.07,-0.43 -0.12,-0.64 -0.03,-0.14 -0.07,-0.28 -0.1,-0.42 0.78,-0.04 1.55,-0.08 2.33,-0.12 0.46,-0.02 0.93,-0.03 1.39,-0.05 0.21,0.01 0.41,0 0.6,0 z m -5.63,0.27 c 0.01,0.17 0.03,0.35 0.04,0.52 0.02,0.19 0.04,0.38 0.07,0.57 -0.64,-0.14 -1.27,-0.31 -1.89,-0.51 -0.83,-0.27 -1.63,-0.64 -2.46,-0.91 -0.03,-0.64 -0.06,-1.28 -0.09,-1.93 0.01,0 0.01,0.01 0.01,0.01 0.21,0.13 0.43,0.25 0.64,0.37 0.45,0.25 0.91,0.47 1.37,0.7 0.44,0.23 0.88,0.45 1.32,0.68 0.33,0.17 0.66,0.35 0.99,0.5 z m -2.8,-3.24 c 0.38,-0.06 0.75,-0.11 1.13,-0.17 0.37,-0.06 0.81,-0.07 1.16,-0.2 0.02,-0.01 0.03,-0.02 0.04,-0.02 0.92,0.55 1.96,0.92 2.94,1.32 0.62,0.25 1.24,0.51 1.85,0.76 -0.28,0.05 -0.56,0.09 -0.84,0.13 -0.84,0.12 -1.67,0.24 -2.51,0.35 -0.11,-0.19 -0.29,-0.32 -0.52,-0.29 -0.01,0 -0.02,0.02 -0.04,0.02 -0.26,-0.13 -0.52,-0.24 -0.77,-0.36 l -1.38,-0.68 c -0.44,-0.22 -0.88,-0.45 -1.34,-0.65 -0.1,-0.04 -0.2,-0.09 -0.31,-0.13 0.21,-0.02 0.4,-0.05 0.59,-0.08 z m -3.02,-0.95 c 0.01,0.46 0.03,0.93 0.05,1.39 0.03,0.78 0.05,1.57 0.08,2.35 -0.26,0.07 -0.52,0.15 -0.79,0.22 -0.22,0.05 -0.35,0.08 -0.51,0.09 -0.22,0.02 -0.45,0.02 -0.67,0.02 -0.71,-0.01 -1.44,-0.17 -2.1,-0.49 0,-0.01 0,-0.01 0,-0.02 -0.02,-0.48 -0.04,-0.96 -0.06,-1.44 0,-0.02 0,-0.04 0,-0.06 0.31,0 0.61,0 0.92,0 0.1,0 0.2,0 0.31,0 0.01,0.11 0.02,0.21 0.03,0.32 0.01,0.13 0.02,0.27 0.03,0.41 -0.29,0.02 -0.58,0.04 -0.86,0.06 -0.21,0.02 -0.21,0.34 0,0.33 0.3,-0.02 0.59,-0.04 0.89,-0.06 0.02,0.25 0.05,0.49 0.13,0.71 0.05,0.17 0.27,0.12 0.29,-0.04 0.03,-0.22 0.01,-0.46 -0.02,-0.7 0.28,-0.02 0.56,-0.04 0.84,-0.07 0.02,0.27 0.05,0.54 0.15,0.79 0.03,0.07 0.14,0.09 0.16,0 0.06,-0.28 0.03,-0.56 0,-0.85 0.13,-0.04 0.09,-0.2 -0.02,-0.24 -0.03,-0.33 -0.06,-0.66 -0.1,-0.99 -0.04,-0.44 -0.09,-0.88 -0.13,-1.32 0.08,-0.05 0.18,-0.08 0.26,-0.13 0.08,-0.06 0.04,-0.22 -0.08,-0.18 -0.07,0.02 -0.14,0.05 -0.2,0.07 -0.02,-0.19 -0.04,-0.38 -0.06,-0.57 -0.02,-0.17 -0.29,-0.18 -0.27,0 0.02,0.22 0.04,0.45 0.06,0.67 -0.29,0.11 -0.58,0.21 -0.88,0.28 -0.04,-0.43 -0.09,-0.86 -0.13,-1.29 0.92,-0.06 1.85,-0.16 2.76,-0.3 -0.1,0.33 -0.08,0.71 -0.08,1.04 z m -2.47,-7.25 c 1.36,-0.03 2.71,0.02 4.06,0.08 0.66,0.03 1.31,0.07 1.97,0.12 0.3,0.02 0.62,0.02 0.91,0.08 -2.47,0.51 -4.93,0.86 -7.46,0.97 -1.39,0.06 -2.77,0.06 -4.16,0.03 -0.79,-0.02 -1.78,0 -2.58,-0.32 1.04,-0.21 2.06,-0.47 3.11,-0.63 1.38,-0.22 2.77,-0.3 4.15,-0.33 z m -7.07,4.65 c -0.22,-0.08 -0.51,-0.21 -0.75,-0.38 0.09,-0.11 0.15,-0.26 0.16,-0.42 0.02,-0.29 -0.07,-0.6 -0.12,-0.89 -0.04,-0.23 -0.09,-0.47 -0.13,-0.7 -0.02,-0.09 -0.03,-0.17 -0.05,-0.26 0.64,0.43 1.41,0.61 2.24,0.69 1.53,0.15 3.08,0.15 4.61,0.11 2.98,-0.07 6,-0.37 8.94,-0.9 0,0.05 0,0.1 0,0.15 v 0.78 c 0,0.13 0,0.25 0,0.38 -2.74,0.91 -5.59,1.49 -8.47,1.68 -1.46,0.09 -2.92,0.1 -4.38,0.02 -0.66,-0.04 -1.39,-0.04 -2.05,-0.26 z m 5.67,1.93 c 0.28,-0.01 0.55,-0.04 0.82,-0.06 0.04,0.44 0.08,0.88 0.13,1.33 -0.39,0.06 -0.79,0.08 -1.18,0.05 -0.02,-0.43 -0.03,-0.93 -0.2,-1.32 0.15,-0.01 0.29,0 0.43,0 z m -3.3,4.08 c 0,0.01 0,0.02 0,0.03 0.01,0.21 0.02,0.41 0.03,0.62 0.01,0.26 0.01,0.51 0.09,0.76 0.01,0.02 0.02,0.03 0.03,0.04 -0.13,0.01 -0.26,0.01 -0.39,0.02 -1.24,0.05 -2.47,0.08 -3.71,0.09 -0.11,0 -0.22,0 -0.33,0 0.2,-0.14 0.34,-0.38 0.25,-0.63 -0.05,-0.15 -0.09,-0.3 -0.12,-0.46 0.13,0.02 0.25,0.04 0.38,0.05 0.97,0.08 1.95,0.01 2.9,-0.22 0.3,-0.08 0.58,-0.2 0.87,-0.3 z m -4.19,-0.86 c 0.12,-0.1 0.33,-0.14 0.48,-0.18 0.24,-0.06 0.48,-0.12 0.72,-0.16 0.71,-0.14 1.43,-0.18 2.15,-0.24 0.02,0.07 0.06,0.13 0.12,0.18 -0.33,0.11 -0.66,0.2 -1,0.27 -0.41,0.08 -0.82,0.15 -1.24,0.18 -0.36,0.03 -0.87,0.06 -1.18,0 0.01,0 -0.05,-0.01 -0.09,-0.02 0,0 0.02,-0.02 0.04,-0.03 z m -1.14,1 c 0.02,0.37 0.08,0.74 0.18,1.09 0.04,0.13 0.13,0.24 0.24,0.32 -0.31,0 -0.62,0 -0.93,-0.01 0.03,-0.07 0.05,-0.15 0.06,-0.24 0.03,-0.38 0.01,-0.76 -0.01,-1.14 0.15,0.01 0.31,0 0.46,-0.02 z m -2.75,0.11 c 0.32,0.01 0.64,0.01 0.95,-0.04 -0.02,0.37 -0.04,0.73 -0.01,1.1 0.01,0.08 0.03,0.15 0.06,0.23 -0.15,0 -0.31,0 -0.46,0 -1.1,-0.02 -2.24,-0.11 -3.34,-0.03 0.03,-0.32 0.07,-0.65 0.11,-0.97 0.02,-0.13 0.03,-0.25 0.05,-0.38 0.43,0.03 0.85,0.03 1.28,0.05 0.45,0.01 0.91,0.03 1.36,0.04 z m -0.5,-1.56 c 0.07,0.01 0.14,0.03 0.21,0.05 -0.3,-0.01 -0.6,-0.02 -0.91,-0.02 -0.42,-0.01 -0.84,-0.03 -1.26,-0.03 0.01,-0.08 0.01,-0.16 0.01,-0.24 0.23,0.03 0.45,0.06 0.68,0.08 0.42,0.04 0.84,0.08 1.27,0.16 z M 645.5,366.39 c 0.34,-0.75 0.95,-1.37 1.69,-1.72 1.74,-0.82 3.71,-0.38 5.4,0.36 2.87,1.25 6.65,3.77 6.12,7.43 -0.2,1.35 -1.12,2.35 -2.32,2.73 1.15,-0.76 1.2,-2.63 0.95,-3.83 -0.32,-1.54 -1.32,-2.78 -2.55,-3.71 -1.25,-0.94 -2.77,-1.55 -4.27,-1.94 -0.99,-0.26 -2.08,-0.32 -3.04,-0.01 -0.16,-0.18 -0.42,-0.28 -0.66,-0.13 -0.2,0.12 -0.41,0.24 -0.56,0.42 -0.18,0.19 -0.34,0.4 -0.49,0.62 -0.16,0.22 -0.31,0.45 -0.46,0.68 0,-0.31 0.05,-0.6 0.19,-0.9 z m -1.9,4.19 c 0.05,0.19 0.16,0.36 0.35,0.46 0.16,0.09 0.35,0.11 0.53,0.08 0.17,0.13 0.33,0.27 0.46,0.45 0.04,0.05 0.06,0.11 0.09,0.16 -0.76,0.72 -1.54,1.44 -2.41,2.04 -0.99,0.69 -2.07,1.26 -3.18,1.76 -0.08,-0.25 -0.17,-0.5 -0.25,-0.76 -0.03,-0.1 -0.06,-0.2 -0.1,-0.3 0.18,-0.11 0.38,-0.21 0.54,-0.35 0.73,-0.62 1.05,-1.67 0.5,-2.52 -0.52,-0.81 -1.44,-1.11 -2.35,-1.2 -0.18,-0.56 -0.36,-1.13 -0.54,-1.69 1.09,0.22 2.18,0.46 3.24,0.77 1.04,0.3 2.13,0.62 3.12,1.1 z m -7.03,-3.93 c -0.37,-1.14 -0.73,-2.28 -1.1,-3.42 0.15,-0.01 0.31,-0.01 0.46,-0.01 0.23,-0.01 0.45,-0.03 0.68,-0.05 0.12,-0.01 0.24,-0.02 0.37,-0.03 0.02,0 0.04,0 0.06,-0.01 0.02,0.27 0.04,0.55 0.06,0.82 0.05,0.74 0.14,1.58 -0.2,2.27 -0.08,0.16 -0.2,0.31 -0.33,0.43 z m -0.75,-7.84 c 0.12,0.15 0.3,0.26 0.51,0.23 0.18,-0.02 0.36,-0.07 0.5,-0.16 -0.04,0.29 -0.07,0.58 -0.06,0.88 0.02,0.44 0.07,0.87 0.11,1.31 0.01,0.15 0.02,0.29 0.03,0.44 -0.12,0.01 -0.24,0.03 -0.36,0.04 -0.28,0.03 -0.56,0.06 -0.84,0.11 -0.22,0.04 -0.44,0.08 -0.66,0.12 -0.02,0 -0.03,0.01 -0.05,0.01 -0.22,-0.68 -0.44,-1.36 -0.65,-2.03 0.05,-0.33 0.07,-0.67 0.07,-1.02 0.47,0.03 0.93,0.07 1.4,0.07 z m 3.1,13.7 c 0,0.03 0,0.06 0,0.09 0,0.01 0,0.01 -0.01,0.02 -0.04,0.14 -0.16,0.27 -0.3,0.39 -0.12,-0.36 -0.23,-0.72 -0.35,-1.08 0.13,0.05 0.26,0.08 0.37,0.15 -0.04,-0.03 0.13,0.11 0.16,0.15 0.06,0.06 0.06,0.06 0.11,0.17 -0.05,-0.1 0.01,0.14 0.02,0.11 z m 0.41,-22.16 c 0,0.36 0.02,0.72 0.03,1.03 0.01,0.77 0.02,1.54 0.03,2.3 0.02,0.77 0.03,1.54 0.05,2.3 0.01,0.36 0,0.73 0.02,1.09 -0.11,0.01 -0.23,0.02 -0.33,0.03 -0.57,0.02 -1.13,0.05 -1.7,0.07 -0.15,0.01 -0.31,0.02 -0.46,0.02 -0.04,-1.1 -0.09,-2.2 -0.15,-3.3 -0.03,-0.73 -0.07,-1.45 -0.1,-2.18 -0.02,-0.43 -0.02,-0.92 -0.08,-1.39 0.07,0 0.13,0 0.2,0 0.83,0.03 1.66,0.03 2.49,0.03 z m -3.95,-0.04 c 0,0.16 0,0.33 0,0.48 0,0.34 0,0.67 0.01,1.01 0.02,0.73 0.05,1.45 0.07,2.18 0.04,1.1 0.08,2.19 0.12,3.29 -0.41,0.03 -0.82,0.09 -1.22,0.14 -0.03,-0.38 -0.06,-0.77 -0.08,-1.13 -0.06,-1.32 -0.11,-2.65 -0.18,-3.97 -0.04,-0.7 -0.07,-1.4 -0.11,-2.1 0.46,0.06 0.93,0.09 1.39,0.1 z M 631.05,345 c 0.45,0.01 0.91,0.02 1.36,-0.02 -0.06,0.47 -0.05,0.96 -0.05,1.44 0.01,0.64 0.03,1.28 0.06,1.92 0.05,1.32 0.1,2.65 0.15,3.97 0.03,0.72 0.06,1.44 0.09,2.16 -0.41,-1.28 -0.82,-2.55 -1.23,-3.82 -0.6,-1.89 -1.21,-3.78 -1.81,-5.67 0.48,0.01 0.95,0.01 1.43,0.02 z m -0.55,9.28 c 2.55,8.05 5.13,16.09 7.75,24.12 2.18,6.68 4.42,13.34 6.63,20.01 -0.66,-0.02 -1.33,0.02 -1.98,0.02 -1.03,0 -2.07,0 -3.1,0.04 -1.98,0.07 -3.96,0.2 -5.94,0.37 -2.02,0.17 -4.03,0.38 -6.03,0.63 -0.98,0.12 -1.97,0.21 -2.95,0.34 0,0 0,0 0,0 0.24,-0.25 0.47,-0.5 0.7,-0.75 0.03,0.01 0.04,0.03 0.08,0.03 1.59,-0.08 3.19,-0.17 4.78,-0.27 0.78,-0.05 1.55,-0.11 2.33,-0.16 0.4,-0.03 0.8,-0.05 1.2,-0.08 0.39,-0.03 0.82,-0.01 1.19,-0.14 0.17,-0.06 0.21,-0.34 0,-0.38 -0.37,-0.07 -0.76,-0.01 -1.13,0.01 l -1.2,0.08 c -0.8,0.06 -1.59,0.11 -2.39,0.17 -1.5,0.11 -3,0.23 -4.5,0.37 0.52,-0.58 1.02,-1.18 1.5,-1.8 0.01,0 0.01,0.01 0.02,0.01 0.23,0.04 0.47,0.02 0.7,0.02 0.21,0 0.43,-0.01 0.64,-0.02 0.21,-0.01 0.43,-0.03 0.64,-0.05 0.21,-0.02 0.47,-0.02 0.66,-0.14 0.08,-0.05 0.09,-0.18 0,-0.22 -0.2,-0.1 -0.44,-0.09 -0.66,-0.09 -0.21,0 -0.43,0 -0.64,0 -0.21,0.01 -0.43,0.02 -0.64,0.03 -0.13,0.01 -0.26,0.02 -0.39,0.03 1.01,-1.33 1.92,-2.75 2.61,-4.28 0.74,-1.65 1.22,-3.4 1.34,-5.2 0.15,-2.14 -0.17,-4.25 -0.63,-6.33 -0.95,-4.29 -2.22,-8.52 -3.36,-12.76 -1.14,-4.24 -2.28,-8.47 -3.43,-12.7 -2.31,-8.5 -4.68,-16.98 -7.11,-25.45 -2.42,-8.43 -4.85,-16.85 -7.24,-25.28 -2.41,-8.47 -4.81,-16.95 -7.32,-25.4 -0.14,-0.47 -0.57,-0.56 -0.92,-0.41 -2.22,-0.3 -4.45,-0.52 -6.69,-0.48 -1.12,0.02 -2.24,0.09 -3.35,0.22 -0.92,0.11 -1.99,0.17 -2.88,0.5 -0.32,-0.04 -0.64,0.1 -0.73,0.51 -1.94,8.59 -3.77,17.21 -5.6,25.83 -1.82,8.58 -3.68,17.14 -5.53,25.71 -1.86,8.61 -3.65,17.23 -5.38,25.87 -0.86,4.3 -1.72,8.6 -2.57,12.9 -0.85,4.31 -1.83,8.61 -2.49,12.95 -0.32,2.11 -0.5,4.24 -0.2,6.36 0.23,1.7 0.79,3.33 1.57,4.85 0.02,0.18 0.1,0.34 0.25,0.45 1.48,2.69 3.62,4.97 5.88,7.04 0,0 0,0 0,0 -0.99,-0.06 -1.98,-0.08 -2.97,-0.14 -2.02,-0.11 -4.04,-0.19 -6.06,-0.22 -1.98,-0.03 -3.97,-0.04 -5.95,0.03 -1.03,0.04 -2.06,0.11 -3.09,0.17 -0.65,0.04 -1.32,0.07 -1.98,0.13 1.76,-6.81 3.54,-13.61 5.27,-20.43 2.08,-8.18 4.11,-16.38 6.11,-24.58 2,-8.21 3.83,-16.45 5.76,-24.68 1.92,-8.22 3.81,-16.45 5.65,-24.69 1.85,-8.24 3.64,-16.5 5.34,-24.77 0.1,-0.47 0.18,-0.93 0.27,-1.4 0.39,-0.16 0.71,-0.64 0.54,-1.06 -0.07,-0.18 -0.16,-0.35 -0.23,-0.52 0.01,-0.03 0.01,-0.06 0.02,-0.08 0.07,-0.36 -0.13,-0.62 -0.38,-0.74 -0.4,-0.88 -0.82,-1.75 -1.28,-2.59 0,0 0,0 0,0 -0.06,-0.11 -0.12,-0.23 -0.18,-0.34 0.42,0.02 0.84,0.04 1.26,0.06 0.23,0.01 0.45,0.02 0.68,0.03 0.22,0.01 0.44,0.04 0.66,0 0.12,-0.02 0.1,-0.19 0,-0.22 -0.21,-0.06 -0.44,-0.05 -0.66,-0.06 -0.23,-0.01 -0.45,-0.02 -0.68,-0.03 -0.45,-0.02 -0.9,-0.04 -1.36,-0.06 -0.02,0 -0.03,0.01 -0.05,0.02 -0.38,-0.67 -0.78,-1.32 -1.21,-1.95 -0.15,-0.23 -0.32,-0.48 -0.49,-0.72 1.49,0.15 2.99,0.24 4.46,0.33 2.49,0.15 4.98,0.25 7.48,0.3 4.99,0.09 9.98,-0.02 14.96,-0.34 1.42,-0.09 2.84,-0.2 4.26,-0.33 0.68,-0.06 1.39,-0.09 2.1,-0.15 -0.59,0.54 -1.14,1.13 -1.64,1.8 -0.81,1.07 -1.45,2.25 -2.01,3.46 -0.35,0.07 -0.67,0.4 -0.56,0.85 0.04,0.14 0.08,0.28 0.11,0.42 0,0.16 0.04,0.3 0.12,0.44 0.19,0.72 0.38,1.44 0.58,2.16 2.26,8.14 4.6,16.26 7,24.35 2.4,8.1 4.83,16.18 7.3,24.26 2.43,8.06 4.81,16.16 7.36,24.21 z m 26.55,-94.49 c -1.21,7.24 -3.66,14.24 -7.19,20.67 -3.52,6.43 -8.05,12.3 -13.43,17.29 -5.23,4.85 -11.27,8.81 -17.81,11.66 -0.11,-0.37 -0.22,-0.73 -0.33,-1.1 1.03,-0.46 2.05,-0.92 3.07,-1.41 l 1.83,-0.87 c 0.32,-0.15 0.65,-0.31 0.97,-0.46 0.29,-0.15 0.63,-0.28 0.85,-0.52 0.11,-0.12 0.04,-0.36 -0.14,-0.34 -0.32,0.03 -0.61,0.18 -0.89,0.32 -0.3,0.14 -0.61,0.29 -0.91,0.44 -0.64,0.32 -1.28,0.63 -1.92,0.95 -1,0.49 -1.98,1 -2.97,1.52 -0.11,-0.37 -0.22,-0.74 -0.33,-1.11 0.53,-0.22 1.05,-0.44 1.58,-0.68 0.44,-0.2 0.89,-0.39 1.33,-0.59 0.42,-0.19 0.9,-0.4 1.23,-0.71 0.07,-0.07 0.02,-0.22 -0.09,-0.21 -0.43,0.04 -0.87,0.24 -1.27,0.41 -0.46,0.2 -0.91,0.41 -1.37,0.62 -0.52,0.24 -1.03,0.48 -1.54,0.73 -0.03,-0.09 -0.05,-0.17 -0.08,-0.26 2.97,-1.29 5.84,-2.81 8.55,-4.58 5.8,-3.78 10.93,-8.58 15.15,-14.07 4.26,-5.55 7.6,-11.77 9.84,-18.41 2.23,-6.62 3.33,-13.61 3.15,-20.6 -0.04,-1.68 -0.17,-3.35 -0.35,-5.01 0.19,-0.08 0.38,-0.16 0.56,-0.24 0.01,0.06 0.02,0.12 0.03,0.18 0.08,0.51 0.15,1.03 0.21,1.55 0.12,1.02 0.2,2.05 0.23,3.08 0.04,1.03 0.07,2.06 0.03,3.08 -0.01,0.27 -0.02,0.54 -0.02,0.81 0,0.26 0.04,0.53 0,0.78 -0.05,0.26 -0.13,0.52 -0.17,0.79 -0.04,0.25 -0.05,0.5 -0.07,0.75 -0.02,0.21 0.34,0.27 0.38,0.05 0.04,-0.25 0.09,-0.49 0.11,-0.74 0.02,-0.27 -0.01,-0.54 -0.01,-0.81 0,-0.29 0.09,-0.59 0.13,-0.88 0.03,-0.21 0.05,-0.42 0.06,-0.63 0.06,-1.07 0.11,-2.13 0.06,-3.2 -0.04,-1.05 -0.12,-2.09 -0.25,-3.13 -0.06,-0.5 -0.13,-1.01 -0.21,-1.51 -0.02,-0.12 -0.04,-0.24 -0.06,-0.36 0.08,-0.03 0.16,-0.07 0.24,-0.1 0.28,-0.12 0.56,-0.24 0.84,-0.36 0.05,1.05 0.09,2.11 0.15,3.16 0.05,0.9 0.1,1.79 0.15,2.69 0.05,0.89 0.05,1.8 0.26,2.67 0.04,0.17 0.26,0.11 0.28,-0.04 0.1,-0.89 0,-1.8 -0.06,-2.69 -0.05,-0.9 -0.11,-1.79 -0.16,-2.69 -0.07,-1.09 -0.15,-2.18 -0.23,-3.27 0.3,-0.13 0.59,-0.25 0.89,-0.38 0.74,5.89 0.68,11.89 -0.3,17.76 z m 17.69,-27.3 c -0.04,-0.39 -0.09,-0.78 -0.14,-1.16 -0.12,-0.9 -0.3,-1.8 -0.52,-2.69 -0.45,-1.75 -1.13,-3.42 -1.98,-5.01 -0.07,-0.13 -0.27,-0.01 -0.2,0.12 0.78,1.59 1.37,3.28 1.81,5 0.21,0.85 0.38,1.71 0.5,2.58 0.06,0.43 0.11,0.87 0.14,1.31 0,0.01 0,0.02 0,0.03 -0.65,0.28 -1.31,0.56 -1.96,0.83 -0.02,-0.37 -0.05,-0.73 -0.08,-1.09 -0.08,-0.91 -0.19,-1.81 -0.35,-2.71 -0.33,-1.82 -0.85,-3.62 -1.58,-5.33 -0.42,-0.99 -0.91,-1.95 -1.45,-2.88 -0.08,-0.14 -0.29,-0.01 -0.21,0.13 1.11,2.08 1.97,4.31 2.52,6.6 0.27,1.14 0.47,2.29 0.59,3.46 0.06,0.59 0.09,1.18 0.11,1.78 0,0.08 0,0.15 0,0.23 -0.66,0.28 -1.32,0.56 -1.98,0.84 -0.03,-1.23 -0.2,-2.46 -0.47,-3.64 -0.47,-2.05 -1.32,-3.99 -2.47,-5.74 -0.09,-0.14 -0.32,-0.01 -0.23,0.14 1.06,1.75 1.8,3.68 2.24,5.67 0.28,1.26 0.39,2.53 0.4,3.8 -0.65,0.28 -1.3,0.55 -1.95,0.83 0,-0.31 -0.01,-0.62 -0.03,-0.93 -0.05,-0.92 -0.16,-1.83 -0.31,-2.74 -0.3,-1.83 -0.82,-3.62 -1.54,-5.32 -0.42,-0.98 -0.9,-1.92 -1.45,-2.84 -0.08,-0.14 -0.29,-0.01 -0.21,0.12 1.12,2.04 1.95,4.25 2.47,6.52 0.26,1.13 0.44,2.27 0.53,3.42 0.04,0.59 0.07,1.17 0.07,1.76 0,0.07 -0.01,0.13 -0.01,0.2 -0.44,0.19 -0.89,0.38 -1.34,0.57 -0.03,-0.33 -0.07,-0.65 -0.11,-0.97 -0.12,-0.91 -0.3,-1.81 -0.53,-2.69 -0.47,-1.78 -1.18,-3.45 -2.09,-5.04 -0.06,-0.11 -0.22,-0.01 -0.16,0.1 0.84,1.59 1.47,3.3 1.91,5.04 0.22,0.87 0.38,1.76 0.48,2.65 0.04,0.37 0.06,0.73 0.08,1.1 -0.4,0.17 -0.8,0.34 -1.2,0.51 0,-0.47 -0.06,-0.96 -0.11,-1.39 -0.08,-0.7 -0.19,-1.39 -0.37,-2.08 -0.36,-1.4 -0.91,-2.75 -1.61,-4.01 -0.07,-0.13 -0.26,-0.01 -0.19,0.11 0.69,1.25 1.19,2.58 1.51,3.98 0.16,0.69 0.28,1.4 0.35,2.1 0.03,0.33 0.05,0.67 0.07,1 0,0.14 0,0.29 0.01,0.43 -0.41,0.18 -0.83,0.35 -1.24,0.53 -0.55,-4.02 -1.94,-7.96 -3.92,-11.49 -0.09,-0.15 -0.32,-0.02 -0.24,0.14 1.96,3.6 3.16,7.48 3.78,11.51 -0.35,0.15 -0.69,0.3 -1.04,0.44 0.01,-0.4 -0.04,-0.83 -0.08,-1.21 -0.06,-0.54 -0.14,-1.08 -0.25,-1.61 -0.23,-1.11 -0.58,-2.19 -1.01,-3.24 -0.05,-0.12 -0.24,-0.07 -0.19,0.05 0.4,1.02 0.7,2.07 0.9,3.15 0.1,0.54 0.18,1.09 0.23,1.64 0.04,0.43 0.03,0.9 0.08,1.34 -0.51,0.22 -1.02,0.43 -1.53,0.65 -0.04,-0.3 -0.09,-0.6 -0.14,-0.89 -0.08,-0.53 -0.18,-1.06 -0.29,-1.59 -0.21,-1.01 -0.47,-2.02 -0.78,-3.01 -0.62,-2 -1.44,-3.92 -2.44,-5.76 -0.08,-0.15 -0.3,-0.02 -0.22,0.13 0.94,1.85 1.71,3.79 2.31,5.78 0.29,0.98 0.54,1.96 0.74,2.96 0.1,0.49 0.19,0.98 0.27,1.47 0.06,0.35 0.09,0.71 0.14,1.07 -0.07,0.03 -0.15,0.06 -0.22,0.09 -0.4,0.17 -0.8,0.34 -1.19,0.51 -0.07,-0.51 -0.16,-1.01 -0.26,-1.5 -0.14,-0.73 -0.3,-1.46 -0.48,-2.18 -0.38,-1.44 -0.84,-2.86 -1.33,-4.26 -0.02,-0.05 -0.11,-0.03 -0.09,0.02 0.48,1.39 0.86,2.8 1.16,4.24 0.15,0.71 0.29,1.42 0.42,2.13 0.1,0.55 0.17,1.12 0.26,1.67 -0.24,0.1 -0.49,0.21 -0.73,0.31 0,-0.01 0,-0.03 0,-0.04 -0.02,-0.22 -0.36,-0.23 -0.35,0 0,0.06 0.01,0.12 0.01,0.19 -0.09,0.04 -0.19,0.08 -0.28,0.12 -0.07,-0.55 -0.16,-1.1 -0.27,-1.64 -0.22,-1.16 -0.51,-2.31 -0.87,-3.44 -0.71,-2.26 -1.7,-4.43 -2.98,-6.42 -0.09,-0.14 -0.32,-0.01 -0.23,0.14 1.15,2.03 2.12,4.17 2.82,6.39 0.35,1.09 0.63,2.21 0.84,3.33 0.12,0.6 0.2,1.21 0.28,1.81 -0.55,0.23 -1.09,0.47 -1.64,0.7 -0.08,-0.42 -0.16,-0.83 -0.26,-1.25 -0.22,-0.98 -0.48,-1.96 -0.78,-2.92 -0.59,-1.9 -1.32,-3.77 -2.21,-5.56 -0.51,-1.02 -1.07,-2.02 -1.66,-2.99 -0.09,-0.15 -0.33,-0.01 -0.24,0.14 1.99,3.42 3.51,7.13 4.43,10.98 0.13,0.54 0.25,1.08 0.35,1.62 0.01,0.04 0.01,0.08 0.02,0.12 -0.67,0.28 -1.34,0.57 -2.01,0.85 -0.01,-0.04 -0.01,-0.09 -0.02,-0.13 -0.13,-0.74 -0.3,-1.48 -0.48,-2.21 -0.38,-1.49 -0.93,-2.92 -1.52,-4.34 -0.03,-0.07 -0.15,-0.04 -0.12,0.03 0.57,1.4 0.98,2.86 1.33,4.33 0.17,0.72 0.32,1.44 0.44,2.17 0.02,0.1 0.03,0.2 0.04,0.29 -0.8,0.34 -1.61,0.68 -2.41,1.02 -0.03,-0.74 -0.09,-1.47 -0.19,-2.19 -0.15,-1.15 -0.37,-2.29 -0.66,-3.41 -0.6,-2.27 -1.53,-4.46 -2.73,-6.48 -0.11,-0.18 -0.38,-0.02 -0.28,0.16 1.16,2.01 2.04,4.17 2.63,6.42 0.3,1.12 0.52,2.26 0.66,3.41 0.09,0.75 0.13,1.51 0.15,2.26 -0.5,0.21 -1.01,0.43 -1.51,0.64 -0.28,-3.82 -1.44,-7.59 -3.16,-10.98 -0.08,-0.16 -0.31,-0.02 -0.24,0.14 0.86,1.89 1.54,3.88 2.06,5.88 0.43,1.7 0.69,3.42 0.88,5.16 -0.47,0.2 -0.94,0.4 -1.41,0.6 -0.53,-3.26 -1.42,-6.47 -2.71,-9.5 -0.45,-1.06 -0.95,-2.11 -1.49,-3.13 -0.09,-0.16 -0.33,-0.02 -0.25,0.15 1.79,3.53 3.11,7.3 3.88,11.19 0.09,0.48 0.16,0.96 0.23,1.44 -0.39,0.17 -0.78,0.33 -1.17,0.5 -0.01,-0.1 -0.02,-0.2 -0.03,-0.29 -0.07,-0.64 -0.18,-1.28 -0.32,-1.91 -0.28,-1.26 -0.7,-2.49 -1.23,-3.67 -0.08,-0.17 -0.33,-0.02 -0.26,0.15 0.51,1.16 0.9,2.37 1.17,3.6 0.13,0.62 0.23,1.25 0.3,1.88 0.01,0.13 0.02,0.26 0.02,0.39 -0.63,0.27 -1.25,0.53 -1.88,0.8 -0.08,-0.61 -0.17,-1.22 -0.28,-1.81 -0.21,-1.18 -0.5,-2.34 -0.87,-3.48 -0.72,-2.26 -1.74,-4.42 -3.02,-6.41 -0.1,-0.15 -0.33,-0.01 -0.24,0.14 1.23,1.99 2.21,4.13 2.92,6.36 0.35,1.1 0.63,2.23 0.84,3.37 0.1,0.57 0.19,1.15 0.26,1.72 0.01,0.08 0.01,0.17 0.02,0.26 -0.61,0.26 -1.21,0.52 -1.82,0.77 -0.18,-1.22 -0.43,-2.44 -0.76,-3.61 -0.58,-2.06 -1.38,-4.05 -2.37,-5.94 -0.08,-0.14 -0.29,-0.02 -0.22,0.13 0.94,1.89 1.68,3.88 2.21,5.92 0.32,1.22 0.52,2.46 0.69,3.7 -0.58,0.25 -1.16,0.49 -1.74,0.74 -0.01,-2.28 -0.59,-4.59 -1.64,-6.58 -0.06,-0.11 -0.23,-0.01 -0.17,0.1 0.62,1.22 1.07,2.52 1.33,3.86 0.17,0.91 0.21,1.83 0.19,2.74 -0.47,0.2 -0.94,0.4 -1.4,0.6 -0.08,-0.56 -0.18,-1.11 -0.29,-1.65 -0.2,-1.01 -0.44,-2.02 -0.72,-3.01 -0.56,-1.95 -1.31,-3.81 -2.19,-5.63 -0.06,-0.13 -0.26,-0.02 -0.2,0.12 0.86,1.81 1.54,3.73 2.08,5.66 0.26,0.94 0.49,1.88 0.67,2.84 0.12,0.61 0.2,1.22 0.29,1.83 -0.33,0.14 -0.66,0.28 -0.99,0.42 -0.18,-0.68 -0.38,-1.35 -0.57,-2.02 -0.29,-1.05 -0.58,-2.09 -0.87,-3.14 -0.05,-0.17 -0.32,-0.1 -0.27,0.07 0.28,1.05 0.57,2.1 0.85,3.15 0.19,0.68 0.36,1.38 0.55,2.07 -0.54,0.23 -1.09,0.46 -1.63,0.69 -0.04,-0.44 -0.08,-0.88 -0.15,-1.32 -0.15,-1.08 -0.36,-2.15 -0.65,-3.2 -0.56,-2.09 -1.39,-4.07 -2.45,-5.97 -0.06,-0.11 -0.23,-0.01 -0.17,0.1 1.01,1.87 1.77,3.9 2.3,5.95 0.27,1.04 0.47,2.1 0.61,3.16 0.06,0.48 0.1,0.95 0.14,1.43 -0.56,0.24 -1.11,0.47 -1.67,0.71 -0.46,-4 -1.79,-7.85 -3.84,-11.33 -0.05,-0.08 -0.18,-0.01 -0.13,0.08 1.99,3.48 3.2,7.41 3.63,11.4 -0.6,0.26 -1.21,0.51 -1.81,0.77 -0.03,-0.49 -0.07,-0.98 -0.14,-1.47 -0.13,-1.02 -0.35,-2.03 -0.65,-3.02 -0.6,-1.97 -1.55,-3.89 -2.7,-5.59 -0.04,-0.07 -0.15,0 -0.11,0.06 1.16,1.71 1.98,3.56 2.53,5.55 0.27,0.98 0.48,1.98 0.61,3 0.06,0.5 0.11,1.01 0.13,1.52 0,0.03 0,0.06 0,0.09 -0.53,0.23 -1.07,0.45 -1.6,0.68 -0.01,0 -0.02,0.01 -0.03,0.01 -0.03,-0.16 -0.05,-0.32 -0.08,-0.48 -0.1,-0.53 -0.21,-1.06 -0.35,-1.59 -0.27,-1.06 -0.67,-2.06 -1.08,-3.08 -0.04,-0.11 -0.22,-0.06 -0.17,0.05 0.4,0.99 0.67,2.03 0.92,3.06 0.12,0.51 0.23,1.02 0.33,1.54 0.04,0.22 0.07,0.43 0.1,0.65 -0.43,0.18 -0.86,0.37 -1.29,0.55 -0.08,-0.46 -0.16,-0.91 -0.26,-1.37 -0.22,-1.01 -0.49,-2.02 -0.8,-3 -0.63,-1.99 -1.46,-3.91 -2.45,-5.75 -0.08,-0.15 -0.3,-0.02 -0.22,0.13 0.97,1.84 1.76,3.77 2.35,5.76 0.29,0.97 0.54,1.96 0.74,2.96 0.1,0.47 0.18,0.95 0.26,1.43 -0.5,0.21 -1.01,0.43 -1.51,0.64 -0.01,-0.1 -0.02,-0.19 -0.03,-0.29 -0.04,-0.35 -0.09,-0.7 -0.15,-1.05 -0.13,-0.76 -0.31,-1.5 -0.53,-2.24 -0.44,-1.43 -1.08,-2.77 -1.85,-4.05 -0.07,-0.11 -0.25,-0.01 -0.18,0.11 0.75,1.27 1.33,2.66 1.75,4.08 0.2,0.68 0.36,1.38 0.47,2.08 0.06,0.39 0.12,0.78 0.15,1.18 0.01,0.11 0.02,0.22 0.03,0.33 -0.63,0.27 -1.25,0.53 -1.88,0.8 -0.05,-0.65 -0.13,-1.3 -0.23,-1.94 -0.17,-1.09 -0.41,-2.18 -0.71,-3.24 -0.29,-1.04 -0.65,-2.07 -1.08,-3.06 -0.45,-1.04 -0.99,-2.01 -1.56,-2.99 -0.05,-0.08 -0.16,-0.01 -0.12,0.07 1.06,1.89 1.87,3.98 2.44,6.07 0.28,1.03 0.5,2.08 0.65,3.14 0.1,0.71 0.15,1.42 0.19,2.13 -0.37,0.16 -0.74,0.31 -1.11,0.47 -0.04,-0.41 -0.09,-0.82 -0.14,-1.23 -0.11,-0.79 -0.25,-1.58 -0.43,-2.36 -0.36,-1.54 -0.9,-3.01 -1.57,-4.44 -0.04,-0.08 -0.18,-0.02 -0.14,0.06 0.59,1.42 1.05,2.91 1.39,4.41 0.17,0.77 0.31,1.54 0.41,2.32 0.06,0.47 0.09,0.93 0.11,1.4 -0.22,0.09 -0.43,0.18 -0.65,0.28 0,-0.03 -0.01,-0.06 -0.01,-0.09 -0.07,-0.49 -0.16,-0.97 -0.25,-1.46 -0.19,-0.97 -0.44,-1.93 -0.71,-2.88 -0.08,-0.28 -0.17,-0.55 -0.26,-0.82 -0.01,-0.14 0,-0.27 -0.01,-0.41 -0.05,-1.19 -0.09,-2.39 -0.18,-3.58 -0.08,-1.04 -0.05,-2.25 -0.46,-3.22 0.05,-0.12 0.08,-0.25 0.08,-0.38 0,-0.6 -0.45,-0.95 -0.99,-1.01 -0.18,-0.02 -0.36,-0.04 -0.55,-0.06 -0.16,-0.3 -0.32,-0.59 -0.48,-0.88 -0.06,-0.11 -0.23,-0.01 -0.17,0.1 0.11,0.24 0.21,0.49 0.3,0.74 -9.76,-1.06 -19.68,-1.37 -29.46,-0.59 -1.39,0.11 -2.78,0.24 -4.17,0.38 -0.57,0.06 -1.13,0.12 -1.7,0.18 0.02,-0.02 0.04,-0.02 0.05,-0.05 0.01,-0.12 0.02,-0.22 0,-0.34 -0.01,-0.1 -0.03,-0.2 -0.04,-0.3 -0.03,-0.21 -0.07,-0.43 -0.11,-0.64 -0.02,-0.11 -0.04,-0.23 -0.06,-0.34 0.3,-0.12 0.6,-0.24 0.9,-0.36 0.01,0.05 0.01,0.11 0.02,0.16 0.02,0.17 0.06,0.34 0.09,0.5 0.02,0.08 0.03,0.17 0.05,0.25 0.02,0.09 0.03,0.19 0.09,0.27 0.09,0.12 0.25,0.1 0.3,-0.04 0.06,-0.15 0,-0.35 -0.02,-0.51 -0.02,-0.18 -0.04,-0.37 -0.07,-0.55 -0.01,-0.08 -0.03,-0.17 -0.04,-0.25 0.59,-0.24 1.17,-0.48 1.76,-0.71 0.04,0.22 0.09,0.44 0.13,0.66 0.06,0.31 0.1,0.63 0.25,0.91 0.06,0.1 0.19,0.04 0.2,-0.05 0.04,-0.31 -0.05,-0.64 -0.12,-0.94 -0.05,-0.23 -0.09,-0.47 -0.14,-0.7 0.61,-0.25 1.22,-0.49 1.82,-0.74 0.04,0.14 0.07,0.27 0.11,0.41 0.02,0.07 0.04,0.14 0.06,0.21 0.02,0.09 0.06,0.16 0.09,0.24 0.05,0.14 0.09,0.3 0.17,0.43 0.04,0.07 0.15,0.04 0.15,-0.04 0,-0.15 -0.04,-0.31 -0.07,-0.46 -0.02,-0.08 -0.02,-0.16 -0.04,-0.24 -0.02,-0.08 -0.04,-0.15 -0.06,-0.23 -0.04,-0.15 -0.08,-0.29 -0.12,-0.44 0.68,-0.28 1.36,-0.55 2.04,-0.83 l 0.09,0.34 c 0.05,0.2 0.11,0.39 0.16,0.59 0.03,0.1 0.05,0.2 0.09,0.29 0.04,0.1 0.06,0.21 0.14,0.28 0.08,0.07 0.2,0.04 0.23,-0.06 0.03,-0.1 0,-0.21 -0.02,-0.31 -0.02,-0.09 -0.04,-0.18 -0.07,-0.27 -0.06,-0.2 -0.11,-0.41 -0.17,-0.61 -0.04,-0.13 -0.07,-0.26 -0.11,-0.39 0.48,-0.2 0.96,-0.39 1.44,-0.59 0.03,0.07 0.06,0.15 0.08,0.22 0.07,0.2 0.15,0.4 0.28,0.57 0.05,0.06 0.15,0.01 0.15,-0.06 -0.01,-0.2 -0.08,-0.4 -0.15,-0.59 -0.03,-0.08 -0.06,-0.16 -0.09,-0.24 0.35,-0.14 0.7,-0.28 1.05,-0.43 0.18,0.27 0.37,0.55 0.55,0.82 0.1,0.15 0.2,0.29 0.32,0.43 0.11,0.13 0.21,0.26 0.36,0.34 0.09,0.05 0.17,-0.03 0.16,-0.12 -0.02,-0.17 -0.12,-0.32 -0.2,-0.47 -0.08,-0.15 -0.17,-0.28 -0.27,-0.41 -0.18,-0.25 -0.36,-0.5 -0.54,-0.74 2.09,-0.85 4.17,-1.71 6.26,-2.56 0.14,0.22 0.29,0.43 0.43,0.65 0.08,0.12 0.16,0.24 0.24,0.36 0.08,0.12 0.16,0.26 0.28,0.34 0.09,0.06 0.18,-0.04 0.16,-0.13 -0.01,-0.08 -0.05,-0.14 -0.09,-0.2 -0.04,-0.06 -0.08,-0.13 -0.12,-0.19 -0.08,-0.11 -0.15,-0.23 -0.23,-0.34 -0.13,-0.2 -0.27,-0.4 -0.4,-0.6 0.33,-0.14 0.67,-0.28 1,-0.41 0.01,0 0.02,0 0.02,0 0.06,0.01 0.11,0.03 0.17,0.05 0.01,0.01 0.03,0.01 0.04,0.02 0,0 0,0 0,0 0,0 0,0 0,0 0.03,0.01 0.05,0.02 0.08,0.04 0.05,0.03 0.1,0.06 0.15,0.09 0.01,0.01 0.05,0.03 0.01,0 0.01,0.01 0.02,0.02 0.03,0.02 0.02,0.02 0.04,0.04 0.06,0.05 0.05,0.04 0.09,0.08 0.13,0.13 0.02,0.02 0.04,0.04 0.06,0.06 0.01,0.01 0.02,0.02 0.02,0.03 0,0 0,0 0,0 0,0 0,0.01 0.01,0.01 0.04,0.05 0.07,0.1 0.1,0.16 0.03,0.05 0.1,0.1 0.16,0.09 0.04,0 0.08,-0.01 0.11,-0.04 0.01,-0.01 0.02,-0.01 0.02,-0.02 0.05,-0.04 0.07,-0.12 0.05,-0.18 -0.1,-0.28 -0.28,-0.52 -0.54,-0.68 -0.04,-0.03 -0.09,-0.04 -0.14,-0.06 0.4,-0.16 0.8,-0.33 1.19,-0.49 0.09,0.14 0.18,0.28 0.28,0.43 0.08,0.12 0.15,0.24 0.25,0.34 0.1,0.11 0.17,0.23 0.29,0.33 0.08,0.07 0.23,0 0.19,-0.11 -0.05,-0.14 -0.13,-0.26 -0.19,-0.4 -0.03,-0.06 -0.05,-0.12 -0.09,-0.17 -0.04,-0.06 -0.08,-0.12 -0.12,-0.18 -0.09,-0.13 -0.17,-0.25 -0.26,-0.38 0.66,-0.27 1.32,-0.55 1.99,-0.82 0.22,0.18 0.44,0.36 0.66,0.55 0.15,0.12 0.29,0.26 0.45,0.36 0.16,0.1 0.31,0.24 0.49,0.32 0.09,0.04 0.22,-0.06 0.15,-0.15 -0.12,-0.15 -0.27,-0.27 -0.41,-0.41 -0.13,-0.14 -0.29,-0.25 -0.44,-0.37 -0.18,-0.15 -0.37,-0.3 -0.55,-0.45 0.82,-0.34 1.63,-0.67 2.45,-1.01 0.01,0.02 0.01,0.04 0.03,0.05 0.26,0.16 0.49,0.37 0.68,0.61 0.09,0.11 0.18,0.23 0.26,0.35 0.04,0.06 0.08,0.13 0.12,0.19 0.04,0.08 0.1,0.13 0.15,0.2 0.08,0.12 0.25,0.04 0.22,-0.09 -0.01,-0.09 -0.01,-0.17 -0.05,-0.25 -0.03,-0.08 -0.07,-0.17 -0.11,-0.25 -0.08,-0.16 -0.18,-0.3 -0.29,-0.44 -0.18,-0.21 -0.41,-0.38 -0.64,-0.53 2.27,-0.94 4.55,-1.88 6.82,-2.83 0.01,0.03 0.02,0.06 0.06,0.09 0.83,0.55 1.55,1.26 2.11,2.07 0.27,0.39 0.51,0.8 0.7,1.23 0.1,0.23 0.2,0.46 0.28,0.7 0.07,0.22 0.12,0.46 0.24,0.66 0.06,0.11 0.23,0.06 0.23,-0.06 0.02,-0.46 -0.24,-0.98 -0.42,-1.39 -0.21,-0.49 -0.48,-0.95 -0.79,-1.39 -0.57,-0.81 -1.3,-1.49 -2.13,-2.03 2.51,-1.05 5.02,-2.1 7.53,-3.15 0.81,0.54 1.54,1.2 2.1,1.99 0.29,0.42 0.55,0.86 0.76,1.33 0.23,0.51 0.36,1.06 0.57,1.58 0.03,0.09 0.18,0.09 0.17,-0.02 -0.01,-0.53 -0.2,-1.05 -0.41,-1.54 -0.23,-0.54 -0.52,-1.06 -0.87,-1.54 -0.56,-0.77 -1.28,-1.4 -2.07,-1.91 0.57,-0.24 1.13,-0.47 1.7,-0.71 0.01,0.05 0.04,0.09 0.09,0.13 0.48,0.32 0.93,0.68 1.3,1.12 0.18,0.21 0.34,0.45 0.48,0.69 0.07,0.12 0.14,0.25 0.21,0.37 0.07,0.13 0.12,0.28 0.23,0.38 0.12,0.1 0.28,0.03 0.3,-0.12 0.02,-0.15 -0.06,-0.3 -0.11,-0.43 -0.06,-0.15 -0.13,-0.3 -0.22,-0.44 -0.16,-0.27 -0.34,-0.53 -0.55,-0.76 -0.38,-0.45 -0.84,-0.83 -1.37,-1.09 1.26,-0.53 2.52,-1.05 3.78,-1.58 0.23,0.05 0.46,0.09 0.67,0.18 0.15,0.06 0.3,0.14 0.44,0.22 0.07,0.04 0.15,0.07 0.22,0.1 0.08,0.04 0.15,0.08 0.24,0.11 0.09,0.03 0.17,-0.08 0.12,-0.16 -0.05,-0.07 -0.11,-0.13 -0.18,-0.19 -0.07,-0.06 -0.14,-0.13 -0.23,-0.18 -0.16,-0.09 -0.33,-0.17 -0.5,-0.24 -0.09,-0.03 -0.19,-0.04 -0.28,-0.07 0.79,-0.33 1.57,-0.67 2.35,-1 0.26,0.09 0.5,0.2 0.73,0.35 0.18,0.12 0.34,0.27 0.49,0.42 0.08,0.08 0.16,0.15 0.23,0.23 0.08,0.08 0.14,0.17 0.22,0.25 0.08,0.08 0.21,0 0.18,-0.11 -0.06,-0.23 -0.21,-0.46 -0.37,-0.63 -0.16,-0.18 -0.35,-0.33 -0.55,-0.47 -0.15,-0.1 -0.31,-0.17 -0.47,-0.25 0.2,-0.08 0.39,-0.17 0.59,-0.25 0.01,0.02 0.01,0.03 0.03,0.05 0.43,0.34 0.89,0.66 1.31,1.02 0.21,0.18 0.41,0.35 0.6,0.54 0.1,0.1 0.21,0.19 0.31,0.29 0.09,0.09 0.2,0.19 0.31,0.25 0.05,0.03 0.13,-0.02 0.11,-0.09 -0.04,-0.12 -0.11,-0.25 -0.19,-0.35 -0.08,-0.11 -0.16,-0.23 -0.25,-0.34 -0.19,-0.22 -0.38,-0.43 -0.58,-0.62 -0.37,-0.35 -0.79,-0.67 -1.24,-0.92 0.82,-0.35 1.64,-0.69 2.46,-1.04 0.24,0.19 0.48,0.39 0.73,0.57 0.19,0.15 0.38,0.29 0.57,0.44 0.19,0.15 0.39,0.27 0.6,0.4 0.12,0.08 0.26,-0.1 0.15,-0.2 -0.18,-0.16 -0.35,-0.33 -0.54,-0.47 -0.19,-0.15 -0.38,-0.29 -0.57,-0.44 -0.2,-0.15 -0.4,-0.3 -0.6,-0.44 0.89,-0.38 1.79,-0.76 2.68,-1.14 0.07,0.08 0.14,0.17 0.21,0.25 0.13,0.14 0.25,0.29 0.39,0.43 0.13,0.14 0.28,0.31 0.46,0.38 0.11,0.04 0.23,-0.09 0.2,-0.2 -0.03,-0.11 -0.1,-0.19 -0.18,-0.27 -0.06,-0.07 -0.12,-0.14 -0.18,-0.21 -0.13,-0.14 -0.27,-0.27 -0.4,-0.41 -0.04,-0.04 -0.08,-0.08 -0.12,-0.12 0.45,-0.19 0.9,-0.38 1.35,-0.57 0.25,0.17 0.49,0.35 0.75,0.52 0.16,0.11 0.33,0.21 0.49,0.31 0.09,0.05 0.18,0.1 0.27,0.14 0.09,0.05 0.18,0.1 0.28,0.12 0.1,0.02 0.23,-0.1 0.15,-0.2 -0.07,-0.09 -0.15,-0.14 -0.23,-0.21 -0.08,-0.06 -0.15,-0.12 -0.23,-0.17 -0.17,-0.11 -0.34,-0.22 -0.52,-0.33 -0.19,-0.12 -0.39,-0.22 -0.59,-0.34 0.76,-0.32 1.51,-0.64 2.27,-0.96 -0.01,0.05 -0.01,0.11 0.03,0.15 0.24,0.2 0.48,0.39 0.72,0.59 0.12,0.1 0.24,0.2 0.36,0.29 0.13,0.1 0.25,0.22 0.4,0.27 0.12,0.04 0.21,-0.1 0.16,-0.21 -0.08,-0.14 -0.22,-0.23 -0.34,-0.32 -0.12,-0.1 -0.23,-0.19 -0.35,-0.28 -0.24,-0.19 -0.48,-0.38 -0.72,-0.57 -0.01,-0.01 -0.02,-0.01 -0.04,-0.01 0.72,-0.3 1.43,-0.61 2.15,-0.91 0.82,-0.35 1.64,-0.71 2.46,-1.06 0.24,0.29 0.49,0.58 0.74,0.86 0.33,0.38 0.64,0.75 1.02,1.08 0.12,0.1 0.33,-0.04 0.23,-0.18 -0.29,-0.41 -0.63,-0.78 -0.97,-1.15 -0.23,-0.25 -0.47,-0.5 -0.7,-0.75 0.52,-0.22 1.05,-0.45 1.57,-0.68 0.66,0.54 1.26,1.12 1.85,1.74 0.33,0.34 0.64,0.7 0.92,1.08 0.27,0.36 0.51,0.74 0.79,1.09 0.04,0.04 0.12,0 0.1,-0.06 -0.35,-0.85 -0.97,-1.63 -1.54,-2.33 -0.51,-0.63 -1.13,-1.17 -1.77,-1.68 0.62,-0.26 1.23,-0.53 1.85,-0.79 0.2,0.13 0.41,0.26 0.61,0.38 0.15,0.09 0.29,0.18 0.44,0.26 0.16,0.09 0.32,0.21 0.49,0.24 0.15,0.03 0.24,-0.13 0.14,-0.25 -0.11,-0.13 -0.29,-0.22 -0.44,-0.31 -0.15,-0.09 -0.3,-0.18 -0.45,-0.26 -0.13,-0.08 -0.27,-0.15 -0.41,-0.23 0.69,-0.3 1.39,-0.6 2.08,-0.9 0.27,0.11 0.54,0.22 0.8,0.37 0.4,0.23 0.76,0.5 1.09,0.82 0.32,0.32 0.59,0.67 0.82,1.05 0.12,0.2 0.23,0.4 0.31,0.61 0.09,0.22 0.13,0.45 0.23,0.66 0.06,0.13 0.26,0.06 0.26,-0.07 0.01,-0.24 -0.08,-0.48 -0.16,-0.7 -0.08,-0.23 -0.17,-0.46 -0.28,-0.68 -0.22,-0.44 -0.52,-0.85 -0.87,-1.2 -0.34,-0.35 -0.75,-0.66 -1.18,-0.9 -0.14,-0.08 -0.3,-0.14 -0.46,-0.21 0.65,-0.28 1.3,-0.56 1.95,-0.84 0.19,0.15 0.37,0.3 0.57,0.45 0.23,0.18 0.48,0.38 0.77,0.46 0.09,0.03 0.18,-0.08 0.13,-0.17 -0.17,-0.24 -0.43,-0.42 -0.67,-0.59 -0.15,-0.1 -0.3,-0.2 -0.45,-0.3 0.47,-0.2 0.94,-0.4 1.41,-0.61 0.24,0.24 0.49,0.47 0.73,0.71 0.15,0.15 0.31,0.28 0.46,0.43 0.15,0.14 0.33,0.32 0.53,0.38 0.08,0.02 0.18,-0.06 0.15,-0.15 -0.08,-0.2 -0.26,-0.36 -0.41,-0.5 -0.15,-0.14 -0.31,-0.29 -0.46,-0.42 -0.22,-0.19 -0.44,-0.39 -0.66,-0.58 1.44,-0.62 2.88,-1.23 4.31,-1.86 0.21,0.12 0.42,0.23 0.62,0.37 0.29,0.2 0.56,0.44 0.86,0.63 0.28,0.18 0.54,0.44 0.79,0.68 0.27,0.26 0.44,0.57 0.67,0.85 0.05,0.06 0.13,-0.02 0.1,-0.08 -0.14,-0.33 -0.39,-0.62 -0.59,-0.91 -0.1,-0.15 -0.21,-0.31 -0.32,-0.45 -0.12,-0.14 -0.25,-0.27 -0.37,-0.41 -0.22,-0.28 -0.55,-0.5 -0.85,-0.69 -0.12,-0.08 -0.26,-0.13 -0.39,-0.2 0.57,-0.24 1.13,-0.49 1.7,-0.74 0.22,0.22 0.44,0.44 0.67,0.65 0.15,0.14 0.3,0.28 0.46,0.41 0.08,0.07 0.16,0.14 0.25,0.2 0.09,0.07 0.17,0.15 0.29,0.15 0.08,0 0.18,-0.08 0.17,-0.16 -0.02,-0.13 -0.08,-0.19 -0.17,-0.28 -0.08,-0.07 -0.15,-0.15 -0.23,-0.22 -0.15,-0.14 -0.31,-0.27 -0.46,-0.41 -0.2,-0.17 -0.4,-0.34 -0.61,-0.5 0.51,-0.22 1.03,-0.44 1.54,-0.67 0.18,0.17 0.35,0.33 0.53,0.5 0.15,0.15 0.3,0.3 0.46,0.44 0.16,0.14 0.31,0.3 0.5,0.39 0.14,0.06 0.29,-0.07 0.21,-0.21 -0.1,-0.18 -0.28,-0.33 -0.43,-0.47 -0.15,-0.15 -0.31,-0.29 -0.47,-0.43 -0.14,-0.13 -0.28,-0.26 -0.42,-0.38 0.5,-0.22 1.01,-0.44 1.51,-0.65 0.28,0.22 0.56,0.43 0.85,0.65 0.16,0.12 0.31,0.24 0.48,0.34 0.09,0.05 0.18,0.1 0.27,0.15 0.09,0.05 0.17,0.11 0.28,0.14 0.11,0.03 0.21,-0.1 0.15,-0.19 -0.05,-0.08 -0.12,-0.14 -0.2,-0.21 -0.08,-0.07 -0.15,-0.14 -0.22,-0.22 -0.15,-0.14 -0.33,-0.27 -0.49,-0.39 -0.21,-0.16 -0.43,-0.31 -0.64,-0.46 0.17,-0.07 0.33,-0.14 0.5,-0.22 0.08,0.09 0.17,0.19 0.25,0.29 0.3,0.35 0.56,0.73 0.79,1.13 0.22,0.38 0.44,0.8 0.6,1.18 0.08,0.19 0.15,0.39 0.21,0.59 -0.01,0.02 -0.02,0.04 -0.01,0.06 0.03,0.08 0.06,0.15 0.09,0.23 0.05,0.21 0.11,0.43 0.23,0.59 0.01,0.02 0.04,0.03 0.05,0.05 0.02,0.05 0.04,0.11 0.08,0.15 0.03,0.03 0.07,0.03 0.1,0.01 0.13,0.09 0.27,0.14 0.45,0.12 0,0 0.01,-0.01 0.01,-0.01 0.1,0.27 0.37,0.5 0.69,0.39 0.04,-0.01 0.08,-0.03 0.12,-0.05 0.17,0.18 0.35,0.36 0.52,0.53 0.16,0.16 0.31,0.33 0.47,0.49 0.07,0.07 0.15,0.14 0.23,0.21 0.08,0.08 0.16,0.16 0.27,0.2 0.08,0.03 0.18,-0.07 0.15,-0.15 -0.04,-0.11 -0.12,-0.19 -0.2,-0.27 -0.07,-0.08 -0.14,-0.16 -0.21,-0.24 -0.16,-0.16 -0.32,-0.32 -0.48,-0.48 -0.14,-0.14 -0.28,-0.28 -0.42,-0.42 0.62,-0.21 1.23,-0.45 1.84,-0.68 0.06,0.21 0.16,0.4 0.3,0.57 0.08,0.1 0.17,0.17 0.28,0.24 0.11,0.07 0.23,0.14 0.35,0.15 0.08,0.01 0.12,-0.1 0.07,-0.16 -0.08,-0.07 -0.17,-0.12 -0.25,-0.19 -0.08,-0.07 -0.16,-0.16 -0.23,-0.24 -0.11,-0.13 -0.18,-0.3 -0.24,-0.47 0.25,-0.1 0.5,-0.18 0.74,-0.28 0.22,-0.09 0.44,-0.17 0.66,-0.26 0.15,0.19 0.29,0.38 0.44,0.57 0.09,0.12 0.18,0.23 0.27,0.35 0.09,0.12 0.18,0.26 0.31,0.34 0.09,0.06 0.22,-0.04 0.18,-0.14 -0.04,-0.14 -0.15,-0.25 -0.24,-0.37 -0.09,-0.12 -0.18,-0.23 -0.27,-0.35 -0.13,-0.17 -0.27,-0.34 -0.4,-0.51 0.22,-0.09 0.44,-0.18 0.67,-0.26 0.37,-0.14 0.83,-0.25 1.23,-0.43 l 0.2,0.34 c 0.09,0.15 0.17,0.3 0.26,0.44 0.09,0.14 0.17,0.33 0.35,0.37 0.07,0.02 0.16,-0.03 0.17,-0.1 0.04,-0.18 -0.08,-0.33 -0.17,-0.48 -0.08,-0.15 -0.18,-0.29 -0.27,-0.44 -0.07,-0.11 -0.14,-0.22 -0.21,-0.33 0.06,-0.04 0.13,-0.08 0.19,-0.13 0.23,-0.23 0.23,-0.57 0.1,-0.83 0.01,-0.12 -0.01,-0.24 -0.07,-0.34 -0.05,-0.22 -0.08,-0.45 -0.14,-0.66 -0.07,-0.23 -0.15,-0.47 -0.23,-0.7 -0.05,-0.15 -0.16,-0.25 -0.29,-0.31 -0.46,-0.97 -1,-1.9 -1.62,-2.78 0.47,-0.22 0.94,-0.45 1.4,-0.68 0.04,0.07 0.09,0.14 0.13,0.22 0.28,0.45 0.55,0.91 0.82,1.37 0.54,0.92 1.06,1.84 1.57,2.78 0.98,1.8 1.91,3.63 2.77,5.5 1.73,3.76 3.19,7.65 4.37,11.61 0.56,1.89 1.07,3.81 1.47,5.75 -0.24,0.1 -0.49,0.21 -0.73,0.31 0,-0.01 0,-0.01 0,-0.02 -0.04,-0.13 -0.06,-0.26 -0.07,-0.39 -0.02,-0.27 0.01,-0.55 -0.01,-0.82 -0.05,-0.55 -0.14,-1.09 -0.21,-1.63 -0.03,-0.21 -0.39,-0.16 -0.37,0.05 0.03,0.55 0.05,1.1 0.12,1.64 0.03,0.28 0.12,0.54 0.15,0.82 0.02,0.17 0.01,0.34 0.01,0.52 -0.13,0.06 -0.27,0.11 -0.4,0.17 -0.01,-0.15 -0.02,-0.29 -0.04,-0.44 -0.05,-0.59 -0.12,-1.18 -0.2,-1.77 -0.16,-1.19 -0.4,-2.37 -0.7,-3.54 -0.6,-2.33 -1.44,-4.6 -2.51,-6.75 -0.1,-0.2 -0.39,-0.02 -0.3,0.17 1.03,2.14 1.83,4.39 2.38,6.69 0.27,1.13 0.48,2.28 0.65,3.44 0.08,0.58 0.15,1.17 0.19,1.76 0.02,0.21 0.03,0.43 0.04,0.64 -0.54,0.23 -1.07,0.45 -1.61,0.68 -0.01,-0.88 -0.09,-1.78 -0.2,-2.64 -0.14,-1.06 -0.34,-2.12 -0.61,-3.15 -0.55,-2.1 -1.37,-4.09 -2.42,-5.99 -0.08,-0.15 -0.32,-0.02 -0.23,0.14 1.01,1.87 1.78,3.89 2.31,5.95 0.26,1.04 0.47,2.1 0.6,3.17 0.11,0.9 0.14,1.79 0.18,2.69 -0.3,0.13 -0.6,0.25 -0.9,0.38 -0.01,-0.15 -0.02,-0.3 -0.04,-0.45 -0.11,-0.91 -0.27,-1.81 -0.49,-2.7 -0.45,-1.79 -1.14,-3.52 -2.05,-5.14 -0.09,-0.16 -0.33,-0.02 -0.24,0.14 0.88,1.6 1.55,3.3 1.99,5.08 0.22,0.9 0.38,1.81 0.48,2.72 0.02,0.16 0.02,0.32 0.04,0.48 -0.32,0.14 -0.63,0.27 -0.95,0.41 -0.11,-0.54 -0.23,-1.09 -0.37,-1.63 -0.3,-1.2 -0.67,-2.39 -1.09,-3.55 -0.04,-0.12 -0.24,-0.07 -0.2,0.05 0.37,1.16 0.68,2.34 0.93,3.53 0.12,0.58 0.23,1.16 0.33,1.74 0,0.01 0,0.01 0,0.02 -0.46,0.2 -0.91,0.4 -1.37,0.6 -0.02,-0.21 -0.03,-0.42 -0.06,-0.63 -0.1,-0.9 -0.24,-1.79 -0.41,-2.67 -0.36,-1.81 -0.9,-3.59 -1.58,-5.31 -0.07,-0.19 -0.38,-0.11 -0.31,0.08 0.65,1.69 1.14,3.43 1.5,5.21 0.18,0.89 0.32,1.79 0.41,2.69 0.03,0.26 0.05,0.53 0.07,0.79 -0.53,0.23 -1.05,0.46 -1.58,0.69 -0.01,-0.19 -0.03,-0.39 -0.04,-0.57 -0.03,-0.49 -0.08,-0.98 -0.14,-1.47 -0.12,-0.96 -0.27,-1.92 -0.48,-2.87 -0.4,-1.89 -0.98,-3.75 -1.75,-5.52 -0.44,-1.03 -0.95,-2.02 -1.5,-3 -0.1,-0.17 -0.35,-0.02 -0.26,0.16 1.79,3.37 2.96,7.15 3.46,10.92 0.07,0.53 0.13,1.07 0.17,1.61 0.02,0.31 0.03,0.63 0.06,0.95 -0.46,0.2 -0.92,0.41 -1.39,0.6 0.05,0.03 0.01,0.04 -0.04,0.06 z m 16.59,-4.52 c -0.07,0.04 -0.15,0.08 -0.22,0.12 -0.08,-0.71 -0.18,-1.42 -0.29,-2.11 -0.18,-1.09 -0.41,-2.18 -0.66,-3.26 -0.51,-2.14 -1.17,-4.25 -2,-6.29 -0.06,-0.15 -0.32,-0.09 -0.25,0.07 0.78,2.04 1.43,4.12 1.93,6.25 0.25,1.06 0.44,2.14 0.62,3.22 0.09,0.56 0.17,1.12 0.24,1.69 0.03,0.21 0.04,0.42 0.06,0.64 -0.21,0.12 -0.42,0.22 -0.63,0.32 -0.01,-0.07 -0.02,-0.14 -0.03,-0.21 -0.07,-0.5 -0.16,-1 -0.25,-1.5 -0.19,-1.04 -0.42,-2.07 -0.69,-3.09 -0.54,-2.02 -1.24,-3.98 -2.11,-5.87 -0.05,-0.12 -0.26,-0.03 -0.21,0.09 0.79,1.91 1.48,3.87 2,5.87 0.26,0.98 0.48,1.97 0.66,2.97 0.09,0.5 0.17,1 0.24,1.5 0.02,0.13 0.03,0.27 0.04,0.41 -0.1,0.04 -0.19,0.1 -0.29,0.14 -0.47,0.18 -0.99,0.29 -1.49,0.15 0.15,-0.06 0.29,-0.12 0.44,-0.18 -0.01,-0.03 -0.02,-0.06 -0.03,-0.08 0.18,-0.19 0.29,-0.46 0.2,-0.79 -1.01,-4.11 -2.08,-8.16 -3.55,-12.13 -1.45,-3.92 -3.16,-7.75 -5.14,-11.43 -0.56,-1.04 -1.14,-2.06 -1.74,-3.07 -0.31,-0.52 -0.63,-1.04 -0.95,-1.56 -0.31,-0.49 -0.56,-1.08 -1.09,-1.35 -0.19,-0.1 -0.4,-0.09 -0.59,-0.02 -0.04,-0.03 -0.08,-0.08 -0.12,-0.11 0.02,-0.03 0.03,-0.07 0.05,-0.1 0.18,-0.24 0.44,-0.4 0.73,-0.54 0.69,0.62 1.33,1.31 1.84,2.08 0.26,0.39 0.5,0.8 0.71,1.22 0.21,0.42 0.36,0.92 0.65,1.29 0.08,0.1 0.26,0.08 0.26,-0.07 0.01,-0.47 -0.22,-0.93 -0.41,-1.35 -0.22,-0.47 -0.47,-0.92 -0.76,-1.35 -0.49,-0.75 -1.07,-1.43 -1.73,-2.05 0.31,-0.1 0.63,-0.19 0.94,-0.28 0.25,0.42 0.53,0.81 0.83,1.19 0.15,0.2 0.3,0.4 0.45,0.59 0.08,0.1 0.17,0.18 0.26,0.28 0.09,0.1 0.17,0.2 0.27,0.27 0.08,0.06 0.26,0.01 0.2,-0.12 -0.05,-0.11 -0.11,-0.21 -0.18,-0.32 -0.07,-0.11 -0.13,-0.22 -0.2,-0.33 -0.15,-0.21 -0.31,-0.41 -0.47,-0.62 -0.28,-0.36 -0.57,-0.72 -0.87,-1.06 0.26,-0.08 0.51,-0.17 0.75,-0.27 0.24,0.41 0.47,0.82 0.71,1.23 0.16,0.28 0.33,0.56 0.49,0.83 0.16,0.27 0.35,0.56 0.56,0.79 0.08,0.09 0.26,-0.01 0.21,-0.12 -0.1,-0.28 -0.26,-0.57 -0.41,-0.83 -0.17,-0.29 -0.35,-0.57 -0.53,-0.86 -0.25,-0.39 -0.5,-0.78 -0.74,-1.17 0.27,-0.13 0.52,-0.3 0.76,-0.49 1.03,1.88 2.18,3.68 3.23,5.55 1.13,2.01 2.18,4.06 3.15,6.15 1.96,4.21 3.59,8.57 4.88,13.02 0.62,2.13 1.07,4.29 1.58,6.44 -0.18,0.06 -0.36,0.12 -0.53,0.2 -0.04,-0.2 -0.08,-0.41 -0.11,-0.59 -0.09,-0.56 -0.18,-1.12 -0.29,-1.67 -0.21,-1.09 -0.44,-2.18 -0.71,-3.26 -0.54,-2.18 -1.21,-4.33 -2,-6.42 -0.45,-1.18 -0.95,-2.34 -1.5,-3.48 -0.07,-0.15 -0.28,-0.02 -0.22,0.13 1.73,4.09 3.12,8.31 3.96,12.68 0.11,0.59 0.22,1.19 0.31,1.79 0.05,0.31 0.09,0.62 0.14,0.93 0,0.03 0.01,0.07 0.01,0.1 -0.12,0.07 -0.25,0.14 -0.37,0.2 z m 5.03,-0.42 c -0.03,0.02 -0.08,0.06 -0.09,0.07 -0.06,0.05 -0.13,0.09 -0.2,0.13 -0.03,-0.62 -0.11,-1.24 -0.21,-1.83 -0.14,-0.93 -0.29,-1.86 -0.5,-2.77 -0.42,-1.83 -1.01,-3.6 -1.82,-5.3 -0.05,-0.1 -0.23,-0.03 -0.19,0.08 0.72,1.71 1.31,3.49 1.71,5.3 0.2,0.92 0.39,1.86 0.46,2.79 0.05,0.66 0.08,1.33 0.14,1.99 -0.02,0.01 -0.03,0.02 -0.05,0.03 -0.1,0.06 -0.21,0.12 -0.31,0.17 -0.04,0.02 -0.08,0.04 -0.12,0.06 0,0 -0.1,0.04 -0.12,0.05 -0.11,0.04 -0.23,0.08 -0.34,0.11 0,0 -0.01,0 -0.02,0 0.01,-0.09 0.03,-0.18 0.01,-0.28 -0.36,-2.33 -1.04,-4.66 -1.69,-6.93 -0.65,-2.29 -1.39,-4.55 -2.22,-6.78 -1.64,-4.43 -3.61,-8.74 -5.89,-12.88 -1.29,-2.33 -2.62,-4.68 -4.32,-6.74 -0.02,-0.02 -0.04,-0.03 -0.05,-0.04 0.29,-0.15 0.59,-0.26 0.9,-0.35 0.22,0.31 0.45,0.62 0.68,0.92 0.18,0.24 0.36,0.48 0.55,0.71 0.1,0.12 0.2,0.23 0.3,0.34 0.1,0.11 0.19,0.24 0.31,0.33 0.13,0.1 0.28,-0.02 0.21,-0.17 -0.06,-0.14 -0.15,-0.26 -0.24,-0.38 -0.09,-0.13 -0.16,-0.25 -0.25,-0.38 -0.18,-0.25 -0.37,-0.48 -0.55,-0.72 -0.2,-0.26 -0.41,-0.51 -0.61,-0.76 0.26,-0.06 0.53,-0.1 0.8,-0.15 0.38,0.67 0.86,1.32 1.23,1.91 0.7,1.11 1.37,2.24 2.03,3.37 1.31,2.23 2.52,4.52 3.64,6.85 2.2,4.58 4.04,9.35 5.48,14.23 0.66,2.21 1.23,4.46 1.75,6.72 -0.12,0.07 -0.23,0.15 -0.33,0.23 0.04,-0.03 -0.04,0.04 -0.08,0.07 z m 10.29,-3.78 c -0.08,0.04 -0.17,0.09 -0.25,0.13 0,-0.2 0.01,-0.4 0.01,-0.61 0.01,-0.66 0.01,-1.32 0.02,-1.97 0,-0.26 -0.4,-0.26 -0.41,0 -0.01,0.65 -0.03,1.29 -0.04,1.94 -0.01,0.29 -0.01,0.58 -0.02,0.87 -0.35,0.19 -0.7,0.37 -1.06,0.55 0.17,-1.69 0.09,-3.43 -0.14,-5.09 -0.27,-1.94 -0.77,-3.82 -1.55,-5.62 -0.05,-0.11 -0.25,-0.03 -0.2,0.09 0.65,1.78 1.16,3.63 1.42,5.51 0.14,0.95 0.21,1.92 0.23,2.88 0.02,0.81 -0.03,1.6 -0.08,2.4 -0.29,0.15 -0.56,0.31 -0.85,0.45 -0.14,0.07 -0.28,0.13 -0.42,0.19 0,-0.05 0.01,-0.1 0.01,-0.15 0.03,-0.51 0.05,-1.02 0.04,-1.53 0,-1.06 -0.12,-2.1 -0.27,-3.14 -0.15,-1.04 -0.35,-2.09 -0.66,-3.09 -0.16,-0.51 -0.26,-1.02 -0.4,-1.53 -0.13,-0.5 -0.39,-0.99 -0.6,-1.45 -0.06,-0.14 -0.31,-0.04 -0.25,0.11 0.18,0.47 0.31,0.98 0.52,1.43 0.22,0.47 0.41,0.93 0.53,1.44 0.25,1.03 0.47,2.07 0.6,3.13 0.12,1.01 0.14,2.04 0.13,3.05 -0.01,0.51 -0.03,1.02 -0.07,1.53 -0.01,0.14 -0.03,0.28 -0.05,0.42 -0.3,0.13 -0.6,0.27 -0.9,0.39 0,-0.69 -0.02,-1.38 -0.05,-2.06 -0.05,-1.12 -0.16,-2.23 -0.31,-3.34 -0.32,-2.28 -0.86,-4.53 -1.61,-6.7 -0.42,-1.22 -0.9,-2.41 -1.44,-3.58 -0.08,-0.17 -0.34,-0.02 -0.26,0.15 1.89,4.12 3.01,8.6 3.27,13.13 0.04,0.64 0.06,1.27 0.06,1.91 0,0.21 0,0.42 -0.01,0.64 -0.44,0.18 -0.88,0.36 -1.31,0.54 0,-0.08 0,-0.17 0,-0.25 0.01,-0.41 0.02,-0.83 0.01,-1.24 -0.01,-0.81 -0.06,-1.62 -0.16,-2.42 -0.09,-0.78 -0.21,-1.56 -0.38,-2.32 -0.19,-0.81 -0.45,-1.59 -0.69,-2.38 -0.02,-0.05 -0.09,-0.03 -0.08,0.02 0.44,1.53 0.67,3.16 0.82,4.74 0.07,0.77 0.11,1.54 0.12,2.31 0,0.4 0,0.79 -0.02,1.18 -0.01,0.17 -0.03,0.35 -0.04,0.54 -0.18,0.07 -0.37,0.15 -0.55,0.22 -0.05,-1.13 -0.17,-2.27 -0.37,-3.38 -0.24,-1.39 -0.59,-2.74 -1.08,-4.07 -0.04,-0.1 -0.19,-0.06 -0.16,0.04 0.39,1.31 0.71,2.65 0.93,3.99 0.2,1.18 0.27,2.37 0.33,3.56 -0.1,0.04 -0.19,0.08 -0.29,0.12 -0.43,-2.21 -0.93,-4.39 -1.55,-6.56 -0.72,-2.52 -1.55,-5.01 -2.48,-7.46 -1.85,-4.88 -4.11,-9.6 -6.73,-14.11 -0.74,-1.26 -1.51,-2.5 -2.31,-3.72 -0.41,-0.63 -0.83,-1.25 -1.28,-1.85 -0.13,-0.17 -0.26,-0.35 -0.4,-0.52 0.01,-0.24 -0.07,-0.49 -0.22,-0.67 0.32,-0.14 0.63,-0.28 0.94,-0.45 -0.01,0.07 0,0.14 0.08,0.18 0.4,0.22 0.76,0.5 1.09,0.82 0.16,0.16 0.31,0.32 0.45,0.5 0.07,0.09 0.14,0.2 0.22,0.27 0.09,0.08 0.16,0.17 0.23,0.26 0.11,0.15 0.33,0.02 0.25,-0.15 -0.05,-0.1 -0.1,-0.21 -0.14,-0.31 -0.05,-0.12 -0.13,-0.22 -0.21,-0.33 -0.15,-0.2 -0.32,-0.38 -0.5,-0.55 -0.36,-0.33 -0.77,-0.61 -1.21,-0.83 0,0 0,0 -0.01,0 0.43,-0.24 0.86,-0.48 1.28,-0.69 0.64,-0.32 1.3,-0.6 1.96,-0.89 1.04,0.94 1.99,1.98 2.79,3.14 0.87,1.26 1.47,2.61 2.11,3.99 0.06,0.12 0.24,0.03 0.21,-0.09 -0.35,-1.48 -1.15,-2.9 -2.01,-4.14 -0.79,-1.14 -1.74,-2.14 -2.8,-3.03 0.27,-0.12 0.53,-0.25 0.8,-0.36 0.64,-0.27 1.29,-0.51 1.94,-0.76 0,0.03 0.01,0.06 0.03,0.08 0.42,0.47 0.96,0.83 1.44,1.24 0.49,0.43 0.96,0.89 1.41,1.36 0.43,0.47 0.85,0.95 1.24,1.44 0.2,0.26 0.4,0.52 0.59,0.78 0.18,0.26 0.34,0.56 0.57,0.78 0.09,0.09 0.25,0 0.21,-0.12 -0.09,-0.3 -0.3,-0.58 -0.46,-0.84 -0.18,-0.29 -0.38,-0.57 -0.58,-0.85 -0.38,-0.53 -0.8,-1.04 -1.24,-1.52 -0.46,-0.49 -0.94,-0.95 -1.45,-1.39 -0.46,-0.39 -0.95,-0.81 -1.51,-1.06 0.31,-0.12 0.61,-0.25 0.92,-0.36 0.51,-0.18 1.03,-0.34 1.53,-0.54 0.25,-0.1 0.54,-0.23 0.81,-0.39 0.28,0.24 0.57,0.49 0.85,0.74 -0.01,0.04 0,0.09 0.03,0.13 0.2,0.22 0.4,0.44 0.59,0.67 0.1,0.11 0.2,0.22 0.3,0.33 0.1,0.11 0.22,0.2 0.33,0.3 0.03,0.02 0.06,0.01 0.09,0 0.65,0.81 1.21,1.68 1.75,2.57 1.36,2.26 2.63,4.58 3.77,6.96 2.3,4.78 4.11,9.8 5.38,14.96 0.65,2.67 1.18,5.36 1.56,8.08 -0.06,0.01 -0.12,0.03 -0.17,0.04 -0.27,0.06 -0.45,0.22 -0.56,0.4 -0.11,0.03 -0.21,0.06 -0.32,0.1 0,-0.03 0,-0.06 0,-0.09 -0.03,-0.51 -0.05,-1.02 -0.08,-1.53 -0.01,-0.25 -0.39,-0.25 -0.39,0 l 0.04,1.53 c 0,0.09 0,0.17 0.01,0.26 -0.44,0.16 -0.84,0.37 -1.21,0.57 z m 4.54,-2.05 c -1.59,-10.48 -5.27,-20.74 -10.88,-29.73 -0.87,-1.39 -1.88,-3.04 -3.19,-4.21 0.21,-0.09 0.39,-0.2 0.58,-0.34 0.22,0.32 0.47,0.63 0.7,0.94 0.39,0.51 0.77,1.03 1.15,1.55 0.73,1.02 1.43,2.05 2.1,3.11 1.34,2.12 2.53,4.33 3.62,6.59 2.16,4.49 3.81,9.25 4.89,14.11 0.3,1.36 0.57,2.73 0.78,4.11 0.11,0.72 0.19,1.45 0.29,2.17 0.07,0.47 0.16,0.96 0.28,1.44 -0.11,0.08 -0.22,0.16 -0.32,0.26 z" + id="path336" /> + <path + class="st1" + d="m 670.6,202.67 c 0,0.01 0,0.01 0,0 0.04,0.04 0.09,0.05 0,0 z" + id="path338" /> + <path + class="st1" + d="m 671.72,202.58 c 0.01,-0.01 0.01,-0.02 0.02,-0.04 0,0.01 -0.01,0.02 -0.02,0.04 0,0 0,0 0,0 z" + id="path340" /> + <path + class="st1" + d="m 670.5,202.57 c 0.01,0.01 0.02,0.02 0.04,0.04 0,-0.01 -0.02,-0.02 -0.04,-0.04 0,0 0,0 0,0 z" + id="path342" /> + <path + class="st1" + d="m 671.58,201.5 c -0.01,0 -0.01,0 0,0 0.05,0.07 0.05,0.04 0,0 z" + id="path344" /> + <polygon + class="st1" + points="" + id="polygon346" /> + <path + class="st1" + d="m 516.62,268.3 c -0.01,-0.02 -0.02,-0.03 -0.03,-0.05 0,0 0.01,0.02 0.03,0.05 0,0 0,0 0,0 z" + id="path348" /> + <path + class="st1" + d="m 515.52,268.71 c 0,0.01 0.01,0.01 0.01,0.02 0,-0.01 -0.01,-0.02 -0.01,-0.03 0,0 0,0 0,0.01 z" + id="path350" /> + <path + class="st1" + d="m 516.48,268.94 c 0.01,-0.01 0.01,-0.02 0.02,-0.03 0,-0.01 0.01,-0.01 0.01,-0.02 0,0.01 -0.02,0.03 -0.03,0.05 0,0.01 0,0 0,0 z" + id="path352" /> + <path + class="st1" + d="m 516.48,268.95 c -0.01,0.01 -0.02,0.03 -0.04,0.04 0,0 0,0 -0.01,0.01 0.01,-0.01 0.02,-0.01 0.03,-0.02 0.01,-0.01 0.01,-0.02 0.02,-0.03 z" + id="path354" /> + <path + class="st1" + d="m 516.64,268.56 c 0,0 0,-0.01 0,-0.01 -0.04,0.12 -0.01,0.06 0,0.01 z" + id="path356" /> + <path + class="st1" + d="m 533.94,276.47 c 1.43,3.54 5.4,5.72 9.16,4.98 1.97,-0.39 3.73,-1.57 4.92,-3.18 1.22,-1.66 1.57,-3.6 1.35,-5.61 -0.43,-4.05 -3.65,-7.19 -7.73,-7.43 -2.25,-0.14 -4.43,0.7 -6.06,2.25 -0.78,0.73 -1.39,1.67 -1.82,2.64 -0.22,0.5 -0.32,0.91 -0.32,1.46 0,0.43 -0.04,0.84 -0.02,1.26 -0.11,1.23 0.05,2.48 0.52,3.63 z m 0.73,-5.27 c 0.05,-0.09 0.11,-0.18 0.15,-0.27 0.36,-0.74 0.83,-1.38 1.39,-1.97 1.12,-1.17 2.51,-1.94 4.12,-2.18 3.35,-0.49 6.81,1.48 7.79,4.77 1.01,3.42 -0.96,7.15 -4.3,8.39 -3.07,1.14 -6.64,-0.27 -8.39,-2.99 -1.1,-1.73 -1.27,-3.82 -0.76,-5.75 z" + id="path358" /> + <path + class="st1" + d="m 539.46,270.83 c -0.8,0.55 -1.31,1.46 -1.27,2.45 0.01,0.13 0.03,0.26 0.07,0.39 0.01,0.04 0.03,0.07 0.04,0.11 0.01,0.04 0.03,0.08 0.05,0.12 0.04,0.07 0.04,0.08 0.01,0.05 0.04,0.14 0.09,0.29 0.14,0.43 0.09,0.33 0.23,0.65 0.44,0.93 1.01,1.34 3.04,1.65 4.38,0.58 1.24,-0.99 1.46,-3 0.54,-4.28 -0.96,-1.36 -3.02,-1.73 -4.4,-0.78 z m 2.16,0.81 c 0.02,0 0.03,0 0.05,0.01 0.09,0.02 0.17,0.04 0.26,0.06 0.07,0.02 0.13,0.04 0.19,0.06 0,0 0,0 0,0 0,0 0,0 0,0 0.03,0.01 0.05,0.02 0.08,0.04 0.07,0.03 0.14,0.07 0.2,0.11 0.04,0.02 0.19,0.14 0.1,0.07 0.06,0.05 0.12,0.1 0.17,0.16 0.02,0.02 0.04,0.04 0.06,0.06 0.01,0.01 0.03,0.04 0.05,0.05 0.01,0.01 0.01,0.02 0.01,0.02 0.02,0.03 0.04,0.06 0.07,0.1 0.05,0.07 0.09,0.15 0.13,0.23 0.01,0.02 0.02,0.04 0.03,0.06 0,0.01 0.01,0.02 0.01,0.03 0.02,0.07 0.05,0.15 0.07,0.22 0.02,0.07 0.03,0.13 0.04,0.2 0,0.01 0,0 0,0.01 0,0.04 0.01,0.08 0.01,0.11 0.01,0.15 0,0.29 -0.01,0.44 0,0.01 0,0.02 0,0.04 0,0.02 -0.01,0.04 -0.01,0.06 -0.02,0.09 -0.04,0.17 -0.06,0.25 -0.02,0.07 -0.04,0.13 -0.07,0.19 0,0 0,0 0,0 0,0 0,0 0,0.01 -0.01,0.03 -0.02,0.05 -0.04,0.08 -0.03,0.07 -0.07,0.14 -0.11,0.2 -0.02,0.03 -0.04,0.06 -0.06,0.09 0,0 0,0.01 -0.01,0.01 -0.05,0.06 -0.1,0.12 -0.16,0.17 -0.02,0.02 -0.04,0.04 -0.06,0.06 -0.01,0.01 -0.04,0.03 -0.05,0.05 -0.01,0.01 -0.02,0.01 -0.02,0.01 -0.03,0.02 -0.06,0.05 -0.09,0.07 -0.07,0.05 -0.15,0.09 -0.22,0.13 -0.02,0.01 -0.11,0.05 -0.12,0.05 -0.06,0.02 -0.12,0.04 -0.18,0.06 -0.07,0.02 -0.13,0.03 -0.2,0.05 -0.03,0.01 -0.06,0.01 -0.09,0.02 -0.01,0 -0.01,0 -0.02,0 0,0 -0.01,0 -0.02,0 -0.15,0.01 -0.29,0.02 -0.44,0.01 -0.04,0 -0.07,-0.01 -0.11,-0.01 -0.09,-0.01 -0.17,-0.03 -0.26,-0.05 -0.29,-0.07 -0.44,-0.13 -0.71,-0.31 -0.05,-0.03 -0.23,-0.2 -0.27,-0.25 -0.1,-0.12 -0.17,-0.26 -0.24,-0.4 -0.08,-0.17 -0.14,-0.4 -0.16,-0.63 0.08,-0.28 0.15,-0.56 0.24,-0.84 0,-0.01 0.01,-0.02 0.01,-0.04 0.01,-0.01 0.01,-0.03 0.02,-0.04 0.03,-0.06 0.06,-0.12 0.09,-0.18 0.04,-0.07 0.07,-0.14 0.12,-0.2 0.02,-0.02 0.03,-0.05 0.05,-0.07 0,-0.01 0,0 0,-0.01 0.01,-0.01 0.01,0 0.01,-0.02 0.05,-0.06 0.1,-0.12 0.16,-0.17 0.02,-0.02 0.09,-0.07 0.11,-0.1 0.03,-0.02 0.1,-0.06 0.12,-0.08 0.07,-0.05 0.15,-0.09 0.23,-0.12 0.01,-0.01 0.02,-0.01 0.03,-0.01 0.01,-0.01 0.03,-0.01 0.04,-0.01 0.07,-0.02 0.15,-0.05 0.22,-0.07 0.07,-0.02 0.13,-0.03 0.2,-0.04 0.01,0 0.02,0 0.03,-0.01 0.01,0 0.06,-0.01 0.08,-0.01 0.15,-0.01 0.29,0 0.44,0 0.02,0.02 0.04,0.02 0.06,0.02 z" + id="path360" /> + <path + class="st1" + d="m 505.58,285.73 c -0.75,-0.15 -1.56,-0.01 -2.18,0.44 -0.18,0.13 -0.34,0.28 -0.47,0.44 -0.41,0.31 -0.68,0.8 -0.85,1.29 -0.23,0.64 -0.23,1.4 0.02,2.03 0.56,1.4 2.06,2.23 3.55,1.94 1.41,-0.27 2.51,-1.7 2.48,-3.13 -0.05,-1.42 -1.16,-2.73 -2.55,-3.01 z m 1.02,3.2 c 0,0.02 0,0.02 0,0.03 -0.01,0.06 -0.02,0.11 -0.03,0.17 -0.02,0.06 -0.03,0.13 -0.06,0.19 0,0 -0.03,0.08 -0.04,0.11 -0.02,0.04 -0.04,0.08 -0.04,0.08 -0.04,0.08 -0.09,0.15 -0.14,0.23 -0.01,0.01 -0.01,0.02 -0.02,0.03 0,0 0,0 -0.01,0.01 -0.04,0.04 -0.07,0.09 -0.11,0.13 -0.05,0.05 -0.09,0.1 -0.14,0.14 0,0 -0.04,0.04 -0.07,0.06 -0.03,0.02 -0.09,0.07 -0.09,0.06 -0.06,0.04 -0.11,0.07 -0.17,0.1 -0.04,0.02 -0.09,0.05 -0.14,0.07 -0.02,0 -0.07,0.03 -0.11,0.03 -0.06,0.02 -0.13,0.03 -0.19,0.05 -0.02,0 -0.02,0.01 -0.03,0.01 -0.01,0 -0.02,0 -0.03,0 -0.11,0 -0.22,0 -0.33,0 -0.02,0 -0.03,0 -0.04,0 -0.01,0 -0.02,0 -0.03,-0.01 -0.04,-0.01 -0.09,-0.02 -0.13,-0.03 -0.06,-0.02 -0.13,-0.03 -0.19,-0.05 -0.03,-0.01 -0.07,-0.02 -0.1,-0.04 -0.01,0 -0.01,0 -0.03,-0.01 -0.1,-0.05 -0.19,-0.1 -0.29,-0.16 -0.01,-0.01 -0.09,-0.07 -0.1,-0.07 -0.03,-0.02 -0.06,-0.05 -0.08,-0.07 -0.08,-0.07 -0.15,-0.15 -0.22,-0.23 -0.02,-0.03 -0.06,-0.08 -0.07,-0.09 -0.04,-0.05 -0.07,-0.11 -0.1,-0.17 -0.01,-0.01 -0.04,-0.08 -0.05,-0.11 -0.02,-0.06 -0.04,-0.11 -0.06,-0.17 -0.01,-0.05 -0.02,-0.11 -0.04,-0.16 0,-0.01 0,-0.02 0,-0.03 0,-0.04 -0.01,-0.08 -0.01,-0.11 0,-0.03 0,-0.06 0,-0.1 0.34,-0.07 0.55,-0.34 0.58,-0.69 0,-0.01 0,-0.01 0,-0.01 0,-0.01 0,-0.01 0.01,-0.02 0.01,-0.03 0.05,-0.18 0.02,-0.08 0.02,-0.05 0.04,-0.11 0.07,-0.16 0,-0.01 0.01,-0.02 0.02,-0.03 0.01,-0.01 0.03,-0.05 0.05,-0.09 0.02,-0.02 0.03,-0.04 0.05,-0.06 0.04,-0.05 0.11,-0.14 0.18,-0.19 0.03,-0.02 0.05,-0.04 0.08,-0.06 0.03,-0.02 0.07,-0.04 0.1,-0.06 0.02,-0.01 0.05,-0.03 0.08,-0.05 0.03,-0.01 0.06,-0.02 0.09,-0.03 0.09,-0.03 0.19,-0.05 0.28,-0.07 0,0 0,0 0,0 0.01,0 0.01,0 0.02,0 0.06,0 0.12,0 0.17,0 0.02,0 0.11,0.02 0.13,0.02 0.04,0.01 0.08,0.02 0.12,0.03 0.04,0.01 0.08,0.03 0.12,0.04 0.02,0 0.03,0.01 0.03,0.01 0.01,0 0.01,0.01 0.02,0.01 0.11,0.05 0.21,0.11 0.31,0.17 0.01,0.01 0.04,0.03 0.06,0.04 0.06,0.05 0.11,0.09 0.16,0.14 0.04,0.04 0.08,0.08 0.11,0.12 0.01,0.01 0.03,0.03 0.04,0.05 0.07,0.09 0.13,0.19 0.19,0.29 0.02,0.04 0.04,0.08 0.06,0.11 -0.09,-0.16 0,0.01 0.02,0.05 0.04,0.1 0.06,0.21 0.08,0.32 0,0.03 0.01,0.1 0.01,0.11 0.04,0.07 0.03,0.13 0.03,0.2 z" + id="path362" /> + <path + class="st1" + d="m 577.75,258.31 c 0.02,0.08 0.12,0.05 0.13,-0.02 0.03,-0.26 -0.01,-0.53 -0.04,-0.8 -0.02,-0.27 -0.05,-0.53 -0.07,-0.8 -0.01,-0.1 -0.17,-0.1 -0.16,0 0.02,0.27 0.04,0.54 0.05,0.81 0.01,0.28 0.01,0.55 0.09,0.81 z" + id="path364" /> + <path + class="st1" + d="m 577.69,260.56 -0.01,1.08 c 0,0.18 -0.01,0.36 0,0.54 0,0.17 0,0.36 0.04,0.52 0.02,0.08 0.13,0.08 0.15,0 0.04,-0.17 0.04,-0.35 0.04,-0.52 0,-0.18 0,-0.36 0,-0.54 l -0.01,-1.08 c -0.01,-0.13 -0.21,-0.13 -0.21,0 z" + id="path366" /> + <path + class="st1" + d="m 579.58,260.69 c 0.04,-0.79 -0.06,-1.6 -0.11,-2.39 -0.01,-0.15 -0.24,-0.15 -0.23,0 0.03,0.8 0.03,1.62 0.15,2.42 0.03,0.1 0.19,0.07 0.19,-0.03 z" + id="path368" /> + <path + class="st1" + d="m 581.15,262.28 c 0.02,-0.38 0.01,-0.75 0.01,-1.13 v -1.13 c 0,-0.05 -0.08,-0.05 -0.08,0 v 1.13 c 0,0.38 -0.01,0.75 0.01,1.13 -0.01,0.05 0.06,0.05 0.06,0 z" + id="path370" /> + <path + class="st1" + d="m 582.8,259.78 c 0.09,-0.59 0.07,-1.19 0.07,-1.79 -0.01,-0.61 -0.04,-1.22 -0.07,-1.83 0,-0.12 -0.19,-0.12 -0.19,0 -0.02,0.61 -0.06,1.22 -0.07,1.83 -0.01,0.6 -0.02,1.19 0.07,1.79 0.02,0.1 0.18,0.1 0.19,0 z" + id="path372" /> + <path + class="st1" + d="m 582.61,261.89 c -0.01,0.45 -0.02,0.9 -0.02,1.36 0,0.22 0,0.44 0,0.66 0,0.22 0,0.45 0.04,0.66 0.02,0.08 0.15,0.08 0.16,0 0.04,-0.21 0.04,-0.44 0.04,-0.66 0,-0.22 0.01,-0.44 0,-0.66 l -0.02,-1.36 c 0,-0.14 -0.2,-0.14 -0.2,0 z" + id="path374" /> + <path + class="st1" + d="m 585.4,261.09 c 0.01,-0.31 0.01,-0.62 0.01,-0.93 0,-0.05 -0.08,-0.05 -0.08,0 0,0.31 0,0.62 0.01,0.93 0,0.04 0.06,0.04 0.06,0 z" + id="path376" /> + <path + class="st1" + d="m 587.06,260.32 c 0.05,-0.21 0.02,-0.45 0.02,-0.67 0,-0.22 -0.01,-0.44 -0.02,-0.66 -0.01,-0.45 -0.03,-0.9 -0.04,-1.36 0,-0.08 -0.12,-0.08 -0.12,0 -0.01,0.45 -0.03,0.9 -0.04,1.36 -0.01,0.22 -0.02,0.44 -0.02,0.66 0,0.22 -0.03,0.46 0.02,0.67 0.03,0.1 0.18,0.1 0.2,0 z" + id="path378" /> + <path + class="st1" + d="m 588.95,263.77 c 0.11,-0.73 0.09,-1.5 0.1,-2.24 0.02,-0.77 0.04,-1.54 0.05,-2.31 0,-0.16 -0.24,-0.16 -0.25,0 -0.02,0.75 -0.04,1.51 -0.07,2.26 -0.02,0.75 -0.09,1.52 -0.02,2.26 0.02,0.1 0.17,0.14 0.19,0.03 z" + id="path380" /> + <path + class="st1" + d="m 590.38,264.41 c 0.06,-0.5 0.02,-1.02 0.01,-1.53 0,-0.51 -0.01,-1.02 -0.01,-1.53 0,-0.12 -0.18,-0.12 -0.18,0 0,0.51 -0.01,1.02 -0.01,1.53 0,0.5 -0.04,1.03 0.01,1.53 0.01,0.12 0.17,0.12 0.18,0 z" + id="path382" /> + <path + class="st1" + d="m 601.93,265.18 c 0.02,-0.7 0.01,-1.4 -0.01,-2.1 0,-0.08 -0.13,-0.08 -0.13,0 -0.02,0.7 -0.03,1.4 -0.01,2.1 0.01,0.34 0.01,0.69 0.01,1.03 0,0.33 -0.06,0.68 -0.02,1.01 0.01,0.08 0.15,0.08 0.16,0 0.05,-0.33 -0.02,-0.68 -0.02,-1.01 0.01,-0.34 0.01,-0.68 0.02,-1.03 z" + id="path384" /> + <path + class="st1" + d="m 603.18,260.16 c -0.03,0.75 -0.06,1.49 -0.08,2.24 -0.01,0.37 -0.03,0.75 -0.04,1.12 -0.01,0.34 -0.03,0.72 0.02,1.06 0.02,0.09 0.16,0.09 0.18,0 0.08,-0.33 0.07,-0.71 0.08,-1.06 0.01,-0.37 0.02,-0.75 0.03,-1.12 0.02,-0.75 0.03,-1.49 0.05,-2.24 -0.01,-0.16 -0.24,-0.15 -0.24,0 z" + id="path386" /> + <path + class="st1" + d="m 604.88,263.14 c 0.09,-0.21 0.07,-0.46 0.08,-0.69 0.01,-0.26 0.01,-0.52 0.02,-0.77 0.01,-0.51 0.02,-1.01 0.04,-1.52 0,-0.13 -0.19,-0.13 -0.2,0 -0.03,0.5 -0.07,0.99 -0.1,1.49 -0.02,0.25 -0.03,0.5 -0.05,0.75 -0.01,0.22 -0.06,0.5 0.01,0.72 0.03,0.07 0.16,0.11 0.2,0.02 z" + id="path388" /> + <path + class="st1" + d="m 607.18,261.11 v 0.67 c 0,0.22 -0.01,0.45 0.04,0.67 0.02,0.1 0.18,0.1 0.2,0 0.04,-0.22 0.04,-0.45 0.04,-0.67 0,-0.22 0,-0.44 0,-0.67 0,-0.45 0,-0.9 -0.01,-1.36 0,-0.16 -0.26,-0.17 -0.26,0 z" + id="path390" /> + <path + class="st1" + d="m 609.58,260.16 c 0,-0.18 -0.28,-0.18 -0.28,0 -0.01,0.79 -0.02,1.58 -0.03,2.37 -0.01,0.76 -0.03,1.55 0.09,2.3 0.01,0.07 0.14,0.07 0.15,0 0.12,-0.75 0.1,-1.55 0.09,-2.3 0,-0.79 -0.01,-1.58 -0.02,-2.37 z" + id="path392" /> + <path + class="st1" + d="m 611.4,261.51 c 0.13,-0.54 0.12,-1.11 0.13,-1.66 0.01,-0.57 0.02,-1.13 0.04,-1.7 0,-0.17 -0.25,-0.17 -0.26,0 -0.03,0.57 -0.06,1.13 -0.1,1.7 -0.03,0.55 -0.08,1.11 0,1.66 0.02,0.1 0.17,0.09 0.19,0 z" + id="path394" /> + <path + class="st1" + d="m 611.37,263.75 c -0.02,0.2 -0.05,0.4 -0.07,0.6 -0.01,0.1 -0.03,0.2 -0.03,0.29 0,0.05 0,0.09 0,0.14 0,0.06 0,0.11 0,0.16 0.01,0.06 0.09,0.08 0.11,0.02 0.02,-0.05 0.03,-0.1 0.04,-0.16 0.01,-0.05 0.02,-0.09 0.03,-0.14 0.02,-0.1 0.02,-0.2 0.03,-0.31 0.02,-0.2 0.04,-0.41 0.06,-0.61 0.01,-0.05 -0.04,-0.09 -0.09,-0.09 -0.05,0.01 -0.08,0.05 -0.08,0.1 z" + id="path396" /> + <path + class="st1" + d="m 611.23,267.43 c 0.03,0.15 0.04,0.31 0.08,0.46 0.03,0.1 0.17,0.07 0.18,-0.02 0.02,-0.16 0,-0.32 0,-0.47 0,-0.15 0.01,-0.3 -0.01,-0.46 -0.02,-0.31 -0.05,-0.62 -0.07,-0.93 -0.01,-0.09 -0.07,-0.17 -0.17,-0.17 -0.09,0 -0.18,0.08 -0.17,0.17 0.03,0.32 0.05,0.63 0.09,0.95 0.01,0.16 0.04,0.32 0.07,0.47 z" + id="path398" /> + <path + class="st1" + d="m 613.13,259.12 c 0.04,-0.21 0.03,-0.42 0.03,-0.63 v -0.63 c 0,-0.43 0,-0.86 -0.01,-1.29 0,-0.15 -0.23,-0.15 -0.23,0 0,0.43 0,0.86 -0.01,1.29 v 0.63 c 0,0.21 -0.01,0.43 0.03,0.63 0.01,0.1 0.17,0.1 0.19,0 z" + id="path400" /> + <path + class="st1" + d="m 612.98,262.02 c 0,1.22 0.01,2.44 0.04,3.66 0.01,0.3 0.05,0.6 0.04,0.9 -0.01,0.3 -0.05,0.6 -0.06,0.9 -0.02,0.62 -0.01,1.24 0,1.86 0.01,0.19 0.3,0.19 0.3,0 0,-0.6 -0.01,-1.2 -0.03,-1.8 -0.01,-0.32 -0.07,-0.64 -0.08,-0.96 -0.02,-0.3 0.02,-0.6 0.02,-0.9 0,-1.22 -0.01,-2.44 -0.03,-3.66 -0.01,-0.12 -0.2,-0.13 -0.2,0 z" + id="path402" /> + <path + class="st1" + d="m 587.43,247.8 c 0.01,0.06 0.02,0.13 0.03,0.19 0.01,0.07 0.02,0.12 0.09,0.17 0.04,0.03 0.1,0.02 0.14,-0.02 0.06,-0.05 0.05,-0.11 0.05,-0.18 0,-0.06 0,-0.12 -0.01,-0.18 -0.01,-0.11 -0.02,-0.23 -0.03,-0.34 -0.02,-0.23 -0.05,-0.47 -0.07,-0.7 -0.01,-0.08 -0.06,-0.15 -0.15,-0.15 -0.07,0 -0.15,0.07 -0.15,0.15 0.02,0.24 0.05,0.48 0.07,0.72 0.01,0.1 0.02,0.22 0.03,0.34 z" + id="path404" /> + <path + class="st1" + d="m 585.6,249.41 c 0.05,-0.18 0.04,-0.4 0.04,-0.59 0,-0.2 0,-0.41 0,-0.61 0,-0.41 0,-0.81 -0.01,-1.22 0,-0.16 -0.25,-0.16 -0.25,0 0,0.41 0,0.81 -0.01,1.22 0,0.2 0,0.41 0,0.61 0,0.19 -0.01,0.41 0.04,0.59 0.02,0.1 0.16,0.1 0.19,0 z" + id="path406" /> + <path + class="st1" + d="m 583.18,250.85 c 0.01,0.08 0.12,0.08 0.13,0 0.04,-0.35 0.02,-0.71 0.02,-1.06 0,-0.35 0,-0.71 0,-1.06 0,-0.11 -0.17,-0.11 -0.17,0 0,0.35 0,0.71 0,1.06 0,0.35 -0.02,0.71 0.02,1.06 z" + id="path408" /> + <path + class="st1" + d="m 601.22,247.38 c -0.03,-0.18 -0.07,-0.36 -0.1,-0.54 -0.01,-0.04 -0.06,-0.07 -0.1,-0.06 -0.04,0.01 -0.07,0.06 -0.06,0.1 0.05,0.17 0.11,0.35 0.16,0.52 0.02,0.07 0.11,0.04 0.1,-0.02 z" + id="path410" /> + <path + class="st1" + d="m 603.07,250.21 c 0.04,0.12 0.2,0.12 0.24,0 0.05,-0.14 0.03,-0.31 0.04,-0.46 0.01,-0.14 0.01,-0.28 0.01,-0.42 0,-0.31 -0.01,-0.61 -0.01,-0.92 -0.01,-0.61 -0.01,-1.22 -0.02,-1.83 0,-0.19 -0.29,-0.19 -0.29,0 -0.01,0.61 -0.01,1.22 -0.02,1.83 0,0.31 -0.01,0.61 -0.01,0.92 0,0.14 0,0.28 0.01,0.42 0.02,0.16 0,0.32 0.05,0.46 z" + id="path412" /> + <path + class="st1" + d="m 603.07,251.81 c 0.04,0.18 0.07,0.35 0.11,0.53 0.04,0.17 0.06,0.36 0.12,0.52 0.03,0.08 0.1,0.13 0.19,0.11 0.09,-0.02 0.12,-0.11 0.11,-0.19 -0.02,-0.18 -0.09,-0.35 -0.14,-0.52 -0.05,-0.17 -0.1,-0.34 -0.15,-0.52 -0.05,-0.15 -0.27,-0.08 -0.24,0.07 z" + id="path414" /> + <path + class="st1" + d="m 605.02,250.02 c 0.01,0.19 0.01,0.41 0.08,0.59 0.04,0.1 0.19,0.12 0.22,0 0.05,-0.19 0.03,-0.4 0.02,-0.59 -0.01,-0.2 -0.02,-0.41 -0.04,-0.61 -0.02,-0.41 -0.05,-0.81 -0.07,-1.22 -0.01,-0.19 -0.3,-0.19 -0.29,0 0.02,0.41 0.04,0.81 0.06,1.22 0,0.2 0.01,0.4 0.02,0.61 z" + id="path416" /> + <path + class="st1" + d="m 605.31,252.92 c 0,-0.07 0,-0.14 -0.01,-0.21 0,-0.06 -0.05,-0.12 -0.12,-0.12 -0.07,0 -0.12,0.05 -0.12,0.12 0,0.07 0,0.14 -0.01,0.21 0,0.03 0,0.07 0,0.1 0,0.02 0,0.03 0,0.05 0,0.04 0.02,0.06 0.04,0.09 0.04,0.07 0.14,0.07 0.19,0 0.02,-0.03 0.04,-0.06 0.04,-0.09 0,-0.02 0,-0.03 0,-0.05 -0.01,-0.03 -0.01,-0.07 -0.01,-0.1 z" + id="path418" /> + <path + class="st1" + d="m 607,251.67 c 0.08,-0.53 0.13,-1.05 0.14,-1.59 0.02,-0.54 0.03,-1.08 0.05,-1.63 0.01,-0.2 -0.29,-0.2 -0.31,0 -0.03,0.53 -0.06,1.06 -0.09,1.6 -0.03,0.54 -0.02,1.06 0.01,1.6 0.02,0.1 0.19,0.13 0.2,0.02 z" + id="path420" /> + <path + class="st1" + d="m 607.07,254.15 c -0.01,-0.43 -0.02,-0.87 -0.02,-1.3 0,-0.17 -0.26,-0.17 -0.26,0 -0.01,0.43 -0.01,0.87 -0.02,1.3 -0.02,0.19 0.3,0.19 0.3,0 z" + id="path422" /> + <path + class="st1" + d="m 609.52,249.71 c 0.04,-0.08 0.08,-0.17 0.09,-0.26 0.01,-0.08 0.01,-0.16 0.02,-0.23 0.01,-0.18 0.03,-0.35 0.04,-0.53 0.02,-0.35 0.03,-0.69 0.05,-1.04 0.01,-0.23 -0.34,-0.22 -0.35,0 l -0.08,1.02 c -0.01,0.17 -0.02,0.34 -0.03,0.51 0,0.08 -0.01,0.16 -0.01,0.23 0,0.09 0.03,0.18 0.05,0.27 0.03,0.09 0.17,0.13 0.22,0.03 z" + id="path424" /> + <path + class="st1" + d="m 609.64,251.78 c 0,0.22 0,0.44 0,0.66 0,0.22 -0.01,0.45 0.01,0.67 0.01,0.07 0.09,0.07 0.1,0 0.02,-0.22 0.01,-0.44 0.01,-0.67 0,-0.22 0,-0.44 0,-0.66 0,-0.08 -0.12,-0.08 -0.12,0 z" + id="path426" /> + <path + class="st1" + d="m 578.55,249.54 c 0.03,-0.16 0.05,-0.31 0.04,-0.46 0,-0.16 0,-0.32 0,-0.47 v -0.95 c 0,-0.18 -0.27,-0.18 -0.27,0 0,0.32 0,0.63 0,0.95 0,0.16 0,0.32 0,0.47 0,0.16 0.02,0.31 0.04,0.46 0.01,0.1 0.17,0.1 0.19,0 z" + id="path428" /> + <path + class="st1" + d="m 578.59,252.37 c 0,0 0,-0.01 0,-0.01 0,0 0,-0.01 0,-0.01 0,0.01 0,0.01 0,0.02 z" + id="path430" /> + <polygon + class="st1" + points="578.59,252.34 578.59,252.36 578.59,252.35 " + id="polygon432" /> + <path + class="st1" + d="m 578.59,252.36 c 0,0 0,0 0,0 v 0 c 0,0.01 0,0.02 0,0.03 0,0 0,0 0,0 0,0 0,0.01 0,0.01 0,0 0,0.01 -0.01,0.01 0,0 0,0 -0.01,0.01 0,0 0,0 0,0 0,0 0,0 -0.01,0 0,0 0,0 -0.01,-0.01 0,0 0,-0.01 -0.01,-0.01 0,0 0,-0.01 0,-0.01 0,0 0,0 0,-0.01 0,0 0,0 0,0 0,0 0,-0.01 0.01,-0.01 0.01,-0.02 0.02,-0.06 0.01,-0.08 -0.01,-0.02 -0.02,-0.04 -0.04,-0.05 -0.04,-0.03 -0.1,-0.03 -0.13,0.01 -0.04,0.05 -0.07,0.11 -0.06,0.18 0,0.04 0.01,0.07 0.03,0.11 0.01,0.02 0.03,0.05 0.05,0.07 0.03,0.02 0.06,0.05 0.1,0.05 0.05,0.01 0.1,0.01 0.14,-0.02 0.02,-0.02 0.05,-0.03 0.07,-0.05 0.03,-0.03 0.04,-0.06 0.06,-0.1 0.01,-0.03 0.02,-0.06 0.01,-0.09 0,-0.01 0,-0.03 -0.01,-0.04 -0.01,-0.02 -0.02,-0.04 -0.03,-0.06 -0.01,-0.01 -0.03,-0.02 -0.04,-0.03 -0.01,-0.01 -0.03,-0.01 -0.04,-0.01 -0.02,0 -0.04,0.01 -0.05,0.02 -0.02,0.01 -0.03,0.04 -0.03,0.08 0,0 0,0 0,0 0,0 0,0 0,0 z" + id="path434" /> + <polygon + class="st1" + points="" + id="polygon436" /> + <path + class="st1" + d="m 580.81,250.18 c 0.03,-0.35 0.01,-0.71 0.01,-1.06 0,-0.35 0,-0.71 -0.01,-1.06 0,-0.13 -0.2,-0.13 -0.2,0 0,0.35 0,0.71 -0.01,1.06 0,0.35 -0.02,0.71 0.01,1.06 0.02,0.12 0.18,0.12 0.2,0 z" + id="path438" /> + <path + class="st1" + d="m 580.76,254.11 c 0,0.05 0,0.11 0,0.16 0,0.06 0.01,0.11 0.01,0.17 0.01,0.09 0.14,0.09 0.14,0 0,-0.06 0.01,-0.11 0.01,-0.17 0,-0.05 0,-0.11 0,-0.16 0,-0.11 0,-0.22 0,-0.33 0,-0.11 -0.17,-0.11 -0.17,0 0.01,0.1 0.01,0.21 0.01,0.33 z" + id="path440" /> + <path + class="st1" + d="m 582.58,274.04 c -0.24,-0.02 -0.47,-0.03 -0.71,-0.04 -0.47,-0.02 -0.95,-0.04 -1.42,-0.07 -0.24,-0.01 -0.24,0.37 0,0.38 0.47,0.02 0.95,0.05 1.42,0.07 0.46,0.02 0.95,0.07 1.4,0 0.13,-0.02 0.11,-0.21 0,-0.24 -0.22,-0.07 -0.46,-0.08 -0.69,-0.1 z" + id="path442" /> + <path + class="st1" + d="m 586.3,274.46 c 0.09,0 0.09,-0.15 0,-0.15 -0.1,0 -0.1,0.15 0,0.15 z" + id="path444" /> + <path + class="st1" + d="m 587.96,275.3 c -0.33,0.02 -0.67,0.04 -1,0.06 -0.13,0.01 -0.13,0.22 0,0.21 0.34,-0.02 0.68,-0.04 1.02,-0.06 0.33,-0.02 0.68,-0.02 1,-0.09 0.09,-0.02 0.06,-0.14 -0.02,-0.15 -0.33,-0.03 -0.67,0.01 -1,0.03 z" + id="path446" /> + <path + class="st1" + d="m 589.29,273.71 c 0.48,0.02 0.95,0.04 1.43,0.05 0.48,0.02 0.98,0.06 1.46,-0.02 0.09,-0.02 0.09,-0.16 0,-0.18 -0.45,-0.11 -0.93,-0.1 -1.4,-0.12 -0.48,-0.02 -0.95,-0.03 -1.43,-0.04 -0.97,-0.03 -1.95,-0.06 -2.92,-0.1 -1.95,-0.08 -3.89,-0.14 -5.84,-0.2 -0.2,-0.01 -0.2,0.3 0,0.31 1.95,0.08 3.89,0.14 5.84,0.2 0.95,0.03 1.9,0.06 2.86,0.1 z" + id="path448" /> + <path + class="st1" + d="m 593.61,273.74 c 0.67,0.01 1.33,0.01 1.99,-0.02 0.66,-0.02 1.33,0.01 1.99,-0.05 0.11,-0.01 0.11,-0.16 0,-0.17 -0.66,-0.06 -1.33,-0.03 -1.99,-0.05 -0.67,-0.02 -1.33,-0.02 -1.99,-0.02 -0.2,0 -0.2,0.31 0,0.31 z" + id="path450" /> + <path + class="st1" + d="m 599.2,273.63 c 0.05,0 0.05,-0.08 0,-0.08 -0.22,-0.01 -0.44,-0.02 -0.67,-0.03 -0.09,0 -0.09,0.14 0,0.14 0.23,-0.01 0.45,-0.02 0.67,-0.03 z" + id="path452" /> + <path + class="st1" + d="m 601.13,273.71 c 0.38,0.01 0.76,0.05 1.13,0 0.15,-0.02 0.15,-0.22 0,-0.24 -0.37,-0.05 -0.76,-0.01 -1.13,0 -0.38,0.01 -0.75,0.03 -1.13,0.05 -0.09,0 -0.09,0.14 0,0.14 0.37,0.01 0.75,0.03 1.13,0.05 z" + id="path454" /> + <path + class="st1" + d="m 604.39,273.8 c 0.08,0.01 0.17,0.02 0.26,0.02 0.04,0 0.09,0 0.13,0 0.05,0 0.1,-0.01 0.15,-0.02 0.11,-0.01 0.11,-0.16 0,-0.17 -0.05,-0.01 -0.09,-0.02 -0.14,-0.02 -0.04,0 -0.09,0 -0.13,0 -0.09,0 -0.18,0.01 -0.27,0.02 -0.18,0.01 -0.35,0.02 -0.53,0.03 -0.07,0 -0.07,0.11 0,0.11 0.17,0.02 0.35,0.02 0.53,0.03 z" + id="path456" /> + <path + class="st1" + d="m 607.44,273.91 0.81,0.08 c 0.27,0.03 0.56,0.07 0.82,-0.01 0.1,-0.03 0.14,-0.18 0.03,-0.24 -0.25,-0.13 -0.55,-0.14 -0.83,-0.16 -0.28,-0.02 -0.55,-0.04 -0.83,-0.06 -0.1,-0.01 -0.19,0.09 -0.19,0.19 0,0.12 0.09,0.19 0.19,0.2 z" + id="path458" /> + <path + class="st1" + d="m 597.37,274.77 c -0.63,-0.11 -1.3,-0.06 -1.94,-0.07 -0.67,-0.01 -1.35,-0.02 -2.02,-0.03 -1.35,-0.01 -2.7,0 -4.05,0.01 -0.19,0 -0.19,0.29 0,0.29 1.35,0.04 2.7,0.07 4.05,0.09 0.66,0.01 1.31,0.01 1.96,0.01 0.66,0 1.35,0.07 2,-0.03 0.14,-0.02 0.14,-0.25 0,-0.27 z" + id="path460" /> + <path + class="st1" + d="m 592.95,275.81 c -0.49,0 -0.98,0 -1.46,0 -0.22,0 -0.22,0.33 0,0.34 0.49,0 0.98,0 1.46,0 0.49,0 0.98,0.02 1.46,-0.04 0.17,-0.02 0.17,-0.25 0,-0.27 -0.48,-0.05 -0.98,-0.03 -1.46,-0.03 z" + id="path462" /> + <path + class="st1" + d="m 598.49,275.77 c -0.43,0.03 -0.86,0.05 -1.29,0.08 -0.2,0.01 -0.2,0.32 0,0.31 0.43,-0.02 0.86,-0.04 1.29,-0.06 0.21,-0.01 0.43,-0.02 0.64,-0.03 0.21,-0.02 0.42,-0.02 0.63,-0.07 0.12,-0.03 0.13,-0.24 0,-0.25 -0.41,-0.06 -0.85,0 -1.27,0.02 z" + id="path464" /> + <path + class="st1" + d="m 605.68,276.03 c 0.34,0 0.66,0 1,-0.08 0.1,-0.02 0.1,-0.19 0,-0.21 -0.34,-0.08 -0.66,-0.08 -1,-0.08 -0.35,0 -0.7,0 -1.05,0.01 -0.7,0.02 -1.4,0.04 -2.1,0.04 -0.17,0 -0.17,0.27 0,0.27 0.7,0 1.4,0.02 2.1,0.04 0.35,0.01 0.7,0.01 1.05,0.01 z" + id="path466" /> + <path + class="st1" + d="m 602.56,274.92 c -0.27,-0.07 -0.56,-0.09 -0.83,-0.12 -0.27,-0.03 -0.55,-0.05 -0.83,-0.07 -0.57,-0.05 -1.13,-0.09 -1.7,-0.14 -0.22,-0.02 -0.22,0.33 0,0.35 0.55,0.04 1.11,0.09 1.66,0.13 0.27,0.02 0.54,0.05 0.81,0.07 0.28,0.01 0.57,0.04 0.85,0.01 0.13,-0.01 0.17,-0.2 0.04,-0.23 z" + id="path468" /> + <path + class="st1" + d="m 605.45,275.23 c 0.3,-0.02 0.6,-0.04 0.9,-0.06 0.15,-0.01 0.29,-0.01 0.44,-0.02 0.16,-0.01 0.32,-0.01 0.47,-0.08 0.13,-0.05 0.08,-0.25 -0.04,-0.29 -0.15,-0.04 -0.3,-0.02 -0.45,0 -0.15,0.02 -0.29,0.03 -0.44,0.05 -0.29,0.03 -0.59,0.06 -0.88,0.08 -0.08,0.01 -0.16,0.07 -0.16,0.16 0,0.08 0.08,0.17 0.16,0.16 z" + id="path470" /> + <path + class="st1" + d="m 587.66,277.14 c -0.52,0 -1.04,0.01 -1.56,0.01 -1.04,0 -2.09,0.07 -3.13,0.11 -0.19,0.01 -0.19,0.31 0,0.3 1.06,-0.03 2.13,-0.03 3.19,-0.1 0.52,-0.03 1.04,-0.06 1.56,-0.09 0.5,-0.03 1.03,-0.01 1.52,-0.09 0.09,-0.02 0.06,-0.15 -0.02,-0.16 -0.51,-0.04 -1.04,0.02 -1.56,0.02 z" + id="path472" /> + <path + class="st1" + d="m 587.92,277.87 c -0.33,0.02 -0.66,0.04 -0.98,0.06 -0.66,0.04 -1.31,0.08 -1.97,0.13 -0.24,0.02 -0.24,0.39 0,0.37 0.66,-0.04 1.31,-0.08 1.97,-0.13 0.33,-0.02 0.66,-0.04 0.98,-0.06 0.15,-0.01 0.3,-0.03 0.45,-0.05 0.16,-0.02 0.33,-0.02 0.48,-0.08 0.1,-0.04 0.12,-0.19 0,-0.22 -0.28,-0.07 -0.64,-0.04 -0.93,-0.02 z" + id="path474" /> + <path + class="st1" + d="m 593.62,277.8 c -0.24,-0.01 -0.48,0 -0.71,0 -0.47,0.01 -0.95,0.02 -1.42,0.03 -0.19,0 -0.19,0.29 0,0.29 0.47,0.01 0.95,0.02 1.42,0.03 0.24,0 0.48,0.02 0.71,0 0.22,-0.01 0.47,-0.01 0.69,-0.07 0.11,-0.03 0.11,-0.19 0,-0.23 -0.22,-0.05 -0.47,-0.04 -0.69,-0.05 z" + id="path476" /> + <path + class="st1" + d="m 604.15,278.24 c 0,0.05 0.04,0.1 0.1,0.1 0.18,-0.01 0.36,-0.01 0.53,-0.03 0.04,0 0.07,-0.03 0.07,-0.07 0,-0.04 -0.03,-0.07 -0.07,-0.07 -0.18,-0.02 -0.35,-0.02 -0.53,-0.03 -0.05,0 -0.1,0.05 -0.1,0.1 z" + id="path478" /> + <path + class="st1" + d="m 607.69,278.52 c 0.06,0 0.13,-0.01 0.19,-0.03 0.05,-0.01 0.09,-0.07 0.09,-0.12 0,-0.05 -0.04,-0.11 -0.09,-0.12 -0.06,-0.01 -0.13,-0.03 -0.19,-0.03 -0.06,0 -0.11,0 -0.17,0 -0.11,0 -0.23,0 -0.34,0 -0.08,0 -0.15,0.07 -0.15,0.15 0,0.08 0.06,0.15 0.15,0.15 0.11,0 0.23,0 0.34,0 0.05,0 0.11,0 0.17,0 z" + id="path480" /> + <path + class="st1" + d="m 597.2,281.94 c -0.2,0 -0.2,0.31 0,0.31 0.2,0.01 0.21,-0.31 0,-0.31 z" + id="path482" /> + <path + class="st1" + d="m 595.21,286.65 c 0.09,0 0.18,0 0.28,0 0.06,0 0.11,0 0.17,-0.01 0.06,-0.01 0.13,-0.01 0.17,-0.06 0.05,-0.06 0.05,-0.12 0,-0.18 -0.04,-0.05 -0.11,-0.05 -0.16,-0.06 -0.06,-0.01 -0.11,-0.01 -0.17,-0.01 -0.09,0 -0.18,0 -0.28,0 -0.08,0 -0.16,0.07 -0.16,0.16 -0.01,0.08 0.06,0.16 0.15,0.16 z" + id="path484" /> + <path + class="st1" + d="m 597.25,288.57 c 0.15,-0.01 0.3,-0.02 0.45,-0.02 0,0.03 0,0.06 -0.01,0.09 -0.01,0.18 -0.02,0.36 -0.03,0.54 -0.01,0.17 -0.04,0.35 -0.01,0.52 0.01,0.06 0.09,0.05 0.11,0 0.05,-0.16 0.04,-0.35 0.05,-0.52 0.01,-0.18 0.02,-0.36 0.03,-0.54 0,-0.03 0,-0.06 0.01,-0.1 0,0 0,0 0.01,0 0.2,-0.01 0.41,0 0.58,-0.12 0.06,-0.04 0.05,-0.13 -0.02,-0.15 -0.18,-0.07 -0.37,-0.02 -0.55,0.01 0.01,-0.24 0.03,-0.49 0.04,-0.73 0,-0.09 -0.14,-0.09 -0.14,0 -0.02,0.25 -0.03,0.5 -0.05,0.76 -0.16,0.03 -0.33,0.06 -0.49,0.08 -0.41,0.07 -0.82,0.14 -1.23,0.19 -0.04,0.01 -0.03,0.07 0.01,0.07 0.41,-0.03 0.83,-0.06 1.24,-0.08 z" + id="path486" /> + <path + class="st1" + d="m 597.94,290.19 c 0.01,0 0.02,0 0.03,0 l -0.01,0.65 c 0,0.28 0,0.55 0,0.83 0,0.28 -0.02,0.56 0.03,0.84 0.02,0.14 0.26,0.14 0.29,0 0.05,-0.28 0.03,-0.56 0.03,-0.84 0,-0.28 0,-0.55 0,-0.83 0,-0.21 -0.01,-0.43 -0.01,-0.64 0.23,0.01 0.45,0.02 0.66,-0.04 0.08,-0.02 0.08,-0.15 0,-0.17 -0.21,-0.05 -0.43,-0.05 -0.66,-0.04 0,-0.27 -0.01,-0.54 -0.01,-0.81 0,-0.19 -0.3,-0.19 -0.3,0 l -0.01,0.82 c -0.01,0 -0.02,0 -0.03,0 -0.34,0 -0.69,0.01 -1.03,0.01 -0.7,0.01 -1.4,0.02 -2.1,0.02 -0.1,0 -0.1,0.15 0,0.15 0.7,0.01 1.4,0.02 2.1,0.02 0.34,0.02 0.68,0.03 1.02,0.03 z" + id="path488" /> + <path + class="st1" + d="m 599.6,292.73 c -0.02,0 -0.04,0 -0.06,0 0.01,-0.3 0.02,-0.59 0.02,-0.89 0.02,-0.72 -0.04,-1.45 -0.04,-2.17 0,-0.05 -0.07,-0.05 -0.07,0 -0.04,0.72 -0.16,1.44 -0.19,2.17 -0.02,0.3 -0.03,0.61 -0.04,0.91 -0.12,0.02 -0.23,0.04 -0.35,0.05 -0.12,0.02 -0.24,0.03 -0.37,0.05 0,-0.13 0,-0.26 0,-0.39 0,-0.12 -0.19,-0.12 -0.19,0 0,0.14 0,0.28 0,0.42 -0.06,0.01 -0.12,0.02 -0.18,0.03 -0.35,0.05 -0.7,0.1 -1.04,0.15 0.01,-0.38 0.02,-0.76 0.01,-1.15 0.22,-0.01 0.45,-0.02 0.67,-0.05 0.08,-0.01 0.14,-0.11 0.14,-0.19 0,-0.02 0,-0.04 -0.01,-0.05 -0.02,-0.08 -0.11,-0.14 -0.19,-0.14 -0.21,0 -0.41,0.03 -0.62,0.05 0,-0.22 -0.01,-0.44 -0.01,-0.66 0,-0.17 -0.27,-0.17 -0.27,0 0,0.23 -0.01,0.46 -0.01,0.69 -0.22,0.02 -0.43,0.05 -0.65,0.07 -0.09,0.01 -0.17,0.07 -0.17,0.17 0,0.09 0.08,0.18 0.17,0.17 0.22,-0.01 0.43,-0.03 0.65,-0.04 -0.01,0.39 0.01,0.78 0.02,1.16 -0.06,0.01 -0.11,0.02 -0.17,0.02 -0.22,0.03 -0.12,0.36 0.09,0.33 0.03,0 0.06,-0.01 0.09,-0.01 0.01,0.16 0,0.33 0.02,0.49 0.01,0.14 0.2,0.14 0.21,0 0.02,-0.17 0.01,-0.35 0.02,-0.52 0.37,-0.05 0.75,-0.1 1.12,-0.15 0.04,-0.01 0.08,-0.01 0.12,-0.02 0,0.2 0,0.39 0,0.59 0,0.22 -0.01,0.44 -0.01,0.67 0,0.11 -0.01,0.21 -0.01,0.32 0,0.11 -0.03,0.24 0.02,0.35 0.04,0.1 0.16,0.1 0.21,0 0.04,-0.1 0.02,-0.22 0.02,-0.32 0,-0.12 -0.01,-0.23 -0.01,-0.35 -0.01,-0.22 -0.01,-0.44 -0.01,-0.67 0,-0.21 0,-0.41 0,-0.62 0.13,-0.02 0.27,-0.04 0.4,-0.06 0.1,-0.01 0.2,-0.04 0.3,-0.05 -0.01,0.28 -0.03,0.58 0.04,0.85 0.02,0.09 0.15,0.08 0.18,0 0.09,-0.28 0.09,-0.6 0.1,-0.9 0.04,-0.01 0.08,-0.01 0.12,-0.02 0.14,-0.03 0.11,-0.29 -0.07,-0.29 z" + id="path490" /> + <path + class="st1" + d="m 597.31,294.22 c -0.02,0 -0.04,0.01 -0.06,0.01 -0.03,0.01 -0.06,0.01 -0.09,0.02 -0.06,0.02 -0.12,0.05 -0.18,0.07 -0.12,0.05 -0.23,0.09 -0.35,0.14 -0.04,0.01 -0.06,0.03 -0.08,0.06 -0.02,0.03 -0.03,0.07 -0.01,0.11 0.02,0.07 0.1,0.13 0.17,0.1 0.12,-0.05 0.24,-0.09 0.36,-0.14 0.06,-0.03 0.13,-0.05 0.19,-0.08 0.03,-0.01 0.05,-0.03 0.08,-0.05 0.02,-0.01 0.04,-0.02 0.06,-0.04 0.02,-0.02 0.03,-0.04 0.04,-0.07 0.02,-0.04 -0.01,-0.1 -0.05,-0.12 -0.03,0 -0.05,-0.01 -0.08,-0.01 z" + id="path492" /> + <path + class="st1" + d="m 593.05,286.75 c 0,0.22 -0.01,0.44 0,0.67 0,0.04 0.06,0.04 0.06,0 0.01,-0.22 0,-0.44 0,-0.67 0,-0.04 -0.06,-0.04 -0.06,0 z" + id="path494" /> + <path + class="st1" + d="m 596.37,289.26 c -0.02,-0.06 -0.08,-0.1 -0.14,-0.08 -0.06,0.02 -0.1,0.08 -0.08,0.14 l 0.06,0.21 c 0.01,0.04 0.02,0.09 0.04,0.12 0.02,0.04 0.04,0.07 0.07,0.1 0.02,0.03 0.07,0.03 0.1,0.02 0.04,-0.02 0.05,-0.05 0.06,-0.08 0,-0.04 0,-0.09 -0.01,-0.13 -0.01,-0.03 -0.02,-0.07 -0.03,-0.1 -0.02,-0.07 -0.05,-0.14 -0.07,-0.2 z" + id="path496" /> + <path + class="st1" + d="m 598.53,291.05 c 0.05,0 0.05,-0.07 0,-0.07 -0.04,-0.01 -0.04,0.07 0,0.07 z" + id="path498" /> + <path + class="st1" + d="m 598.27,295.87 c 0.09,0 0.09,-0.14 0,-0.14 -0.09,0 -0.09,0.14 0,0.14 z" + id="path500" /> + <path + class="st1" + d="m 584.45,280.21 c 0.32,0.01 0.65,0.02 0.95,-0.09 0.14,-0.05 0.14,-0.23 0,-0.28 -0.3,-0.11 -0.63,-0.1 -0.95,-0.09 -0.32,0.01 -0.63,0.03 -0.95,0.05 -0.24,0.01 -0.24,0.36 0,0.37 0.32,0.01 0.64,0.03 0.95,0.04 z" + id="path502" /> + <path + class="st1" + d="m 587.33,280.31 c -0.01,-0.02 -0.02,-0.03 -0.04,-0.04 -0.02,-0.01 -0.04,-0.02 -0.06,-0.02 -0.03,0 -0.06,0.01 -0.08,0.03 -0.01,0.01 -0.02,0.02 -0.02,0.04 -0.01,0.01 -0.01,0.03 -0.01,0.04 0,0.02 0.01,0.04 0.02,0.06 0.01,0.02 0.02,0.03 0.04,0.04 l 0.15,0.1 c 0.01,0 0.01,0.01 0.02,0.01 0.01,0 0.02,0 0.03,0 0.02,0 0.03,-0.01 0.04,-0.02 0.01,-0.01 0.02,-0.02 0.02,-0.03 0,-0.01 0,-0.02 0,-0.03 0,-0.01 0,-0.02 -0.01,-0.03 -0.04,-0.05 -0.07,-0.1 -0.1,-0.15 z" + id="path504" /> + <path + class="st1" + d="m 585.04,281.82 c -0.24,0 -0.49,0 -0.73,0 -0.19,0 -0.19,0.3 0,0.3 0.24,0 0.49,0 0.73,0 0.24,0 0.49,-0.02 0.73,-0.03 0.15,-0.01 0.15,-0.23 0,-0.24 -0.25,-0.02 -0.49,-0.03 -0.73,-0.03 z" + id="path506" /> + <path + class="st1" + d="m 584.76,283.41 c -0.13,-0.01 -0.25,-0.01 -0.37,-0.01 -0.25,0 -0.5,0 -0.75,0 -0.21,0 -0.21,0.33 0,0.33 0.25,0 0.5,0 0.75,0 0.13,0 0.25,-0.01 0.37,-0.01 0.13,-0.01 0.25,0 0.38,-0.04 0.11,-0.04 0.11,-0.19 0,-0.23 -0.13,-0.04 -0.26,-0.03 -0.38,-0.04 z" + id="path508" /> + <path + class="st1" + d="m 586.17,283.81 c 0.15,0 0.15,-0.23 0,-0.23 -0.15,0 -0.15,0.23 0,0.23 z" + id="path510" /> + <path + class="st1" + d="m 584.4,284.98 c -0.15,-0.03 -0.31,-0.05 -0.46,-0.08 -0.06,-0.01 -0.11,0.02 -0.12,0.08 -0.01,0.06 0.04,0.1 0.1,0.11 0.16,0.02 0.31,0.04 0.47,0.06 0.15,0.02 0.31,0.03 0.47,0.03 0.06,0 0.08,-0.09 0.01,-0.11 -0.16,-0.03 -0.32,-0.06 -0.47,-0.09 z" + id="path512" /> + <path + class="st1" + d="m 585.63,285.05 c -0.31,0 -0.31,0.48 0,0.48 0.31,0 0.31,-0.48 0,-0.48 z" + id="path514" /> + <path + class="st1" + d="m 583.04,290.84 c -0.3,-0.04 -0.6,-0.03 -0.9,0.05 -0.16,0.04 -0.09,0.3 0.07,0.25 0.25,-0.07 0.52,-0.08 0.78,-0.04 0.13,0.02 0.26,0.05 0.39,0.1 0.12,0.05 0.25,0.1 0.37,0.13 0.09,0.02 0.15,-0.09 0.09,-0.16 -0.18,-0.2 -0.52,-0.29 -0.8,-0.33 z" + id="path516" /> + <path + class="st1" + d="m 584.04,291.52 c 0.15,0 0.15,-0.23 0,-0.23 -0.15,0.01 -0.15,0.23 0,0.23 z" + id="path518" /> + <path + class="st1" + d="m 583.4,292.78 c -0.05,-0.02 -0.1,-0.02 -0.15,-0.03 -0.03,0 -0.06,-0.01 -0.08,-0.01 -0.04,-0.01 -0.04,-0.02 -0.09,-0.03 -0.1,-0.01 -0.2,0 -0.3,0 -0.2,0 -0.41,0 -0.61,-0.01 -0.09,0 -0.17,0.08 -0.17,0.17 0,0.09 0.08,0.17 0.17,0.17 l 0.61,-0.01 c 0.1,0 0.2,0 0.3,0 0.04,0 0.05,-0.01 0.09,-0.03 0.02,-0.01 0.05,-0.01 0.07,-0.01 0.05,-0.01 0.11,-0.02 0.16,-0.03 0.09,-0.03 0.09,-0.15 0,-0.18 z" + id="path520" /> + <path + class="st1" + d="m 583.77,292.96 c 0.11,0 0.11,-0.17 0,-0.17 -0.11,0 -0.11,0.17 0,0.17 z" + id="path522" /> + <path + class="st1" + d="m 580.58,295.01 c 0.2,0 0.41,0.01 0.61,0.01 0.1,0 0.2,0 0.31,0 0.11,0 0.21,-0.02 0.31,-0.03 0.12,-0.02 0.12,-0.22 0,-0.24 -0.11,-0.01 -0.21,-0.03 -0.31,-0.03 -0.1,0 -0.2,0 -0.31,0 -0.2,0 -0.41,0.01 -0.61,0.01 -0.18,0 -0.18,0.27 0,0.28 z" + id="path524" /> + <path + class="st1" + d="m 583.51,295.11 c 0.14,0 0.14,-0.22 0,-0.22 -0.14,0 -0.15,0.22 0,0.22 z" + id="path526" /> + <path + class="st1" + d="m 582.99,296.37 c -0.17,0 -0.34,-0.04 -0.51,-0.03 -0.16,0.01 -0.33,0.02 -0.49,0.03 -0.34,0.02 -0.67,0.04 -1.01,0.06 -0.21,0.01 -0.21,0.34 0,0.33 0.34,-0.01 0.67,-0.03 1.01,-0.04 0.16,-0.01 0.33,-0.01 0.49,-0.03 0.14,-0.01 0.27,-0.04 0.41,-0.07 -0.01,0.01 -0.04,0.02 -0.06,0.03 -0.06,0.01 -0.05,0.09 0,0.11 0.17,0.06 0.33,-0.15 0.27,-0.3 -0.02,-0.05 -0.06,-0.08 -0.11,-0.09 z" + id="path528" /> + <path + class="st1" + d="m 581.43,297.64 c -0.14,0.01 -0.28,0.02 -0.42,0.03 -0.28,0.03 -0.55,0.05 -0.83,0.08 -0.1,0.01 -0.18,0.08 -0.18,0.18 0,0.09 0.08,0.19 0.18,0.18 0.28,-0.02 0.56,-0.04 0.84,-0.06 0.14,-0.01 0.27,-0.02 0.41,-0.04 0.15,-0.02 0.33,-0.01 0.45,-0.11 0.07,-0.06 0.05,-0.18 -0.03,-0.23 -0.12,-0.08 -0.28,-0.04 -0.42,-0.03 z" + id="path530" /> + <path + class="st1" + d="m 582.31,298.16 c 0.13,0 0.13,-0.2 0,-0.2 -0.13,0 -0.13,0.2 0,0.2 z" + id="path532" /> + <path + class="st1" + d="m 580.9,300.05 c -0.06,-0.01 -0.12,-0.03 -0.19,-0.03 h -0.19 c -0.25,0 -0.5,0 -0.75,0 -0.21,0 -0.21,0.33 0,0.33 0.25,0 0.5,0 0.75,0 0.06,0 0.11,0 0.17,0 0.07,0 0.13,-0.02 0.2,-0.03 0.12,-0.02 0.25,-0.02 0.37,-0.05 0.08,-0.02 0.08,-0.15 0,-0.17 -0.11,-0.03 -0.24,-0.03 -0.36,-0.05 z" + id="path534" /> + <path + class="st1" + d="m 579.38,303.95 c 0.27,0.02 0.54,0.05 0.81,0.07 0.14,0.01 0.27,0.02 0.41,0.01 0.13,0 0.27,0.01 0.4,-0.03 0.08,-0.02 0.11,-0.15 0.02,-0.19 -0.12,-0.05 -0.26,-0.07 -0.39,-0.09 -0.14,-0.03 -0.29,-0.05 -0.43,-0.06 -0.28,-0.02 -0.55,-0.04 -0.83,-0.07 -0.1,-0.01 -0.18,0.09 -0.18,0.18 0.02,0.11 0.1,0.18 0.19,0.18 z" + id="path536" /> + <path + class="st1" + d="m 581.64,304.01 c -0.21,0 -0.21,0.32 0,0.32 0.21,0.01 0.21,-0.32 0,-0.32 z" + id="path538" /> + <path + class="st1" + d="m 580.71,305.73 c -0.15,0 -0.29,0 -0.44,0.01 -0.29,0 -0.59,0.01 -0.88,0.01 -0.2,0 -0.2,0.31 0,0.31 0.29,0 0.59,0.01 0.88,0.01 0.15,0 0.29,0.01 0.44,0.01 0.14,0 0.31,0.01 0.44,-0.04 0.13,-0.05 0.13,-0.21 0,-0.27 -0.13,-0.05 -0.3,-0.04 -0.44,-0.04 z" + id="path540" /> + <path + class="st1" + d="m 577.52,308.22 c 0.38,0 0.77,0.01 1.15,0.01 0.19,0 0.38,0.01 0.57,0 0.18,-0.01 0.41,0.01 0.58,-0.06 0.13,-0.06 0.13,-0.22 0,-0.27 -0.17,-0.07 -0.4,-0.05 -0.58,-0.06 -0.19,-0.01 -0.38,0 -0.57,0 -0.38,0 -0.77,0.01 -1.15,0.01 -0.23,0 -0.23,0.36 0,0.37 z" + id="path542" /> + <path + class="st1" + d="m 580.81,308.07 c -0.01,-0.01 -0.03,-0.02 -0.05,-0.03 -0.02,-0.01 -0.03,-0.01 -0.05,-0.01 -0.01,0 -0.03,0 -0.04,0.01 -0.02,0.01 -0.04,0.02 -0.06,0.04 -0.01,0.01 -0.01,0.02 -0.02,0.03 -0.01,0.02 -0.02,0.05 -0.02,0.07 0,0.02 0,0.05 0.01,0.07 0,0.02 0,0.03 0.01,0.05 0,0.01 0,0.01 0.01,0.02 0,0.01 0.01,0.02 0.01,0.03 0,0.01 0.01,0.02 0.01,0.03 0.01,0.01 0.02,0.02 0.03,0.03 0.01,0.01 0.02,0.01 0.03,0.01 0.01,0.01 0.03,0.01 0.04,0.01 0.01,0 0.02,0 0.03,0 0.01,0 0.02,-0.01 0.03,-0.01 0.03,-0.01 0.04,-0.04 0.05,-0.07 0,-0.01 0.01,-0.02 0.01,-0.03 0,-0.01 0,-0.01 0.01,-0.02 0.01,-0.02 0.01,-0.03 0.01,-0.05 0,-0.02 0,-0.05 0.01,-0.07 0,-0.02 0,-0.04 -0.01,-0.05 -0.02,-0.04 -0.03,-0.05 -0.05,-0.06 z" + id="path544" /> + <path + class="st1" + d="m 579.73,309.5 c -0.13,0 -0.26,0.02 -0.39,0.03 -0.25,0.02 -0.51,0.05 -0.76,0.07 -0.08,0.01 -0.16,0.07 -0.16,0.16 0,0.08 0.07,0.17 0.16,0.16 0.25,-0.02 0.51,-0.05 0.76,-0.07 0.13,-0.01 0.26,-0.02 0.39,-0.04 0.06,-0.01 0.12,-0.02 0.18,-0.03 -0.13,0.02 -0.13,0.22 0.01,0.22 0.14,0 0.14,-0.21 0.01,-0.22 0.07,-0.01 0.13,-0.01 0.19,-0.05 0.07,-0.05 0.09,-0.16 0,-0.2 -0.13,-0.06 -0.26,-0.03 -0.39,-0.03 z" + id="path546" /> + <path + class="st1" + d="m 578.07,311.77 c -0.27,-0.02 -0.54,-0.04 -0.81,-0.06 -0.08,-0.01 -0.16,0.08 -0.16,0.16 0,0.09 0.07,0.15 0.16,0.16 0.27,0.02 0.53,0.04 0.8,0.06 0.26,0.02 0.54,0.06 0.8,0.03 0.14,-0.02 0.18,-0.21 0.03,-0.25 -0.26,-0.08 -0.55,-0.08 -0.82,-0.1 z" + id="path548" /> + <path + class="st1" + d="m 578.22,313.76 c -0.07,-0.02 -0.15,-0.04 -0.22,-0.04 h -0.2 c -0.14,0 -0.27,0 -0.41,-0.01 -0.09,0 -0.17,0.08 -0.17,0.17 0,0.09 0.07,0.17 0.17,0.17 l 0.41,-0.01 c 0.07,0 0.13,0 0.2,0 0.08,0 0.15,-0.02 0.22,-0.04 0.12,-0.02 0.12,-0.21 0,-0.24 z" + id="path550" /> + <path + class="st1" + d="m 578.72,314.07 c -0.03,0.01 -0.07,0.01 -0.1,0.02 -0.07,0.02 -0.14,0.03 -0.21,0.05 -0.04,0.01 -0.08,0.04 -0.1,0.08 -0.03,0.05 -0.03,0.1 -0.01,0.15 0.02,0.04 0.05,0.07 0.09,0.09 0.02,0.01 0.04,0.02 0.07,0.01 0.03,0 0.06,-0.01 0.09,-0.02 0.06,-0.03 0.13,-0.06 0.19,-0.08 0.03,-0.01 0.06,-0.03 0.09,-0.04 0.03,-0.01 0.06,-0.03 0.09,-0.05 0.04,-0.03 0.07,-0.08 0.05,-0.13 -0.02,-0.05 -0.06,-0.09 -0.11,-0.09 -0.05,-0.01 -0.09,0 -0.14,0.01 z" + id="path552" /> + <path + class="st1" + d="m 576.1,324.37 c -0.04,0 -0.07,-0.01 -0.11,-0.01 -0.08,-0.01 -0.16,-0.02 -0.25,-0.02 -0.16,0 -0.32,0 -0.48,0 -0.1,0 -0.19,0.09 -0.19,0.19 0,0.1 0.08,0.19 0.19,0.19 0.16,0 0.32,0 0.48,0 0.08,0 0.16,-0.01 0.24,-0.02 0.04,0 0.08,-0.01 0.12,-0.01 0.06,-0.01 0.1,-0.02 0.16,-0.05 0.09,-0.04 0.09,-0.19 0,-0.22 -0.06,-0.03 -0.1,-0.05 -0.16,-0.05 z" + id="path554" /> + <path + class="st1" + d="m 577.12,324.75 c -0.03,0 -0.06,0.01 -0.09,0.02 -0.04,0.02 -0.07,0.03 -0.11,0.05 -0.02,0.01 -0.03,0.02 -0.04,0.04 -0.01,0.02 -0.02,0.04 -0.02,0.06 0,0.02 0.01,0.04 0.02,0.06 0.01,0.02 0.02,0.03 0.04,0.04 0.03,0.02 0.07,0.03 0.11,0.05 0.03,0.02 0.06,0.02 0.09,0.02 0.03,0 0.06,-0.01 0.09,-0.02 0.05,-0.03 0.09,-0.09 0.09,-0.15 0,-0.06 -0.03,-0.12 -0.09,-0.15 -0.03,-0.01 -0.06,-0.02 -0.09,-0.02 z" + id="path556" /> + <path + class="st1" + d="m 574.99,326.92 c -0.16,0 -0.16,0.25 0,0.25 0.17,0.01 0.17,-0.25 0,-0.25 z" + id="path558" /> + <path + class="st1" + d="m 576.86,327.12 c 0.09,0 0.09,-0.14 0,-0.14 -0.09,0 -0.09,0.14 0,0.14 z" + id="path560" /> + <path + class="st1" + d="m 572.73,329.88 c 0.27,0 0.54,0 0.81,0 0.27,0 0.56,0.03 0.82,-0.04 0.13,-0.03 0.13,-0.23 0,-0.27 -0.26,-0.07 -0.55,-0.04 -0.82,-0.04 -0.27,0 -0.54,0 -0.81,0 -0.21,0.01 -0.21,0.35 0,0.35 z" + id="path562" /> + <path + class="st1" + d="m 575.96,329.6 c -0.06,-0.01 -0.11,-0.02 -0.17,-0.03 -0.12,-0.02 -0.23,-0.04 -0.35,-0.06 -0.05,-0.01 -0.1,-0.01 -0.15,0.02 -0.04,0.02 -0.08,0.07 -0.09,0.11 -0.02,0.1 0.03,0.21 0.13,0.23 0.12,0.03 0.23,0.05 0.35,0.08 0.06,0.01 0.11,0.02 0.17,0.04 0.04,0.01 0.09,0.02 0.13,0.02 0.06,0 0.11,-0.03 0.16,-0.08 0.05,-0.05 0.05,-0.13 0.02,-0.19 -0.03,-0.06 -0.07,-0.1 -0.13,-0.12 -0.01,0 -0.04,-0.01 -0.07,-0.02 z" + id="path564" /> + <path + class="st1" + d="m 574.01,331.56 c -0.16,0 -0.32,0 -0.47,0 -0.08,0 -0.15,0.07 -0.15,0.14 0,0.08 0.06,0.15 0.15,0.15 0.16,0 0.32,0 0.47,0 0.08,0 0.16,-0.01 0.24,-0.02 0.08,-0.01 0.17,0 0.24,-0.03 0.09,-0.03 0.09,-0.15 0,-0.18 -0.08,-0.03 -0.16,-0.03 -0.24,-0.03 -0.09,-0.02 -0.16,-0.03 -0.24,-0.03 z" + id="path566" /> + <path + class="st1" + d="m 575.13,331.55 c -0.2,0 -0.2,0.31 0,0.31 0.19,0 0.19,-0.31 0,-0.31 z" + id="path568" /> + <path + class="st1" + d="m 572.8,333.95 c 0.09,-0.05 0.09,-0.19 0,-0.24 -0.11,-0.06 -0.24,-0.05 -0.36,-0.06 -0.12,-0.01 -0.23,-0.01 -0.35,-0.01 -0.23,0 -0.46,0 -0.69,0 -0.1,0 -0.19,0.09 -0.19,0.19 0,0.1 0.09,0.19 0.19,0.19 0.23,0 0.46,0 0.69,0 0.11,0 0.23,0 0.34,-0.01 0.13,-0.01 0.26,0 0.37,-0.06 z" + id="path570" /> + <path + class="st1" + d="m 574.29,333.81 c -0.07,-0.01 -0.14,-0.02 -0.21,-0.02 -0.14,0 -0.28,0 -0.42,0 -0.09,0 -0.17,0.08 -0.17,0.17 0,0.09 0.07,0.16 0.17,0.17 0.14,0 0.28,0 0.42,0 0.07,0 0.14,-0.01 0.21,-0.02 0.08,-0.01 0.16,-0.01 0.23,-0.05 0.08,-0.05 0.08,-0.16 0,-0.2 -0.07,-0.04 -0.15,-0.04 -0.23,-0.05 z" + id="path572" /> + <path + class="st1" + d="m 573.42,335.67 c -0.09,-0.03 -0.18,-0.06 -0.27,-0.09 -0.17,-0.05 -0.35,-0.1 -0.52,-0.14 -0.06,-0.02 -0.13,0.01 -0.17,0.06 0.05,-0.1 0.01,-0.24 -0.13,-0.24 -0.21,0 -0.21,0.32 0,0.32 0.04,0 0.07,-0.02 0.09,-0.04 0,0 -0.01,0.01 -0.01,0.01 -0.02,0.09 0.03,0.19 0.12,0.22 0.17,0.05 0.35,0.1 0.52,0.15 0.09,0.03 0.18,0.05 0.27,0.07 0.05,0.01 0.1,0.03 0.15,0.03 0.07,0 0.14,-0.04 0.16,-0.11 0.02,-0.07 -0.02,-0.15 -0.08,-0.18 -0.03,-0.03 -0.08,-0.04 -0.13,-0.06 z" + id="path574" /> + <path + class="st1" + d="m 571.54,346.87 c -0.11,-0.03 -0.22,-0.06 -0.34,-0.08 -0.23,-0.04 -0.46,-0.08 -0.68,-0.12 -0.1,-0.02 -0.22,0.03 -0.25,0.14 -0.02,0.1 0.03,0.22 0.14,0.25 0.23,0.05 0.46,0.1 0.69,0.16 0.11,0.03 0.23,0.04 0.34,0.05 0.13,0.02 0.27,0.05 0.4,0.02 0.06,-0.02 0.11,-0.07 0.12,-0.13 0.01,-0.07 -0.02,-0.12 -0.08,-0.16 -0.09,-0.08 -0.22,-0.1 -0.34,-0.13 z" + id="path576" /> + <path + class="st1" + d="m 572.72,347.15 c -0.02,-0.02 -0.03,-0.03 -0.05,-0.03 -0.02,-0.01 -0.04,-0.02 -0.06,-0.01 -0.06,0 -0.11,0.03 -0.14,0.08 -0.03,0.05 -0.06,0.11 -0.09,0.16 0,0.01 -0.01,0.02 -0.01,0.03 0,0.02 -0.01,0.03 0,0.05 0,0.01 0,0.02 0.01,0.03 0,0.01 0.01,0.03 0.02,0.04 0.01,0.01 0.02,0.01 0.02,0.02 0.01,0 0.02,0.01 0.03,0.01 0.02,0 0.03,0.01 0.05,0 0.02,0 0.03,-0.01 0.04,-0.01 0.05,-0.03 0.11,-0.06 0.16,-0.09 0.05,-0.03 0.08,-0.09 0.08,-0.14 l -0.01,-0.04 c -0.02,-0.06 -0.03,-0.08 -0.05,-0.1 z" + id="path578" /> + <path + class="st1" + d="m 567.95,350.24 c 0.25,0 0.5,0 0.75,0.01 0.12,0 0.24,0 0.37,0 0.06,0 0.12,0 0.18,0 0.07,0 0.14,-0.04 0.21,-0.06 0.13,-0.03 0.13,-0.22 0,-0.25 -0.06,-0.02 -0.12,-0.05 -0.19,-0.06 -0.07,-0.01 -0.13,-0.01 -0.2,-0.01 -0.12,0 -0.24,0 -0.37,0 l -0.75,0.01 c -0.24,-0.01 -0.24,0.36 0,0.36 z" + id="path580" /> + <path + class="st1" + d="m 571.11,350.29 c -0.01,-0.02 -0.02,-0.04 -0.04,-0.06 -0.02,-0.02 -0.04,-0.03 -0.06,-0.04 -0.01,0 -0.02,0 -0.03,-0.01 -0.02,0 -0.05,-0.01 -0.07,-0.01 -0.03,-0.01 -0.05,-0.01 -0.08,0 -0.03,0.01 -0.05,0.02 -0.07,0.04 -0.01,0.01 -0.02,0.02 -0.02,0.03 -0.01,0.02 -0.02,0.05 -0.02,0.08 0,0.02 0,0.04 0.01,0.06 0.01,0.02 0.02,0.04 0.03,0.05 0.02,0.02 0.04,0.03 0.07,0.04 0.03,0.01 0.05,0.01 0.08,0 l 0.07,-0.01 c 0.01,0 0.02,0 0.03,-0.01 0.02,-0.01 0.04,-0.02 0.06,-0.04 0.01,-0.01 0.02,-0.03 0.03,-0.04 0,-0.01 0.01,-0.01 0.01,-0.02 0,-0.01 0.01,-0.02 0.01,-0.03 0,-0.01 0,-0.02 -0.01,-0.03 0,0 0,0 0,0 z" + id="path582" /> + <path + class="st1" + d="m 569.96,351.82 c -0.09,0.01 -0.18,0.02 -0.27,0.03 -0.18,0.02 -0.36,0.05 -0.54,0.07 -0.08,0.01 -0.15,0.06 -0.15,0.15 0,0.07 0.07,0.16 0.15,0.15 0.18,-0.02 0.37,-0.04 0.55,-0.07 0.09,-0.01 0.19,-0.02 0.28,-0.03 0.1,-0.01 0.2,-0.02 0.29,-0.08 0.09,-0.06 0.07,-0.19 -0.03,-0.22 -0.09,-0.03 -0.18,-0.01 -0.28,0 z" + id="path584" /> + <path + class="st1" + d="m 570.74,352.15 c 0.12,0 0.12,-0.19 0,-0.19 -0.12,0 -0.13,0.19 0,0.19 z" + id="path586" /> + <path + class="st1" + d="m 566.4,354.63 c 0.3,-0.05 0.61,-0.06 0.9,-0.02 0.15,0.02 0.3,0.06 0.45,0.1 0.15,0.04 0.31,0.12 0.46,0.12 0.13,0 0.17,-0.14 0.1,-0.23 -0.06,-0.07 -0.14,-0.11 -0.22,-0.14 -0.08,-0.04 -0.17,-0.07 -0.26,-0.11 -0.16,-0.06 -0.33,-0.09 -0.5,-0.11 -0.35,-0.04 -0.69,-0.03 -1.03,0.04 -0.1,0.02 -0.15,0.13 -0.13,0.22 0.04,0.1 0.13,0.15 0.23,0.13 z" + id="path588" /> + <path + class="st1" + d="m 570.19,354.71 c -0.02,-0.01 -0.04,-0.01 -0.07,-0.01 -0.01,0 -0.01,0 -0.02,0 h -0.16 c -0.04,0 -0.08,0.02 -0.11,0.04 -0.03,0.03 -0.05,0.07 -0.04,0.11 0,0.04 0.01,0.08 0.04,0.11 0.03,0.03 0.07,0.04 0.11,0.04 h 0.13 c 0.03,0 0.07,0 0.1,-0.01 0.03,-0.01 0.06,-0.03 0.08,-0.04 0.08,-0.05 0.08,-0.16 0,-0.2 -0.02,-0.02 -0.04,-0.03 -0.06,-0.04 z" + id="path590" /> + <path + class="st1" + d="m 568.66,356.42 c -0.08,0 -0.16,0 -0.24,0 -0.16,0 -0.32,0 -0.47,-0.01 -0.08,0 -0.17,0.08 -0.16,0.16 0,0.09 0.07,0.16 0.16,0.16 0.16,0 0.32,0 0.47,-0.01 0.08,0 0.16,0 0.24,0 0.09,0 0.17,-0.01 0.25,-0.03 0.12,-0.03 0.12,-0.21 0,-0.24 -0.08,-0.02 -0.17,-0.03 -0.25,-0.03 z" + id="path592" /> + <path + class="st1" + d="m 566.48,358.8 c -0.09,0.01 -0.17,0.07 -0.17,0.17 0,0.08 0.08,0.18 0.17,0.17 0.25,-0.02 0.5,-0.05 0.75,-0.07 0.25,-0.02 0.51,-0.02 0.75,-0.1 0.16,-0.05 0.12,-0.26 -0.04,-0.28 -0.24,-0.03 -0.49,0.02 -0.73,0.04 -0.24,0.03 -0.48,0.05 -0.73,0.07 z" + id="path594" /> + <path + class="st1" + d="m 569.28,359.19 c 0.12,0 0.12,-0.18 0,-0.18 -0.12,0 -0.12,0.18 0,0.18 z" + id="path596" /> + <path + class="st1" + d="m 567.92,360.64 c -0.17,0 -0.34,0 -0.51,0.01 -0.35,0.01 -0.71,0.02 -1.06,0.03 -0.21,0 -0.21,0.32 0,0.32 0.35,0 0.71,0.01 1.06,0.03 0.17,0.01 0.34,0.01 0.51,0.01 0.15,0 0.44,0.03 0.44,-0.19 0,-0.24 -0.29,-0.22 -0.44,-0.21 z" + id="path598" /> + <path + class="st1" + d="m 568.75,360.96 c -0.02,-0.02 -0.04,-0.03 -0.06,-0.04 -0.02,-0.01 -0.05,-0.02 -0.07,-0.02 -0.02,0 -0.03,0 -0.05,0.01 -0.03,0.01 -0.06,0.03 -0.08,0.05 -0.01,0.01 -0.02,0.03 -0.03,0.04 -0.02,0.03 -0.03,0.06 -0.03,0.1 0,0.02 0,0.05 0.01,0.07 v 0.02 c 0,0 0,0.01 0,0.01 0,0.03 0,0.05 0.02,0.07 0.01,0.02 0.02,0.04 0.04,0.06 0.01,0.01 0.03,0.03 0.05,0.04 0.02,0.01 0.05,0.02 0.08,0.02 0.03,0 0.05,-0.01 0.08,-0.02 0.02,-0.01 0.04,-0.03 0.05,-0.04 0.01,-0.01 0.02,-0.02 0.03,-0.04 0.02,-0.03 0.03,-0.06 0.03,-0.09 0,0 0,-0.01 0,-0.01 v -0.02 c 0,-0.02 0,-0.05 0.01,-0.07 0,-0.03 0,-0.05 -0.02,-0.07 -0.03,-0.03 -0.05,-0.05 -0.06,-0.07 z" + id="path600" /> + <path + class="st1" + d="m 567.21,363.08 c -0.29,-0.02 -0.57,-0.04 -0.86,-0.06 -0.1,-0.01 -0.18,0.09 -0.18,0.18 0,0.11 0.08,0.18 0.18,0.18 0.28,0.02 0.56,0.04 0.85,0.06 0.14,0.01 0.27,0.02 0.41,0.03 0.07,0.01 0.15,0 0.22,-0.01 0.08,-0.01 0.15,-0.01 0.21,-0.07 0.03,-0.04 0.05,-0.1 0.02,-0.15 -0.09,-0.12 -0.28,-0.14 -0.42,-0.15 -0.15,0.01 -0.29,0 -0.43,-0.01 z" + id="path602" /> + <path + class="st1" + d="m 564.58,372.43 c 0.21,-0.11 0.44,-0.15 0.68,-0.13 0.11,0.01 0.22,0.03 0.33,0.07 0.12,0.04 0.23,0.11 0.35,0.14 0.11,0.02 0.21,-0.09 0.15,-0.2 -0.08,-0.13 -0.24,-0.21 -0.38,-0.26 -0.14,-0.06 -0.29,-0.09 -0.44,-0.1 -0.3,-0.02 -0.6,0.05 -0.86,0.19 -0.19,0.1 -0.02,0.39 0.17,0.29 z" + id="path604" /> + <path + class="st1" + d="m 566.62,372.64 c 0.14,0 0.14,-0.22 0,-0.22 -0.15,0 -0.15,0.22 0,0.22 z" + id="path606" /> + <path + class="st1" + d="m 562.09,375.9 c 0.29,0 0.58,0.01 0.86,0.01 0.14,0 0.28,0 0.42,0 0.15,-0.01 0.29,-0.03 0.44,-0.05 0.17,-0.02 0.17,-0.25 0,-0.27 -0.15,-0.02 -0.29,-0.04 -0.44,-0.05 -0.14,-0.01 -0.28,0 -0.42,0 -0.29,0 -0.58,0.01 -0.86,0.01 -0.22,0 -0.22,0.34 0,0.35 z" + id="path608" /> + <path + class="st1" + d="m 566.15,375.9 c -0.02,-0.04 -0.05,-0.06 -0.09,-0.07 -0.01,0 -0.01,-0.01 -0.02,-0.01 -0.03,-0.01 -0.07,-0.03 -0.1,-0.04 l -0.21,-0.08 c -0.04,-0.01 -0.09,0 -0.13,0.02 -0.03,0.02 -0.07,0.06 -0.08,0.1 -0.02,0.09 0.03,0.18 0.11,0.2 0.07,0.02 0.14,0.04 0.21,0.06 0.04,0.01 0.07,0.02 0.11,0.03 0.01,0 0.02,0 0.02,0.01 0.04,0.01 0.08,0 0.12,-0.02 0.01,-0.01 0.02,-0.01 0.03,-0.02 0.02,-0.01 0.04,-0.04 0.05,-0.06 0.01,-0.03 0,-0.05 -0.01,-0.08 0.01,-0.01 0,-0.03 -0.01,-0.04 z" + id="path610" /> + <path + class="st1" + d="m 563.16,377.77 c -0.13,-0.02 -0.27,-0.03 -0.4,-0.05 -0.03,0 -0.07,0.02 -0.09,0.04 -0.02,0.02 -0.04,0.06 -0.04,0.09 0,0.03 0.01,0.07 0.04,0.09 0.02,0.02 0.06,0.04 0.09,0.04 0.13,-0.02 0.27,-0.03 0.4,-0.05 0.04,0 0.08,-0.03 0.08,-0.08 0,-0.05 -0.04,-0.08 -0.08,-0.08 z" + id="path612" /> + <path + class="st1" + d="m 565.42,377.75 c -0.13,0 -0.13,0.21 0,0.21 0.13,0 0.13,-0.21 0,-0.21 z" + id="path614" /> + <path + class="st1" + d="m 560.9,379.46 c 0.29,0.02 0.59,0.05 0.88,0.07 0.15,0.01 0.29,0.02 0.44,0.03 0.07,0.01 0.14,0.01 0.2,0.02 0.08,0.01 0.16,0 0.24,-0.02 0.15,-0.03 0.12,-0.23 0,-0.27 -0.14,-0.05 -0.29,-0.05 -0.44,-0.06 -0.15,-0.01 -0.29,-0.02 -0.44,-0.04 -0.29,-0.02 -0.59,-0.05 -0.88,-0.07 -0.09,-0.01 -0.17,0.08 -0.17,0.17 0,0.1 0.08,0.17 0.17,0.17 z" + id="path616" /> + <path + class="st1" + d="m 565.41,379.7 c 0.02,-0.01 0.04,-0.02 0.05,-0.03 0.06,-0.04 0.06,-0.12 0,-0.17 -0.02,-0.01 -0.03,-0.02 -0.05,-0.03 -0.04,-0.02 -0.07,-0.02 -0.11,-0.02 -0.05,-0.01 -0.09,-0.01 -0.14,-0.02 -0.09,-0.01 -0.18,0 -0.28,0 -0.08,0 -0.16,0.07 -0.16,0.16 0,0.09 0.07,0.16 0.16,0.16 0.09,0 0.19,0.01 0.28,0 0.05,0 0.09,-0.01 0.14,-0.01 0.04,-0.02 0.08,-0.03 0.11,-0.04 z" + id="path618" /> + <path + class="st1" + d="m 564.89,380.97 c -0.09,0 -0.09,0.14 0,0.14 0.09,0 0.09,-0.14 0,-0.14 z" + id="path620" /> + <path + class="st1" + d="m 560.23,383.32 c 0.47,0.02 0.93,0.04 1.4,0.07 0.23,0.01 0.46,0.02 0.68,0.02 0.24,0 0.47,-0.03 0.71,-0.04 0.1,0 0.13,-0.17 0.02,-0.18 -0.23,-0.03 -0.45,-0.08 -0.68,-0.1 -0.24,-0.02 -0.47,-0.03 -0.71,-0.04 -0.47,-0.02 -0.95,-0.04 -1.42,-0.06 -0.22,-0.02 -0.22,0.32 0,0.33 z" + id="path622" /> + <path + class="st1" + d="m 564.59,383.36 c -0.01,0.05 -0.01,0.1 0.02,0.14 0.03,0.04 0.06,0.07 0.11,0.08 0.06,0.02 0.12,0.04 0.19,0.07 0.03,0.01 0.06,0.02 0.09,0.02 0.03,0.01 0.07,0.01 0.1,0.02 0.04,0.01 0.09,0.01 0.13,-0.02 0.03,-0.02 0.05,-0.04 0.07,-0.08 0.03,-0.07 0.01,-0.17 -0.07,-0.2 -0.07,-0.04 -0.14,-0.07 -0.22,-0.1 -0.06,-0.02 -0.13,-0.04 -0.19,-0.06 -0.1,-0.02 -0.21,0.04 -0.23,0.13 z" + id="path624" /> + <path + class="st1" + d="m 563.14,385.04 c -0.44,-0.02 -0.88,-0.04 -1.31,-0.06 -0.22,-0.01 -0.21,0.32 0,0.34 0.44,0.03 0.88,0.05 1.31,0.08 0.21,0.01 0.43,0.03 0.64,0.04 0.19,0.01 0.46,0.06 0.63,-0.04 0.09,-0.05 0.08,-0.17 0,-0.22 -0.09,-0.06 -0.21,-0.06 -0.31,-0.08 -0.1,-0.01 -0.2,-0.02 -0.3,-0.02 -0.21,-0.02 -0.43,-0.03 -0.66,-0.04 z" + id="path626" /> + <path + class="st1" + d="m 559,387.95 c 0.32,0.05 0.63,0.1 0.95,0.15 0.32,0.05 0.63,0.11 0.96,0.08 0.13,-0.01 0.15,-0.18 0.03,-0.22 -0.3,-0.11 -0.6,-0.15 -0.91,-0.19 -0.31,-0.04 -0.62,-0.09 -0.93,-0.13 -0.09,-0.01 -0.18,0.02 -0.2,0.11 -0.04,0.07 0.01,0.18 0.1,0.2 z" + id="path628" /> + <path + class="st1" + d="m 563.17,388.06 c -0.14,0 -0.27,-0.01 -0.41,-0.01 -0.09,0 -0.18,0.08 -0.17,0.18 0,0.09 0.08,0.18 0.17,0.18 0.14,0 0.27,-0.01 0.41,-0.01 0.07,0 0.14,0 0.2,0 0.07,0 0.15,-0.03 0.22,-0.05 0.11,-0.03 0.11,-0.2 0,-0.23 -0.07,-0.02 -0.14,-0.04 -0.22,-0.05 -0.07,-0.01 -0.14,-0.01 -0.2,-0.01 z" + id="path630" /> + <path + class="st1" + d="m 558.9,390.24 c 0.45,0 0.9,0 1.36,0 0.23,0 0.45,0 0.68,0 0.11,0 0.21,-0.02 0.31,-0.03 0.11,-0.01 0.23,-0.01 0.34,-0.04 0.09,-0.02 0.09,-0.16 0,-0.18 -0.11,-0.03 -0.22,-0.03 -0.34,-0.04 -0.11,-0.01 -0.21,-0.03 -0.31,-0.03 -0.23,0 -0.45,0 -0.68,0 -0.45,0 -0.9,0 -1.36,0 -0.2,0.01 -0.2,0.32 0,0.32 z" + id="path632" /> + <path + class="st1" + d="m 564.66,390.52 c 0.09,-0.01 0.16,-0.02 0.21,-0.1 0.03,-0.04 0.03,-0.1 0,-0.14 -0.06,-0.08 -0.12,-0.09 -0.21,-0.1 -0.07,-0.01 -0.15,0 -0.22,0 -0.14,0 -0.28,0 -0.42,0.01 -0.29,0 -0.57,0.01 -0.86,0.01 -0.2,0 -0.2,0.31 0,0.31 0.29,0 0.57,0.01 0.86,0.01 0.14,0 0.28,0 0.42,0.01 0.07,-0.01 0.15,-0.01 0.22,-0.01 z" + id="path634" /> + <path + class="st1" + d="m 558.37,395.72 c 0.93,0.04 1.87,0.1 2.79,0.01 0.09,-0.01 0.13,-0.15 0.02,-0.17 -0.93,-0.17 -1.88,-0.19 -2.82,-0.24 -0.24,-0.01 -0.25,0.39 0.01,0.4 z" + id="path636" /> + <path + class="st1" + d="m 563.24,395.6 c -0.03,-0.01 -0.07,-0.02 -0.1,-0.03 -0.07,-0.02 -0.14,-0.04 -0.2,-0.06 -0.08,-0.02 -0.17,0.03 -0.19,0.11 -0.02,0.08 0.03,0.16 0.11,0.19 0.07,0.02 0.14,0.05 0.2,0.07 0.03,0.01 0.06,0.02 0.1,0.03 0.02,0.01 0.04,0.01 0.05,0.01 0.01,0 0.02,0 0.02,0 0.03,0.01 0.05,0.01 0.08,0 0,0 0.01,0 0.01,0 0.05,-0.01 0.09,-0.06 0.1,-0.1 0.01,-0.05 0,-0.1 -0.04,-0.14 -0.03,-0.03 -0.09,-0.06 -0.14,-0.08 z" + id="path638" /> + <path + class="st1" + d="m 557.84,397.73 c 0.09,0 0.18,0 0.27,0 0.05,0 0.09,0 0.14,0 0.03,0 0.07,0 0.1,-0.01 0.02,-0.01 0.04,-0.02 0.07,-0.02 0.06,-0.02 0.12,-0.08 0.12,-0.15 0,-0.07 -0.05,-0.13 -0.12,-0.15 -0.02,-0.01 -0.04,-0.02 -0.07,-0.02 -0.03,-0.01 -0.07,-0.01 -0.1,-0.01 -0.05,0 -0.09,0 -0.14,0 -0.09,0 -0.18,0 -0.27,0 -0.1,0 -0.2,0.09 -0.2,0.2 0,0.07 0.09,0.17 0.2,0.16 z" + id="path640" /> + <path + class="st1" + d="m 561.56,397.65 c 0.15,0 0.15,-0.23 0,-0.23 -0.14,0 -0.14,0.23 0,0.23 z" + id="path642" /> + <path + class="st1" + d="m 561.61,398.54 c -0.57,0 -1.15,-0.01 -1.72,-0.03 -1.13,-0.03 -2.26,-0.01 -3.38,0.01 -0.26,0 -0.26,0.41 0,0.41 1.13,0.02 2.26,0.04 3.38,0.01 0.55,-0.01 1.11,-0.03 1.66,-0.03 0.52,0 1.14,0.08 1.64,-0.06 0.14,-0.04 0.14,-0.24 0,-0.28 -0.48,-0.11 -1.07,-0.03 -1.58,-0.03 z" + id="path644" /> + <path + class="st1" + d="m 564.78,398.87 0.04,-0.02 c 0.04,-0.02 0.07,-0.08 0.07,-0.12 0,-0.04 -0.03,-0.1 -0.07,-0.12 -0.02,-0.01 -0.03,-0.01 -0.04,-0.02 -0.02,-0.01 -0.04,-0.02 -0.05,-0.02 -0.02,-0.01 -0.04,-0.01 -0.06,-0.01 h -0.1 c -0.07,0 -0.14,0 -0.21,0 -0.04,0 -0.09,0.02 -0.12,0.05 -0.03,0.03 -0.05,0.08 -0.05,0.12 0,0.05 0.02,0.09 0.05,0.12 0.03,0.03 0.08,0.05 0.12,0.05 0.07,0 0.14,0 0.21,0 h 0.1 c 0.02,0 0.04,0 0.06,-0.01 0.01,0 0.03,-0.01 0.05,-0.02 z" + id="path646" /> + <path + class="st1" + d="m 566.22,398.93 1.02,-0.06 c 0.17,-0.01 0.34,-0.02 0.51,-0.03 0.17,-0.01 0.36,0 0.52,-0.04 0.09,-0.02 0.15,-0.12 0.13,-0.2 -0.01,-0.1 -0.09,-0.15 -0.18,-0.16 -0.16,-0.02 -0.35,0.02 -0.51,0.03 -0.16,0.01 -0.33,0.02 -0.49,0.03 -0.33,0.02 -0.67,0.05 -1,0.07 -0.23,0.02 -0.24,0.38 0,0.36 z" + id="path648" /> + <path + class="st1" + d="m 563.07,399.86 c -0.39,-0.15 -0.92,-0.07 -1.33,-0.07 -0.46,0.01 -0.93,0.01 -1.39,0.03 -0.93,0.03 -1.85,0.08 -2.78,0.18 -0.16,0.02 -0.16,0.24 0,0.25 0.94,0.07 1.89,0.09 2.83,0.09 0.46,0 0.93,-0.01 1.39,-0.02 0.42,-0.01 0.93,0.04 1.32,-0.13 0.17,-0.06 0.09,-0.28 -0.04,-0.33 z" + id="path650" /> + <path + class="st1" + d="m 565.62,400.06 c -0.09,-0.01 -0.17,-0.04 -0.26,-0.04 -0.16,0 -0.32,0 -0.47,0 -0.1,0 -0.19,0.09 -0.19,0.19 0,0.1 0.08,0.19 0.19,0.19 0.16,0 0.32,0 0.47,0 0.09,0 0.17,-0.03 0.26,-0.04 0.08,-0.01 0.15,-0.02 0.23,-0.04 0.09,-0.03 0.09,-0.16 0,-0.19 -0.08,-0.05 -0.15,-0.06 -0.23,-0.07 z" + id="path652" /> + <path + class="st1" + d="m 566.62,400.4 c 0.79,0.01 1.58,-0.01 2.37,-0.02 0.4,-0.01 0.79,0.01 1.19,0.02 0.35,0 0.8,0.07 1.14,-0.05 0.15,-0.05 0.15,-0.25 0,-0.31 -0.34,-0.12 -0.78,-0.06 -1.14,-0.05 -0.4,0 -0.79,0.03 -1.19,0.02 -0.79,-0.01 -1.58,-0.04 -2.37,-0.02 -0.27,0 -0.27,0.41 0,0.41 z" + id="path654" /> + <path + class="st1" + d="m 557.71,400.39 c -0.31,-0.01 -0.62,-0.03 -0.93,-0.03 h -0.93 c -0.31,0 -0.31,0.47 0,0.47 h 0.93 c 0.31,0 0.62,-0.02 0.93,-0.03 0.26,-0.01 0.26,-0.4 0,-0.41 z" + id="path656" /> + <path + class="st1" + d="m 605.38,280.94 c 0.08,0 0.16,0 0.23,0 0.09,-0.01 0.18,-0.04 0.27,-0.05 0.12,-0.02 0.12,-0.22 0,-0.24 -0.09,-0.01 -0.18,-0.04 -0.27,-0.05 -0.08,-0.01 -0.16,0 -0.23,0 -0.17,0 -0.34,-0.01 -0.51,-0.01 -0.34,0 -0.68,0 -1.02,0.01 -0.23,0 -0.23,0.35 0,0.35 0.34,0 0.68,0.01 1.02,0.01 0.17,-0.01 0.34,-0.01 0.51,-0.02 z" + id="path658" /> + <path + class="st1" + d="m 607.76,280.43 c -0.06,0 -0.12,0 -0.18,0 -0.05,0 -0.11,0.02 -0.15,0.06 -0.04,0.04 -0.06,0.1 -0.06,0.15 0,0.05 0.02,0.11 0.06,0.15 0.04,0.04 0.09,0.06 0.15,0.06 h 0.18 c 0.03,0 0.06,0 0.09,0 0.06,0 0.13,0 0.18,-0.03 0.06,-0.04 0.1,-0.1 0.1,-0.17 0,-0.07 -0.04,-0.13 -0.1,-0.17 -0.05,-0.03 -0.12,-0.03 -0.18,-0.03 -0.03,-0.02 -0.06,-0.02 -0.09,-0.02 z" + id="path660" /> + <path + class="st1" + d="m 606.51,282.14 c -0.09,-0.01 -0.17,-0.02 -0.25,-0.03 -0.08,-0.01 -0.17,0 -0.25,0 -0.16,0 -0.33,0.02 -0.49,0.03 -0.33,0.02 -0.67,0.04 -1,0.06 -0.21,0.01 -0.21,0.35 0,0.33 0.34,-0.02 0.68,-0.05 1.02,-0.07 0.17,-0.01 0.34,-0.02 0.51,-0.04 0.08,-0.01 0.16,-0.01 0.23,-0.03 0.09,-0.02 0.17,-0.05 0.26,-0.07 0.11,-0.02 0.07,-0.17 -0.03,-0.18 z" + id="path662" /> + <path + class="st1" + d="m 607.32,282.36 c 0.01,0.01 0.02,0.02 0.04,0.03 0.03,0.02 0.06,0.02 0.09,0.02 0.02,0 0.04,0 0.06,0 0.01,0 0.02,0 0.03,0 0.02,0 0.05,0 0.07,-0.01 0.01,-0.01 0.03,-0.01 0.04,-0.02 0.02,-0.01 0.04,-0.03 0.05,-0.04 0.01,-0.01 0.02,-0.02 0.02,-0.04 0.01,-0.02 0.02,-0.04 0.01,-0.07 0,-0.01 0,-0.03 -0.01,-0.04 l -0.02,-0.04 c -0.01,-0.02 -0.03,-0.04 -0.04,-0.05 -0.02,-0.01 -0.04,-0.03 -0.06,-0.03 -0.01,0 -0.02,0 -0.02,0 -0.01,0 -0.02,0 -0.03,0 0,0 0,0 -0.01,0 0,0 -0.01,0 -0.01,0 -0.01,0 -0.02,0 -0.03,0 -0.02,0 -0.04,0 -0.06,0 -0.02,0 -0.05,0 -0.07,0.02 -0.02,0.01 -0.04,0.02 -0.06,0.04 -0.02,0.02 -0.03,0.03 -0.04,0.06 -0.01,0.02 -0.02,0.04 -0.02,0.07 0,0.02 0,0.03 0.01,0.05 0.02,0 0.04,0.03 0.06,0.05 z" + id="path664" /> + <path + class="st1" + d="m 605.72,283.51 c -0.24,0 -0.24,0.37 0,0.37 0.23,0 0.23,-0.37 0,-0.37 z" + id="path666" /> + <path + class="st1" + d="m 607.12,284.08 c 0.02,-0.01 0.03,-0.02 0.04,-0.04 0.02,-0.02 0.03,-0.05 0.03,-0.09 0,-0.03 -0.01,-0.05 -0.02,-0.07 -0.02,-0.03 -0.05,-0.06 -0.08,-0.06 l -0.25,-0.05 c -0.03,-0.01 -0.07,-0.01 -0.11,0 -0.03,0.01 -0.06,0.03 -0.09,0.05 -0.04,0.04 -0.06,0.09 -0.06,0.14 0,0.05 0.02,0.1 0.06,0.14 0.05,0.05 0.12,0.07 0.19,0.05 0.08,-0.02 0.17,-0.04 0.25,-0.05 0.01,-0.01 0.03,-0.01 0.04,-0.02 z" + id="path668" /> + <path + class="st1" + d="m 609.4,290.17 c 0.24,0.02 0.49,0.01 0.73,0.04 0.13,0.01 0.15,-0.19 0.03,-0.23 -0.24,-0.07 -0.47,-0.15 -0.71,-0.19 -0.25,-0.04 -0.51,-0.06 -0.76,-0.07 -0.5,-0.02 -1.01,0.02 -1.51,0.09 -0.19,0.03 -0.2,0.33 0,0.31 0.49,-0.04 0.98,-0.04 1.48,-0.01 0.25,0.01 0.49,0.04 0.74,0.06 z" + id="path670" /> + <path + class="st1" + d="m 608.64,292.23 c 0.2,0 0.2,-0.31 0,-0.31 -0.2,0 -0.2,0.31 0,0.31 z" + id="path672" /> + <path + class="st1" + d="m 609.51,293.92 c 0.1,-0.05 0.08,-0.23 -0.03,-0.25 -0.05,-0.01 -0.11,-0.02 -0.16,-0.02 -0.04,0.01 -0.08,0.01 -0.13,0.02 -0.09,0.01 -0.18,0.02 -0.27,0.03 -0.18,0.02 -0.36,0.05 -0.54,0.07 -0.08,0.01 -0.17,0.07 -0.16,0.16 0,0.08 0.07,0.18 0.16,0.16 0.18,-0.02 0.37,-0.05 0.55,-0.07 0.09,-0.01 0.18,-0.02 0.27,-0.03 0.05,-0.01 0.09,-0.01 0.14,-0.02 0.06,0 0.11,-0.02 0.17,-0.05 z" + id="path674" /> + <path + class="st1" + d="m 610.77,293.95 c 0.05,-0.01 0.09,-0.01 0.14,-0.02 0.03,0 0.06,-0.01 0.09,-0.01 0.01,0 0.02,0 0.03,-0.01 0.03,-0.01 0.04,-0.02 0.06,-0.04 0.03,-0.03 0.03,-0.09 0,-0.13 -0.02,-0.02 -0.04,-0.03 -0.06,-0.04 -0.01,0 -0.02,-0.01 -0.03,-0.01 -0.03,-0.01 -0.06,-0.01 -0.09,-0.01 -0.05,-0.01 -0.09,-0.01 -0.14,-0.02 -0.03,0 -0.08,0.02 -0.1,0.04 -0.02,0.02 -0.04,0.07 -0.04,0.1 0,0.04 0.01,0.08 0.04,0.1 0.02,0.03 0.06,0.05 0.1,0.05 z" + id="path676" /> + <path + class="st1" + d="m 609.98,295.51 c -0.09,0 -0.18,-0.01 -0.27,-0.01 -0.09,0 -0.17,0.08 -0.17,0.17 0,0.09 0.07,0.17 0.17,0.17 l 0.27,-0.01 c 0.05,0 0.09,0 0.14,-0.01 0.05,0 0.11,-0.02 0.16,-0.03 0.12,-0.03 0.12,-0.21 0,-0.24 -0.05,-0.01 -0.1,-0.03 -0.16,-0.03 -0.05,-0.01 -0.1,-0.01 -0.14,-0.01 z" + id="path678" /> + <path + class="st1" + d="m 611.6,295.72 c 0.01,0.01 0.02,0.02 0.03,0.03 0.01,0.01 0.02,0.02 0.04,0.02 0.02,0 0.03,0.01 0.05,0.01 0.01,0 0.02,0 0.02,0.01 0.01,0 0.02,0 0.02,0.01 0,0 0.01,0 0.01,0 0.03,0.01 0.05,0.01 0.08,0 0.02,-0.01 0.05,-0.02 0.06,-0.04 0.01,-0.01 0.02,-0.02 0.02,-0.03 0.01,-0.02 0.02,-0.05 0.02,-0.07 0,-0.02 0,-0.04 -0.01,-0.06 -0.01,-0.02 -0.02,-0.03 -0.03,-0.05 -0.02,-0.02 -0.04,-0.03 -0.06,-0.04 -0.03,-0.01 -0.05,-0.01 -0.08,0 0,0 -0.01,0 -0.01,0 -0.01,0 -0.02,0 -0.03,0.01 -0.01,0 -0.02,0 -0.03,0.01 -0.02,0 -0.03,0.01 -0.05,0.01 -0.01,0 -0.02,0.01 -0.03,0.01 -0.01,0.01 -0.02,0.02 -0.03,0.03 -0.01,0.01 -0.01,0.02 -0.02,0.03 -0.01,0.01 -0.01,0.03 -0.01,0.05 v 0.03 c 0.03,0.02 0.03,0.02 0.04,0.03 z" + id="path680" /> + <path + class="st1" + d="m 611.09,301.05 c 0.09,0 0.18,-0.01 0.27,-0.02 0.1,-0.01 0.2,-0.01 0.29,-0.07 0.09,-0.06 0.11,-0.22 0,-0.27 -0.16,-0.07 -0.36,-0.05 -0.54,-0.03 -0.19,0.01 -0.38,0.03 -0.56,0.05 -0.37,0.03 -0.74,0.06 -1.11,0.08 -0.21,0.01 -0.21,0.33 0,0.32 0.37,-0.02 0.74,-0.04 1.11,-0.05 0.17,0 0.35,0 0.54,-0.01 z" + id="path682" /> + <path + class="st1" + d="m 612.22,301.11 c 0.01,0 0.02,0 0.03,0.01 0.02,0 0.04,0.01 0.07,0.01 0.03,0.01 0.05,0.01 0.08,0 0.03,-0.01 0.05,-0.02 0.07,-0.04 0.01,-0.01 0.02,-0.02 0.02,-0.03 0.01,-0.02 0.02,-0.05 0.02,-0.08 0,-0.02 0,-0.04 -0.01,-0.06 -0.01,-0.02 -0.02,-0.03 -0.03,-0.05 -0.02,-0.02 -0.04,-0.03 -0.07,-0.04 -0.03,-0.01 -0.05,-0.01 -0.08,0 -0.02,0 -0.04,0.01 -0.07,0.01 -0.01,0 -0.02,0 -0.03,0.01 -0.02,0 -0.05,0.02 -0.06,0.03 l -0.02,0.03 c 0,0 0,0 0,0 0,0 0,0.01 0,0.01 -0.02,0.03 -0.02,0.08 0,0.11 0,0 0,0.01 0,0.01 0.02,0.04 0.05,0.06 0.08,0.07 z" + id="path684" /> + <path + class="st1" + d="m 612.09,302.8 c 0.24,-0.01 0.47,-0.02 0.71,-0.03 0.21,-0.01 0.5,0.01 0.69,-0.1 0.08,-0.04 0.09,-0.18 0,-0.22 -0.2,-0.08 -0.45,-0.05 -0.67,-0.04 -0.25,0.01 -0.49,0.02 -0.74,0.04 -0.48,0.02 -0.97,0.05 -1.45,0.07 -0.22,0.01 -0.22,0.35 0,0.34 0.49,-0.02 0.97,-0.04 1.46,-0.06 z" + id="path686" /> + <path + class="st1" + d="m 612.54,304.44 c -0.15,-0.05 -0.3,-0.03 -0.45,-0.03 -0.14,0 -0.29,0 -0.43,0 -0.29,0 -0.59,0.01 -0.88,0.01 -0.2,0 -0.2,0.31 0,0.32 0.29,0 0.59,0.01 0.88,0.01 0.14,0 0.29,0 0.43,0 0.15,0 0.31,0.01 0.45,-0.03 0.13,-0.05 0.13,-0.24 0,-0.28 z" + id="path688" /> + <path + class="st1" + d="m 614.09,304.86 c 0.19,0 0.19,-0.3 0,-0.3 -0.19,0 -0.19,0.3 0,0.3 z" + id="path690" /> + <path + class="st1" + d="m 612.63,306.73 c 0.2,0 0.2,-0.32 0,-0.32 -0.2,0 -0.2,0.32 0,0.32 z" + id="path692" /> + <path + class="st1" + d="m 614.15,309.48 c 0.18,-0.01 0.38,0 0.52,-0.11 -0.03,0.02 -0.05,0.03 -0.08,0.05 0.08,-0.02 0.16,-0.03 0.22,-0.08 0.07,-0.05 0.09,-0.16 0,-0.21 -0.07,-0.04 -0.15,-0.05 -0.23,-0.05 -0.14,-0.05 -0.31,-0.03 -0.45,-0.01 -0.17,0.01 -0.33,0.03 -0.5,0.05 -0.33,0.03 -0.67,0.06 -1,0.09 -0.22,0.02 -0.23,0.36 0,0.35 0.34,-0.01 0.68,-0.03 1.02,-0.04 0.17,-0.03 0.34,-0.03 0.5,-0.04 z" + id="path694" /> + <path + class="st1" + d="m 615.53,309.23 c 0,0.09 0.07,0.16 0.16,0.16 0.09,0 0.19,0 0.28,0 0.05,0 0.09,0 0.14,0 0.05,0 0.09,0 0.13,-0.03 0.02,-0.01 0.05,-0.03 0.07,-0.05 0.04,-0.04 0.04,-0.12 0,-0.16 -0.02,-0.02 -0.04,-0.04 -0.07,-0.05 -0.04,-0.03 -0.08,-0.03 -0.13,-0.03 h -0.14 c -0.09,0 -0.19,0 -0.28,0 -0.08,0 -0.16,0.07 -0.16,0.16 z" + id="path696" /> + <path + class="st1" + d="m 615.58,311.04 c 0.08,-0.02 0.08,-0.15 0,-0.17 -0.08,-0.02 -0.16,-0.03 -0.24,-0.03 -0.09,-0.01 -0.17,-0.02 -0.26,-0.03 -0.17,-0.01 -0.33,-0.01 -0.5,-0.01 -0.34,-0.01 -0.68,-0.01 -1.02,-0.01 -0.21,0 -0.21,0.33 0,0.33 0.34,0 0.68,0 1.02,-0.01 0.17,0 0.33,0 0.5,-0.01 0.08,0 0.16,-0.02 0.24,-0.03 0.09,0 0.17,0 0.26,-0.03 z" + id="path698" /> + <path + class="st1" + d="m 615.42,315.87 c -0.18,0 -0.18,0.28 0,0.28 h 0.54 c 0.18,0 0.37,0.01 0.55,-0.04 0.09,-0.03 0.09,-0.16 0,-0.19 -0.17,-0.05 -0.37,-0.04 -0.55,-0.04 h -0.54 z" + id="path700" /> + <path + class="st1" + d="m 617.82,315.97 c -0.06,0 -0.06,0.09 0,0.09 0.06,0 0.06,-0.09 0,-0.09 z" + id="path702" /> + <path + class="st1" + d="m 616.3,317.79 c -0.16,0.02 -0.32,0.04 -0.47,0.06 -0.09,0.01 -0.17,0.08 -0.16,0.18 0.01,0.1 0.1,0.15 0.2,0.13 l 0.47,-0.08 c 0.08,-0.01 0.16,-0.03 0.23,-0.05 0.04,-0.01 0.07,-0.02 0.11,-0.02 0.05,-0.01 0.09,-0.03 0.13,-0.05 0.08,-0.03 0.06,-0.18 -0.02,-0.19 -0.05,-0.01 -0.09,-0.01 -0.14,-0.01 -0.04,0 -0.07,0 -0.11,0.01 -0.09,0 -0.16,0.01 -0.24,0.02 z" + id="path704" /> + <path + class="st1" + d="m 618.08,317.91 c -0.13,0 -0.13,0.2 0,0.2 0.13,0 0.13,-0.2 0,-0.2 z" + id="path706" /> + <path + class="st1" + d="m 616.55,320.3 h -0.2 c -0.06,0 -0.11,0.05 -0.11,0.11 0,0.06 0.05,0.11 0.11,0.11 h 0.2 c 0.07,0 0.13,-0.01 0.2,-0.02 0.02,0 0.04,-0.01 0.06,-0.03 0.02,-0.02 0.03,-0.04 0.03,-0.06 0,-0.05 -0.04,-0.08 -0.09,-0.09 -0.06,-0.02 -0.13,-0.02 -0.2,-0.02 z" + id="path708" /> + <path + class="st1" + d="m 617.95,322.54 c 0.18,0 0.18,-0.28 0,-0.28 -0.18,0 -0.18,0.28 0,0.28 z" + id="path710" /> + <path + class="st1" + d="m 618.8,331.09 c 0.32,-0.08 0.65,-0.11 0.98,-0.1 0.33,0.01 0.67,0.09 1,0.05 0.1,-0.01 0.13,-0.16 0.06,-0.22 -0.29,-0.24 -0.69,-0.27 -1.06,-0.26 -0.37,0.01 -0.73,0.07 -1.08,0.18 -0.23,0.06 -0.14,0.4 0.1,0.35 z" + id="path712" /> + <path + class="st1" + d="m 621.32,331.13 c 0.02,0.02 0.03,0.03 0.06,0.03 0.02,0.01 0.04,0.01 0.07,0 l 0.07,-0.01 c 0.01,0 0.01,0 0.02,0 0.03,-0.01 0.06,-0.03 0.07,-0.05 0.01,-0.02 0.02,-0.03 0.02,-0.05 0,-0.02 -0.01,-0.04 -0.02,-0.05 -0.02,-0.03 -0.04,-0.04 -0.07,-0.05 -0.01,0 -0.01,0 -0.02,0 l -0.07,-0.01 c -0.02,-0.01 -0.04,-0.01 -0.07,0 -0.02,0.01 -0.04,0.02 -0.06,0.03 -0.02,0.02 -0.04,0.05 -0.04,0.09 0,0.02 0,0.03 0.01,0.05 0.01,-0.01 0.02,0.01 0.03,0.02 z" + id="path714" /> + <path + class="st1" + d="m 620.35,332.61 c -0.23,0.03 -0.45,0.05 -0.68,0.08 -0.1,0.01 -0.19,0.08 -0.19,0.19 0,0.1 0.09,0.2 0.19,0.19 l 0.69,-0.06 c 0.11,-0.01 0.23,-0.02 0.34,-0.04 0.13,-0.02 0.27,-0.02 0.38,-0.09 0.12,-0.08 0.09,-0.24 -0.04,-0.29 -0.11,-0.04 -0.24,-0.02 -0.36,-0.01 -0.1,0.01 -0.21,0.01 -0.33,0.03 z" + id="path716" /> + <path + class="st1" + d="m 620.05,334.39 c -0.07,0.01 -0.14,0.02 -0.21,0.04 -0.07,0.02 -0.13,0.04 -0.2,0.06 -0.04,0.01 -0.08,0.04 -0.1,0.08 -0.02,0.04 -0.03,0.09 -0.02,0.13 0.01,0.04 0.04,0.08 0.08,0.1 0.04,0.02 0.09,0.03 0.13,0.02 0.07,-0.03 0.13,-0.05 0.2,-0.08 0.08,-0.03 0.15,-0.07 0.22,-0.1 0.06,-0.03 0.08,-0.11 0.05,-0.16 -0.01,-0.03 -0.03,-0.05 -0.05,-0.06 -0.03,-0.04 -0.06,-0.04 -0.1,-0.03 z" + id="path718" /> + <path + class="st1" + d="m 621.94,334.64 c 0.18,0 0.18,-0.28 0,-0.28 -0.18,0 -0.18,0.28 0,0.28 z" + id="path720" /> + <path + class="st1" + d="m 620.83,336.87 c -0.09,0.02 -0.14,0.12 -0.11,0.2 0.03,0.09 0.11,0.13 0.2,0.11 0.28,-0.05 0.57,-0.05 0.84,0 0.14,0.03 0.28,0.06 0.42,0.09 0.14,0.04 0.28,0.09 0.42,0.1 0.06,0 0.11,-0.08 0.07,-0.13 -0.09,-0.12 -0.24,-0.2 -0.38,-0.26 -0.16,-0.07 -0.31,-0.11 -0.48,-0.14 -0.32,-0.04 -0.65,-0.04 -0.98,0.03 z" + id="path722" /> + <path + class="st1" + d="m 623.83,337.53 c 0.07,0 0.14,0 0.21,0 0.08,0 0.17,0.01 0.23,-0.05 0.03,-0.03 0.03,-0.09 0,-0.13 -0.06,-0.06 -0.15,-0.05 -0.22,-0.05 -0.07,0 -0.14,0 -0.22,0 l -0.42,0.01 c -0.13,0 -0.13,0.2 0,0.2 z" + id="path724" /> + <path + class="st1" + d="m 623,339.2 c 0.23,0 0.23,-0.35 0,-0.35 -0.22,-0.01 -0.22,0.35 0,0.35 z" + id="path726" /> + <path + class="st1" + d="m 624.07,339.4 c -0.19,0 -0.19,0.29 0,0.29 0.19,0 0.19,-0.29 0,-0.29 z" + id="path728" /> + <path + class="st1" + d="m 623.94,346.86 c 0.36,0.02 0.72,0.05 1.08,0.06 0.18,0 0.36,0.01 0.54,0.01 0.17,0 0.35,0.01 0.51,-0.04 0.04,-0.01 0.05,-0.07 0.01,-0.09 -0.16,-0.07 -0.33,-0.08 -0.49,-0.1 -0.18,-0.03 -0.37,-0.04 -0.55,-0.06 -0.37,-0.04 -0.74,-0.05 -1.11,-0.07 -0.19,-0.02 -0.18,0.28 0.01,0.29 z" + id="path730" /> + <path + class="st1" + d="m 626.46,346.81 c -0.07,0 -0.07,0.11 0,0.11 0.07,0 0.07,-0.11 0,-0.11 z" + id="path732" /> + <path + class="st1" + d="m 623.55,345.02 c -0.07,0.05 -0.06,0.17 -0.01,0.23 0.05,0.06 0.16,0.1 0.23,0.05 0.04,-0.03 0.08,-0.06 0.13,-0.08 0.03,-0.01 0.05,-0.03 0.08,-0.04 0,0 0,0 0,0 0,0 0,0 0,0 0.01,0 0.02,-0.01 0.04,-0.01 0.05,-0.02 0.1,-0.03 0.14,-0.04 0.02,-0.01 0.05,-0.01 0.07,-0.01 0,0 0.01,0 0.02,0 0.01,0 0.03,0 0.03,0 0.05,0 0.1,-0.01 0.15,0 0.03,0 0.05,0 0.08,0 0.01,0 0.01,0 0.01,0 0.01,0 0.02,0 0.03,0 0.04,0.01 0.07,0.01 0.11,0.01 0.01,0 0.01,0 0.01,0 0,0 0,0 0,0 0.01,0 0.02,0 0.04,0.01 0.05,0.01 0.09,0.01 0.14,0 0.01,0 0.02,-0.01 0.03,-0.01 0,0 0.02,-0.01 0.04,-0.01 0.08,-0.04 0.12,-0.11 0.08,-0.19 -0.06,-0.14 -0.23,-0.19 -0.38,-0.21 -0.13,-0.01 -0.25,-0.01 -0.38,0.01 -0.26,0.03 -0.49,0.14 -0.69,0.29 z" + id="path734" /> + <path + class="st1" + d="m 625.72,350.22 c -0.11,0.01 -0.22,0.01 -0.33,0.02 -0.22,0.02 -0.44,0.04 -0.66,0.07 -0.08,0.01 -0.15,0.06 -0.15,0.14 0,0.07 0.07,0.15 0.15,0.15 0.23,-0.02 0.45,-0.04 0.68,-0.07 0.12,-0.01 0.23,-0.03 0.35,-0.05 0.11,-0.02 0.22,-0.05 0.33,-0.07 0.11,-0.02 0.08,-0.18 -0.03,-0.18 -0.11,0 -0.22,-0.01 -0.34,-0.01 z" + id="path736" /> + <path + class="st1" + d="m 627.53,350.26 c 0.06,-0.02 0.13,-0.03 0.19,-0.04 0.06,-0.01 0.12,-0.02 0.19,-0.03 0.08,0 0.15,-0.08 0.13,-0.16 -0.02,-0.08 -0.12,-0.12 -0.19,-0.08 -0.11,0.07 -0.23,0.13 -0.35,0.18 -0.13,0.05 -0.25,0.1 -0.38,0.15 -0.06,0.02 -0.04,0.12 0.03,0.1 0.12,-0.04 0.25,-0.08 0.38,-0.12 z" + id="path738" /> + <path + class="st1" + d="m 625.91,351.83 c -0.02,0.04 -0.03,0.09 -0.02,0.13 0.03,0.09 0.12,0.15 0.22,0.12 0.11,-0.03 0.22,-0.05 0.34,-0.08 0.06,-0.01 0.11,-0.03 0.17,-0.04 0.06,-0.01 0.12,-0.05 0.18,-0.07 0.05,-0.02 0.07,-0.1 0.06,-0.14 -0.02,-0.05 -0.07,-0.09 -0.12,-0.09 -0.03,0 -0.06,0 -0.09,0 -0.04,0 -0.07,0.01 -0.11,0.01 -0.06,0.01 -0.11,0.02 -0.17,0.03 -0.11,0.02 -0.23,0.04 -0.34,0.06 -0.05,0 -0.1,0.04 -0.12,0.07 z" + id="path740" /> + <path + class="st1" + d="m 628.06,352.15 c 0.13,0 0.13,-0.2 0,-0.2 -0.13,0 -0.13,0.2 0,0.2 z" + id="path742" /> + <path + class="st1" + d="m 627.58,353.65 c -0.14,-0.07 -0.31,-0.08 -0.46,-0.09 -0.16,-0.01 -0.33,-0.03 -0.49,-0.04 -0.32,-0.02 -0.65,-0.04 -0.97,-0.07 -0.22,-0.01 -0.21,0.32 0,0.34 0.32,0.02 0.63,0.04 0.95,0.06 0.16,0.01 0.32,0.02 0.47,0.03 0.15,0.01 0.32,0.02 0.47,-0.03 0.09,-0.02 0.13,-0.15 0.03,-0.2 z" + id="path744" /> + <path + class="st1" + d="m 628.59,353.93 c 0.09,0 0.19,0 0.28,0 0.05,0 0.09,0 0.14,0 0.04,0 0.07,-0.01 0.1,-0.02 0.04,-0.02 0.08,-0.03 0.1,-0.07 0.02,-0.04 0.02,-0.08 0,-0.11 -0.02,-0.04 -0.06,-0.06 -0.1,-0.07 -0.03,-0.01 -0.06,-0.02 -0.1,-0.02 -0.05,0 -0.09,0 -0.14,0 -0.09,0 -0.19,0 -0.28,0 -0.08,0 -0.15,0.07 -0.15,0.15 0,0.07 0.07,0.14 0.15,0.14 z" + id="path746" /> + <path + class="st1" + d="m 627.4,355.79 c -0.03,0.03 -0.05,0.08 -0.05,0.12 0,0.05 0.02,0.09 0.05,0.12 0.03,0.03 0.08,0.06 0.12,0.05 l 0.2,-0.03 0.1,-0.01 c 0.02,0 0.05,-0.01 0.07,-0.01 0.02,-0.01 0.03,-0.01 0.05,-0.02 0.05,-0.01 0.09,-0.06 0.08,-0.11 0,-0.05 -0.03,-0.09 -0.08,-0.11 -0.02,0 -0.03,-0.01 -0.05,-0.01 -0.03,-0.01 -0.05,-0.01 -0.08,-0.01 -0.03,0 -0.07,-0.01 -0.1,-0.01 -0.07,-0.01 -0.14,-0.02 -0.2,-0.03 -0.03,0 -0.08,0.03 -0.11,0.06 z" + id="path748" /> + <path + class="st1" + d="m 628.86,356.2 c 0.2,0 0.2,-0.31 0,-0.31 -0.2,0 -0.2,0.31 0,0.31 z" + id="path750" /> + <path + class="st1" + d="m 627.34,357.9 c 0,0.1 0.09,0.2 0.19,0.19 0.25,-0.02 0.51,-0.05 0.76,-0.07 0.13,-0.01 0.26,-0.02 0.39,-0.05 0.12,-0.03 0.26,-0.04 0.37,-0.11 0.09,-0.06 0.06,-0.17 -0.03,-0.2 -0.11,-0.05 -0.26,-0.03 -0.37,-0.04 -0.12,-0.01 -0.25,0.01 -0.37,0.02 -0.25,0.02 -0.5,0.05 -0.75,0.07 -0.11,0.01 -0.19,0.08 -0.19,0.19 z" + id="path752" /> + <path + class="st1" + d="m 629.8,358.17 c 0.01,0.01 0.02,0.01 0.04,0.02 0.01,0 0.01,0.01 0.02,0.01 0.02,0.01 0.04,0.02 0.06,0.02 0.03,0 0.06,0 0.09,0 0.01,0 0.02,0 0.03,0 0.02,0 0.04,0 0.06,-0.02 0.02,-0.01 0.04,-0.04 0.04,-0.06 0,-0.02 -0.01,-0.04 -0.02,-0.06 -0.01,-0.01 -0.01,-0.02 -0.02,-0.03 -0.02,-0.02 -0.03,-0.05 -0.05,-0.07 -0.03,-0.03 -0.07,-0.05 -0.1,-0.07 -0.02,-0.01 -0.05,-0.03 -0.07,-0.04 -0.03,-0.02 -0.07,-0.03 -0.11,-0.01 -0.03,0.01 -0.07,0.04 -0.09,0.07 -0.02,0.03 -0.03,0.08 -0.01,0.11 0.01,0.04 0.03,0.07 0.07,0.09 0.01,0.01 0.03,0.03 0.06,0.04 z" + id="path754" /> + <path + class="st1" + d="m 628.06,359.58 c -0.2,0.01 -0.2,0.33 0,0.32 0.35,-0.02 0.69,-0.04 1.04,-0.06 0.17,-0.01 0.34,-0.02 0.51,-0.03 0.09,-0.01 0.17,-0.02 0.25,-0.03 0.08,-0.01 0.18,-0.02 0.25,-0.07 0.06,-0.04 0.08,-0.14 0,-0.18 -0.08,-0.04 -0.16,-0.04 -0.25,-0.04 -0.08,0 -0.16,0 -0.23,0 -0.18,0.01 -0.35,0.02 -0.53,0.03 -0.35,0.01 -0.7,0.04 -1.04,0.06 z" + id="path756" /> + <path + class="st1" + d="m 630.58,359.92 c 0.05,0 0.1,0 0.14,0 0.03,0 0.07,0 0.1,-0.01 0.02,-0.01 0.04,-0.01 0.06,-0.02 0.03,-0.01 0.04,-0.04 0.06,-0.06 0.02,-0.03 0.02,-0.08 0,-0.12 -0.02,-0.02 -0.03,-0.05 -0.06,-0.06 -0.02,-0.01 -0.04,-0.02 -0.06,-0.02 -0.03,-0.01 -0.07,-0.01 -0.1,-0.01 -0.05,0 -0.1,0 -0.14,0 -0.04,0 -0.08,0.02 -0.11,0.05 -0.03,0.03 -0.05,0.07 -0.05,0.11 0,0.04 0.02,0.08 0.05,0.11 0.04,0.01 0.07,0.03 0.11,0.03 z" + id="path758" /> + <path + class="st1" + d="m 629.39,361.47 c -0.21,0 -0.21,0.32 0,0.32 0.2,0 0.2,-0.32 0,-0.32 z" + id="path760" /> + <path + class="st1" + d="m 630.45,362.46 c 0.22,0 0.22,-0.34 0,-0.34 -0.21,0.01 -0.21,0.34 0,0.34 z" + id="path762" /> + <path + class="st1" + d="m 629.79,364.16 c 0.18,0 0.18,-0.28 0,-0.28 -0.19,0 -0.19,0.28 0,0.28 z" + id="path764" /> + <path + class="st1" + d="m 629.79,365.24 c 0.41,-0.02 0.81,-0.03 1.22,-0.05 0.2,-0.01 0.41,-0.01 0.61,-0.03 0.09,-0.01 0.19,-0.01 0.28,-0.02 0.11,-0.01 0.21,-0.05 0.32,-0.08 0.16,-0.03 0.1,-0.25 -0.04,-0.26 -0.1,-0.01 -0.2,-0.04 -0.31,-0.04 -0.1,0 -0.2,0.01 -0.31,0.01 -0.2,0.01 -0.39,0.02 -0.59,0.03 -0.4,0.03 -0.8,0.05 -1.2,0.08 -0.21,0.02 -0.21,0.37 0.02,0.36 z" + id="path766" /> + <path + class="st1" + d="m 630.32,367.32 c -0.2,0 -0.2,0.31 0,0.31 0.2,0 0.2,-0.31 0,-0.31 z" + id="path768" /> + <path + class="st1" + d="m 633.38,367.1 c -0.15,0 -0.15,0.23 0,0.23 0.14,0 0.15,-0.23 0,-0.23 z" + id="path770" /> + <path + class="st1" + d="m 631.25,369.45 c 0.48,-0.03 0.95,-0.06 1.42,-0.11 0.24,-0.02 0.47,-0.06 0.71,-0.09 0.11,-0.01 0.22,-0.02 0.33,-0.02 0.12,0 0.25,0.01 0.36,-0.03 0.08,-0.03 0.11,-0.17 0,-0.2 -0.11,-0.02 -0.22,0.01 -0.33,0.02 -0.12,0.02 -0.24,0.03 -0.36,0.04 -0.24,0.02 -0.48,0.02 -0.71,0.03 -0.48,0.03 -0.95,0.08 -1.42,0.13 -0.14,0.02 -0.14,0.24 0,0.23 z" + id="path772" /> + <path + class="st1" + d="m 632.64,370.82 c 0.07,0 0.13,0 0.2,0 0.09,0 0.16,0.01 0.23,-0.05 0.04,-0.03 0.05,-0.11 0.02,-0.15 -0.05,-0.08 -0.12,-0.09 -0.21,-0.1 -0.08,-0.01 -0.16,-0.02 -0.24,-0.03 -0.16,0 -0.31,0.01 -0.47,0.03 -0.31,0.04 -0.6,0.14 -0.88,0.27 -0.09,0.04 -0.11,0.16 -0.06,0.24 0.05,0.09 0.15,0.1 0.24,0.06 0.24,-0.12 0.51,-0.2 0.78,-0.24 0.13,-0.02 0.26,-0.03 0.39,-0.03 z" + id="path774" /> + <path + class="st1" + d="m 633.89,378.37 h -0.51 c -0.08,0 -0.15,0.07 -0.15,0.15 0,0.08 0.07,0.15 0.15,0.15 h 0.51 c 0.06,0 0.13,-0.02 0.19,-0.03 0.12,-0.02 0.12,-0.22 0,-0.24 -0.07,-0.02 -0.13,-0.03 -0.19,-0.03 z" + id="path776" /> + <path + class="st1" + d="m 634.31,380.51 c 0.17,0 0.17,-0.27 0,-0.27 -0.17,0.01 -0.17,0.27 0,0.27 z" + id="path778" /> + <path + class="st1" + d="m 634.06,382.95 c -0.23,0.02 -0.45,0.04 -0.68,0.07 -0.09,0.01 -0.16,0.07 -0.16,0.16 0,0.08 0.07,0.17 0.16,0.16 0.23,-0.02 0.46,-0.05 0.69,-0.07 0.11,-0.01 0.23,-0.02 0.34,-0.04 0.13,-0.02 0.25,-0.02 0.36,-0.08 0.1,-0.05 0.07,-0.2 -0.03,-0.23 -0.11,-0.03 -0.23,-0.01 -0.35,0 -0.11,0 -0.22,0.01 -0.33,0.03 z" + id="path780" /> + <path + class="st1" + d="m 636.17,383.11 0.41,0.01 h 0.2 c 0.09,0 0.22,-0.03 0.28,-0.09 0.07,-0.07 0.07,-0.17 0,-0.25 -0.06,-0.07 -0.19,-0.09 -0.28,-0.09 h -0.2 c -0.14,0 -0.27,0 -0.41,0.01 -0.11,0 -0.21,0.09 -0.21,0.21 0.01,0.11 0.09,0.2 0.21,0.2 z" + id="path782" /> + <path + class="st1" + d="m 634.29,384.9 c 0,0.08 0.07,0.16 0.15,0.15 0.21,-0.02 0.41,-0.05 0.62,-0.07 0.1,-0.01 0.2,-0.02 0.31,-0.03 0.12,-0.01 0.23,-0.02 0.33,-0.08 0.1,-0.06 0.07,-0.2 -0.03,-0.23 -0.11,-0.03 -0.21,-0.01 -0.32,0 -0.1,0.01 -0.2,0.02 -0.31,0.03 -0.2,0.02 -0.41,0.05 -0.61,0.07 -0.07,0.02 -0.14,0.07 -0.14,0.16 z" + id="path784" /> + <path + class="st1" + d="m 637.05,384.9 c -0.01,0.01 -0.01,0.03 -0.02,0.05 0,0.01 0,0.01 -0.01,0.02 -0.01,0.01 -0.01,0.03 -0.02,0.04 0,0.02 0,0.03 0,0.05 0,0.02 0.01,0.03 0.02,0.04 0.01,0.01 0.03,0.02 0.04,0.02 0.02,0 0.03,0 0.05,0 0.01,0 0.03,-0.01 0.04,-0.01 0.02,-0.01 0.05,-0.02 0.07,-0.03 0.03,-0.01 0.05,-0.03 0.08,-0.04 0.05,-0.03 0.08,-0.08 0.08,-0.13 0,-0.01 0,-0.03 -0.01,-0.04 -0.01,-0.03 -0.02,-0.05 -0.04,-0.07 -0.01,-0.02 -0.03,-0.03 -0.05,-0.03 -0.02,-0.01 -0.04,-0.01 -0.06,-0.01 -0.05,0 -0.11,0.03 -0.13,0.08 -0.01,0.01 -0.02,0.04 -0.04,0.06 z" + id="path786" /> + <path + class="st1" + d="m 636.97,387.5 c -0.53,-0.04 -1.06,-0.11 -1.6,-0.13 -0.53,-0.02 -1.06,-0.02 -1.6,-0.02 -0.23,0 -0.23,0.35 0,0.35 0.53,0 1.06,0.01 1.6,0 0.53,-0.02 1.06,-0.08 1.6,-0.11 0.05,-0.01 0.05,-0.08 0,-0.09 z" + id="path788" /> + <path + class="st1" + d="m 637.77,387.51 c -0.07,0 -0.07,0.11 0,0.11 0.07,0 0.07,-0.11 0,-0.11 z" + id="path790" /> + <path + class="st1" + d="m 631.25,391.35 c 0.47,-0.02 0.95,-0.04 1.42,-0.07 0.24,-0.01 0.48,-0.03 0.71,-0.05 0.23,-0.02 0.47,-0.01 0.7,-0.08 0.13,-0.04 0.15,-0.25 0,-0.29 -0.23,-0.05 -0.46,-0.02 -0.7,-0.02 -0.24,0 -0.47,0 -0.71,0.01 -0.47,0.02 -0.95,0.04 -1.42,0.06 -0.28,0.02 -0.28,0.45 0,0.44 z" + id="path792" /> + <path + class="st1" + d="m 637.28,390.53 c -0.05,0.02 -0.09,0.05 -0.14,0.07 -0.04,0.02 -0.07,0.06 -0.08,0.1 -0.01,0.02 -0.01,0.05 0,0.07 0,0.02 0.01,0.04 0.02,0.06 0.02,0.04 0.06,0.07 0.1,0.08 0.05,0.01 0.09,0 0.13,-0.02 0.05,-0.02 0.09,-0.05 0.14,-0.07 0.02,-0.01 0.04,-0.02 0.07,-0.03 0.02,-0.01 0.04,-0.02 0.05,-0.03 0.01,-0.01 0.02,-0.03 0.03,-0.04 0.01,-0.01 0.01,-0.02 0.02,-0.03 0.03,-0.04 0.02,-0.1 0,-0.14 -0.03,-0.05 -0.07,-0.07 -0.12,-0.07 -0.01,0 -0.02,0 -0.04,0 -0.04,0 -0.07,0.01 -0.11,0.03 -0.03,-0.01 -0.05,0 -0.07,0.02 z" + id="path794" /> + <path + class="st1" + d="m 632.59,392.76 c 0.01,0.08 0.08,0.12 0.16,0.1 0.39,-0.06 0.79,-0.12 1.18,-0.19 0.07,-0.01 0.05,-0.13 -0.02,-0.13 -0.4,0.01 -0.8,0.05 -1.2,0.07 -0.07,0.02 -0.13,0.08 -0.12,0.15 z" + id="path796" /> + <path + class="st1" + d="m 637.5,392.29 c -0.01,0.02 -0.01,0.04 -0.01,0.06 0,0.02 0,0.04 0.01,0.06 0.01,0.02 0.02,0.03 0.03,0.05 0.01,0.01 0.02,0.02 0.03,0.02 0.02,0.01 0.05,0.02 0.07,0.02 0.01,0 0.03,0 0.04,-0.01 0.02,-0.01 0.05,-0.02 0.06,-0.04 0.02,-0.02 0.05,-0.05 0.07,-0.07 0.01,-0.01 0.02,-0.02 0.03,-0.03 0.01,-0.01 0.02,-0.02 0.03,-0.04 0,-0.01 0.01,-0.02 0.01,-0.03 v -0.04 c 0,0 0,0 0,0 0,-0.01 0,-0.01 0,-0.02 0,-0.02 0,-0.03 -0.01,-0.05 0,-0.01 -0.01,-0.03 -0.02,-0.04 -0.02,-0.02 -0.05,-0.03 -0.08,-0.03 h -0.02 c 0,0 0,0 0,0 -0.01,0 -0.01,0 -0.02,0 -0.02,0 -0.04,0.01 -0.05,0.02 -0.01,0.01 -0.02,0.01 -0.03,0.02 0,0 0,0 0,0 0,0 0,0 0,0 l -0.11,0.1 c -0.01,0.02 -0.02,0.03 -0.03,0.05 z" + id="path798" /> + <path + class="st1" + d="m 631.16,395.31 c 0.38,-0.07 0.77,-0.14 1.15,-0.2 0.19,-0.03 0.38,-0.07 0.58,-0.1 0.19,-0.04 0.39,-0.06 0.56,-0.15 0.11,-0.06 0.1,-0.26 -0.04,-0.28 -0.2,-0.03 -0.39,0.02 -0.58,0.05 -0.2,0.03 -0.4,0.07 -0.6,0.1 -0.39,0.07 -0.78,0.14 -1.17,0.21 -0.1,0.02 -0.16,0.15 -0.14,0.24 0.03,0.1 0.14,0.15 0.24,0.13 z" + id="path800" /> + <path + class="st1" + d="m 637.1,394.4 c -0.13,0.01 -0.23,0.1 -0.21,0.24 0.01,0.06 0.03,0.1 0.08,0.14 0.06,0.04 0.12,0.05 0.19,0.04 0.18,-0.03 0.36,-0.05 0.54,-0.08 0.09,-0.01 0.18,-0.03 0.27,-0.05 0.04,-0.01 0.08,-0.02 0.12,-0.03 0.05,-0.01 0.1,-0.03 0.15,-0.06 0.11,-0.06 0.08,-0.23 -0.03,-0.26 -0.05,-0.01 -0.11,-0.02 -0.16,-0.02 l -0.13,0.01 c -0.09,0 -0.18,0.01 -0.27,0.02 -0.19,0.01 -0.37,0.03 -0.55,0.05 z" + id="path802" /> + <path + class="st1" + d="m 639.27,394.63 c 0.04,-0.01 0.08,-0.02 0.12,-0.03 0.01,0 0.02,0 0,0 0.01,0 0.02,0 0.03,0 0.02,0 0.04,0 0.06,0 0.02,0 0.04,0 0.06,0 0.01,0 0.03,0 0.04,0 0.04,0.01 0.08,0.01 0.11,0.02 0.02,0.01 0.04,0.01 0.05,0.02 0.01,0 0.02,0.01 0.03,0.01 0.02,0.01 -0.02,-0.01 0,0 0.04,0.02 0.09,0.04 0.14,0.06 0.01,0.01 -0.01,-0.01 0.01,0 0.01,0 0.02,0.01 0.02,0.01 0.02,0.01 0.04,0.02 0.05,0.03 0.04,0.02 0.07,0.05 0.12,0.06 0.07,0.02 0.12,-0.04 0.11,-0.11 -0.01,-0.09 -0.11,-0.18 -0.18,-0.23 -0.08,-0.07 -0.18,-0.11 -0.29,-0.14 -0.19,-0.05 -0.4,-0.05 -0.6,0.01 -0.07,0.02 -0.13,0.1 -0.1,0.18 0.06,0.08 0.14,0.14 0.22,0.11 z" + id="path804" /> + <path + class="st1" + d="m 632.98,396.49 c 0.2,0 0.2,-0.31 0,-0.31 -0.2,0 -0.2,0.31 0,0.31 z" + id="path806" /> + <path + class="st1" + d="m 636.39,396.11 c 0.04,-0.01 0.07,-0.01 0.11,-0.02 0.05,-0.01 0.09,-0.02 0.13,-0.05 0.08,-0.05 0.07,-0.18 -0.03,-0.21 -0.05,-0.01 -0.09,-0.02 -0.14,-0.01 -0.04,0 -0.07,0.01 -0.11,0.01 -0.08,0.01 -0.16,0.01 -0.24,0.02 -0.16,0.02 -0.32,0.04 -0.47,0.06 -0.1,0.01 -0.18,0.08 -0.16,0.19 0.01,0.1 0.11,0.15 0.2,0.14 0.16,-0.02 0.32,-0.05 0.47,-0.07 0.08,-0.03 0.16,-0.04 0.24,-0.06 z" + id="path808" /> + <path + class="st1" + d="m 638.75,395.86 c 0.23,-0.04 0.46,-0.08 0.69,-0.13 0.12,-0.03 0.24,-0.05 0.35,-0.1 0.05,-0.02 0.09,-0.03 0.14,-0.05 0.07,-0.02 0.12,-0.05 0.18,-0.09 0.08,-0.06 0.03,-0.19 -0.05,-0.21 -0.11,-0.03 -0.23,0 -0.35,0 -0.12,0 -0.26,0.03 -0.38,0.06 -0.23,0.04 -0.46,0.1 -0.69,0.14 -0.1,0.02 -0.17,0.14 -0.14,0.24 0.04,0.12 0.14,0.16 0.25,0.14 z" + id="path810" /> + <path + class="st1" + d="m 641.22,395.57 c 0.22,0.01 0.43,0.01 0.65,0.02 0.22,0.01 0.44,0.02 0.65,0.01 0.24,-0.01 0.24,-0.36 0,-0.38 -0.22,-0.01 -0.44,0 -0.65,0.01 -0.22,0.01 -0.43,0.01 -0.65,0.02 -0.2,0 -0.21,0.31 0,0.32 z" + id="path812" /> + <path + class="st1" + d="m 633.2,397.39 c -0.64,0.07 -1.28,0.13 -1.92,0.18 -0.62,0.04 -1.25,0.08 -1.87,0.1 -0.63,0.02 -1.31,-0.05 -1.92,0.09 -0.15,0.03 -0.14,0.26 0,0.29 0.6,0.15 1.3,0.07 1.92,0.05 0.66,-0.02 1.33,-0.06 1.99,-0.12 0.62,-0.06 1.24,-0.13 1.86,-0.21 0.64,-0.09 1.31,-0.14 1.91,-0.39 0.09,-0.04 0.03,-0.16 -0.05,-0.17 -0.65,-0.05 -1.29,0.1 -1.92,0.18 z" + id="path814" /> + <path + class="st1" + d="m 636.87,397.11 c 0.03,-0.01 0.04,-0.04 0.06,-0.06 0.02,-0.04 0.02,-0.1 -0.02,-0.13 -0.02,-0.02 -0.04,-0.04 -0.07,-0.04 -0.02,-0.01 -0.04,0 -0.06,0 -0.02,0 -0.03,0 -0.05,0 -0.01,0 -0.04,0.01 -0.05,0 0,0 -0.01,0 -0.01,0 -0.03,-0.01 -0.05,-0.01 -0.08,0 -0.04,0 -0.08,0.01 -0.12,0.01 -0.12,0.02 -0.24,0.05 -0.36,0.08 -0.09,0.02 -0.15,0.13 -0.12,0.22 0.03,0.1 0.12,0.14 0.22,0.12 0.12,-0.02 0.24,-0.04 0.35,-0.06 0.03,-0.01 0.06,-0.02 0.08,-0.03 0.02,-0.01 0.05,-0.02 0.07,-0.03 0.01,0 0.01,-0.01 0.02,-0.01 0.01,-0.01 0.01,-0.01 -0.01,0 0.03,0 0.06,-0.02 0.09,-0.03 0.02,-0.03 0.05,-0.03 0.06,-0.04 z" + id="path816" /> + <path + class="st1" + d="m 637.23,397.09 c 1.01,-0.02 2.03,-0.02 3.04,-0.04 0.5,-0.01 0.99,-0.01 1.49,-0.03 0.25,-0.01 0.5,-0.02 0.75,-0.03 0.23,-0.01 0.46,0.01 0.66,-0.1 0.11,-0.06 0.12,-0.25 0,-0.31 -0.22,-0.1 -0.43,-0.07 -0.66,-0.06 -0.23,0.01 -0.46,0.02 -0.69,0.03 -0.52,0.02 -1.03,0.07 -1.55,0.1 -1.01,0.06 -2.03,0.15 -3.04,0.21 -0.14,0.01 -0.15,0.23 0,0.23 z" + id="path818" /> + <path + class="st1" + d="m 637.1,397.91 c -0.03,-0.01 -0.06,-0.01 -0.09,-0.01 -0.05,0 -0.1,-0.01 -0.15,-0.01 -0.09,-0.01 -0.18,-0.01 -0.27,0 -0.19,0.01 -0.38,0.02 -0.56,0.03 -0.08,0 -0.16,0.07 -0.16,0.16 0,0.09 0.07,0.16 0.16,0.16 0.19,0.01 0.38,0.02 0.56,0.03 0.09,0 0.18,0 0.27,0 0.05,0 0.1,-0.01 0.15,-0.01 0.03,0 0.06,0 0.09,-0.01 0.04,-0.01 0.07,-0.04 0.1,-0.06 0.06,-0.04 0.05,-0.16 0,-0.2 -0.03,-0.05 -0.06,-0.08 -0.1,-0.08 z" + id="path820" /> + <path + class="st1" + d="m 637.9,397.89 c -0.23,0.03 -0.25,0.39 0,0.38 0.97,-0.06 1.94,-0.12 2.91,-0.21 0.95,-0.09 1.92,-0.12 2.85,-0.37 0.19,-0.05 0.14,-0.31 -0.04,-0.32 -0.96,-0.07 -1.91,0.08 -2.86,0.18 -0.96,0.09 -1.91,0.21 -2.86,0.34 z" + id="path822" /> + <path + class="st1" + d="m 565.96,328.79 c -0.02,-0.01 -0.05,-0.01 -0.08,-0.01 -0.03,0 -0.05,-0.01 -0.08,-0.01 -0.06,-0.01 -0.12,-0.01 -0.18,-0.01 -0.12,0 -0.23,0 -0.35,0 -0.08,0 -0.15,0.07 -0.15,0.15 0,0.08 0.06,0.15 0.15,0.15 h 0.35 c 0.06,0 0.11,0 0.17,-0.01 0.03,0 0.06,-0.01 0.08,-0.01 0.02,0 0.04,0 0.06,-0.01 0.02,0 0.04,-0.02 0.06,-0.03 0.07,-0.04 0.07,-0.15 0,-0.19 0,0 -0.01,-0.01 -0.03,-0.02 z" + id="path824" /> + <path + class="st1" + d="m 587.63,320.44 c 0.16,0 0.32,0 0.47,0 0.08,0 0.16,-0.01 0.24,-0.01 0.09,-0.01 0.17,-0.01 0.25,-0.04 0.12,-0.05 0.12,-0.2 0,-0.25 -0.08,-0.03 -0.17,-0.03 -0.25,-0.04 -0.08,0 -0.16,-0.01 -0.24,-0.01 -0.16,0 -0.32,0 -0.47,0 -0.09,0 -0.18,0.08 -0.17,0.17 0,0.1 0.07,0.18 0.17,0.18 z" + id="path826" /> + <path + class="st1" + d="m 587.73,322.23 c 0,0.08 0.07,0.17 0.16,0.16 0.29,-0.02 0.59,-0.03 0.88,-0.05 0.15,-0.01 0.31,-0.01 0.45,-0.04 0.14,-0.03 0.28,-0.07 0.42,-0.11 0.08,-0.03 0.09,-0.16 0,-0.17 -0.14,-0.03 -0.29,-0.04 -0.43,-0.05 -0.15,-0.01 -0.3,0.01 -0.44,0.02 l -0.88,0.08 c -0.08,0.01 -0.16,0.07 -0.16,0.16 z" + id="path828" /> + <path + class="st1" + d="m 601.86,320.03 c -0.13,0 -0.13,0.2 0,0.2 0.13,0.01 0.13,-0.2 0,-0.2 z" + id="path830" /> + <path + class="st1" + d="m 588.16,327.7 c -0.09,0 -0.14,0.07 -0.15,0.15 -0.02,0.18 -0.05,0.35 -0.07,0.53 -0.01,0.09 -0.02,0.17 -0.02,0.26 -0.01,0.09 -0.02,0.18 -0.01,0.27 0.02,0.13 0.17,0.15 0.22,0.03 0.03,-0.09 0.05,-0.17 0.06,-0.26 0.01,-0.09 0.03,-0.18 0.04,-0.27 0.03,-0.19 0.05,-0.37 0.07,-0.56 0.02,-0.08 -0.07,-0.15 -0.14,-0.15 z" + id="path832" /> + <path + class="st1" + d="m 601.06,326.92 c -0.02,0.41 -0.05,0.81 -0.07,1.22 -0.02,0.4 -0.06,0.8 0,1.2 0.01,0.1 0.18,0.09 0.2,0 0.1,-0.39 0.1,-0.8 0.13,-1.2 0.02,-0.41 0.04,-0.81 0.06,-1.22 0,-0.21 -0.31,-0.2 -0.32,0 z" + id="path834" /> + <path + class="st1" + d="m 581.24,324.55 c 0.21,0 0.21,-0.32 0,-0.32 -0.2,0 -0.2,0.32 0,0.32 z" + id="path836" /> + <path + class="st1" + d="m 580.71,327.87 c 0.03,0 0.05,-0.01 0.08,-0.02 0.02,-0.01 0.03,-0.01 0.05,-0.02 0.01,0 0.02,-0.01 0.02,-0.01 0,0 0,0 0.01,0 0.01,-0.01 0.02,-0.01 0.02,-0.02 v 0 c 0,0 0.01,-0.01 0.01,-0.01 0.02,-0.02 0.03,-0.04 0.03,-0.07 0,-0.01 0,-0.02 0,-0.03 0,-0.02 -0.01,-0.03 -0.03,-0.04 -0.01,-0.01 -0.02,-0.02 -0.04,-0.03 -0.01,0 -0.02,-0.01 -0.02,-0.01 -0.02,-0.01 -0.03,-0.01 -0.05,-0.02 -0.02,-0.01 -0.05,-0.02 -0.08,-0.02 -0.03,0 -0.05,0.01 -0.08,0.02 -0.05,0.03 -0.08,0.08 -0.08,0.13 0,0.05 0.03,0.1 0.08,0.13 0.03,0.01 0.06,0.02 0.08,0.02 z" + id="path838" /> + <path + class="st1" + d="m 580.56,331.12 c 0.01,0.01 0.02,0.01 0.02,0.02 0.02,0.01 0.03,0.02 0.05,0.03 0.02,0.01 0.05,0.02 0.08,0.02 0.03,0 0.05,-0.01 0.08,-0.02 0.05,-0.03 0.08,-0.08 0.08,-0.13 0,-0.05 -0.03,-0.11 -0.08,-0.13 -0.02,-0.01 -0.05,-0.02 -0.08,-0.02 -0.03,0 -0.05,0.01 -0.08,0.02 -0.02,0.01 -0.03,0.02 -0.05,0.03 -0.01,0.01 -0.02,0.01 -0.02,0.02 -0.01,0.01 -0.03,0.02 -0.04,0.03 -0.01,0.01 -0.01,0.02 -0.02,0.03 0,0.01 -0.01,0.02 -0.01,0.03 0,0.02 0.01,0.04 0.02,0.06 0.03,0 0.04,0.01 0.05,0.01 z" + id="path840" /> + <path + class="st1" + d="m 583.53,333.05 c 0.08,-0.01 0.13,-0.11 0.12,-0.19 -0.01,-0.08 -0.08,-0.16 -0.17,-0.15 -0.35,0.03 -0.7,0.09 -1.04,0.13 -0.09,0.01 -0.18,0.07 -0.17,0.17 0,0.08 0.08,0.18 0.17,0.17 0.36,-0.04 0.73,-0.07 1.09,-0.13 z" + id="path842" /> + <path + class="st1" + d="m 581.64,332.54 c 0.36,0 0.72,0.01 1.08,0.01 0.18,0 0.36,0 0.54,0.01 0.18,0 0.37,0.02 0.54,-0.04 0.14,-0.05 0.14,-0.24 0,-0.29 -0.17,-0.06 -0.36,-0.04 -0.54,-0.04 -0.18,0 -0.36,0 -0.54,0.01 -0.36,0 -0.72,0.01 -1.08,0.01 -0.21,-0.01 -0.21,0.33 0,0.33 z" + id="path844" /> + <path + class="st1" + d="m 586.3,332.51 c 0.16,0 0.32,0.01 0.47,-0.01 0.08,-0.01 0.16,-0.01 0.24,-0.02 0.08,-0.01 0.16,-0.01 0.24,-0.03 0.08,-0.02 0.08,-0.15 0,-0.17 -0.08,-0.02 -0.16,-0.02 -0.24,-0.03 -0.08,-0.01 -0.16,-0.01 -0.24,-0.02 -0.16,-0.01 -0.32,-0.01 -0.47,-0.01 -0.07,0 -0.14,0.06 -0.14,0.14 0,0.08 0.06,0.15 0.14,0.15 z" + id="path846" /> + <path + class="st1" + d="m 589.36,332.82 0.88,-0.05 c 0.15,-0.01 0.29,-0.02 0.44,-0.03 0.15,-0.01 0.31,0 0.45,-0.06 0.12,-0.05 0.15,-0.24 0,-0.28 -0.15,-0.04 -0.29,-0.02 -0.45,0 -0.15,0.01 -0.29,0.02 -0.44,0.03 -0.29,0.02 -0.59,0.05 -0.88,0.07 -0.09,0.01 -0.16,0.07 -0.16,0.16 0,0.08 0.07,0.16 0.16,0.16 z" + id="path848" /> + <path + class="st1" + d="m 608.27,318.2 c 0.02,0 0.05,0 0.07,0 0.05,0 0.11,0 0.16,-0.01 0.08,-0.01 0.15,-0.06 0.16,-0.14 0.01,-0.08 -0.04,-0.15 -0.11,-0.18 -0.05,-0.02 -0.1,-0.03 -0.16,-0.04 -0.02,-0.01 -0.05,-0.01 -0.07,-0.02 0.02,0 0.01,0 -0.02,-0.01 -0.02,-0.01 -0.03,-0.01 -0.05,-0.02 -0.11,-0.03 -0.23,-0.04 -0.34,-0.05 -0.21,-0.01 -0.41,-0.01 -0.61,0 -0.18,0 -0.23,0.27 -0.04,0.32 0.2,0.05 0.39,0.1 0.59,0.13 0.11,0.02 0.23,0.03 0.34,0.03 0.03,0 0.12,-0.02 0.08,-0.01 z" + id="path850" /> + <path + class="st1" + d="m 609.84,318.13 c 0.24,-0.02 0.49,-0.04 0.73,-0.07 0.24,-0.02 0.5,-0.01 0.74,-0.08 0.16,-0.04 0.11,-0.26 -0.04,-0.27 -0.12,-0.01 -0.24,0.01 -0.36,0.02 -0.12,0.01 -0.24,0.02 -0.36,0.03 l -0.72,0.06 c -0.08,0.01 -0.15,0.06 -0.15,0.15 0.01,0.09 0.08,0.17 0.16,0.16 z" + id="path852" /> + <path + class="st1" + d="m 608.33,319.07 c 0,0.1 0.08,0.18 0.18,0.18 0.18,0 0.37,0 0.55,0 0.09,0 0.18,0 0.27,-0.01 0.1,-0.01 0.22,0 0.3,-0.06 0.08,-0.06 0.08,-0.16 0,-0.22 -0.08,-0.06 -0.2,-0.05 -0.29,-0.06 -0.09,-0.01 -0.19,-0.01 -0.28,-0.01 -0.18,0 -0.37,0 -0.55,0 -0.1,0 -0.19,0.08 -0.18,0.18 z" + id="path854" /> + <path + class="st1" + d="m 609.57,319.97 c -0.09,0.01 -0.17,0.07 -0.17,0.17 0,0.09 0.08,0.17 0.17,0.17 l 0.9,-0.06 c 0.15,-0.01 0.29,-0.02 0.44,-0.04 0.15,-0.02 0.32,-0.01 0.46,-0.08 0.11,-0.06 0.07,-0.22 -0.03,-0.25 -0.14,-0.05 -0.3,-0.02 -0.44,-0.01 -0.15,0.01 -0.29,0.02 -0.44,0.03 z" + id="path856" /> + <path + class="st1" + d="m 609.7,322.82 c 0.39,-0.02 0.78,-0.04 1.17,-0.06 0.19,-0.01 0.38,-0.02 0.58,-0.03 0.1,0 0.19,-0.02 0.29,-0.03 0.09,-0.02 0.2,-0.02 0.28,-0.07 0.07,-0.04 0.08,-0.16 0,-0.2 -0.09,-0.04 -0.18,-0.04 -0.28,-0.04 -0.09,0 -0.18,-0.01 -0.27,0 -0.2,0.01 -0.4,0.03 -0.6,0.04 -0.39,0.03 -0.78,0.05 -1.17,0.08 -0.19,0.01 -0.19,0.32 0,0.31 z" + id="path858" /> + <path + class="st1" + d="m 612.54,322.96 c 0.09,-0.02 0.18,-0.05 0.27,-0.07 0.04,-0.01 0.09,-0.02 0.13,-0.03 0.06,-0.01 0.11,-0.04 0.16,-0.07 0.05,-0.03 0.09,-0.11 0.07,-0.17 -0.02,-0.06 -0.07,-0.11 -0.14,-0.11 -0.06,0 -0.11,0 -0.17,0.01 -0.05,0.01 -0.09,0.02 -0.14,0.03 l -0.27,0.07 c -0.09,0.02 -0.15,0.13 -0.12,0.21 0.03,0.1 0.12,0.16 0.21,0.13 z" + id="path860" /> + <path + class="st1" + d="m 610.52,324.64 c -0.36,0 -0.72,0.01 -1.08,0.01 -0.18,0 -0.18,0.28 0,0.28 0.36,0 0.72,0.01 1.08,0.01 0.36,0 0.72,0.02 1.06,-0.09 0.06,-0.02 0.06,-0.1 0,-0.12 -0.34,-0.11 -0.7,-0.1 -1.06,-0.09 z" + id="path862" /> + <path + class="st1" + d="m 611.97,324.83 c 0.01,0.06 0.07,0.12 0.13,0.12 0.21,-0.02 0.41,-0.04 0.62,-0.05 0.1,-0.01 0.2,-0.02 0.31,-0.03 0.12,-0.01 0.24,-0.01 0.34,-0.07 0.1,-0.06 0.08,-0.21 -0.03,-0.25 -0.11,-0.04 -0.22,-0.01 -0.34,0.01 -0.11,0.01 -0.21,0.03 -0.31,0.04 -0.21,0.03 -0.41,0.06 -0.62,0.08 -0.07,0.01 -0.11,0.09 -0.1,0.15 z" + id="path864" /> + <path + class="st1" + d="m 610.52,326.16 c 0.11,0 0.23,-0.01 0.34,-0.01 0.12,0 0.24,0 0.35,-0.04 0.12,-0.04 0.13,-0.21 0,-0.25 -0.11,-0.04 -0.23,-0.04 -0.35,-0.04 -0.11,0 -0.23,-0.01 -0.34,-0.01 -0.23,0 -0.45,0 -0.68,0.01 -0.22,0 -0.22,0.34 0,0.35 0.22,-0.01 0.45,-0.01 0.68,-0.01 z" + id="path866" /> + <path + class="st1" + d="m 612.88,325.92 c -0.01,-0.02 -0.02,-0.03 -0.04,-0.04 -0.01,-0.01 -0.03,-0.02 -0.05,-0.02 l -0.13,-0.03 c -0.03,-0.01 -0.06,-0.01 -0.09,0 -0.03,0.01 -0.05,0.02 -0.07,0.04 -0.01,0.01 -0.02,0.02 -0.03,0.03 -0.01,0.03 -0.02,0.05 -0.02,0.08 0,0.02 0,0.04 0.01,0.06 0.01,0.02 0.02,0.04 0.03,0.05 0.02,0.02 0.04,0.03 0.07,0.04 0.03,0.01 0.06,0.01 0.09,0 l 0.13,-0.03 0.03,-0.01 c 0.02,-0.01 0.03,-0.02 0.04,-0.04 0.01,-0.01 0.01,-0.02 0.02,-0.03 0.01,-0.02 0.01,-0.03 0.01,-0.05 0,-0.01 0,-0.02 0,-0.04 z" + id="path868" /> + <path + class="st1" + d="m 609.04,327.17 c -0.08,0 -0.15,0.07 -0.15,0.15 0,0.08 0.07,0.15 0.15,0.15 0.18,0 0.36,0 0.54,0 0.09,0 0.18,-0.01 0.27,-0.01 0.09,-0.01 0.18,-0.04 0.27,-0.05 0.08,-0.02 0.08,-0.15 0,-0.17 -0.09,-0.02 -0.18,-0.04 -0.27,-0.05 -0.09,-0.01 -0.18,-0.01 -0.27,-0.01 -0.18,-0.02 -0.36,-0.01 -0.54,-0.01 z" + id="path870" /> + <path + class="st1" + d="m 610.6,328.37 c -0.07,0.01 -0.11,0.1 -0.09,0.16 0.02,0.07 0.09,0.1 0.16,0.09 0.27,-0.04 0.54,-0.09 0.82,-0.13 0.14,-0.02 0.27,-0.04 0.41,-0.07 0.06,-0.01 0.13,-0.02 0.19,-0.03 0.07,-0.01 0.14,-0.05 0.21,-0.08 0.11,-0.05 0.04,-0.21 -0.06,-0.21 -0.27,-0.02 -0.55,0.07 -0.82,0.12 -0.28,0.05 -0.55,0.1 -0.82,0.15 z" + id="path872" /> + <path + class="st1" + d="m 613.3,328.15 c -0.13,0 -0.13,0.2 0,0.2 0.12,0 0.12,-0.2 0,-0.2 z" + id="path874" /> + <path + class="st1" + d="m 608.9,329.38 c -0.21,0.02 -0.22,0.35 0,0.34 0.93,-0.08 1.86,-0.16 2.78,-0.24 0.46,-0.04 0.93,-0.08 1.39,-0.12 0.44,-0.04 0.89,-0.06 1.32,-0.15 0.15,-0.03 0.11,-0.26 -0.04,-0.26 -0.46,-0.02 -0.93,0.04 -1.39,0.08 -0.45,0.04 -0.89,0.08 -1.34,0.12 -0.9,0.07 -1.81,0.15 -2.72,0.23 z" + id="path876" /> + <path + class="st1" + d="m 613.07,330.35 c -0.12,-0.04 -0.22,0.01 -0.33,0.04 -0.11,0.03 -0.22,0.06 -0.34,0.09 -0.22,0.05 -0.44,0.09 -0.66,0.11 -0.19,0.02 -0.38,0 -0.56,0 -0.02,-0.06 -0.07,-0.1 -0.14,-0.11 -0.03,0 -0.06,0 -0.09,0 -0.04,0 -0.08,0 -0.11,0.01 -0.06,0.01 -0.11,0.02 -0.17,0.03 -0.11,0.02 -0.23,0.04 -0.34,0.07 -0.02,0 -0.03,0.02 -0.04,0.03 -0.02,0.01 -0.03,0.02 -0.04,0.03 -0.04,0.05 -0.06,0.11 -0.04,0.16 0.03,0.08 0.09,0.11 0.17,0.12 0,0 0.01,0 0.01,0.01 0.01,0 0.02,0 0.03,0 0.01,0 0.01,0 0.02,0 0,0 0.01,0 0.01,0 0.46,0.05 0.92,0.06 1.38,0.01 0.23,-0.02 0.46,-0.06 0.69,-0.11 0.21,-0.05 0.53,-0.07 0.67,-0.26 0.05,-0.08 -0.03,-0.2 -0.12,-0.23 z" + id="path878" /> + <path + class="st1" + d="m 596.54,332.69 c 0.3,0 0.6,0 0.9,0 0.15,0 0.29,0 0.44,0 0.07,0 0.15,0 0.22,0 0.03,0 0.07,0 0.1,0 0.05,0 0.09,-0.03 0.14,-0.05 0.1,-0.04 0.1,-0.21 0,-0.25 -0.09,-0.04 -0.15,-0.05 -0.24,-0.05 -0.07,0 -0.14,0 -0.2,0 -0.15,0 -0.3,0 -0.46,0 -0.3,0 -0.6,0 -0.9,0 -0.24,-0.02 -0.24,0.35 0,0.35 z" + id="path880" /> + <path + class="st1" + d="m 600.93,332.53 c 0.23,0 0.45,0 0.68,0 0.23,0 0.46,0 0.68,-0.07 0.09,-0.03 0.09,-0.15 0,-0.18 -0.22,-0.07 -0.45,-0.07 -0.68,-0.07 -0.23,0 -0.45,0 -0.68,0 -0.21,0 -0.21,0.32 0,0.32 z" + id="path882" /> + <path + class="st1" + d="m 604.78,332.55 c 0.23,0 0.45,0 0.68,0.01 0.11,0 0.23,0 0.34,0 0.12,0 0.24,0 0.35,-0.04 0.14,-0.05 0.14,-0.24 0,-0.29 -0.11,-0.04 -0.23,-0.04 -0.35,-0.04 -0.11,0 -0.23,0 -0.34,0 -0.23,0 -0.45,0 -0.68,0.01 -0.23,-0.01 -0.23,0.35 0,0.35 z" + id="path884" /> + <path + class="st1" + d="m 608.24,332.29 c 0.28,-0.02 0.55,-0.05 0.83,-0.07 0.14,-0.01 0.28,-0.02 0.42,-0.04 0.13,-0.02 0.35,-0.01 0.35,-0.19 0,-0.19 -0.24,-0.16 -0.37,-0.15 -0.13,0 -0.27,0.02 -0.4,0.04 -0.28,0.03 -0.55,0.06 -0.83,0.08 -0.09,0.01 -0.17,0.07 -0.17,0.17 0,0.08 0.08,0.17 0.17,0.16 z" + id="path886" /> + <path + class="st1" + d="m 613.3,331 c -0.09,0.01 -0.17,0.07 -0.17,0.17 0,0.09 0.08,0.18 0.17,0.17 0.28,-0.02 0.55,-0.04 0.83,-0.06 0.13,-0.01 0.27,-0.02 0.4,-0.03 0.12,-0.01 0.35,-0.06 0.35,-0.21 0,-0.16 -0.23,-0.17 -0.35,-0.17 -0.13,0 -0.27,0.03 -0.4,0.04 -0.28,0.03 -0.56,0.06 -0.83,0.09 z" + id="path888" /> + <path + class="st1" + d="m 609.06,321.29 c 0.07,-0.01 0.15,-0.09 0.16,-0.16 0.01,-0.07 0.01,-0.11 -0.02,-0.18 -0.03,-0.07 -0.12,-0.12 -0.2,-0.11 -0.32,0.04 -0.64,0.09 -0.95,0.14 -0.05,0.01 -0.11,0.06 -0.13,0.1 -0.03,0.05 -0.04,0.12 -0.02,0.17 0.02,0.05 0.05,0.11 0.1,0.13 0.06,0.03 0.11,0.03 0.17,0.02 0.15,-0.02 0.3,-0.04 0.45,-0.06 0.15,-0.01 0.3,-0.02 0.44,-0.05 z" + id="path890" /> + <path + class="st1" + d="m 608.77,324.39 c -0.03,-0.04 -0.08,-0.05 -0.13,-0.05 -0.05,0 -0.09,-0.01 -0.13,-0.01 -0.04,0.01 -0.09,0.01 -0.13,0.02 -0.09,0.01 -0.18,0.02 -0.27,0.03 -0.05,0 -0.1,0.01 -0.14,0.04 -0.02,0.01 -0.04,0.03 -0.06,0.04 -0.06,0.06 -0.09,0.15 -0.08,0.23 0.01,0.07 0.04,0.13 0.1,0.18 0.06,0.05 0.16,0.08 0.24,0.05 0.09,-0.03 0.17,-0.07 0.26,-0.1 0.04,-0.02 0.09,-0.03 0.13,-0.05 0.04,-0.01 0.07,-0.03 0.1,-0.05 0.02,-0.01 0.04,-0.03 0.06,-0.04 0.07,-0.04 0.11,-0.13 0.08,-0.21 0.01,-0.03 -0.01,-0.05 -0.03,-0.08 z" + id="path892" /> + <path + class="st1" + d="m 585.23,335.85 c 0.21,0 0.43,0.01 0.64,0.01 0.21,0 0.43,0.01 0.64,0.01 0.21,-0.01 0.21,-0.33 0,-0.33 -0.21,-0.01 -0.43,0 -0.64,0.01 -0.21,0 -0.43,0.01 -0.64,0.01 -0.19,-0.02 -0.19,0.28 0,0.29 z" + id="path894" /> + <path + class="st1" + d="m 582.57,334.85 c -0.22,0.01 -0.23,0.37 0,0.35 0.34,-0.02 0.68,-0.05 1.02,-0.07 0.17,-0.01 0.34,-0.02 0.51,-0.03 0.17,-0.01 0.34,-0.01 0.51,-0.07 0.12,-0.04 0.15,-0.25 0,-0.28 -0.17,-0.03 -0.33,-0.02 -0.51,0 -0.17,0.01 -0.34,0.02 -0.51,0.03 z" + id="path896" /> + <path + class="st1" + d="m 586.83,338.58 c -0.1,0 -0.21,0 -0.31,0 -0.21,0 -0.41,0 -0.62,0 -0.1,0 -0.18,0.08 -0.18,0.18 0,0.1 0.08,0.18 0.18,0.18 0.21,0 0.41,0 0.62,0 0.1,0 0.21,0 0.31,0 0.11,0 0.24,0.01 0.33,-0.06 0.09,-0.06 0.09,-0.18 0,-0.23 -0.09,-0.08 -0.22,-0.07 -0.33,-0.07 z" + id="path898" /> + <path + class="st1" + d="m 588.03,339.56 c 0.16,-0.02 0.31,-0.04 0.47,-0.05 0.08,-0.01 0.15,-0.02 0.23,-0.03 0.09,-0.01 0.18,-0.01 0.26,-0.04 0.08,-0.03 0.13,-0.1 0.12,-0.19 -0.01,-0.09 -0.08,-0.14 -0.17,-0.15 -0.09,-0.01 -0.18,0.02 -0.27,0.03 l -0.23,0.04 c -0.15,0.03 -0.31,0.05 -0.46,0.08 -0.08,0.01 -0.12,0.1 -0.11,0.17 0.01,0.07 0.08,0.15 0.16,0.14 z" + id="path900" /> + <path + class="st1" + d="m 588.68,341.35 c 0.11,-0.01 0.24,-0.01 0.34,-0.06 0.12,-0.07 0.09,-0.25 -0.04,-0.29 -0.1,-0.03 -0.22,0 -0.32,0.01 -0.1,0.01 -0.2,0.03 -0.29,0.04 -0.2,0.03 -0.4,0.05 -0.6,0.08 -0.08,0.01 -0.16,0.06 -0.16,0.16 0,0.08 0.07,0.16 0.16,0.16 0.2,-0.02 0.41,-0.04 0.61,-0.06 0.09,-0.02 0.19,-0.03 0.3,-0.04 z" + id="path902" /> + <path + class="st1" + d="m 589.68,342.34 c -0.02,-0.03 -0.04,-0.05 -0.07,-0.07 -0.02,-0.02 -0.05,-0.03 -0.07,-0.04 -0.13,-0.07 -0.27,-0.1 -0.42,-0.1 -0.28,-0.01 -0.56,0.09 -0.75,0.29 -0.06,0.06 -0.06,0.17 0,0.24 0.07,0.07 0.17,0.06 0.24,0 0.02,-0.02 0.04,-0.04 0.06,-0.05 -0.03,0.02 0.02,-0.01 0.02,-0.01 0.01,-0.01 0.02,-0.01 0.03,-0.02 0.02,-0.01 0.05,-0.03 0.08,-0.04 0,0 0,0 0,0 0,0 0,0 0.01,0 0.01,0 0.02,-0.01 0.04,-0.01 0.03,-0.01 0.05,-0.02 0.08,-0.02 0.01,0 0.03,-0.01 0.04,-0.01 0,0 0.05,-0.01 0.02,0 -0.02,0 0.02,0 0.02,0 0.02,0 0.03,0 0.05,0 0.03,0 0.05,0 0.08,0 0.01,0 0.03,0 0.04,0 0,0 0,0 0,0 0,0 0,0 0.01,0 0.03,0.01 0.05,0.01 0.08,0.02 0.05,0.01 0.09,0.03 0.14,0.05 0.01,0 0.02,0.01 0.02,0.01 0.01,0 0.02,0.01 0.03,0.01 0.02,0.01 0.05,0.02 0.07,0.03 0.03,0 0,0 0.01,0 0.06,0.02 0.1,0.06 0.17,0.07 0.06,0 0.1,-0.05 0.11,-0.11 0,-0.08 -0.06,-0.14 -0.1,-0.2 -0.02,-0.01 -0.04,-0.04 -0.04,-0.04 z" + id="path904" /> + <path + class="st1" + d="m 589.04,344.84 h -0.61 c -0.09,0 -0.17,0.08 -0.17,0.17 0,0.09 0.08,0.17 0.17,0.17 h 0.61 c 0.21,0 0.42,0.02 0.62,-0.03 0.13,-0.03 0.13,-0.24 0,-0.27 -0.2,-0.06 -0.42,-0.04 -0.62,-0.04 z" + id="path906" /> + <path + class="st1" + d="m 588.42,335.32 c 0.77,-0.02 1.55,-0.01 2.3,-0.16 0.19,-0.04 0.13,-0.3 -0.04,-0.31 -0.75,-0.06 -1.51,0.04 -2.26,0.1 -0.23,0.02 -0.24,0.37 0,0.37 z" + id="path908" /> + <path + class="st1" + d="m 594.41,335.05 c 0.35,0 0.71,0 1.06,0 0.17,0 0.35,-0.02 0.52,-0.02 0.18,-0.01 0.36,-0.01 0.54,-0.03 0.13,-0.02 0.13,-0.18 0,-0.2 -0.18,-0.02 -0.36,-0.03 -0.54,-0.03 -0.17,-0.01 -0.35,-0.02 -0.52,-0.02 -0.35,0 -0.71,0 -1.06,0 -0.19,0 -0.19,0.3 0,0.3 z" + id="path910" /> + <path + class="st1" + d="m 607.98,335.87 c 0.23,0 0.23,-0.35 0,-0.35 -0.23,0 -0.23,0.35 0,0.35 z" + id="path912" /> + <path + class="st1" + d="m 605.78,337.41 c -0.22,0.01 -0.43,0.02 -0.64,0.03 -0.43,0.02 -0.86,0.04 -1.29,0.07 -0.19,0.01 -0.19,0.31 0,0.3 0.43,-0.02 0.86,-0.04 1.29,-0.06 0.21,-0.01 0.43,-0.02 0.64,-0.03 0.21,-0.01 0.42,-0.01 0.63,-0.06 0.11,-0.03 0.13,-0.23 0,-0.25 -0.21,-0.03 -0.41,-0.01 -0.63,0 z" + id="path914" /> + <path + class="st1" + d="m 605.05,339.26 c -0.01,0 -0.02,0 -0.03,0 -0.01,0 -0.03,0.01 -0.04,0.01 h -0.04 c -0.03,0 -0.06,0 -0.09,0.01 -0.02,0.01 -0.05,0.02 -0.07,0.03 -0.02,0.01 -0.03,0.01 -0.05,0.02 -0.03,0.01 -0.05,0.05 -0.05,0.08 0,0.03 0.02,0.07 0.05,0.08 0.01,0.01 0.03,0.01 0.04,0.02 0.02,0.01 0.05,0.02 0.07,0.03 0.03,0.01 0.06,0.01 0.08,0.01 0.01,0 0.03,0 0.04,0 0.01,0 0.03,0.01 0.04,0.01 0.01,0 0.02,0 0.03,0 0.04,0 0.08,-0.02 0.11,-0.05 0.03,-0.03 0.05,-0.07 0.05,-0.11 0,-0.04 -0.01,-0.08 -0.05,-0.11 -0.01,-0.01 -0.05,-0.03 -0.09,-0.03 z" + id="path916" /> + <path + class="st1" + d="m 602.77,340.76 c -0.52,0.02 -1.05,0.03 -1.57,0.05 -0.21,0.01 -0.21,0.34 0,0.33 0.52,-0.02 1.05,-0.04 1.57,-0.06 0.26,-0.01 0.52,-0.02 0.79,-0.03 0.17,-0.01 0.34,-0.02 0.51,-0.03 -0.02,0.07 0.07,0.13 0.13,0.09 0.07,-0.04 0.12,-0.1 0.17,-0.16 0.06,-0.06 0.04,-0.19 -0.05,-0.2 -0.51,-0.08 -1.05,-0.01 -1.55,0.01 z" + id="path918" /> + <path + class="st1" + d="m 602.82,342.49 c -0.05,-0.02 -0.09,-0.04 -0.14,-0.05 -0.05,-0.01 -0.11,0 -0.16,0 -0.09,0 -0.18,0.01 -0.27,0.01 -0.19,0.01 -0.38,0.03 -0.58,0.04 -0.38,0.03 -0.77,0.05 -1.15,0.08 -0.23,0.02 -0.23,0.37 0,0.36 0.39,-0.02 0.78,-0.04 1.17,-0.06 0.19,-0.01 0.38,-0.02 0.58,-0.03 0.1,-0.01 0.19,-0.01 0.29,-0.02 0.04,0 0.09,0 0.14,-0.01 0.05,-0.01 0.1,-0.05 0.15,-0.07 0.11,-0.06 0.07,-0.22 -0.03,-0.25 z" + id="path920" /> + <path + class="st1" + d="m 601.48,344.07 c -0.04,0 -0.07,0.01 -0.11,0.01 -0.09,0.01 -0.18,0.01 -0.27,0.03 -0.16,0.02 -0.32,0.05 -0.48,0.07 -0.09,0.01 -0.15,0.13 -0.12,0.21 0.03,0.1 0.12,0.13 0.21,0.12 0.16,-0.02 0.32,-0.04 0.47,-0.07 0.08,-0.01 0.16,-0.03 0.23,-0.05 0.04,-0.01 0.07,-0.01 0.11,-0.02 0.05,-0.01 0.09,-0.03 0.13,-0.05 0.09,-0.06 0.08,-0.2 -0.03,-0.23 -0.04,-0.02 -0.08,-0.03 -0.14,-0.02 z" + id="path922" /> + <path + class="st1" + d="m 604.17,344.3 c -0.19,-0.03 -0.38,-0.04 -0.57,-0.04 -0.18,0 -0.36,0 -0.54,0 -0.1,0 -0.2,0.09 -0.2,0.2 0,0.11 0.09,0.2 0.2,0.2 0.18,0 0.36,0 0.54,0 0.19,0 0.38,0 0.57,-0.04 0.16,-0.01 0.16,-0.29 0,-0.32 z" + id="path924" /> + <path + class="st1" + d="m 592.43,341.54 c 0,0 -0.01,-0.01 -0.01,-0.01 -0.01,-0.01 -0.01,-0.02 -0.02,-0.02 0,0 -0.01,0 -0.01,-0.01 0,0 -0.01,-0.01 -0.01,-0.01 -0.01,-0.01 -0.01,-0.02 -0.01,-0.02 0,-0.01 -0.01,-0.02 -0.01,-0.03 0,-0.01 0,-0.01 0,-0.02 0,0 0,-0.01 0,-0.01 0,0 0,0 0,0 0,0 0.01,-0.01 0.01,-0.01 0,0 -0.01,0.01 -0.01,0.01 0,0 0,0 0,-0.01 0,0 0,0 -0.01,0.01 0,0 0,0 0,0 0.02,-0.01 0.03,-0.03 0.04,-0.05 0.01,-0.02 0,-0.05 -0.01,-0.07 -0.03,-0.04 -0.08,-0.06 -0.12,-0.03 -0.07,0.04 -0.11,0.11 -0.11,0.19 0,0.08 0.03,0.15 0.08,0.2 0.01,0.01 0.02,0.02 0.04,0.04 0.02,0.02 0.05,0.03 0.08,0.03 0.01,0 0.03,0 0.04,-0.01 -0.01,0 -0.02,0 -0.03,0 0.04,0 0.09,-0.01 0.11,-0.04 0.02,-0.02 0.02,-0.04 0.02,-0.07 0,-0.02 -0.02,-0.05 -0.04,-0.06 0,0 -0.01,0 -0.02,0 z" + id="path926" /> + <path + class="st1" + d="m 595.63,342.56 c 0,0 0,0 0,0 -0.01,-0.01 -0.01,-0.02 -0.01,-0.03 -0.01,-0.01 -0.02,-0.02 -0.02,-0.03 0,0 -0.01,-0.01 -0.01,-0.01 0,0 0,0 -0.01,-0.01 0,0 0,-0.01 0,-0.01 0,0 -0.01,-0.01 -0.01,-0.01 -0.01,-0.01 -0.01,-0.02 -0.02,-0.03 -0.01,-0.02 0,0.01 0,0 0,-0.01 0,-0.01 -0.01,-0.02 0,-0.01 -0.01,-0.02 -0.01,-0.04 0,-0.01 0,-0.02 -0.01,-0.03 0,-0.01 0,0.01 0,0 0,-0.01 0,-0.01 0,-0.02 0,-0.02 0,-0.05 0,-0.07 0,0 0,-0.01 0,-0.01 0,-0.01 0,-0.01 0,-0.02 0,-0.01 0.01,-0.02 0.01,-0.04 0,0 0,-0.01 0,-0.01 0.01,-0.02 0,0.01 0,-0.01 0.01,-0.01 0.01,-0.02 0.02,-0.04 0.02,-0.04 0.01,-0.08 -0.03,-0.1 -0.04,-0.02 -0.08,-0.01 -0.1,0.03 -0.07,0.1 -0.09,0.22 -0.08,0.34 0.01,0.07 0.03,0.13 0.05,0.19 0.02,0.04 0.03,0.07 0.07,0.09 0.03,0.02 0.07,0.05 0.1,0.04 0.05,-0.01 0.09,-0.03 0.09,-0.09 0,-0.02 -0.01,-0.04 -0.02,-0.06 0.01,0.01 0.01,0 0,0 z" + id="path928" /> + <path + class="st1" + d="m 596.94,341.21 c 0.08,0 0.08,-0.12 0,-0.12 -0.08,0 -0.08,0.12 0,0.12 z" + id="path930" /> + <path + class="st1" + d="m 598.5,342.34 c 0,-0.27 -0.01,-0.53 -0.01,-0.8 0,-0.12 -0.18,-0.12 -0.18,0 -0.01,0.27 -0.01,0.53 -0.01,0.8 0,0.14 0.21,0.14 0.2,0 z" + id="path932" /> + <path + class="st1" + d="m 596.21,341.61 c -0.2,0.01 -0.4,0.03 -0.6,0.04 -0.1,0.01 -0.18,0.08 -0.16,0.19 0.01,0.11 0.11,0.15 0.21,0.14 0.2,-0.03 0.39,-0.06 0.59,-0.09 0.2,-0.03 0.4,-0.05 0.59,-0.1 0.11,-0.03 0.09,-0.19 -0.03,-0.2 -0.2,-0.02 -0.4,0 -0.6,0.02 z" + id="path934" /> + <path + class="st1" + d="m 582.84,347.56 c 0.14,0.01 0.28,0.01 0.42,0.02 0.07,0 0.14,0.01 0.21,0.01 0.03,0 0.06,0 0.1,0 0.06,0 0.11,-0.02 0.16,-0.05 0.1,-0.06 0.1,-0.22 0,-0.27 -0.05,-0.03 -0.1,-0.05 -0.16,-0.05 -0.03,0 -0.06,0 -0.1,0 -0.07,0 -0.14,0.01 -0.21,0.01 -0.14,0.01 -0.28,0.01 -0.42,0.02 -0.08,0 -0.16,0.07 -0.16,0.16 0.01,0.08 0.07,0.14 0.16,0.15 z" + id="path936" /> + <path + class="st1" + d="m 581.51,348.49 c 0.38,0 0.77,0 1.15,-0.03 0.09,-0.01 0.19,-0.02 0.28,-0.03 0.1,-0.02 0.2,-0.05 0.29,-0.07 0.09,-0.02 0.17,-0.04 0.26,-0.05 0.1,-0.01 0.21,-0.02 0.3,-0.06 0.07,-0.03 0.09,-0.14 0,-0.16 -0.11,-0.03 -0.24,-0.02 -0.35,-0.03 -0.13,-0.01 -0.25,-0.02 -0.38,-0.03 0.03,0.01 0.06,0.02 0.09,0.02 -0.12,-0.06 -0.27,-0.05 -0.4,-0.05 -0.14,0 -0.28,0.01 -0.42,0.02 -0.27,0.03 -0.55,0.05 -0.82,0.08 -0.24,0.03 -0.25,0.39 0,0.39 z" + id="path938" /> + <path + class="st1" + d="m 583.46,348.73 c 0,0.1 0.08,0.17 0.17,0.18 0.18,0 0.36,0 0.54,0 0.09,0 0.18,0 0.27,0 0.1,0 0.2,-0.02 0.3,-0.03 0.15,-0.02 0.15,-0.27 0,-0.29 -0.1,-0.02 -0.2,-0.03 -0.3,-0.03 -0.09,0 -0.18,0 -0.27,0 -0.18,0 -0.36,0 -0.54,0 -0.08,-0.01 -0.17,0.07 -0.17,0.17 z" + id="path940" /> + <path + class="st1" + d="m 593.13,347.73 c 0.19,0 0.38,-0.01 0.58,-0.03 0.19,-0.02 0.39,-0.03 0.58,-0.06 0.18,-0.03 0.38,-0.03 0.56,-0.09 0.11,-0.04 0.13,-0.22 0,-0.25 -0.19,-0.04 -0.38,-0.02 -0.57,-0.03 -0.2,-0.01 -0.4,0 -0.6,0.01 -0.19,0.01 -0.38,0.02 -0.58,0.04 -0.2,0.02 -0.39,0.07 -0.59,0.1 -0.16,0.03 -0.11,0.26 0.04,0.27 0.19,0.02 0.38,0.04 0.58,0.04 z" + id="path942" /> + <path + class="st1" + d="m 597.34,347.58 c 0.4,0.01 0.8,0.01 1.2,0.02 0.2,0 0.39,0.01 0.59,0.01 0.19,0 0.43,0.02 0.57,-0.11 0.05,-0.05 0.05,-0.15 0,-0.2 -0.14,-0.13 -0.37,-0.1 -0.55,-0.1 -0.2,0 -0.41,0 -0.61,0.01 -0.4,0.01 -0.8,0.01 -1.2,0.02 -0.23,-0.01 -0.23,0.34 0,0.35 z" + id="path944" /> + <path + class="st1" + d="m 612.81,347.16 c 0.14,-0.05 0.28,-0.09 0.41,-0.14 0.07,-0.02 0.14,-0.04 0.2,-0.07 0.09,-0.03 0.21,-0.05 0.26,-0.14 0.04,-0.07 0.02,-0.18 -0.06,-0.22 -0.05,-0.02 -0.09,-0.03 -0.14,-0.02 -0.02,0 -0.03,0.01 -0.05,0.01 -0.04,0.01 -0.07,0.02 -0.11,0.04 l -0.2,0.07 c -0.14,0.05 -0.28,0.09 -0.41,0.14 -0.08,0.03 -0.15,0.12 -0.12,0.21 0.04,0.09 0.13,0.15 0.22,0.12 z" + id="path946" /> + <path + class="st1" + d="m 614.89,347.42 c -0.54,0.07 -1.07,0.19 -1.62,0.25 -0.52,0.06 -1.04,0.09 -1.57,0.11 -1.07,0.05 -2.14,0.1 -3.2,0.1 -0.23,0 -0.22,0.33 0,0.35 1.09,0.09 2.17,0.11 3.26,0.02 0.54,-0.04 1.08,-0.11 1.62,-0.17 0.52,-0.06 1.05,-0.08 1.56,-0.19 0.28,-0.04 0.23,-0.5 -0.05,-0.47 z" + id="path948" /> + <path + class="st1" + d="m 581.5,353.48 c -0.22,-0.17 -0.55,-0.1 -0.81,-0.08 -0.28,0.02 -0.56,0.04 -0.84,0.07 -0.28,0.03 -0.56,0.07 -0.84,0.12 -0.29,0.05 -0.58,0.07 -0.86,0.15 -0.15,0.04 -0.11,0.24 0.03,0.26 0.29,0.03 0.58,0 0.88,0 0.27,0 0.54,0 0.81,-0.02 0.27,-0.02 0.54,-0.04 0.81,-0.06 0.25,-0.02 0.63,0 0.81,-0.2 0.06,-0.06 0.08,-0.18 0.01,-0.24 z" + id="path950" /> + <path + class="st1" + d="m 581.78,353.8 c 0.2,0.01 0.4,0.02 0.6,0.04 0.1,0.01 0.19,0.02 0.29,0.02 0.12,-0.01 0.23,0 0.33,-0.07 l 0.02,-0.01 c 0.13,-0.05 0.13,-0.22 0,-0.27 -0.01,0 -0.01,0 -0.02,-0.01 -0.09,-0.07 -0.21,-0.06 -0.33,-0.07 -0.1,-0.01 -0.2,0.01 -0.29,0.02 -0.2,0.02 -0.4,0.03 -0.6,0.04 -0.2,0.02 -0.2,0.3 0,0.31 z" + id="path952" /> + <path + class="st1" + d="m 583.37,353.82 c 0.2,-0.01 0.4,-0.02 0.6,-0.02 0.11,0 0.22,-0.02 0.32,-0.03 0.09,-0.01 0.18,-0.02 0.26,-0.06 0.09,-0.02 0.19,-0.04 0.25,-0.11 0.07,-0.07 0.05,-0.17 -0.03,-0.22 -0.07,-0.05 -0.16,-0.05 -0.24,-0.05 -0.09,-0.04 -0.19,-0.02 -0.28,-0.01 -0.11,0.01 -0.22,0.02 -0.34,0.04 -0.2,0.03 -0.39,0.07 -0.59,0.1 -0.09,0.02 -0.15,0.13 -0.14,0.21 0.01,0.07 0.09,0.15 0.19,0.15 z" + id="path954" /> + <path + class="st1" + d="m 609.25,353.4 c 0.32,0.06 0.65,0.03 0.98,0.01 0.16,-0.01 0.32,-0.01 0.47,-0.03 0.09,-0.01 0.17,-0.03 0.26,-0.05 0.07,-0.01 0.11,-0.04 0.15,-0.07 0.05,-0.03 0.1,-0.05 0.14,-0.11 0.03,-0.04 0.01,-0.1 -0.02,-0.13 -0.03,-0.04 -0.07,-0.05 -0.11,-0.07 -0.06,-0.05 -0.14,-0.06 -0.22,-0.07 -0.07,0 -0.15,-0.01 -0.22,-0.01 -0.16,0.01 -0.32,0.02 -0.47,0.04 -0.32,0.03 -0.65,0.03 -0.96,0.13 -0.16,0.05 -0.19,0.32 0,0.36 z" + id="path956" /> + <path + class="st1" + d="m 612.23,353.15 c 0.18,0.02 0.36,0.04 0.55,0.04 0.18,0 0.34,-0.05 0.52,-0.08 0.1,-0.02 0.18,-0.01 0.28,0.04 0.02,-0.02 0.03,-0.01 0.04,0.02 0.02,0.02 0.04,0.03 0.06,0.04 0.03,0.02 0.07,0.03 0.11,0.04 0.16,0.04 0.41,0.07 0.54,-0.06 0.04,-0.04 0.06,-0.11 0.02,-0.16 -0.11,-0.15 -0.34,-0.16 -0.51,-0.15 -0.05,0 -0.11,0.01 -0.16,0.04 0.05,-0.02 -0.12,0.06 -0.07,0.04 -0.12,0.05 -0.22,0.03 -0.33,-0.01 -0.07,-0.02 -0.14,-0.05 -0.21,-0.08 -0.09,-0.03 -0.18,-0.05 -0.28,-0.06 -0.19,-0.02 -0.38,-0.03 -0.57,-0.04 -0.1,0 -0.19,0.09 -0.19,0.19 0.01,0.11 0.1,0.18 0.2,0.19 z" + id="path958" /> + <path + class="st1" + d="m 575.86,351.98 c -0.03,-0.01 -0.05,-0.03 -0.08,-0.04 -0.04,-0.02 -0.08,-0.03 -0.12,-0.03 -0.12,-0.02 -0.23,-0.04 -0.35,-0.07 -0.05,-0.01 -0.1,-0.01 -0.15,0.02 -0.04,0.02 -0.08,0.07 -0.09,0.12 -0.02,0.1 0.03,0.22 0.14,0.24 l 0.35,0.06 c 0.04,0.01 0.08,0.02 0.12,0.02 0.04,0 0.08,-0.01 0.12,-0.02 0.03,0 0.05,-0.01 0.08,-0.01 0.03,0 0.05,-0.02 0.08,-0.03 0.06,-0.02 0.1,-0.11 0.04,-0.16 -0.04,-0.04 -0.09,-0.07 -0.14,-0.1 z" + id="path960" /> + <path + class="st1" + d="m 580.98,356.45 c 0.41,0 0.81,0.01 1.22,0.01 0.2,0 0.41,0.01 0.61,0 0.2,-0.01 0.4,0 0.59,-0.05 0.11,-0.03 0.11,-0.19 0,-0.22 -0.19,-0.05 -0.4,-0.04 -0.59,-0.05 -0.2,-0.01 -0.41,0 -0.61,0 -0.41,0.01 -0.81,0.01 -1.22,0.01 -0.19,0.02 -0.19,0.3 0,0.3 z" + id="path962" /> + <path + class="st1" + d="m 585.9,356.76 h 1.02 c 0.17,0 0.34,0 0.51,-0.01 0.17,0 0.34,0 0.51,-0.04 0.13,-0.04 0.13,-0.23 0,-0.27 -0.16,-0.05 -0.34,-0.04 -0.51,-0.04 -0.17,0 -0.34,-0.01 -0.51,-0.01 h -1.02 c -0.24,0 -0.24,0.37 0,0.37 z" + id="path964" /> + <path + class="st1" + d="m 591.49,356.59 c 0.11,0 0.23,0 0.34,0 0.06,0 0.11,0 0.17,0 0.06,0 0.13,-0.02 0.19,-0.03 0.11,-0.02 0.11,-0.21 0,-0.23 -0.06,-0.01 -0.12,-0.03 -0.19,-0.03 -0.06,0 -0.11,0 -0.17,0 -0.11,0 -0.23,0 -0.34,0 -0.08,0 -0.15,0.07 -0.15,0.15 0,0.07 0.06,0.14 0.15,0.14 z" + id="path966" /> + <path + class="st1" + d="m 607.71,356.22 c 0.25,0 0.5,0 0.75,0 0.12,0 0.25,0 0.37,0 0.13,0 0.25,-0.02 0.38,-0.03 0.14,-0.02 0.14,-0.27 0,-0.29 -0.13,-0.02 -0.25,-0.03 -0.38,-0.03 -0.12,0 -0.25,0 -0.37,0 -0.25,0 -0.5,0 -0.75,0 -0.23,-0.01 -0.23,0.35 0,0.35 z" + id="path968" /> + <path + class="st1" + d="m 612.54,356.07 c 0.13,-0.03 0.27,-0.06 0.4,-0.08 0.07,-0.01 0.13,-0.03 0.2,-0.04 l 0.09,-0.02 c 0.04,-0.01 0.08,-0.03 0.12,-0.05 0.08,-0.05 0.07,-0.19 -0.03,-0.21 -0.04,-0.01 -0.08,-0.02 -0.12,-0.01 -0.03,0 -0.06,0.01 -0.09,0.01 -0.07,0.01 -0.14,0.02 -0.2,0.03 -0.14,0.02 -0.27,0.03 -0.41,0.05 -0.05,0.01 -0.08,0.02 -0.12,0.05 -0.04,0.04 -0.05,0.09 -0.05,0.14 0.02,0.09 0.11,0.15 0.21,0.13 z" + id="path970" /> + <path + class="st1" + d="m 615.56,355.96 c 0.57,0.01 1.13,0.02 1.7,0 0.28,-0.01 0.55,-0.02 0.83,-0.03 0.28,-0.01 0.56,0.04 0.83,-0.02 0.13,-0.03 0.13,-0.24 0,-0.27 -0.27,-0.06 -0.56,0 -0.83,-0.02 -0.28,-0.01 -0.55,-0.02 -0.83,-0.03 -0.57,-0.02 -1.13,0 -1.7,0 -0.23,0.01 -0.23,0.36 0,0.37 z" + id="path972" /> + <path + class="st1" + d="m 618.35,352.91 c 0.25,0 0.25,-0.39 0,-0.39 -0.25,0 -0.25,0.39 0,0.39 z" + id="path974" /> + <path + class="st1" + d="m 597.37,377.52 c -0.01,-0.03 -0.02,-0.07 -0.04,-0.1 -0.01,-0.03 -0.02,-0.05 -0.04,-0.07 -0.01,-0.01 -0.02,-0.02 -0.03,-0.02 -0.04,-0.03 -0.09,-0.03 -0.13,-0.01 -0.04,0.02 -0.06,0.04 -0.08,0.08 -0.02,0.04 -0.02,0.09 0.01,0.13 0.01,0.02 0.02,0.04 0.04,0.05 -0.31,0.06 -0.62,0.14 -0.91,0.26 -0.16,0.07 -0.04,0.35 0.12,0.29 0.33,-0.13 0.68,-0.23 1.04,-0.25 0.18,-0.01 0.35,-0.01 0.53,-0.01 0.08,0 0.16,-0.02 0.25,-0.02 0,0.14 0,0.29 0.02,0.43 0.02,0.11 0.2,0.11 0.22,0 0.02,-0.15 0.02,-0.3 0.02,-0.45 0.01,0 0.02,0 0.03,0 0.1,-0.02 0.12,-0.17 0.03,-0.22 -0.02,-0.01 -0.04,-0.01 -0.06,-0.02 0,-0.15 -0.01,-0.31 -0.01,-0.46 0,-0.38 0,-0.77 -0.01,-1.15 0,-0.16 -0.24,-0.16 -0.24,0 0,0.38 0,0.77 -0.01,1.15 0,0.13 -0.01,0.25 -0.01,0.38 -0.07,-0.02 -0.15,-0.04 -0.22,-0.04 -0.16,0 -0.34,0.03 -0.52,0.05 z" + id="path976" /> + <path + class="st1" + d="m 576.32,363.12 c 0.27,-0.02 0.54,-0.04 0.81,-0.06 0.27,-0.02 0.55,-0.03 0.81,-0.13 0.08,-0.03 0.1,-0.17 0,-0.19 -0.27,-0.06 -0.54,-0.02 -0.81,0 -0.27,0.02 -0.54,0.05 -0.81,0.07 -0.09,0.01 -0.16,0.07 -0.16,0.16 0.01,0.07 0.08,0.15 0.16,0.15 z" + id="path978" /> + <path + class="st1" + d="m 580.31,363.09 c 0.17,0 0.17,-0.27 0,-0.27 -0.17,0 -0.17,0.27 0,0.27 z" + id="path980" /> + <path + class="st1" + d="m 575.02,364.2 c -0.42,-0.09 -0.84,-0.09 -1.26,-0.09 -0.43,0 -0.86,0 -1.29,0 -0.23,0 -0.23,0.35 0,0.35 0.43,0 0.86,0 1.29,0 0.43,0 0.85,0 1.26,-0.09 0.08,-0.01 0.08,-0.15 0,-0.17 z" + id="path982" /> + <path + class="st1" + d="m 577.12,364.25 c -0.22,0 -0.22,0.34 0,0.34 0.22,0 0.22,-0.34 0,-0.34 z" + id="path984" /> + <path + class="st1" + d="m 579.12,364.32 c 0.54,0.01 1.08,0.02 1.63,0.02 0.27,0 0.54,0.01 0.81,0 0.13,0 0.25,-0.01 0.38,-0.03 0.13,-0.01 0.28,-0.01 0.41,-0.05 0.11,-0.04 0.11,-0.19 0,-0.23 -0.13,-0.05 -0.27,-0.04 -0.41,-0.05 -0.13,-0.01 -0.25,-0.02 -0.38,-0.03 -0.27,0 -0.54,0 -0.81,0 -0.54,0.01 -1.08,0.02 -1.63,0.02 -0.22,0.02 -0.22,0.35 0,0.35 z" + id="path986" /> + <path + class="st1" + d="m 585.1,364.3 c 0.11,0 0.23,0 0.34,0 0.06,0 0.11,0 0.17,0 0.06,0 0.13,-0.01 0.19,-0.03 0.11,-0.02 0.11,-0.2 0,-0.23 -0.06,-0.01 -0.13,-0.03 -0.19,-0.03 -0.06,0 -0.11,0 -0.17,0 -0.11,0 -0.23,0 -0.34,0 -0.07,0 -0.14,0.07 -0.14,0.14 0,0.08 0.06,0.15 0.14,0.15 z" + id="path988" /> + <path + class="st1" + d="m 588.29,364.45 c 0.23,0 0.45,0.01 0.68,0.01 0.11,0 0.23,0 0.34,0.01 0.12,0 0.23,-0.01 0.35,-0.03 0.14,-0.02 0.14,-0.27 0,-0.29 -0.12,-0.02 -0.23,-0.03 -0.35,-0.03 -0.11,0 -0.23,0 -0.34,0.01 -0.23,0 -0.45,0.01 -0.68,0.01 -0.2,-0.01 -0.2,0.3 0,0.31 z" + id="path990" /> + <path + class="st1" + d="m 592.82,364.28 c 0.16,0 0.16,-0.25 0,-0.25 -0.17,0 -0.17,0.25 0,0.25 z" + id="path992" /> + <path + class="st1" + d="m 583.9,365.89 c 1.46,0.03 2.92,0.1 4.38,0.06 0.72,-0.02 1.44,-0.06 2.16,-0.05 0.71,0.01 1.43,0.07 2.12,-0.07 0.08,-0.02 0.08,-0.14 0,-0.16 -0.68,-0.13 -1.38,-0.08 -2.06,-0.07 -0.74,0.01 -1.48,-0.03 -2.22,-0.05 -1.46,-0.04 -2.92,0.03 -4.38,0.06 -0.18,0 -0.18,0.28 0,0.28 z" + id="path994" /> + <path + class="st1" + d="m 594.54,366.16 c 0.11,0 0.23,0 0.34,0 h 0.17 c 0.06,0 0.13,-0.02 0.19,-0.03 0.11,-0.02 0.11,-0.2 0,-0.23 -0.06,-0.01 -0.13,-0.03 -0.19,-0.03 h -0.17 -0.34 c -0.08,0 -0.15,0.07 -0.15,0.15 0.01,0.08 0.07,0.14 0.15,0.14 z" + id="path996" /> + <path + class="st1" + d="m 596.71,366.16 c 0.23,-0.04 0.45,-0.09 0.68,-0.13 0.11,-0.02 0.22,-0.05 0.33,-0.09 0.11,-0.03 0.22,-0.06 0.33,-0.11 0.09,-0.05 0.04,-0.18 -0.05,-0.18 -0.11,-0.01 -0.23,0.01 -0.34,0.02 -0.12,0.01 -0.24,0.03 -0.36,0.05 -0.23,0.05 -0.45,0.09 -0.68,0.14 -0.08,0.02 -0.13,0.11 -0.11,0.19 0.04,0.09 0.12,0.13 0.2,0.11 z" + id="path998" /> + <path + class="st1" + d="m 599.6,365.87 c 0.15,0 0.15,-0.24 0,-0.24 -0.16,0 -0.16,0.24 0,0.24 z" + id="path1000" /> + <path + class="st1" + d="m 583.5,366.96 c 0.75,-0.04 1.51,-0.08 2.26,-0.12 0.22,-0.01 0.23,-0.36 0,-0.35 -0.75,0.04 -1.51,0.09 -2.26,0.13 -0.21,0.01 -0.22,0.35 0,0.34 z" + id="path1002" /> + <path + class="st1" + d="m 605.45,366.42 c 0.32,0.01 0.63,0.01 0.95,0.02 0.16,0 0.32,0.01 0.47,0.01 0.16,0 0.32,0.02 0.48,-0.03 0.13,-0.04 0.13,-0.23 0,-0.27 -0.15,-0.05 -0.32,-0.03 -0.48,-0.03 -0.16,0 -0.32,0 -0.47,0.01 -0.32,0.01 -0.63,0.01 -0.95,0.02 -0.18,0 -0.18,0.27 0,0.27 z" + id="path1004" /> + <path + class="st1" + d="m 609.98,366.54 c 0.68,-0.02 1.35,0 2.03,-0.05 0.7,-0.05 1.39,-0.15 2.09,-0.18 0.68,-0.03 1.35,-0.02 2.03,-0.05 0.31,-0.02 0.64,-0.02 0.95,-0.08 0.34,-0.07 0.68,-0.17 1.02,-0.24 0.04,-0.01 0.03,-0.06 -0.01,-0.06 -0.35,-0.03 -0.7,-0.09 -1.04,-0.12 -0.33,-0.02 -0.66,0.01 -0.98,0.03 -0.68,0.04 -1.35,0.13 -2.03,0.17 -0.66,0.05 -1.31,0.02 -1.97,0.05 -0.7,0.03 -1.39,0.12 -2.09,0.18 -0.23,0.01 -0.23,0.35 0,0.35 z" + id="path1006" /> + <path + class="st1" + d="m 619.72,365.76 c -0.04,0 -0.07,-0.01 -0.11,-0.01 -0.04,-0.01 -0.07,-0.02 -0.13,-0.02 -0.04,0 -0.08,0 -0.12,0 -0.16,0 -0.32,0.01 -0.48,0.01 -0.08,0 -0.15,0.07 -0.15,0.15 0,0.08 0.07,0.15 0.15,0.15 0.16,0 0.32,0.01 0.48,0.01 0.04,0 0.08,0 0.12,0 0.05,0 0.08,-0.02 0.12,-0.02 0.09,-0.01 0.18,-0.02 0.26,-0.05 0.07,-0.03 0.07,-0.15 0,-0.18 -0.05,-0.03 -0.09,-0.04 -0.14,-0.04 z" + id="path1008" /> + <path + class="st1" + d="m 621.43,365.79 c -0.08,-0.01 -0.17,-0.03 -0.26,-0.04 -0.03,-0.01 -0.05,-0.01 -0.08,0 -0.02,0.01 -0.04,0.02 -0.06,0.04 -0.03,0.03 -0.04,0.06 -0.04,0.1 0,0.04 0.02,0.07 0.04,0.1 0.02,0.02 0.04,0.03 0.06,0.04 0.03,0.01 0.05,0.01 0.08,0 0.08,-0.01 0.17,-0.03 0.26,-0.04 l 0.02,-0.01 c 0.01,-0.01 0.02,-0.01 0.03,-0.03 0.01,-0.02 0.02,-0.04 0.02,-0.06 0,-0.02 -0.01,-0.03 -0.01,-0.05 -0.01,-0.03 -0.03,-0.05 -0.06,-0.05 z" + id="path1010" /> + <path + class="st1" + d="m 622.16,365.89 c 0.01,0.08 0.09,0.17 0.18,0.16 0.19,-0.02 0.38,-0.03 0.57,-0.07 0.09,-0.02 0.18,-0.04 0.26,-0.06 0.09,-0.02 0.17,-0.05 0.26,-0.08 0.13,-0.04 0.1,-0.23 -0.03,-0.24 -0.09,-0.01 -0.18,-0.02 -0.27,-0.01 -0.09,0 -0.18,0 -0.27,0.01 -0.19,0.02 -0.38,0.05 -0.57,0.08 -0.09,0.02 -0.15,0.13 -0.13,0.21 z" + id="path1012" /> + <path + class="st1" + d="m 624.47,365.87 c 0.02,0 0.05,0 0.07,0 0.01,0 0.03,0 0.04,0 0.01,0 0.02,-0.01 0.04,-0.02 0.01,0 0.02,-0.01 0.03,-0.01 0.03,-0.01 0.05,-0.06 0.05,-0.09 0,-0.03 -0.02,-0.07 -0.05,-0.09 -0.01,0 -0.02,-0.01 -0.03,-0.01 -0.01,-0.01 -0.03,-0.01 -0.04,-0.02 -0.01,0 -0.03,0 -0.04,0 -0.02,0 -0.05,0 -0.07,0 -0.05,0 -0.09,0 -0.14,0 -0.03,0 -0.06,0.01 -0.08,0.03 -0.02,0.02 -0.04,0.05 -0.03,0.08 0,0.06 0.05,0.12 0.12,0.12 0.04,0.01 0.09,0.01 0.13,0.01 z" + id="path1014" /> + <path + class="st1" + d="m 605.98,363.75 c 0.48,0.03 0.95,0.08 1.42,0.12 0.24,0.02 0.47,0.05 0.71,0.05 0.23,0.01 0.48,0.03 0.7,-0.03 0.17,-0.04 0.15,-0.27 0,-0.32 -0.22,-0.07 -0.47,-0.07 -0.7,-0.09 -0.24,-0.02 -0.48,-0.01 -0.71,-0.01 -0.47,-0.01 -0.95,0 -1.42,-0.02 -0.19,0 -0.19,0.29 0,0.3 z" + id="path1016" /> + <path + class="st1" + d="m 611.97,364.06 c 0.25,-0.02 0.51,-0.04 0.76,-0.07 0.12,-0.01 0.25,-0.03 0.37,-0.04 0.13,-0.02 0.28,-0.01 0.4,-0.08 0.1,-0.06 0.07,-0.2 -0.03,-0.24 -0.12,-0.04 -0.25,-0.01 -0.38,-0.01 -0.12,0.01 -0.25,0.01 -0.37,0.02 -0.25,0.02 -0.5,0.04 -0.75,0.07 -0.09,0.01 -0.17,0.07 -0.17,0.17 -0.01,0.1 0.07,0.19 0.17,0.18 z" + id="path1018" /> + <path + class="st1" + d="m 614.63,363.78 c 0.27,0.01 0.54,0.02 0.81,0.02 0.13,0 0.27,0 0.4,-0.01 0.13,-0.01 0.28,-0.03 0.41,-0.07 0.1,-0.03 0.1,-0.17 0,-0.2 -0.13,-0.04 -0.28,-0.06 -0.41,-0.07 -0.13,-0.01 -0.27,-0.01 -0.4,-0.01 -0.27,0 -0.54,0.02 -0.81,0.02 -0.21,0.01 -0.21,0.31 0,0.32 z" + id="path1020" /> + <path + class="st1" + d="m 617.15,363.85 c 0.39,-0.01 0.78,0 1.17,-0.01 0.19,-0.01 0.38,-0.03 0.58,-0.05 0.1,-0.01 0.19,-0.05 0.3,-0.07 0.1,-0.02 0.19,-0.05 0.28,-0.09 0.11,-0.05 0.06,-0.2 -0.03,-0.23 -0.1,-0.03 -0.2,-0.05 -0.3,-0.05 -0.09,0 -0.17,-0.03 -0.27,-0.03 -0.19,0 -0.38,0 -0.58,0.02 -0.39,0.03 -0.77,0.08 -1.15,0.12 -0.25,0.01 -0.26,0.39 0,0.39 z" + id="path1022" /> + <path + class="st1" + d="m 621.01,363.56 c 0.16,0 0.32,0 0.48,0.01 0.08,0 0.16,0 0.24,-0.01 0.04,0 0.07,0 0.11,-0.01 0.03,0 0.06,0 0.09,-0.01 0.03,-0.01 0.06,-0.03 0.09,-0.05 0.11,-0.07 0.11,-0.21 0,-0.29 -0.02,-0.01 -0.04,-0.03 -0.06,-0.04 -0.04,-0.02 -0.07,-0.02 -0.11,-0.02 -0.04,0 -0.07,0 -0.11,-0.01 -0.08,0 -0.16,-0.01 -0.24,-0.01 -0.16,0 -0.32,0 -0.48,0.01 -0.11,0 -0.21,0.09 -0.21,0.21 0,0.13 0.08,0.22 0.2,0.22 z" + id="path1024" /> + <path + class="st1" + d="m 620.48,367.19 c -0.2,0 -0.2,0.31 0,0.31 0.2,0 0.2,-0.31 0,-0.31 z" + id="path1026" /> + <path + class="st1" + d="m 624.2,367.54 0.43,-0.05 c 0.03,0 0.07,-0.01 0.1,-0.01 0.06,-0.01 0.12,0 0.18,-0.03 0.01,-0.01 0.01,0 0.01,-0.01 0,0 0,0 0,0 0.02,0 0.04,-0.01 0.06,-0.02 0.02,-0.01 0.05,-0.01 0.07,-0.03 0.03,-0.02 0.05,-0.04 0.07,-0.07 0.03,-0.05 0.02,-0.13 -0.02,-0.16 -0.03,-0.02 -0.05,-0.04 -0.08,-0.05 -0.02,-0.01 -0.05,-0.01 -0.07,-0.01 -0.02,0 -0.04,0 -0.05,0 0,0 -0.01,0 -0.01,0 0,0 0,0 -0.01,0 -0.06,-0.02 -0.12,0.01 -0.18,0.02 -0.03,0.01 -0.07,0.01 -0.1,0.02 -0.14,0.03 -0.28,0.05 -0.43,0.08 -0.08,0.02 -0.13,0.11 -0.12,0.18 0,0.07 0.07,0.15 0.15,0.14 z" + id="path1028" /> + <path + class="st1" + d="m 618.35,365.24 c 0.68,-0.02 1.36,-0.04 2.03,-0.05 0.66,-0.01 1.34,0.01 1.99,-0.12 0.15,-0.03 0.09,-0.23 -0.03,-0.24 -0.66,-0.09 -1.33,-0.02 -1.99,0.02 -0.66,0.04 -1.33,0.06 -1.99,0.09 -0.21,0 -0.21,0.3 -0.01,0.3 z" + id="path1030" /> + <path + class="st1" + d="m 575.49,374.08 c -0.06,-0.02 -0.12,-0.04 -0.18,-0.05 -0.06,-0.01 -0.11,-0.01 -0.17,-0.02 -0.23,-0.02 -0.45,-0.04 -0.68,-0.06 -0.09,-0.01 -0.17,0.08 -0.17,0.17 0,0.1 0.08,0.16 0.17,0.17 0.23,0.02 0.45,0.05 0.68,0.07 0.05,0.01 0.1,0.01 0.16,0.02 0.06,0.01 0.12,-0.01 0.18,-0.01 0.11,-0.01 0.22,-0.01 0.34,-0.03 0.1,-0.02 0.07,-0.15 0,-0.17 -0.11,-0.03 -0.22,-0.05 -0.33,-0.09 z" + id="path1032" /> + <path + class="st1" + d="m 574.73,375.07 c -0.16,0 -0.16,0.25 0,0.25 0.16,0 0.16,-0.25 0,-0.25 z" + id="path1034" /> + <path + class="st1" + d="m 575.45,376.8 c -0.02,-0.01 -0.04,-0.01 -0.05,-0.02 -0.01,0 -0.03,-0.02 0,0 -0.01,0 -0.02,-0.01 -0.02,-0.01 -0.03,-0.02 -0.06,-0.03 -0.09,-0.06 -0.01,-0.01 -0.01,-0.01 -0.02,-0.02 0.03,0.02 0.01,0.01 0,0 -0.01,-0.01 -0.03,-0.02 -0.04,-0.04 -0.03,-0.03 -0.05,-0.05 -0.08,-0.08 0,0 -0.01,-0.01 -0.01,-0.02 0,0 0,0 0,0 -0.01,-0.01 -0.02,-0.03 -0.03,-0.05 -0.01,-0.02 -0.02,-0.03 -0.03,-0.05 0,-0.01 -0.01,-0.01 -0.01,-0.02 -0.01,-0.02 -0.01,-0.03 -0.01,-0.05 0.01,0 0.02,0.01 0.03,0.01 0.03,0.01 0.07,0.01 0.1,0.02 0.02,0 0.03,0 0.05,0 0.07,0 0.15,-0.05 0.17,-0.12 0.01,-0.04 0.01,-0.07 -0.01,-0.11 -0.02,-0.04 -0.04,-0.06 -0.07,-0.08 -0.01,-0.01 -0.03,-0.02 -0.04,-0.03 -0.04,-0.03 -0.09,-0.05 -0.14,-0.07 -0.07,-0.03 -0.14,-0.05 -0.21,-0.08 -0.05,-0.02 -0.11,0 -0.15,0.02 -0.04,0.02 -0.08,0.07 -0.09,0.12 -0.01,0.05 -0.01,0.11 0.02,0.15 0.02,0.04 0.06,0.06 0.1,0.08 -0.03,0.04 -0.08,0.07 -0.07,0.12 0.04,0.19 0.15,0.37 0.31,0.48 0.07,0.05 0.15,0.09 0.24,0.12 0.05,0.01 0.09,0.02 0.14,0.03 0.05,0.01 0.1,0 0.15,-0.01 0.1,-0.02 0.1,-0.18 0,-0.2 -0.07,-0.01 -0.1,-0.02 -0.14,-0.03 z" + id="path1036" /> + <path + class="st1" + d="m 577.12,372.37 c -0.05,-0.01 -0.1,-0.01 -0.16,-0.02 -0.11,-0.01 -0.22,-0.03 -0.33,-0.04 -0.24,-0.03 -0.48,-0.06 -0.72,-0.08 -0.1,-0.01 -0.2,0.1 -0.2,0.2 0.01,0.12 0.09,0.19 0.2,0.2 0.23,0.02 0.45,0.04 0.68,0.06 0.11,0.01 0.23,0.02 0.34,0.02 0.05,0 0.1,0.01 0.16,0.01 0.07,0.01 0.13,-0.01 0.2,-0.02 0.12,-0.02 0.15,-0.22 0.03,-0.27 -0.06,-0.03 -0.12,-0.05 -0.2,-0.06 z" + id="path1038" /> + <path + class="st1" + d="m 580.99,372.36 c -0.11,-0.01 -0.21,-0.01 -0.32,-0.01 -0.21,-0.01 -0.41,0 -0.62,-0.01 -0.1,0 -0.19,0.09 -0.19,0.19 0,0.1 0.08,0.19 0.19,0.19 0.21,0 0.42,0 0.62,-0.01 0.21,-0.01 0.44,0.01 0.63,-0.08 0.08,-0.04 0.08,-0.17 0,-0.2 -0.09,-0.04 -0.21,-0.06 -0.31,-0.07 z" + id="path1040" /> + <path + class="st1" + d="m 582.8,372.65 c -0.03,0 -0.07,0.04 -0.09,0.07 -0.02,0.03 -0.03,0.08 -0.02,0.12 0.03,0.08 0.11,0.13 0.19,0.11 0.22,-0.06 0.44,-0.11 0.65,-0.19 0.05,-0.02 0.08,-0.06 0.07,-0.11 -0.01,-0.05 -0.05,-0.09 -0.1,-0.08 -0.23,0.01 -0.47,0.05 -0.7,0.08 z" + id="path1042" /> + <path + class="st1" + d="m 619.86,371.71 c -0.14,0 -0.28,0 -0.42,0.01 -0.28,0 -0.55,0.01 -0.83,0.01 -0.18,0 -0.18,0.28 0,0.28 0.28,0 0.55,0.01 0.83,0.01 0.14,0 0.28,0 0.42,0.01 0.13,0 0.3,0.01 0.41,-0.05 0.08,-0.05 0.08,-0.17 0,-0.22 -0.11,-0.07 -0.28,-0.06 -0.41,-0.05 z" + id="path1044" /> + <path + class="st1" + d="m 622.81,371.59 c -0.07,0 -0.13,-0.01 -0.2,-0.01 -0.14,0 -0.27,0 -0.41,0 -0.08,0 -0.15,0.07 -0.14,0.15 0,0.08 0.06,0.14 0.14,0.14 0.14,0 0.27,0.01 0.41,0 0.07,0 0.13,-0.01 0.2,-0.01 0.08,0 0.15,0 0.22,-0.03 0.11,-0.04 0.11,-0.18 0,-0.22 -0.07,-0.01 -0.14,-0.01 -0.22,-0.02 z" + id="path1046" /> + <path + class="st1" + d="m 625.23,371.86 c 0.1,0.02 0.2,0.04 0.31,0.06 0.05,0.01 0.1,0.02 0.15,0.03 0.03,0 0.05,0.01 0.08,0.01 0.06,0.01 0.1,0 0.15,-0.03 0.01,0 0.02,-0.01 0.03,-0.01 0.03,-0.01 0.06,-0.03 0.07,-0.07 0.01,-0.03 0,-0.08 -0.03,-0.1 -0.01,-0.01 -0.02,-0.02 -0.03,-0.02 -0.01,-0.01 -0.01,-0.02 -0.02,-0.03 -0.02,-0.02 -0.06,-0.04 -0.08,-0.05 -0.03,-0.01 -0.05,-0.01 -0.08,-0.01 -0.05,-0.01 -0.1,-0.01 -0.15,-0.02 -0.1,-0.01 -0.21,-0.03 -0.31,-0.04 -0.04,-0.01 -0.08,-0.01 -0.12,0.02 -0.03,0.02 -0.06,0.06 -0.07,0.09 -0.03,0.05 0.01,0.15 0.1,0.17 z" + id="path1048" /> + <path + class="st1" + d="m 624.04,372.67 c 0.06,0 0.13,-0.01 0.19,-0.03 0.05,-0.01 0.09,-0.06 0.08,-0.11 0,-0.05 -0.03,-0.1 -0.08,-0.11 -0.06,-0.01 -0.12,-0.02 -0.19,-0.03 h -0.17 c -0.11,0 -0.23,0 -0.34,0 -0.07,0 -0.14,0.07 -0.14,0.14 0,0.08 0.06,0.14 0.14,0.14 0.11,0 0.23,0 0.34,0 z" + id="path1050" /> + <path + class="st1" + d="m 626.06,372.33 c -0.05,0 -0.09,0.02 -0.13,0.05 -0.03,0.03 -0.05,0.08 -0.05,0.13 0,0.05 0.02,0.09 0.05,0.13 0.03,0.03 0.08,0.06 0.13,0.05 l 0.2,-0.01 c 0.03,0 0.06,0 0.1,-0.01 0.02,0 0.04,0 0.06,-0.01 0.02,-0.01 0.04,-0.01 0.05,-0.02 0.01,-0.01 0.03,-0.02 0.04,-0.02 0.04,-0.03 0.07,-0.07 0.07,-0.13 0,-0.05 -0.03,-0.1 -0.07,-0.13 -0.05,-0.02 -0.1,-0.05 -0.16,-0.05 -0.03,0 -0.07,0 -0.1,0.01 z" + id="path1052" /> + <path + class="st1" + d="m 625.57,373.73 c 0.16,-0.01 0.32,-0.02 0.47,-0.02 0.14,0 0.34,0.02 0.46,-0.07 0.05,-0.03 0.06,-0.11 0,-0.14 -0.13,-0.07 -0.3,-0.03 -0.44,-0.01 -0.16,0.02 -0.33,0.04 -0.49,0.04 -0.32,0.01 -0.65,0.04 -0.97,0.06 -0.14,0.01 -0.14,0.22 0,0.21 0.32,-0.02 0.64,-0.04 0.97,-0.07 z" + id="path1054" /> + <path + class="st1" + d="m 624.9,374.94 c 0.1,0 0.27,0.01 0.33,-0.09 0.02,-0.03 0.02,-0.08 0,-0.11 -0.06,-0.1 -0.23,-0.1 -0.33,-0.09 -0.11,0 -0.21,0 -0.32,0.01 -0.22,0 -0.43,0.01 -0.65,0.01 -0.17,0 -0.17,0.26 0,0.26 0.22,0 0.43,0.01 0.65,0.01 0.11,0 0.21,0 0.32,0 z" + id="path1056" /> + <path + class="st1" + d="m 625.93,374.79 c -0.17,0 -0.17,0.27 0,0.27 0.17,0 0.17,-0.27 0,-0.27 z" + id="path1058" /> + <path + class="st1" + d="m 624.6,375.71 c -0.19,0 -0.19,0.3 0,0.3 0.19,0 0.19,-0.3 0,-0.3 z" + id="path1060" /> + <path + class="st1" + d="m 626.36,375.7 -0.46,0.05 c -0.3,0.04 -0.6,0.07 -0.9,0.1 -0.09,0.01 -0.16,0.07 -0.16,0.16 0,0.08 0.08,0.17 0.16,0.16 0.3,-0.02 0.6,-0.03 0.9,-0.05 0.15,-0.01 0.29,-0.01 0.44,-0.02 0.14,-0.01 0.35,-0.02 0.46,-0.11 0.08,-0.06 0.11,-0.2 0,-0.25 -0.12,-0.06 -0.3,-0.06 -0.44,-0.04 z" + id="path1062" /> + <path + class="st1" + d="m 568.91,390.65 c 0.01,0.04 0.05,0.08 0.1,0.07 0.05,0 0.08,-0.03 0.1,-0.07 0.01,-0.02 0.01,-0.04 0.02,-0.06 0.01,-0.03 0,-0.06 0,-0.09 v -0.14 c 0,-0.03 -0.01,-0.06 -0.03,-0.08 -0.02,-0.02 -0.05,-0.03 -0.08,-0.03 -0.06,0 -0.11,0.05 -0.11,0.11 v 0.14 c 0,0.03 0,0.06 0,0.09 -0.01,0.01 0,0.04 0,0.06 z" + id="path1064" /> + <path + class="st1" + d="m 570.59,387.32 c 0.01,0.09 0.03,0.18 0.06,0.26 0.04,0.1 0.17,0.08 0.18,-0.02 0.02,-0.17 -0.02,-0.36 -0.03,-0.53 -0.02,-0.18 -0.04,-0.35 -0.07,-0.53 -0.01,-0.07 -0.05,-0.12 -0.12,-0.12 -0.06,0 -0.13,0.06 -0.12,0.12 0.02,0.18 0.04,0.37 0.07,0.55 0,0.09 0.02,0.18 0.03,0.27 z" + id="path1066" /> + <path + class="st1" + d="m 571.78,388.92 c 0.06,-0.19 0.05,-0.43 0.05,-0.63 0,-0.21 -0.01,-0.43 -0.01,-0.64 -0.01,-0.43 -0.03,-0.86 -0.05,-1.29 -0.01,-0.13 -0.19,-0.13 -0.2,0 -0.02,0.43 -0.04,0.86 -0.05,1.29 -0.01,0.21 -0.01,0.43 -0.01,0.64 0,0.2 -0.01,0.43 0.05,0.63 0.03,0.11 0.19,0.11 0.22,0 z" + id="path1068" /> + <path + class="st1" + d="m 571.75,390.96 c -0.01,0.01 -0.02,0.03 -0.02,0.05 0,0.02 0.01,0.04 0.02,0.05 0.03,0.02 0.05,0.04 0.08,0.06 0.01,0.01 0.02,0.02 0.04,0.03 0.01,0.01 0.02,0.02 0.03,0.02 0.01,0 0.01,0.01 0.02,0.01 0.02,0.01 0.04,0.01 0.06,-0.01 0.01,-0.02 0.02,-0.04 0.01,-0.06 l -0.01,-0.02 c -0.01,-0.01 -0.01,-0.02 -0.02,-0.03 -0.01,-0.01 -0.02,-0.03 -0.03,-0.04 -0.02,-0.03 -0.04,-0.05 -0.06,-0.08 -0.01,-0.01 -0.02,-0.01 -0.02,-0.02 -0.01,0 -0.02,-0.01 -0.03,-0.01 -0.04,0.03 -0.06,0.04 -0.07,0.05 z" + id="path1070" /> + <path + class="st1" + d="m 573.4,390.43 c -0.08,0 -0.08,0.12 0,0.12 0.08,0 0.07,-0.12 0,-0.12 z" + id="path1072" /> + <path + class="st1" + d="m 575.29,388.92 c 0.03,0.11 0.18,0.11 0.21,0 0.04,-0.15 0.04,-0.31 0.05,-0.47 0.01,-0.16 0.01,-0.32 0.01,-0.47 0,-0.32 0,-0.63 0,-0.95 0,-0.21 -0.32,-0.21 -0.32,0 0,0.32 0,0.63 0,0.95 0,0.16 0,0.32 0.01,0.47 0,0.16 -0.01,0.32 0.04,0.47 z" + id="path1074" /> + <path + class="st1" + d="m 575.39,390.75 c -0.17,0 -0.17,0.26 0,0.26 0.17,0.01 0.17,-0.26 0,-0.26 z" + id="path1076" /> + <path + class="st1" + d="m 577.28,391.95 c 0.01,0.03 0.02,0.05 0.04,0.07 0.03,0.03 0.09,0.03 0.13,0 0,0 0.01,-0.01 0.01,-0.01 0.02,-0.02 0.03,-0.03 0.03,-0.05 0,-0.01 0,-0.02 0.01,-0.03 0,-0.02 0.01,-0.04 0.01,-0.07 0.01,-0.02 0.01,-0.05 0,-0.07 -0.01,-0.02 -0.02,-0.04 -0.03,-0.06 -0.03,-0.02 -0.06,-0.04 -0.09,-0.04 -0.02,0 -0.03,0 -0.05,0.01 -0.02,0.01 -0.03,0.01 -0.04,0.03 -0.02,0.02 -0.03,0.04 -0.03,0.06 -0.01,0.02 -0.01,0.05 0,0.07 0,0.02 0.01,0.04 0.01,0.07 0,0 0,0.01 0,0.02 z" + id="path1078" /> + <path + class="st1" + d="m 579.12,388.39 c 0.03,0.13 0.23,0.13 0.26,0 0.01,-0.04 0.02,-0.08 0.02,-0.12 0.01,-0.04 0.01,-0.09 0.01,-0.13 0,-0.08 0,-0.16 0,-0.24 0,-0.16 0,-0.32 0,-0.47 0,-0.08 -0.07,-0.16 -0.15,-0.15 -0.08,0 -0.15,0.07 -0.15,0.15 0,0.16 0,0.32 0,0.47 0,0.08 0,0.16 0,0.24 0,0.05 0,0.09 0.01,0.13 -0.02,0.04 -0.01,0.08 0,0.12 z" + id="path1080" /> + <path + class="st1" + d="m 581.48,391.13 c 0.01,0.06 0.02,0.11 0.03,0.17 0.01,0.06 0.01,0.12 0.05,0.17 0.04,0.05 0.14,0.08 0.18,0 0.05,-0.1 0.03,-0.23 0.02,-0.34 -0.01,-0.12 -0.02,-0.24 -0.03,-0.35 -0.02,-0.23 -0.05,-0.46 -0.07,-0.69 -0.01,-0.07 -0.06,-0.14 -0.14,-0.14 -0.07,0 -0.14,0.06 -0.14,0.14 l 0.07,0.69 c 0,0.12 0.01,0.23 0.03,0.35 z" + id="path1082" /> + <path + class="st1" + d="m 581.74,392.66 0.07,0.28 c 0.01,0.05 0.02,0.09 0.03,0.14 0.01,0.05 0.03,0.09 0.07,0.12 0.02,0.02 0.05,0.04 0.07,0.05 0.07,0.03 0.14,0.01 0.18,-0.05 0.02,-0.03 0.03,-0.05 0.04,-0.08 0.02,-0.05 0.01,-0.1 0,-0.15 -0.01,-0.05 -0.02,-0.09 -0.04,-0.14 -0.02,-0.09 -0.05,-0.19 -0.07,-0.28 -0.02,-0.09 -0.13,-0.15 -0.22,-0.12 -0.1,0.04 -0.16,0.13 -0.13,0.23 z" + id="path1084" /> + <path + class="st1" + d="m 585.44,390.82 c 0.05,-0.05 0.05,-0.11 0.05,-0.18 0,-0.06 0,-0.12 0,-0.18 0,-0.11 0,-0.23 0,-0.34 0,-0.23 0,-0.47 -0.01,-0.7 0,-0.14 -0.22,-0.14 -0.22,0 l -0.01,0.7 c 0,0.11 0,0.23 0,0.34 0,0.06 0,0.12 0,0.18 0,0.07 0,0.12 0.05,0.18 0.03,0.04 0.1,0.04 0.14,0 z" + id="path1086" /> + <path + class="st1" + d="m 586.66,391.57 c 0,0.01 0.01,0.01 0.01,0.01 0.01,0.01 0.02,0.01 0.03,0.01 0.01,0 0.02,0 0.02,-0.01 0.01,0 0.02,-0.02 0.02,-0.03 0.01,-0.04 0.01,-0.09 0.02,-0.13 0,-0.01 0,-0.02 0,-0.03 0,-0.01 -0.01,-0.02 -0.02,-0.03 -0.01,-0.01 -0.03,-0.02 -0.05,-0.02 -0.02,0 -0.03,0.01 -0.05,0.02 -0.01,0.01 -0.01,0.02 -0.02,0.03 0,0.01 0,0.02 0,0.03 0.01,0.04 0.01,0.09 0.02,0.13 0.02,0.02 0.02,0.02 0.02,0.02 z" + id="path1088" /> + <path + class="st1" + d="m 591.73,388.12 0.01,0.14 c 0,0.06 0.02,0.11 0.04,0.17 0.04,0.08 0.18,0.08 0.22,0 0.03,-0.06 0.04,-0.1 0.04,-0.17 0,-0.04 0,-0.08 0.01,-0.13 0,-0.09 0,-0.19 0,-0.28 0,-0.18 0,-0.37 0,-0.55 0,-0.09 -0.08,-0.17 -0.17,-0.17 -0.09,0 -0.17,0.07 -0.17,0.17 0,0.18 0,0.37 0,0.55 0.01,0.09 0.01,0.18 0.02,0.27 z" + id="path1090" /> + <path + class="st1" + d="m 594.02,390.02 c 0.03,0 0.06,-0.03 0.06,-0.07 -0.02,-0.19 -0.05,-0.38 -0.08,-0.57 0,-0.03 -0.03,-0.06 -0.06,-0.08 -0.03,-0.02 -0.07,-0.02 -0.1,-0.01 -0.06,0.02 -0.11,0.09 -0.09,0.16 0.06,0.17 0.12,0.34 0.19,0.52 0.02,0.03 0.05,0.06 0.08,0.05 z" + id="path1092" /> + <path + class="st1" + d="m 596.27,391.01 c 0.16,0 0.16,-0.25 0,-0.25 -0.16,0 -0.16,0.25 0,0.25 z" + id="path1094" /> + <path + class="st1" + d="m 594.28,393.07 c -0.1,0 -0.1,0.16 0,0.16 0.1,0 0.1,-0.16 0,-0.16 z" + id="path1096" /> + <path + class="st1" + d="m 570.55,390.75 c 0.02,0.37 0.04,0.74 0.06,1.11 0.01,0.18 0.01,0.36 0.03,0.54 0.01,0.09 0.03,0.18 0.04,0.27 0.01,0.09 0.02,0.19 0.06,0.26 0.05,0.09 0.16,0.05 0.19,-0.03 0.03,-0.08 0.03,-0.19 0.03,-0.28 0,-0.08 0.01,-0.17 0.01,-0.25 0,-0.18 -0.02,-0.36 -0.03,-0.54 -0.02,-0.36 -0.05,-0.72 -0.07,-1.08 0,-0.21 -0.33,-0.21 -0.32,0 z" + id="path1098" /> + <path + class="st1" + d="m 601.39,392.22 c 0.02,-0.31 0.02,-0.62 0.02,-0.93 0,-0.11 -0.17,-0.11 -0.17,0 0,0.31 0,0.62 0.02,0.93 0.01,0.08 0.12,0.08 0.13,0 z" + id="path1100" /> + <path + class="st1" + d="m 602.79,393.93 c 0.16,0 0.16,-0.24 0,-0.24 -0.16,0 -0.16,0.24 0,0.24 z" + id="path1102" /> + <path + class="st1" + d="m 604.19,392.53 c 0.02,0.13 0.03,0.28 0.08,0.4 0.03,0.07 0.14,0.05 0.17,-0.02 0.04,-0.12 0.02,-0.27 0.02,-0.4 0,-0.14 -0.01,-0.27 -0.02,-0.41 -0.02,-0.27 -0.04,-0.54 -0.06,-0.81 -0.01,-0.08 -0.06,-0.15 -0.15,-0.15 -0.08,0 -0.15,0.07 -0.15,0.15 l 0.06,0.83 c 0.02,0.13 0.03,0.27 0.05,0.41 z" + id="path1104" /> + <path + class="st1" + d="m 606.13,393.61 c 0.01,0.04 0.03,0.09 0.04,0.13 0.01,0.02 0.01,0.04 0.02,0.06 0.02,0.05 0.04,0.08 0.06,0.12 0.08,0.1 0.27,0.04 0.29,-0.08 0.02,-0.1 -0.01,-0.22 -0.04,-0.32 -0.02,-0.09 -0.05,-0.18 -0.07,-0.28 -0.05,-0.18 -0.09,-0.36 -0.14,-0.54 -0.02,-0.09 -0.13,-0.16 -0.23,-0.13 -0.1,0.03 -0.15,0.13 -0.13,0.23 0.04,0.18 0.09,0.36 0.13,0.54 0.03,0.09 0.05,0.18 0.07,0.27 z" + id="path1106" /> + <path + class="st1" + d="m 608.01,392.86 c 0.05,0.26 0.08,0.57 0.26,0.78 0.06,0.06 0.18,0.03 0.2,-0.05 0.05,-0.26 -0.06,-0.56 -0.1,-0.82 -0.04,-0.28 -0.08,-0.55 -0.1,-0.83 -0.05,-0.57 -0.04,-1.14 0.03,-1.71 0.03,-0.22 -0.32,-0.22 -0.35,0 -0.07,0.59 -0.09,1.18 -0.05,1.77 0.02,0.28 0.06,0.57 0.11,0.86 z" + id="path1108" /> + <path + class="st1" + d="m 599.79,388.02 c 0.02,0.12 0.02,0.25 0.13,0.32 0.05,0.03 0.12,0.02 0.16,-0.02 0.08,-0.09 0.06,-0.21 0.05,-0.32 -0.01,-0.09 -0.02,-0.18 -0.03,-0.27 -0.02,-0.19 -0.04,-0.38 -0.07,-0.56 -0.01,-0.09 -0.07,-0.18 -0.17,-0.17 -0.08,0 -0.18,0.08 -0.17,0.17 0.02,0.19 0.05,0.38 0.07,0.57 0,0.09 0.01,0.19 0.03,0.28 z" + id="path1110" /> + <path + class="st1" + d="m 599.98,389.47 c 0.03,0.08 0.07,0.17 0.14,0.23 0.07,0.06 0.17,0.12 0.26,0.11 0.09,-0.01 0.14,-0.11 0.07,-0.18 -0.02,-0.02 0.01,0.02 0,0 -0.01,-0.01 -0.02,-0.03 -0.03,-0.04 -0.01,-0.01 -0.02,-0.02 -0.03,-0.03 -0.01,-0.01 -0.02,-0.03 -0.03,-0.03 0,0 -0.01,-0.01 -0.01,-0.01 -0.02,-0.03 -0.04,-0.05 -0.05,-0.08 -0.01,-0.01 -0.02,-0.03 -0.02,-0.04 0,0 0,0 0,0 0,0 0,-0.01 -0.01,-0.01 -0.01,-0.03 -0.02,-0.06 -0.02,-0.09 0,-0.01 0,-0.01 0,-0.02 0,-0.02 0,-0.03 0,-0.05 0,-0.01 0,-0.01 0,-0.02 0,0 0,0 0,0.01 0,0 0,0 0,-0.01 0,0 0,0 0,0 0,0 0,0 0,-0.01 0,-0.01 0,-0.02 0.01,-0.03 0,-0.01 0.01,-0.03 0.01,-0.04 0,0 0,0 0,0.01 0,-0.01 0.01,-0.01 0.01,-0.02 0.04,-0.07 0.02,-0.17 -0.06,-0.21 -0.07,-0.04 -0.17,-0.02 -0.21,0.06 -0.08,0.14 -0.09,0.34 -0.03,0.5 z" + id="path1112" /> + <path + class="st1" + d="m 600.26,389.22 c 0,-0.02 0,-0.02 0,0 0,-0.01 0,-0.01 0,0 0,0 0,0 0,0 z" + id="path1114" /> + <path + class="st1" + d="m 612.5,388.79 c -0.13,0 -0.13,0.2 0,0.2 0.13,0 0.13,-0.2 0,-0.2 z" + id="path1116" /> + <path + class="st1" + d="m 618.22,388.94 c -0.11,0 -0.11,0.17 0,0.17 0.11,0 0.11,-0.17 0,-0.17 z" + id="path1118" /> + <path + class="st1" + d="m 622.48,389.12 c 0,0 0,0.01 0,0 0.02,0.08 0.07,0.1 0.11,0.1 0.01,0 0.01,0 0.02,0 0,0 0,0 0,0 0.05,0 0.09,-0.02 0.11,-0.09 0,0 0,-0.01 0,-0.01 0,0 0,-0.01 0,-0.01 0,-0.02 0.01,-0.03 0.01,-0.05 0.07,-0.24 -0.35,-0.24 -0.28,0 0.02,0.02 0.02,0.04 0.03,0.06 0,-0.01 0,0 0,0 z" + id="path1120" /> + <path + class="st1" + d="m 627.17,389.71 c 0.01,0.08 0.16,0.08 0.17,0 0.09,-0.61 0.06,-1.24 0.06,-1.85 0,-0.63 0,-1.27 0,-1.9 0,-0.19 -0.29,-0.19 -0.29,0 0,0.63 0,1.27 0,1.9 0,0.62 -0.03,1.24 0.06,1.85 z" + id="path1122" /> + <path + class="st1" + d="m 612.36,392.5 c 0.02,0.15 0.04,0.33 0.12,0.46 0.07,0.12 0.25,0.09 0.29,-0.04 0.04,-0.15 0.01,-0.32 -0.01,-0.48 -0.02,-0.17 -0.05,-0.34 -0.07,-0.51 -0.05,-0.32 -0.09,-0.64 -0.14,-0.97 -0.02,-0.1 -0.15,-0.16 -0.24,-0.14 -0.11,0.03 -0.15,0.14 -0.14,0.24 0.04,0.32 0.09,0.63 0.13,0.95 0.02,0.17 0.04,0.33 0.06,0.49 z" + id="path1124" /> + <path + class="st1" + d="m 530.08,411.66 c -0.03,-0.47 -0.07,-0.95 -0.1,-1.42 -0.01,-0.13 -0.22,-0.14 -0.21,0 0.03,0.47 0.06,0.95 0.09,1.42 0.02,0.24 0.03,0.47 0.05,0.71 0.02,0.22 0.02,0.46 0.09,0.67 0.02,0.05 0.1,0.06 0.11,0 0.04,-0.22 0.01,-0.45 0,-0.67 0.01,-0.23 -0.01,-0.47 -0.03,-0.71 z" + id="path1126" /> + <path + class="st1" + d="m 530.27,413.43 c 0,0.07 0,0.13 0.01,0.2 0,0.02 0.02,0.04 0.04,0.04 0.02,0 0.03,-0.02 0.04,-0.04 0,-0.07 0.01,-0.13 0.01,-0.2 0,-0.02 -0.02,-0.04 -0.04,-0.04 -0.04,0 -0.06,0.01 -0.06,0.04 z" + id="path1128" /> + <path + class="st1" + d="m 531.21,412.2 c -0.03,-0.14 -0.24,-0.08 -0.21,0.06 0.06,0.4 0.13,0.8 0.19,1.2 0.06,0.4 0.1,0.81 0.22,1.19 0.03,0.11 0.21,0.09 0.21,-0.03 -0.01,-0.41 -0.11,-0.81 -0.18,-1.21 -0.08,-0.4 -0.15,-0.8 -0.23,-1.21 z" + id="path1130" /> + <path + class="st1" + d="m 533.77,415.39 c -0.02,-0.18 -0.04,-0.35 -0.06,-0.53 -0.04,-0.35 -0.08,-0.69 -0.12,-1.04 -0.02,-0.15 -0.26,-0.16 -0.24,0 0.03,0.35 0.06,0.7 0.09,1.06 0.02,0.17 0.03,0.34 0.05,0.51 0.01,0.09 0.02,0.18 0.03,0.27 0.01,0.09 0.01,0.17 0.08,0.24 0.06,0.05 0.14,0.04 0.18,-0.02 0.06,-0.08 0.03,-0.16 0.02,-0.25 -0.02,-0.08 -0.02,-0.16 -0.03,-0.24 z" + id="path1132" /> + <path + class="st1" + d="m 536.09,416.46 c -0.01,-0.03 -0.01,-0.05 -0.02,-0.08 -0.04,-0.07 -0.07,-0.13 -0.11,-0.2 -0.03,-0.06 -0.12,-0.08 -0.18,-0.05 -0.06,0.04 -0.08,0.11 -0.05,0.18 0.03,0.07 0.07,0.14 0.1,0.21 0.01,0.02 0.03,0.04 0.05,0.06 0.01,0.01 0.02,0.03 0.03,0.04 0.01,0.01 0.02,0.03 0.03,0.04 0.02,0.02 0.03,0.03 0.05,0.05 0.05,0.03 0.11,-0.01 0.11,-0.07 0,-0.04 -0.01,-0.08 -0.02,-0.13 0.02,-0.01 0.02,-0.03 0.01,-0.05 z" + id="path1134" /> + <path + class="st1" + d="m 539.73,415.82 c -0.01,-0.09 -0.15,-0.1 -0.15,0 0.03,0.41 0.05,0.81 0.08,1.22 0.02,0.39 0.02,0.81 0.13,1.19 0.02,0.06 0.09,0.04 0.1,-0.01 0.05,-0.39 -0.02,-0.8 -0.05,-1.2 -0.04,-0.4 -0.08,-0.8 -0.11,-1.2 z" + id="path1136" /> + <path + class="st1" + d="m 552.92,420.03 c -0.03,-0.14 -0.07,-0.28 -0.1,-0.41 -0.07,-0.28 -0.14,-0.56 -0.21,-0.84 -0.05,-0.2 -0.35,-0.11 -0.31,0.08 0.07,0.28 0.14,0.56 0.21,0.84 0.03,0.14 0.06,0.28 0.1,0.41 0.04,0.13 0.07,0.3 0.19,0.39 0.04,0.03 0.12,0.01 0.15,-0.04 0.05,-0.13 0,-0.3 -0.03,-0.43 z" + id="path1138" /> + <path + class="st1" + d="m 553.05,420.88 c -0.16,0 -0.17,0.26 0,0.26 0.17,0 0.17,-0.26 0,-0.26 z" + id="path1140" /> + <path + class="st1" + d="m 555.44,420.71 c 0.13,0 0.13,-0.2 0,-0.2 -0.12,0 -0.12,0.2 0,0.2 z" + id="path1142" /> + <path + class="st1" + d="m 557.8,420.76 c -0.07,-0.2 -0.13,-0.4 -0.2,-0.6 -0.03,-0.08 -0.11,-0.14 -0.2,-0.11 -0.08,0.02 -0.14,0.12 -0.11,0.2 0.07,0.2 0.14,0.41 0.2,0.61 0.03,0.1 0.07,0.2 0.1,0.29 0.04,0.11 0.08,0.21 0.14,0.32 0.03,0.06 0.11,0.08 0.17,0.06 0.07,-0.03 0.09,-0.09 0.08,-0.16 -0.02,-0.1 -0.04,-0.2 -0.07,-0.3 -0.05,-0.1 -0.08,-0.2 -0.11,-0.31 z" + id="path1144" /> + <path + class="st1" + d="m 560.23,420.26 c -0.2,0 -0.2,0.31 0,0.31 0.2,-0.01 0.2,-0.31 0,-0.31 z" + id="path1146" /> + <path + class="st1" + d="m 561.21,420.94 c -0.17,-0.14 -0.34,-0.27 -0.51,-0.41 -0.03,-0.03 -0.08,-0.03 -0.11,0 -0.03,0.03 -0.03,0.08 0,0.11 0.17,0.14 0.34,0.27 0.51,0.41 0.08,0.07 0.16,0.13 0.25,0.2 0.04,0.03 0.09,0.06 0.13,0.1 0.04,0.03 0.09,0.07 0.14,0.09 0.04,0.02 0.11,-0.03 0.07,-0.07 -0.06,-0.08 -0.15,-0.15 -0.23,-0.22 -0.08,-0.08 -0.17,-0.14 -0.25,-0.21 z" + id="path1148" /> + <path + class="st1" + d="m 563.23,422.05 c -0.03,-0.02 -0.05,-0.04 -0.08,-0.05 -0.05,-0.03 -0.1,-0.07 -0.15,-0.1 -0.1,-0.07 -0.2,-0.14 -0.31,-0.21 -0.07,-0.05 -0.19,-0.02 -0.23,0.06 -0.05,0.09 -0.02,0.18 0.06,0.23 0.1,0.07 0.21,0.14 0.31,0.21 0.05,0.03 0.1,0.07 0.15,0.1 0.03,0.02 0.05,0.04 0.08,0.05 0.04,0.03 0.09,0.03 0.14,0.04 0.05,0.01 0.1,-0.03 0.12,-0.07 0.03,-0.04 0.02,-0.1 0,-0.14 -0.01,-0.01 -0.01,-0.03 -0.02,-0.04 -0.02,-0.03 -0.04,-0.05 -0.07,-0.08 z" + id="path1150" /> + <path + class="st1" + d="m 564.42,422.08 c -0.16,0 -0.17,0.26 0,0.26 0.17,-0.01 0.17,-0.26 0,-0.26 z" + id="path1152" /> + <path + class="st1" + d="m 534.99,400.89 c 0.04,0.1 0.17,0.1 0.21,0 0.05,-0.12 0.03,-0.26 0.04,-0.38 0,-0.12 0.01,-0.23 0.01,-0.35 0,-0.25 0,-0.51 -0.01,-0.76 0,-0.51 -0.01,-1.02 -0.01,-1.53 0,-0.17 -0.27,-0.17 -0.27,0 0,0.51 -0.01,1.02 -0.01,1.53 0,0.25 -0.01,0.51 -0.01,0.76 0,0.12 0,0.23 0.01,0.35 0.01,0.12 -0.01,0.26 0.04,0.38 z" + id="path1154" /> + <path + class="st1" + d="m 539.35,400.68 c 0.07,-0.53 0.06,-1.07 0.06,-1.61 0,-0.15 -0.24,-0.15 -0.24,0 0,0.54 -0.02,1.08 0.06,1.61 0,0.06 0.11,0.06 0.12,0 z" + id="path1156" /> + <path + class="st1" + d="m 581.89,412.3 c 0.01,-0.02 0.02,-0.04 0.02,-0.05 0.01,-0.02 0.03,-0.05 0.03,-0.07 0,-0.02 0.01,-0.04 0.01,-0.05 0,-0.02 0.01,-0.03 0.02,-0.05 0.03,-0.07 0.05,-0.14 0.08,-0.21 0.01,-0.03 -0.01,-0.06 -0.04,-0.08 -0.03,-0.01 -0.06,0 -0.08,0.03 -0.04,0.06 -0.08,0.13 -0.12,0.19 0,0.01 -0.01,0.02 -0.01,0.02 0,0 -0.01,0.01 -0.01,0.01 -0.01,0.01 -0.01,0.01 0,0 0.01,-0.01 -0.01,0.01 -0.01,0.01 -0.01,0.01 -0.01,0.01 -0.02,0.02 -0.03,0.03 -0.05,0.08 -0.07,0.11 -0.03,0.05 -0.01,0.13 0.04,0.15 0.06,0.03 0.13,0.02 0.16,-0.03 z" + id="path1158" /> + <path + class="st1" + d="m 583.79,403.85 c -0.01,0.54 -0.01,1.09 -0.02,1.63 0,0.27 0,0.53 0,0.8 0,0.12 0,0.25 0.02,0.37 0.02,0.14 0.02,0.3 0.07,0.43 0.04,0.11 0.18,0.11 0.23,0 0.05,-0.12 0.04,-0.26 0.06,-0.39 0.02,-0.14 0.02,-0.27 0.03,-0.41 0,-0.27 0.01,-0.53 0,-0.8 -0.01,-0.54 -0.01,-1.09 -0.02,-1.63 -0.01,-0.23 -0.37,-0.23 -0.37,0 z" + id="path1160" /> + <path + class="st1" + d="m 584.1,407.84 c 0,-0.07 -0.06,-0.13 -0.13,-0.13 -0.07,0 -0.13,0.06 -0.13,0.13 0,0.13 -0.01,0.27 -0.01,0.4 0,0.06 0,0.13 -0.01,0.19 0,0.07 -0.02,0.16 0.01,0.23 0.02,0.06 0.07,0.11 0.14,0.1 0.07,0 0.11,-0.04 0.14,-0.1 0.03,-0.07 0.01,-0.15 0.01,-0.22 0,-0.07 0,-0.13 -0.01,-0.2 0,-0.13 -0.01,-0.27 -0.01,-0.4 z" + id="path1162" /> + <path + class="st1" + d="m 610.7,406.68 c 0.05,0 0.05,-0.08 0,-0.08 -0.05,0 -0.05,0.08 0,0.08 z" + id="path1164" /> + <path + class="st1" + d="m 612.7,408.94 c 0.12,0 0.12,-0.19 0,-0.19 -0.12,0 -0.13,0.19 0,0.19 z" + id="path1166" /> + <path + class="st1" + d="m 653.04,400.46 c -0.03,-0.6 -0.06,-1.2 -0.09,-1.8 -0.01,-0.22 -0.35,-0.22 -0.34,0 0.03,0.61 0.07,1.22 0.1,1.83 0.02,0.31 0.03,0.61 0.05,0.92 0.02,0.29 0.02,0.59 0.09,0.88 0.04,0.16 0.24,0.1 0.26,-0.03 0.04,-0.3 0,-0.61 -0.01,-0.92 -0.03,-0.29 -0.05,-0.58 -0.06,-0.88 z" + id="path1168" /> + <path + class="st1" + d="m 655.05,399.66 v 1.32 c 0,0.22 0,0.44 0,0.66 0,0.21 0.01,0.43 0.05,0.63 0.02,0.08 0.15,0.08 0.17,0 0.05,-0.2 0.05,-0.43 0.05,-0.63 0,-0.22 0,-0.44 0,-0.66 0,-0.44 0,-0.88 0,-1.32 0,-0.17 -0.27,-0.17 -0.27,0 z" + id="path1170" /> + <path + class="st1" + d="m 657.55,398.07 c 0,-0.21 -0.33,-0.21 -0.33,0 0,0.37 0,0.75 0,1.12 0,0.19 0,0.37 0,0.56 0,0.18 -0.02,0.38 0.03,0.55 0.04,0.13 0.22,0.13 0.25,0 0.05,-0.18 0.03,-0.37 0.03,-0.55 0,-0.19 0,-0.37 0,-0.56 0.01,-0.38 0.01,-0.75 0.02,-1.12 z" + id="path1172" /> + <path + class="st1" + d="m 654.28,374.66 c 0.03,0.29 0.01,0.6 0.05,0.89 0.01,0.08 0.14,0.07 0.15,0 0.06,-0.3 0.01,-0.65 -0.02,-0.95 -0.04,-0.32 -0.1,-0.63 -0.19,-0.94 -0.18,-0.63 -0.45,-1.22 -0.81,-1.76 -0.06,-0.1 -0.22,-0.01 -0.16,0.09 0.35,0.53 0.62,1.11 0.79,1.72 0.09,0.31 0.16,0.63 0.19,0.95 z" + id="path1174" /> + <path + class="st1" + d="m 668.15,379.86 c -0.07,0 -0.07,0.1 0,0.1 0.07,0 0.07,-0.1 0,-0.1 z" + id="path1176" /> + <path + class="st1" + d="m 567.41,408.91 c 0,-0.42 -0.01,-0.84 -0.01,-1.27 0,-0.23 -0.36,-0.23 -0.36,0 l -0.01,1.27 c 0,0.2 0,0.41 -0.01,0.61 0,0.11 0,0.22 0,0.33 0,0.11 0,0.22 0.09,0.3 0.07,0.06 0.15,0.06 0.22,0 0.09,-0.07 0.09,-0.19 0.09,-0.3 0,-0.11 0,-0.22 0,-0.33 -0.01,-0.2 -0.01,-0.41 -0.01,-0.61 z" + id="path1178" /> + <path + class="st1" + d="m 623.87,409.28 c 0.06,0 0.06,-0.09 0,-0.09 -0.06,0.01 -0.06,0.09 0,0.09 z" + id="path1180" /> + <path + class="st1" + d="m 552.26,379.32 c -0.03,-0.4 -0.07,-0.8 -0.1,-1.2 -0.01,-0.14 -0.23,-0.14 -0.21,0 0.03,0.41 0.07,0.81 0.1,1.22 0.02,0.2 0.03,0.41 0.05,0.61 0.02,0.2 0.05,0.39 0.08,0.58 0.01,0.08 0.15,0.06 0.15,-0.02 -0.01,-0.2 0,-0.41 -0.02,-0.61 -0.02,-0.19 -0.03,-0.39 -0.05,-0.58 z" + id="path1182" /> + <path + class="st1" + d="m 548.68,384.5 c -0.2,-0.47 -0.46,-0.91 -0.77,-1.32 -0.62,-0.8 -1.46,-1.41 -2.41,-1.77 -0.15,-0.06 -0.2,0.17 -0.06,0.23 0.9,0.37 1.68,0.99 2.26,1.76 0.29,0.38 0.53,0.8 0.71,1.24 0.08,0.21 0.15,0.42 0.22,0.63 0.03,0.11 0.07,0.22 0.1,0.34 0.03,0.11 0.04,0.23 0.11,0.32 0.04,0.06 0.12,0.05 0.14,-0.02 0.07,-0.19 -0.01,-0.49 -0.05,-0.69 -0.07,-0.24 -0.15,-0.48 -0.25,-0.72 z" + id="path1184" /> + <path + class="st1" + d="m 547.74,381.45 c -0.72,-0.67 -1.56,-1.2 -2.48,-1.56 -0.1,-0.04 -0.14,0.12 -0.04,0.16 0.89,0.36 1.71,0.9 2.4,1.57 0.34,0.33 0.66,0.69 0.93,1.07 0.13,0.19 0.26,0.38 0.38,0.58 0.12,0.21 0.22,0.43 0.35,0.63 0.06,0.09 0.2,0.03 0.17,-0.07 -0.14,-0.45 -0.46,-0.89 -0.73,-1.27 -0.29,-0.4 -0.62,-0.77 -0.98,-1.11 z" + id="path1186" /> + <path + class="st1" + d="m 544.47,378.53 c 1.07,0.1 2.09,0.55 2.93,1.22 0.85,0.68 1.41,1.56 1.81,2.56 0.06,0.16 0.31,0.1 0.27,-0.07 -0.28,-1.09 -1.04,-2.07 -1.92,-2.75 -0.89,-0.7 -1.96,-1.12 -3.09,-1.21 -0.17,-0.01 -0.16,0.24 0,0.25 z" + id="path1188" /> + <path + class="st1" + d="m 536.37,388.66 c -0.1,0.3 -0.21,0.61 -0.31,0.91 -0.05,0.15 -0.1,0.29 -0.15,0.44 -0.03,0.08 -0.03,0.16 -0.05,0.24 -0.02,0.08 -0.04,0.15 -0.04,0.23 0,0.09 0.11,0.1 0.15,0.04 0.05,-0.07 0.07,-0.15 0.11,-0.22 0.03,-0.08 0.08,-0.14 0.1,-0.22 0.05,-0.15 0.1,-0.29 0.14,-0.44 0.1,-0.31 0.2,-0.61 0.3,-0.92 0.05,-0.15 -0.2,-0.21 -0.25,-0.06 z" + id="path1190" /> + <path + class="st1" + d="m 535.87,392.39 c -0.06,0.02 -0.08,0.07 -0.07,0.12 0.06,0.33 0.11,0.66 0.17,0.99 0.01,0.07 0.1,0.11 0.16,0.09 0.07,-0.02 0.1,-0.09 0.09,-0.16 -0.07,-0.32 -0.15,-0.65 -0.22,-0.97 -0.02,-0.06 -0.08,-0.09 -0.13,-0.07 z" + id="path1192" /> + <path + class="st1" + d="m 537.15,392.49 c 0,-0.62 -0.08,-1.24 -0.02,-1.86 0.06,-0.64 0.23,-1.27 0.49,-1.86 0.07,-0.15 -0.15,-0.28 -0.22,-0.13 -0.28,0.6 -0.46,1.24 -0.55,1.89 -0.08,0.64 -0.1,1.37 0.15,1.98 0.02,0.07 0.15,0.07 0.15,-0.02 z" + id="path1194" /> + <path + class="st1" + d="m 537.49,391.17 c -0.09,-0.02 -0.2,0.06 -0.16,0.16 0.1,0.24 0.19,0.49 0.29,0.73 0.05,0.12 0.1,0.25 0.16,0.37 0.06,0.12 0.11,0.25 0.2,0.35 0.07,0.07 0.21,0.02 0.2,-0.08 -0.01,-0.13 -0.07,-0.25 -0.11,-0.37 -0.05,-0.13 -0.11,-0.25 -0.16,-0.38 -0.03,-0.07 -0.06,-0.14 -0.1,-0.21 0,-0.01 0.02,-0.01 0.02,-0.02 0.04,-0.12 0.02,-0.25 0.02,-0.37 0,-0.14 0.01,-0.27 0.02,-0.41 0.02,-0.26 0.08,-0.52 0.16,-0.77 0.16,-0.51 0.42,-0.98 0.78,-1.37 0.13,-0.14 -0.08,-0.34 -0.21,-0.21 -0.4,0.42 -0.71,0.92 -0.9,1.46 -0.09,0.27 -0.15,0.55 -0.18,0.84 -0.02,0.1 -0.02,0.19 -0.03,0.28 z" + id="path1196" /> + <path + class="st1" + d="m 539.04,391.79 c 0.04,0.26 0.12,0.51 0.26,0.73 0.31,0.47 0.75,0.81 1.28,1.01 1.03,0.4 2.19,-0.05 2.72,-1.01 0.5,-0.91 0.45,-2.18 -0.36,-2.9 -0.45,-0.4 -1.04,-0.62 -1.64,-0.61 -0.35,0.01 -0.65,0.09 -0.97,0.23 -0.15,0.06 -0.27,0.14 -0.4,0.25 -0.11,0.09 -0.18,0.2 -0.24,0.32 0,0.01 0,0.02 -0.01,0.03 -0.07,0.08 -0.13,0.17 -0.19,0.25 0.09,-0.17 0.19,-0.34 0.31,-0.48 0.14,-0.17 -0.1,-0.42 -0.24,-0.25 -0.27,0.32 -0.48,0.7 -0.59,1.11 -0.11,0.39 -0.17,0.86 -0.03,1.25 0.02,0.05 0.06,0.05 0.1,0.07 z m 1.17,-0.66 c 0,0 0,-0.02 0,-0.03 0,0 0,0 0,-0.01 0.01,-0.05 0.02,-0.1 0.04,-0.15 0,-0.01 0,-0.01 0.01,-0.02 0.04,-0.02 0.08,-0.04 0.12,-0.05 0,0 0.01,0 0.01,0 0.14,0 0.27,-0.04 0.39,-0.1 0,0 0,0 0.01,0 0.04,-0.02 0.09,-0.04 0.13,-0.06 0,0 0,0 0.01,0 0.02,-0.01 0.05,-0.02 0.07,-0.02 0.08,-0.02 0.16,-0.04 0.24,-0.05 -0.03,0 -0.05,0.01 -0.05,0 0.01,-0.01 0.05,-0.01 0.08,-0.01 0.01,0 0.02,0 0.03,-0.01 -0.01,0 -0.02,0 -0.03,0.01 0.02,0 0.04,0 0.05,0 0.06,0 0.13,0 0.19,0.01 0.04,0.01 0.09,0.02 0.13,0.03 0.02,0.01 0.05,0.02 0.07,0.02 0.05,0.03 0.11,0.07 0.16,0.1 0.03,0.02 0.05,0.05 0.08,0.08 0.02,0.03 0.04,0.07 0.06,0.1 0.01,0.01 0.01,0.03 0.02,0.04 0,0.01 0.01,0.02 0.01,0.02 0.01,0.04 0.02,0.07 0.03,0.11 0,0.01 0.01,0.03 0.01,0.06 0,0.02 0,0.04 0,0.05 0,0.04 0,0.08 0,0.12 0,0.03 0,0.06 -0.01,0.09 -0.02,0.08 -0.03,0.15 -0.06,0.22 0,0.01 -0.01,0.02 -0.01,0.03 -0.01,0.02 -0.02,0.05 -0.03,0.07 -0.03,0.06 -0.07,0.11 -0.1,0.17 -0.03,0.03 -0.06,0.07 -0.09,0.1 0,0 -0.01,0.01 -0.02,0.02 -0.02,0.01 -0.05,0.03 -0.06,0.04 -0.03,0.02 -0.06,0.04 -0.09,0.05 -0.07,0.02 -0.14,0.04 -0.21,0.06 -0.05,0 -0.1,0 -0.15,0 -0.03,0 -0.06,-0.01 -0.09,-0.01 -0.09,-0.02 -0.17,-0.04 -0.26,-0.07 -0.04,-0.02 -0.08,-0.04 -0.12,-0.06 -0.04,-0.02 -0.07,-0.04 -0.11,-0.07 -0.01,-0.01 -0.02,-0.01 -0.03,-0.02 -0.05,-0.05 -0.11,-0.1 -0.16,-0.15 -0.01,-0.01 -0.02,-0.03 -0.04,-0.04 -0.02,-0.03 -0.05,-0.07 -0.06,-0.08 -0.04,-0.07 -0.08,-0.14 -0.12,-0.21 -0.01,-0.02 -0.02,-0.03 -0.02,-0.05 0,0 0,0 0,-0.01 0,0 0,0 0,-0.01 0,0 0,0.01 0,0.01 -0.02,-0.04 -0.01,-0.03 0,-0.02 -0.01,-0.02 -0.01,-0.05 -0.02,-0.07 0,-0.02 0,-0.03 0,-0.04 -0.02,-0.08 -0.02,-0.13 -0.01,-0.19 z" + id="path1198" /> + <path + class="st1" + d="m 543.6,389.93 c 0.31,0.52 0.44,1.12 0.4,1.72 -0.02,0.29 -0.09,0.57 -0.19,0.84 -0.05,0.14 -0.13,0.27 -0.19,0.41 -0.06,0.13 -0.15,0.25 -0.2,0.38 -0.02,0.07 0.06,0.13 0.12,0.09 0.24,-0.16 0.39,-0.49 0.48,-0.75 0.11,-0.3 0.17,-0.63 0.18,-0.95 0.03,-0.64 -0.14,-1.28 -0.49,-1.81 -0.04,-0.07 -0.15,0 -0.11,0.07 z" + id="path1200" /> + <path + class="st1" + d="m 544.79,392.59 c -0.04,0.19 -0.09,0.37 -0.16,0.55 -0.07,0.18 -0.16,0.34 -0.22,0.52 -0.02,0.07 0.07,0.12 0.12,0.07 0.26,-0.27 0.41,-0.72 0.49,-1.07 0.09,-0.4 0.12,-0.82 0.08,-1.23 -0.08,-0.81 -0.41,-1.58 -0.96,-2.19 -0.08,-0.08 -0.2,0.04 -0.13,0.13 0.51,0.59 0.81,1.35 0.87,2.12 0.02,0.37 -0.01,0.74 -0.09,1.1 z" + id="path1202" /> + <path + class="st1" + d="m 545.7,392.21 c -0.12,0.38 -0.35,0.7 -0.49,1.07 -0.03,0.09 0.08,0.13 0.14,0.08 0.31,-0.24 0.49,-0.71 0.6,-1.08 0.13,-0.41 0.18,-0.85 0.17,-1.28 -0.02,-0.85 -0.32,-1.67 -0.85,-2.33 -0.07,-0.08 -0.21,0.03 -0.15,0.11 0.5,0.65 0.75,1.44 0.75,2.25 0.02,0.4 -0.04,0.8 -0.17,1.18 z" + id="path1204" /> + <path + class="st1" + d="m 546.41,393.04 c -0.04,0.1 0.08,0.22 0.16,0.12 0.44,-0.56 0.6,-1.34 0.59,-2.04 -0.01,-0.73 -0.22,-1.45 -0.63,-2.07 -0.07,-0.1 -0.24,-0.01 -0.17,0.1 0.36,0.58 0.55,1.25 0.55,1.94 0,0.71 -0.22,1.32 -0.5,1.95 z" + id="path1206" /> + <path + class="st1" + d="m 542.78,393.99 c 0.09,-0.09 -0.04,-0.2 -0.13,-0.13 -0.77,0.61 -1.89,0.72 -2.7,0.12 -0.05,-0.04 -0.12,0.05 -0.07,0.09 0.81,0.65 2.15,0.68 2.9,-0.08 z" + id="path1208" /> + <path + class="st1" + d="m 543.64,393.81 c -0.18,0.1 -0.32,0.27 -0.5,0.39 -0.17,0.12 -0.35,0.23 -0.55,0.32 -0.4,0.19 -0.85,0.3 -1.29,0.33 -0.87,0.06 -1.8,-0.17 -2.49,-0.71 -0.11,-0.08 -0.26,0.06 -0.15,0.15 0.74,0.63 1.68,0.92 2.65,0.84 0.47,-0.04 0.93,-0.16 1.36,-0.35 0.37,-0.17 0.9,-0.46 1.1,-0.84 0.04,-0.08 -0.04,-0.18 -0.13,-0.13 z" + id="path1210" /> + <path + class="st1" + d="m 542.09,395.89 c -0.34,0.13 -0.71,0.21 -1.07,0.24 -0.73,0.07 -1.47,-0.13 -2.09,-0.52 -0.08,-0.05 -0.16,0.08 -0.08,0.13 0.65,0.43 1.42,0.61 2.19,0.6 0.72,-0.01 1.59,-0.26 2.09,-0.81 0.06,-0.07 -0.02,-0.17 -0.1,-0.13 -0.31,0.17 -0.61,0.36 -0.94,0.49 z" + id="path1212" /> + <path + class="st1" + d="m 539.57,388.78 c 0.37,-0.31 0.83,-0.49 1.31,-0.55 0.23,-0.03 0.47,-0.02 0.7,0.02 0.11,0.02 0.23,0.04 0.35,0.07 0.12,0.03 0.23,0.08 0.35,0.09 0.1,0.01 0.14,-0.12 0.08,-0.18 -0.09,-0.09 -0.23,-0.14 -0.35,-0.19 -0.13,-0.05 -0.24,-0.08 -0.38,-0.1 -0.27,-0.04 -0.54,-0.04 -0.81,-0.01 -0.53,0.07 -1.03,0.31 -1.43,0.67 -0.13,0.11 0.06,0.28 0.18,0.18 z" + id="path1214" /> + <path + class="st1" + d="m 542.53,387.15 c -0.27,-0.1 -0.56,-0.15 -0.85,-0.16 -0.57,-0.02 -1.15,0.13 -1.62,0.45 -0.13,0.09 -0.01,0.31 0.13,0.22 0.45,-0.29 0.97,-0.42 1.5,-0.39 0.26,0.01 0.51,0.07 0.75,0.15 0.12,0.04 0.24,0.1 0.35,0.16 0.11,0.06 0.21,0.15 0.34,0.16 0.1,0.01 0.13,-0.1 0.1,-0.17 -0.05,-0.11 -0.2,-0.19 -0.31,-0.25 -0.13,-0.07 -0.26,-0.12 -0.39,-0.17 z" + id="path1216" /> + <path + class="st1" + d="m 541.72,386.45 c 0.37,0.04 0.73,0.1 1.09,0.2 0.34,0.09 0.7,0.29 1.05,0.34 0.09,0.01 0.18,-0.09 0.1,-0.17 -0.26,-0.24 -0.69,-0.35 -1.03,-0.45 -0.37,-0.1 -0.74,-0.18 -1.13,-0.21 -0.78,-0.06 -1.58,0.02 -2.33,0.24 -0.12,0.04 -0.07,0.22 0.05,0.19 0.71,-0.17 1.46,-0.22 2.2,-0.14 z" + id="path1218" /> + <path + class="st1" + d="m 549.46,397.22 c -0.06,0 -0.06,0.1 0,0.1 0.13,0 0.27,-0.01 0.4,-0.01 0.05,0 0.05,-0.08 0,-0.08 -0.13,0 -0.27,-0.01 -0.4,-0.01 z" + id="path1220" /> + <path + class="st1" + d="m 553.05,395.94 c 0.08,-0.01 0.08,-0.12 0,-0.13 -0.27,-0.02 -0.53,-0.01 -0.8,-0.01 h -0.8 c -0.1,0 -0.1,0.15 0,0.15 h 0.8 c 0.27,0 0.54,0.01 0.8,-0.01 z" + id="path1222" /> + <path + class="st1" + d="m 543.39,412.78 c 0.74,0.15 1.48,0.29 2.22,0.42 0.39,0.07 0.78,0.12 1.17,0.18 0.36,0.05 0.74,0.14 1.1,0.12 0.13,-0.01 0.14,-0.17 0.03,-0.21 -0.29,-0.12 -0.62,-0.16 -0.93,-0.21 -0.33,-0.06 -0.67,-0.12 -1,-0.19 -0.65,-0.12 -1.3,-0.23 -1.94,-0.37 -1.27,-0.26 -2.53,-0.56 -3.77,-0.94 -2.22,-0.69 -4.38,-1.69 -6.2,-3.14 -0.98,-0.78 -1.87,-1.7 -2.59,-2.73 -0.08,-0.12 -0.27,-0.01 -0.19,0.11 2.68,4.09 7.5,6 12.1,6.96 z" + id="path1224" /> + <path + class="st1" + d="m 544.71,411.17 c 1.1,0.28 2.22,0.51 3.35,0.59 0.12,0.01 0.14,-0.18 0.03,-0.2 -1.94,-0.43 -3.88,-0.79 -5.77,-1.42 -1.91,-0.63 -3.74,-1.44 -5.51,-2.4 -0.99,-0.53 -1.95,-1.12 -2.88,-1.75 -0.12,-0.08 -0.23,0.11 -0.11,0.2 3.28,2.32 6.99,4 10.89,4.98 z" + id="path1226" /> + <path + class="st1" + d="m 543.48,408.5 c 0.98,0.31 1.98,0.59 2.99,0.82 0.96,0.22 1.99,0.52 2.98,0.5 0.13,0 0.14,-0.18 0.03,-0.21 -0.49,-0.16 -1,-0.24 -1.51,-0.33 -0.47,-0.09 -0.94,-0.19 -1.41,-0.3 -0.99,-0.23 -1.97,-0.5 -2.93,-0.81 -1.94,-0.62 -3.82,-1.39 -5.66,-2.25 -0.16,-0.08 -0.3,0.16 -0.14,0.24 1.8,0.95 3.7,1.72 5.65,2.34 z" + id="path1228" /> + <path + class="st1" + d="m 588.36,412.58 c 0.54,0.01 1.08,0.02 1.63,0.03 0.27,0.01 0.54,0.02 0.81,0 0.26,-0.02 0.53,-0.01 0.78,-0.07 0.1,-0.02 0.1,-0.19 0,-0.21 -0.25,-0.06 -0.52,-0.05 -0.78,-0.07 -0.27,-0.02 -0.54,-0.01 -0.81,0 -0.54,0.01 -1.08,0.02 -1.63,0.03 -0.19,0 -0.19,0.28 0,0.29 z" + id="path1230" /> + <path + class="st1" + d="m 594.76,412.68 c 1.11,-0.24 2.23,-0.4 3.36,-0.51 0.54,-0.05 1.09,-0.08 1.63,-0.09 0.27,-0.01 0.54,-0.01 0.82,-0.01 0.27,0 0.54,0.04 0.8,-0.02 0.14,-0.03 0.13,-0.23 0,-0.27 -0.27,-0.09 -0.57,-0.06 -0.85,-0.06 -0.27,0 -0.54,0 -0.82,0.01 -0.56,0.02 -1.13,0.05 -1.69,0.1 -1.12,0.11 -2.22,0.32 -3.31,0.6 -0.17,0.04 -0.1,0.28 0.06,0.25 z" + id="path1232" /> + <path + class="st1" + d="m 594,414.18 c 0.97,0.03 1.93,0.04 2.9,0.03 0.94,-0.01 1.92,0.01 2.85,-0.14 0.08,-0.01 0.05,-0.13 -0.02,-0.13 -0.96,-0.06 -1.93,0.03 -2.9,0.05 -0.97,0.01 -1.93,0 -2.9,-0.03 -1.93,-0.05 -3.86,-0.18 -5.78,-0.38 -0.09,-0.01 -0.09,0.14 0,0.15 1.95,0.24 3.89,0.39 5.85,0.45 z" + id="path1234" /> + <path + class="st1" + d="m 599.4,415.75 c 1.24,-0.04 2.49,-0.09 3.72,-0.24 0.09,-0.01 0.09,-0.15 0,-0.14 -2.19,0.08 -4.37,0.25 -6.56,0.25 -2.17,0 -4.34,-0.08 -6.5,-0.25 -1.24,-0.1 -2.47,-0.22 -3.71,-0.37 -0.13,-0.02 -0.13,0.19 0,0.2 4.34,0.52 8.69,0.69 13.05,0.55 z" + id="path1236" /> + <path + class="st1" + d="m 580.38,416.56 c 7.19,0.93 14.51,1.1 21.74,0.57 1.02,-0.08 2.04,-0.16 3.07,-0.27 0.28,-0.03 0.57,-0.06 0.85,-0.09 -0.01,0.02 -0.02,0.03 -0.02,0.04 0,0.03 0.01,0.05 0.03,0.07 0.02,0.02 0.05,0.03 0.07,0.03 l 0.2,-0.02 c 0.02,0 0.04,-0.01 0.06,-0.03 0.01,-0.02 0.03,-0.04 0.03,-0.06 0,-0.02 -0.01,-0.05 -0.03,-0.06 -0.01,-0.01 -0.03,-0.01 -0.04,-0.02 0.61,-0.07 1.22,-0.16 1.83,-0.29 0.16,-0.04 0.13,-0.29 -0.04,-0.29 -1.81,0.06 -3.61,0.35 -5.41,0.49 -1.81,0.15 -3.62,0.26 -5.43,0.32 -3.59,0.13 -7.18,0.06 -10.76,-0.16 -2.05,-0.13 -4.09,-0.3 -6.13,-0.52 -0.2,0 -0.19,0.27 -0.02,0.29 z" + id="path1238" /> + <path + class="st1" + d="m 642.83,410.87 c 1.21,-0.28 2.42,-0.56 3.6,-0.95 0.15,-0.05 0.09,-0.27 -0.07,-0.24 -2.1,0.47 -4.18,1.04 -6.29,1.47 -2.09,0.43 -4.19,0.8 -6.3,1.1 -1.24,0.18 -2.47,0.35 -3.72,0.49 -0.13,0.01 -0.13,0.22 0,0.21 4.31,-0.4 8.57,-1.1 12.78,-2.08 z" + id="path1240" /> + <path + class="st1" + d="m 635.8,413.95 c -1.38,0.17 -2.76,0.31 -4.15,0.41 -0.11,0.01 -0.11,0.18 0,0.18 4.96,-0.31 9.88,-1.08 14.71,-2.28 1.37,-0.34 2.73,-0.68 4.07,-1.13 0.16,-0.05 0.1,-0.3 -0.07,-0.25 -2.39,0.65 -4.75,1.33 -7.17,1.84 -2.45,0.52 -4.91,0.92 -7.39,1.23 z" + id="path1242" /> + <path + class="st1" + d="m 559.04,298.01 c 0.11,0 0.11,-0.17 0,-0.17 -0.11,0 -0.11,0.17 0,0.17 z" + id="path1244" /> + <path + class="st1" + d="m 559.17,295.59 c 0.13,0.1 0.27,0.23 0.43,0.27 0.1,0.03 0.2,-0.09 0.14,-0.19 -0.08,-0.14 -0.25,-0.24 -0.38,-0.34 l -0.42,-0.31 c -0.27,-0.21 -0.55,-0.41 -0.82,-0.62 -0.07,-0.05 -0.18,-0.01 -0.22,0.06 -0.05,0.08 -0.01,0.17 0.06,0.22 0.27,0.2 0.54,0.41 0.81,0.61 0.13,0.09 0.27,0.19 0.4,0.3 z" + id="path1246" /> + <path + class="st1" + d="m 559.97,293.73 c 0.17,0.15 0.33,0.3 0.5,0.45 0.08,0.07 0.17,0.15 0.25,0.22 0.09,0.08 0.16,0.16 0.27,0.21 0.08,0.03 0.16,-0.04 0.12,-0.12 -0.05,-0.1 -0.13,-0.16 -0.22,-0.23 -0.08,-0.07 -0.17,-0.15 -0.25,-0.22 -0.17,-0.15 -0.34,-0.31 -0.51,-0.46 -0.34,-0.3 -0.68,-0.61 -1.01,-0.91 -0.11,-0.1 -0.26,0.06 -0.16,0.16 0.33,0.29 0.67,0.6 1.01,0.9 z" + id="path1248" /> + <path + class="st1" + d="m 560.46,292.63 c 0.12,0.1 0.23,0.2 0.35,0.3 0.12,0.1 0.23,0.23 0.37,0.29 0.08,0.04 0.2,-0.05 0.14,-0.14 -0.09,-0.13 -0.22,-0.22 -0.33,-0.31 -0.12,-0.1 -0.24,-0.2 -0.36,-0.31 -0.24,-0.2 -0.47,-0.4 -0.71,-0.61 -0.11,-0.1 -0.27,0.07 -0.16,0.16 0.23,0.22 0.46,0.42 0.7,0.62 z" + id="path1250" /> + <path + class="st1" + d="m 561.99,292.21 c 0.09,0.05 0.16,-0.08 0.08,-0.14 -0.32,-0.21 -0.66,-0.41 -0.99,-0.61 -0.11,-0.06 -0.2,0.1 -0.1,0.17 0.34,0.19 0.67,0.39 1.01,0.58 z" + id="path1252" /> + <path + class="st1" + d="m 563.4,290.92 c -0.15,-0.05 -0.29,-0.1 -0.44,-0.15 -0.31,-0.1 -0.61,-0.2 -0.92,-0.3 -0.09,-0.03 -0.14,0.12 -0.04,0.15 0.3,0.1 0.61,0.21 0.91,0.31 0.15,0.05 0.29,0.1 0.44,0.15 0.15,0.05 0.31,0.12 0.46,0.14 0.07,0.01 0.09,-0.1 0.04,-0.13 -0.12,-0.09 -0.3,-0.12 -0.45,-0.17 z" + id="path1254" /> + <path + class="st1" + d="m 563.07,289.69 c 0.22,0.14 0.44,0.28 0.65,0.41 0.2,0.13 0.43,0.32 0.67,0.36 0.1,0.01 0.22,-0.09 0.15,-0.19 -0.14,-0.2 -0.4,-0.31 -0.6,-0.43 -0.23,-0.14 -0.46,-0.27 -0.69,-0.41 -0.45,-0.27 -0.9,-0.54 -1.35,-0.81 -0.16,-0.09 -0.3,0.15 -0.14,0.24 0.44,0.28 0.88,0.55 1.31,0.83 z" + id="path1256" /> + <path + class="st1" + d="m 645.6,253.78 c -0.14,0.48 -0.28,0.96 -0.42,1.45 -0.07,0.24 -0.14,0.47 -0.2,0.71 -0.03,0.12 -0.07,0.25 -0.1,0.37 -0.03,0.12 -0.07,0.24 -0.03,0.36 0.04,0.12 0.18,0.15 0.27,0.07 0.09,-0.08 0.12,-0.21 0.16,-0.32 0.04,-0.12 0.08,-0.24 0.11,-0.37 0.07,-0.24 0.14,-0.47 0.2,-0.71 0.13,-0.48 0.27,-0.97 0.4,-1.45 0.08,-0.26 -0.32,-0.37 -0.39,-0.11 z" + id="path1258" /> + <path + class="st1" + d="m 552.23,248.84 c 0,0.02 0.01,0.03 0.02,0.05 -0.01,-0.03 -0.02,-0.06 -0.03,-0.1 z" + id="path1260" /> + <polygon + class="st1" + points="" + id="polygon1262" /> + <path + class="st1" + d="m 564.99,203.33 c -0.03,-0.07 -0.07,-0.13 -0.1,-0.2 -0.01,-0.03 -0.05,-0.04 -0.08,-0.02 -0.03,0.02 -0.04,0.05 -0.02,0.08 0.03,0.07 0.07,0.13 0.1,0.2 0.02,0.03 0.03,0.07 0.05,0.1 0.02,0.03 0.04,0.06 0.06,0.1 0.01,0.02 0.04,0.03 0.06,0.02 0.02,-0.01 0.04,-0.03 0.03,-0.06 -0.02,-0.04 -0.03,-0.08 -0.05,-0.11 -0.02,-0.04 -0.03,-0.07 -0.05,-0.11 z" + id="path1264" /> + <path + class="st1" + d="m 565.82,202.47 c -0.13,0 -0.13,0.2 0,0.2 0.13,0 0.13,-0.2 0,-0.2 z" + id="path1266" /> + <path + class="st1" + d="m 565.22,202.42 c 0.06,0 0.06,-0.1 0,-0.1 -0.06,0 -0.06,0.1 0,0.1 z" + id="path1268" /> + <path + class="st1" + d="m 565.62,204.25 c 0.11,0 0.11,-0.17 0,-0.17 -0.11,0 -0.11,0.17 0,0.17 z" + id="path1270" /> + <path + class="st1" + d="m 566.91,204.93 c 0.13,-0.07 0.26,-0.14 0.4,-0.2 0.07,-0.03 0.13,-0.07 0.2,-0.1 0.07,-0.03 0.12,-0.08 0.18,-0.13 0.06,-0.05 0.09,-0.11 0.06,-0.19 -0.03,-0.07 -0.11,-0.11 -0.18,-0.09 -0.08,0.02 -0.16,0.04 -0.24,0.08 -0.07,0.03 -0.14,0.07 -0.21,0.1 -0.14,0.07 -0.27,0.13 -0.41,0.2 -0.09,0.04 -0.12,0.18 -0.07,0.26 0.07,0.09 0.18,0.12 0.27,0.07 z" + id="path1272" /> + <path + class="st1" + d="m 567.61,206.39 c -0.22,0 -0.22,0.34 0,0.34 0.22,0 0.22,-0.34 0,-0.34 z" + id="path1274" /> + <path + class="st1" + d="m 567.7,207.03 c 0.13,0.19 0.33,0.33 0.56,0.38 0.12,0.03 0.24,0.03 0.36,0 0.06,-0.01 0.11,-0.03 0.16,-0.06 0.06,-0.03 0.1,-0.06 0.15,-0.12 0.05,-0.07 -0.02,-0.19 -0.1,-0.18 -0.05,0 -0.1,0.01 -0.14,0.03 -0.02,0.01 -0.04,0.01 -0.06,0.01 0,0 0,0 -0.01,0 0,0 0,0 -0.01,0 -0.01,0 -0.02,0 -0.03,0 -0.04,0 -0.09,0 -0.13,0 -0.02,0 -0.04,0 -0.06,0 0.04,0 0,0 -0.01,0 -0.01,0 -0.02,0 -0.03,-0.01 -0.04,-0.01 -0.08,-0.02 -0.12,-0.04 0,0 0,0 0,0 -0.01,0 -0.02,-0.01 -0.03,-0.01 -0.02,-0.01 -0.04,-0.02 -0.06,-0.03 -0.01,-0.01 -0.02,-0.01 -0.03,-0.02 0,0 -0.01,-0.01 -0.01,-0.01 0,0 -0.01,-0.01 -0.01,-0.01 -0.01,-0.01 -0.02,-0.01 -0.02,-0.02 -0.02,-0.02 -0.03,-0.03 -0.04,-0.05 0,0 -0.01,-0.01 -0.01,-0.01 -0.01,-0.01 -0.01,-0.02 -0.02,-0.03 -0.05,-0.07 -0.15,-0.11 -0.23,-0.06 -0.09,0.06 -0.12,0.16 -0.07,0.24 z" + id="path1276" /> + <path + class="st1" + d="m 568.35,209.69 c 0.26,-0.25 0.56,-0.46 0.88,-0.62 0.16,-0.08 0.32,-0.14 0.48,-0.2 0.18,-0.06 0.36,-0.1 0.53,-0.16 0.17,-0.06 0.15,-0.32 -0.04,-0.32 -0.4,-0.01 -0.81,0.16 -1.16,0.34 -0.36,0.18 -0.69,0.41 -0.98,0.69 -0.17,0.17 0.11,0.45 0.29,0.27 z" + id="path1278" /> + <path + class="st1" + d="m 570.02,210.28 c -0.17,0.1 -0.34,0.19 -0.52,0.29 -0.08,0.04 -0.11,0.15 -0.06,0.23 0,0.01 0.01,0.01 0.02,0.01 0.02,0.05 0.05,0.09 0.1,0.1 0.2,0.06 0.4,0.12 0.61,0.17 0.07,0.02 0.16,-0.03 0.18,-0.1 0.02,-0.08 -0.03,-0.15 -0.1,-0.18 -0.1,-0.04 -0.2,-0.08 -0.3,-0.11 0.08,-0.05 0.16,-0.1 0.24,-0.14 0.08,-0.05 0.17,-0.1 0.25,-0.15 0.04,-0.02 0.08,-0.05 0.12,-0.07 0.05,-0.03 0.09,-0.07 0.13,-0.11 0.09,-0.08 0,-0.25 -0.12,-0.21 -0.05,0.02 -0.11,0.04 -0.16,0.06 -0.04,0.02 -0.08,0.05 -0.12,0.07 -0.1,0.05 -0.18,0.1 -0.27,0.14 z" + id="path1280" /> + <path + class="st1" + d="m 570.46,213.03 c 0.05,0.07 0.16,0.12 0.23,0.06 0.2,-0.15 0.4,-0.3 0.6,-0.46 0.05,-0.04 0.04,-0.12 0.01,-0.16 -0.04,-0.05 -0.11,-0.06 -0.16,-0.03 -0.21,0.12 -0.42,0.24 -0.62,0.36 -0.08,0.04 -0.11,0.15 -0.06,0.23 z" + id="path1282" /> + <path + class="st1" + d="m 570.81,214.22 c 0.06,0.1 0.19,0.14 0.29,0.08 0.28,-0.18 0.55,-0.36 0.83,-0.54 0.14,-0.09 0.27,-0.18 0.41,-0.26 0.07,-0.05 0.14,-0.09 0.21,-0.14 0.04,-0.03 0.08,-0.05 0.12,-0.09 0.04,-0.04 0.05,-0.09 0.07,-0.13 0.05,-0.11 -0.07,-0.22 -0.17,-0.22 -0.17,0 -0.34,0.14 -0.48,0.23 -0.13,0.09 -0.26,0.17 -0.39,0.26 -0.27,0.18 -0.54,0.36 -0.81,0.53 -0.1,0.06 -0.14,0.18 -0.08,0.28 z" + id="path1284" /> + <path + class="st1" + d="m 571.65,215.39 c -0.19,0.19 0.11,0.49 0.3,0.3 0.26,-0.26 0.55,-0.47 0.87,-0.63 0.15,-0.08 0.31,-0.14 0.48,-0.19 0.09,-0.03 0.18,-0.05 0.27,-0.07 0.1,-0.02 0.21,-0.03 0.3,-0.08 0.14,-0.07 0.12,-0.32 -0.05,-0.35 -0.19,-0.04 -0.43,0.04 -0.61,0.1 -0.2,0.06 -0.39,0.14 -0.58,0.23 -0.36,0.16 -0.69,0.41 -0.98,0.69 z" + id="path1286" /> + <path + class="st1" + d="m 573.17,216.83 c -0.28,0.11 -0.55,0.21 -0.83,0.32 -0.07,0.03 -0.11,0.08 -0.13,0.15 -0.01,0.01 -0.01,0.03 -0.01,0.05 0,0.02 -0.01,0.03 -0.01,0.05 0,0.01 0.01,0.02 0.02,0.02 0,0.01 0,0.01 0,0.02 0.01,0.02 0.03,0.02 0.04,0.03 0.02,0.02 0.03,0.03 0.05,0.04 0.26,0.31 0.63,0.48 1.03,0.49 0.35,0.01 0.68,-0.09 0.95,-0.31 0,0.01 0,0.01 0,0.02 0,0 -0.01,0.02 0,0.01 0,0 0,0 0,0 -0.02,0.02 -0.04,0.05 -0.05,0.09 0,0.01 0,0.01 0,0.01 -0.05,0.11 0.02,0.24 0.15,0.25 0.23,0.01 0.36,-0.25 0.36,-0.45 0,-0.23 -0.13,-0.44 -0.36,-0.49 -0.1,-0.03 -0.21,0.02 -0.27,0.11 -0.08,0.13 -0.18,0.22 -0.33,0.3 -0.12,0.06 -0.29,0.11 -0.44,0.12 -0.23,0.01 -0.45,-0.08 -0.63,-0.22 0.19,-0.07 0.39,-0.14 0.58,-0.21 0.14,-0.05 0.28,-0.1 0.41,-0.15 0.15,-0.05 0.35,-0.09 0.43,-0.24 0.06,-0.1 0,-0.21 -0.1,-0.25 -0.15,-0.06 -0.32,0.05 -0.45,0.1 -0.13,0.03 -0.27,0.08 -0.41,0.14 z" + id="path1288" /> + <path + class="st1" + d="m 573.8,219.18 c 0.03,0.1 0.15,0.18 0.25,0.14 0.27,-0.1 0.54,-0.2 0.81,-0.3 0.14,-0.05 0.27,-0.12 0.41,-0.18 0.13,-0.06 0.27,-0.12 0.38,-0.21 0.05,-0.03 0.07,-0.08 0.06,-0.14 -0.01,-0.05 -0.07,-0.1 -0.12,-0.09 -0.15,0.01 -0.29,0.05 -0.43,0.09 -0.14,0.04 -0.27,0.07 -0.41,0.12 -0.27,0.1 -0.54,0.21 -0.81,0.31 -0.1,0.05 -0.17,0.15 -0.14,0.26 z" + id="path1290" /> + <path + class="st1" + d="m 537.59,217.43 c 0.22,-0.21 0.42,-0.47 0.6,-0.72 0.18,-0.25 0.36,-0.5 0.54,-0.76 0.35,-0.52 0.7,-1.04 1.06,-1.56 0.1,-0.15 -0.14,-0.29 -0.24,-0.14 -0.37,0.5 -0.74,1 -1.11,1.49 -0.18,0.24 -0.35,0.48 -0.52,0.73 -0.18,0.26 -0.37,0.53 -0.5,0.81 -0.07,0.12 0.07,0.24 0.17,0.15 z" + id="path1292" /> + <path + class="st1" + d="m 535.35,221.98 c 0.19,-0.2 0.34,-0.48 0.47,-0.72 0.13,-0.25 0.26,-0.49 0.39,-0.74 0.26,-0.51 0.53,-1.02 0.79,-1.53 0.09,-0.17 -0.16,-0.31 -0.25,-0.15 -0.28,0.5 -0.55,1.01 -0.83,1.51 -0.13,0.24 -0.26,0.49 -0.4,0.73 -0.13,0.24 -0.28,0.52 -0.34,0.8 -0.01,0.1 0.1,0.18 0.17,0.1 z" + id="path1294" /> + <path + class="st1" + d="m 539.14,217.82 c 0.43,-0.26 0.76,-0.66 1.03,-1.08 0.27,-0.42 0.48,-0.89 0.63,-1.37 0.05,-0.15 -0.18,-0.21 -0.23,-0.06 -0.16,0.45 -0.38,0.87 -0.65,1.26 -0.27,0.39 -0.6,0.72 -0.9,1.09 -0.07,0.09 0.01,0.22 0.12,0.16 z" + id="path1296" /> + <path + class="st1" + d="m 537.19,221.98 c 0.05,-0.07 0.09,-0.1 0.13,-0.18 0.02,-0.05 0.04,-0.1 0.07,-0.15 0.05,-0.12 0.1,-0.24 0.15,-0.36 0.1,-0.23 0.2,-0.46 0.29,-0.69 0.2,-0.47 0.4,-0.93 0.6,-1.4 0.08,-0.19 -0.2,-0.35 -0.28,-0.16 -0.2,0.47 -0.41,0.95 -0.61,1.42 -0.1,0.24 -0.2,0.47 -0.31,0.71 -0.05,0.11 -0.1,0.23 -0.15,0.34 -0.02,0.05 -0.04,0.1 -0.06,0.15 -0.03,0.08 -0.03,0.14 -0.04,0.22 -0.02,0.14 0.13,0.2 0.21,0.1 z" + id="path1298" /> + <path + class="st1" + d="m 536.76,222.24 c -0.18,0.41 -0.36,0.82 -0.54,1.23 -0.09,0.2 -0.18,0.4 -0.26,0.61 -0.04,0.1 -0.08,0.21 -0.11,0.31 -0.04,0.1 -0.1,0.22 -0.09,0.33 0.01,0.09 0.11,0.18 0.2,0.12 0.09,-0.07 0.13,-0.16 0.18,-0.27 0.05,-0.11 0.1,-0.21 0.15,-0.32 0.09,-0.2 0.17,-0.41 0.25,-0.61 0.17,-0.42 0.34,-0.85 0.5,-1.27 0.07,-0.17 -0.21,-0.29 -0.28,-0.13 z" + id="path1300" /> + <path + class="st1" + d="m 610.47,189.34 c 0.11,0.03 0.22,0.06 0.33,0.1 0.03,0.02 0.06,0.04 0.1,0.05 0.04,0.01 0.08,0.01 0.12,0.02 0.08,0.01 0.17,0.03 0.26,0.04 0.07,0.01 0.15,0.02 0.22,0.03 0.04,0 0.08,0.01 0.12,0.01 0.05,0 0.09,-0.01 0.14,-0.02 0.14,-0.04 0.15,-0.21 0.04,-0.29 -0.13,-0.09 -0.31,-0.1 -0.46,-0.14 -0.07,-0.02 -0.15,-0.03 -0.22,-0.04 -0.04,-0.01 -0.08,-0.01 -0.12,-0.02 -0.05,-0.01 -0.08,0 -0.12,0.01 -0.12,0 -0.24,-0.01 -0.36,-0.01 -0.18,-0.03 -0.2,0.22 -0.05,0.26 z" + id="path1302" /> + <path + class="st1" + d="m 617.69,193.06 c 0.14,0.08 0.29,0.16 0.44,0.23 0.08,0.04 0.15,0.06 0.23,0.1 0.09,0.04 0.17,0.08 0.26,0.12 0.11,0.05 0.2,-0.09 0.1,-0.17 -0.07,-0.05 -0.14,-0.1 -0.22,-0.15 -0.07,-0.05 -0.14,-0.11 -0.21,-0.16 -0.14,-0.08 -0.28,-0.17 -0.43,-0.25 -0.3,-0.17 -0.6,-0.33 -0.9,-0.5 -0.18,-0.1 -0.34,0.17 -0.16,0.28 0.29,0.16 0.59,0.34 0.89,0.5 z" + id="path1304" /> + <path + class="st1" + d="m 553.45,301.21 c 0.11,0 0.11,-0.18 0,-0.18 -0.11,0 -0.11,0.18 0,0.18 z" + id="path1306" /> + <path + class="st1" + d="m 550.38,296.5 c -0.13,-0.13 -0.27,-0.24 -0.41,-0.35 -0.28,-0.23 -0.55,-0.46 -0.83,-0.69 -0.1,-0.09 -0.26,0.06 -0.15,0.15 0.26,0.24 0.53,0.48 0.79,0.73 0.13,0.12 0.25,0.24 0.39,0.35 0.07,0.06 0.14,0.11 0.22,0.15 0.08,0.04 0.15,0.11 0.24,0.15 0.05,0.02 0.12,-0.03 0.09,-0.09 -0.04,-0.07 -0.11,-0.13 -0.16,-0.2 -0.06,-0.07 -0.12,-0.14 -0.18,-0.2 z" + id="path1308" /> + <path + class="st1" + d="m 554.13,300.08 c -0.06,-0.06 -0.14,-0.11 -0.21,-0.16 -0.14,-0.1 -0.27,-0.2 -0.41,-0.3 -0.04,-0.03 -0.11,-0.01 -0.13,0.03 -0.03,0.05 -0.01,0.1 0.03,0.13 0.13,0.1 0.27,0.2 0.4,0.3 0.06,0.05 0.13,0.1 0.2,0.15 0.07,0.04 0.15,0.08 0.22,0.12 0.06,0.04 0.13,-0.05 0.08,-0.1 -0.06,-0.05 -0.12,-0.11 -0.18,-0.17 z" + id="path1310" /> + <path + class="st1" + d="m 565.57,307.73 c -0.04,-0.04 -0.08,-0.07 -0.12,-0.1 -0.08,-0.07 -0.17,-0.14 -0.25,-0.2 -0.17,-0.13 -0.33,-0.27 -0.5,-0.4 -0.06,-0.05 -0.14,-0.06 -0.19,0 -0.05,0.05 -0.06,0.15 0,0.19 0.17,0.14 0.33,0.28 0.5,0.41 0.08,0.07 0.16,0.13 0.24,0.2 0.05,0.04 0.09,0.08 0.14,0.12 0.05,0.03 0.09,0.06 0.14,0.09 0.12,0.08 0.24,-0.09 0.15,-0.19 -0.04,-0.04 -0.07,-0.08 -0.11,-0.12 z" + id="path1312" /> + <path + class="st1" + d="m 568.3,308.89 c -0.03,-0.01 -0.05,-0.04 -0.08,-0.05 -0.04,-0.01 -0.1,-0.01 -0.14,-0.02 -0.14,-0.02 -0.27,-0.03 -0.41,-0.04 -0.28,-0.02 -0.56,-0.01 -0.84,-0.03 -0.12,-0.01 -0.14,0.18 -0.03,0.2 0.28,0.05 0.55,0.13 0.82,0.18 0.14,0.03 0.28,0.05 0.42,0.06 0.04,0 0.07,0.01 0.11,0.01 0.04,0 0.07,-0.01 0.11,-0.02 0.07,-0.02 0.14,0 0.21,-0.04 0.06,-0.04 0.07,-0.12 0.02,-0.17 -0.05,-0.04 -0.12,-0.04 -0.19,-0.08 z" + id="path1314" /> + <path + class="st1" + d="m 564.85,305.82 c 0.07,-0.03 0.11,-0.1 0.07,-0.17 -0.04,-0.07 -0.1,-0.09 -0.17,-0.12 -0.07,-0.03 -0.14,-0.06 -0.21,-0.09 -0.14,-0.05 -0.29,-0.1 -0.43,-0.16 -0.28,-0.1 -0.56,-0.21 -0.84,-0.31 -0.07,-0.03 -0.15,0.03 -0.17,0.1 -0.02,0.08 0.03,0.15 0.1,0.17 l 0.83,0.32 c 0.14,0.05 0.28,0.11 0.41,0.16 0.07,0.03 0.14,0.05 0.21,0.07 0.06,0.02 0.13,0.05 0.2,0.03 z" + id="path1316" /> + <path + class="st1" + d="m 587.14,311.51 c -0.09,0 -0.17,0 -0.26,0 -0.17,0 -0.35,0.01 -0.52,0.01 -0.08,0 -0.17,0.07 -0.16,0.16 0,0.09 0.07,0.16 0.16,0.16 0.17,0 0.35,0.01 0.52,0.01 0.09,0 0.17,0 0.26,0 0.1,0 0.2,0.01 0.29,-0.05 0.09,-0.06 0.09,-0.19 0,-0.25 -0.09,-0.04 -0.18,-0.04 -0.29,-0.04 z" + id="path1318" /> + <path + class="st1" + d="m 589.81,312.02 c 0.07,-0.04 0.07,-0.13 0.02,-0.18 -0.07,-0.08 -0.2,-0.09 -0.3,-0.12 -0.1,-0.03 -0.21,-0.05 -0.31,-0.06 -0.21,-0.03 -0.42,-0.06 -0.62,-0.1 -0.09,-0.01 -0.19,0.02 -0.22,0.12 -0.02,0.08 0.03,0.2 0.12,0.22 0.21,0.03 0.42,0.07 0.63,0.1 0.11,0.02 0.22,0.04 0.33,0.04 0.12,0.01 0.25,0.03 0.35,-0.02 z" + id="path1320" /> + <path + class="st1" + d="m 591.98,311.79 c -0.26,-0.09 -0.54,-0.09 -0.81,-0.08 -0.27,0 -0.54,0.01 -0.81,0.01 -0.22,0 -0.22,0.34 0,0.34 0.27,0 0.54,0.01 0.81,0.01 0.27,0 0.55,0 0.81,-0.08 0.09,-0.04 0.09,-0.16 0,-0.2 z" + id="path1322" /> + <path + class="st1" + d="m 590.59,312.86 c -0.08,-0.02 -0.17,-0.04 -0.25,-0.05 -0.18,-0.03 -0.35,-0.06 -0.53,-0.09 -0.11,-0.02 -0.23,0.03 -0.26,0.15 -0.02,0.1 0.03,0.23 0.15,0.26 0.18,0.04 0.36,0.08 0.54,0.11 0.1,0.02 0.2,0.04 0.3,0.05 0.05,0.01 0.09,0.01 0.14,0.02 0.08,0.01 0.14,-0.02 0.2,-0.07 0.06,-0.05 0.06,-0.14 0.03,-0.21 -0.04,-0.07 -0.09,-0.11 -0.17,-0.13 -0.06,-0.02 -0.1,-0.03 -0.15,-0.04 z" + id="path1324" /> + <path + class="st1" + d="m 594.62,313.08 c 0.14,0 0.27,-0.01 0.41,-0.02 0.13,-0.01 0.27,0 0.39,-0.07 0.12,-0.07 0.08,-0.23 -0.04,-0.28 -0.13,-0.05 -0.28,-0.02 -0.42,-0.01 -0.13,0.01 -0.25,0.02 -0.38,0.04 -0.27,0.03 -0.56,0.1 -0.84,0.08 -0.26,-0.01 -0.53,-0.03 -0.79,-0.02 -0.27,0.01 -0.54,0.06 -0.81,0.09 -0.22,0.03 -0.24,0.36 0,0.36 0.27,-0.01 0.54,0 0.81,-0.02 0.28,-0.02 0.56,-0.08 0.83,-0.13 0.28,-0.04 0.57,-0.02 0.84,-0.02 z" + id="path1326" /> + <path + class="st1" + d="m 599.34,312.09 c 0.28,-0.02 0.55,-0.02 0.83,-0.04 0.14,-0.01 0.29,-0.04 0.43,-0.06 0.11,-0.02 0.26,-0.04 0.35,-0.12 0.01,0 0.02,-0.01 0.02,-0.01 0.06,-0.02 0.1,-0.07 0.1,-0.13 0,-0.05 -0.04,-0.12 -0.1,-0.13 -0.02,0 -0.04,-0.01 -0.06,-0.01 -0.1,-0.06 -0.25,-0.04 -0.35,-0.03 -0.15,0.01 -0.3,0.03 -0.45,0.05 -0.27,0.05 -0.54,0.11 -0.81,0.16 -0.19,0.03 -0.15,0.33 0.04,0.32 z" + id="path1328" /> + <path + class="st1" + d="m 600.13,312.49 c -0.26,0 -0.26,0.4 0,0.4 0.28,0 0.55,0 0.83,0.01 0.14,0 0.27,0 0.41,-0.01 0.14,-0.01 0.33,0.02 0.44,-0.07 0.1,-0.07 0.1,-0.2 0,-0.27 -0.11,-0.08 -0.29,-0.06 -0.42,-0.06 -0.14,-0.01 -0.28,-0.01 -0.42,-0.01 -0.29,0 -0.56,0.01 -0.84,0.01 z" + id="path1330" /> + <path + class="st1" + d="m 624.24,303.18 c -0.06,0.01 -0.11,0.04 -0.16,0.07 -0.05,0.03 -0.09,0.07 -0.14,0.1 -0.1,0.07 -0.19,0.14 -0.29,0.22 -0.17,0.14 -0.34,0.27 -0.52,0.41 -0.08,0.06 -0.07,0.21 0,0.28 0.09,0.08 0.19,0.07 0.28,0 l 0.51,-0.4 c 0.08,-0.07 0.17,-0.13 0.24,-0.2 0.09,-0.08 0.19,-0.15 0.24,-0.25 0.06,-0.13 -0.03,-0.26 -0.16,-0.23 z" + id="path1332" /> + <path + class="st1" + d="m 626.12,302.38 c 0.06,-0.04 0.13,-0.08 0.18,-0.13 0.04,-0.04 0.09,-0.08 0.14,-0.12 0.02,-0.02 0.05,-0.04 0.07,-0.06 0.03,-0.03 0.05,-0.06 0.07,-0.09 0.03,-0.05 0.02,-0.11 -0.01,-0.15 -0.04,-0.05 -0.09,-0.06 -0.14,-0.05 -0.04,0.01 -0.07,0.01 -0.1,0.03 -0.03,0.01 -0.05,0.03 -0.08,0.04 -0.05,0.03 -0.1,0.05 -0.15,0.08 -0.03,0.01 -0.06,0.02 -0.08,0.03 -0.03,0.02 -0.06,0.04 -0.08,0.06 -0.06,0.04 -0.11,0.07 -0.17,0.11 -0.04,0.03 -0.08,0.07 -0.09,0.12 -0.01,0.05 -0.01,0.11 0.02,0.16 0.06,0.09 0.18,0.13 0.28,0.07 0.04,-0.03 0.09,-0.06 0.14,-0.1 z" + id="path1334" /> + <path + class="st1" + d="m 627.46,302.96 c -0.09,0 -0.16,0.04 -0.23,0.08 -0.06,0.04 -0.13,0.07 -0.19,0.11 -0.12,0.08 -0.24,0.17 -0.36,0.26 -0.24,0.18 -0.47,0.36 -0.71,0.54 -0.08,0.06 -0.12,0.16 -0.07,0.26 0.05,0.08 0.17,0.12 0.26,0.07 0.25,-0.17 0.5,-0.33 0.75,-0.5 0.13,-0.09 0.26,-0.18 0.38,-0.28 0.06,-0.05 0.11,-0.09 0.17,-0.14 0.07,-0.06 0.12,-0.11 0.16,-0.2 0.02,-0.1 -0.07,-0.2 -0.16,-0.2 z" + id="path1336" /> + <path + class="st1" + d="m 631.6,299.72 c -0.4,0.32 -0.81,0.64 -1.22,0.96 -0.41,0.32 -0.82,0.63 -1.23,0.94 -0.41,0.31 -0.79,0.67 -1.18,1 -0.13,0.11 0.04,0.34 0.18,0.24 0.4,-0.3 0.82,-0.58 1.2,-0.9 0.4,-0.33 0.78,-0.67 1.18,-1 0.39,-0.32 0.77,-0.64 1.16,-0.95 0.42,-0.33 0.84,-0.65 1.2,-1.04 0.07,-0.07 -0.02,-0.2 -0.11,-0.14 -0.42,0.26 -0.79,0.58 -1.18,0.89 z" + id="path1338" /> + <path + class="st1" + d="m 654.68,256.92 c 0.05,-0.05 0.07,-0.11 0.08,-0.18 0.01,-0.06 0.03,-0.12 0.04,-0.19 0.02,-0.12 0.03,-0.24 0.05,-0.36 0.04,-0.25 0.06,-0.5 0.09,-0.76 0.02,-0.17 -0.27,-0.21 -0.3,-0.04 -0.04,0.24 -0.08,0.49 -0.12,0.74 -0.02,0.12 -0.03,0.24 -0.05,0.36 -0.01,0.07 -0.01,0.14 -0.02,0.21 -0.01,0.07 -0.01,0.13 0.03,0.2 0.04,0.06 0.14,0.08 0.2,0.02 z" + id="path1340" /> + <path + class="st1" + d="m 654.29,259.02 c 0,0.15 -0.08,0.33 -0.01,0.46 0.04,0.08 0.16,0.08 0.2,0 0.07,-0.13 0,-0.3 -0.01,-0.45 0,-0.16 0.03,-0.32 0.05,-0.48 0.03,-0.31 0.03,-0.62 0.03,-0.93 0,-0.22 -0.35,-0.22 -0.35,0 0,0.31 0,0.62 0.03,0.93 0.03,0.16 0.06,0.32 0.06,0.47 z" + id="path1342" /> + <path + class="st1" + d="m 654.09,261.91 c 0.03,-0.03 0.06,-0.07 0.09,-0.11 0.02,-0.03 0.04,-0.06 0.06,-0.09 0.04,-0.06 0.08,-0.13 0.13,-0.19 0.03,-0.04 0.03,-0.09 0.02,-0.14 -0.01,-0.05 -0.06,-0.1 -0.11,-0.12 -0.05,-0.02 -0.09,-0.02 -0.14,0 -0.05,0.02 -0.09,0.06 -0.11,0.12 -0.03,0.07 -0.05,0.14 -0.07,0.21 -0.01,0.03 -0.02,0.07 -0.04,0.1 -0.01,0.04 -0.02,0.07 -0.03,0.11 -0.01,0.05 0.01,0.1 0.05,0.13 0.05,0.02 0.11,0.02 0.15,-0.02 z" + id="path1344" /> + <path + class="st1" + d="m 656.75,252.64 c -0.01,-0.21 -0.32,-0.21 -0.32,0 -0.01,0.21 -0.02,0.42 -0.03,0.63 0,0.1 -0.01,0.2 -0.01,0.31 0,0.05 0,0.11 0,0.16 0,0.03 0,0.07 0.01,0.1 0.01,0.04 0.04,0.08 0.07,0.11 0.05,0.06 0.18,0.06 0.23,0 0.03,-0.03 0.06,-0.07 0.07,-0.11 0.01,-0.03 0.01,-0.07 0.01,-0.1 0,-0.05 0,-0.11 0,-0.16 0,-0.1 0,-0.2 -0.01,-0.31 -0.01,-0.21 -0.02,-0.42 -0.02,-0.63 z" + id="path1346" /> + <path + class="st1" + d="m 656.62,255 c -0.13,-0.03 -0.25,0.04 -0.29,0.16 -0.08,0.25 -0.15,0.5 -0.23,0.75 -0.02,0.07 -0.05,0.13 -0.05,0.2 0,0.02 -0.01,0.04 -0.01,0.06 0,-0.02 0,-0.02 -0.01,0.01 -0.01,0.03 -0.01,0.06 -0.02,0.09 -0.01,0.06 -0.03,0.13 -0.04,0.19 -0.02,0.11 -0.01,0.19 0.06,0.28 0.04,0.05 0.12,0.07 0.18,0.05 0.1,-0.04 0.15,-0.1 0.19,-0.2 0.02,-0.06 0.04,-0.12 0.06,-0.18 0.05,-0.13 0.09,-0.23 0.13,-0.38 0.07,-0.25 0.13,-0.5 0.2,-0.76 0.02,-0.1 -0.05,-0.24 -0.17,-0.27 z" + id="path1348" /> + <path + class="st1" + d="m 655.42,259.78 c -0.07,0.27 -0.14,0.54 -0.2,0.81 -0.03,0.13 -0.08,0.28 -0.09,0.41 -0.01,0.14 -0.02,0.28 -0.02,0.41 0,0.09 0.12,0.13 0.17,0.05 0.06,-0.12 0.11,-0.24 0.17,-0.36 0.06,-0.13 0.08,-0.28 0.12,-0.42 0.07,-0.27 0.14,-0.54 0.2,-0.81 0.04,-0.22 -0.3,-0.31 -0.35,-0.09 z" + id="path1350" /> + <path + class="st1" + d="m 654.81,263.17 c -0.1,0.3 -0.21,0.61 -0.3,0.92 -0.09,0.3 -0.18,0.62 -0.22,0.93 -0.01,0.1 0.14,0.13 0.19,0.05 0.08,-0.14 0.13,-0.3 0.21,-0.45 0.07,-0.14 0.12,-0.29 0.17,-0.44 0.11,-0.3 0.21,-0.61 0.31,-0.91 0.07,-0.23 -0.29,-0.33 -0.36,-0.1 z" + id="path1352" /> + <path + class="st1" + d="m 654.28,265.74 c -0.11,0.24 -0.21,0.48 -0.32,0.72 -0.05,0.12 -0.11,0.23 -0.16,0.35 -0.05,0.12 -0.13,0.26 -0.13,0.39 0,0.11 0.14,0.16 0.21,0.09 0.09,-0.09 0.13,-0.23 0.18,-0.34 0.05,-0.13 0.1,-0.25 0.16,-0.38 0.1,-0.24 0.2,-0.48 0.3,-0.73 0.05,-0.13 -0.18,-0.23 -0.24,-0.1 z" + id="path1354" /> + <path + class="st1" + d="m 653.45,268.06 c -0.07,-0.03 -0.17,-0.01 -0.2,0.07 -0.08,0.18 -0.16,0.35 -0.23,0.53 -0.03,0.09 -0.07,0.17 -0.1,0.26 -0.02,0.04 -0.03,0.09 -0.05,0.13 -0.02,0.05 -0.03,0.1 -0.02,0.16 0,0.12 0.15,0.19 0.24,0.1 0.02,-0.02 0.05,-0.04 0.07,-0.07 0.01,-0.02 0.02,-0.05 0.03,-0.08 0.02,-0.04 0.03,-0.09 0.05,-0.13 l 0.11,-0.26 c 0.07,-0.17 0.13,-0.35 0.19,-0.52 0.03,-0.08 -0.02,-0.17 -0.09,-0.19 z" + id="path1356" /> + <path + class="st1" + d="m 652.39,270.66 c -0.17,0 -0.17,0.27 0,0.27 0.18,0 0.18,-0.27 0,-0.27 z" + id="path1358" /> + <path + class="st1" + d="m 650.46,275.9 c -0.14,0.27 -0.28,0.54 -0.41,0.81 -0.14,0.27 -0.29,0.54 -0.39,0.83 -0.05,0.17 0.18,0.24 0.27,0.11 0.17,-0.24 0.29,-0.52 0.42,-0.79 0.13,-0.27 0.26,-0.53 0.39,-0.8 0.08,-0.18 -0.18,-0.34 -0.28,-0.16 z" + id="path1360" /> + <path + class="st1" + d="m 648.67,280.49 c -0.14,0.2 -0.28,0.4 -0.41,0.61 -0.06,0.1 -0.12,0.2 -0.18,0.31 -0.06,0.11 -0.13,0.22 -0.18,0.34 -0.04,0.1 0.1,0.16 0.16,0.1 0.09,-0.09 0.16,-0.19 0.24,-0.3 0.07,-0.09 0.15,-0.19 0.22,-0.28 0.14,-0.2 0.27,-0.41 0.4,-0.61 0.05,-0.07 0.01,-0.17 -0.06,-0.21 -0.05,-0.06 -0.14,-0.03 -0.19,0.04 z" + id="path1362" /> + <path + class="st1" + d="m 647.28,282.89 c -0.21,0.33 -0.42,0.67 -0.64,1 -0.11,0.17 -0.22,0.33 -0.32,0.5 -0.05,0.08 -0.08,0.16 -0.13,0.25 -0.05,0.1 -0.1,0.19 -0.12,0.29 -0.02,0.11 0.1,0.25 0.21,0.16 0.09,-0.07 0.14,-0.15 0.21,-0.24 0.05,-0.08 0.11,-0.15 0.16,-0.23 0.11,-0.17 0.2,-0.35 0.3,-0.53 0.19,-0.35 0.39,-0.7 0.59,-1.05 0.1,-0.17 -0.16,-0.32 -0.26,-0.15 z" + id="path1364" /> + <path + class="st1" + d="m 645.31,286.26 c -0.24,0.31 -0.49,0.62 -0.73,0.93 -0.12,0.15 -0.25,0.3 -0.38,0.44 -0.06,0.07 -0.13,0.14 -0.19,0.21 -0.07,0.09 -0.16,0.17 -0.16,0.29 0,0.1 0.09,0.16 0.19,0.14 0.11,-0.03 0.16,-0.12 0.23,-0.21 0.05,-0.08 0.11,-0.15 0.16,-0.23 0.11,-0.17 0.22,-0.34 0.34,-0.5 0.24,-0.32 0.48,-0.63 0.72,-0.95 0.05,-0.09 -0.11,-0.21 -0.18,-0.12 z" + id="path1366" /> + <path + class="st1" + d="m 640.82,291.76 c -0.24,0 -0.24,0.37 0,0.37 0.24,-0.01 0.24,-0.37 0,-0.37 z" + id="path1368" /> + <path + class="st1" + d="m 547.93,204.9 c 0.2,-0.17 0.4,-0.33 0.59,-0.5 0.1,-0.08 0.19,-0.17 0.28,-0.26 0.04,-0.05 0.09,-0.09 0.13,-0.14 0.02,-0.02 0.04,-0.05 0.06,-0.07 0.03,-0.04 0.05,-0.09 0.06,-0.14 0.03,-0.12 -0.08,-0.23 -0.19,-0.19 -0.04,0.01 -0.08,0.02 -0.12,0.05 -0.03,0.02 -0.05,0.05 -0.08,0.07 -0.05,0.04 -0.09,0.09 -0.14,0.13 -0.1,0.09 -0.18,0.18 -0.27,0.28 -0.17,0.2 -0.33,0.4 -0.5,0.59 -0.11,0.12 0.06,0.29 0.18,0.18 z" + id="path1370" /> + <path + class="st1" + d="m 550.6,202.78 c 0.83,-0.65 1.68,-1.28 2.5,-1.96 0.4,-0.32 0.79,-0.65 1.19,-0.97 0.39,-0.32 0.85,-0.63 1.15,-1.05 0.07,-0.1 -0.06,-0.2 -0.15,-0.15 -0.45,0.21 -0.84,0.6 -1.22,0.91 l -1.22,1.01 c -0.81,0.67 -1.6,1.37 -2.39,2.06 -0.12,0.09 0.03,0.23 0.14,0.15 z" + id="path1372" /> + <path + class="st1" + d="m 556.17,198.29 c 0.42,-0.31 0.83,-0.62 1.26,-0.91 0.21,-0.14 0.4,-0.3 0.61,-0.45 0.11,-0.08 0.21,-0.16 0.32,-0.25 0.1,-0.08 0.22,-0.16 0.28,-0.27 0.06,-0.12 -0.04,-0.24 -0.17,-0.22 -0.12,0.02 -0.22,0.12 -0.32,0.19 -0.11,0.08 -0.21,0.16 -0.32,0.24 -0.2,0.16 -0.41,0.32 -0.61,0.49 -0.39,0.34 -0.79,0.67 -1.2,1 -0.1,0.07 0.04,0.26 0.15,0.18 z" + id="path1374" /> + <path + class="st1" + d="m 560.17,195.65 c 0.41,-0.23 0.83,-0.46 1.24,-0.68 0.21,-0.11 0.41,-0.23 0.62,-0.34 0.1,-0.06 0.19,-0.12 0.28,-0.18 0.1,-0.07 0.21,-0.12 0.27,-0.22 0.05,-0.09 -0.02,-0.2 -0.12,-0.2 -0.12,0 -0.23,0.07 -0.34,0.12 -0.1,0.05 -0.2,0.09 -0.3,0.15 -0.21,0.11 -0.41,0.23 -0.61,0.35 -0.41,0.24 -0.82,0.47 -1.23,0.71 -0.17,0.1 0,0.4 0.19,0.29 z" + id="path1376" /> + <path + class="st1" + d="m 563.11,193.81 0.95,-0.54 c 0.16,-0.09 0.31,-0.18 0.46,-0.27 0.07,-0.04 0.15,-0.09 0.22,-0.13 0.09,-0.05 0.17,-0.09 0.24,-0.17 0.06,-0.08 0.04,-0.25 -0.09,-0.23 -0.18,0.02 -0.34,0.14 -0.5,0.23 -0.16,0.09 -0.32,0.18 -0.48,0.27 -0.32,0.18 -0.64,0.37 -0.96,0.55 -0.21,0.1 -0.03,0.4 0.16,0.29 z" + id="path1378" /> + <path + class="st1" + d="m 579.03,188.25 c 0.54,-0.14 1.08,-0.27 1.63,-0.41 0.52,-0.13 1.1,-0.21 1.58,-0.46 0.11,-0.05 0.05,-0.22 -0.06,-0.22 -0.54,0.01 -1.09,0.21 -1.61,0.34 -0.54,0.14 -1.08,0.27 -1.63,0.41 -0.23,0.05 -0.13,0.39 0.09,0.34 z" + id="path1380" /> + <path + class="st1" + d="m 584.57,187.05 c 1.44,-0.03 2.88,-0.06 4.32,-0.07 0.7,-0.01 1.4,-0.03 2.1,-0.04 0.36,-0.01 0.72,-0.01 1.08,-0.02 0.34,-0.01 0.72,0 1.06,-0.08 0.13,-0.03 0.14,-0.24 0,-0.27 -0.32,-0.07 -0.67,-0.04 -1,-0.04 -0.36,0 -0.72,0.02 -1.08,0.03 -0.72,0.02 -1.44,0.03 -2.16,0.06 -1.44,0.06 -2.88,0.09 -4.32,0.14 -0.2,0 -0.2,0.3 0,0.29 z" + id="path1382" /> + <path + class="st1" + d="m 595.96,186.66 c 0.14,0.04 0.27,0.09 0.41,0.13 l 0.2,0.06 c 0.03,0.01 0.07,0.02 0.11,0.03 0.04,0.01 0.09,0.01 0.14,0.01 0.06,0 0.13,-0.04 0.14,-0.11 0.02,-0.07 -0.01,-0.12 -0.07,-0.16 -0.04,-0.03 -0.07,-0.05 -0.12,-0.07 -0.03,-0.01 -0.07,-0.02 -0.11,-0.04 -0.06,-0.02 -0.13,-0.05 -0.19,-0.07 -0.13,-0.05 -0.27,-0.1 -0.4,-0.14 -0.09,-0.03 -0.21,0.04 -0.23,0.13 -0.03,0.1 0.02,0.2 0.12,0.23 z" + id="path1384" /> + <path + class="st1" + d="m 598.4,187.21 0.83,0.01 c 0.14,0 0.27,-0.01 0.41,-0.02 0.14,-0.01 0.3,0 0.42,-0.08 0.08,-0.05 0.08,-0.17 0,-0.22 -0.12,-0.07 -0.27,-0.07 -0.41,-0.08 -0.14,-0.01 -0.28,-0.02 -0.42,-0.02 l -0.83,0.01 c -0.26,0 -0.26,0.4 0,0.4 z" + id="path1386" /> + <path + class="st1" + d="m 600.76,187.1 c 0.16,0.03 0.31,0.06 0.47,0.09 0.16,0.03 0.31,0.08 0.46,0.11 0.31,0.07 0.65,0.1 0.97,0.07 0.06,-0.01 0.11,-0.04 0.13,-0.1 0.01,-0.05 -0.01,-0.13 -0.06,-0.15 -0.3,-0.13 -0.64,-0.2 -0.96,-0.22 -0.16,-0.01 -0.32,-0.01 -0.47,-0.02 -0.16,-0.01 -0.33,-0.03 -0.49,-0.05 -0.16,0 -0.19,0.25 -0.05,0.27 z" + id="path1388" /> + <path + class="st1" + d="m 603.99,187.7 c 0.19,-0.02 0.38,-0.03 0.56,-0.06 0.1,-0.02 0.1,-0.17 0,-0.19 -0.18,-0.04 -0.37,-0.05 -0.56,-0.06 -0.04,0 -0.09,0.02 -0.11,0.05 -0.03,0.03 -0.05,0.07 -0.05,0.11 0,0.07 0.07,0.16 0.16,0.15 z" + id="path1390" /> + <path + class="st1" + d="m 507.92,291.1 c 0.52,1.69 1.27,3.29 2.3,4.74 0.5,0.71 1.06,1.37 1.67,1.99 0.31,0.32 0.63,0.62 0.97,0.91 0.33,0.28 0.67,0.59 1.04,0.81 0.15,0.09 0.33,-0.13 0.19,-0.25 -0.32,-0.3 -0.7,-0.54 -1.03,-0.83 -0.31,-0.27 -0.61,-0.55 -0.9,-0.83 -0.61,-0.62 -1.18,-1.28 -1.69,-1.99 -1.01,-1.39 -1.83,-2.95 -2.35,-4.58 -0.04,-0.15 -0.23,-0.1 -0.2,0.03 z" + id="path1392" /> + <path + class="st1" + d="m 525.14,295.54 c -1.11,-0.99 -2.14,-2.08 -3.06,-3.24 -1.03,-1.3 -2.01,-2.72 -2.77,-4.2 -0.04,-0.08 -0.15,-0.01 -0.11,0.07 0.77,1.52 1.6,2.97 2.63,4.33 1.01,1.33 2.15,2.55 3.39,3.69 0.1,0.09 0.26,0.07 0.33,-0.05 0.14,-0.23 0.05,-0.53 -0.2,-0.64 -0.08,-0.04 -0.16,-0.01 -0.21,0.04 z" + id="path1394" /> + <path + class="st1" + d="m 481.63,299.25 c -0.05,-0.09 -0.1,-0.18 -0.16,-0.27 -0.11,-0.18 -0.21,-0.37 -0.3,-0.56 -0.05,-0.1 -0.22,-0.03 -0.18,0.08 0.08,0.2 0.16,0.39 0.23,0.59 0.03,0.1 0.07,0.19 0.1,0.29 0.02,0.06 0.05,0.11 0.08,0.17 0.03,0.06 0.06,0.11 0.12,0.14 0.08,0.03 0.17,0.01 0.2,-0.08 0.02,-0.07 0,-0.12 -0.02,-0.19 -0.02,-0.06 -0.04,-0.12 -0.07,-0.17 z" + id="path1396" /> + <path + class="st1" + d="m 482.18,300.51 c -0.03,-0.06 -0.12,-0.08 -0.18,-0.05 -0.06,0.04 -0.08,0.12 -0.05,0.18 0.07,0.13 0.14,0.27 0.2,0.4 0.07,0.13 0.13,0.28 0.21,0.4 0.04,0.06 0.11,0.08 0.17,0.06 0.06,-0.02 0.11,-0.1 0.08,-0.16 -0.06,-0.15 -0.14,-0.29 -0.22,-0.43 -0.06,-0.13 -0.13,-0.26 -0.21,-0.4 z" + id="path1398" /> + <path + class="st1" + d="m 482.75,299.97 c -0.1,-0.22 -0.19,-0.44 -0.29,-0.66 -0.02,-0.06 -0.11,-0.07 -0.15,-0.04 -0.06,0.03 -0.06,0.1 -0.04,0.15 0.09,0.22 0.19,0.43 0.28,0.65 0.09,0.21 0.17,0.44 0.31,0.63 0.05,0.07 0.16,0.03 0.14,-0.06 -0.02,-0.12 -0.07,-0.23 -0.11,-0.34 -0.05,-0.11 -0.1,-0.22 -0.14,-0.33 z" + id="path1400" /> + <path + class="st1" + d="m 483.48,301.42 c -0.03,-0.03 -0.06,-0.06 -0.08,-0.09 -0.05,-0.06 -0.11,-0.12 -0.16,-0.18 -0.04,-0.05 -0.12,-0.04 -0.17,0 -0.04,0.05 -0.04,0.12 0,0.17 0.05,0.06 0.11,0.12 0.16,0.18 0.03,0.03 0.05,0.06 0.08,0.09 0.02,0.02 0.04,0.03 0.06,0.04 0.04,0.03 0.1,0.03 0.14,-0.01 0.02,-0.02 0.03,-0.05 0.03,-0.07 0,-0.02 -0.01,-0.05 -0.02,-0.07 -0.01,-0.02 -0.02,-0.04 -0.04,-0.06 z" + id="path1402" /> + <path + class="st1" + d="m 484.04,297.84 c -0.06,-0.14 -0.3,-0.04 -0.24,0.1 0.1,0.24 0.19,0.47 0.29,0.71 0.1,0.24 0.18,0.49 0.32,0.71 0.07,0.12 0.25,0.04 0.22,-0.09 -0.06,-0.25 -0.18,-0.48 -0.28,-0.72 -0.11,-0.24 -0.21,-0.47 -0.31,-0.71 z" + id="path1404" /> + <path + class="st1" + d="m 485.84,301.62 c -0.12,-0.21 -0.24,-0.43 -0.37,-0.64 -0.06,-0.1 -0.21,-0.01 -0.16,0.09 0.11,0.22 0.22,0.44 0.33,0.66 0.06,0.11 0.11,0.23 0.17,0.34 0.04,0.08 0.12,0.26 0.24,0.19 0.12,-0.07 0.01,-0.23 -0.04,-0.31 -0.04,-0.11 -0.11,-0.22 -0.17,-0.33 z" + id="path1406" /> + <path + class="st1" + d="m 486.53,298.32 c -0.01,-0.07 -0.02,-0.13 -0.05,-0.2 -0.04,-0.12 -0.08,-0.24 -0.12,-0.36 -0.09,-0.25 -0.19,-0.5 -0.28,-0.74 -0.06,-0.15 -0.3,-0.09 -0.25,0.07 l 0.23,0.76 c 0.04,0.12 0.08,0.24 0.12,0.36 0.02,0.07 0.06,0.13 0.09,0.2 0.03,0.06 0.04,0.13 0.11,0.16 0.05,0.03 0.12,0.01 0.15,-0.04 0.04,-0.08 0.02,-0.13 0,-0.21 z" + id="path1408" /> + <path + class="st1" + d="m 487.06,299.58 c -0.12,-0.2 -0.23,-0.4 -0.35,-0.59 -0.07,-0.12 -0.24,-0.01 -0.18,0.11 0.1,0.21 0.2,0.42 0.3,0.62 0.05,0.1 0.1,0.2 0.15,0.3 0.05,0.1 0.11,0.23 0.21,0.29 0.07,0.04 0.16,-0.01 0.16,-0.09 0.01,-0.12 -0.08,-0.24 -0.13,-0.34 -0.06,-0.1 -0.11,-0.2 -0.16,-0.3 z" + id="path1410" /> + <path + class="st1" + d="m 488.12,302 c 0.05,0.04 0.09,0.08 0.14,0.12 0.01,0.01 0.03,0 0.04,-0.01 0.01,-0.01 0.01,-0.03 0,-0.04 -0.01,-0.01 -0.02,-0.02 -0.03,-0.03 -0.01,-0.01 -0.02,-0.02 -0.03,-0.03 -0.02,-0.02 -0.05,-0.04 -0.07,-0.06 -0.05,-0.04 -0.09,-0.08 -0.14,-0.12 -0.02,-0.01 -0.04,-0.01 -0.05,0 -0.01,0.01 -0.02,0.04 0,0.05 0.05,0.04 0.1,0.08 0.14,0.12 z" + id="path1412" /> + <path + class="st1" + d="m 488.83,298.2 c -0.08,-0.21 -0.15,-0.41 -0.23,-0.62 -0.04,-0.12 -0.23,-0.07 -0.19,0.05 0.07,0.21 0.14,0.43 0.22,0.64 0.04,0.1 0.07,0.21 0.11,0.31 0.04,0.1 0.07,0.22 0.15,0.31 0.05,0.06 0.14,0.01 0.14,-0.06 0.01,-0.1 -0.05,-0.22 -0.08,-0.32 -0.04,-0.11 -0.08,-0.21 -0.12,-0.31 z" + id="path1414" /> + <path + class="st1" + d="m 489.97,300.38 c -0.05,-0.07 -0.11,-0.13 -0.17,-0.2 -0.11,-0.13 -0.22,-0.27 -0.34,-0.4 -0.03,-0.04 -0.09,-0.03 -0.12,0 -0.04,0.04 -0.03,0.08 0,0.12 0.11,0.14 0.21,0.27 0.32,0.41 0.05,0.07 0.1,0.13 0.16,0.2 0.03,0.03 0.05,0.07 0.08,0.1 0.03,0.04 0.06,0.08 0.12,0.08 0.03,0 0.07,-0.03 0.08,-0.06 0.01,-0.06 -0.02,-0.1 -0.06,-0.14 -0.01,-0.05 -0.04,-0.08 -0.07,-0.11 z" + id="path1416" /> + <path + class="st1" + d="m 490.39,296.16 c -0.05,-0.14 -0.28,-0.09 -0.23,0.06 0.08,0.26 0.16,0.52 0.25,0.78 0.08,0.26 0.14,0.53 0.28,0.77 0.08,0.13 0.25,0.04 0.23,-0.1 -0.04,-0.26 -0.16,-0.51 -0.25,-0.76 -0.1,-0.25 -0.19,-0.5 -0.28,-0.75 z" + id="path1418" /> + <path + class="st1" + d="m 491.83,299.5 c -0.11,-0.13 -0.22,-0.26 -0.33,-0.39 -0.04,-0.04 -0.11,-0.04 -0.16,-0.01 -0.04,0.03 -0.07,0.11 -0.03,0.15 0.11,0.14 0.21,0.28 0.32,0.41 0.06,0.07 0.11,0.14 0.17,0.22 0.03,0.03 0.05,0.06 0.08,0.1 0.04,0.05 0.08,0.08 0.15,0.09 0.06,0.01 0.11,-0.06 0.11,-0.11 0.01,-0.1 -0.1,-0.19 -0.15,-0.26 -0.06,-0.07 -0.11,-0.14 -0.16,-0.2 z" + id="path1420" /> + <path + class="st1" + d="m 493.63,298.14 c -0.12,-0.21 -0.22,-0.42 -0.32,-0.63 -0.21,-0.45 -0.39,-0.89 -0.5,-1.38 -0.01,-0.06 -0.11,-0.04 -0.09,0.03 0.1,0.48 0.22,0.97 0.41,1.42 0.09,0.22 0.2,0.44 0.31,0.65 0.06,0.11 0.12,0.21 0.19,0.31 0.06,0.09 0.11,0.2 0.21,0.25 0.04,0.02 0.1,0 0.1,-0.06 0,-0.1 -0.07,-0.18 -0.12,-0.27 -0.08,-0.1 -0.13,-0.21 -0.19,-0.32 z" + id="path1422" /> + <path + class="st1" + d="m 495.69,296.34 c -0.23,-0.51 -0.37,-1.05 -0.46,-1.59 -0.01,-0.08 -0.13,-0.04 -0.12,0.03 0.08,0.55 0.23,1.1 0.43,1.62 0.09,0.25 0.2,0.49 0.32,0.72 0.06,0.12 0.13,0.24 0.2,0.36 0.07,0.11 0.14,0.25 0.24,0.33 0.06,0.05 0.19,0.01 0.15,-0.09 -0.04,-0.12 -0.13,-0.22 -0.2,-0.32 -0.08,-0.12 -0.15,-0.23 -0.22,-0.35 -0.11,-0.23 -0.23,-0.47 -0.34,-0.71 z" + id="path1424" /> + <path + class="st1" + d="m 504.83,292.97 c 0.08,0.4 0.23,0.78 0.44,1.13 0.1,0.17 0.22,0.33 0.35,0.48 0.14,0.16 0.3,0.29 0.47,0.41 0.1,0.07 0.21,-0.08 0.12,-0.16 -0.56,-0.53 -1.01,-1.15 -1.21,-1.9 -0.02,-0.12 -0.2,-0.07 -0.17,0.04 z" + id="path1426" /> + <path + class="st1" + d="m 507.5,292.36 c 0.07,0.12 0.13,0.24 0.21,0.36 0.02,0.04 0.08,0 0.06,-0.03 -0.06,-0.12 -0.13,-0.24 -0.2,-0.36 -0.03,-0.05 -0.09,-0.01 -0.07,0.03 z" + id="path1428" /> + <path + class="st1" + d="m 513.66,287.39 c 0.02,0.03 0.04,0.06 0.06,0.08 0.02,0.03 0.05,0.04 0.08,0.02 0.03,-0.02 0.03,-0.05 0.02,-0.08 -0.01,-0.03 -0.03,-0.06 -0.04,-0.1 -0.01,-0.03 -0.03,-0.06 -0.05,-0.09 -0.03,-0.06 -0.07,-0.12 -0.1,-0.18 -0.02,-0.03 -0.06,-0.04 -0.1,-0.02 -0.03,0.02 -0.04,0.06 -0.02,0.1 0.03,0.06 0.07,0.12 0.1,0.18 0.01,0.03 0.03,0.06 0.05,0.09 z" + id="path1430" /> + <path + class="st1" + d="m 518.04,287.9 -0.28,-0.58 c -0.18,-0.38 -0.37,-0.76 -0.55,-1.13 -0.07,-0.14 -0.26,-0.02 -0.2,0.12 0.17,0.37 0.35,0.75 0.52,1.12 0.09,0.19 0.17,0.37 0.26,0.56 0.04,0.09 0.08,0.17 0.12,0.26 0.05,0.09 0.08,0.2 0.16,0.27 0.06,0.06 0.19,0.02 0.18,-0.08 0,-0.1 -0.05,-0.19 -0.1,-0.28 -0.03,-0.09 -0.07,-0.18 -0.11,-0.26 z" + id="path1432" /> + <path + class="st1" + d="m 518.21,286.8 c 0.09,0.15 0.19,0.3 0.28,0.45 0.09,0.15 0.2,0.3 0.31,0.43 0.05,0.06 0.16,0 0.13,-0.08 -0.13,-0.33 -0.34,-0.62 -0.53,-0.92 -0.07,-0.13 -0.27,-0.01 -0.19,0.12 z" + id="path1434" /> + <path + class="st1" + d="m 522.56,285.7 c 0.04,0.09 0.08,0.19 0.14,0.27 0.04,0.05 0.12,0.02 0.1,-0.04 -0.02,-0.1 -0.07,-0.19 -0.11,-0.28 -0.04,-0.1 -0.08,-0.19 -0.12,-0.28 -0.09,-0.19 -0.17,-0.37 -0.26,-0.56 -0.04,-0.09 -0.17,-0.01 -0.13,0.08 0.08,0.18 0.17,0.37 0.25,0.55 0.04,0.09 0.08,0.18 0.13,0.26 z" + id="path1436" /> + <path + class="st1" + d="m 525.04,284.61 c 0.04,0.07 0.08,0.14 0.13,0.2 0.04,0.05 0.12,0 0.11,-0.06 -0.02,-0.08 -0.05,-0.14 -0.09,-0.22 -0.03,-0.07 -0.07,-0.15 -0.1,-0.22 -0.07,-0.14 -0.15,-0.28 -0.22,-0.42 -0.06,-0.11 -0.22,-0.01 -0.17,0.1 0.07,0.14 0.15,0.28 0.22,0.42 0.04,0.07 0.08,0.14 0.12,0.2 z" + id="path1438" /> + <path + class="st1" + d="m 528.24,283.38 c 0.06,0.15 0.12,0.31 0.22,0.44 0.08,0.11 0.25,0.05 0.22,-0.09 -0.03,-0.16 -0.11,-0.31 -0.18,-0.45 -0.07,-0.15 -0.14,-0.29 -0.22,-0.44 -0.15,-0.29 -0.29,-0.58 -0.42,-0.88 -0.05,-0.11 -0.21,-0.01 -0.16,0.1 0.13,0.3 0.25,0.59 0.37,0.89 0.06,0.14 0.11,0.28 0.17,0.43 z" + id="path1440" /> + <path + class="st1" + d="m 529.07,285.31 c 0.1,0.15 0.2,0.3 0.3,0.46 0.05,0.08 0.09,0.15 0.14,0.23 0.06,0.08 0.12,0.15 0.19,0.22 0.1,0.1 0.24,-0.03 0.19,-0.14 -0.04,-0.08 -0.09,-0.16 -0.14,-0.24 -0.06,-0.08 -0.12,-0.15 -0.18,-0.22 -0.11,-0.14 -0.23,-0.28 -0.34,-0.42 -0.08,-0.1 -0.22,0.02 -0.16,0.11 z" + id="path1442" /> + <path + class="st1" + d="m 530.34,280.57 c 0.01,0.03 0.02,0.06 0.04,0.08 0.01,0.02 0.03,0.04 0.04,0.06 0.04,0.08 0.08,0.17 0.13,0.24 0.04,0.06 0.12,0.02 0.11,-0.05 -0.01,-0.09 -0.04,-0.18 -0.06,-0.27 -0.01,-0.04 -0.01,-0.09 -0.02,-0.13 -0.02,-0.04 -0.03,-0.09 -0.05,-0.13 -0.06,-0.17 -0.13,-0.34 -0.19,-0.52 -0.02,-0.06 -0.08,-0.11 -0.15,-0.09 -0.06,0.02 -0.11,0.09 -0.09,0.15 0.06,0.18 0.13,0.35 0.19,0.53 0.02,0.05 0.04,0.09 0.05,0.13 z" + id="path1444" /> + <path + class="st1" + d="m 564.53,268.91 c -0.17,-0.29 -0.32,-0.59 -0.48,-0.88 -0.05,-0.09 -0.18,-0.01 -0.13,0.08 0.15,0.3 0.29,0.59 0.43,0.89 0.07,0.15 0.13,0.3 0.2,0.44 0.07,0.14 0.13,0.31 0.26,0.41 0.05,0.04 0.15,0.02 0.14,-0.06 -0.01,-0.16 -0.1,-0.32 -0.18,-0.46 -0.08,-0.14 -0.16,-0.28 -0.24,-0.42 z" + id="path1446" /> + <path + class="st1" + d="m 565.62,271.37 c 0.12,0.18 0.24,0.37 0.36,0.55 0.06,0.09 0.12,0.18 0.17,0.27 0.03,0.05 0.06,0.09 0.1,0.14 0.03,0.04 0.07,0.09 0.12,0.11 0.05,0.02 0.11,0 0.11,-0.06 0,-0.05 -0.03,-0.1 -0.05,-0.15 -0.02,-0.05 -0.05,-0.1 -0.08,-0.14 -0.06,-0.09 -0.12,-0.18 -0.18,-0.27 -0.12,-0.18 -0.25,-0.36 -0.37,-0.54 -0.08,-0.12 -0.25,-0.02 -0.18,0.09 z" + id="path1448" /> + <path + class="st1" + d="m 560.09,267.77 c -0.09,-0.25 -0.18,-0.5 -0.27,-0.75 -0.03,-0.08 -0.1,-0.13 -0.19,-0.11 -0.08,0.02 -0.13,0.11 -0.11,0.19 0.08,0.26 0.17,0.51 0.25,0.77 0.04,0.13 0.08,0.25 0.12,0.38 0.04,0.13 0.08,0.32 0.23,0.37 0.06,0.02 0.12,-0.01 0.16,-0.06 0.08,-0.12 -0.02,-0.3 -0.06,-0.42 z" + id="path1450" /> + <path + class="st1" + d="m 560.46,269.53 c -0.14,0.04 -0.08,0.25 0.06,0.21 0.14,-0.04 0.08,-0.25 -0.06,-0.21 z" + id="path1452" /> + <path + class="st1" + d="m 558.09,268.76 c -0.05,-0.13 -0.1,-0.25 -0.15,-0.38 -0.11,-0.25 -0.21,-0.5 -0.32,-0.76 -0.03,-0.07 -0.09,-0.12 -0.18,-0.1 -0.07,0.02 -0.13,0.1 -0.1,0.18 l 0.31,0.78 c 0.05,0.13 0.1,0.26 0.16,0.39 0.03,0.06 0.06,0.12 0.09,0.18 0.03,0.07 0.07,0.12 0.12,0.17 0.06,0.06 0.16,0.01 0.16,-0.07 0,-0.08 -0.01,-0.14 -0.03,-0.21 -0.02,-0.06 -0.04,-0.12 -0.06,-0.18 z" + id="path1454" /> + <path + class="st1" + d="m 556,269.45 c -0.03,-0.08 -0.05,-0.15 -0.08,-0.23 -0.06,-0.16 -0.12,-0.31 -0.18,-0.47 -0.02,-0.06 -0.08,-0.11 -0.15,-0.09 -0.06,0.02 -0.11,0.09 -0.09,0.15 0.06,0.16 0.12,0.32 0.18,0.48 0.03,0.08 0.06,0.17 0.1,0.25 0.02,0.04 0.03,0.07 0.05,0.11 0.02,0.04 0.05,0.08 0.08,0.11 0.05,0.08 0.17,0.03 0.15,-0.07 -0.01,-0.04 -0.01,-0.09 -0.02,-0.13 -0.02,-0.03 -0.03,-0.07 -0.04,-0.11 z" + id="path1456" /> + <path + class="st1" + d="m 554.8,270.01 c -0.06,-0.14 -0.11,-0.29 -0.17,-0.43 -0.11,-0.29 -0.23,-0.57 -0.34,-0.86 -0.03,-0.06 -0.08,-0.11 -0.16,-0.09 -0.06,0.02 -0.12,0.09 -0.09,0.16 0.11,0.29 0.23,0.58 0.34,0.87 0.06,0.14 0.11,0.29 0.17,0.43 0.03,0.07 0.06,0.14 0.1,0.21 0.03,0.07 0.06,0.15 0.12,0.2 0.06,0.05 0.14,0.01 0.15,-0.06 0.01,-0.08 -0.03,-0.16 -0.05,-0.23 -0.03,-0.06 -0.05,-0.13 -0.07,-0.2 z" + id="path1458" /> + <path + class="st1" + d="m 555.17,271.34 c 0.08,-0.02 0.04,-0.14 -0.03,-0.12 -0.08,0.02 -0.05,0.14 0.03,0.12 z" + id="path1460" /> + <path + class="st1" + d="m 567.32,266.9 c 0.06,0.12 0.11,0.23 0.19,0.34 0.06,0.08 0.19,0.04 0.17,-0.07 -0.04,-0.13 -0.1,-0.24 -0.15,-0.35 -0.06,-0.12 -0.12,-0.23 -0.18,-0.35 -0.12,-0.23 -0.23,-0.46 -0.35,-0.69 -0.06,-0.11 -0.22,-0.01 -0.17,0.1 l 0.33,0.69 c 0.05,0.11 0.1,0.22 0.16,0.33 z" + id="path1462" /> + <path + class="st1" + d="m 568.88,270.28 c 0.04,0.04 0.1,-0.01 0.09,-0.05 -0.04,-0.28 -0.21,-0.54 -0.34,-0.79 l -0.39,-0.79 c -0.04,-0.09 -0.16,-0.01 -0.13,0.07 0.12,0.27 0.24,0.53 0.36,0.8 0.13,0.26 0.22,0.55 0.41,0.76 z" + id="path1464" /> + <path + class="st1" + d="m 570.1,263.73 c 0.04,0.07 0.08,0.14 0.14,0.19 0.06,0.05 0.14,0 0.13,-0.07 -0.01,-0.07 -0.05,-0.14 -0.07,-0.21 -0.03,-0.08 -0.07,-0.15 -0.11,-0.23 -0.07,-0.14 -0.15,-0.28 -0.22,-0.42 -0.03,-0.06 -0.11,-0.07 -0.16,-0.04 -0.06,0.03 -0.07,0.1 -0.04,0.16 0.07,0.14 0.15,0.28 0.22,0.42 0.04,0.07 0.07,0.14 0.11,0.2 z" + id="path1466" /> + <path + class="st1" + d="m 571.83,263.69 c 0.05,0.1 0.23,0.03 0.19,-0.08 -0.16,-0.45 -0.37,-0.89 -0.56,-1.33 -0.03,-0.06 -0.11,-0.07 -0.17,-0.04 -0.06,0.04 -0.07,0.1 -0.04,0.17 l 0.28,0.65 c 0.09,0.22 0.18,0.43 0.3,0.63 z" + id="path1468" /> + <path + class="st1" + d="m 572.81,265.25 c -0.05,-0.1 -0.1,-0.2 -0.14,-0.29 -0.03,-0.05 -0.11,-0.07 -0.16,-0.04 -0.06,0.04 -0.07,0.1 -0.04,0.16 0.04,0.1 0.09,0.2 0.13,0.3 0.02,0.05 0.04,0.1 0.06,0.15 0.01,0.03 0.02,0.05 0.03,0.08 0.01,0.02 0.03,0.04 0.05,0.06 0.02,0.01 0.05,0.01 0.07,0.02 0.04,0.01 0.07,-0.02 0.09,-0.05 0.03,-0.05 0.03,-0.1 0,-0.15 -0.01,-0.03 -0.02,-0.05 -0.04,-0.07 0,-0.07 -0.02,-0.12 -0.05,-0.17 z" + id="path1470" /> + <path + class="st1" + d="m 573.06,260.35 c 0.02,0.07 0.05,0.14 0.07,0.21 0.03,0.09 0.06,0.15 0.12,0.22 0.09,0.1 0.24,0.01 0.25,-0.1 0.02,-0.14 -0.06,-0.29 -0.1,-0.43 -0.05,-0.14 -0.09,-0.27 -0.14,-0.41 -0.1,-0.27 -0.19,-0.55 -0.29,-0.82 -0.07,-0.19 -0.37,-0.11 -0.31,0.08 0.09,0.28 0.18,0.56 0.27,0.84 0.04,0.14 0.09,0.28 0.13,0.41 z" + id="path1472" /> + <path + class="st1" + d="m 493.24,294.56 c 0.04,0.14 0.07,0.28 0.11,0.43 0.02,0.07 0.03,0.14 0.05,0.2 0.02,0.07 0.03,0.15 0.06,0.22 0.02,0.06 0.08,0.1 0.15,0.08 0.07,-0.02 0.09,-0.08 0.08,-0.15 -0.01,-0.07 -0.04,-0.14 -0.06,-0.21 -0.02,-0.07 -0.04,-0.14 -0.06,-0.21 l -0.12,-0.42 c -0.03,-0.13 -0.24,-0.08 -0.21,0.06 z" + id="path1474" /> + <path + class="st1" + d="m 494.25,296.81 c -0.04,-0.09 -0.08,-0.17 -0.12,-0.25 -0.03,-0.06 -0.11,-0.08 -0.17,-0.04 -0.06,0.04 -0.07,0.11 -0.04,0.17 0.07,0.15 0.15,0.31 0.25,0.44 0.03,0.04 0.07,0.06 0.11,0.04 0.04,-0.02 0.06,-0.06 0.05,-0.11 -0.01,-0.04 -0.02,-0.08 -0.04,-0.12 -0.01,-0.05 -0.03,-0.09 -0.04,-0.13 z" + id="path1476" /> + <path + class="st1" + d="m 495.78,293.17 c 0.02,0.04 0.03,0.09 0.05,0.13 0.02,0.06 0.05,0.1 0.08,0.15 0.05,0.07 0.15,0.04 0.16,-0.04 0.01,-0.06 0.01,-0.11 0,-0.17 -0.01,-0.05 -0.01,-0.09 -0.02,-0.14 -0.02,-0.1 -0.05,-0.2 -0.08,-0.3 -0.05,-0.2 -0.11,-0.39 -0.16,-0.59 -0.05,-0.18 -0.32,-0.1 -0.28,0.07 0.05,0.2 0.1,0.39 0.15,0.59 0.05,0.1 0.06,0.2 0.1,0.3 z" + id="path1478" /> + <path + class="st1" + d="m 496.79,293.95 c -0.03,0.02 -0.04,0.05 -0.02,0.08 0.08,0.15 0.15,0.3 0.24,0.45 0.03,0.04 0.1,0.01 0.08,-0.03 -0.06,-0.16 -0.14,-0.32 -0.22,-0.47 -0.01,-0.04 -0.05,-0.04 -0.08,-0.03 z" + id="path1480" /> + <path + class="st1" + d="m 498.04,296.46 c 0.02,0.04 0.03,0.08 0.05,0.13 0.02,0.04 0.05,0.08 0.08,0.11 0.07,0.08 0.21,0.02 0.21,-0.09 0,-0.05 0,-0.09 -0.02,-0.14 -0.01,-0.03 -0.03,-0.07 -0.04,-0.1 l -0.09,-0.21 c -0.06,-0.14 -0.11,-0.29 -0.17,-0.43 -0.03,-0.07 -0.09,-0.12 -0.17,-0.1 -0.07,0.02 -0.13,0.1 -0.1,0.17 0.06,0.15 0.11,0.29 0.17,0.44 z" + id="path1482" /> + <path + class="st1" + d="m 496.95,292.11 c -0.03,-0.13 -0.05,-0.27 -0.1,-0.39 -0.05,-0.13 -0.11,-0.26 -0.17,-0.39 -0.11,-0.25 -0.22,-0.5 -0.33,-0.75 -0.07,-0.16 -0.35,-0.04 -0.28,0.12 0.1,0.25 0.2,0.51 0.3,0.76 0.05,0.13 0.1,0.27 0.16,0.4 0.05,0.12 0.13,0.24 0.2,0.35 0.07,0.12 0.24,0.04 0.22,-0.1 z" + id="path1484" /> + <path + class="st1" + d="m 502.74,295.63 c -0.16,-0.26 -0.31,-0.51 -0.47,-0.77 -0.1,-0.17 -0.37,-0.01 -0.27,0.16 0.16,0.26 0.31,0.51 0.47,0.77 0.08,0.12 0.14,0.25 0.23,0.37 0.05,0.06 0.1,0.12 0.15,0.18 0.05,0.06 0.09,0.12 0.15,0.17 0.07,0.06 0.17,0 0.15,-0.09 -0.02,-0.07 -0.05,-0.14 -0.08,-0.21 -0.03,-0.07 -0.06,-0.14 -0.1,-0.21 -0.07,-0.13 -0.15,-0.25 -0.23,-0.37 z" + id="path1486" /> + <path + class="st1" + d="m 504.29,298.56 c 0.04,-0.02 0.04,-0.07 0.03,-0.1 -0.06,-0.12 -0.12,-0.25 -0.18,-0.37 -0.02,-0.05 -0.1,-0.06 -0.14,-0.04 -0.04,0.03 -0.07,0.09 -0.04,0.14 0.07,0.12 0.15,0.23 0.22,0.35 0.03,0.03 0.07,0.05 0.11,0.02 z" + id="path1488" /> + <path + class="st1" + d="m 617.64,243.87 c -0.33,-0.77 -0.67,-1.55 -1,-2.32 -0.06,-0.14 -0.26,-0.02 -0.2,0.12 0.33,0.76 0.65,1.52 0.98,2.28 0.17,0.39 0.36,0.78 0.52,1.17 0.15,0.37 0.21,0.79 0.44,1.12 0.09,0.13 0.3,0.05 0.26,-0.11 -0.09,-0.39 -0.35,-0.73 -0.51,-1.09 -0.18,-0.39 -0.32,-0.79 -0.49,-1.17 z" + id="path1490" /> + <path + class="st1" + d="m 620.67,240.87 c -0.07,-0.13 -0.26,-0.01 -0.19,0.11 0.14,0.26 0.28,0.52 0.41,0.78 0.14,0.26 0.27,0.53 0.43,0.77 0.06,0.09 0.23,0.03 0.19,-0.08 -0.12,-0.28 -0.26,-0.54 -0.41,-0.8 -0.14,-0.25 -0.28,-0.52 -0.43,-0.78 z" + id="path1492" /> + <path + class="st1" + d="m 623.03,245.77 c -0.05,-0.15 -0.11,-0.3 -0.17,-0.45 -0.13,-0.31 -0.24,-0.61 -0.36,-0.92 -0.03,-0.09 -0.12,-0.15 -0.21,-0.12 -0.09,0.02 -0.15,0.12 -0.12,0.21 0.1,0.31 0.2,0.63 0.29,0.94 0.04,0.15 0.1,0.3 0.15,0.45 0.03,0.09 0.07,0.16 0.12,0.25 0.04,0.08 0.07,0.16 0.15,0.2 0.06,0.03 0.16,0.02 0.19,-0.05 0.04,-0.09 0.02,-0.16 0.01,-0.26 -0.01,-0.08 -0.02,-0.17 -0.05,-0.25 z" + id="path1494" /> + <path + class="st1" + d="m 623.5,247.66 c 0.11,-0.03 0.06,-0.2 -0.05,-0.17 -0.1,0.04 -0.06,0.2 0.05,0.17 z" + id="path1496" /> + <path + class="st1" + d="m 623.15,239.38 c -0.06,-0.11 -0.23,-0.01 -0.17,0.1 0.13,0.24 0.27,0.48 0.4,0.72 0.07,0.12 0.13,0.24 0.2,0.36 0.07,0.12 0.13,0.24 0.21,0.35 0.05,0.06 0.18,0.03 0.15,-0.06 -0.1,-0.26 -0.26,-0.49 -0.39,-0.73 -0.13,-0.26 -0.27,-0.5 -0.4,-0.74 z" + id="path1498" /> + <path + class="st1" + d="m 629.36,238.93 c -0.09,-0.19 -0.17,-0.37 -0.26,-0.56 -0.18,-0.39 -0.37,-0.77 -0.55,-1.16 -0.09,-0.18 -0.34,-0.02 -0.27,0.16 0.17,0.39 0.34,0.77 0.51,1.16 0.08,0.19 0.17,0.38 0.25,0.57 0.04,0.09 0.09,0.19 0.14,0.28 0.05,0.1 0.09,0.19 0.18,0.25 0.07,0.04 0.19,0 0.2,-0.08 0.02,-0.11 -0.02,-0.19 -0.06,-0.3 -0.05,-0.12 -0.1,-0.22 -0.14,-0.32 z" + id="path1500" /> + <path + class="st1" + d="m 630.95,243.08 c -0.05,-0.16 -0.1,-0.31 -0.16,-0.47 -0.11,-0.3 -0.24,-0.6 -0.35,-0.91 -0.03,-0.08 -0.11,-0.14 -0.2,-0.12 -0.08,0.02 -0.14,0.12 -0.12,0.2 0.1,0.31 0.2,0.63 0.3,0.94 0.05,0.15 0.1,0.3 0.16,0.45 0.03,0.08 0.07,0.16 0.11,0.24 0.04,0.08 0.06,0.15 0.14,0.2 0.08,0.04 0.16,0 0.19,-0.08 0.03,-0.08 0,-0.17 -0.02,-0.25 -0.01,-0.06 -0.02,-0.13 -0.05,-0.2 z" + id="path1502" /> + <path + class="st1" + d="m 632.88,236.41 c -0.14,-0.26 -0.29,-0.53 -0.43,-0.79 -0.05,-0.1 -0.2,-0.01 -0.15,0.09 0.14,0.27 0.28,0.53 0.42,0.8 0.07,0.13 0.14,0.26 0.21,0.39 0.07,0.13 0.14,0.27 0.24,0.38 0.05,0.05 0.13,0 0.11,-0.07 -0.03,-0.14 -0.11,-0.27 -0.18,-0.39 -0.07,-0.14 -0.14,-0.27 -0.22,-0.41 z" + id="path1504" /> + <path + class="st1" + d="m 634.14,239.2 c -0.11,-0.3 -0.22,-0.6 -0.33,-0.89 -0.06,-0.17 -0.34,-0.1 -0.28,0.08 0.1,0.3 0.2,0.6 0.29,0.9 0.05,0.15 0.1,0.3 0.15,0.45 0.05,0.15 0.09,0.32 0.18,0.45 0.08,0.11 0.28,0.09 0.28,-0.08 0,-0.16 -0.07,-0.31 -0.13,-0.46 -0.05,-0.15 -0.11,-0.3 -0.16,-0.45 z" + id="path1506" /> + <path + class="st1" + d="m 638.55,234.89 c -0.12,-0.23 -0.25,-0.46 -0.37,-0.68 -0.25,-0.44 -0.5,-0.89 -0.75,-1.33 -0.08,-0.15 -0.3,-0.02 -0.23,0.13 0.23,0.46 0.46,0.91 0.68,1.37 0.11,0.22 0.23,0.45 0.34,0.67 0.06,0.11 0.12,0.21 0.2,0.32 0.07,0.1 0.13,0.22 0.22,0.3 0.08,0.07 0.18,0 0.17,-0.1 -0.02,-0.13 -0.09,-0.25 -0.13,-0.37 -0.03,-0.11 -0.08,-0.21 -0.13,-0.31 z" + id="path1508" /> + <path + class="st1" + d="m 640.1,238.15 c -0.02,-0.06 -0.04,-0.13 -0.07,-0.19 -0.05,-0.13 -0.12,-0.25 -0.18,-0.38 -0.12,-0.24 -0.24,-0.48 -0.36,-0.72 -0.04,-0.09 -0.17,-0.11 -0.25,-0.06 -0.09,0.05 -0.1,0.16 -0.06,0.25 l 0.31,0.73 c 0.05,0.12 0.09,0.24 0.15,0.35 0.05,0.1 0.11,0.23 0.21,0.29 0.03,0.04 0.06,0.07 0.11,0.09 0.06,0.03 0.13,0.01 0.15,-0.06 0.01,-0.05 0.01,-0.09 0,-0.14 -0.01,0.03 -0.01,0.05 -0.02,0.08 0.04,-0.09 0.03,-0.15 0.01,-0.24 z" + id="path1510" /> + <path + class="st1" + d="m 640.21,239.09 c 0.05,0.08 0.09,0.17 0.14,0.25 0.02,0.04 0.04,0.08 0.07,0.12 0.02,0.03 0.03,0.05 0.06,0.07 0.02,0.02 0.05,0.03 0.07,0.05 0.05,0.03 0.13,-0.01 0.12,-0.07 0,-0.02 0,-0.04 0,-0.06 0,-0.04 -0.02,-0.07 -0.04,-0.11 -0.02,-0.04 -0.04,-0.08 -0.07,-0.12 -0.05,-0.08 -0.09,-0.16 -0.14,-0.25 -0.03,-0.05 -0.11,-0.08 -0.16,-0.04 -0.06,0.03 -0.08,0.1 -0.05,0.16 z" + id="path1512" /> + <path + class="st1" + d="m 646.4,230.23 c -0.07,-0.16 -0.16,-0.31 -0.23,-0.46 l -0.47,-0.93 c -0.09,-0.18 -0.35,-0.02 -0.26,0.16 0.15,0.31 0.3,0.62 0.46,0.93 0.08,0.16 0.15,0.31 0.23,0.47 0.04,0.07 0.08,0.14 0.11,0.21 0.05,0.08 0.1,0.14 0.16,0.21 0.07,0.08 0.2,-0.01 0.18,-0.1 -0.02,-0.1 -0.04,-0.17 -0.08,-0.26 -0.03,-0.08 -0.06,-0.15 -0.1,-0.23 z" + id="path1514" /> + <path + class="st1" + d="m 647.38,232.13 c -0.07,0.02 -0.14,0.11 -0.11,0.19 0.14,0.37 0.28,0.74 0.43,1.1 0.03,0.08 0.11,0.14 0.2,0.11 0.08,-0.02 0.14,-0.12 0.11,-0.2 -0.14,-0.37 -0.29,-0.73 -0.44,-1.1 -0.03,-0.07 -0.1,-0.12 -0.19,-0.1 z" + id="path1516" /> + <path + class="st1" + d="m 648.25,234.24 c -0.08,0.03 -0.13,0.11 -0.11,0.19 0.03,0.11 0.05,0.22 0.08,0.33 0.01,0.05 0.03,0.11 0.04,0.16 0.02,0.08 0.04,0.18 0.12,0.22 0.08,0.04 0.17,0.02 0.22,-0.06 0.05,-0.08 0.02,-0.17 -0.01,-0.25 -0.02,-0.05 -0.03,-0.11 -0.05,-0.16 -0.03,-0.11 -0.07,-0.22 -0.1,-0.32 -0.03,-0.08 -0.11,-0.14 -0.19,-0.11 z" + id="path1518" /> + <path + class="st1" + d="m 652.46,225.78 c -0.03,-0.07 -0.13,-0.08 -0.19,-0.05 -0.07,0.04 -0.08,0.12 -0.05,0.19 0.12,0.27 0.23,0.53 0.35,0.8 0.12,0.27 0.22,0.54 0.37,0.79 0.07,0.12 0.27,0.04 0.23,-0.1 -0.08,-0.29 -0.22,-0.55 -0.35,-0.82 -0.11,-0.27 -0.24,-0.54 -0.36,-0.81 z" + id="path1520" /> + <path + class="st1" + d="m 654.52,229.72 c -0.06,-0.11 -0.11,-0.23 -0.17,-0.34 -0.12,-0.24 -0.23,-0.47 -0.35,-0.71 -0.03,-0.06 -0.12,-0.08 -0.18,-0.05 -0.06,0.04 -0.07,0.11 -0.05,0.18 0.11,0.24 0.22,0.47 0.34,0.71 0.05,0.11 0.11,0.23 0.16,0.34 0.05,0.11 0.11,0.27 0.23,0.32 0.06,0.02 0.11,-0.02 0.13,-0.07 0.02,-0.07 -0.01,-0.13 -0.04,-0.19 -0.01,-0.06 -0.04,-0.12 -0.07,-0.19 z" + id="path1522" /> + <path + class="st1" + d="m 656.81,225.77 c -0.04,0.03 -0.07,0.1 -0.04,0.14 0.17,0.23 0.34,0.46 0.52,0.68 0.04,0.04 0.1,-0.01 0.08,-0.06 -0.13,-0.25 -0.28,-0.49 -0.42,-0.73 -0.02,-0.04 -0.09,-0.05 -0.14,-0.03 z" + id="path1524" /> + <path + class="st1" + d="m 658.06,228.43 0.25,0.92 c 0.04,0.15 0.08,0.31 0.13,0.46 0.05,0.14 0.11,0.31 0.2,0.43 0.06,0.08 0.18,0.05 0.19,-0.05 0.02,-0.15 -0.01,-0.33 -0.04,-0.47 -0.03,-0.15 -0.08,-0.31 -0.12,-0.46 -0.08,-0.31 -0.17,-0.61 -0.25,-0.92 -0.07,-0.23 -0.42,-0.14 -0.36,0.09 z" + id="path1526" /> + <path + class="st1" + d="m 659.95,225.25 c -0.08,-0.13 -0.16,-0.26 -0.25,-0.39 -0.17,-0.26 -0.34,-0.52 -0.52,-0.79 -0.13,-0.2 -0.45,-0.02 -0.32,0.19 0.16,0.27 0.32,0.53 0.49,0.8 0.08,0.13 0.16,0.27 0.24,0.39 0.05,0.07 0.1,0.13 0.15,0.19 0.05,0.07 0.1,0.14 0.18,0.18 0.1,0.05 0.22,-0.01 0.22,-0.13 0,-0.09 -0.04,-0.16 -0.08,-0.24 -0.03,-0.05 -0.07,-0.13 -0.11,-0.2 z" + id="path1528" /> + <path + class="st1" + d="m 661.05,227.59 c 0.13,-0.03 0.07,-0.23 -0.05,-0.2 -0.13,0.04 -0.07,0.24 0.05,0.2 z" + id="path1530" /> + <path + class="st1" + d="m 661.63,224.01 c -0.16,-0.24 -0.32,-0.49 -0.48,-0.73 -0.12,-0.19 -0.43,-0.01 -0.3,0.18 0.16,0.25 0.31,0.49 0.47,0.73 0.08,0.12 0.15,0.24 0.24,0.36 0.04,0.06 0.09,0.12 0.13,0.18 0.05,0.07 0.09,0.13 0.16,0.17 0.09,0.04 0.21,-0.01 0.21,-0.12 0,-0.15 -0.12,-0.29 -0.19,-0.41 -0.08,-0.12 -0.16,-0.24 -0.24,-0.36 z" + id="path1532" /> + <path + class="st1" + d="m 662.28,226 c -0.02,0.01 -0.04,0.03 -0.03,0.06 0.01,0.04 0.03,0.08 0.04,0.13 0.01,0.02 0.03,0.03 0.05,0.03 0.02,-0.01 0.03,-0.03 0.03,-0.05 -0.01,-0.04 -0.02,-0.09 -0.03,-0.13 -0.01,-0.03 -0.04,-0.04 -0.06,-0.04 z" + id="path1534" /> + <path + class="st1" + d="m 665.63,222.31 c -0.02,0.02 -0.03,0.03 -0.03,0.06 0,0.03 0.01,0.05 0.03,0.08 0.08,0.11 0.16,0.21 0.25,0.32 0.02,0.02 0.05,0.04 0.08,0.02 0.03,-0.02 0.03,-0.05 0.02,-0.08 -0.07,-0.12 -0.13,-0.25 -0.2,-0.37 -0.04,-0.06 -0.11,-0.06 -0.15,-0.03 z" + id="path1536" /> + <path + class="st1" + d="m 670.98,220.36 c -0.15,-0.19 -0.29,-0.39 -0.44,-0.58 -0.05,-0.07 -0.14,-0.11 -0.22,-0.06 -0.07,0.04 -0.11,0.15 -0.06,0.22 0.15,0.2 0.3,0.4 0.45,0.59 0.08,0.1 0.15,0.21 0.24,0.31 0.08,0.09 0.15,0.21 0.26,0.27 0.1,0.05 0.21,-0.04 0.18,-0.14 -0.03,-0.12 -0.12,-0.22 -0.19,-0.33 -0.08,-0.09 -0.15,-0.19 -0.22,-0.28 z" + id="path1538" /> + <path + class="st1" + d="m 675.91,217.57 c 0.09,0.15 0.18,0.3 0.26,0.44 0.09,0.15 0.18,0.33 0.32,0.44 0.1,0.07 0.2,-0.05 0.19,-0.14 -0.02,-0.16 -0.14,-0.32 -0.23,-0.46 -0.09,-0.15 -0.18,-0.31 -0.28,-0.46 -0.18,-0.3 -0.37,-0.59 -0.56,-0.89 -0.1,-0.15 -0.33,-0.01 -0.24,0.14 0.19,0.31 0.36,0.62 0.54,0.93 z" + id="path1540" /> + <path + class="st1" + d="m 677.17,219.99 c 0.18,0.31 0.34,0.62 0.49,0.93 0.16,0.33 0.36,0.65 0.5,1 0.14,0.33 0.26,0.67 0.36,1.02 0.1,0.32 0.14,0.71 0.3,1 0.05,0.1 0.2,0.05 0.2,-0.06 0.02,-0.34 -0.15,-0.73 -0.26,-1.05 -0.11,-0.35 -0.24,-0.69 -0.37,-1.03 -0.13,-0.33 -0.23,-0.67 -0.4,-0.98 -0.17,-0.34 -0.37,-0.66 -0.58,-0.98 -0.08,-0.16 -0.34,-0.02 -0.24,0.15 z" + id="path1542" /> + <path + class="st1" + d="m 678.13,217.91 c 0.07,0.16 0.14,0.33 0.23,0.48 0.09,0.14 0.21,0.3 0.35,0.4 0.07,0.05 0.18,-0.04 0.15,-0.12 -0.05,-0.15 -0.14,-0.3 -0.22,-0.45 -0.08,-0.15 -0.16,-0.3 -0.23,-0.45 -0.14,-0.31 -0.23,-0.63 -0.29,-0.97 -0.01,-0.07 -0.1,-0.12 -0.17,-0.1 -0.08,0.02 -0.11,0.1 -0.1,0.17 0.05,0.36 0.14,0.71 0.28,1.04 z" + id="path1544" /> + <path + class="st1" + d="m 674.87,218.91 c 0.13,0.22 0.24,0.47 0.42,0.66 0.09,0.1 0.26,0 0.22,-0.13 -0.08,-0.25 -0.24,-0.47 -0.37,-0.69 -0.13,-0.22 -0.26,-0.44 -0.39,-0.67 -0.1,-0.18 -0.38,-0.02 -0.28,0.16 0.14,0.23 0.27,0.45 0.4,0.67 z" + id="path1546" /> + <path + class="st1" + d="m 684.41,220.63 c 0.04,0.08 0.07,0.17 0.12,0.24 0.04,0.05 0.11,0.02 0.1,-0.04 -0.02,-0.09 -0.05,-0.17 -0.08,-0.26 -0.03,-0.09 -0.07,-0.17 -0.1,-0.25 l -0.21,-0.5 c -0.03,-0.07 -0.16,-0.02 -0.13,0.06 0.07,0.17 0.13,0.34 0.2,0.51 0.03,0.07 0.06,0.15 0.1,0.24 z" + id="path1548" /> + <path + class="st1" + d="m 684.95,223.41 c 0.05,0.19 0.11,0.39 0.28,0.51 0.05,0.03 0.12,0.01 0.15,-0.04 0.11,-0.18 0.07,-0.4 0.04,-0.6 -0.03,-0.19 -0.08,-0.38 -0.13,-0.56 -0.06,-0.18 -0.11,-0.37 -0.18,-0.55 -0.07,-0.2 -0.11,-0.4 -0.16,-0.6 -0.05,-0.18 -0.31,-0.1 -0.28,0.07 0.07,0.39 0.11,0.78 0.16,1.18 0.03,0.2 0.07,0.39 0.12,0.59 z" + id="path1550" /> + <path + class="st1" + d="m 685.95,213.44 c -0.05,-0.11 -0.23,-0.06 -0.18,0.05 0.14,0.36 0.28,0.72 0.43,1.08 0.14,0.35 0.26,0.72 0.44,1.05 0.05,0.09 0.2,0.03 0.17,-0.07 -0.11,-0.36 -0.27,-0.71 -0.42,-1.06 -0.15,-0.34 -0.29,-0.7 -0.44,-1.05 z" + id="path1552" /> + <path + class="st1" + d="m 687.33,214.18 -0.18,-0.65 c -0.05,-0.18 -0.33,-0.1 -0.28,0.08 l 0.18,0.65 c 0.03,0.11 0.07,0.22 0.1,0.32 0.04,0.11 0.07,0.22 0.13,0.32 0.05,0.08 0.17,0.05 0.17,-0.05 0.01,-0.11 -0.03,-0.23 -0.05,-0.34 -0.01,-0.11 -0.04,-0.22 -0.07,-0.33 z" + id="path1554" /> + <path + class="st1" + d="m 691.85,213.02 c -0.08,-0.13 -0.16,-0.28 -0.22,-0.42 -0.13,-0.29 -0.22,-0.59 -0.27,-0.9 -0.01,-0.09 -0.12,-0.13 -0.2,-0.11 -0.09,0.02 -0.13,0.11 -0.11,0.2 0.05,0.34 0.15,0.66 0.28,0.97 0.06,0.15 0.14,0.3 0.22,0.44 0.08,0.14 0.19,0.32 0.33,0.39 0.1,0.05 0.21,-0.04 0.19,-0.15 -0.02,-0.08 -0.06,-0.14 -0.1,-0.21 -0.04,-0.08 -0.08,-0.15 -0.12,-0.21 z" + id="path1556" /> + <path + class="st1" + d="m 693.02,215.53 c -0.03,-0.07 -0.06,-0.15 -0.1,-0.22 l -0.19,-0.44 c -0.03,-0.06 -0.11,-0.07 -0.16,-0.05 -0.05,0.02 -0.1,0.09 -0.07,0.15 0.06,0.15 0.12,0.29 0.18,0.44 l 0.09,0.22 c 0.02,0.04 0.03,0.08 0.05,0.12 0.02,0.04 0.05,0.07 0.07,0.11 0.07,0.11 0.23,0.04 0.21,-0.09 -0.01,-0.04 -0.02,-0.08 -0.03,-0.12 -0.01,-0.04 -0.03,-0.08 -0.05,-0.12 z" + id="path1558" /> + <path + class="st1" + d="m 695.92,213.04 c -0.14,-0.41 -0.28,-0.81 -0.41,-1.22 -0.04,-0.13 -0.25,-0.08 -0.21,0.06 0.13,0.41 0.25,0.82 0.38,1.23 0.06,0.21 0.13,0.41 0.2,0.61 0.06,0.19 0.12,0.41 0.23,0.58 0.04,0.08 0.18,0.05 0.18,-0.05 -0.02,-0.2 -0.09,-0.41 -0.15,-0.6 -0.08,-0.2 -0.15,-0.41 -0.22,-0.61 z" + id="path1560" /> + <path + class="st1" + d="m 697.23,217.09 c -0.08,-0.28 -0.17,-0.56 -0.25,-0.85 -0.05,-0.18 -0.32,-0.11 -0.28,0.08 0.07,0.29 0.14,0.57 0.21,0.86 0.04,0.14 0.06,0.29 0.11,0.43 0.04,0.14 0.12,0.27 0.2,0.39 0.05,0.07 0.16,0.04 0.16,-0.04 0,-0.14 0.01,-0.3 -0.03,-0.44 -0.03,-0.15 -0.07,-0.29 -0.12,-0.43 z" + id="path1562" /> + <path + class="st1" + d="m 696.95,212.27 c 0.06,0.13 0.11,0.26 0.19,0.37 0.05,0.06 0.18,0.05 0.17,-0.05 -0.01,-0.13 -0.05,-0.25 -0.09,-0.37 -0.03,-0.12 -0.06,-0.23 -0.09,-0.35 -0.08,-0.25 -0.18,-0.49 -0.28,-0.73 -0.19,-0.49 -0.38,-0.97 -0.57,-1.46 -0.06,-0.16 -0.32,-0.1 -0.26,0.07 0.17,0.49 0.35,0.98 0.52,1.47 0.09,0.25 0.17,0.49 0.27,0.74 0.04,0.11 0.1,0.21 0.14,0.31 z" + id="path1564" /> + <path + class="st1" + d="m 697.66,214.27 c 0.1,0.35 0.21,0.69 0.31,1.04 0.1,0.35 0.24,0.68 0.39,1.01 0.07,0.15 0.3,0.04 0.26,-0.11 -0.08,-0.35 -0.17,-0.69 -0.3,-1.02 -0.13,-0.33 -0.25,-0.67 -0.38,-1 -0.06,-0.17 -0.33,-0.11 -0.28,0.08 z" + id="path1566" /> + <path + class="st1" + d="m 699.84,209.78 c -0.2,-0.53 -0.4,-1.06 -0.59,-1.6 -0.07,-0.2 -0.39,-0.12 -0.32,0.09 0.19,0.53 0.37,1.07 0.56,1.61 0.09,0.27 0.19,0.53 0.28,0.8 0.09,0.25 0.16,0.55 0.32,0.77 0.08,0.11 0.29,0.09 0.28,-0.08 -0.02,-0.27 -0.14,-0.54 -0.23,-0.79 -0.1,-0.27 -0.2,-0.53 -0.3,-0.8 z" + id="path1568" /> + <path + class="st1" + d="m 700.5,207.58 c 0.41,1.04 0.76,2.14 1.34,3.11 0.05,0.09 0.18,0.03 0.16,-0.07 -0.26,-1.08 -0.76,-2.1 -1.19,-3.12 -0.08,-0.2 -0.39,-0.12 -0.31,0.08 z" + id="path1570" /> + <path + class="st1" + d="m 702.12,206.42 c -0.07,-0.1 -0.22,-0.01 -0.16,0.09 0.2,0.32 0.38,0.66 0.51,1.02 0.06,0.17 0.12,0.34 0.16,0.52 0.05,0.19 0.08,0.38 0.15,0.56 0.04,0.12 0.23,0.11 0.23,-0.03 0,-0.38 -0.16,-0.78 -0.31,-1.13 -0.16,-0.36 -0.35,-0.71 -0.58,-1.03 z" + id="path1572" /> + <path + class="st1" + d="m 703.9,210.65 c -0.02,-0.09 -0.12,-0.15 -0.21,-0.12 -0.09,0.02 -0.15,0.12 -0.12,0.21 0.05,0.2 0.1,0.39 0.16,0.59 0.05,0.2 0.1,0.41 0.22,0.58 0.07,0.09 0.2,0.06 0.21,-0.06 0.02,-0.21 -0.04,-0.41 -0.1,-0.61 -0.05,-0.2 -0.1,-0.4 -0.16,-0.59 z" + id="path1574" /> + <path + class="st1" + d="m 705.12,214.19 c -0.08,-0.26 -0.15,-0.52 -0.23,-0.78 -0.05,-0.17 -0.32,-0.1 -0.27,0.07 0.07,0.26 0.13,0.53 0.2,0.79 0.03,0.13 0.06,0.27 0.1,0.39 0.04,0.12 0.11,0.25 0.18,0.36 0.04,0.07 0.15,0.04 0.15,-0.04 0.01,-0.13 0,-0.28 -0.02,-0.4 -0.02,-0.13 -0.07,-0.26 -0.11,-0.39 z" + id="path1576" /> + <path + class="st1" + d="m 705.44,215.6 c -0.04,-0.11 -0.22,-0.07 -0.18,0.05 0.22,0.66 0.38,1.33 0.51,2.01 0.13,0.68 0.14,1.38 0.28,2.05 0.03,0.15 0.24,0.1 0.25,-0.03 0.06,-0.68 -0.11,-1.39 -0.25,-2.05 -0.15,-0.69 -0.36,-1.37 -0.61,-2.03 z" + id="path1578" /> + <path + class="st1" + d="m 705.14,208.35 c 0.11,0.23 0.21,0.46 0.36,0.66 0.09,0.12 0.3,0.05 0.26,-0.11 -0.07,-0.24 -0.17,-0.46 -0.28,-0.69 -0.11,-0.23 -0.21,-0.46 -0.32,-0.69 -0.22,-0.45 -0.45,-0.9 -0.67,-1.36 -0.09,-0.18 -0.36,-0.02 -0.27,0.16 0.21,0.45 0.41,0.9 0.62,1.35 0.09,0.24 0.19,0.46 0.3,0.68 z" + id="path1580" /> + <path + class="st1" + d="m 707,212.84 c -0.03,-0.13 -0.07,-0.26 -0.11,-0.38 -0.08,-0.26 -0.15,-0.51 -0.23,-0.77 -0.06,-0.21 -0.37,-0.12 -0.32,0.09 0.06,0.26 0.13,0.52 0.19,0.78 0.03,0.12 0.06,0.25 0.09,0.37 0.04,0.13 0.09,0.26 0.14,0.39 0.07,0.2 0.36,0.12 0.32,-0.09 -0.03,-0.13 -0.05,-0.26 -0.08,-0.39 z" + id="path1582" /> + <path + class="st1" + d="m 708.19,220.04 c 0.07,-0.41 -0.05,-0.88 -0.11,-1.3 -0.07,-0.49 -0.14,-0.98 -0.21,-1.47 -0.14,-0.96 -0.29,-1.92 -0.44,-2.89 -0.03,-0.2 -0.39,-0.16 -0.36,0.05 0.11,0.95 0.24,1.9 0.37,2.84 0.07,0.47 0.13,0.95 0.2,1.42 0.06,0.44 0.08,0.98 0.27,1.38 0.06,0.11 0.26,0.09 0.28,-0.03 z" + id="path1584" /> + <path + class="st1" + d="m 513.72,292.2 c 0.08,0.16 0.17,0.32 0.25,0.47 0.04,0.08 0.08,0.15 0.12,0.23 0.02,0.04 0.05,0.08 0.07,0.12 0.03,0.04 0.05,0.07 0.08,0.1 0.03,0.02 0.08,-0.01 0.08,-0.04 0,-0.04 -0.02,-0.08 -0.04,-0.12 -0.02,-0.04 -0.04,-0.08 -0.07,-0.12 -0.04,-0.07 -0.09,-0.15 -0.13,-0.22 l -0.29,-0.45 c -0.02,-0.07 -0.1,-0.03 -0.07,0.03 z" + id="path1586" /> + <path + class="st1" + d="m 514.88,294.41 c 0.05,0.08 0.1,0.16 0.16,0.23 0.03,0.04 0.07,0.08 0.11,0.12 0.03,0.04 0.06,0.08 0.11,0.1 0.05,0.03 0.13,-0.01 0.13,-0.07 0,-0.05 -0.02,-0.1 -0.05,-0.14 -0.02,-0.04 -0.04,-0.09 -0.06,-0.14 -0.05,-0.08 -0.1,-0.16 -0.15,-0.24 -0.11,-0.16 -0.22,-0.32 -0.33,-0.48 -0.04,-0.06 -0.12,-0.09 -0.18,-0.05 -0.06,0.04 -0.09,0.12 -0.05,0.18 0.11,0.16 0.21,0.33 0.31,0.49 z" + id="path1588" /> + <path + class="st1" + d="m 515.89,295.75 c 0.05,0.05 0.09,0.1 0.14,0.14 0.06,0.05 0.11,0.11 0.19,0.13 0.09,0.02 0.16,-0.05 0.14,-0.14 -0.02,-0.08 -0.08,-0.14 -0.13,-0.19 -0.05,-0.05 -0.1,-0.09 -0.14,-0.14 l -0.29,-0.27 c -0.05,-0.05 -0.14,-0.05 -0.19,0 -0.05,0.05 -0.05,0.13 0,0.19 0.1,0.09 0.19,0.19 0.28,0.28 z" + id="path1590" /> + <path + class="st1" + d="m 512.46,290.03 c 0.03,0.06 0.06,0.11 0.09,0.17 0.03,0.06 0.05,0.12 0.1,0.16 0.03,0.03 0.08,0.02 0.09,-0.03 0.03,-0.12 -0.02,-0.24 -0.03,-0.36 -0.02,-0.13 -0.08,-0.27 -0.12,-0.39 -0.08,-0.25 -0.16,-0.5 -0.24,-0.76 -0.05,-0.16 -0.3,-0.09 -0.25,0.07 0.08,0.25 0.16,0.51 0.24,0.76 0.04,0.13 0.07,0.26 0.12,0.38 z" + id="path1592" /> + <path + class="st1" + d="m 513.18,291.29 c 0.05,0.05 0.13,0.05 0.18,0.01 0.06,-0.04 0.07,-0.12 0.03,-0.18 -0.03,-0.06 -0.08,-0.11 -0.12,-0.16 -0.04,-0.05 -0.09,-0.1 -0.14,-0.16 -0.08,-0.1 -0.17,-0.19 -0.25,-0.29 -0.06,-0.07 -0.17,0.02 -0.13,0.1 0.06,0.11 0.13,0.22 0.19,0.34 0.08,0.11 0.15,0.24 0.24,0.34 z" + id="path1594" /> + <path + class="st1" + d="m 508.82,254.91 c -0.06,-0.21 -0.13,-0.41 -0.21,-0.61 -0.07,-0.17 -0.29,-0.11 -0.27,0.07 0.03,0.22 0.07,0.42 0.13,0.63 0.03,0.1 0.05,0.2 0.08,0.3 0.02,0.06 0.05,0.11 0.08,0.17 0.03,0.06 0.05,0.11 0.12,0.13 0.04,0.01 0.08,0 0.11,-0.03 0.05,-0.05 0.05,-0.11 0.04,-0.17 0,-0.06 -0.01,-0.12 -0.02,-0.19 0,-0.1 -0.04,-0.2 -0.06,-0.3 z" + id="path1596" /> + <path + class="st1" + d="m 509.64,258.56 c 0.06,0.11 0.12,0.22 0.19,0.33 0.02,0.03 0.04,0.07 0.06,0.09 0.02,0.02 0.04,0.03 0.06,0.05 0.05,0.05 0.08,0.1 0.13,0.15 0.05,0.05 0.13,0 0.12,-0.07 -0.01,-0.07 -0.04,-0.12 -0.06,-0.19 -0.01,-0.03 -0.01,-0.05 -0.01,-0.08 -0.01,-0.03 -0.03,-0.06 -0.04,-0.09 -0.06,-0.12 -0.12,-0.23 -0.19,-0.34 l -0.39,-0.67 c -0.09,-0.16 -0.34,-0.02 -0.25,0.15 0.13,0.22 0.26,0.45 0.38,0.67 z" + id="path1598" /> + <path + class="st1" + d="m 511.88,257.04 c 0.03,0.03 0.08,0.03 0.11,0.01 0.03,-0.02 0.05,-0.07 0.02,-0.11 -0.14,-0.19 -0.27,-0.39 -0.41,-0.58 -0.04,-0.05 -0.1,-0.07 -0.16,-0.03 -0.05,0.04 -0.05,0.11 -0.01,0.16 0.16,0.18 0.3,0.36 0.45,0.55 z" + id="path1600" /> + <path + class="st1" + d="m 513.51,255.87 c -0.12,-0.66 -0.39,-1.28 -0.62,-1.9 -0.05,-0.13 -0.25,-0.08 -0.2,0.06 0.21,0.64 0.38,1.3 0.69,1.9 0.04,0.06 0.14,0.01 0.13,-0.06 z" + id="path1602" /> + <path + class="st1" + d="m 514.08,257.84 c 0.02,0.04 0.04,0.08 0.07,0.12 0.02,0.04 0.06,0.07 0.09,0.11 0.06,0.08 0.11,0.18 0.2,0.23 0.06,0.04 0.14,-0.01 0.14,-0.08 0,-0.05 -0.01,-0.1 -0.03,-0.14 -0.02,-0.04 -0.03,-0.09 -0.05,-0.13 -0.01,-0.03 -0.01,-0.01 -0.02,-0.06 -0.01,-0.03 -0.02,-0.05 -0.03,-0.08 -0.02,-0.04 -0.05,-0.09 -0.07,-0.13 -0.09,-0.17 -0.19,-0.33 -0.28,-0.5 -0.04,-0.08 -0.15,-0.1 -0.22,-0.06 -0.08,0.05 -0.1,0.15 -0.06,0.22 0.08,0.17 0.17,0.34 0.26,0.5 z" + id="path1604" /> + <path + class="st1" + d="m 517.93,253.83 c -0.04,-0.12 -0.09,-0.25 -0.13,-0.37 -0.09,-0.25 -0.18,-0.5 -0.27,-0.75 -0.05,-0.14 -0.28,-0.08 -0.23,0.06 0.09,0.26 0.19,0.51 0.28,0.77 0.05,0.13 0.09,0.26 0.14,0.38 0.02,0.06 0.04,0.12 0.06,0.18 0.03,0.07 0.07,0.12 0.11,0.19 0.05,0.08 0.16,0.02 0.15,-0.06 -0.01,-0.07 -0.01,-0.14 -0.04,-0.2 -0.02,-0.07 -0.05,-0.13 -0.07,-0.2 z" + id="path1606" /> + <path + class="st1" + d="m 518.86,255.62 c -0.04,-0.08 -0.14,-0.09 -0.21,-0.05 -0.08,0.05 -0.09,0.14 -0.05,0.21 0.11,0.25 0.22,0.49 0.33,0.74 0.11,0.25 0.21,0.49 0.36,0.72 0.08,0.13 0.32,0.05 0.26,-0.11 -0.08,-0.27 -0.21,-0.51 -0.33,-0.77 -0.12,-0.24 -0.24,-0.49 -0.36,-0.74 z" + id="path1608" /> + <path + class="st1" + d="m 520.25,255.42 c -0.09,-0.44 -0.3,-0.85 -0.48,-1.25 -0.19,-0.42 -0.37,-0.83 -0.56,-1.25 -0.06,-0.14 -0.27,-0.02 -0.21,0.12 0.18,0.41 0.36,0.82 0.54,1.23 0.18,0.41 0.34,0.84 0.6,1.2 0.03,0.06 0.12,0.02 0.11,-0.05 z" + id="path1610" /> + <path + class="st1" + d="m 522.81,255.1 c 0.05,0.1 0.11,0.2 0.18,0.29 0.07,0.1 0.13,0.21 0.23,0.27 0.09,0.05 0.18,-0.04 0.17,-0.13 -0.02,-0.11 -0.09,-0.2 -0.15,-0.29 -0.06,-0.1 -0.11,-0.2 -0.17,-0.3 -0.1,-0.19 -0.2,-0.38 -0.28,-0.58 -0.16,-0.41 -0.28,-0.85 -0.34,-1.29 -0.02,-0.17 -0.29,-0.17 -0.27,0 0.05,0.48 0.16,0.94 0.33,1.39 0.09,0.22 0.19,0.43 0.3,0.64 z" + id="path1612" /> + <path + class="st1" + d="m 522.85,251.13 c 0.13,0.42 0.26,0.84 0.39,1.25 0.06,0.21 0.13,0.41 0.19,0.62 0.03,0.1 0.07,0.2 0.12,0.29 0.04,0.1 0.07,0.21 0.15,0.28 0.05,0.05 0.17,0.03 0.19,-0.05 0.02,-0.11 -0.01,-0.2 -0.04,-0.3 -0.02,-0.1 -0.04,-0.19 -0.07,-0.29 -0.07,-0.21 -0.14,-0.42 -0.21,-0.63 -0.14,-0.42 -0.28,-0.83 -0.42,-1.25 -0.07,-0.18 -0.35,-0.1 -0.3,0.08 z" + id="path1614" /> + <path + class="st1" + d="m 525.67,252.9 c 0.07,0.04 0.13,-0.04 0.1,-0.1 -0.09,-0.17 -0.2,-0.3 -0.31,-0.46 -0.1,-0.14 -0.19,-0.29 -0.27,-0.45 -0.16,-0.33 -0.27,-0.68 -0.32,-1.04 -0.02,-0.13 -0.22,-0.08 -0.2,0.06 0.05,0.38 0.17,0.75 0.34,1.09 0.14,0.34 0.34,0.71 0.66,0.9 z" + id="path1616" /> + <path + class="st1" + d="m 576.02,234.35 c 0.11,0.19 0.26,0.52 0.51,0.52 0.08,0 0.15,-0.05 0.17,-0.13 0.06,-0.21 -0.18,-0.45 -0.28,-0.62 -0.11,-0.18 -0.21,-0.38 -0.3,-0.57 -0.19,-0.4 -0.32,-0.83 -0.39,-1.27 -0.03,-0.2 -0.39,-0.16 -0.36,0.05 0.06,0.48 0.17,0.95 0.35,1.39 0.08,0.21 0.18,0.42 0.3,0.63 z" + id="path1618" /> + <path + class="st1" + d="m 594.4,226.3 c 0.04,0.13 0.09,0.27 0.13,0.4 0.04,0.12 0.07,0.25 0.17,0.34 0.05,0.05 0.15,0.03 0.17,-0.05 0.05,-0.24 -0.1,-0.52 -0.17,-0.75 -0.09,-0.28 -0.18,-0.56 -0.28,-0.84 -0.19,-0.55 -0.37,-1.09 -0.56,-1.64 -0.05,-0.14 -0.27,-0.08 -0.23,0.06 0.17,0.55 0.34,1.1 0.51,1.65 0.09,0.29 0.17,0.56 0.26,0.83 z" + id="path1620" /> + <path + class="st1" + d="m 631.2,208.99 c 0.11,0.38 0.2,0.77 0.27,1.17 0.04,0.22 0.08,0.45 0.1,0.67 0.02,0.19 0.03,0.37 0.11,0.54 0.06,0.13 0.26,0.08 0.3,-0.04 0.11,-0.35 -0.03,-0.84 -0.09,-1.19 -0.08,-0.44 -0.2,-0.87 -0.34,-1.29 -0.27,-0.82 -0.64,-1.6 -1.1,-2.33 -0.11,-0.18 -0.39,-0.01 -0.28,0.16 0.44,0.72 0.79,1.49 1.03,2.31 z" + id="path1622" /> + <path + class="st1" + d="m 663.24,190.88 c -0.07,0.02 -0.04,0.13 0.03,0.11 0.07,-0.02 0.04,-0.13 -0.03,-0.11 z" + id="path1624" /> + <path + class="st1" + d="m 527.03,249.42 c 0.02,0.05 0.03,0.11 0.05,0.16 0.02,0.05 0.03,0.11 0.07,0.15 0.03,0.03 0.09,0.02 0.11,-0.03 0.01,-0.06 0,-0.11 -0.02,-0.16 -0.01,-0.05 -0.02,-0.1 -0.03,-0.15 -0.03,-0.11 -0.05,-0.23 -0.08,-0.34 -0.05,-0.22 -0.1,-0.45 -0.15,-0.68 -0.04,-0.17 -0.32,-0.1 -0.27,0.07 0.07,0.22 0.14,0.44 0.21,0.66 0.04,0.1 0.07,0.21 0.11,0.32 z" + id="path1626" /> + <path + class="st1" + d="m 527.62,252.27 c 0.06,0.15 0.14,0.44 0.32,0.48 0.06,0.01 0.14,-0.01 0.17,-0.07 0.05,-0.1 0.02,-0.17 -0.01,-0.26 -0.03,-0.08 -0.07,-0.16 -0.1,-0.24 -0.07,-0.16 -0.12,-0.32 -0.17,-0.48 -0.11,-0.33 -0.21,-0.66 -0.24,-1.01 -0.02,-0.16 -0.25,-0.16 -0.25,0 0.01,0.37 0.03,0.74 0.12,1.09 0.03,0.16 0.1,0.33 0.16,0.49 z" + id="path1628" /> + <path + class="st1" + d="m 530.42,249.38 c 0.01,0.05 0.03,0.1 0.05,0.14 0.02,0.05 0.03,0.1 0.06,0.14 0.04,0.06 0.11,0.04 0.14,-0.02 0.02,-0.04 0.02,-0.09 0.03,-0.14 0.01,-0.05 0.02,-0.09 0.02,-0.14 0,-0.09 -0.02,-0.19 -0.03,-0.28 -0.02,-0.19 -0.04,-0.38 -0.07,-0.57 -0.01,-0.06 -0.05,-0.12 -0.12,-0.12 -0.06,0 -0.12,0.05 -0.12,0.12 0.01,0.19 0.02,0.38 0.03,0.58 -0.01,0.09 -0.01,0.2 0.01,0.29 z" + id="path1630" /> + <path + class="st1" + d="m 530.9,251.52 c 0.01,0.02 0.03,0.03 0.04,0.04 0.02,0.01 0.04,0.01 0.06,0 0.02,0 0.03,-0.01 0.04,-0.02 0.01,-0.01 0.03,-0.04 0.03,-0.06 -0.01,-0.06 -0.01,-0.11 -0.03,-0.17 L 531,251.16 c -0.01,-0.05 -0.08,-0.09 -0.13,-0.08 -0.06,0.02 -0.09,0.07 -0.08,0.13 l 0.04,0.15 c 0.03,0.06 0.05,0.11 0.07,0.16 z" + id="path1632" /> + <path + class="st1" + d="m 534.22,247.91 c 0.03,0.15 0.04,0.39 0.18,0.48 0.05,0.03 0.14,0.02 0.18,-0.02 0.07,-0.09 0.06,-0.15 0.05,-0.26 -0.01,-0.09 -0.02,-0.17 -0.04,-0.26 -0.02,-0.17 -0.05,-0.33 -0.08,-0.5 -0.06,-0.34 -0.13,-0.67 -0.19,-1.01 -0.02,-0.1 -0.13,-0.15 -0.22,-0.13 -0.1,0.03 -0.15,0.13 -0.13,0.22 0.06,0.33 0.11,0.66 0.17,1 0.02,0.16 0.05,0.32 0.08,0.48 z" + id="path1634" /> + <path + class="st1" + d="m 534.55,249.17 c 0.02,0.07 0.03,0.13 0.05,0.2 0.01,0.04 0.02,0.09 0.04,0.13 0.01,0.03 0.03,0.06 0.05,0.09 0.03,0.05 0.09,0.08 0.15,0.06 0.05,-0.02 0.1,-0.07 0.1,-0.13 0,-0.03 0,-0.07 0,-0.1 0,-0.05 -0.02,-0.09 -0.03,-0.13 -0.02,-0.06 -0.04,-0.13 -0.06,-0.19 -0.02,-0.07 -0.1,-0.13 -0.18,-0.1 -0.1,0.02 -0.14,0.09 -0.12,0.17 z" + id="path1636" /> + <path + class="st1" + d="m 537.34,247.27 c -0.06,0.04 -0.07,0.1 -0.04,0.15 0.07,0.15 0.13,0.31 0.21,0.45 0.03,0.06 0.11,0.08 0.17,0.04 0.06,-0.04 0.07,-0.1 0.04,-0.17 -0.07,-0.15 -0.15,-0.3 -0.22,-0.44 -0.04,-0.04 -0.11,-0.06 -0.16,-0.03 z" + id="path1638" /> + <path + class="st1" + d="m 536.95,245.01 c 0.05,0.22 0.1,0.44 0.16,0.66 0.03,0.11 0.05,0.22 0.08,0.32 0.02,0.05 0.04,0.1 0.06,0.15 0.02,0.06 0.04,0.11 0.09,0.16 0.05,0.05 0.15,0.03 0.16,-0.04 0.03,-0.1 -0.01,-0.23 -0.02,-0.33 -0.02,-0.11 -0.06,-0.22 -0.09,-0.33 -0.06,-0.22 -0.13,-0.43 -0.19,-0.65 -0.05,-0.17 -0.29,-0.1 -0.25,0.06 z" + id="path1640" /> + <path + class="st1" + d="m 540.72,245.33 c 0.01,0.03 0.04,0.05 0.07,0.04 0.03,-0.01 0.05,-0.04 0.04,-0.07 -0.01,-0.07 -0.02,-0.13 -0.03,-0.2 -0.01,-0.07 -0.03,-0.13 -0.04,-0.2 -0.01,-0.05 -0.07,-0.09 -0.12,-0.07 -0.05,0.02 -0.09,0.07 -0.07,0.12 0.02,0.06 0.04,0.13 0.07,0.19 0.03,0.06 0.06,0.13 0.08,0.19 z" + id="path1642" /> + <path + class="st1" + d="m 541.19,246.53 c 0.06,0.1 0.13,0.2 0.2,0.3 0.03,0.05 0.11,0.08 0.17,0.04 0.06,-0.04 0.08,-0.11 0.04,-0.17 -0.06,-0.11 -0.11,-0.21 -0.18,-0.32 -0.06,-0.1 -0.13,-0.21 -0.19,-0.31 -0.04,-0.06 -0.12,-0.08 -0.18,-0.05 -0.06,0.04 -0.08,0.12 -0.05,0.18 0.06,0.12 0.12,0.23 0.19,0.33 z" + id="path1644" /> + <path + class="st1" + d="m 544.43,243.53 c 0.01,0.01 0.01,0.01 0.02,0.02 0.01,0.01 0.02,0.02 0.03,0.02 0.02,0.01 0.04,0.01 0.07,0.01 0.02,-0.01 0.03,-0.01 0.05,-0.03 0.02,-0.02 0.03,-0.05 0.03,-0.07 0,-0.04 0,-0.09 -0.01,-0.13 -0.01,-0.03 -0.02,-0.07 -0.02,-0.1 -0.01,-0.03 -0.03,-0.06 -0.06,-0.08 -0.03,-0.02 -0.07,-0.02 -0.1,-0.01 -0.03,0.01 -0.06,0.03 -0.08,0.06 -0.02,0.03 -0.02,0.06 -0.01,0.1 0.01,0.03 0.02,0.07 0.03,0.1 0.01,0.03 0.03,0.07 0.05,0.11 z" + id="path1646" /> + <path + class="st1" + d="m 545.06,245.2 c 0.03,0.04 0.05,0.08 0.09,0.11 0.02,0.02 0.06,0.03 0.09,0.02 0.03,-0.01 0.06,-0.04 0.05,-0.08 0,-0.03 -0.01,-0.05 -0.01,-0.08 -0.01,-0.02 -0.01,-0.04 -0.02,-0.06 -0.02,-0.05 -0.03,-0.1 -0.06,-0.14 -0.04,-0.08 -0.08,-0.16 -0.12,-0.23 -0.03,-0.05 -0.11,-0.07 -0.16,-0.04 -0.06,0.04 -0.07,0.1 -0.04,0.16 0.04,0.08 0.08,0.16 0.11,0.23 0.02,0.04 0.05,0.07 0.07,0.11 z" + id="path1648" /> + <path + class="st1" + d="m 549.9,239.66 c 0.01,0.06 0.04,0.11 0.06,0.17 0.03,0.07 0.06,0.13 0.12,0.18 0.07,0.04 0.15,0.01 0.2,-0.05 0.04,-0.06 0.04,-0.13 0.04,-0.2 0,-0.07 0,-0.14 -0.01,-0.21 -0.02,-0.11 -0.04,-0.22 -0.07,-0.32 -0.05,-0.22 -0.09,-0.45 -0.14,-0.67 -0.02,-0.1 -0.14,-0.17 -0.24,-0.14 -0.11,0.03 -0.16,0.13 -0.14,0.24 0.04,0.23 0.08,0.45 0.12,0.68 0.03,0.1 0.04,0.21 0.06,0.32 z" + id="path1650" /> + <path + class="st1" + d="m 550.26,241.2 c 0.05,0.22 0.11,0.44 0.16,0.65 0.03,0.11 0.05,0.21 0.09,0.32 0.02,0.06 0.06,0.1 0.09,0.15 0.03,0.05 0.06,0.09 0.09,0.14 0.03,0.04 0.1,0.02 0.11,-0.03 0.01,-0.06 0.01,-0.11 0.01,-0.16 0,-0.06 0.01,-0.11 0,-0.17 -0.02,-0.11 -0.06,-0.22 -0.09,-0.33 -0.06,-0.22 -0.12,-0.43 -0.19,-0.65 -0.03,-0.19 -0.32,-0.11 -0.27,0.08 z" + id="path1652" /> + <path + class="st1" + d="m 553.74,238.95 c 0.02,-0.01 0.03,-0.03 0.03,-0.05 -0.02,-0.06 -0.03,-0.13 -0.05,-0.19 -0.01,-0.02 -0.04,-0.04 -0.06,-0.03 -0.02,0.01 -0.04,0.03 -0.03,0.06 0.02,0.06 0.04,0.13 0.06,0.19 0,0.02 0.02,0.03 0.05,0.02 z" + id="path1654" /> + <path + class="st1" + d="m 555.58,238.72 c 0.07,0.12 0.14,0.25 0.26,0.33 0.09,0.06 0.2,-0.04 0.18,-0.14 -0.03,-0.13 -0.12,-0.23 -0.18,-0.34 -0.06,-0.11 -0.12,-0.22 -0.17,-0.34 -0.1,-0.23 -0.17,-0.47 -0.21,-0.72 -0.01,-0.08 -0.11,-0.12 -0.18,-0.1 -0.08,0.02 -0.11,0.1 -0.1,0.18 0.04,0.27 0.12,0.53 0.23,0.78 0.05,0.12 0.11,0.24 0.17,0.35 z" + id="path1656" /> + <path + class="st1" + d="m 563.95,235.67 c 0.05,0.1 0.1,0.21 0.15,0.31 0.05,0.11 0.11,0.21 0.18,0.31 0.06,0.08 0.16,0.12 0.25,0.08 0.09,-0.04 0.15,-0.14 0.12,-0.24 -0.09,-0.23 -0.21,-0.45 -0.33,-0.67 -0.11,-0.21 -0.23,-0.42 -0.34,-0.63 -0.05,-0.09 -0.18,-0.12 -0.27,-0.07 -0.1,0.06 -0.11,0.17 -0.07,0.27 0.1,0.22 0.21,0.43 0.31,0.64 z" + id="path1658" /> + <path + class="st1" + d="m 565.43,238.42 c 0.03,0.02 0.07,0.03 0.1,0.03 0.04,0 0.03,-0.01 0.05,-0.01 0,0 -0.01,0 -0.01,0 0.06,-0.01 0.12,-0.03 0.14,-0.09 0.01,-0.03 0.01,-0.05 0,-0.08 0,0 0,-0.01 0,-0.01 0,-0.01 0,-0.01 0,-0.01 0,-0.02 0,-0.03 -0.01,-0.05 -0.01,-0.02 -0.01,-0.02 -0.02,-0.03 -0.01,-0.01 -0.02,-0.02 -0.02,-0.03 -0.02,-0.03 -0.05,-0.06 -0.08,-0.09 0,0 -0.01,-0.01 -0.01,-0.01 -0.01,-0.01 -0.01,-0.02 -0.02,-0.02 -0.02,-0.02 -0.03,-0.05 -0.05,-0.07 -0.01,-0.01 -0.01,-0.02 -0.02,-0.04 0,0 0,0 0,0.01 0,0 0,-0.01 -0.01,-0.01 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,-0.01 0,-0.01 -0.01,-0.03 -0.02,-0.06 -0.03,-0.09 0,-0.01 -0.01,-0.03 -0.01,-0.04 0,-0.01 0,-0.01 0,-0.02 0,-0.03 0,-0.07 0,-0.1 0.01,-0.08 -0.07,-0.15 -0.15,-0.17 -0.08,-0.01 -0.17,0.04 -0.18,0.12 -0.04,0.27 0.03,0.54 0.22,0.74 0.05,0.04 0.08,0.06 0.11,0.08 z" + id="path1660" /> + <path + class="st1" + d="m 566.7,235.58 c 0.06,0.12 0.12,0.25 0.18,0.37 0.03,0.06 0.05,0.11 0.08,0.17 0.04,0.07 0.09,0.13 0.15,0.19 0.06,0.06 0.16,0.07 0.23,0.03 0.08,-0.05 0.1,-0.13 0.09,-0.22 -0.02,-0.09 -0.03,-0.16 -0.07,-0.24 -0.03,-0.06 -0.05,-0.12 -0.08,-0.17 -0.06,-0.12 -0.12,-0.25 -0.18,-0.37 -0.12,-0.25 -0.24,-0.5 -0.36,-0.74 -0.05,-0.11 -0.21,-0.14 -0.31,-0.08 -0.11,0.07 -0.13,0.2 -0.08,0.31 0.11,0.25 0.23,0.5 0.35,0.75 z" + id="path1662" /> + <path + class="st1" + d="m 561.7,236.76 c 0.01,0.02 0.03,0.05 0.05,0.07 0.02,0.03 0.04,0.05 0.05,0.08 0.03,0.05 0.06,0.11 0.12,0.15 0.07,0.06 0.17,0.02 0.18,-0.07 0.01,-0.07 -0.01,-0.13 -0.03,-0.19 -0.01,-0.03 -0.02,-0.06 -0.02,-0.09 -0.01,-0.04 -0.01,-0.08 -0.03,-0.12 -0.05,-0.11 -0.1,-0.23 -0.14,-0.34 -0.02,-0.04 -0.07,-0.07 -0.11,-0.08 -0.04,-0.01 -0.1,-0.01 -0.14,0.02 -0.04,0.02 -0.07,0.06 -0.08,0.11 -0.01,0.05 0,0.09 0.02,0.14 0.03,0.1 0.07,0.21 0.13,0.32 z" + id="path1664" /> + <path + class="st1" + d="m 558.23,238.15 c 0.03,0.07 0.06,0.14 0.12,0.19 0.03,0.02 0.06,0.04 0.11,0.03 0.03,-0.01 0.07,-0.04 0.08,-0.08 0.01,-0.05 0.01,-0.09 -0.01,-0.14 -0.01,-0.03 -0.02,-0.06 -0.03,-0.09 -0.02,-0.07 -0.04,-0.13 -0.07,-0.2 -0.04,-0.13 -0.1,-0.26 -0.15,-0.39 -0.03,-0.08 -0.1,-0.14 -0.19,-0.11 -0.07,0.02 -0.14,0.11 -0.11,0.19 0.05,0.14 0.1,0.28 0.17,0.41 0.02,0.07 0.05,0.13 0.08,0.19 z" + id="path1666" /> + <path + class="st1" + d="m 569.49,232.48 c 0.04,0.09 0.08,0.17 0.12,0.26 0.02,0.04 0.03,0.08 0.05,0.12 0.02,0.03 0.05,0.04 0.08,0.07 0.01,0.01 0.03,0.04 0.04,0.05 0.04,0.04 0.11,0.05 0.16,0.02 0.05,-0.03 0.07,-0.09 0.06,-0.15 -0.01,-0.06 -0.01,-0.12 -0.03,-0.17 -0.02,-0.04 -0.04,-0.08 -0.06,-0.12 -0.04,-0.08 -0.08,-0.17 -0.13,-0.25 -0.08,-0.17 -0.17,-0.34 -0.25,-0.51 -0.04,-0.08 -0.15,-0.1 -0.22,-0.06 -0.08,0.05 -0.09,0.14 -0.06,0.22 0.08,0.18 0.16,0.35 0.24,0.52 z" + id="path1668" /> + <path + class="st1" + d="m 570.16,233.92 c 0.02,0.03 0.04,0.06 0.07,0.1 0.01,0.02 0.02,0.03 0.03,0.05 0.02,0.02 0.03,0.05 0.06,0.07 0.01,0.01 0.02,0.01 0.03,0.01 0.01,0.01 0.01,0.01 0.02,0.02 0.03,0.02 0.05,0.04 0.08,0.04 0.03,0 0.07,0 0.09,-0.02 0.01,-0.01 0.02,-0.02 0.03,-0.02 0.04,-0.03 0.05,-0.1 0.04,-0.14 -0.01,-0.02 -0.01,-0.03 -0.02,-0.05 0,-0.01 0,-0.02 0,-0.02 -0.01,-0.04 -0.03,-0.06 -0.06,-0.09 -0.01,-0.01 -0.02,-0.03 -0.04,-0.05 -0.03,-0.03 -0.05,-0.06 -0.08,-0.09 l -0.15,-0.19 c -0.02,-0.03 -0.08,-0.05 -0.11,-0.05 -0.04,0 -0.07,0.01 -0.1,0.03 -0.06,0.05 -0.09,0.14 -0.04,0.2 z" + id="path1670" /> + <path + class="st1" + d="m 572.17,232.56 c 0.1,0.2 0.2,0.4 0.33,0.58 0.03,0.05 0.09,0.07 0.15,0.05 0.05,-0.02 0.09,-0.08 0.07,-0.14 -0.08,-0.22 -0.19,-0.41 -0.3,-0.62 -0.11,-0.2 -0.21,-0.4 -0.32,-0.6 -0.08,-0.16 -0.32,-0.02 -0.24,0.14 0.1,0.2 0.21,0.4 0.31,0.59 z" + id="path1672" /> + <path + class="st1" + d="m 576.28,230.28 c 0.07,0.12 0.13,0.24 0.2,0.35 0.08,0.12 0.15,0.28 0.3,0.33 0.07,0.03 0.17,-0.03 0.19,-0.11 0.03,-0.15 -0.07,-0.29 -0.14,-0.43 -0.06,-0.12 -0.13,-0.23 -0.2,-0.35 -0.14,-0.24 -0.27,-0.47 -0.41,-0.71 -0.05,-0.09 -0.18,-0.13 -0.28,-0.07 -0.1,0.06 -0.13,0.18 -0.07,0.28 0.14,0.23 0.28,0.47 0.41,0.71 z" + id="path1674" /> + <path + class="st1" + d="m 577.12,231.98 c 0.01,0.01 0.02,0.02 0.02,0.03 0.01,0.01 0.03,0.02 0.05,0.03 0.03,0.01 0.06,0.02 0.09,0.01 0.02,-0.01 0.05,-0.02 0.06,-0.04 0.02,-0.02 0.04,-0.07 0.04,-0.1 0,-0.04 0,-0.07 -0.01,-0.11 l -0.06,-0.21 c -0.01,-0.04 -0.04,-0.07 -0.07,-0.09 -0.03,-0.02 -0.08,-0.03 -0.12,-0.01 -0.04,0.01 -0.07,0.04 -0.09,0.07 -0.02,0.04 -0.03,0.08 -0.01,0.12 l 0.06,0.21 c 0.01,0.03 0.03,0.06 0.04,0.09 z" + id="path1676" /> + <path + class="st1" + d="m 578.68,229.01 c -0.03,0.03 -0.05,0.06 -0.06,0.1 -0.01,0.05 0.01,0.09 0.04,0.13 0.06,0.08 0.13,0.16 0.19,0.24 0.06,0.08 0.12,0.17 0.2,0.24 0.03,0.03 0.07,0.03 0.11,0.01 0.03,-0.02 0.05,-0.06 0.04,-0.1 -0.03,-0.11 -0.09,-0.2 -0.15,-0.3 -0.05,-0.09 -0.1,-0.19 -0.16,-0.28 -0.03,-0.07 -0.14,-0.09 -0.21,-0.04 z" + id="path1678" /> + <path + class="st1" + d="m 581.1,227.27 c 0.02,0.03 0.04,0.07 0.05,0.1 0.01,0.02 0.02,0.03 0.03,0.05 0.01,0.02 0.02,0.03 0.04,0.05 -0.01,-0.01 -0.01,-0.01 0,0 0.02,0.03 0.04,0.07 0.06,0.1 0.03,0.04 0.06,0.07 0.09,0.11 0.08,0.09 0.23,-0.01 0.2,-0.12 -0.01,-0.05 -0.02,-0.09 -0.04,-0.14 -0.01,-0.03 -0.03,-0.06 -0.04,-0.1 0.01,0.01 0.01,0.01 0,-0.01 0,-0.01 -0.01,-0.02 -0.01,-0.03 -0.01,-0.03 -0.02,-0.05 -0.03,-0.07 -0.02,-0.03 -0.04,-0.07 -0.05,-0.1 -0.07,-0.14 -0.15,-0.28 -0.22,-0.42 -0.04,-0.08 -0.16,-0.11 -0.23,-0.06 -0.08,0.05 -0.1,0.15 -0.06,0.23 0.06,0.13 0.13,0.27 0.21,0.41 z" + id="path1680" /> + <path + class="st1" + d="m 583.18,226.35 c 0.06,0.13 0.12,0.25 0.18,0.37 0.06,0.12 0.11,0.26 0.22,0.35 0.09,0.07 0.24,0.03 0.24,-0.1 0,-0.15 -0.08,-0.28 -0.14,-0.41 -0.06,-0.13 -0.12,-0.26 -0.19,-0.39 -0.13,-0.25 -0.25,-0.5 -0.37,-0.76 -0.04,-0.08 -0.16,-0.1 -0.23,-0.06 -0.09,0.05 -0.1,0.15 -0.06,0.23 0.12,0.27 0.24,0.52 0.35,0.77 z" + id="path1682" /> + <path + class="st1" + d="m 584.07,228.2 c 0.01,0.01 0.02,0.03 0.03,0.04 0.01,0.01 0.01,0.01 0.02,0.02 0.01,0.01 0.03,0.02 0.05,0.03 0.02,0.01 0.04,0.01 0.06,0 0.02,-0.01 0.04,-0.01 0.05,-0.03 0.01,-0.01 0.02,-0.03 0.03,-0.05 0,-0.01 0.01,-0.02 0.01,-0.02 0.01,-0.02 0.01,-0.03 0.01,-0.05 0,-0.02 0,-0.03 0,-0.05 0,-0.03 -0.01,-0.06 -0.02,-0.09 0,-0.02 -0.01,-0.03 -0.01,-0.05 0,-0.02 -0.01,-0.04 -0.03,-0.05 -0.01,-0.02 -0.03,-0.03 -0.04,-0.04 -0.02,-0.01 -0.04,-0.02 -0.06,-0.02 -0.02,0 -0.04,0 -0.06,0 -0.04,0.01 -0.07,0.04 -0.09,0.07 -0.02,0.03 -0.03,0.08 -0.02,0.12 0.01,0.04 0.03,0.09 0.05,0.13 0,0.02 0.01,0.03 0.02,0.04 z" + id="path1684" /> + <path + class="st1" + d="m 580.99,231.19 c 0.05,0.08 0.1,0.17 0.17,0.24 0.07,0.07 0.11,0.15 0.2,0.19 0.06,0.02 0.11,-0.04 0.12,-0.09 0,-0.05 -0.02,-0.1 -0.04,-0.15 -0.02,-0.04 -0.03,-0.07 -0.04,-0.11 -0.03,-0.09 -0.09,-0.17 -0.14,-0.25 -0.1,-0.15 -0.19,-0.31 -0.29,-0.46 -0.04,-0.07 -0.14,-0.1 -0.21,-0.06 -0.07,0.05 -0.1,0.14 -0.05,0.21 0.08,0.17 0.18,0.32 0.28,0.48 z" + id="path1686" /> + <path + class="st1" + d="m 586.32,229.44 c 0.09,-0.04 0.14,-0.14 0.12,-0.23 -0.1,-0.34 -0.26,-0.68 -0.39,-1.01 -0.04,-0.09 -0.12,-0.16 -0.22,-0.13 -0.09,0.03 -0.16,0.13 -0.13,0.22 0.12,0.36 0.23,0.72 0.38,1.07 0.03,0.09 0.16,0.12 0.24,0.08 z" + id="path1688" /> + <path + class="st1" + d="m 587.55,224.99 c 0.12,0.16 0.22,0.34 0.36,0.48 0.09,0.09 0.21,-0.02 0.16,-0.12 -0.08,-0.18 -0.21,-0.33 -0.32,-0.49 l -0.33,-0.48 c -0.04,-0.06 -0.11,-0.08 -0.17,-0.04 -0.05,0.03 -0.08,0.12 -0.04,0.17 0.11,0.16 0.23,0.32 0.34,0.48 z" + id="path1690" /> + <path + class="st1" + d="m 588.48,226.93 c 0.02,0.04 0.07,0.07 0.12,0.07 0.05,0 0.1,-0.03 0.12,-0.07 0.02,-0.03 0.02,-0.07 0.02,-0.11 0,-0.02 0,-0.04 0.01,-0.06 0,-0.02 0,-0.04 0,-0.06 0,-0.08 -0.01,-0.15 -0.01,-0.23 0,-0.04 -0.01,-0.08 -0.04,-0.1 -0.02,-0.02 -0.06,-0.04 -0.1,-0.04 -0.08,0 -0.14,0.06 -0.14,0.14 v 0.23 c 0,0.04 0,0.08 0.01,0.12 -0.01,0.04 -0.01,0.08 0.01,0.11 z" + id="path1692" /> + <path + class="st1" + d="m 589.22,224.23 c 0.02,0.05 0.04,0.09 0.06,0.14 0.03,0.06 0.06,0.11 0.1,0.17 0.09,0.12 0.28,0.05 0.25,-0.1 -0.02,-0.06 -0.03,-0.13 -0.05,-0.19 -0.02,-0.05 -0.04,-0.09 -0.07,-0.14 -0.05,-0.1 -0.1,-0.2 -0.15,-0.3 -0.1,-0.2 -0.2,-0.39 -0.3,-0.6 -0.05,-0.11 -0.26,-0.03 -0.21,0.09 0.09,0.21 0.17,0.41 0.24,0.62 0.04,0.11 0.08,0.21 0.13,0.31 z" + id="path1694" /> + <path + class="st1" + d="m 592.43,221.77 c 0.02,0.02 0.05,0.04 0.07,0.07 0.01,0.01 0.03,0.03 0.04,0.04 0.02,0.02 0.05,0.04 0.08,0.04 0.02,0.01 0.01,0.01 0,0 0.01,0 0.03,0.02 0.03,0.02 0.01,0.01 0.03,0.02 0.04,0.03 0.01,0.01 0.03,0.02 0.04,0.03 0.02,0.01 0.04,0.02 0.07,0.02 0.09,0.02 0.16,-0.05 0.14,-0.14 0,-0.02 -0.01,-0.05 -0.02,-0.07 -0.01,-0.02 -0.02,-0.03 -0.03,-0.04 -0.01,-0.01 -0.02,-0.03 -0.03,-0.04 0,-0.01 -0.03,-0.03 -0.03,-0.04 0,0 0,0 0,0 -0.01,-0.03 -0.02,-0.06 -0.05,-0.08 -0.01,-0.01 -0.03,-0.03 -0.04,-0.04 -0.02,-0.02 -0.04,-0.05 -0.07,-0.07 -0.1,-0.1 -0.19,-0.2 -0.29,-0.3 -0.07,-0.07 -0.19,-0.07 -0.26,0 -0.07,0.07 -0.07,0.19 0,0.26 0.12,0.11 0.21,0.21 0.31,0.31 z" + id="path1696" /> + <path + class="st1" + d="m 593.09,222.92 0.02,0.05 c 0.01,0.02 0.03,0.04 0.04,0.05 0.02,0.02 0.06,0.03 0.09,0.02 0.03,-0.01 0.05,-0.03 0.06,-0.06 0.01,-0.02 0.01,-0.04 0.01,-0.07 l -0.01,-0.05 c 0,-0.03 -0.01,-0.07 -0.01,-0.1 0,-0.02 -0.01,-0.05 -0.02,-0.07 -0.01,-0.02 -0.03,-0.04 -0.05,-0.05 -0.03,-0.02 -0.07,-0.02 -0.1,-0.01 -0.03,0.01 -0.06,0.03 -0.08,0.06 -0.01,0.02 -0.02,0.04 -0.02,0.07 0,0.02 0.01,0.05 0.02,0.07 0.02,0.03 0.03,0.06 0.05,0.09 z" + id="path1698" /> + <path + class="st1" + d="m 596.05,221.09 c 0.04,0.07 0.09,0.12 0.14,0.18 0.06,0.07 0.18,-0.01 0.16,-0.09 -0.02,-0.07 -0.04,-0.14 -0.08,-0.2 -0.03,-0.06 -0.07,-0.13 -0.1,-0.19 -0.07,-0.12 -0.13,-0.25 -0.2,-0.37 -0.03,-0.06 -0.12,-0.08 -0.18,-0.05 -0.06,0.04 -0.08,0.11 -0.05,0.18 0.07,0.12 0.14,0.24 0.21,0.36 0.03,0.06 0.07,0.12 0.1,0.18 z" + id="path1700" /> + <path + class="st1" + d="m 598.81,219.17 c 0.05,0.07 0.1,0.14 0.15,0.21 0.05,0.06 0.1,0.14 0.17,0.18 0.05,0.03 0.14,-0.01 0.13,-0.08 0,-0.03 -0.01,-0.06 -0.02,-0.08 -0.01,-0.02 -0.02,-0.03 -0.02,-0.05 l -0.06,-0.11 c -0.04,-0.07 -0.07,-0.14 -0.12,-0.21 -0.09,-0.14 -0.18,-0.27 -0.27,-0.41 -0.04,-0.06 -0.13,-0.09 -0.19,-0.05 -0.06,0.04 -0.09,0.13 -0.05,0.19 z" + id="path1702" /> + <path + class="st1" + d="m 599.71,220.6 c 0.15,-0.04 0.09,-0.28 -0.07,-0.24 -0.15,0.04 -0.09,0.28 0.07,0.24 z" + id="path1704" /> + <path + class="st1" + d="m 602.28,217.28 c 0.05,0.09 0.1,0.19 0.16,0.28 0.03,0.05 0.06,0.09 0.09,0.14 0.02,0.03 0.03,0.06 0.06,0.08 0.03,0.03 0.07,0.04 0.11,0.06 0.08,0.03 0.18,-0.03 0.19,-0.11 0.01,-0.04 0.02,-0.09 0.01,-0.13 -0.01,-0.03 -0.03,-0.06 -0.04,-0.09 -0.02,-0.05 -0.05,-0.1 -0.07,-0.15 -0.05,-0.1 -0.1,-0.19 -0.15,-0.28 -0.11,-0.19 -0.21,-0.38 -0.32,-0.57 -0.05,-0.09 -0.18,-0.13 -0.27,-0.07 -0.09,0.06 -0.12,0.18 -0.07,0.27 z" + id="path1706" /> + <path + class="st1" + d="m 603.41,219.99 c 0.03,0.12 0.05,0.25 0.14,0.34 0.07,0.07 0.2,0.04 0.23,-0.06 0.02,-0.07 0.01,-0.13 -0.01,-0.2 -0.01,-0.05 -0.03,-0.1 -0.04,-0.15 -0.03,-0.11 -0.07,-0.22 -0.1,-0.33 -0.07,-0.21 -0.13,-0.43 -0.19,-0.65 -0.05,-0.16 -0.29,-0.09 -0.25,0.07 0.05,0.22 0.11,0.44 0.16,0.66 0.01,0.11 0.03,0.21 0.06,0.32 z" + id="path1708" /> + <path + class="st1" + d="m 606.38,217.51 c 0.08,0.16 0.15,0.32 0.26,0.45 0.12,0.14 0.24,0.25 0.28,0.44 0.03,0.11 0.2,0.03 0.12,-0.07 -0.12,-0.15 -0.14,-0.32 -0.18,-0.5 -0.04,-0.17 -0.13,-0.33 -0.21,-0.48 -0.16,-0.32 -0.33,-0.63 -0.49,-0.95 -0.09,-0.17 -0.34,-0.02 -0.26,0.15 0.17,0.32 0.32,0.64 0.48,0.96 z" + id="path1710" /> + <path + class="st1" + d="m 609.59,215.56 c 0.09,0.14 0.17,0.3 0.27,0.43 0.05,0.07 0.15,0.11 0.23,0.06 0.08,-0.05 0.1,-0.14 0.06,-0.23 -0.08,-0.15 -0.18,-0.29 -0.27,-0.43 -0.09,-0.14 -0.18,-0.29 -0.27,-0.43 -0.05,-0.07 -0.15,-0.11 -0.23,-0.06 -0.07,0.05 -0.11,0.15 -0.06,0.23 z" + id="path1712" /> + <path + class="st1" + d="m 610.45,216.75 c 0.14,-0.04 0.08,-0.26 -0.06,-0.22 -0.15,0.04 -0.09,0.26 0.06,0.22 z" + id="path1714" /> + <path + class="st1" + d="m 613.79,213.87 c 0.1,0.17 0.19,0.36 0.33,0.5 0.1,0.1 0.27,0 0.23,-0.13 -0.05,-0.19 -0.17,-0.36 -0.27,-0.53 l -0.29,-0.5 c -0.04,-0.08 -0.15,-0.1 -0.22,-0.06 -0.08,0.04 -0.1,0.15 -0.06,0.22 0.09,0.16 0.19,0.33 0.28,0.5 z" + id="path1716" /> + <path + class="st1" + d="m 615.5,213.87 c 0.03,0.04 0.06,0.09 0.09,0.13 0.03,0.04 0.06,0.08 0.1,0.12 0.02,0.02 0.03,0.04 0.05,0.07 0.02,0.03 0.05,0.05 0.08,0.08 0.04,0.03 0.07,0.07 0.11,0.11 0.07,0.06 0.2,0.01 0.17,-0.1 -0.02,-0.06 -0.05,-0.12 -0.07,-0.18 l 0.02,0.07 c -0.01,-0.06 -0.02,-0.1 -0.05,-0.16 -0.02,-0.04 -0.04,-0.08 -0.07,-0.13 -0.05,-0.08 -0.11,-0.16 -0.16,-0.24 -0.11,-0.16 -0.21,-0.32 -0.32,-0.48 -0.05,-0.08 -0.15,-0.11 -0.23,-0.06 -0.08,0.04 -0.11,0.15 -0.06,0.23 0.1,0.19 0.22,0.37 0.34,0.54 z" + id="path1718" /> + <path + class="st1" + d="m 616.51,215.09 c -0.04,-0.13 -0.09,-0.25 -0.13,-0.38 -0.03,-0.09 -0.13,-0.16 -0.22,-0.13 -0.09,0.03 -0.15,0.12 -0.13,0.22 0.06,0.22 0.13,0.44 0.18,0.67 0.02,0.08 0.09,0.13 0.17,0.15 0.07,0.01 0.17,-0.03 0.2,-0.1 0.02,-0.04 0.04,-0.09 0.05,-0.13 0.02,-0.04 0.02,-0.08 0,-0.12 0,-0.03 0.01,-0.05 0.01,-0.08 0.02,-0.06 -0.06,-0.12 -0.13,-0.1 z" + id="path1720" /> + <path + class="st1" + d="m 616.54,212.14 c 0.1,0.17 0.2,0.35 0.31,0.52 0.06,0.09 0.11,0.18 0.18,0.27 0.06,0.08 0.13,0.19 0.23,0.22 0.07,0.02 0.14,-0.02 0.16,-0.09 0.03,-0.11 -0.04,-0.21 -0.08,-0.31 -0.04,-0.1 -0.1,-0.19 -0.15,-0.29 -0.1,-0.17 -0.2,-0.35 -0.3,-0.52 -0.05,-0.09 -0.18,-0.13 -0.27,-0.07 -0.1,0.06 -0.13,0.17 -0.08,0.27 z" + id="path1722" /> + <path + class="st1" + d="m 617.91,214.53 c 0.16,-0.04 0.09,-0.29 -0.07,-0.24 -0.16,0.04 -0.09,0.29 0.07,0.24 z" + id="path1724" /> + <path + class="st1" + d="m 619.6,211.21 c 0.08,0.16 0.14,0.33 0.28,0.44 0.04,0.04 0.1,0.05 0.16,0.03 0.05,-0.02 0.09,-0.07 0.09,-0.13 0,-0.05 -0.01,-0.11 -0.02,-0.16 -0.02,-0.05 -0.04,-0.09 -0.06,-0.14 -0.04,-0.08 -0.08,-0.15 -0.11,-0.23 l -0.23,-0.46 c -0.04,-0.09 -0.18,-0.12 -0.26,-0.07 -0.09,0.06 -0.12,0.17 -0.07,0.26 0.07,0.15 0.15,0.3 0.22,0.46 z" + id="path1726" /> + <path + class="st1" + d="m 620.47,212.54 c 0.21,-0.06 0.12,-0.38 -0.09,-0.32 -0.21,0.05 -0.12,0.37 0.09,0.32 z" + id="path1728" /> + <path + class="st1" + d="m 622.99,208.19 c 0.05,0.1 0.1,0.2 0.16,0.29 l 0.09,0.15 c 0.01,0.02 0.03,0.04 0.04,0.07 0.03,0.04 0.06,0.06 0.09,0.08 0.08,0.06 0.2,-0.02 0.2,-0.12 0,-0.13 -0.08,-0.24 -0.13,-0.36 -0.05,-0.1 -0.1,-0.2 -0.15,-0.3 -0.11,-0.2 -0.22,-0.41 -0.33,-0.61 -0.04,-0.08 -0.16,-0.11 -0.24,-0.06 -0.09,0.05 -0.11,0.16 -0.06,0.24 0.12,0.22 0.23,0.42 0.33,0.62 z" + id="path1730" /> + <path + class="st1" + d="m 624.03,212.66 c 0.02,0.06 0.06,0.11 0.08,0.17 0.02,0.05 0.05,0.09 0.07,0.13 0.03,0.05 0.05,0.11 0.08,0.16 0.03,0.04 0.12,0.04 0.12,-0.03 0,-0.06 -0.02,-0.11 -0.03,-0.17 -0.01,-0.05 -0.02,-0.1 -0.03,-0.15 -0.01,-0.05 -0.02,-0.11 -0.03,-0.16 -0.02,-0.05 -0.03,-0.11 -0.05,-0.16 -0.07,-0.21 -0.14,-0.42 -0.22,-0.63 -0.03,-0.08 -0.1,-0.13 -0.18,-0.1 -0.07,0.02 -0.13,0.11 -0.1,0.18 0.08,0.21 0.15,0.42 0.23,0.62 0.02,0.04 0.04,0.09 0.06,0.14 z" + id="path1732" /> + <path + class="st1" + d="m 626.51,212.71 c 0.05,0.1 0.09,0.2 0.15,0.3 0.01,0.02 0.02,0.05 0.04,0.07 0.01,0.02 0.03,0.04 0.05,0.05 0.01,0.01 0.02,0.02 0.04,0.02 0.03,0.03 0.05,0.08 0.1,0.11 0.07,0.06 0.17,0.02 0.18,-0.07 0.01,-0.06 -0.02,-0.12 -0.02,-0.18 0,0.03 0.01,0.03 0.01,-0.01 0.01,-0.03 0,-0.05 0,-0.08 -0.01,-0.02 -0.02,-0.05 -0.03,-0.07 -0.04,-0.12 -0.09,-0.23 -0.14,-0.35 -0.09,-0.21 -0.18,-0.42 -0.28,-0.62 -0.04,-0.1 -0.2,-0.13 -0.28,-0.07 -0.1,0.07 -0.12,0.18 -0.07,0.28 0.07,0.22 0.16,0.42 0.25,0.62 z" + id="path1734" /> + <path + class="st1" + d="m 627.44,206.46 c 0.04,0.09 0.08,0.17 0.12,0.26 l 0.07,0.12 c 0.03,0.06 0.06,0.1 0.12,0.13 0.09,0.06 0.18,-0.02 0.19,-0.11 0.01,-0.1 -0.05,-0.19 -0.08,-0.28 -0.04,-0.1 -0.09,-0.19 -0.13,-0.29 -0.08,-0.17 -0.17,-0.35 -0.25,-0.52 -0.04,-0.08 -0.15,-0.1 -0.22,-0.06 -0.08,0.05 -0.09,0.14 -0.06,0.22 0.08,0.18 0.16,0.36 0.24,0.53 z" + id="path1736" /> + <path + class="st1" + d="m 628.47,208.34 c 0.01,0.04 0.04,0.08 0.06,0.12 0.03,0.04 0.09,0.08 0.14,0.06 0.06,-0.02 0.09,-0.06 0.09,-0.12 0,-0.05 0.01,-0.09 0,-0.13 -0.01,-0.03 -0.02,-0.07 -0.02,-0.1 -0.02,-0.07 -0.04,-0.13 -0.06,-0.2 -0.02,-0.08 -0.11,-0.13 -0.18,-0.11 -0.08,0.03 -0.13,0.1 -0.11,0.18 0.02,0.07 0.03,0.13 0.05,0.2 z" + id="path1738" /> + <path + class="st1" + d="m 631.13,205.17 c 0.04,0.04 0.08,0.09 0.12,0.13 0.04,0.05 0.1,0.08 0.15,0.12 0.09,0.06 0.18,0.17 0.29,0.18 0.05,0 0.09,-0.05 0.09,-0.09 0,-0.07 -0.04,-0.12 -0.07,-0.18 -0.03,-0.05 -0.06,-0.09 -0.08,-0.14 -0.06,-0.11 -0.14,-0.2 -0.23,-0.29 -0.16,-0.18 -0.31,-0.35 -0.47,-0.53 -0.07,-0.08 -0.21,-0.07 -0.28,0 -0.08,0.08 -0.07,0.2 0,0.28 0.16,0.17 0.32,0.35 0.48,0.52 z" + id="path1740" /> + <path + class="st1" + d="m 632.41,207.18 c 0.01,0.03 0.01,0.06 0.02,0.09 0.01,0.04 0.04,0.08 0.06,0.11 0.06,0.1 0.22,0.06 0.22,-0.06 0,-0.04 0,-0.08 -0.01,-0.13 -0.01,-0.03 -0.02,-0.06 -0.03,-0.09 -0.02,-0.07 -0.04,-0.13 -0.06,-0.2 -0.04,-0.13 -0.07,-0.26 -0.11,-0.39 -0.02,-0.07 -0.09,-0.12 -0.16,-0.09 -0.07,0.02 -0.11,0.09 -0.09,0.16 0.03,0.13 0.07,0.26 0.1,0.39 0.02,0.08 0.04,0.15 0.06,0.21 z" + id="path1742" /> + <path + class="st1" + d="m 633.59,203.7 c 0.12,0.18 0.23,0.37 0.38,0.53 0.05,0.05 0.14,0.06 0.21,0.03 0.06,-0.03 0.11,-0.12 0.08,-0.19 -0.04,-0.1 -0.09,-0.2 -0.15,-0.29 -0.06,-0.09 -0.12,-0.18 -0.18,-0.26 -0.12,-0.17 -0.24,-0.35 -0.36,-0.52 -0.05,-0.08 -0.15,-0.11 -0.24,-0.06 -0.08,0.05 -0.11,0.16 -0.06,0.24 0.1,0.16 0.21,0.34 0.32,0.52 z" + id="path1744" /> + <path + class="st1" + d="m 637.27,202.39 c 0.12,0.21 0.23,0.42 0.34,0.63 0.11,0.22 0.21,0.45 0.36,0.65 0.16,0.21 0.26,0.41 0.33,0.66 0.03,0.12 0.07,0.23 0.1,0.34 0.04,0.12 0.06,0.25 0.13,0.36 0.09,0.13 0.34,0.1 0.33,-0.09 -0.02,-0.24 -0.17,-0.49 -0.29,-0.7 -0.13,-0.23 -0.23,-0.45 -0.29,-0.7 -0.13,-0.48 -0.45,-0.92 -0.73,-1.33 -0.11,-0.17 -0.39,-0.01 -0.28,0.18 z" + id="path1746" /> + <path + class="st1" + d="m 642.42,201.47 c 0,0 -0.01,-0.01 0,0 -0.01,-0.01 -0.01,0 -0.02,0 0.01,-0.01 0.01,-0.01 0.02,0 z" + id="path1748" /> + <path + class="st1" + d="m 642.38,201.46 c 0.01,0 0.01,0 0.02,0 -0.02,-0.01 -0.04,-0.01 -0.06,-0.02 0.02,0.01 0.03,0.02 0.04,0.02 z" + id="path1750" /> + <path + class="st1" + d="m 641.97,200.98 c 0.06,0.08 0.11,0.17 0.17,0.25 0.03,0.04 0.06,0.08 0.09,0.12 0.05,0.07 0.1,0.1 0.18,0.11 0.08,0.02 0.17,-0.02 0.16,-0.11 0,-0.02 0,-0.02 0,-0.01 0,-0.02 0.01,-0.04 0.01,-0.06 0,-0.04 -0.02,-0.07 -0.04,-0.11 -0.03,-0.04 -0.05,-0.08 -0.08,-0.13 -0.06,-0.08 -0.12,-0.16 -0.18,-0.25 -0.12,-0.16 -0.24,-0.33 -0.36,-0.49 -0.05,-0.07 -0.15,-0.11 -0.23,-0.06 -0.07,0.04 -0.11,0.15 -0.06,0.23 0.11,0.18 0.22,0.35 0.34,0.51 z" + id="path1752" /> + <path + class="st1" + d="m 642.83,202.23 c 0.02,0.03 0.04,0.06 0.06,0.08 0.03,0.04 0.09,0.05 0.13,0.03 0.04,-0.01 0.09,-0.05 0.1,-0.1 0.01,-0.03 0.01,-0.07 0.01,-0.1 0,-0.04 -0.01,-0.07 -0.02,-0.11 -0.01,-0.05 -0.03,-0.09 -0.04,-0.14 -0.01,-0.04 -0.04,-0.08 -0.07,-0.1 -0.03,-0.02 -0.08,-0.03 -0.12,-0.02 -0.04,0.01 -0.08,0.04 -0.1,0.07 -0.02,0.04 -0.03,0.08 -0.02,0.12 0.01,0.05 0.02,0.1 0.03,0.14 0.02,0.07 0.02,0.11 0.04,0.13 z" + id="path1754" /> + <path + class="st1" + d="m 645.15,199.35 c 0.06,0.08 0.13,0.16 0.2,0.23 0.03,0.03 0.06,0.07 0.09,0.1 0.04,0.04 0.09,0.06 0.14,0.08 0.06,0.02 0.13,-0.03 0.13,-0.1 0,-0.06 -0.01,-0.1 -0.03,-0.15 -0.02,-0.04 -0.05,-0.08 -0.07,-0.12 -0.05,-0.08 -0.1,-0.16 -0.15,-0.23 -0.11,-0.15 -0.22,-0.3 -0.33,-0.45 -0.06,-0.08 -0.16,-0.12 -0.25,-0.06 -0.07,0.05 -0.12,0.17 -0.06,0.25 0.1,0.15 0.21,0.3 0.33,0.45 z" + id="path1756" /> + <path + class="st1" + d="m 646.05,200.56 c -0.03,0.01 -0.06,0.03 -0.08,0.06 -0.01,0.03 -0.02,0.06 -0.01,0.09 0.01,0.03 0.03,0.06 0.06,0.08 0.04,0.02 0.08,0.05 0.13,0.07 0.03,0.02 0.06,0.02 0.09,0.03 0.01,0 0.02,0.01 0.03,0.01 0.02,0 0.04,0 0.05,0.01 0.06,0 0.11,-0.08 0.07,-0.13 -0.01,-0.01 -0.02,-0.03 -0.03,-0.04 -0.01,-0.01 -0.02,-0.02 -0.02,-0.02 -0.02,-0.02 -0.05,-0.05 -0.08,-0.06 -0.04,-0.02 -0.08,-0.05 -0.12,-0.07 -0.02,-0.03 -0.06,-0.04 -0.09,-0.03 z" + id="path1758" /> + <path + class="st1" + d="m 648.08,198.46 c 0.04,0.05 0.09,0.11 0.13,0.16 0.01,0.01 0.02,0.02 0.03,0.04 0.02,0.02 0.04,0.03 0.06,0.05 0.01,0.01 0.05,0.04 0.06,0.06 0.04,0.04 0.1,0.04 0.14,0.01 0.04,-0.04 0.05,-0.09 0.03,-0.14 -0.03,-0.07 -0.05,-0.13 -0.1,-0.2 -0.04,-0.06 -0.07,-0.12 -0.11,-0.17 -0.08,-0.12 -0.16,-0.23 -0.25,-0.35 -0.05,-0.07 -0.14,-0.11 -0.22,-0.06 -0.07,0.04 -0.11,0.15 -0.06,0.22 0.1,0.13 0.19,0.26 0.29,0.38 z" + id="path1760" /> + <path + class="st1" + d="m 648.82,199.72 c -0.13,0.04 -0.08,0.24 0.06,0.21 0.13,-0.04 0.08,-0.25 -0.06,-0.21 z" + id="path1762" /> + <path + class="st1" + d="m 650.79,196.73 c 0.04,0.09 0.07,0.18 0.12,0.26 0.05,0.1 0.1,0.22 0.2,0.28 0.1,0.06 0.27,0.01 0.29,-0.12 0.01,-0.05 0.01,-0.09 0,-0.14 -0.01,-0.02 -0.02,-0.05 -0.03,-0.07 -0.02,-0.04 -0.03,-0.08 -0.05,-0.12 -0.04,-0.1 -0.1,-0.2 -0.15,-0.3 -0.09,-0.17 -0.18,-0.34 -0.27,-0.51 -0.05,-0.09 -0.18,-0.13 -0.27,-0.07 -0.1,0.06 -0.11,0.17 -0.07,0.27 0.08,0.17 0.16,0.35 0.23,0.52 z" + id="path1764" /> + <path + class="st1" + d="m 651.81,198.83 c 0.01,0 0.03,0.01 0.04,0.01 0.01,0 0.03,0 0.04,-0.01 l 0.04,-0.02 c 0.02,-0.01 0.03,-0.02 0.04,-0.04 0.02,-0.03 0.03,-0.06 0.03,-0.09 0,-0.03 0,-0.06 0,-0.09 0,-0.03 0,-0.07 -0.01,-0.1 0,-0.06 -0.01,-0.13 -0.01,-0.19 0,-0.04 -0.01,-0.08 -0.04,-0.1 -0.02,-0.02 -0.06,-0.04 -0.1,-0.04 -0.08,0 -0.14,0.06 -0.14,0.14 0,0.06 0,0.13 0,0.19 0,0.03 0,0.06 0,0.09 0,0.03 0,0.07 0,0.1 0,0.04 0.01,0.07 0.03,0.1 0.02,0.02 0.05,0.04 0.08,0.05 z" + id="path1766" /> + <path + class="st1" + d="m 654.94,194.5 0.15,0.26 c 0.06,0.11 0.13,0.23 0.27,0.24 0.05,0 0.11,-0.03 0.13,-0.07 0.06,-0.13 -0.01,-0.25 -0.08,-0.36 -0.05,-0.09 -0.1,-0.18 -0.16,-0.26 -0.1,-0.18 -0.21,-0.35 -0.31,-0.53 -0.05,-0.08 -0.17,-0.12 -0.25,-0.06 -0.08,0.05 -0.11,0.16 -0.06,0.25 0.1,0.18 0.2,0.35 0.31,0.53 z" + id="path1768" /> + <path + class="st1" + d="m 521.93,268.48 c -0.02,-0.15 -0.03,-0.3 -0.05,-0.44 -0.03,-0.3 -0.07,-0.59 -0.1,-0.89 -0.01,-0.09 -0.16,-0.1 -0.15,0 0.03,0.3 0.05,0.6 0.08,0.9 0.01,0.15 0.03,0.3 0.04,0.44 0.01,0.07 0.01,0.15 0.02,0.22 0.01,0.07 0.01,0.15 0.04,0.21 0.04,0.06 0.12,0.04 0.14,-0.02 0.02,-0.07 0.01,-0.15 0,-0.22 -0.01,-0.07 -0.02,-0.13 -0.02,-0.2 z" + id="path1770" /> + <path + class="st1" + d="m 523.29,271.17 c 0.04,0.05 0.12,0.02 0.14,-0.04 0.02,-0.07 0,-0.14 -0.02,-0.21 -0.01,-0.07 -0.03,-0.13 -0.04,-0.2 -0.03,-0.15 -0.06,-0.3 -0.1,-0.45 -0.06,-0.29 -0.13,-0.59 -0.19,-0.88 -0.02,-0.07 -0.12,-0.04 -0.11,0.03 0.05,0.3 0.1,0.59 0.15,0.89 0.02,0.15 0.05,0.29 0.07,0.44 0.01,0.07 0.02,0.15 0.04,0.22 0.01,0.08 0.01,0.14 0.06,0.2 z" + id="path1772" /> + <path + class="st1" + d="m 529.02,270.4 c 0.01,0.04 0.03,0.09 0.05,0.13 0.02,0.06 0.11,0.04 0.1,-0.03 -0.01,-0.05 -0.01,-0.09 -0.02,-0.13 -0.01,-0.04 -0.02,-0.08 -0.04,-0.13 -0.02,-0.09 -0.05,-0.17 -0.07,-0.26 -0.02,-0.07 -0.13,-0.04 -0.11,0.03 0.02,0.09 0.04,0.17 0.07,0.26 z" + id="path1774" /> + <path + class="st1" + d="m 513.8,277.75 c -0.18,-0.38 -0.33,-0.77 -0.49,-1.16 -0.02,-0.05 -0.1,-0.03 -0.08,0.02 0.15,0.39 0.29,0.78 0.43,1.17 0.06,0.19 0.13,0.39 0.2,0.58 0.07,0.18 0.12,0.39 0.24,0.53 0.04,0.05 0.13,0.01 0.13,-0.05 -0.01,-0.19 -0.11,-0.38 -0.19,-0.55 -0.08,-0.18 -0.16,-0.36 -0.24,-0.54 z" + id="path1776" /> + <path + class="st1" + d="m 517.36,279.52 c 0.02,0.03 0.03,0.05 0.05,0.07 0.02,0.02 0.04,0.04 0.06,0.05 0.05,0.03 0.12,-0.01 0.12,-0.07 0,-0.1 -0.07,-0.2 -0.11,-0.29 -0.04,-0.08 -0.09,-0.17 -0.14,-0.25 -0.03,-0.05 -0.1,-0.07 -0.15,-0.04 -0.05,0.03 -0.07,0.1 -0.04,0.15 0.05,0.08 0.09,0.17 0.14,0.25 0.02,0.06 0.05,0.1 0.07,0.13 z" + id="path1778" /> + <path + class="st1" + d="m 520.3,277.71 c 0.02,0 0.04,-0.01 0.06,-0.01 0.04,-0.01 0.07,-0.03 0.09,-0.06 0,0 0.01,0 0.01,-0.01 0.03,-0.02 0.05,-0.06 0.04,-0.1 -0.01,-0.04 -0.04,-0.06 -0.08,-0.06 0,0 -0.01,0 -0.01,0 -0.03,-0.02 -0.07,-0.02 -0.11,-0.01 -0.02,0.01 -0.04,0.01 -0.06,0.02 l -0.11,0.04 c -0.03,0.01 -0.05,0.03 -0.07,0.05 -0.01,0.02 -0.02,0.06 -0.01,0.09 0.02,0.06 0.08,0.09 0.14,0.08 0.03,-0.01 0.07,-0.02 0.11,-0.03 z" + id="path1780" /> + <path + class="st1" + d="m 521.94,277.1 c -0.06,0.02 -0.03,0.11 0.02,0.09 0.06,-0.02 0.04,-0.11 -0.02,-0.09 z" + id="path1782" /> + <path + class="st1" + d="m 523.79,275.79 c 0.3,-0.08 0.17,-0.54 -0.12,-0.46 -0.3,0.08 -0.18,0.54 0.12,0.46 z" + id="path1784" /> + <path + class="st1" + d="m 499.92,280.86 c -0.15,-0.49 -0.25,-0.99 -0.3,-1.49 -0.11,-1 0,-2 0.36,-2.95 0.06,-0.16 -0.19,-0.22 -0.25,-0.07 -0.39,0.98 -0.55,2.08 -0.41,3.13 0.07,0.5 0.21,0.99 0.41,1.46 0.2,0.46 0.44,1 0.78,1.36 0.04,0.04 0.1,-0.01 0.07,-0.06 -0.11,-0.22 -0.26,-0.42 -0.37,-0.64 -0.11,-0.24 -0.21,-0.48 -0.29,-0.74 z" + id="path1786" /> + <path + class="st1" + d="m 501.87,279.31 c -0.12,0.03 -0.07,0.21 0.05,0.18 0.12,-0.03 0.07,-0.21 -0.05,-0.18 z" + id="path1788" /> + <path + class="st1" + d="m 508.93,278.42 c 0.11,-0.03 0.06,-0.2 -0.05,-0.17 -0.11,0.02 -0.06,0.2 0.05,0.17 z" + id="path1790" /> + <path + class="st1" + d="m 509.78,275.52 c -0.14,-0.81 -0.28,-1.61 -0.42,-2.42 -0.03,-0.18 -0.3,-0.1 -0.27,0.07 0.12,0.81 0.24,1.62 0.36,2.43 0.06,0.4 0.13,0.81 0.19,1.21 0.06,0.37 0.11,0.77 0.27,1.12 0.04,0.09 0.16,0.03 0.16,-0.04 0.04,-0.38 -0.05,-0.79 -0.1,-1.16 -0.06,-0.4 -0.12,-0.81 -0.19,-1.21 z" + id="path1792" /> + <path + class="st1" + d="m 480.29,294.18 c -0.02,-0.01 -0.05,-0.01 -0.07,0.01 -0.02,0.02 -0.02,0.04 -0.01,0.06 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 -0.01,0.01 -0.01,0 -0.01,0.01 -0.02,0.01 0,0 0,0 -0.01,0 0,0 0,0 0,0 -0.01,0 -0.02,0 -0.03,0 0,0 0,0 0,0 0,0 0.01,0 0.01,0 0,0 -0.01,0 -0.01,0 0,-0.01 0,-0.02 -0.01,-0.03 -0.01,-0.02 -0.03,-0.04 -0.06,-0.04 -0.02,-0.01 -0.05,0 -0.07,0.01 -0.02,0.01 -0.04,0.03 -0.04,0.06 0,0.03 -0.01,0.06 0,0.09 0.01,0.02 0.02,0.05 0.04,0.07 0.04,0.03 0.08,0.05 0.13,0.04 0.01,0 0.03,0 0.04,-0.01 0.01,0 0.03,-0.01 0.04,-0.02 0.01,-0.01 0.02,-0.01 0.04,-0.02 0.02,-0.01 0.03,-0.02 0.05,-0.04 0.02,-0.02 0.03,-0.04 0.04,-0.06 0.01,-0.03 0,-0.06 -0.01,-0.09 0,-0.02 -0.02,-0.04 -0.04,-0.05 z" + id="path1794" /> + <path + class="st1" + d="m 489.06,287.01 c -0.01,-0.07 -0.09,-0.1 -0.15,-0.09 -0.07,0.02 -0.1,0.08 -0.09,0.15 0.03,0.18 0.05,0.35 0.07,0.53 0.02,0.18 0.04,0.36 0.09,0.53 0.04,0.11 0.2,0.09 0.2,-0.03 0.01,-0.18 -0.03,-0.37 -0.06,-0.55 -0.01,-0.18 -0.03,-0.36 -0.06,-0.54 z" + id="path1796" /> + <path + class="st1" + d="m 490.04,286.76 c -0.07,-0.02 -0.15,0.02 -0.17,0.1 -0.02,0.1 -0.04,0.2 -0.05,0.3 -0.01,0.05 -0.02,0.1 -0.03,0.15 0,0.02 -0.01,0.05 -0.01,0.07 -0.01,0.04 0,0.06 0,0.1 0.01,0.05 0.03,0.09 0.08,0.1 0.05,0.01 0.09,-0.01 0.12,-0.05 0.02,-0.03 0.03,-0.05 0.04,-0.08 0.01,-0.02 0.01,-0.05 0.02,-0.07 l 0.03,-0.15 c 0.02,-0.1 0.04,-0.2 0.07,-0.3 0.01,-0.07 -0.02,-0.15 -0.1,-0.17 z" + id="path1798" /> + <path + class="st1" + d="m 492.95,287.23 c 0.03,0 0.06,-0.01 0.09,-0.02 0.04,-0.02 0.08,-0.04 0.12,-0.06 0.02,-0.01 0.04,-0.02 0.06,-0.03 0.03,-0.01 0.05,-0.03 0.07,-0.05 0.01,-0.01 0.02,-0.03 0.03,-0.05 0,-0.02 0,-0.04 0,-0.06 -0.01,-0.02 -0.01,-0.03 -0.03,-0.05 -0.01,-0.01 -0.03,-0.02 -0.05,-0.03 -0.03,0 -0.06,-0.01 -0.09,-0.01 -0.02,0 -0.04,0 -0.07,0 -0.04,0 -0.09,0.01 -0.13,0.01 -0.03,0 -0.06,0.01 -0.09,0.02 -0.03,0.02 -0.05,0.04 -0.06,0.06 -0.02,0.04 -0.03,0.08 -0.02,0.13 0.01,0.04 0.04,0.08 0.08,0.1 0.03,0.03 0.06,0.04 0.09,0.04 z" + id="path1800" /> + <path + class="st1" + d="m 493.96,285.62 c 0,0.07 0.02,0.13 0.04,0.19 0.01,0.06 0.07,0.09 0.13,0.09 0.06,-0.01 0.1,-0.06 0.11,-0.12 0.01,-0.06 0.01,-0.11 0.01,-0.17 0,-0.06 -0.01,-0.11 -0.01,-0.17 l -0.02,-0.34 c 0,-0.08 -0.06,-0.15 -0.15,-0.15 -0.08,0 -0.16,0.07 -0.15,0.15 0.01,0.11 0.02,0.23 0.03,0.34 0,0.07 0.01,0.12 0.01,0.18 z" + id="path1802" /> + <path + class="st1" + d="m 495.18,286.7 c 0,-0.03 -0.01,-0.06 -0.02,-0.09 -0.01,-0.05 -0.03,-0.09 -0.04,-0.14 -0.03,-0.1 -0.05,-0.2 -0.08,-0.3 -0.05,-0.2 -0.11,-0.4 -0.16,-0.6 -0.04,-0.15 -0.28,-0.09 -0.24,0.06 0.05,0.2 0.11,0.4 0.16,0.6 0.03,0.1 0.05,0.2 0.08,0.3 0.01,0.05 0.03,0.09 0.04,0.14 0.01,0.02 0.01,0.05 0.02,0.07 0.01,0.04 0.04,0.06 0.06,0.09 0.05,0.06 0.17,0.03 0.18,-0.05 0,-0.02 0,-0.05 0,-0.08 z" + id="path1804" /> + <path + class="st1" + d="m 476.88,296.96 -0.19,-0.68 c -0.04,-0.15 -0.27,-0.09 -0.23,0.06 l 0.18,0.68 c 0.03,0.11 0.06,0.22 0.09,0.33 0.02,0.06 0.03,0.12 0.05,0.17 0.02,0.06 0.04,0.12 0.1,0.15 0.05,0.03 0.11,0.01 0.13,-0.04 0.03,-0.06 0.02,-0.12 0.01,-0.18 -0.01,-0.06 -0.03,-0.12 -0.04,-0.18 -0.04,-0.09 -0.07,-0.2 -0.1,-0.31 z" + id="path1806" /> + <path + class="st1" + d="m 530.5,262.22 c 0.03,-0.04 0.03,-0.09 0.04,-0.14 0,-0.04 0.01,-0.07 0.01,-0.11 -0.01,-0.08 -0.02,-0.16 -0.03,-0.25 -0.02,-0.16 -0.04,-0.32 -0.06,-0.49 -0.01,-0.08 -0.06,-0.15 -0.15,-0.15 -0.07,0 -0.16,0.06 -0.15,0.15 0.02,0.16 0.04,0.33 0.06,0.49 0.01,0.08 0.02,0.16 0.03,0.24 0.01,0.09 0.04,0.21 0.11,0.27 0.04,0.05 0.1,0.04 0.14,-0.01 z" + id="path1808" /> + <path + class="st1" + d="m 531.8,260.85 c 0.01,0.03 0.02,0.07 0.03,0.1 0.02,0.07 0.08,0.11 0.15,0.1 0.07,-0.01 0.13,-0.07 0.12,-0.14 0,-0.03 -0.01,-0.07 -0.01,-0.1 0,-0.04 -0.01,-0.09 -0.02,-0.13 -0.01,-0.06 -0.03,-0.13 -0.04,-0.19 -0.02,-0.08 -0.11,-0.13 -0.19,-0.11 -0.04,0.01 -0.07,0.04 -0.09,0.07 -0.02,0.04 -0.02,0.07 -0.01,0.12 0.01,0.06 0.02,0.13 0.04,0.19 0,0.03 0.01,0.06 0.02,0.09 z" + id="path1810" /> + <path + class="st1" + d="m 533.85,261.45 -0.05,-0.05 c 0.03,0.05 0.06,0.1 0.11,0.14 0.06,0.05 0.14,0.02 0.15,-0.06 0,-0.04 0,-0.07 -0.01,-0.1 0,-0.03 0,-0.06 0,-0.09 -0.01,-0.06 -0.04,-0.13 -0.05,-0.19 -0.03,-0.11 -0.05,-0.23 -0.06,-0.34 -0.02,-0.24 -0.01,-0.49 0.04,-0.73 0.04,-0.17 -0.22,-0.24 -0.26,-0.07 -0.06,0.24 -0.08,0.5 -0.07,0.75 0.01,0.12 0.02,0.25 0.05,0.37 0.02,0.13 0.04,0.3 0.15,0.37 z" + id="path1812" /> + <path + class="st1" + d="m 535.53,261.11 c 0.01,0.1 0,0.23 0.1,0.29 0.05,0.03 0.11,0.02 0.14,-0.02 0.08,-0.08 0.04,-0.19 0.03,-0.28 -0.01,-0.09 -0.03,-0.18 -0.04,-0.26 -0.02,-0.17 -0.05,-0.33 -0.07,-0.5 -0.01,-0.06 -0.08,-0.1 -0.14,-0.09 -0.06,0.01 -0.11,0.06 -0.11,0.12 0.02,0.17 0.03,0.34 0.05,0.5 0.02,0.07 0.03,0.16 0.04,0.24 z" + id="path1814" /> + <path + class="st1" + d="m 532.3,263.78 c 0.01,0.09 0.01,0.17 0.02,0.26 0.01,0.09 0.02,0.17 0.06,0.26 0.06,0.12 0.23,0.07 0.26,-0.04 0.05,-0.15 0.02,-0.32 0.02,-0.48 0,-0.16 -0.02,-0.33 -0.03,-0.49 l -0.06,-0.97 c -0.01,-0.22 -0.36,-0.23 -0.35,0 0.01,0.33 0.03,0.66 0.04,0.99 0.02,0.16 0.03,0.32 0.04,0.47 z" + id="path1816" /> + <path + class="st1" + d="m 548.46,258.96 c -0.06,-0.31 -0.13,-0.62 -0.19,-0.93 -0.03,-0.15 -0.25,-0.08 -0.22,0.06 0.06,0.31 0.12,0.62 0.18,0.93 0.03,0.16 0.06,0.31 0.09,0.47 0.01,0.07 0.03,0.14 0.04,0.22 0.02,0.09 0.04,0.15 0.08,0.23 0.04,0.08 0.15,0.03 0.16,-0.04 0.02,-0.16 -0.03,-0.31 -0.06,-0.46 -0.01,-0.17 -0.05,-0.33 -0.08,-0.48 z" + id="path1818" /> + <path + class="st1" + d="m 549.28,262.42 c -0.06,-0.12 -0.12,-0.25 -0.18,-0.37 -0.03,-0.06 -0.12,-0.08 -0.17,-0.04 -0.06,0.04 -0.07,0.11 -0.04,0.17 0.06,0.12 0.11,0.25 0.17,0.37 0.03,0.06 0.05,0.12 0.08,0.18 0.03,0.06 0.07,0.12 0.1,0.18 0.03,0.05 0.09,0.07 0.14,0.05 0.05,-0.02 0.08,-0.08 0.06,-0.13 -0.02,-0.07 -0.04,-0.14 -0.07,-0.21 -0.04,-0.08 -0.07,-0.14 -0.09,-0.2 z" + id="path1820" /> + <path + class="st1" + d="m 550.33,252.66 c -0.3,0.67 -0.48,1.37 -0.54,2.1 -0.03,0.36 -0.03,0.71 0.01,1.07 0.02,0.18 0.04,0.36 0.08,0.54 0.04,0.18 0.07,0.39 0.18,0.53 0.1,0.14 0.28,0.08 0.3,-0.08 0.02,-0.16 -0.03,-0.34 -0.06,-0.5 -0.03,-0.17 -0.05,-0.35 -0.07,-0.52 -0.03,-0.33 -0.03,-0.67 -0.01,-1.01 0.04,-0.68 0.2,-1.36 0.45,-2 0.07,-0.19 -0.26,-0.32 -0.34,-0.13 z" + id="path1822" /> + <path + class="st1" + d="m 550.75,259.87 c 0.04,-0.01 0.02,-0.07 -0.02,-0.06 -0.03,0.01 -0.02,0.07 0.02,0.06 z" + id="path1824" /> + <path + class="st1" + d="m 551.49,262.8 c -0.01,-0.04 -0.02,-0.09 -0.04,-0.13 -0.01,-0.04 -0.05,-0.07 -0.09,-0.05 -0.04,0.01 -0.06,0.05 -0.05,0.09 0.01,0.04 0.02,0.09 0.03,0.13 0.01,0.02 0.02,0.04 0.02,0.06 0.01,0.02 0.02,0.04 0.02,0.06 0.01,0.02 0.01,0.03 0.03,0.04 0.01,0.01 0.03,0.01 0.05,0.01 0.04,-0.01 0.05,-0.04 0.05,-0.08 0,-0.02 -0.01,-0.04 -0.01,-0.07 0,-0.01 0,-0.04 -0.01,-0.06 z" + id="path1826" /> + <path + class="st1" + d="m 554.09,261.45 c -0.01,-0.09 -0.02,-0.18 -0.05,-0.27 -0.05,-0.19 -0.09,-0.38 -0.14,-0.57 -0.1,-0.38 -0.21,-0.76 -0.31,-1.13 -0.06,-0.22 -0.4,-0.13 -0.35,0.09 0.1,0.38 0.2,0.76 0.3,1.14 0.05,0.19 0.11,0.38 0.17,0.56 0.03,0.09 0.06,0.17 0.1,0.25 0.04,0.09 0.06,0.18 0.12,0.25 0.05,0.06 0.16,0.03 0.17,-0.05 0.03,-0.08 0,-0.17 -0.01,-0.27 z" + id="path1828" /> + <path + class="st1" + d="m 555.16,256.79 c 0,-0.08 0.01,-0.16 0,-0.24 -0.02,-0.16 -0.04,-0.32 -0.06,-0.48 -0.01,-0.07 -0.05,-0.14 -0.14,-0.14 -0.07,0 -0.14,0.06 -0.14,0.13 0.02,0.16 0.04,0.32 0.05,0.48 0.01,0.08 0.04,0.17 0.06,0.25 0.02,0.08 0.03,0.16 0.06,0.23 0.01,0.03 0.04,0.06 0.08,0.06 0.03,0 0.07,-0.02 0.08,-0.06 0.02,-0.07 0.01,-0.15 0.01,-0.23 z" + id="path1830" /> + <path + class="st1" + d="m 555.41,258.76 c 0.05,-0.01 0.03,-0.1 -0.02,-0.08 -0.05,0.01 -0.03,0.09 0.02,0.08 z" + id="path1832" /> + <path + class="st1" + d="m 557.92,257.83 c -0.08,0.02 -0.05,0.15 0.03,0.12 0.08,-0.02 0.05,-0.14 -0.03,-0.12 z" + id="path1834" /> + <path + class="st1" + d="m 562.36,254.06 c -0.08,-0.25 -0.14,-0.5 -0.22,-0.75 -0.03,-0.09 -0.17,-0.05 -0.14,0.04 0.06,0.25 0.13,0.5 0.19,0.76 0.03,0.12 0.06,0.24 0.08,0.37 0.03,0.13 0.04,0.27 0.06,0.4 0.03,0.19 0.35,0.1 0.28,-0.08 -0.05,-0.12 -0.11,-0.24 -0.15,-0.37 -0.03,-0.12 -0.07,-0.25 -0.1,-0.37 z" + id="path1836" /> + <path + class="st1" + d="m 564.6,253.46 c 0.03,0.13 0.21,0.09 0.22,-0.03 0.02,-0.25 -0.03,-0.5 -0.05,-0.74 -0.03,-0.25 -0.06,-0.49 -0.08,-0.74 -0.01,-0.12 -0.21,-0.13 -0.2,0 l 0.04,0.76 c 0.01,0.25 0.01,0.51 0.07,0.75 z" + id="path1838" /> + <path + class="st1" + d="m 563.19,248.68 c -0.02,-0.33 -0.01,-0.67 0.05,-1 0.02,-0.11 -0.15,-0.15 -0.16,-0.04 -0.05,0.35 -0.07,0.7 -0.05,1.04 0.01,0.17 0.03,0.33 0.06,0.49 0.03,0.18 0.09,0.35 0.16,0.53 0.02,0.06 0.1,0.04 0.09,-0.02 -0.04,-0.17 -0.06,-0.34 -0.09,-0.51 -0.03,-0.16 -0.05,-0.33 -0.06,-0.49 z" + id="path1840" /> + <path + class="st1" + d="m 568.47,250.8 c 0.01,0.07 0.01,0.15 0.02,0.22 0.03,0.14 0.23,0.1 0.24,-0.03 0,-0.07 -0.01,-0.13 -0.02,-0.2 -0.01,-0.07 -0.02,-0.13 -0.02,-0.2 -0.02,-0.13 -0.03,-0.26 -0.05,-0.39 -0.01,-0.06 -0.04,-0.11 -0.11,-0.11 -0.05,0 -0.11,0.05 -0.11,0.11 0.01,0.13 0.02,0.27 0.03,0.4 0.01,0.07 0.01,0.13 0.02,0.2 z" + id="path1842" /> + <path + class="st1" + d="m 570.49,250.27 c 0.01,0.03 0.03,0.06 0.05,0.08 0.02,0.02 0.04,0.04 0.06,0.05 0.03,0.01 0.07,0 0.09,-0.02 0.02,-0.02 0.03,-0.04 0.03,-0.07 0,-0.03 0.01,-0.06 0,-0.09 -0.01,-0.03 -0.02,-0.07 -0.03,-0.1 -0.02,-0.07 -0.04,-0.13 -0.07,-0.2 -0.02,-0.05 -0.07,-0.09 -0.12,-0.07 -0.05,0.02 -0.08,0.07 -0.07,0.12 0.01,0.07 0.03,0.14 0.04,0.21 0,0.02 0.01,0.06 0.02,0.09 z" + id="path1844" /> + <path + class="st1" + d="m 572.46,248.26 c 0.03,-0.04 0.06,-0.08 0.1,-0.12 0.03,-0.04 0.07,-0.08 0.1,-0.13 0.01,-0.02 0.01,-0.04 -0.01,-0.05 -0.02,-0.01 -0.03,-0.01 -0.05,-0.01 -0.04,0.02 -0.08,0.05 -0.13,0.07 -0.04,0.03 -0.08,0.05 -0.12,0.08 -0.05,0.03 -0.06,0.1 -0.03,0.14 0.02,0.02 0.04,0.03 0.06,0.04 0.03,0.01 0.06,0 0.08,-0.02 z" + id="path1846" /> + <path + class="st1" + d="m 576.33,245.85 c 0.01,0.01 0.02,0.02 0.04,0.02 0.01,0 0.01,0.01 0.02,0.01 0.01,0 0.02,0.01 0.02,0.01 0,0 0.01,0 0.01,0 0.01,0 0.01,0.01 0.02,0.01 0.01,0.01 0.03,0.01 0.04,0.02 0.01,0 0.01,0.01 0.02,0.01 0,0 0.01,0 0.01,0 0,0 0,0 0,0 0.01,0 0.01,0 0.02,0 0.01,0 0.01,0 0.02,0 0.03,0 0.05,-0.01 0.07,-0.02 0.02,-0.01 0.04,-0.03 0.05,-0.05 0.01,-0.02 0.02,-0.04 0.02,-0.07 0,-0.02 -0.01,-0.05 -0.02,-0.07 0,0 0,0 0,0 -0.01,-0.01 -0.01,-0.02 -0.02,-0.03 0,0 0,0 0,0 0,0 -0.01,0 -0.01,-0.01 -0.01,0 -0.01,-0.01 -0.02,-0.01 -0.01,-0.01 -0.02,-0.02 -0.03,-0.03 -0.01,0 -0.01,-0.01 -0.02,-0.01 0,0 -0.01,0 -0.01,-0.01 0,0 0,0 -0.01,0 -0.01,-0.01 -0.02,-0.02 -0.03,-0.03 -0.01,-0.01 -0.03,-0.01 -0.04,-0.02 -0.02,-0.01 -0.04,-0.02 -0.06,-0.02 -0.02,0 -0.04,0 -0.06,0 -0.02,0 -0.04,0.01 -0.05,0.03 -0.02,0.01 -0.03,0.03 -0.04,0.04 -0.01,0.01 -0.01,0.02 -0.02,0.04 -0.01,0.03 -0.01,0.05 0,0.08 0.01,0.01 0.01,0.03 0.02,0.04 0.02,0.04 0.04,0.06 0.06,0.07 z" + id="path1848" /> + <path + class="st1" + d="m 584.28,241.73 c 0.08,-0.02 0.04,-0.14 -0.03,-0.12 -0.08,0.02 -0.05,0.14 0.03,0.12 z" + id="path1850" /> + <path + class="st1" + d="m 588.72,239.3 c -0.05,-0.2 -0.11,-0.39 -0.16,-0.59 -0.05,-0.17 -0.31,-0.1 -0.27,0.07 0.05,0.2 0.11,0.39 0.16,0.59 0.03,0.1 0.05,0.2 0.08,0.29 0.03,0.1 0.05,0.2 0.11,0.29 0.06,0.09 0.21,0.05 0.21,-0.06 0,-0.11 -0.03,-0.2 -0.06,-0.31 -0.01,-0.08 -0.04,-0.18 -0.07,-0.28 z" + id="path1852" /> + <path + class="st1" + d="m 590.5,238.74 c -0.16,0.04 -0.09,0.29 0.07,0.24 0.15,-0.03 0.09,-0.28 -0.07,-0.24 z" + id="path1854" /> + <path + class="st1" + d="m 592.17,236.49 c -0.04,-0.07 -0.08,-0.14 -0.12,-0.2 -0.09,-0.14 -0.17,-0.28 -0.26,-0.42 -0.04,-0.06 -0.13,-0.09 -0.19,-0.05 -0.06,0.04 -0.09,0.13 -0.05,0.19 l 0.25,0.42 c 0.04,0.07 0.08,0.14 0.12,0.2 0.02,0.04 0.04,0.07 0.07,0.11 0.03,0.04 0.06,0.07 0.1,0.11 0.08,0.08 0.24,0 0.2,-0.12 -0.02,-0.04 -0.03,-0.09 -0.05,-0.13 -0.02,-0.03 -0.05,-0.07 -0.07,-0.11 z" + id="path1856" /> + <path + class="st1" + d="m 592.93,238.04 c 0.12,-0.03 0.07,-0.21 -0.05,-0.18 -0.12,0.03 -0.07,0.21 0.05,0.18 z" + id="path1858" /> + <path + class="st1" + d="m 593.92,235.12 c -0.05,-0.06 -0.15,-0.05 -0.21,0 -0.06,0.06 -0.05,0.14 0,0.21 0.14,0.17 0.28,0.34 0.41,0.51 0.14,0.17 0.28,0.34 0.44,0.48 0.09,0.07 0.22,-0.02 0.16,-0.12 -0.11,-0.2 -0.25,-0.38 -0.39,-0.55 z" + id="path1860" /> + <path + class="st1" + d="m 597.79,234.43 c 0,0 0,0 0,0 -0.01,0 -0.01,0.01 -0.02,0.01 0.02,0 0.02,-0.01 0.02,-0.01 z" + id="path1862" /> + <path + class="st1" + d="m 607.49,231 c -0.27,-0.41 -0.55,-0.82 -0.82,-1.22 -0.1,-0.15 -0.34,-0.01 -0.24,0.14 l 0.83,1.25 c 0.27,0.41 0.52,0.84 0.84,1.22 0.1,0.11 0.25,-0.03 0.19,-0.15 -0.23,-0.44 -0.53,-0.84 -0.8,-1.24 z" + id="path1864" /> + <path + class="st1" + d="m 609.46,229.48 c -0.06,-0.05 -0.11,-0.11 -0.17,-0.16 -0.12,-0.11 -0.24,-0.21 -0.37,-0.32 -0.04,-0.04 -0.11,-0.04 -0.16,0 -0.04,0.04 -0.04,0.12 0,0.16 0.12,0.11 0.25,0.21 0.37,0.32 0.06,0.05 0.12,0.1 0.18,0.15 0.07,0.05 0.13,0.11 0.21,0.15 0.07,0.04 0.16,-0.04 0.11,-0.11 -0.03,-0.04 -0.05,-0.07 -0.08,-0.1 -0.03,-0.04 -0.06,-0.06 -0.09,-0.09 z" + id="path1866" /> + <path + class="st1" + d="m 611.13,231.99 c 0.09,-0.03 0.05,-0.17 -0.04,-0.15 -0.09,0.03 -0.05,0.17 0.04,0.15 z" + id="path1868" /> + <path + class="st1" + d="m 614.41,227.68 c -0.21,-0.13 -0.42,-0.27 -0.64,-0.4 -0.22,-0.12 -0.44,-0.25 -0.65,-0.37 -0.08,-0.04 -0.14,0.07 -0.07,0.12 0.22,0.13 0.43,0.25 0.65,0.38 0.22,0.13 0.44,0.24 0.67,0.35 0.04,0.03 0.08,-0.04 0.04,-0.08 z" + id="path1870" /> + <path + class="st1" + d="m 617.12,228.57 c 0.27,0.4 0.5,0.83 0.67,1.28 0.09,0.22 0.16,0.45 0.23,0.68 0.06,0.2 0.06,0.45 0.21,0.61 0.05,0.06 0.14,0.02 0.16,-0.04 0.07,-0.2 -0.03,-0.44 -0.09,-0.64 -0.07,-0.25 -0.16,-0.5 -0.26,-0.74 -0.2,-0.48 -0.45,-0.93 -0.75,-1.35 -0.59,-0.83 -1.35,-1.51 -2.24,-2 -0.09,-0.05 -0.17,0.09 -0.08,0.14 0.86,0.51 1.6,1.23 2.15,2.06 z" + id="path1872" /> + <path + class="st1" + d="m 617.32,226.22 c 0.13,0.06 0.26,0.11 0.39,0.17 0.07,0.03 0.14,0.06 0.2,0.09 0.04,0.02 0.08,0.03 0.12,0.04 0.04,0 0.07,0.01 0.1,0.01 0.05,0.01 0.1,-0.01 0.12,-0.05 0.02,-0.04 0.02,-0.1 -0.02,-0.13 -0.06,-0.04 -0.11,-0.1 -0.17,-0.13 -0.07,-0.03 -0.14,-0.06 -0.2,-0.09 -0.13,-0.06 -0.26,-0.12 -0.4,-0.17 -0.26,-0.12 -0.53,-0.23 -0.79,-0.35 -0.08,-0.03 -0.17,-0.02 -0.22,0.06 -0.04,0.07 -0.02,0.18 0.06,0.22 0.28,0.11 0.54,0.22 0.81,0.33 z" + id="path1874" /> + <path + class="st1" + d="m 619.32,228.13 c 0.11,-0.03 0.06,-0.2 -0.05,-0.17 -0.11,0.03 -0.06,0.2 0.05,0.17 z" + id="path1876" /> + <path + class="st1" + d="m 626.06,225.56 c -0.27,-0.44 -0.6,-0.84 -0.98,-1.19 -0.75,-0.7 -1.71,-1.12 -2.73,-1.22 -0.21,-0.02 -0.26,0.33 -0.05,0.36 0.93,0.15 1.79,0.58 2.51,1.18 0.35,0.3 0.65,0.64 0.9,1.04 0.13,0.2 0.23,0.41 0.32,0.63 0.09,0.22 0.14,0.46 0.25,0.66 0.09,0.15 0.32,0.08 0.32,-0.09 0,-0.25 -0.11,-0.5 -0.21,-0.73 -0.09,-0.22 -0.2,-0.43 -0.33,-0.64 z" + id="path1878" /> + <path + class="st1" + d="m 627.97,224.16 c -0.05,-0.09 -0.12,-0.17 -0.19,-0.25 0.01,0.02 0.02,0.04 0.03,0.06 -0.03,-0.1 -0.11,-0.17 -0.18,-0.25 -0.06,-0.07 -0.13,-0.14 -0.2,-0.2 -0.13,-0.13 -0.27,-0.27 -0.4,-0.4 -0.13,-0.14 -0.34,0.07 -0.21,0.21 0.13,0.14 0.26,0.27 0.39,0.41 0.07,0.07 0.13,0.14 0.2,0.2 0.07,0.07 0.14,0.14 0.24,0.18 -0.02,-0.01 -0.04,-0.02 -0.06,-0.03 0.08,0.07 0.15,0.14 0.24,0.19 0.1,0.04 0.18,-0.04 0.14,-0.12 z" + id="path1880" /> + <path + class="st1" + d="m 628.47,225.77 c 0.04,0.04 0.12,0.05 0.17,0.02 0.06,-0.03 0.07,-0.09 0.06,-0.16 -0.02,-0.11 -0.1,-0.23 -0.15,-0.33 -0.05,-0.1 -0.1,-0.21 -0.16,-0.31 -0.11,-0.2 -0.22,-0.4 -0.33,-0.61 -0.03,-0.06 -0.12,-0.08 -0.18,-0.05 -0.06,0.04 -0.07,0.11 -0.05,0.18 0.1,0.21 0.19,0.42 0.29,0.63 0.05,0.1 0.1,0.21 0.15,0.31 0.08,0.12 0.12,0.24 0.2,0.32 z" + id="path1882" /> + <path + class="st1" + d="m 630.5,224.11 c 0.02,0.04 0.04,0.08 0.07,0.12 0.03,0.05 0.07,0.09 0.12,0.13 0.05,0.05 0.14,0.07 0.21,0.03 0.07,-0.04 0.09,-0.11 0.08,-0.19 0,-0.02 -0.01,-0.05 -0.01,-0.07 -0.01,-0.03 -0.02,-0.07 -0.04,-0.1 -0.02,-0.04 -0.05,-0.08 -0.07,-0.12 -0.05,-0.08 -0.09,-0.16 -0.14,-0.24 -0.05,-0.09 -0.18,-0.13 -0.27,-0.07 -0.09,0.06 -0.12,0.18 -0.07,0.27 0.03,0.08 0.07,0.16 0.12,0.24 z" + id="path1884" /> + <path + class="st1" + d="m 615.34,228.91 c -0.19,-0.22 -0.41,-0.42 -0.65,-0.58 -0.08,-0.05 -0.2,-0.01 -0.25,0.07 -0.05,0.09 -0.01,0.2 0.07,0.25 0.21,0.14 0.4,0.32 0.56,0.52 0.08,0.09 0.14,0.2 0.21,0.3 0.07,0.11 0.15,0.22 0.21,0.34 0.08,0.16 0.34,0.05 0.29,-0.12 -0.05,-0.14 -0.1,-0.29 -0.17,-0.41 -0.08,-0.13 -0.18,-0.25 -0.27,-0.37 z" + id="path1886" /> + <path + class="st1" + d="m 616.49,231.32 c 0,-0.02 0,-0.04 -0.01,-0.06 0,-0.03 -0.01,-0.05 -0.01,-0.07 0,-0.01 -0.01,-0.02 -0.01,-0.03 -0.01,-0.04 -0.02,-0.08 -0.04,-0.12 -0.01,-0.04 -0.04,-0.08 -0.08,-0.11 -0.04,-0.02 -0.09,-0.03 -0.13,-0.02 -0.04,0.01 -0.08,0.04 -0.11,0.08 -0.02,0.04 -0.03,0.09 -0.02,0.13 0.01,0.04 0.02,0.08 0.03,0.12 0,0.01 0,0.02 0.01,0.03 0,0.02 0.01,0.03 0.02,0.05 0.01,0.03 0.02,0.05 0.04,0.08 0.01,0.01 0.02,0.02 0.03,0.03 0.02,0.02 0.03,0.03 0.05,0.03 0.03,0.01 0.07,0.02 0.11,0.01 0.03,-0.01 0.05,-0.02 0.08,-0.04 0.02,-0.02 0.04,-0.07 0.04,-0.11 z" + id="path1888" /> + <path + class="st1" + d="m 610.6,231.51 c -0.14,-0.18 -0.28,-0.35 -0.43,-0.53 -0.05,-0.07 -0.17,-0.05 -0.23,0 -0.07,0.07 -0.05,0.16 0,0.23 0.14,0.17 0.28,0.34 0.42,0.52 0.07,0.09 0.14,0.18 0.21,0.26 0.07,0.08 0.15,0.18 0.25,0.23 0.09,0.04 0.2,-0.03 0.17,-0.13 -0.03,-0.11 -0.11,-0.2 -0.17,-0.29 -0.06,-0.1 -0.14,-0.19 -0.22,-0.29 z" + id="path1890" /> + <path + class="st1" + d="m 611.53,233.08 c -0.03,-0.02 -0.07,-0.02 -0.11,-0.01 -0.03,0.01 -0.07,0.03 -0.09,0.07 -0.02,0.03 -0.03,0.07 -0.01,0.11 0.05,0.13 0.1,0.27 0.16,0.39 0.04,0.08 0.17,0.04 0.16,-0.04 -0.01,-0.14 -0.04,-0.28 -0.06,-0.42 0.01,-0.05 -0.02,-0.09 -0.05,-0.1 z" + id="path1892" /> + <path + class="st1" + d="m 605.94,233.84 c -0.03,-0.04 -0.06,-0.08 -0.09,-0.12 -0.05,-0.07 -0.11,-0.13 -0.16,-0.2 -0.11,-0.13 -0.21,-0.27 -0.32,-0.4 -0.05,-0.06 -0.17,-0.05 -0.22,0 -0.06,0.07 -0.05,0.15 0,0.22 l 0.31,0.4 c 0.05,0.06 0.1,0.13 0.15,0.19 0.03,0.03 0.05,0.07 0.08,0.1 0.03,0.03 0.06,0.06 0.09,0.09 0.11,0.1 0.28,-0.03 0.2,-0.16 0,-0.04 -0.02,-0.08 -0.04,-0.12 z" + id="path1894" /> + <path + class="st1" + d="m 604.13,234.32 c -0.06,-0.13 -0.11,-0.25 -0.17,-0.38 -0.03,-0.07 -0.14,-0.1 -0.21,-0.05 -0.07,0.05 -0.09,0.13 -0.05,0.21 0.06,0.12 0.11,0.24 0.17,0.37 0.03,0.06 0.05,0.12 0.09,0.18 0.04,0.06 0.08,0.11 0.12,0.17 0.03,0.04 0.08,0.07 0.13,0.04 0.05,-0.02 0.07,-0.07 0.06,-0.12 -0.02,-0.07 -0.03,-0.13 -0.05,-0.2 -0.02,-0.08 -0.06,-0.15 -0.09,-0.22 z" + id="path1896" /> + <path + class="st1" + d="m 601.01,235.76 c -0.02,-0.16 -0.04,-0.32 -0.06,-0.48 -0.01,-0.06 -0.02,-0.1 -0.06,-0.15 -0.03,-0.03 -0.09,-0.06 -0.14,-0.06 -0.1,0 -0.22,0.09 -0.2,0.2 0.02,0.18 0.04,0.35 0.06,0.53 0.01,0.08 0.03,0.16 0.04,0.24 0.01,0.04 0.01,0.08 0.02,0.13 0.01,0.06 0.04,0.11 0.08,0.16 0.06,0.08 0.21,0.05 0.25,-0.03 0.03,-0.06 0.05,-0.11 0.04,-0.17 0,-0.04 -0.01,-0.07 -0.01,-0.11 -0.01,-0.09 -0.01,-0.17 -0.02,-0.26 z" + id="path1898" /> + <path + class="st1" + d="m 598.33,236.62 c -0.17,0.04 -0.1,0.3 0.07,0.26 0.16,-0.05 0.09,-0.31 -0.07,-0.26 z" + id="path1900" /> + <path + class="st1" + d="m 596.38,237.56 c -0.16,0.04 -0.1,0.3 0.07,0.25 0.16,-0.04 0.09,-0.29 -0.07,-0.25 z" + id="path1902" /> + <path + class="st1" + d="m 593.35,238.07 c -0.21,0.06 -0.12,0.38 0.09,0.33 0.21,-0.06 0.12,-0.39 -0.09,-0.33 z" + id="path1904" /> + <path + class="st1" + d="m 632.09,224.41 c 0.12,-0.03 0.07,-0.22 -0.05,-0.19 -0.13,0.03 -0.08,0.22 0.05,0.19 z" + id="path1906" /> + <path + class="st1" + d="m 634.45,222.13 c -0.02,-0.04 -0.08,-0.05 -0.11,-0.03 -0.04,0.02 -0.06,0.08 -0.03,0.11 0.05,0.08 0.11,0.15 0.16,0.23 0.05,0.08 0.1,0.16 0.16,0.23 0.02,0.02 0.06,0 0.05,-0.03 -0.03,-0.09 -0.07,-0.17 -0.11,-0.26 -0.04,-0.08 -0.08,-0.17 -0.12,-0.25 z" + id="path1908" /> + <path + class="st1" + d="m 636.77,220.57 c -0.03,-0.01 -0.08,0 -0.11,0.01 -0.06,0.04 -0.1,0.13 -0.05,0.2 0.1,0.15 0.2,0.31 0.32,0.45 0.03,0.03 0.06,0.05 0.11,0.04 0.04,-0.02 0.07,-0.06 0.05,-0.1 -0.07,-0.18 -0.15,-0.35 -0.23,-0.53 -0.02,-0.04 -0.06,-0.06 -0.09,-0.07 z" + id="path1910" /> + <path + class="st1" + d="m 639.25,220.1 c 0.04,0.02 0.09,0.02 0.12,-0.02 0.03,-0.03 0.04,-0.08 0.01,-0.12 -0.03,-0.04 -0.06,-0.08 -0.09,-0.11 -0.03,-0.03 -0.06,-0.05 -0.08,-0.08 -0.06,-0.06 -0.12,-0.11 -0.17,-0.17 -0.05,-0.05 -0.14,-0.05 -0.19,0 -0.02,0.03 -0.04,0.06 -0.04,0.1 0,0.03 0.01,0.08 0.04,0.1 0.06,0.05 0.13,0.1 0.19,0.15 0.03,0.02 0.06,0.05 0.09,0.07 0.02,0.02 0.04,0.04 0.07,0.05 z" + id="path1912" /> + <path + class="st1" + d="m 640.04,220.73 c -0.06,0.02 -0.03,0.11 0.02,0.09 0.07,-0.02 0.04,-0.11 -0.02,-0.09 z" + id="path1914" /> + <path + class="st1" + d="m 642.17,219.33 c -0.1,-0.16 -0.35,-0.02 -0.25,0.15 0.17,0.31 0.34,0.61 0.51,0.92 0.16,0.3 0.32,0.63 0.58,0.87 0.08,0.07 0.19,0 0.17,-0.1 -0.07,-0.34 -0.29,-0.64 -0.46,-0.93 -0.19,-0.31 -0.37,-0.61 -0.55,-0.91 z" + id="path1916" /> + <path + class="st1" + d="m 643.55,217.05 c -0.63,-0.77 -1.46,-1.35 -2.38,-1.73 -0.18,-0.07 -0.31,0.24 -0.13,0.32 0.85,0.39 1.59,0.96 2.21,1.66 0.31,0.35 0.58,0.73 0.79,1.13 0.22,0.41 0.35,0.85 0.58,1.25 0.04,0.07 0.14,0.04 0.14,-0.04 0,-0.48 -0.19,-0.93 -0.41,-1.36 -0.22,-0.42 -0.49,-0.84 -0.8,-1.23 z" + id="path1918" /> + <path + class="st1" + d="m 645.48,220.67 c 0.02,0 0.04,0 0.06,0 0.01,-0.01 0.02,-0.01 0.04,-0.02 0.01,-0.01 0.02,-0.02 0.03,-0.02 0.01,-0.01 0.02,-0.03 0.03,-0.05 0.01,-0.02 0.01,-0.04 0.01,-0.05 0,-0.02 0,-0.03 -0.01,-0.05 0,-0.01 0,-0.01 0,-0.02 0,-0.01 0,-0.02 0,-0.03 0,-0.02 -0.01,-0.04 -0.01,-0.06 0,-0.02 -0.01,-0.04 -0.03,-0.06 -0.01,-0.02 -0.03,-0.03 -0.05,-0.04 -0.02,-0.01 -0.04,-0.02 -0.06,-0.02 -0.02,0 -0.04,0 -0.06,0 -0.01,0.01 -0.03,0.01 -0.04,0.02 -0.02,0.01 -0.04,0.03 -0.06,0.06 -0.01,0.01 -0.01,0.03 -0.02,0.04 -0.01,0.03 -0.01,0.06 0,0.08 0.01,0.02 0.02,0.04 0.02,0.06 0,0.01 0.01,0.02 0.01,0.03 0,0 0,0.01 0.01,0.01 0.01,0.02 0.01,0.03 0.02,0.05 0.01,0.01 0.02,0.02 0.02,0.03 0.01,0.01 0.03,0.02 0.05,0.03 0.02,0 0.03,0.01 0.04,0.01 z" + id="path1920" /> + <path + class="st1" + d="m 646.59,217.19 c -0.01,-0.03 -0.06,-0.04 -0.09,-0.02 -0.03,0.02 -0.04,0.06 -0.02,0.09 0.06,0.12 0.11,0.25 0.17,0.36 0.06,0.12 0.12,0.24 0.19,0.36 0.02,0.04 0.09,0.01 0.08,-0.03 -0.05,-0.13 -0.1,-0.25 -0.15,-0.38 -0.06,-0.13 -0.12,-0.25 -0.18,-0.38 z" + id="path1922" /> + <path + class="st1" + d="m 647.4,218.87 c -0.06,0.02 -0.03,0.1 0.02,0.09 0.06,-0.01 0.03,-0.1 -0.02,-0.09 z" + id="path1924" /> + <path + class="st1" + d="m 649.66,217.58 c -0.21,0.06 -0.12,0.38 0.09,0.32 0.21,-0.05 0.12,-0.37 -0.09,-0.32 z" + id="path1926" /> + <path + class="st1" + d="m 651.28,215.19 c -0.03,-0.06 -0.06,-0.13 -0.09,-0.19 -0.06,-0.13 -0.12,-0.25 -0.18,-0.38 -0.02,-0.05 -0.09,-0.06 -0.13,-0.04 -0.04,0.02 -0.08,0.07 -0.06,0.12 0.05,0.13 0.11,0.26 0.16,0.39 0.03,0.06 0.05,0.13 0.08,0.19 0.01,0.03 0.03,0.06 0.04,0.09 0.02,0.05 0.04,0.08 0.08,0.11 0.06,0.06 0.18,0.02 0.17,-0.07 0,-0.05 -0.01,-0.09 -0.03,-0.13 -0.02,-0.04 -0.03,-0.07 -0.04,-0.09 z" + id="path1928" /> + <path + class="st1" + d="m 654.15,214.79 0.11,0.1 c 0.02,0.02 0.05,0.02 0.07,0 0.02,-0.02 0.02,-0.05 0,-0.07 -0.03,-0.04 -0.06,-0.08 -0.09,-0.12 -0.03,-0.04 -0.07,-0.07 -0.1,-0.11 -0.02,-0.02 -0.06,-0.02 -0.08,0 -0.02,0.02 -0.02,0.06 0,0.08 0.02,0.04 0.05,0.08 0.09,0.12 z" + id="path1930" /> + <path + class="st1" + d="m 655.85,213.28 c -0.06,-0.09 -0.12,-0.18 -0.18,-0.27 -0.12,-0.18 -0.25,-0.36 -0.37,-0.54 -0.04,-0.06 -0.11,-0.08 -0.17,-0.04 -0.06,0.03 -0.08,0.12 -0.04,0.17 l 0.35,0.55 c 0.06,0.09 0.11,0.18 0.17,0.27 0.01,0.02 0.03,0.04 0.04,0.06 0.02,0.03 0.05,0.05 0.07,0.08 0.03,0.05 0.07,0.09 0.12,0.11 0.07,0.03 0.15,0 0.15,-0.09 0,-0.06 -0.03,-0.11 -0.06,-0.16 -0.03,-0.04 -0.05,-0.09 -0.08,-0.14 z" + id="path1932" /> + <path + class="st1" + d="m 658.15,213.1 c -0.1,-0.22 -0.24,-0.41 -0.39,-0.6 -0.15,-0.19 -0.29,-0.38 -0.44,-0.57 -0.04,-0.05 -0.09,-0.07 -0.15,-0.04 -0.05,0.03 -0.07,0.1 -0.04,0.15 0.14,0.2 0.29,0.39 0.43,0.59 0.14,0.2 0.3,0.38 0.48,0.55 0.07,0.04 0.14,-0.02 0.11,-0.08 z" + id="path1934" /> + <path + class="st1" + d="m 659.18,214.61 c 0.01,0.03 0.01,0.05 0.02,0.08 0.01,0.02 0.01,0.04 0.02,0.06 0.01,0.02 0.03,0.04 0.05,0.05 0.07,0.06 0.18,0.04 0.21,-0.06 0.02,-0.05 0.02,-0.09 0,-0.13 -0.01,-0.03 -0.01,-0.05 -0.02,-0.08 l -0.05,-0.17 -0.09,-0.33 c -0.02,-0.08 -0.11,-0.13 -0.18,-0.11 -0.08,0.02 -0.13,0.1 -0.11,0.18 0.03,0.11 0.06,0.22 0.09,0.33 0.03,0.07 0.04,0.13 0.06,0.18 z" + id="path1936" /> + <path + class="st1" + d="m 658.88,210.12 c -0.58,-0.68 -1.34,-1.21 -2.08,-1.71 -0.13,-0.09 -0.28,0.11 -0.17,0.22 0.66,0.6 1.36,1.2 2.16,1.6 0.07,0.05 0.14,-0.05 0.09,-0.11 z" + id="path1938" /> + <path + class="st1" + d="m 660.08,211.32 c -0.05,-0.04 -0.09,-0.07 -0.14,-0.11 -0.09,-0.07 -0.18,-0.14 -0.27,-0.21 -0.04,-0.03 -0.08,-0.03 -0.12,0 -0.03,0.03 -0.03,0.09 0,0.12 0.09,0.07 0.18,0.14 0.27,0.22 0.04,0.03 0.09,0.07 0.13,0.1 0.03,0.02 0.05,0.04 0.08,0.06 0.03,0.02 0.06,0.03 0.1,0.04 0.04,0 0.08,-0.05 0.07,-0.09 -0.01,-0.04 -0.03,-0.06 -0.06,-0.08 -0.02,-0.01 -0.04,-0.03 -0.06,-0.05 z" + id="path1940" /> + <path + class="st1" + d="m 661.38,213.44 c 0.01,0.03 0.02,0.06 0.05,0.08 0.02,0.02 0.05,0.03 0.07,0.03 0.03,0 0.05,-0.01 0.07,-0.03 0.04,-0.03 0.05,-0.08 0.07,-0.13 0.01,-0.03 0.02,-0.05 0.02,-0.08 0,-0.02 0,-0.04 0,-0.06 0,-0.07 0.01,-0.15 0.01,-0.22 0,-0.08 -0.07,-0.15 -0.15,-0.15 -0.08,0 -0.14,0.06 -0.15,0.15 -0.01,0.07 -0.01,0.15 -0.02,0.22 0,0.02 0,0.04 0,0.06 0,0.03 0.01,0.06 0.01,0.09 0.01,0.01 0.01,0.03 0.02,0.04 z" + id="path1942" /> + <path + class="st1" + d="m 663.1,211.19 c -0.2,-0.26 -0.4,-0.52 -0.6,-0.78 -0.03,-0.04 -0.09,0 -0.06,0.04 0.19,0.27 0.38,0.53 0.56,0.8 0.09,0.13 0.19,0.26 0.26,0.4 0.07,0.13 0.13,0.3 0.28,0.35 0.05,0.02 0.1,-0.03 0.1,-0.08 0,-0.15 -0.14,-0.26 -0.24,-0.37 -0.11,-0.11 -0.2,-0.24 -0.3,-0.36 z" + id="path1944" /> + <path + class="st1" + d="m 665.21,210.75 c -0.05,-0.05 -0.11,-0.1 -0.16,-0.15 -0.1,-0.1 -0.19,-0.21 -0.27,-0.33 -0.16,-0.24 -0.29,-0.5 -0.37,-0.77 -0.04,-0.15 -0.28,-0.09 -0.24,0.06 0.09,0.3 0.22,0.59 0.4,0.85 0.09,0.13 0.19,0.25 0.29,0.36 0.05,0.06 0.11,0.11 0.17,0.16 0.06,0.06 0.13,0.12 0.22,0.09 0.04,-0.01 0.07,-0.05 0.07,-0.1 0.01,-0.08 -0.06,-0.12 -0.11,-0.17 z" + id="path1946" /> + <path + class="st1" + d="m 666.83,209.62 c -0.06,-0.2 -0.11,-0.4 -0.17,-0.6 -0.05,-0.2 -0.36,-0.11 -0.31,0.08 0.05,0.2 0.11,0.4 0.16,0.6 0.03,0.1 0.05,0.2 0.08,0.3 0.03,0.11 0.06,0.22 0.14,0.3 0.07,0.07 0.18,0.03 0.21,-0.06 0.03,-0.11 0,-0.22 -0.03,-0.33 -0.03,-0.09 -0.06,-0.19 -0.08,-0.29 z" + id="path1948" /> + <path + class="st1" + d="m 672.61,212.34 c 0.05,-0.02 0.07,-0.06 0.06,-0.11 0,-0.01 0,-0.02 -0.01,-0.03 -0.01,-0.03 -0.03,-0.04 -0.05,-0.06 -0.01,-0.01 -0.03,-0.01 -0.05,-0.02 l -0.09,-0.04 c -0.06,-0.03 -0.12,-0.06 -0.18,-0.09 -0.02,-0.01 -0.04,-0.01 -0.06,-0.01 -0.02,0.01 -0.04,0.02 -0.05,0.04 -0.02,0.04 -0.01,0.09 0.03,0.12 0.05,0.04 0.11,0.07 0.16,0.11 l 0.08,0.05 0.04,0.03 c 0.02,0.01 0.04,0.02 0.06,0.02 0.03,0 0.05,0 0.06,-0.01 z" + id="path1950" /> + <path + class="st1" + d="m 675.81,210.35 c -0.06,0.02 -0.03,0.11 0.02,0.09 0.07,-0.01 0.04,-0.1 -0.02,-0.09 z" + id="path1952" /> + <path + class="st1" + d="m 677.59,209.31 c 0,0.02 0.01,0.04 0.02,0.05 0.01,0.01 0.02,0.02 0.03,0.04 0.01,0.01 0.01,0.02 0.02,0.02 0.06,0.06 0.18,0.03 0.2,-0.05 0,-0.01 0,-0.02 0.01,-0.03 0,-0.02 0.01,-0.03 0.01,-0.05 0,-0.02 0,-0.03 -0.01,-0.05 -0.01,-0.02 -0.01,-0.05 -0.02,-0.07 -0.01,-0.04 -0.02,-0.09 -0.04,-0.13 -0.01,-0.04 -0.03,-0.07 -0.07,-0.09 -0.03,-0.02 -0.07,-0.02 -0.11,-0.01 -0.03,0.01 -0.07,0.03 -0.09,0.07 -0.02,0.04 -0.02,0.07 -0.01,0.11 0.01,0.04 0.02,0.09 0.03,0.13 0.01,0.01 0.02,0.03 0.03,0.06 z" + id="path1954" /> + <path + class="st1" + d="m 677.3,204.33 c -0.25,-0.47 -0.62,-0.88 -0.97,-1.29 -0.35,-0.42 -0.7,-0.83 -1.05,-1.25 -0.13,-0.16 -0.35,0.07 -0.22,0.23 0.34,0.42 0.68,0.83 1.02,1.25 0.33,0.41 0.67,0.85 1.08,1.18 0.07,0.06 0.19,-0.02 0.14,-0.12 z" + id="path1956" /> + <path + class="st1" + d="m 678.47,207.33 c 0.02,0.05 0.03,0.1 0.05,0.15 0.02,0.06 0.04,0.1 0.08,0.15 0.05,0.06 0.15,0.01 0.15,-0.06 0,-0.1 -0.06,-0.2 -0.1,-0.29 -0.04,-0.09 -0.08,-0.19 -0.12,-0.28 -0.08,-0.19 -0.15,-0.38 -0.23,-0.57 -0.04,-0.09 -0.18,-0.05 -0.15,0.04 l 0.22,0.58 c 0.04,0.09 0.07,0.18 0.1,0.28 z" + id="path1958" /> + <path + class="st1" + d="m 675.92,201.85 c 0.14,0.18 0.27,0.38 0.43,0.55 0.15,0.17 0.31,0.35 0.48,0.5 0.1,0.08 0.23,-0.02 0.17,-0.14 -0.1,-0.2 -0.24,-0.4 -0.37,-0.59 -0.12,-0.19 -0.28,-0.37 -0.43,-0.55 -0.29,-0.36 -0.58,-0.72 -0.87,-1.09 -0.11,-0.14 -0.37,0.05 -0.26,0.2 0.29,0.38 0.57,0.75 0.85,1.12 z" + id="path1960" /> + <path + class="st1" + d="m 584.03,220.46 c -0.07,0.02 -0.04,0.12 0.03,0.1 0.07,-0.02 0.04,-0.12 -0.03,-0.1 z" + id="path1962" /> + <path + class="st1" + d="m 585.59,217.56 c -0.06,0.02 -0.03,0.11 0.02,0.09 0.06,-0.01 0.04,-0.11 -0.02,-0.09 z" + id="path1964" /> + <path + class="st1" + d="m 594.54,214.99 c -0.07,0.02 -0.04,0.14 0.03,0.12 0.07,-0.03 0.04,-0.14 -0.03,-0.12 z" + id="path1966" /> + <path + class="st1" + d="m 596.55,214.26 c -0.13,0.03 -0.07,0.23 0.05,0.2 0.13,-0.04 0.07,-0.23 -0.05,-0.2 z" + id="path1968" /> + <path + class="st1" + d="m 598.85,213.6 c 0.15,-0.04 0.09,-0.28 -0.06,-0.24 -0.16,0.04 -0.1,0.28 0.06,0.24 z" + id="path1970" /> + <path + class="st1" + d="m 604.5,210.04 c 0.21,-0.06 0.12,-0.38 -0.09,-0.32 -0.21,0.06 -0.12,0.38 0.09,0.32 z" + id="path1972" /> + <path + class="st1" + d="m 616.25,205.05 c 0.03,0.03 0.06,0.05 0.1,0.08 0.02,0.02 0.05,0.04 0.07,0.06 0.03,0.02 0.05,0.02 0.08,0.03 0.04,0.01 0.08,0 0.11,-0.03 0.03,-0.03 0.04,-0.07 0.03,-0.11 -0.01,-0.03 -0.02,-0.07 -0.05,-0.1 -0.01,-0.02 -0.03,-0.03 -0.04,-0.04 -0.03,-0.03 -0.06,-0.06 -0.09,-0.08 -0.06,-0.06 -0.12,-0.11 -0.19,-0.16 -0.03,-0.02 -0.06,-0.04 -0.1,-0.04 -0.04,0 -0.08,0.02 -0.1,0.04 -0.05,0.06 -0.06,0.15 0,0.21 0.05,0.03 0.11,0.09 0.18,0.14 z" + id="path1974" /> + <path + class="st1" + d="m 621.52,202.17 c -0.08,0.02 -0.05,0.15 0.03,0.12 0.08,-0.02 0.04,-0.15 -0.03,-0.12 z" + id="path1976" /> + <path + class="st1" + d="m 629.71,200.36 c -0.08,0.02 -0.05,0.15 0.03,0.12 0.08,-0.02 0.05,-0.14 -0.03,-0.12 z" + id="path1978" /> + <path + class="st1" + d="m 631.82,198.94 c 0.01,0.01 0.02,0.02 0.04,0.03 0.03,0.01 0.06,0.02 0.1,0.01 l 0.03,-0.01 c 0.02,-0.01 0.03,-0.03 0.05,-0.05 0.01,-0.03 0.02,-0.05 0.04,-0.08 0.01,-0.01 0.01,-0.03 0.02,-0.04 0.01,-0.02 0.02,-0.04 0.03,-0.06 0,-0.01 0,-0.02 0,-0.03 0,-0.02 0,-0.03 -0.01,-0.04 0,-0.01 -0.01,-0.02 -0.01,-0.02 -0.01,-0.01 -0.02,-0.02 -0.03,-0.03 -0.01,0 -0.02,-0.01 -0.03,-0.01 -0.01,0 -0.02,0 -0.03,0 -0.02,0 -0.03,0 -0.04,0.01 -0.01,0 -0.03,0.01 -0.04,0.02 -0.01,0.02 -0.03,0.04 -0.04,0.05 l -0.03,0.04 c -0.02,0.02 -0.03,0.05 -0.05,0.07 -0.01,0.01 -0.01,0.03 -0.01,0.05 0,0.02 0,0.03 0,0.05 -0.01,0.01 0,0.03 0.01,0.04 z" + id="path1980" /> + <path + class="st1" + d="m 634.52,198.13 c 0,0.02 0,0.03 0.01,0.05 0.01,0.01 0.02,0.03 0.04,0.03 0.02,0.01 0.05,0.02 0.07,0.01 0.02,-0.01 0.05,-0.02 0.06,-0.04 0.01,-0.01 0.01,-0.03 0.01,-0.05 0,-0.02 0,-0.03 -0.01,-0.05 -0.01,-0.02 -0.02,-0.04 -0.03,-0.06 -0.01,-0.02 -0.02,-0.04 -0.03,-0.06 -0.01,-0.02 -0.05,-0.04 -0.07,-0.03 -0.03,0.01 -0.05,0.03 -0.05,0.06 0,0.02 0,0.04 0,0.06 0,0.04 0,0.06 0,0.08 z" + id="path1982" /> + <path + class="st1" + d="m 637.19,196.94 c 0.23,-0.06 0.13,-0.42 -0.1,-0.36 -0.23,0.07 -0.13,0.42 0.1,0.36 z" + id="path1984" /> + <path + class="st1" + d="m 639.97,196.86 c 0.01,0.01 0.01,0.02 0.03,0.02 0.02,0.01 0.05,0.02 0.07,0.01 0.02,-0.01 0.04,-0.02 0.05,-0.04 0,-0.01 0.01,-0.01 0.01,-0.02 0,-0.02 0,-0.03 0,-0.05 -0.01,-0.04 -0.01,-0.09 -0.02,-0.13 0,-0.01 -0.01,-0.03 -0.02,-0.04 -0.01,-0.01 -0.02,-0.02 -0.03,-0.03 -0.01,-0.01 -0.02,-0.01 -0.04,-0.01 -0.01,0 -0.03,0 -0.04,0 -0.03,0.01 -0.05,0.02 -0.06,0.05 0,0.01 -0.01,0.02 -0.01,0.02 0,0.02 0,0.04 0,0.06 0.02,0.04 0.03,0.08 0.05,0.12 0,0.02 0,0.03 0.01,0.04 z" + id="path1986" /> + <path + class="st1" + d="m 642.07,194.63 c -0.13,0.03 -0.07,0.23 0.05,0.2 0.13,-0.04 0.08,-0.24 -0.05,-0.2 z" + id="path1988" /> + <path + class="st1" + d="m 646.1,193.23 c 0.16,-0.04 0.1,-0.3 -0.07,-0.25 -0.16,0.04 -0.09,0.3 0.07,0.25 z" + id="path1990" /> + <path + class="st1" + d="m 648.82,191.56 c 0.2,-0.05 0.12,-0.37 -0.08,-0.31 -0.21,0.05 -0.12,0.37 0.08,0.31 z" + id="path1992" /> + <path + class="st1" + d="m 651.15,191.17 c 0.01,0.01 0.01,0.03 0.02,0.04 0,0 0,0.01 0.01,0.01 0.01,0.01 0.02,0.03 0.03,0.04 0,0 0.01,0.01 0.01,0.01 0.01,0.01 0.02,0.01 0.02,0.02 0.01,0.01 0.02,0.01 0.02,0.02 0,0 0,0 0,0 0.01,0.01 0.03,0.01 0.04,0.02 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0.01,0 0.03,0 0.04,0.01 0.01,0 0,0 0.02,0 0.01,0 0.02,0 0.02,0 0,0 0,0 0.01,0 0.01,-0.01 0.03,-0.01 0.05,-0.02 0,0 0,0 0.01,0 0.02,-0.01 0.04,-0.02 0.05,-0.04 0,0 0,-0.01 0.01,-0.01 0.01,-0.01 0.02,-0.03 0.03,-0.04 0,0 0,-0.01 0.01,-0.01 0.01,-0.02 0.01,-0.03 0.02,-0.05 0.01,-0.02 0.01,-0.04 0.01,-0.06 0,-0.02 0,-0.03 0,-0.05 0,-0.01 0,-0.02 -0.01,-0.03 0,-0.01 -0.01,-0.02 -0.01,-0.03 0,-0.01 -0.01,-0.02 -0.01,-0.03 0,0 0,0 0,-0.01 -0.01,-0.01 -0.02,-0.03 -0.03,-0.04 0,0 -0.01,-0.01 -0.01,-0.01 -0.01,-0.01 -0.03,-0.02 -0.04,-0.03 -0.02,-0.01 -0.04,-0.02 -0.06,-0.02 -0.02,0 -0.04,0 -0.06,0 -0.02,0.01 -0.04,0.02 -0.06,0.03 -0.01,0.01 -0.02,0.02 -0.03,0.03 0,0 0,0 -0.01,0 -0.01,0 -0.03,0.01 -0.04,0.01 0,0 0,0 0,0 0,0 -0.01,0.01 -0.01,0.01 -0.01,0.01 -0.02,0.01 -0.02,0.02 0,0 -0.01,0.01 -0.01,0.02 0,0 0,0.01 0,0.01 -0.01,0.01 -0.01,0.03 -0.02,0.04 -0.01,0.02 -0.01,0.04 -0.01,0.05 0,0.01 0,0.01 0,0.02 0,0.03 0,0.05 0.01,0.07 -0.01,0 0,0 0,0 z" + id="path1994" /> + <path + class="st1" + d="m 662.3,187.06 c 0.05,0.04 0.1,0.09 0.15,0.13 0.02,0.02 0.05,0.04 0.07,0.06 0.03,0.03 0.07,0.05 0.1,0.07 0.09,0.05 0.2,-0.05 0.14,-0.14 -0.02,-0.03 -0.04,-0.07 -0.07,-0.1 -0.02,-0.02 -0.04,-0.04 -0.06,-0.07 -0.05,-0.05 -0.09,-0.09 -0.14,-0.14 -0.09,-0.09 -0.18,-0.19 -0.28,-0.28 -0.05,-0.05 -0.15,-0.06 -0.2,0 -0.05,0.06 -0.06,0.15 0,0.2 0.09,0.09 0.19,0.18 0.29,0.27 z" + id="path1996" /> + <path + class="st1" + d="m 516.58,249.17 c 0.07,-0.02 0.04,-0.13 -0.03,-0.11 -0.07,0.02 -0.04,0.13 0.03,0.11 z" + id="path1998" /> + <path + class="st1" + d="m 521.09,246.49 c 0.14,-0.04 0.08,-0.26 -0.06,-0.22 -0.14,0.04 -0.08,0.26 0.06,0.22 z" + id="path2000" /> + <path + class="st1" + d="m 522.82,244.39 c 0.05,0.18 0.09,0.37 0.2,0.53 0.06,0.1 0.26,0.07 0.24,-0.07 -0.02,-0.18 -0.09,-0.35 -0.13,-0.53 -0.04,-0.17 -0.08,-0.34 -0.11,-0.52 -0.05,-0.36 -0.06,-0.72 -0.04,-1.08 0.01,-0.2 -0.3,-0.2 -0.31,0 -0.03,0.37 -0.01,0.75 0.04,1.12 0.03,0.19 0.06,0.37 0.11,0.55 z" + id="path2002" /> + <path + class="st1" + d="m 525.38,244.51 c 0.15,-0.04 0.09,-0.28 -0.06,-0.24 -0.16,0.05 -0.1,0.29 0.06,0.24 z" + id="path2004" /> + <path + class="st1" + d="m 529.12,242.39 c 0.03,0.08 0.07,0.14 0.13,0.2 0.09,0.1 0.24,-0.01 0.22,-0.13 -0.03,-0.12 -0.08,-0.24 -0.11,-0.36 -0.03,-0.11 -0.05,-0.23 -0.05,-0.34 -0.01,-0.25 0.03,-0.49 0.12,-0.71 0.03,-0.08 -0.04,-0.18 -0.11,-0.2 -0.09,-0.02 -0.17,0.03 -0.2,0.11 -0.1,0.26 -0.14,0.54 -0.12,0.82 0.01,0.14 0.03,0.28 0.07,0.42 0,0.06 0.02,0.12 0.05,0.19 z" + id="path2006" /> + <path + class="st1" + d="m 533.42,239.61 c 0.02,0.12 0.03,0.25 0.07,0.37 0.04,0.1 0.19,0.12 0.22,0 0.03,-0.12 0.02,-0.25 0.02,-0.38 0,-0.13 0,-0.25 -0.01,-0.38 -0.02,-0.25 -0.04,-0.5 -0.06,-0.76 -0.01,-0.09 -0.07,-0.17 -0.17,-0.17 -0.09,0 -0.18,0.08 -0.17,0.17 0.02,0.25 0.04,0.5 0.06,0.76 0.01,0.13 0.02,0.26 0.04,0.39 z" + id="path2008" /> + <path + class="st1" + d="m 536.94,240.42 c 0.16,-0.04 0.09,-0.29 -0.07,-0.25 -0.15,0.05 -0.09,0.3 0.07,0.25 z" + id="path2010" /> + <path + class="st1" + d="m 539.31,237.15 c 0.05,0.01 0.1,-0.02 0.13,-0.06 0.03,-0.05 0.04,-0.09 0.05,-0.14 0,-0.04 0.01,-0.07 0.01,-0.11 0.01,-0.07 0.02,-0.14 0.02,-0.21 0.01,-0.14 0.02,-0.29 0.03,-0.44 0.01,-0.09 -0.08,-0.17 -0.17,-0.17 -0.09,0 -0.16,0.07 -0.17,0.17 -0.01,0.14 -0.02,0.29 -0.02,0.43 0,0.07 0,0.14 0,0.21 0,0.04 0,0.07 0,0.11 0,0.05 0.01,0.09 0.03,0.13 0.01,0.04 0.04,0.07 0.09,0.08 z" + id="path2012" /> + <path + class="st1" + d="m 539.91,238.66 c 0.17,-0.05 0.1,-0.3 -0.07,-0.26 -0.16,0.05 -0.09,0.3 0.07,0.26 z" + id="path2014" /> + <path + class="st1" + d="m 541.69,237.6 c 0.13,-0.04 0.08,-0.24 -0.06,-0.21 -0.13,0.04 -0.07,0.25 0.06,0.21 z" + id="path2016" /> + <path + class="st1" + d="m 543.52,237.09 c 0.01,0.01 0.01,0.02 0.02,0.03 0.01,0.01 0.01,0.02 0.02,0.02 0.01,0.01 0.01,0.01 0.02,0.02 0,0 0.01,0.01 0.01,0.01 0.01,0.01 0.02,0.01 0.03,0.01 0.01,0 0.02,0 0.03,0 0.02,-0.01 0.04,-0.02 0.05,-0.04 0,0 0,-0.01 0.01,-0.01 0,-0.01 0.01,-0.02 0.01,-0.02 0,-0.01 0,-0.02 0,-0.03 0,-0.01 0,-0.02 0,-0.03 0,-0.02 0,-0.04 0,-0.07 0,-0.04 -0.03,-0.09 -0.06,-0.11 -0.03,-0.02 -0.06,-0.02 -0.09,-0.01 -0.02,0 -0.03,0.01 -0.04,0.02 -0.01,0.01 -0.02,0.02 -0.03,0.04 -0.02,0.04 -0.02,0.09 0,0.13 -0.01,0.01 0.01,0.02 0.02,0.04 z" + id="path2018" /> + <path + class="st1" + d="m 545.99,235.51 c 0.02,-0.01 0.04,-0.03 0.06,-0.06 0.01,-0.02 0.02,-0.05 0.02,-0.08 0,-0.03 0.01,-0.06 0.01,-0.08 0,-0.01 0,-0.03 0,-0.04 0,-0.01 0,-0.01 0,-0.02 0,-0.02 0,-0.03 -0.01,-0.04 0,-0.01 -0.01,-0.02 -0.01,-0.03 0,-0.01 -0.01,-0.01 -0.02,-0.02 -0.01,0 -0.01,0 -0.02,-0.01 -0.01,0 -0.02,0 -0.04,0 -0.01,0 -0.02,0 -0.04,0.01 -0.01,0 -0.01,0.01 -0.02,0.01 -0.01,0.01 -0.02,0.02 -0.03,0.03 -0.02,0.02 -0.04,0.03 -0.07,0.05 -0.02,0.01 -0.04,0.03 -0.06,0.06 -0.01,0.02 -0.02,0.05 -0.02,0.08 0,0.06 0.03,0.11 0.08,0.13 0.06,0.04 0.12,0.04 0.17,0.01 z" + id="path2020" /> + <path + class="st1" + d="m 550.34,233.41 c -0.09,0.03 -0.05,0.17 0.04,0.15 0.09,-0.03 0.05,-0.17 -0.04,-0.15 z" + id="path2022" /> + <path + class="st1" + d="m 552.85,233.25 c 0.02,0.05 0.03,0.11 0.06,0.15 0.03,0.04 0.07,0.08 0.11,0.12 0.08,0.07 0.2,0.02 0.21,-0.09 0,-0.05 0.01,-0.11 0,-0.16 -0.01,-0.05 -0.04,-0.09 -0.06,-0.14 -0.04,-0.09 -0.07,-0.17 -0.11,-0.26 -0.07,-0.17 -0.15,-0.34 -0.22,-0.51 -0.03,-0.07 -0.13,-0.09 -0.2,-0.06 -0.07,0.03 -0.12,0.11 -0.09,0.19 0.07,0.17 0.14,0.35 0.2,0.52 0.03,0.07 0.06,0.16 0.1,0.24 z" + id="path2024" /> + <path + class="st1" + d="m 555.03,232.93 c 0.19,-0.05 0.11,-0.34 -0.08,-0.29 -0.18,0.05 -0.1,0.34 0.08,0.29 z" + id="path2026" /> + <path + class="st1" + d="m 559.39,231.09 c 0.01,0.01 0.02,0.02 0.03,0.03 0.01,0 0.02,0.01 0.03,0.01 0.01,0 0.02,0 0.03,0 0.02,0 0.03,0 0.04,-0.01 0.01,0 0.03,-0.01 0.04,-0.02 l 0.03,-0.03 0.01,-0.01 c 0.01,-0.01 0.02,-0.02 0.03,-0.03 0,-0.01 0.01,-0.01 0.01,-0.02 0.02,-0.03 0.03,-0.05 0.05,-0.08 0.01,-0.02 0.01,-0.03 0.02,-0.05 0,-0.02 0,-0.04 0,-0.05 0,-0.02 -0.01,-0.03 -0.02,-0.05 -0.01,-0.01 -0.02,-0.03 -0.04,-0.03 -0.03,-0.02 -0.07,-0.02 -0.1,-0.01 -0.01,0 -0.02,0.01 -0.03,0.01 -0.02,0.01 -0.04,0.03 -0.05,0.05 -0.01,0.03 -0.03,0.06 -0.04,0.08 0,0.01 -0.01,0.01 -0.01,0.02 -0.01,0.02 -0.01,0.03 -0.02,0.05 l -0.01,0.05 c 0,0.01 0,0.02 0,0.03 0,0.02 0,0.03 0.01,0.04 -0.02,0 -0.02,0.01 -0.01,0.02 z" + id="path2028" /> + <path + class="st1" + d="m 564.32,229.05 c 0.21,-0.06 0.12,-0.38 -0.09,-0.32 -0.21,0.06 -0.12,0.38 0.09,0.32 z" + id="path2030" /> + <path + class="st1" + d="m 566.9,227.33 c 0.02,0.01 0.04,0.02 0.06,0.02 0.02,0 0.04,0 0.06,0 0.05,-0.01 0.1,-0.06 0.11,-0.11 l 0.02,-0.09 c 0,-0.01 0.01,-0.03 0.01,-0.04 0,-0.02 0.01,-0.03 0.01,-0.05 0,-0.01 0,-0.01 0,-0.02 0,-0.02 0,-0.03 -0.01,-0.05 -0.01,-0.01 -0.02,-0.03 -0.03,-0.03 -0.01,-0.01 -0.03,-0.01 -0.05,-0.01 -0.02,0 -0.03,0 -0.05,0.01 -0.01,0 -0.01,0.01 -0.02,0.01 -0.01,0.01 -0.03,0.02 -0.04,0.03 -0.01,0.01 -0.02,0.02 -0.03,0.03 l -0.07,0.06 c -0.04,0.04 -0.06,0.1 -0.04,0.15 0.01,0.01 0.01,0.03 0.02,0.04 0.01,0.02 0.03,0.04 0.05,0.05 z" + id="path2032" /> + <path + class="st1" + d="m 568.61,224.34 c 0.01,0.06 0.02,0.11 0.03,0.17 0,0.03 0.01,0.06 0.01,0.08 0.01,0.04 0.02,0.07 0.04,0.1 0.02,0.04 0.07,0.05 0.1,0.05 0.04,-0.01 0.07,-0.03 0.08,-0.07 0.03,-0.11 0.02,-0.24 0.03,-0.36 0,-0.06 0.01,-0.12 0,-0.17 l -0.01,-0.17 c -0.01,-0.08 -0.07,-0.16 -0.16,-0.16 -0.08,0 -0.17,0.07 -0.16,0.16 l 0.01,0.17 c 0,0.07 0.01,0.14 0.03,0.2 z" + id="path2034" /> + <path + class="st1" + d="m 569.09,225.81 c 0.18,-0.05 0.11,-0.34 -0.08,-0.29 -0.19,0.06 -0.11,0.34 0.08,0.29 z" + id="path2036" /> + <path + class="st1" + d="m 572.44,223.95 c 0.19,-0.05 0.11,-0.35 -0.08,-0.3 -0.19,0.05 -0.11,0.35 0.08,0.3 z" + id="path2038" /> + <path + class="st1" + d="m 578.48,220.38 c 0.03,0.07 0.06,0.15 0.1,0.22 0.05,0.1 0.09,0.22 0.22,0.24 0.08,0.01 0.14,-0.01 0.19,-0.08 0.07,-0.11 0.02,-0.22 -0.02,-0.32 -0.03,-0.09 -0.07,-0.18 -0.11,-0.26 -0.07,-0.16 -0.13,-0.31 -0.2,-0.47 -0.02,-0.05 -0.08,-0.09 -0.13,-0.1 -0.05,-0.01 -0.12,-0.01 -0.17,0.02 -0.11,0.07 -0.12,0.18 -0.08,0.29 0.06,0.16 0.13,0.31 0.2,0.46 z" + id="path2040" /> + <path + class="st1" + d="m 680.45,203.26 c -0.05,-0.1 -0.11,-0.2 -0.16,-0.31 -0.03,-0.07 -0.13,-0.09 -0.19,-0.05 -0.07,0.04 -0.08,0.12 -0.05,0.19 0.05,0.1 0.1,0.2 0.15,0.31 0.02,0.05 0.05,0.1 0.08,0.14 0.03,0.05 0.06,0.12 0.11,0.16 0.04,0.03 0.08,0.04 0.13,0.02 0.04,-0.02 0.07,-0.06 0.07,-0.11 0,-0.07 -0.04,-0.14 -0.07,-0.2 -0.03,-0.05 -0.05,-0.1 -0.07,-0.15 z" + id="path2042" /> + <path + class="st1" + d="m 681.18,202.8 c -0.16,-0.21 -0.31,-0.43 -0.47,-0.64 -0.04,-0.05 -0.11,-0.08 -0.17,-0.04 -0.05,0.03 -0.08,0.11 -0.04,0.17 l 0.45,0.67 c 0.08,0.11 0.15,0.22 0.23,0.33 0.04,0.06 0.08,0.11 0.11,0.17 0.04,0.06 0.09,0.1 0.15,0.15 0.09,0.06 0.21,-0.04 0.18,-0.14 -0.04,-0.13 -0.13,-0.24 -0.21,-0.35 -0.07,-0.11 -0.15,-0.21 -0.23,-0.32 z" + id="path2044" /> + <path + class="st1" + d="m 682.43,203.29 c -0.14,-0.31 -0.27,-0.63 -0.41,-0.94 -0.05,-0.11 -0.23,-0.03 -0.19,0.08 0.13,0.32 0.26,0.63 0.38,0.95 0.06,0.16 0.12,0.32 0.18,0.48 0.06,0.16 0.1,0.33 0.21,0.47 0.09,0.12 0.25,0.05 0.23,-0.1 -0.03,-0.17 -0.12,-0.32 -0.19,-0.47 -0.07,-0.16 -0.14,-0.31 -0.21,-0.47 z" + id="path2046" /> + <path + class="st1" + d="m 684.8,199.07 c -0.12,-0.23 -0.24,-0.47 -0.36,-0.7 -0.04,-0.08 -0.15,-0.1 -0.23,-0.06 -0.09,0.05 -0.1,0.15 -0.06,0.23 0.1,0.24 0.21,0.47 0.31,0.71 0.05,0.12 0.1,0.23 0.17,0.34 0.07,0.11 0.12,0.26 0.23,0.33 0.07,0.04 0.18,0.01 0.2,-0.08 0.03,-0.14 -0.06,-0.27 -0.1,-0.4 -0.04,-0.13 -0.09,-0.25 -0.16,-0.37 z" + id="path2048" /> + <path + class="st1" + d="m 686.2,202.28 c -0.1,-0.21 -0.19,-0.43 -0.27,-0.65 -0.17,-0.44 -0.37,-0.86 -0.56,-1.29 -0.07,-0.17 -0.32,-0.02 -0.25,0.15 0.19,0.43 0.37,0.86 0.57,1.28 0.1,0.21 0.19,0.41 0.28,0.62 0.05,0.11 0.1,0.22 0.14,0.33 0.04,0.11 0.05,0.2 0.16,0.26 0.06,0.04 0.17,0 0.18,-0.08 0.02,-0.13 -0.03,-0.19 -0.09,-0.3 -0.07,-0.1 -0.11,-0.21 -0.16,-0.32 z" + id="path2050" /> + <path + class="st1" + d="m 688.41,195.83 c -0.01,-0.07 -0.09,-0.1 -0.15,-0.09 -0.07,0.02 -0.1,0.09 -0.09,0.15 0.09,0.65 0.39,1.37 0.94,1.74 0.08,0.05 0.19,-0.06 0.13,-0.13 -0.19,-0.26 -0.38,-0.5 -0.53,-0.78 -0.15,-0.28 -0.25,-0.58 -0.3,-0.89 z" + id="path2052" /> + <path + class="st1" + d="m 690.78,200.35 -0.5,-1.06 c -0.06,-0.13 -0.25,-0.02 -0.19,0.11 l 0.49,1.04 c 0.08,0.17 0.16,0.34 0.24,0.51 0.08,0.17 0.15,0.37 0.25,0.53 0.06,0.1 0.24,0.04 0.2,-0.08 -0.06,-0.18 -0.16,-0.35 -0.24,-0.52 -0.08,-0.18 -0.16,-0.36 -0.25,-0.53 z" + id="path2054" /> + <path + class="st1" + d="m 688.75,193.92 c 0.14,0.1 0.27,-0.09 0.21,-0.21 -0.11,-0.22 -0.3,-0.42 -0.45,-0.62 -0.16,-0.21 -0.34,-0.41 -0.52,-0.61 -0.34,-0.39 -0.67,-0.82 -1.07,-1.14 -0.12,-0.1 -0.32,0.03 -0.23,0.18 0.26,0.46 0.64,0.85 0.98,1.25 0.16,0.2 0.33,0.4 0.5,0.59 0.18,0.19 0.36,0.41 0.58,0.56 z" + id="path2056" /> + <path + class="st1" + d="m 690.74,197.49 c 0.07,0.14 0.14,0.29 0.22,0.42 0.05,0.07 0.17,0.03 0.15,-0.06 -0.03,-0.15 -0.1,-0.3 -0.15,-0.45 -0.05,-0.15 -0.12,-0.29 -0.18,-0.44 -0.13,-0.29 -0.26,-0.58 -0.39,-0.88 -0.05,-0.12 -0.27,-0.03 -0.22,0.09 0.12,0.29 0.25,0.59 0.37,0.88 0.07,0.15 0.13,0.3 0.2,0.44 z" + id="path2058" /> + <path + class="st1" + d="m 691.85,199.35 c 0.06,-0.02 0.03,-0.1 -0.02,-0.09 -0.06,0.02 -0.04,0.11 0.02,0.09 z" + id="path2060" /> + <path + class="st1" + d="m 694.23,198.71 -0.12,-0.14 -0.24,-0.3 c -0.02,-0.03 -0.07,-0.05 -0.11,-0.04 -0.04,0 -0.07,0.01 -0.09,0.03 -0.06,0.04 -0.08,0.13 -0.04,0.2 0.07,0.1 0.15,0.21 0.22,0.31 0.04,0.05 0.07,0.1 0.11,0.15 0.02,0.03 0.04,0.05 0.05,0.08 0.02,0.03 0.04,0.06 0.08,0.08 0.03,0.02 0.06,0.02 0.1,0.02 0.06,0.01 0.13,-0.05 0.14,-0.11 0,-0.02 0.01,-0.05 0.01,-0.07 0,-0.05 -0.02,-0.09 -0.05,-0.13 -0.01,-0.02 -0.04,-0.05 -0.06,-0.08 z" + id="path2062" /> + <path + class="st1" + d="m 692.36,192.01 c -0.08,-0.1 -0.15,-0.21 -0.24,-0.31 -0.17,-0.2 -0.36,-0.4 -0.54,-0.59 l -1.06,-1.16 c -0.17,-0.18 -0.43,0.09 -0.27,0.27 0.34,0.4 0.69,0.79 1.03,1.19 0.17,0.2 0.33,0.39 0.51,0.58 0.09,0.09 0.18,0.18 0.27,0.27 0.09,0.1 0.18,0.19 0.3,0.26 0.14,0.08 0.26,-0.08 0.21,-0.21 -0.05,-0.11 -0.14,-0.2 -0.21,-0.3 z" + id="path2064" /> + <path + class="st1" + d="m 694.22,195.08 -0.46,-0.87 c -0.08,-0.16 -0.32,-0.02 -0.24,0.14 0.14,0.29 0.29,0.58 0.43,0.87 0.07,0.14 0.14,0.29 0.22,0.42 0.08,0.14 0.14,0.3 0.27,0.4 0.06,0.05 0.17,0.02 0.17,-0.07 0,-0.17 -0.1,-0.32 -0.17,-0.47 -0.07,-0.14 -0.14,-0.28 -0.22,-0.42 z" + id="path2066" /> + <path + class="st1" + d="m 695.46,197.4 c 0.02,0.02 0.03,0.04 0.05,0.05 0.02,0.02 0.04,0.04 0.07,0.05 0.02,0.01 0.05,0.01 0.06,-0.01 0.02,-0.02 0.02,-0.04 0.01,-0.06 -0.01,-0.01 -0.01,-0.02 -0.02,-0.03 -0.01,-0.01 -0.02,-0.03 -0.03,-0.04 -0.02,-0.02 -0.03,-0.04 -0.05,-0.06 -0.03,-0.04 -0.07,-0.08 -0.1,-0.12 -0.01,-0.01 -0.03,-0.02 -0.05,-0.02 -0.02,0 -0.04,0.01 -0.05,0.02 -0.03,0.03 -0.03,0.07 0,0.1 0.04,0.05 0.08,0.08 0.11,0.12 z" + id="path2068" /> + <path + class="st1" + d="m 697.77,196.43 c 0.01,-0.02 0.02,-0.04 0.02,-0.07 0,-0.03 -0.01,-0.05 -0.02,-0.07 -0.02,-0.04 -0.04,-0.08 -0.05,-0.12 -0.01,-0.02 -0.02,-0.04 -0.03,-0.06 -0.01,-0.02 -0.02,-0.04 -0.04,-0.05 -0.01,-0.02 -0.02,-0.03 -0.04,-0.03 -0.02,-0.01 -0.04,-0.01 -0.05,0 -0.04,0.01 -0.06,0.04 -0.06,0.08 0,0.02 0,0.04 0,0.07 0,0.02 0,0.04 0.01,0.06 0,0.04 0.01,0.09 0.01,0.13 0,0.03 0.01,0.05 0.02,0.07 0.01,0.02 0.03,0.04 0.05,0.05 0.03,0.02 0.07,0.02 0.11,0.01 0.02,-0.02 0.05,-0.04 0.07,-0.07 z" + id="path2070" /> + <path + class="st1" + d="m 694.78,189.54 -1.2,-1.12 c -0.14,-0.13 -0.35,0.08 -0.21,0.21 0.4,0.39 0.79,0.78 1.19,1.17 0.39,0.38 0.77,0.79 1.21,1.12 0.14,0.11 0.27,-0.11 0.17,-0.23 -0.34,-0.41 -0.76,-0.78 -1.16,-1.15 z" + id="path2072" /> + <path + class="st1" + d="m 698.44,194.56 c -0.08,-0.16 -0.16,-0.32 -0.24,-0.48 -0.16,-0.32 -0.32,-0.63 -0.47,-0.95 -0.07,-0.15 -0.29,-0.02 -0.22,0.13 0.16,0.32 0.31,0.63 0.47,0.95 0.08,0.15 0.15,0.31 0.23,0.46 0.04,0.08 0.08,0.15 0.12,0.23 0.04,0.08 0.07,0.16 0.15,0.21 0.07,0.05 0.16,-0.02 0.16,-0.09 0.01,-0.09 -0.05,-0.17 -0.09,-0.25 -0.04,-0.07 -0.07,-0.14 -0.11,-0.21 z" + id="path2074" /> + <path + class="st1" + d="m 545.88,287.61 c -0.16,-0.1 -0.31,-0.21 -0.47,-0.31 -0.06,-0.04 -0.15,-0.01 -0.19,0.05 -0.04,0.07 -0.01,0.14 0.05,0.19 0.15,0.11 0.3,0.23 0.45,0.34 0.15,0.12 0.28,0.23 0.45,0.34 0.08,0.05 0.2,0.02 0.24,-0.06 0.05,-0.09 0.02,-0.18 -0.06,-0.24 -0.16,-0.11 -0.32,-0.21 -0.47,-0.31 z" + id="path2076" /> + <path + class="st1" + d="m 536.73,277.33 c 0.14,0.11 0.33,-0.07 0.2,-0.2 -0.53,-0.55 -1.16,-1.14 -1.43,-1.87 -0.13,-0.35 -0.17,-0.72 -0.24,-1.08 -0.08,-0.39 -0.11,-0.8 -0.1,-1.2 0,-0.16 -0.24,-0.16 -0.25,0 -0.02,0.4 0,0.81 0.07,1.21 0.07,0.4 0.25,0.75 0.42,1.12 0.17,0.37 0.31,0.74 0.52,1.09 0.23,0.35 0.49,0.68 0.81,0.93 z" + id="path2078" /> + <path + class="st1" + d="m 535.88,273.49 c -0.01,0.31 0.03,0.63 0.12,0.93 0.08,0.29 0.2,0.62 0.44,0.82 0.06,0.05 0.15,0 0.13,-0.08 -0.08,-0.28 -0.23,-0.53 -0.32,-0.81 -0.09,-0.28 -0.14,-0.57 -0.14,-0.86 0,-0.15 -0.23,-0.15 -0.23,0 z" + id="path2080" /> + <path + class="st1" + d="m 537.22,276.08 c -0.01,-0.01 -0.02,-0.02 -0.02,-0.03 -0.01,-0.02 -0.03,-0.04 -0.04,-0.06 -0.03,-0.05 -0.07,-0.09 -0.1,-0.14 -0.02,-0.03 -0.06,-0.05 -0.1,-0.03 -0.03,0.02 -0.05,0.06 -0.03,0.1 0.03,0.04 0.05,0.09 0.08,0.13 0.01,0.02 0.03,0.04 0.04,0.06 0.02,0.03 0.03,0.05 0.05,0.08 0.02,0.03 0.05,0.06 0.09,0.06 0.03,0 0.06,-0.03 0.07,-0.06 0,-0.02 -0.01,-0.04 -0.02,-0.07 -0.01,-0.02 -0.01,-0.03 -0.02,-0.04 z" + id="path2082" /> + <path + class="st1" + d="m 536.76,273.87 c -0.02,-0.09 -0.16,-0.05 -0.14,0.04 0.1,0.62 0.37,1.27 0.83,1.72 0.05,0.04 0.13,-0.02 0.09,-0.07 -0.18,-0.25 -0.36,-0.51 -0.5,-0.79 -0.13,-0.29 -0.22,-0.59 -0.28,-0.9 z" + id="path2084" /> + <path + class="st1" + d="m 537.77,274.6 c -0.08,-0.12 -0.15,-0.23 -0.22,-0.36 -0.12,-0.25 -0.2,-0.52 -0.24,-0.79 -0.02,-0.13 -0.25,-0.1 -0.24,0.03 0.03,0.3 0.11,0.6 0.23,0.87 0.06,0.13 0.13,0.26 0.21,0.38 0.04,0.07 0.1,0.12 0.15,0.18 0.06,0.06 0.11,0.12 0.18,0.15 0.07,0.03 0.18,-0.02 0.14,-0.11 -0.03,-0.07 -0.07,-0.12 -0.11,-0.18 -0.03,-0.05 -0.06,-0.11 -0.1,-0.17 z" + id="path2086" /> + <path + class="st1" + d="m 538.32,274 c -0.07,-0.18 -0.14,-0.36 -0.21,-0.55 -0.03,-0.07 -0.09,-0.11 -0.16,-0.09 -0.07,0.02 -0.12,0.09 -0.09,0.16 0.07,0.19 0.13,0.37 0.2,0.56 0.03,0.09 0.06,0.18 0.1,0.28 0.04,0.1 0.08,0.19 0.13,0.29 0.07,0.13 0.25,0.04 0.22,-0.09 -0.02,-0.1 -0.05,-0.19 -0.08,-0.29 -0.04,-0.09 -0.07,-0.18 -0.11,-0.27 z" + id="path2088" /> + <path + class="st1" + d="m 544.29,271.15 c 0.07,0.08 0.13,0.15 0.2,0.23 0.07,0.08 0.15,0.19 0.25,0.21 0.06,0.01 0.14,-0.03 0.14,-0.1 0,-0.03 -0.01,-0.07 -0.03,-0.1 -0.01,-0.02 -0.03,-0.04 -0.04,-0.06 -0.04,-0.05 -0.07,-0.09 -0.11,-0.14 -0.07,-0.08 -0.14,-0.16 -0.21,-0.23 -0.14,-0.16 -0.28,-0.31 -0.42,-0.47 -0.05,-0.05 -0.14,-0.05 -0.19,0 -0.05,0.05 -0.05,0.13 0,0.19 0.14,0.16 0.27,0.32 0.41,0.47 z" + id="path2090" /> + <path + class="st1" + d="m 544.97,272.72 c -0.09,0 -0.09,0.15 0,0.15 0.1,-0.01 0.1,-0.15 0,-0.15 z" + id="path2092" /> + <path + class="st1" + d="m 545.79,273.11 c 0.02,0.05 0.08,0.08 0.12,0.03 0.09,-0.1 0.09,-0.24 0.1,-0.36 0.01,-0.13 0.01,-0.26 0,-0.39 -0.03,-0.28 -0.09,-0.55 -0.19,-0.81 -0.21,-0.51 -0.55,-0.94 -1,-1.25 -0.1,-0.07 -0.19,0.09 -0.09,0.16 0.41,0.29 0.73,0.71 0.9,1.19 0.09,0.23 0.14,0.47 0.16,0.72 0.01,0.12 0.01,0.24 0,0.35 0,0.11 -0.04,0.24 0,0.36 z" + id="path2094" /> + <path + class="st1" + d="m 546.45,271.05 c -0.26,-0.6 -0.64,-1.16 -1.1,-1.63 -0.09,-0.09 -0.22,0.05 -0.14,0.14 0.43,0.46 0.78,1 1.02,1.58 0.11,0.27 0.21,0.56 0.27,0.85 0.07,0.3 0.07,0.64 0.18,0.92 0.03,0.06 0.12,0.07 0.14,0 0.08,-0.29 -0.01,-0.65 -0.07,-0.93 -0.07,-0.32 -0.17,-0.63 -0.3,-0.93 z" + id="path2096" /> + <path + class="st1" + d="m 544.8,268.44 c 0.29,0.19 0.56,0.39 0.81,0.63 0.48,0.46 0.88,0.98 1.2,1.57 0.32,0.58 0.54,1.2 0.68,1.85 0.15,0.67 0.14,1.33 0.15,2 0,0.14 0.21,0.18 0.25,0.03 0.36,-1.34 -0.09,-2.9 -0.76,-4.07 -0.34,-0.61 -0.8,-1.18 -1.31,-1.65 -0.25,-0.24 -0.52,-0.46 -0.8,-0.66 -0.26,-0.18 -0.6,-0.43 -0.92,-0.42 -0.11,0 -0.14,0.12 -0.08,0.2 0.19,0.23 0.53,0.36 0.78,0.52 z" + id="path2098" /> + <path + class="st1" + d="m 542.3,277.49 c 0.17,-0.03 0.33,-0.08 0.49,-0.15 0.17,-0.07 0.34,-0.14 0.47,-0.28 0.07,-0.08 0,-0.22 -0.11,-0.19 -0.15,0.04 -0.29,0.13 -0.43,0.19 -0.15,0.06 -0.3,0.11 -0.46,0.14 -0.31,0.07 -0.63,0.09 -0.94,0.04 -0.07,-0.01 -0.14,0.02 -0.16,0.09 -0.02,0.06 0.02,0.15 0.09,0.16 0.35,0.07 0.7,0.07 1.05,0 z" + id="path2100" /> + <path + class="st1" + d="m 540.85,278.18 c 0.63,0.19 1.3,0.17 1.92,-0.04 0.3,-0.1 0.59,-0.25 0.85,-0.43 0.26,-0.18 0.54,-0.4 0.66,-0.7 0.03,-0.09 -0.08,-0.17 -0.15,-0.12 -0.24,0.16 -0.42,0.39 -0.65,0.55 -0.25,0.17 -0.51,0.31 -0.8,0.41 -0.56,0.19 -1.18,0.24 -1.76,0.12 -0.14,-0.02 -0.2,0.17 -0.07,0.21 z" + id="path2102" /> + <path + class="st1" + d="m 540.07,278.49 c -0.05,-0.04 -0.12,-0.05 -0.17,0 -0.04,0.04 -0.05,0.12 0,0.17 0.18,0.16 0.39,0.28 0.61,0.37 0.1,0.04 0.21,0.08 0.32,0.11 0.11,0.03 0.26,0.05 0.37,0.01 0.06,-0.02 0.08,-0.11 0.02,-0.15 -0.09,-0.05 -0.2,-0.07 -0.3,-0.1 -0.11,-0.02 -0.21,-0.06 -0.31,-0.1 -0.2,-0.07 -0.38,-0.17 -0.54,-0.31 z" + id="path2104" /> + <path + class="st1" + d="m 543.88,278.07 c -0.54,0.39 -1.17,0.67 -1.82,0.83 -0.1,0.02 -0.08,0.19 0.02,0.18 0.72,-0.08 1.37,-0.35 1.96,-0.77 0.28,-0.2 0.55,-0.43 0.78,-0.69 0.12,-0.13 0.23,-0.26 0.33,-0.4 0.1,-0.14 0.22,-0.29 0.19,-0.47 -0.01,-0.05 -0.08,-0.09 -0.12,-0.07 -0.15,0.06 -0.21,0.2 -0.3,0.32 -0.1,0.14 -0.2,0.28 -0.31,0.41 -0.22,0.24 -0.47,0.47 -0.73,0.66 z" + id="path2106" /> + <path + class="st1" + d="m 546.59,276.91 c -0.25,0.21 -0.41,0.48 -0.61,0.73 -0.2,0.25 -0.43,0.48 -0.67,0.7 -0.5,0.45 -1.09,0.81 -1.72,1.06 -1.44,0.57 -2.97,0.46 -4.42,-0.03 -0.13,-0.04 -0.21,0.16 -0.09,0.22 1.42,0.71 3.18,0.71 4.65,0.13 0.64,-0.26 1.24,-0.62 1.76,-1.07 0.49,-0.42 1.11,-1 1.24,-1.66 0.02,-0.08 -0.07,-0.14 -0.14,-0.08 z" + id="path2108" /> + <path + class="st1" + d="m 539.18,270.54 c 0.08,-0.04 0.17,-0.09 0.26,-0.12 0.08,-0.03 0.17,-0.03 0.26,-0.05 0.17,-0.03 0.35,-0.06 0.52,-0.07 0.16,-0.01 0.35,0.02 0.5,-0.04 0.06,-0.03 0.05,-0.11 0,-0.14 -0.15,-0.09 -0.38,-0.04 -0.55,-0.02 -0.19,0.02 -0.38,0.07 -0.55,0.15 -0.09,0.04 -0.16,0.09 -0.25,0.13 -0.08,0.03 -0.16,0.07 -0.23,0.11 -0.17,0.09 -0.32,0.19 -0.47,0.31 -0.03,0.03 0.01,0.07 0.05,0.05 0.15,-0.13 0.3,-0.23 0.46,-0.31 z" + id="path2110" /> + <path + class="st1" + d="m 538.14,271.05 c 0.37,-0.32 0.72,-0.64 1.15,-0.87 0.21,-0.12 0.43,-0.21 0.65,-0.29 0.22,-0.07 0.49,-0.08 0.68,-0.21 0.07,-0.04 0.05,-0.13 -0.02,-0.16 -0.23,-0.08 -0.53,0.02 -0.76,0.09 -0.25,0.07 -0.49,0.17 -0.72,0.29 -0.45,0.23 -0.91,0.57 -1.17,1.01 -0.06,0.12 0.09,0.22 0.19,0.14 z" + id="path2112" /> + <path + class="st1" + d="m 539.16,269.43 c 0.16,-0.06 0.32,-0.11 0.49,-0.15 0.16,-0.03 0.38,-0.02 0.5,-0.14 0.05,-0.04 0.03,-0.11 -0.02,-0.14 -0.15,-0.1 -0.38,-0.02 -0.54,0.01 -0.18,0.04 -0.37,0.1 -0.54,0.19 -0.33,0.16 -0.64,0.39 -0.9,0.65 -0.06,0.07 0.03,0.16 0.1,0.1 0.27,-0.22 0.58,-0.4 0.91,-0.52 z" + id="path2114" /> + <path + class="st1" + d="m 541.03,268.32 c -0.32,-0.15 -0.81,-0.04 -1.14,0.02 -0.4,0.08 -0.78,0.21 -1.15,0.39 -0.74,0.36 -1.31,0.93 -1.73,1.63 -0.04,0.07 0.06,0.13 0.11,0.06 0.42,-0.62 1.06,-1.11 1.73,-1.44 0.33,-0.16 0.69,-0.28 1.05,-0.36 0.18,-0.04 0.36,-0.06 0.55,-0.07 0.18,-0.01 0.39,0.02 0.56,-0.04 0.08,-0.03 0.11,-0.15 0.02,-0.19 z" + id="path2116" /> + <path + class="st1" + d="m 535.97,270.54 c 0.62,-0.91 1.45,-1.71 2.42,-2.24 0.48,-0.26 0.99,-0.46 1.52,-0.6 0.53,-0.13 1.07,-0.16 1.61,-0.24 0.14,-0.02 0.14,-0.26 0,-0.28 -1.11,-0.18 -2.36,0.27 -3.31,0.8 -1.03,0.58 -1.88,1.4 -2.42,2.45 -0.07,0.12 0.1,0.22 0.18,0.11 z" + id="path2118" /> + </g> + </g> + <g + id="g2144"> + <path + class="st1" + d="m 427.56,560.64 c 1.26,1.22 1.88,2.64 1.88,4.26 0,2.68 -0.75,4.63 -2.25,5.84 -1.5,1.22 -3.87,1.7 -7.12,1.46 -7.3,-0.57 -13,-0.95 -17.1,-1.16 -4.1,-0.2 -9.48,-0.34 -16.13,-0.43 -3,14.93 -5.76,29.94 -8.28,45.03 -0.89,5.52 -1.83,11.91 -2.8,19.17 -0.97,7.26 -1.62,13.13 -1.95,17.59 -0.16,2.35 -1.13,4.16 -2.92,5.42 -1.78,1.26 -3.93,1.89 -6.45,1.89 -2.68,0 -4.75,-0.65 -6.21,-1.95 -1.46,-1.3 -2.19,-3 -2.19,-5.11 0,-1.95 0.3,-5.17 0.91,-9.68 0.61,-4.5 1.32,-9.23 2.13,-14.18 0.89,-4.95 1.58,-9.25 2.07,-12.9 0.89,-6.17 1.91,-12.29 3.04,-18.38 1.13,-6.09 2.27,-11.85 3.41,-17.28 0.24,-1.22 0.53,-2.62 0.85,-4.2 0.32,-1.58 0.69,-3.35 1.1,-5.29 -7.95,0.24 -14.2,0.89 -18.74,1.95 -4.54,1.06 -7.77,2.54 -9.67,4.44 -1.91,1.91 -2.86,4.36 -2.86,7.36 0,2.76 0.81,5.4 2.43,7.91 0.32,0.57 0.49,1.18 0.49,1.83 0,1.54 -0.91,2.98 -2.74,4.32 -1.83,1.34 -3.71,2.01 -5.66,2.01 -1.38,0 -2.51,-0.4 -3.41,-1.22 -1.63,-1.38 -2.96,-3.35 -4.02,-5.9 -1.06,-2.56 -1.58,-5.46 -1.58,-8.7 0,-6.9 2.25,-12.43 6.76,-16.61 4.5,-4.18 11.36,-7.24 20.57,-9.19 9.21,-1.95 21.03,-2.92 35.48,-2.92 8.92,0 16.05,0.16 21.36,0.49 5.31,0.32 9.96,0.85 13.94,1.58 2.51,0.48 4.4,1.34 5.66,2.55 z" + id="path2124" /> + <path + class="st1" + d="m 480.26,633.43 c 0.61,0.97 0.91,2.31 0.91,4.02 0,3.25 -0.77,5.76 -2.31,7.55 -3.73,4.3 -7.57,7.83 -11.5,10.59 -3.94,2.76 -8.42,4.14 -13.45,4.14 -4.14,0 -7.27,-1.2 -9.37,-3.59 -2.11,-2.39 -3.16,-5.86 -3.16,-10.41 0,-2.27 0.57,-6.33 1.7,-12.17 1.05,-5.11 1.58,-8.64 1.58,-10.59 0,-1.3 -0.45,-1.95 -1.34,-1.95 -1.06,0 -2.56,1.36 -4.5,4.08 -1.95,2.72 -3.89,6.31 -5.84,10.77 -1.95,4.46 -3.53,9.17 -4.75,14.12 -1.54,6.49 -5.36,9.74 -11.44,9.74 -2.43,0 -4.04,-0.87 -4.81,-2.62 -0.77,-1.74 -1.16,-4.89 -1.16,-9.43 0,-2.6 0.04,-4.66 0.12,-6.21 l 0.12,-9.74 c 0,-12.5 1.28,-25.52 3.83,-39.07 2.56,-13.55 6.33,-24.93 11.32,-34.14 4.99,-9.21 10.97,-13.81 17.95,-13.81 3.73,0 6.76,1.6 9.07,4.81 2.31,3.21 3.47,7.36 3.47,12.48 0,8.2 -2.39,16.7 -7.18,25.5 -4.79,8.81 -12.58,19.09 -23.37,30.85 -0.25,4.22 -0.37,8.56 -0.37,13.02 2.68,-6.9 5.66,-12.52 8.95,-16.86 3.29,-4.34 6.53,-7.44 9.74,-9.31 3.2,-1.87 6.15,-2.8 8.82,-2.8 5.27,0 7.91,2.64 7.91,7.91 0,3.16 -0.89,8.89 -2.68,17.16 -1.54,7.06 -2.31,11.73 -2.31,14 0,3.25 1.17,4.87 3.53,4.87 1.62,0 3.55,-0.99 5.78,-2.98 2.23,-1.99 5.21,-5.21 8.95,-9.68 0.97,-1.14 2.07,-1.7 3.29,-1.7 1.06,-0.01 1.89,0.47 2.5,1.45 z m -43.51,-70.41 c -1.78,4.18 -3.51,9.82 -5.17,16.92 -1.66,7.1 -3.02,14.83 -4.08,23.19 5.03,-5.92 9.19,-12.37 12.48,-19.35 3.29,-6.98 4.93,-13.31 4.93,-18.99 0,-2.6 -0.29,-4.58 -0.85,-5.96 -0.57,-1.38 -1.38,-2.07 -2.44,-2.07 -1.46,-0.01 -3.09,2.08 -4.87,6.26 z" + id="path2126" /> + <path + class="st1" + d="m 528.09,633.43 c 0.61,0.97 0.91,2.31 0.91,4.02 0,3.25 -0.77,5.76 -2.31,7.55 -3,3.65 -7.24,7.02 -12.72,10.1 -5.48,3.08 -11.34,4.62 -17.59,4.62 -8.52,0 -15.13,-2.31 -19.84,-6.94 -4.71,-4.63 -7.06,-10.95 -7.06,-18.99 0,-5.6 1.18,-10.81 3.53,-15.64 2.35,-4.83 5.62,-8.66 9.8,-11.5 4.18,-2.84 8.9,-4.26 14.18,-4.26 4.71,0 8.48,1.4 11.32,4.2 2.84,2.8 4.26,6.59 4.26,11.38 0,5.6 -2.01,10.41 -6.02,14.42 -4.02,4.02 -10.81,7.2 -20.39,9.55 2.03,3.73 5.88,5.6 11.56,5.6 3.65,0 7.81,-1.28 12.47,-3.83 4.67,-2.56 8.7,-5.9 12.11,-10.04 0.97,-1.14 2.07,-1.7 3.29,-1.7 1.06,0 1.9,0.48 2.5,1.46 z m -40.77,-13.88 c -2.07,3.49 -3.1,7.71 -3.1,12.66 v 0.24 c 4.79,-1.14 8.56,-2.84 11.32,-5.11 2.76,-2.27 4.14,-4.91 4.14,-7.91 0,-1.54 -0.43,-2.78 -1.28,-3.71 -0.85,-0.93 -2.01,-1.4 -3.47,-1.4 -3.01,0 -5.54,1.74 -7.61,5.23 z" + id="path2128" /> + <path + class="st1" + d="m 583.65,623.33 c 0.57,1.06 0.85,2.39 0.85,4.02 0,3.9 -1.18,6.21 -3.53,6.94 -4.87,1.7 -10.22,2.68 -16.07,2.92 -1.54,6.82 -4.58,12.27 -9.13,16.37 -4.54,4.1 -9.7,6.15 -15.46,6.15 -4.87,0 -9.03,-1.17 -12.47,-3.53 -3.45,-2.35 -6.07,-5.48 -7.85,-9.37 -1.79,-3.89 -2.68,-8.11 -2.68,-12.66 0,-6.16 1.18,-11.66 3.53,-16.49 2.35,-4.83 5.6,-8.6 9.74,-11.32 4.14,-2.72 8.72,-4.08 13.75,-4.08 6.16,0 11.14,2.13 14.91,6.39 3.77,4.26 5.98,9.51 6.63,15.76 3.81,-0.24 8.36,-1.05 13.63,-2.43 0.65,-0.16 1.22,-0.24 1.7,-0.24 1.07,-0.02 1.89,0.51 2.45,1.57 z m -35.6,20.32 c 1.91,-2.11 3.19,-5.15 3.83,-9.13 -2.51,-1.7 -4.44,-3.93 -5.78,-6.69 -1.34,-2.76 -2.01,-5.68 -2.01,-8.76 0,-1.3 0.12,-2.6 0.37,-3.9 h -0.61 c -3.25,0 -5.95,1.56 -8.09,4.69 -2.15,3.12 -3.22,7.53 -3.22,13.21 0,4.46 0.87,7.87 2.61,10.22 1.74,2.35 3.79,3.53 6.15,3.53 2.59,0 4.84,-1.06 6.75,-3.17 z" + id="path2130" /> + <path + class="st1" + d="m 645.67,633.43 c 0.61,0.97 0.91,2.31 0.91,4.02 0,3.25 -0.77,5.76 -2.31,7.55 -3.33,4.06 -6.98,7.53 -10.95,10.41 -3.98,2.88 -7.91,4.32 -11.81,4.32 -6.17,0 -10.88,-3.61 -14.12,-10.83 -3.41,4.3 -6.39,7.18 -8.95,8.64 -2.56,1.46 -5.54,2.19 -8.95,2.19 -4.95,0 -9.03,-1.84 -12.23,-5.54 -3.21,-3.69 -4.81,-8.5 -4.81,-14.42 0,-6.49 1.38,-12.52 4.14,-18.07 2.76,-5.56 6.55,-10.1 11.38,-13.63 4.83,-3.53 10.24,-5.62 16.25,-6.27 1.54,-15.74 4.48,-29.19 8.82,-40.35 4.34,-11.16 10.04,-16.74 17.1,-16.74 3.49,0 6.39,1.58 8.7,4.75 2.31,3.16 3.47,7.95 3.47,14.36 0,9.09 -2.23,19.72 -6.7,31.89 -4.46,12.17 -10.43,24.67 -17.89,37.49 0.32,4.71 1.03,8.07 2.13,10.1 1.1,2.03 2.5,3.04 4.2,3.04 2.19,0 4.42,-0.97 6.69,-2.92 2.27,-1.95 5.31,-5.19 9.13,-9.74 0.97,-1.14 2.07,-1.7 3.29,-1.7 1.06,-0.01 1.9,0.47 2.51,1.45 z m -47.29,12.11 c 1.54,-1.26 3.49,-3.59 5.84,-7 -0.81,-4.38 -1.22,-9.29 -1.22,-14.73 0,-1.95 0.08,-5.11 0.25,-9.49 -4.47,1.38 -8.18,4.36 -11.14,8.95 -2.96,4.59 -4.44,9.68 -4.44,15.27 0,5.92 2.03,8.89 6.09,8.89 1.54,-0.01 3.08,-0.63 4.62,-1.89 z m 25.81,-80.7 c -1.54,5.48 -2.86,12.64 -3.96,21.48 -1.1,8.85 -1.89,18.1 -2.38,27.75 9.09,-19.8 13.63,-35.7 13.63,-47.71 0,-3.08 -0.26,-5.48 -0.79,-7.18 -0.53,-1.7 -1.16,-2.56 -1.89,-2.56 -1.53,0.01 -3.08,2.74 -4.61,8.22 z" + id="path2132" /> + <path + class="st1" + d="m 701.23,623.33 c 0.57,1.06 0.85,2.39 0.85,4.02 0,3.9 -1.18,6.21 -3.53,6.94 -4.87,1.7 -10.22,2.68 -16.07,2.92 -1.54,6.82 -4.58,12.27 -9.13,16.37 -4.54,4.1 -9.7,6.15 -15.46,6.15 -4.87,0 -9.03,-1.17 -12.47,-3.53 -3.45,-2.35 -6.07,-5.48 -7.85,-9.37 -1.79,-3.89 -2.68,-8.11 -2.68,-12.66 0,-6.16 1.18,-11.66 3.53,-16.49 2.35,-4.83 5.6,-8.6 9.74,-11.32 4.14,-2.72 8.72,-4.08 13.75,-4.08 6.16,0 11.14,2.13 14.91,6.39 3.77,4.26 5.98,9.51 6.63,15.76 3.81,-0.24 8.36,-1.05 13.63,-2.43 0.65,-0.16 1.22,-0.24 1.7,-0.24 1.07,-0.02 1.88,0.51 2.45,1.57 z m -35.6,20.32 c 1.91,-2.11 3.19,-5.15 3.83,-9.13 -2.51,-1.7 -4.44,-3.93 -5.78,-6.69 -1.34,-2.76 -2.01,-5.68 -2.01,-8.76 0,-1.3 0.12,-2.6 0.37,-3.9 h -0.61 c -3.25,0 -5.95,1.56 -8.09,4.69 -2.15,3.12 -3.22,7.53 -3.22,13.21 0,4.46 0.87,7.87 2.61,10.22 1.74,2.35 3.79,3.53 6.15,3.53 2.59,0 4.84,-1.06 6.75,-3.17 z" + id="path2134" /> + <path + class="st1" + d="m 740.24,633.43 c 0.61,0.97 0.91,2.31 0.91,4.02 0,3.25 -0.77,5.76 -2.31,7.55 -3.49,4.3 -7.28,7.83 -11.38,10.59 -4.1,2.76 -8.74,4.14 -13.94,4.14 -7.14,0 -12.43,-3.24 -15.88,-9.74 -3.45,-6.49 -5.17,-14.89 -5.17,-25.19 0,-9.9 1.28,-21.18 3.83,-33.84 2.55,-12.66 6.33,-23.53 11.32,-32.62 4.99,-9.09 10.93,-13.63 17.83,-13.63 3.9,0 6.96,1.81 9.19,5.42 2.23,3.61 3.35,8.78 3.35,15.52 0,9.66 -2.68,20.85 -8.03,33.59 -5.36,12.74 -12.62,25.36 -21.79,37.85 0.57,3.33 1.5,5.7 2.8,7.12 1.3,1.42 3,2.13 5.11,2.13 3.32,0 6.25,-0.95 8.76,-2.86 2.51,-1.91 5.72,-5.17 9.61,-9.8 0.97,-1.14 2.07,-1.7 3.29,-1.7 1.06,-0.01 1.89,0.47 2.5,1.45 z m -23.8,-66.58 c -2.35,6.74 -4.42,15.09 -6.21,25.07 -1.79,9.98 -2.76,19.56 -2.92,28.72 5.76,-9.49 10.34,-19.01 13.75,-28.54 3.41,-9.53 5.11,-18.24 5.11,-26.11 0,-6.17 -1.14,-9.25 -3.41,-9.25 -1.86,0.01 -3.96,3.38 -6.32,10.11 z" + id="path2136" /> + <path + class="st1" + d="m 734.76,654.12 c -2.39,-3.73 -3.59,-8.68 -3.59,-14.85 0,-3.65 0.46,-8.34 1.4,-14.06 0.93,-5.72 2.13,-11.05 3.59,-16 0.73,-2.6 1.7,-4.38 2.92,-5.36 1.22,-0.97 3.17,-1.46 5.84,-1.46 4.14,0 6.21,1.38 6.21,4.14 0,2.03 -0.77,6.74 -2.31,14.12 -1.95,8.93 -2.92,14.97 -2.92,18.14 0,2.43 0.32,4.3 0.97,5.6 0.65,1.3 1.74,1.95 3.29,1.95 1.46,0 3.29,-1.01 5.48,-3.04 2.19,-2.03 5.11,-5.23 8.76,-9.61 0.97,-1.14 2.07,-1.7 3.29,-1.7 1.06,0 1.89,0.49 2.5,1.46 0.61,0.97 0.91,2.31 0.91,4.02 0,3.25 -0.77,5.76 -2.31,7.55 -8.03,9.82 -15.54,14.73 -22.51,14.73 -5.29,-0.03 -9.13,-1.9 -11.52,-5.63 z m 4.81,-62.14 c -1.7,-1.58 -2.56,-3.79 -2.56,-6.63 0,-2.84 1.12,-5.21 3.35,-7.12 2.23,-1.91 5.01,-2.86 8.34,-2.86 3,0 5.44,0.73 7.3,2.19 1.87,1.46 2.8,3.53 2.8,6.21 0,3.25 -1.06,5.82 -3.16,7.73 -2.11,1.91 -4.91,2.86 -8.4,2.86 -3.41,0 -5.97,-0.79 -7.67,-2.38 z" + id="path2138" /> + <path + class="st1" + d="m 818.01,633.43 c 0.61,0.97 0.91,2.31 0.91,4.02 0,3.25 -0.77,5.76 -2.31,7.55 -3.49,4.3 -7.3,7.83 -11.44,10.59 -4.14,2.76 -8.89,4.14 -14.24,4.14 -16.55,0 -24.83,-11.64 -24.83,-34.93 0,-3.57 0.12,-7.18 0.36,-10.83 h -4.74 c -2.44,0 -4.08,-0.45 -4.93,-1.34 -0.85,-0.89 -1.28,-2.31 -1.28,-4.26 0,-4.54 1.83,-6.82 5.48,-6.82 h 6.94 c 1.38,-8.92 3.49,-17.08 6.33,-24.46 2.84,-7.38 6.27,-13.27 10.29,-17.65 4.02,-4.38 8.34,-6.57 12.96,-6.57 3.41,0 6.09,1.5 8.03,4.5 1.95,3 2.92,6.78 2.92,11.32 0,12.58 -5.28,23.53 -15.82,32.86 h 13.63 c 1.3,0 2.23,0.29 2.8,0.85 0.57,0.57 0.85,1.62 0.85,3.16 0,5.6 -4.58,8.4 -13.75,8.4 h -14.85 c -0.16,4.06 -0.24,7.22 -0.24,9.49 0,8.44 0.99,14.36 2.98,17.77 1.99,3.41 5.13,5.11 9.43,5.11 3.49,0 6.57,-1.05 9.25,-3.16 2.68,-2.11 5.84,-5.27 9.49,-9.49 0.97,-1.14 2.07,-1.7 3.29,-1.7 1.05,-0.01 1.88,0.47 2.49,1.45 z M 790.14,569.1 c -1.5,3.04 -2.92,7.26 -4.26,12.66 -1.34,5.4 -2.45,11.38 -3.35,17.95 4.79,-4.14 8.38,-8.78 10.77,-13.94 2.39,-5.15 3.59,-9.84 3.59,-14.06 0,-4.79 -0.89,-7.18 -2.68,-7.18 -1.21,0.01 -2.57,1.53 -4.07,4.57 z" + id="path2140" /> + <path + class="st1" + d="m 865.84,633.43 c 0.61,0.97 0.91,2.31 0.91,4.02 0,3.25 -0.77,5.76 -2.31,7.55 -3,3.65 -7.24,7.02 -12.72,10.1 -5.48,3.08 -11.34,4.62 -17.59,4.62 -8.52,0 -15.13,-2.31 -19.84,-6.94 -4.71,-4.63 -7.06,-10.95 -7.06,-18.99 0,-5.6 1.18,-10.81 3.53,-15.64 2.35,-4.83 5.62,-8.66 9.8,-11.5 4.18,-2.84 8.9,-4.26 14.18,-4.26 4.71,0 8.48,1.4 11.32,4.2 2.84,2.8 4.26,6.59 4.26,11.38 0,5.6 -2.01,10.41 -6.02,14.42 -4.02,4.02 -10.81,7.2 -20.39,9.55 2.03,3.73 5.88,5.6 11.56,5.6 3.65,0 7.81,-1.28 12.47,-3.83 4.67,-2.56 8.7,-5.9 12.11,-10.04 0.97,-1.14 2.07,-1.7 3.29,-1.7 1.06,0 1.89,0.48 2.5,1.46 z m -40.77,-13.88 c -2.07,3.49 -3.1,7.71 -3.1,12.66 v 0.24 c 4.79,-1.14 8.56,-2.84 11.32,-5.11 2.76,-2.27 4.14,-4.91 4.14,-7.91 0,-1.54 -0.43,-2.78 -1.28,-3.71 -0.85,-0.93 -2.01,-1.4 -3.47,-1.4 -3.01,0 -5.54,1.74 -7.61,5.23 z" + id="path2142" /> + </g> +</g> +</svg> diff --git a/docs/benchmarks-and-executions.md b/docs/benchmarks-and-executions.md new file mode 100644 index 0000000000000000000000000000000000000000..48dd8d39a0fb5839244ca56ae14fce8d740d5aca --- /dev/null +++ b/docs/benchmarks-and-executions.md @@ -0,0 +1,43 @@ +--- +title: Fundamental Concepts +has_children: false +nav_order: 2 +--- + +# Benchmarks and Executions + +In Theodolite, we distinguish between the static description of a scalability benchmark and its execution. + +## Benchmarks + +Benchmarks define what should be executed in scalability experiments. They +consist of a system under test (SUT) and an associated load generator, where +both SUT and load generator are represented as sets of Kubernetes resources +such as Pods, Services, or ConfigMaps. +Additionally, benchmarks define one or more load and resource types, scalability +can be evaluated for. + +[TODO]: # (Link to metrics) + +Benchmarks are portable, that is they can be provided by standardization +organizations, researchers, etc. and installed by other researchers, +engineers, etc. +They do not have a life-cycle. Instead, to run a benchmark, an execution of a +benchmark is created and passed to Theodolite. + +## Execution + +An execution represents a one-time execution of a benchmark with a +specific configuration. Hence, an execution refers to a benchmark and one of +the load and resource types defined by that benchmark. Additionally, executions +allow to alter the SUT or the load generator to evaluate regarding specific +configurations. + +Executions also describe details regarding the scalability measurement method, +such as for long experiment should be performed or how often they should be +repeated. + +In contrast to benchmarks, execution have a life-cycle. They can be planned, +executed, or aborted. Each execution of a benchmark is represented by an +individual entity. This supports repeatability as executions can be archived +and shared. diff --git a/docs/creating-a-benchmark.md b/docs/creating-a-benchmark.md new file mode 100644 index 0000000000000000000000000000000000000000..2b1d93bbec0afb3a8897a77439388538fc75c4a6 --- /dev/null +++ b/docs/creating-a-benchmark.md @@ -0,0 +1,130 @@ +--- +title: Creating Benchmarks +has_children: false +nav_order: 5 +--- + +# Creating a Benchmark + +Please note that to simply run a benchmark, it is not required to define one. Theodolite comes with a [set of benchmarks](theodolite-benchmarks), which are ready to be executed. See the [fundamental concepts](benchmarks-and-executions) page to learn more about our distinction between benchmarks and executions. + +A typical benchmark looks like this: + +```yaml +apiVersion: theodolite.com/v1 +kind: benchmark +metadata: + name: example-benchmark +spec: + sut: + resources: + - configMap: + name: "example-configmap" + files: + - "uc1-kstreams-deployment.yaml" + loadGenerator: + resources: + - configMap: + name: "example-configmap" + files: + - uc1-load-generator-service.yaml + - uc1-load-generator-deployment.yaml + loadTypes: + - typeName: "NumSensors" + patchers: + - type: "EnvVarPatcher" + resource: "uc1-load-generator-deployment.yaml" + properties: + variableName: "NUM_SENSORS" + container: "workload-generator" + - type: "NumSensorsLoadGeneratorReplicaPatcher" + resource: "uc1-load-generator-deployment.yaml" + properties: + loadGenMaxRecords: "150000" + kafkaConfig: + bootstrapServer: "theodolite-cp-kafka:9092" + topics: + - name: "input" + numPartitions: 40 + replicationFactor: 1 + - name: "theodolite-.*" + removeOnly: True + +``` + +## System under Test (SUT), Load Generator and Infrastructure + +In Thedolite, the system under test (SUT), the load generator as well as additional infrastructure (e.g., a middleware) are described by Kubernetes resources files. +All resources defined for the SUT and the load generator are started and stopped for each SLO experiment, with SUT resources being started before the load generator. +Infrastructure resources live over the entire duration of a benchmark run. They avoid time-consuming recreation of software components like middlewares, but should be used with caution to not let previous SLO experiments influence latte ones. + +### Resources + +#### ConfigMap + +The recommended way to link Kubernetes resources files from a Benchmark is by bundling them in one or multiple ConfigMaps and refer to that ConfigMap from `sut.resources`, `loadGenerator.resources` or `infrastructure.resources`. +To create a ConfigMap from all the Kubernetes resources in a directory run: + +```sh +kubectl create configmap <configmap-name> --from-file=<path-to-resource-dir> +``` + +Add an item such as the following one to the `resources` list of the `sut`, `loadGenerator` or `infrastructure` fields. + +```yaml +configMap: + name: example-configmap + files: + - example-deployment.yaml + - example-service.yaml +``` + +#### Filesystem + +Alternatively, resources can also be read from the filesystem, Theodolite has access to. This usually requires that the Benchmark resources are available in a volume, which is mounted into the Theodolite container. + +```yaml +filesystem: + path: example/path/to/files + files: + - example-deployment.yaml + - example-service.yaml +``` + +<!-- ### Before and after actions --> + + + + +<!-- +A Benchmark refers to other Kubernetes resources (e.g., Deployments, Services, ConfigMaps), which describe the system under test, the load generator and infrastructure components such as a middleware used in the benchmark. To manage those resources, Theodolite needs to have access to them. This is done by bundling resources in ConfigMaps. + +Suppose the resources needed by your benchmark are defined as YAML files, located in the `resources` directory. You can put them into the ConfigMap `benchmark-resources-custom` by running: +--> + + +## Load and Resource Types + +Benchmarks need to specify at least one supported load and resource type for which scalability can be benchmarked. + +Load and resource types are described by a name (used for reference from an Execution) and a list of patchers. +Patchers can be seen as functions, which take a value as input and modify a Kubernetes resource in a patcher-specific way. Examples of patchers are the *ReplicaPatcher*, which modifies the replica specification of a deployment, or the *EnvVarPatcher*, which modifies an environment variable. +See the [patcher API reference](api-reference/patchers) for an overview of available patchers. + +If a benchmark is [executed by an Execution](running-benchmarks), these patchers are used to configure SUT and load generator according to the [load and resource values](creating-an-execution) set in the Execution. + +## Kafka Configuration + +Theodolite allows to automatically create and remove Kafka topics for each SLO experiment. +Use the `removeOnly: True` property for topics which are created automatically by the SUT. +For those topics, also wildcards are allowed in the topic name. + +If no Kafka topics should be created, simply set: + +```yaml +kafkaConfig: [] +``` + + +<!-- Further information: API Reference --> +<!-- Further information: How to deploy --> diff --git a/docs/creating-an-execution.md b/docs/creating-an-execution.md new file mode 100644 index 0000000000000000000000000000000000000000..263d630ff2db82927c72d2c2482fcddc09705bfc --- /dev/null +++ b/docs/creating-an-execution.md @@ -0,0 +1,103 @@ +--- +title: Creating an Execution +has_children: false +parent: Running Benchmarks +nav_order: 6 +--- + +# Creating an Execution + +Theodolite Executions look similar to the following example. + +<!-- TODO align with upstream --> +```yaml +apiVersion: theodolite.com/v1 +kind: execution +metadata: + name: theodolite-example-execution +spec: + benchmark: "uc1-kstreams" + load: + loadType: "NumSensors" + loadValues: [25000, 50000] + resources: + resourceType: "Instances" + resourceValues: [1, 2] + slos: + - sloType: "lag trend" + prometheusUrl: "http://prometheus-operated:9090" + offset: 0 + properties: + threshold: 2000 + externalSloUrl: "http://localhost:80/evaluate-slope" + warmup: 60 # in seconds + execution: + strategy: "LinearSearch" + duration: 300 # in seconds + repetitions: 1 + loadGenerationDelay: 30 # in seconds + restrictions: + - "LowerBound" + configOverrides: + - patcher: + type: "SchedulerNamePatcher" + resource: "uc1-kstreams-deployment.yaml" + value: "random-scheduler" +``` + +## Naming and Labeling + +Similar to [Kubernetes Jobs](https://kubernetes.io/docs/concepts/workloads/controllers/job/), Theodolite Executions are not automatically deleted after they are finished. Therefore, it is recommended to choose a meaningful name for your Execution. Additionally, you can add labels to your Executions as with any other Kubernetes resource. + +## Reference to a Benchmark + +An Execution always refers to a Benchmark. For the Execution to run, the Benchmark must be registered with Kubernetes and it must be in state *Ready*. If this is not the case, the Execution will remain in state *Pending*. + +As a Benchmark may define multiple supported load and resource types, an Execution has to pick exactly one of each by its name. Additionally, it defines the set of load values and resource values the benchmark should be executed with. Both these values are represented as integers, which are interpreted in a [Benchmark-specific way](creating-a-benchmark) to configure the SUT and load generator. + +## Definition of SLOs + +SLOs provide a way to quantify whether a certain load intensity can be handled by a certain amount of provisioned resources. +In Theodolite, SLO are evaluated by requesting monitoring data from Prometheus and analyzing it in a benchmark-specific way. +An Execution must at least define one SLO to be checked. + +A good choice to get started is defining an SLO of type `generic`: + +```yaml +- sloType: "generic" + prometheusUrl: "http://prometheus-operated:9090" + offset: 0 + properties: + externalSloUrl: "http://localhost:8082" + promQLQuery: "sum by(job) (kafka_streams_stream_task_metrics_dropped_records_total>=0)" + warmup: 60 # in seconds + queryAggregation: max + repetitionAggregation: median + operator: lte + threshold: 1000 +``` + +All you have to do is to define a [PromQL query](https://prometheus.io/docs/prometheus/latest/querying/basics/) describing which metrics should be requested (`promQLQuery`) and how the resulting time series should be evaluated. With `queryAggregation` you specify how the resulting time series is aggregated to a single value and `repetitionAggregation` describes how the results of multiple repetitions are aggregated. Possible values are +`mean`, `median`, `mode`, `sum`, `count`, `max`, `min`, `std`, `var`, `skew`, `kurt` as well as percentiles such as `p99` or `p99.9`. The result of aggregation all repetitions is checked against `threshold`. This check is performed using an `operator`, which describes that the result must be "less than" (`lt`), "less than equal" (`lte`), "greater than" (`gt`) or "greater than equal" (`gte`) to the threshold. + +In case you need to evaluate monitoring data in a more flexible fashion, you can also change the value of `externalSloUrl` to your custom SLO checker. Have a look at the source code of the [generic SLO checker](https://github.com/cau-se/theodolite/tree/master/slo-checker/generic) to get started. + +## Experimental Setup + +According to Theodolite's measurement method, isolated SLO experiments are performed for different combinations of load intensity and resource amounts. +The experimental setup can be configured by: + +* A search strategy (`strategy`), which determines which load and resource combinations should be tested. Supported values are `FullSearch`, `LinearSearch` and `BinarySearch`. Additionally, a `restrictions` can be set to `LowerBound`. +* The `duration` per SLO experiment in seconds. +* The number of repetitions (`repetitions`) for each SLO experiment. +* A `loadGenerationDelay`, specifying the time in seconds before the load generation starts. + +## Configuration Overrides + +In cases where only small modifications of a system under test should be benchmarked, it is not necessary to [create a new benchmark](creating-a-benchmark). +Instead, also Executions allow to do small reconfigurations, such as switching on or off a specific Pod scheduler. + +This is done by defining `configOverrides` in the Execution. Each override consists of a patcher, defining which Kubernetes resource should be patched in which way, and a value the patcher is applied with. + +<!-- Further information: API Reference --> +<!-- Further information: How to run --> diff --git a/docs/development/index.md b/docs/development/index.md new file mode 100644 index 0000000000000000000000000000000000000000..fc4447286c3778faab0fb7f0a1e45b41dea01295 --- /dev/null +++ b/docs/development/index.md @@ -0,0 +1,5 @@ +--- +title: Development +has_children: true +nav_order: 8 +--- \ No newline at end of file diff --git a/docs/release-process.md b/docs/development/release-process.md similarity index 67% rename from docs/release-process.md rename to docs/development/release-process.md index 103d8d1ac65472459bcaad648f921240eaf508c8..21f913fbb8626d141d1df49db808fe0b36a01462 100644 --- a/docs/release-process.md +++ b/docs/development/release-process.md @@ -1,7 +1,8 @@ --- title: Release Process has_children: false -nav_order: 2 +parent: Development +nav_order: 1 --- # Release Process @@ -22,13 +23,15 @@ again be merged into master. 1. the default `helm/values.yaml` file, 2. the example `execution/theodolite.yaml` job, 3. the Kubernetes benchmark resources in `theodolite-benchmarks/definitions/**/resources` and - 2. the Docker Compose files in `theodolite-benchmarks/docker-test`. + 4. the Docker Compose files in `theodolite-benchmarks/docker-test`. 2. Update both, the `version` and the `appVersion` fields, in the Helm `Charts.yaml` file to `0.3.1`. - 3. Update `codemeta.json` to match the new version. In particular, make sure that `version` points to the version you are releasing and `dateModified` points to the date you are relasing this version. [CodeMeata generator](https://codemeta.github.io/codemeta-generator/) may help you in updating the file. + 3. Update the `version` field of the `theodolite/build.gradle` file to `0.3.1`. Make sure to also adjust all references to the build artifact in the `theodolite/README.md`. - 4. Update `CITATION.cff` to match the new version. At least update the `version` field. + 4. Update `codemeta.json` to match the new version. In particular, make sure that `version` points to the version you are releasing and `dateModified` points to the date you are relasing this version. [CodeMeta generator](https://codemeta.github.io/codemeta-generator/) may help you in updating the file. + + 5. Update `CITATION.cff` to match the new version. At least update the `version` field. 4. Create a Helm package by running `./build-package.sh` from the chart directory. @@ -36,9 +39,9 @@ again be merged into master. 6. Commit these changes to the `v0.3` branch. -7. Tag this commit `v0.3.1` (can be done via GitLab). The corresponding Docker images will be uploaded. +7. Tag this commit `v0.3.1` (can be done via GitLab). The corresponding Docker images will be uploaded from the CI/CD pipeline. -8. Create *releases* on GitLab and GitHub. Upload the generated Helm package to these releases. +8. Create *releases* on GitLab and GitHub. Upload the generated Helm package to these releases via the UIs of GitLab and GitHub. 9. Switch to the `master` branch. @@ -48,8 +51,10 @@ again be merged into master. 1. Update the Helm `Charts.yaml` file to `0.4.0-SNAPSHOT` (see Step 3). - 2. Update the `codemeta.json` file according to Step 3. + 2. Update the Theodolite `build.gradle` and `README.md` files `0.4.0-SNAPSHOT` (see Step 3). + + 3. Update the `codemeta.json` file according to Step 3. - 3. Update the `CITATION.cff` file according to Step 3. + 4. Update the `CITATION.cff` file according to Step 3. 12. Commit these changes to the `master` branch. diff --git a/docs/drafts/actions.md b/docs/drafts/actions.md new file mode 100644 index 0000000000000000000000000000000000000000..8092fddb088b3fe8fc64f51bff03bb0c6504b74f --- /dev/null +++ b/docs/drafts/actions.md @@ -0,0 +1,62 @@ +## Infrastructure +The necessary infrastructure for an execution can be defined in the benchmark manifests. The related resources are create *before* an execution is started, and removed *after* an execution is finished. + +### Example + +```yaml + infrastructure: + resources: + - configMap: + name: "example-configmap" + files: + - "uc1-kstreams-deployment.yaml" +``` + +## Action Commands +Theodolite allows to execute commands on running pods (similar to the `kubectl exec -it <pod-name> -- <command>` command). This commands can be run either before (via so called `beforeActions`) or after (via so called `afterActions`) an experiment is executed. + +Theodolite checks if all required pods are available for the specified actions (i.e. the pods must either be defined as infrastructure or already deployed in the cluster). If not all pods/resources are available, the benchmark will not be set as `Ready`. Consequently, an action cannot be executed on a pod that is defined as an SUT or loadGen resource. + +### Example + +```yaml +# For the system under test + sut: + resources: ... + beforeActions: + - selector: + pod: + matchLabels: + app: busybox1 + exec: + command: ["touch", "test-file-sut"] + timeoutSeconds: 90 + afterActions: + - selector: + pod: + matchLabels: + app: busybox1 + exec: + command: [ "touch", "test-file-sut-after" ] + timeoutSeconds: 90 + +# analog, for the load generator + loadGenerator: + resources: ... + beforeActions: + - selector: + pod: + matchLabels: + app: busybox1 + exec: + command: ["touch", "test-file-loadGen"] + timeoutSeconds: 90 + afterActions: + - selector: + pod: + matchLabels: + app: busybox1 + exec: + command: [ "touch", "test-file-loadGen-after" ] + timeoutSeconds: 90 +``` \ No newline at end of file diff --git a/docs/favicon.ico b/docs/favicon.ico new file mode 100644 index 0000000000000000000000000000000000000000..81062e21501bd98a29505433c1e3b43965f5c17d Binary files /dev/null and b/docs/favicon.ico differ diff --git a/docs/index.md b/docs/index.md new file mode 100644 index 0000000000000000000000000000000000000000..d3ef9c4be274e6ff623c0b5857f4ed0284697407 --- /dev/null +++ b/docs/index.md @@ -0,0 +1,18 @@ +--- +title: Home +nav_order: 1 +#nav_exclude: true +permalink: / +--- + +{: .d-block .mx-auto .mb-8 .theodolite-logo } + + +Theodolite is a framework for benchmarking the horizontal and vertical scalability of cloud-native applications. +{: .fs-6 .fw-300 .text-center } + +[Get started now](quickstart){: .btn .btn-primary .fs-5 .mb-4 .mb-md-0 .mr-4 } +[Learn the underlying concepts](benchmarks-and-executions){: .btn .fs-5 .mb-4 .mb-md-0 } +{: .text-center } + +--- diff --git a/docs/index.yaml b/docs/index.yaml index 54580ea45f1c678443dae96c7139f53fdac37f60..185ff1b0616b760c647a809006c48bf26c554490 100644 --- a/docs/index.yaml +++ b/docs/index.yaml @@ -1,6 +1,76 @@ apiVersion: v1 entries: theodolite: + - apiVersion: v2 + appVersion: 0.6.1 + created: "2022-01-18T10:40:00.557347616+01:00" + dependencies: + - condition: grafana.enabled + name: grafana + repository: https://grafana.github.io/helm-charts + version: 6.17.5 + - condition: kube-prometheus-stack.enabled + name: kube-prometheus-stack + repository: https://prometheus-community.github.io/helm-charts + version: 20.0.1 + - condition: cp-helm-charts.enabled + name: cp-helm-charts + repository: https://soerenhenning.github.io/cp-helm-charts + version: 0.6.0 + - condition: kafka-lag-exporter.enabled + name: kafka-lag-exporter + repository: https://lightbend.github.io/kafka-lag-exporter/repo/ + version: 0.6.7 + description: Theodolite is a framework for benchmarking the horizontal and vertical + scalability of cloud-native applications. + digest: 4896111999375c248d7dda0bdff090c155f464b79416decc0e0b47dc6710b5c7 + home: https://www.theodolite.rocks + maintainers: + - email: soeren.henning@email.uni-kiel.de + name: Sören Henning + url: https://www.se.informatik.uni-kiel.de/en/team/soeren-henning-m-sc + name: theodolite + sources: + - https://github.com/cau-se/theodolite + type: application + urls: + - https://github.com/cau-se/theodolite/releases/download/v0.6.1/theodolite-0.6.1.tgz + version: 0.6.1 + - apiVersion: v2 + appVersion: 0.6.0 + created: "2022-01-12T13:53:08.413006558+01:00" + dependencies: + - condition: grafana.enabled + name: grafana + repository: https://grafana.github.io/helm-charts + version: 6.17.5 + - condition: kube-prometheus-stack.enabled + name: kube-prometheus-stack + repository: https://prometheus-community.github.io/helm-charts + version: 20.0.1 + - condition: cp-helm-charts.enabled + name: cp-helm-charts + repository: https://soerenhenning.github.io/cp-helm-charts + version: 0.6.0 + - condition: kafka-lag-exporter.enabled + name: kafka-lag-exporter + repository: https://lightbend.github.io/kafka-lag-exporter/repo/ + version: 0.6.7 + description: Theodolite is a framework for benchmarking the horizontal and vertical + scalability of cloud-native applications. + digest: 53435304229582680d55360ad79a25050f6cc97641cbb88d691b35d91a54d354 + home: https://www.theodolite.rocks + maintainers: + - email: soeren.henning@email.uni-kiel.de + name: Sören Henning + url: https://www.se.informatik.uni-kiel.de/en/team/soeren-henning-m-sc + name: theodolite + sources: + - https://github.com/cau-se/theodolite + type: application + urls: + - https://github.com/cau-se/theodolite/releases/download/v0.6.0/theodolite-0.6.0.tgz + version: 0.6.0 - apiVersion: v2 appVersion: 0.5.1 created: "2021-11-12T16:15:01.629937292+01:00" @@ -106,4 +176,4 @@ entries: urls: - https://github.com/cau-se/theodolite/releases/download/v0.4.0/theodolite-0.4.0.tgz version: 0.4.0 -generated: "2021-11-12T16:15:01.591258889+01:00" +generated: "2022-01-18T10:40:00.486387187+01:00" diff --git a/docs/installation.md b/docs/installation.md new file mode 100644 index 0000000000000000000000000000000000000000..a97e5ea499657cdc3c40f3c03a13c974b5a39bab --- /dev/null +++ b/docs/installation.md @@ -0,0 +1,105 @@ +--- +title: Installation +has_children: false +nav_order: 3 +--- + +# Installing Theodolite + +The easiest option to install Theodolite is using [Helm](https://helm.sh). +To install Theodolite with all its dependencies run: + +```sh +helm repo add theodolite https://cau-se.github.io/theodolite +helm repo update +helm install theodolite theodolite/theodolite +``` + +This installs Theodolite in operator mode. Operator mode is the easiest to use, but requires some permissions in the installation. If those cannot be granted, Theodolite can also be installed for standalone mode. + + +## Installation Options + +As usual, the installation via Helm can be configured by passing a values YAML file: + +```sh +helm install theodolite theodolite/theodolite --values <your-config.yaml> +``` + +For this purpose the [default values file](https://github.com/cau-se/theodolite/blob/master/helm/values.yaml) can serve as a template for your custom configuration. + +### Minimal setup + +For Kubernetes clusters with limited resources such as on local developer installations, we provide a [minimal values file](https://github.com/cau-se/theodolite/blob/master/helm/preconfigs/minimal.yaml). + +### Persisting results + +To store the results of benchmark executions in a [PersistentVolume](https://kubernetes.io/docs/concepts/storage/persistent-volumes), `operator.resultsVolume.persistent.enabled` has to be set to `true`. This requires that either a statically provisioned PersistentVolume is available or a dynamic provisioner exists (which is the case for many Kubernetes installations). If required, you can select a storage class with `operator.resultsVolume.persistent.storageClassName`. +You can also use an existing PersistentVolumeClaim by setting `operator.resultsVolume.persistent.existingClaim`. +If persistence is not enabled, all results will be gone upon pod termination. + + +### Standalone mode + +Per default, Theodolite is installed in operator mode, which allows to run and manage benchmarks through the Kubernetes API. For running Theodolite in standalone mode, it is sufficient to disable the operator by setting `operator.enabled` to `false`. Additionally, you might want to add the command line argument `--skip-crds`. With these settings, only Theodolite's dependencies as well as resources to get the necessary permissions are installed. + +### Random scheduler + +Installation of the random scheduler can be enabled via `randomScheduler.enabled`. Please note that the random scheduler is neither required in operator mode nor in standalone mode. However, it has to be installed if benchmark executions should use random scheduling. + +<!-- **TODO:** link--> + +### Multiple installations in the same cluster + +Multiple Theodolite installations in the same namespace are currently not fully tested. +In cases, where you need to install multiple Theodolite instances, it's best to use dedicated namespaces **and** different release names. + +*Note that for meaningful results, usually only one benchmark should be executed at a time.* + +### Installation with a release name other than `theodolite` + +When using another release name than `theodolite`, make sure to adjust the Kafka Lag Exporter configuration of you `values.yaml` accordingly: + +```yaml +kafka-lag-exporter: + clusters: + - name: "<your-release-name>-cp-kafka" + bootstrapBrokers: "<your-release-name>-cp-kafka:9092" +``` + +This seems unfortunately to be necessary as Helm does not let us inject values into dependency charts. + + +## Test the Installation + +You can test the installation with: + +```sh +helm test theodolite +``` + + +## Uninstall Theodolite + +The Theodolite Helm chart can easily be removed with: + +```sh +helm uninstall theodolite +``` + +Helm does not remove any CRDs created by this chart. You can remove them manually with: + +```sh +# CRDs for Theodolite +kubectl delete crd executions.theodolite.com +kubectl delete crd benchmarks.theodolite.com +# CRDs for Prometheus operator (see https://github.com/prometheus-community/helm-charts/tree/main/charts/kube-prometheus-stack#uninstall-chart) +kubectl delete crd alertmanagerconfigs.monitoring.coreos.com +kubectl delete crd alertmanagers.monitoring.coreos.com +kubectl delete crd podmonitors.monitoring.coreos.com +kubectl delete crd probes.monitoring.coreos.com +kubectl delete crd prometheuses.monitoring.coreos.com +kubectl delete crd prometheusrules.monitoring.coreos.com +kubectl delete crd servicemonitors.monitoring.coreos.com +kubectl delete crd thanosrulers.monitoring.coreos.com +``` diff --git a/docs/patchers.md b/docs/patchers.md deleted file mode 100644 index 572f107fb38ba295cd013abeff5dd53c2702527b..0000000000000000000000000000000000000000 --- a/docs/patchers.md +++ /dev/null @@ -1,50 +0,0 @@ -## Patchers - -* **ReplicaPatcher**: Allows to modify the number of Replicas for a kubernetes deployment. - * **type**: "ReplicaPatcher" - * **resource**: "uc1-kstreams-deployment.yaml" - -* **NumSensorsLoadGeneratorReplicaPatcher**: Allows to scale the nummer of load generators. Scales arcording to the following formular: (value + 15_000 - 1) / 15_000 - * **type**: "NumSensorsLoadGeneratorReplicaPatcher" - * **resource**: "uc1-load-generator-deployment.yaml" - -* **NumNestedGroupsLoadGeneratorReplicaPatcher**: Allows to scale the nummer of load generators. Scales arcording to the following formular: (4^(value) + 15_000 -1) /15_000 - * **type**: "NumNestedGroupsLoadGeneratorReplicaPatcher" - * **resource**: "uc1-load-generator-deployment.yaml" - -* **ReplicaPatcher**: Allows to modify the number of Replicas for a kubernetes deployment. - * **type**: "ReplicaPatcher" - * **resource**: "uc1-kstreams-deployment.yaml" - -* **EnvVarPatcher**: Allows to modify the value of an environment variable for a container in a kubernetes deployment. - * **type**: "EnvVarPatcher" - * **resource**: "uc1-load-generator-deployment.yaml" - * **properties**: - * container: "workload-generator" - * variableName: "NUM_SENSORS" - -* **NodeSelectorPatcher**: Changes the node selection field in kubernetes resources. - * **type**: "NodeSelectorPatcher" - * **resource**: "uc1-load-generator-deployment.yaml" - * **properties**: - * variableName: "env" - * **value**: "prod" - -* **ResourceLimitPatcher**: Changes the resource limit for a kubernetes resource. - * **resource**: "uc1-kstreams-deployment.yaml" - * **properties**: - * container: "uc-application" - * variableName: "cpu" or "memory" - * **value**:"1000m" or "2Gi" - -* **SchedulerNamePatcher**: Changes the sheduler for kubernetes resources. - * **type**: "SchedulerNamePatcher" - * **resource**: "uc1-kstreams-deployment.yaml" - * **value**: "random-scheduler" - -* **ImagePatcher**: Changes the image of a kubernetes resource. Currently not fully implemented. - * **type**: "ImagePatcher" - * **resource**: "uc1-kstreams-deployment.yaml" - * **properties**: - * container: "uc-application" - * **value**: "dockerhubrepo/imagename" diff --git a/docs/quickstart.md b/docs/quickstart.md new file mode 100644 index 0000000000000000000000000000000000000000..6effc0cb288c01d28267b12e360c603f17641d32 --- /dev/null +++ b/docs/quickstart.md @@ -0,0 +1,77 @@ +--- +title: Getting Started +has_children: false +nav_order: 1 +--- + +# Getting Started + +All you need to get started is access to a Kubernetes cluster plus kubectl and Helm installed on your machine. + +<!--### Installation--> + +1. To install Theodolite with all its dependencies run: + + ```sh + helm repo add theodolite https://cau-se.github.io/theodolite + helm repo update + helm install theodolite theodolite/theodolite -f https://raw.githubusercontent.com/cau-se/theodolite/master/helm/preconfigs/minimal.yaml + ``` + +1. Get the Theodolite examples from the [Theodolite repository](https://github.com/cau-se/theodolite) and `cd` into its example directory: + + ```sh + git clone https://github.com/cau-se/theodolite.git + cd theodolite/theodolite/examples/operator/ + ``` + +1. Deploy the example Benchmark and package its associated Kubernetes resources in a ConfigMap: + + ```sh + kubectl apply -f example-benchmark.yaml + kubectl apply -f example-configmap.yaml + ``` + +1. Verify that the Benchmark has been deployed successfully: + + ```sh + kubectl get benchmarks + ``` + + The output is similar to this: + + ``` + NAME AGE STATUS + example-benchmark 81s Ready + ``` + +1. Run the Benchmark by deploying an Execution: + + ```sh + kubectl apply -f example-execution.yaml + ``` + +1. Verify that the Executions is running: + + ```sh + kubectl get executions + ``` + + The output is similar to this: + + ``` + NAME STATUS DURATION AGE + theodolite-example-execution Running 13s 14s + ``` + + Theodolite provides additional information on the current status of an Execution by producing Kubernetes events. To see them: + + ```sh + kubectl describe execution theodolite-example-execution + ``` + +## Next Steps + +* [Deploy and run custom benchmarks](running-benchmarks) +* [Define your own benchmarks](creating-a-benchmark) +* [Customize the Theodolite installation](installation) diff --git a/docs/running-benchmarks.md b/docs/running-benchmarks.md new file mode 100644 index 0000000000000000000000000000000000000000..0a76316c0515233f9445b363f941d60ab7aa0e06 --- /dev/null +++ b/docs/running-benchmarks.md @@ -0,0 +1,163 @@ +--- +title: Running Benchmarks +has_children: true +nav_order: 4 +--- + +# Running Scalability Benchmarks + +Running scalability benchmarks with Theodolite involves the following steps: + +1. [Deploying a benchmark to Kubernetes](#deploying-a-benchmark) +1. [Creating an execution](#creating-an-execution), which describes the experimental setup for running the benchmark +1. [Accessing benchmark results](#accessing-benchmark-results) +1. [Analyzing benchmark results](#analyzing-benchmark-results) with Theodolite's Jupyter notebooks + + +## Deploying a Benchmark + +A benchmark specification consists of two things: + +* A Benchmark resource YAML file +* One or more ConfigMap YAML files containing all the Kubernetes resources used by the benchmark + +These files are usually provided by benchmark designers. +For example, we ship Theodolite with a set of [benchmarks for event-driven microservices](theodolite-benchmarks). +Alternatively, you can also [create your own benchmarks](creating-a-benchmark). + +Suppose your benchmark is defined in `example-benchmark.yaml` and all resources required by this benchmark are bundled in `example-configmap.yaml`. +You can deploy both to Kubernetes by running: + +```sh +kubectl apply -f example-benchmark.yaml +kubectl apply -f example-configmap.yaml +``` + +To list all benchmarks currently deployed run: + +```sh +kubectl get benchmarks +``` + +The output is similar to this: + +``` +NAME AGE STATUS +example-benchmark 81s Ready +``` + +The status of a benchmark tells you whether executions of it are ready to run: +* *Ready* means that Theodolite has access to all resources referred from the benchmark. +* *Pending* implies that not all benchmark resources are available (yet). Please ensure that you have deployed them, for example, by running `kubectl get configmaps`. + + +## Creating an Execution + +To run a benchmark, an Execution YAML file needs to be created such as the following one. + +```yaml +apiVersion: theodolite.com/v1 +kind: execution +metadata: + name: theodolite-example-execution # (1) give your execution a name +spec: + benchmark: "uc1-kstreams" # (2) refer to the benchmark to be run + load: + loadType: "NumSensors" # (3) chose one of the benchmark's load types + loadValues: [25000, 50000] # (4) select a set of load intensities + resources: + resourceType: "Instances" # (5) chose one of the benchmark's resource types + resourceValues: [1, 2] # (6) select a set of resource amounts + slos: # (7) set your SLOs + - sloType: "lag trend" + prometheusUrl: "http://prometheus-operated:9090" + offset: 0 + properties: + threshold: 2000 + externalSloUrl: "http://localhost:80/evaluate-slope" + warmup: 60 # in seconds + execution: + strategy: "LinearSearch" # (8) chose a search strategy + restrictions: ["LowerBound"] # (9) add restrictions for the strategy + duration: 300 # (10) set the experiment duration in seconds + repetitions: 1 # (11) set the number of repetitions + loadGenerationDelay: 30 # (12) configure a delay before load generation + configOverrides: [] +``` + +See [Creating an Execution](creating-an-execution) for a more detailed explanation on how to create Executions. + +Suppose your `Execution` resource is stored in `example-execution.yaml`, you +can deploy it by running: + +```sh +kubectl apply -f example-execution.yaml +``` + +To list all deployed executions run: + +```sh +kubectl get executions +``` + +The output is similar to this: + +``` +NAME STATUS DURATION AGE +theodolite-example-execution Running 13s 14s +``` + +The `STATUS` field will tell you whether a benchmark execution has been +started, finished or failed due to some error. The `DURATION` field tells you +for how long that execution is running (so far). Similar to a Kubernetes Job, +an `Execution` is not automatically deleted once it is finished. This makes it +easier to keep track of all the benchmark executions and to organize benchmark +results. + +Theodolite provides additional information on the current status of an Execution by producing Kubernetes events. To see them: + +```sh +kubectl describe execution <execution-name> +``` + + +## Accessing Benchmark Results + +Theodolite stores the results of benchmark executions in CSV files, whose names are starting with `exp<id>_...`. These files can be read and analyzed by Theodolite's analysis notebooks. + +If [persisting results](installation#persisting-results) is enabled in Theodolite's installation, the result files are stored in a PersistentVolume. Depending on the cluster setup or Theodolite's configuration, the content of these volumes can usually be mounted into your host system in some way or accessed via your cloud provider. + +For installations without persistence, but also as an alternative for installations with persistence, we provide a second option to access results: Theodolite comes with a *results access sidecar*. It allows to copy all benchmark results from the Theodolite pod to your current working directory on your host machine with the following command: + +```sh +kubectl cp $(kubectl get pod -l app=theodolite -o jsonpath="{.items[0].metadata.name}"):/results . -c results-access +``` + +## Analyzing Benchmark Results + +Theodolite comes with Jupyter notebooks for analyzing and visualizing benchmark execution results. +The easiest way to use them is at MyBinder: + +[Launch Notebooks](https://mybinder.org/v2/gh/cau-se/theodolite/HEAD?labpath=analysis){: .btn .btn-primary } +{: .text-center } + +Alternatively, you can also [run these notebook locally](https://github.com/cau-se/theodolite/tree/master/analysis), for example, with Docker or Visual Studio Code. + +The notebooks allow to compute a scalability function using Theodolite's *demand* metric and to visualize multiple such functions in plots: + +### Computing the *demand* metric with `demand-metric.ipynb` (optional) + +After finishing a benchmark execution, Theodolite creates a `exp<id>_demand.csv` file. It maps the tested load intensities to the minimal required resources for that load. If the monitoring data collected during benchmark execution should be analyzed in more detail, the `demand-metric.ipynb` notebook can be used. + +Theodolite stores monitoring data for each conducted SLO experiment in `exp<id>_<load>_<resources>_<slo-slug>_<rep>.csv` files, where `<id>` is the ID of an execution, `<load>` the corresponding load intensity value, `<resources>` the resources value, `<slo-slug>` the [name of the SLO](creating-an-execution.html#definition-of-slos) and `<rep>` the repetition counter. +The `demand-metric.ipynb` notebook reads these files and generates a new CSV file mapping load intensities to the minimal required resources. The format of this file corresponds to the original `exp<id>_demand.csv` file created when running the benchmark, but allows, for example, to evaluate different warm-up periods. + +Currently, the `demand-metric.ipynb` notebook only supports benchmarks with the *lag trend SLO* out-of-the-box, but can easily be adjusted to perform any other type of analysis. + +### Plotting benchmark results with the *demand* metric with `demand-metric-plot.ipynb` + +The `demand-metric-plot.ipynb` takes one or multiple `exp<id>_demand.csv` files as input and visualize them together in a plot. +Input files can either be taken directly from Theodolite, or created from the `demand-metric.ipynb` notebooks. + +All plotting code is only intended to serve as a template. Adjust it as needed to change colors, labels, formatting, etc. as needed. +Please refer to the official docs of [MatPlotLib](https://matplotlib.org/) and the [ggplot](https://matplotlib.org/stable/gallery/style_sheets/ggplot.html) style, which are used to generate the plots. diff --git a/docs/theodolite-benchmarks/index.md b/docs/theodolite-benchmarks/index.md new file mode 100644 index 0000000000000000000000000000000000000000..30b8e816ef1b48e770c8e42be1d599a71431c976 --- /dev/null +++ b/docs/theodolite-benchmarks/index.md @@ -0,0 +1,36 @@ +--- +title: Available Benchmarks +has_children: true +nav_order: 7 +--- + +# Theodolite Benchmarks + +Theodolite comes with 4 application benchmarks, which are based on typical use cases for stream processing within microservices. For each benchmark, a corresponding [load generator](load-generator) is provided. Currently, Theodolite provides benchmark implementations for Apache Kafka Streams and Apache Flink. + + +Theodolite's benchmarks are based on typical use cases for stream processing within microservices. Specifically, all benchmarks represent some sort of microservice doing Industrial Internet of Things data analytics. + +## UC1: Database Storage + +A simple, but common use case in event-driven architectures is that events or messages should be stored permanently, for example, in a NoSQL database. + + +## UC2: Downsampling + +Another common use case for stream processing architectures is reducing the amount of events, messages, or measurements by aggregating multiple records within consecutive, non-overlapping time windows. Typical aggregations compute the average, minimum, or maximum of measurements within a time window or +count the occurrence of same events. Such reduced amounts of data are required, for example, to save computing resources or to provide a better user experience (e.g., for data visualizations). +When using aggregation windows of ï¬xed size that succeed each other without gaps (called [tumbling windows](https://kafka.apache.org/30/documentation/streams/developer-guide/dsl-api.html#tumbling-time-windows) in many stream processing engines), the (potentially varying) message frequency is reduced to a constant value. +This is also referred to as downsampling. Downsampling allows for applying many machine learning methods that require data of a ï¬xed frequency. + + +## UC3: Time Attribute-Based Aggregation + +A second type of temporal aggregation is aggregating messages that have the same time attribute. Such a time attribute is, for example, the hour of day, day of week, or day in the year. This type of aggregation can be used to compute, for example, an average course over the day, the week, or the year. It allows to demonstrate or discover seasonal patterns in the data. + +## UC4: Hierarchical Aggregation + +For analyzing sensor data, often not only the individual measurements of sensors are of interest, but also aggregated data for +groups of sensors. When monitoring energy consumption in industrial facilities, for example, comparing the total consumption +of machine types often provides better insights than comparing the consumption of all individual machines. Additionally, it may +be necessary to combine groups further into larger groups and adjust these group hierarchies at runtime. diff --git a/docs/theodolite-benchmarks/load-generator.md b/docs/theodolite-benchmarks/load-generator.md new file mode 100644 index 0000000000000000000000000000000000000000..6d42ea06d9cb008a9aeddcc8145a2868c8d916b1 --- /dev/null +++ b/docs/theodolite-benchmarks/load-generator.md @@ -0,0 +1,87 @@ +--- +title: Load Generators +parent: Available Benchmarks +has_children: false +nav_order: 1 +--- + +# Load Generator Framework + +Theodolite's benchmarks come with a flexible load generator framework. It is used to create load on the [4 Theodolite benchmarks](#prebuilt-container-images), but can also be applied to create [custom load generators](#creating-a-custom-load-generator). +It is particularly designed for scalability: Just spin up multiple instances of the load generator and the instances automatically divide the load to be generated among themselves. + +## Prebuilt container images + +For each benchmark, we provide a [load generator as OCI container image](https://github.com/orgs/cau-se/packages?tab=packages&q=workload-generator). These load generators simulate smart power meters in an industrial facility, which generate measurement records at a fixed rate. Records are published to an Apache Kafka topic (default) or sent as POST requests to an HTTP endpoint. + +You can simply run a load generator container, for example, for benchmark UC1 with: + +```sh +docker run ghcr.io/cau-se/theodolite-uc1-workload-generator +``` + +### Message format + +Messages generated by the load generators represent a single measurement of [active power](https://en.wikipedia.org/wiki/AC_power#Active,_reactive,_apparent,_and_complex_power_in_sinusoidal_steady-state). The corresponding message type is specified as [`ActivePowerRecords`](https://github.com/cau-se/titan-ccp-common/blob/master/src/main/avro/ActivePower.avdl) +defined with Avro. It consists of an identifier for simulated power sensor, a timestamp in epoch milliseconds and the actual measured (simulated) value in watts. + +When sending generated records via Apache Kafka, these records are serialized with the [Confluent Schema Registry](https://docs.confluent.io/platform/current/schema-registry). +If the load generator is configured to send records as HTTP POST requests, records are serialized as JSON according to the following format: + +```json +{ + "identifier": "sensor-id", + "timestamp": 1645564942000, + "valueInW": 1234.56 +} +``` + +### Configuration + +The prebuilt container images can be configured with the following environment variables: + +| Environment Variable | Description | Default | +|:----|:----|:----| +| `BOOTSTRAP_SERVER` | Address (`hostname:port`) of another load generator instance to form a cluster with. Can also be this instance. | `localhost:5701` | +| `KUBERNETES_DNS_NAME` | Kubernetes service name to discover other load generators to form a cluster with. Must be a fully qualified domain name (FQDN), e.g., something like `<service>.<namespace>.svc.cluster.local`. * Requires `BOOTSTRAP_SERVER` not to be set. | | +| `PORT` | Port used for for coordination among load generator instances. | 5701 | +| `PORT_AUTO_INCREMENT` | If set to true and the specified PORT is already used, use the next higher one. Useful if multiple instances should run on the same host, without configuring each instance individually. | true | +| `CLUSTER_NAME_PREFIX` | Only required if unrelated load generators form a cluster. | theodolite-load-generation | +| `TARGET` | The target system the load generator send messages to. Valid values are: `kafka`, `http`. | `kafka` | +| `KAFKA_BOOTSTRAP_SERVERS` | A list of host/port pairs to use for establishing the initial connection to the Kafka cluster. See [Kafka producer config: `bootstrap.servers`](https://kafka.apache.org/documentation/#producerconfigs_bootstrap.servers) for more information. Only used if Kafka is set as `TARGET`. | `localhost:9092` | +| `KAFKA_INPUT_TOPIC` | Name of the Kafka topic, which should receive the generated messages. Only used if Kafka is set as `TARGET`. | input | +| `SCHEMA_REGISTRY_URL` | URL of the [Confluent Schema Registry](https://docs.confluent.io/platform/current/schema-registry). | `http://localhost:8081` | +| `KAFKA_BATCH_SIZE` | Value for the Kafka producer configuration: [`batch.size`](https://kafka.apache.org/documentation/#producerconfigs_batch.size). Only used if Kafka is set as `TARGET`. | see Kafka producer config: [`batch.size`](https://kafka.apache.org/documentation/#producerconfigs_batch.size) | +| `KAFKA_LINGER_MS` | Value for the Kafka producer configuration: [`linger.ms`](https://kafka.apache.org/documentation/#producerconfigs_linger.ms). Only used if Kafka is set as `TARGET`. | see Kafka producer config: [`linger.ms`](https://kafka.apache.org/documentation/#producerconfigs_linger.ms) | +| `KAFKA_BUFFER_MEMORY` | Value for the Kafka producer configuration: [`buffer.memory`](https://kafka.apache.org/documentation/#producerconfigs_buffer.memory) Only used if Kafka is set as `TARGET`. | see Kafka producer config: [`buffer.memory`](https://kafka.apache.org/documentation/#producerconfigs_buffer.memory) | +| `HTTP_URL` | The URL the load generator should post messages to. Only used if HTTP is set as `TARGET`. | | +| `NUM_SENSORS` | The amount of simulated sensors. | 10 | +| `PERIOD_MS` | The time in milliseconds between generating two messages for the same sensor. With our Theodolite benchmarks, we apply an [open workload model](https://www.usenix.org/legacy/event/nsdi06/tech/full_papers/schroeder/schroeder.pdf) in which new messages are generated at a fixed rate, without considering the think time of the target server nor the time required for generating a message. | 1000 | +| `VALUE` | The constant `valueInW` of an `ActivePowerRecord`. | 10 | +| `THREADS` | Number of worker threads used to generate the load. | 4 | + +Please note that there are some additional configuration options for benchmark [UC4's load generator](https://github.com/cau-se/theodolite/blob/master/theodolite-benchmarks/uc4-load-generator/src/main/java/theodolite/uc4/workloadgenerator/LoadGenerator.java). + +## Creating a custom load generator + +To create a custom load generator, you need to import the [load-generator-commons](https://github.com/cau-se/theodolite/tree/master/theodolite-benchmarks/load-generator-commons) project. You can then create an instance of the `LoadGenerator` object and call its `run` method: + +```java +LoadGenerator loadGenerator = new LoadGenerator() + .setClusterConfig(clusterConfig) + .setLoadDefinition(new WorkloadDefinition( + new KeySpace(key_prefix, numSensors), + duration)) + .setGeneratorConfig(new LoadGeneratorConfig( + recordGenerator, + recordSender)) + .withThreads(threads); +loadGenerator.run(); +``` + +Alternatively, you can also start with a load generator populated with a default configuration or created from environment variables and then adjust the `LoadGenerator` as desired: + +```java +LoadGenerator loadGeneratorFromDefaults = LoadGenerator.fromDefaults() +LoadGenerator loadGeneratorFromEnv = LoadGenerator.fromEnvironment(); +``` diff --git a/helm/Chart.yaml b/helm/Chart.yaml index 0e56a156832ed6f9159f436ec63f825d132e8dd3..27451ad55ce75592db9dc7550b1f81dced3951bc 100644 --- a/helm/Chart.yaml +++ b/helm/Chart.yaml @@ -1,7 +1,7 @@ apiVersion: v2 name: theodolite -description: Theodolite is a framework for benchmarking the scalability stream processing engines. -home: https://cau-se.github.io/theodolite +description: Theodolite is a framework for benchmarking the horizontal and vertical scalability of cloud-native applications. +home: https://www.theodolite.rocks sources: - https://github.com/cau-se/theodolite maintainers: @@ -29,6 +29,6 @@ dependencies: repository: https://lightbend.github.io/kafka-lag-exporter/repo/ condition: kafka-lag-exporter.enabled -version: 0.6.0-SNAPSHOT +version: 0.7.0-SNAPSHOT -appVersion: 0.6.0-SNAPSHOT +appVersion: 0.7.0-SNAPSHOT diff --git a/helm/preconfigs/minimal.yaml b/helm/preconfigs/minimal.yaml index b0828c2f424e8456933dc626a66a199cd60aa5da..80a83f06cc9838e01f812e730932b9b79d947161 100644 --- a/helm/preconfigs/minimal.yaml +++ b/helm/preconfigs/minimal.yaml @@ -8,5 +8,8 @@ cp-helm-charts: offsets.topic.replication.factor: "1" operator: + sloChecker: + droppedRecordsKStreams: + enabled: false resultsVolume: enabled: false diff --git a/helm/templates/NOTES.txt b/helm/templates/NOTES.txt index ef1eea71080f55d08e193b9741327189865fa3dd..aabcc41cfba4844d29b94317af11bfb9ab9babcb 100644 --- a/helm/templates/NOTES.txt +++ b/helm/templates/NOTES.txt @@ -1,3 +1,3 @@ -Welcome to Theodolite! +Welcome to Theodolite, a framework for benchmarking the scalability of cloud-native applications! -Visit https://cau-se.github.io/theodolite for getting started and more information. +Visit https://www.theodolite.rocks for getting started and more information. diff --git a/helm/templates/theodolite/theodolite-operator.yaml b/helm/templates/theodolite/theodolite-operator.yaml index c7ced880cbbfbb9795ef59156ea1df7d5b860ec6..ff9c7e4de87c703af3350f7d9c797a5a53e2e675 100644 --- a/helm/templates/theodolite/theodolite-operator.yaml +++ b/helm/templates/theodolite/theodolite-operator.yaml @@ -31,6 +31,19 @@ spec: volumeMounts: - name: theodolite-results-volume mountPath: "/deployments/results" + {{- if .Values.operator.sloChecker.droppedRecordsKStreams.enabled }} + - name: slo-checker-generic + image: "{{ .Values.operator.sloChecker.generic.image }}:{{ .Values.operator.sloChecker.generic.imageTag }}" + imagePullPolicy: "{{ .Values.operator.sloChecker.generic.imagePullPolicy }}" + ports: + - containerPort: 8082 + name: analysis + env: + - name: PORT + value: "8082" + - name: LOG_LEVEL + value: INFO + {{- end }} {{- if .Values.operator.sloChecker.lagTrend.enabled }} - name: lag-trend-slo-checker image: "{{ .Values.operator.sloChecker.lagTrend.image }}:{{ .Values.operator.sloChecker.lagTrend.imageTag }}" diff --git a/helm/values.yaml b/helm/values.yaml index 1e57b42c485eb20a5525f25cfc0ef616e65a325c..ba58b040974886518ab111d668cb0db1140b2eb8 100644 --- a/helm/values.yaml +++ b/helm/values.yaml @@ -256,6 +256,11 @@ operator: nodeSelector: {} sloChecker: + generic: + enabled: true + image: ghcr.io/cau-se/theodolite-slo-checker-generic + imageTag: latest + imagePullPolicy: Always lagTrend: enabled: true image: ghcr.io/cau-se/theodolite-slo-checker-lag-trend diff --git a/slo-checker/generic/Dockerfile b/slo-checker/generic/Dockerfile new file mode 100644 index 0000000000000000000000000000000000000000..032b8153a6989ca04631ba553289dacb3620a38d --- /dev/null +++ b/slo-checker/generic/Dockerfile @@ -0,0 +1,6 @@ +FROM tiangolo/uvicorn-gunicorn-fastapi:python3.7 + +COPY requirements.txt requirements.txt +RUN pip install -r requirements.txt + +COPY ./app /app \ No newline at end of file diff --git a/slo-checker/generic/README.md b/slo-checker/generic/README.md new file mode 100644 index 0000000000000000000000000000000000000000..1a1358a06dc4165c678bca8745dd40473a7c5880 --- /dev/null +++ b/slo-checker/generic/README.md @@ -0,0 +1,89 @@ +# Generic SLO Evaluator + +## Execution + +For development: + +```sh +uvicorn main:app --reload +``` + +## Build the docker image: + +```sh +docker build . -t theodolite-evaluator +``` + +Run the Docker image: + +```sh +docker run -p 80:80 theodolite-evaluator +``` + +## Configuration + +You can set the `HOST` and the `PORT` (and a lot of more parameters) via environment variables. Default is `0.0.0.0:80`. +For more information see the [Gunicorn/FastAPI Docker docs](https://github.com/tiangolo/uvicorn-gunicorn-fastapi-docker#advanced-usage). + +## API Documentation + +The running webserver provides a REST API with the following route: + +* / + * Method: POST + * Body: + * results + * metric-metadata + * values + * metadata + * warmup + * queryAggregation + * repetitionAggregation + * operator + * threshold + +The body of the request must be a JSON string that satisfies the following conditions: + +* **dropped records**: This property is based on the [Range Vector type](https://www.prometheus.io/docs/prometheus/latest/querying/api/#range-vectors) from Prometheus and must have the following JSON *structure*: + + ```json + { + "results": [ + [ + { + "metric": { + "<label-name>": "<label-value>" + }, + "values": [ + [ + <unix_timestamp>, // 1.634624989695E9 + "<sample_value>" // integer + ] + ] + } + ] + ], + "metadata": { + "warmup": 60, + "queryAggregation": "max", + "repetitionAggregation": "median", + "operator": "lt", + "threshold": 2000000 + } + } + ``` + +### description + +* results: + * metric-metadata: + * Labels of this metric. The `generic` slo checker does not use labels in the calculation of the service level objective. + * results + * The `<unix_timestamp>` provided as the first element of each element in the "values" array must be the timestamp of the measurement value in seconds (with optional decimal precision) + * The `<sample_value>` must be the measurement value as string. +* metadata: For the calculation of the service level objective require metadata. + * **warmup**: Specifies the warmup time in seconds that are ignored for evaluating the SLO. + * **queryAggregation**: Specifies the function used to aggregate a query. + * **repetitionAggregation**: Specifies the function used to aggregate a the results of multiple query aggregations. + * **operator**: Specifies how the result should be checked agains a threshold. Possible values are `lt`, `lte`, `gt` and `gte`. + * **threshold**: Must be an unsigned integer that specifies the threshold for the SLO evaluation. diff --git a/slo-checker/generic/app/main.py b/slo-checker/generic/app/main.py new file mode 100644 index 0000000000000000000000000000000000000000..f36c8739da00128ad94feb1f2d7871df7e2ff137 --- /dev/null +++ b/slo-checker/generic/app/main.py @@ -0,0 +1,72 @@ +from fastapi import FastAPI,Request +import logging +import os +import json +import sys +import re +import pandas as pd + + +app = FastAPI() + +logging.basicConfig(stream=sys.stdout, + format="%(asctime)s %(levelname)s %(name)s: %(message)s") +logger = logging.getLogger("API") + + +if os.getenv('LOG_LEVEL') == 'INFO': + logger.setLevel(logging.INFO) +elif os.getenv('LOG_LEVEL') == 'WARNING': + logger.setLevel(logging.WARNING) +elif os.getenv('LOG_LEVEL') == 'DEBUG': + logger.setLevel(logging.DEBUG) + + +def get_aggr_func(func_string: str): + if func_string in ['mean', 'median', 'mode', 'sum', 'count', 'max', 'min', 'std', 'var', 'skew', 'kurt']: + return func_string + elif re.search(r'^p\d\d?(\.\d+)?$', func_string): # matches strings like 'p99', 'p99.99', 'p1', 'p0.001' + def percentile(x): + return x.quantile(float(func_string[1:]) / 100) + percentile.__name__ = func_string + return percentile + else: + raise ValueError('Invalid function string.') + +def aggr_query(values: dict, warmup: int, aggr_func): + df = pd.DataFrame.from_dict(values) + df.columns = ['timestamp', 'value'] + filtered = df[df['timestamp'] >= (df['timestamp'][0] + warmup)] + filtered['value'] = filtered['value'].astype(int) + return filtered['value'].aggregate(aggr_func) + +def check_result(result, operator: str, threshold): + if operator == 'lt': + return result < threshold + if operator == 'lte': + return result <= threshold + if operator == 'gt': + return result > threshold + if operator == 'gte': + return result >= threshold + else: + raise ValueError('Invalid operator string.') + + + +@app.post("/",response_model=bool) +async def check_slo(request: Request): + data = json.loads(await request.body()) + logger.info('Received request with metadata: %s', data['metadata']) + + warmup = int(data['metadata']['warmup']) + query_aggregation = get_aggr_func(data['metadata']['queryAggregation']) + rep_aggregation = get_aggr_func(data['metadata']['repetitionAggregation']) + operator = data['metadata']['operator'] + threshold = int(data['metadata']['threshold']) + + query_results = [aggr_query(r[0]["values"], warmup, query_aggregation) for r in data["results"]] + result = pd.DataFrame(query_results).aggregate(rep_aggregation).at[0] + return check_result(result, operator, threshold) + +logger.info("SLO evaluator is online") \ No newline at end of file diff --git a/slo-checker/generic/app/test.py b/slo-checker/generic/app/test.py new file mode 100644 index 0000000000000000000000000000000000000000..2609225ddc9e6e96cdcd01db197cebbdd6501102 --- /dev/null +++ b/slo-checker/generic/app/test.py @@ -0,0 +1,56 @@ +import unittest +from main import app, get_aggr_func, check_result +import json +from fastapi.testclient import TestClient + +class TestSloEvaluation(unittest.TestCase): + client = TestClient(app) + + def test_1_rep(self): + with open('../resources/test-1-rep-success.json') as json_file: + data = json.load(json_file) + response = self.client.post("/", json=data) + self.assertEqual(response.json(), True) + + def test_get_aggr_func_mean(self): + self.assertEqual(get_aggr_func('median'), 'median') + + def test_get_aggr_func_p99(self): + self.assertTrue(callable(get_aggr_func('p99'))) + + def test_get_aggr_func_p99_9(self): + self.assertTrue(callable(get_aggr_func('p99.9'))) + + def test_get_aggr_func_p99_99(self): + self.assertTrue(callable(get_aggr_func('p99.99'))) + + def test_get_aggr_func_p0_1(self): + self.assertTrue(callable(get_aggr_func('p0.1'))) + + def test_get_aggr_func_p99_(self): + self.assertRaises(ValueError, get_aggr_func, 'p99.') + + def test_get_aggr_func_p99_(self): + self.assertRaises(ValueError, get_aggr_func, 'q99') + + def test_get_aggr_func_p99_(self): + self.assertRaises(ValueError, get_aggr_func, 'mux') + + def test_check_result_lt(self): + self.assertEqual(check_result(100, 'lt', 200), True) + + def test_check_result_lte(self): + self.assertEqual(check_result(200, 'lte', 200), True) + + def test_check_result_gt(self): + self.assertEqual(check_result(100, 'gt', 200), False) + + def test_check_result_gte(self): + self.assertEqual(check_result(300, 'gte', 200), True) + + def test_check_result_invalid(self): + self.assertRaises(ValueError, check_result, 100, 'xyz', 200) + + +if __name__ == '__main__': + unittest.main() \ No newline at end of file diff --git a/slo-checker/generic/requirements.txt b/slo-checker/generic/requirements.txt new file mode 100644 index 0000000000000000000000000000000000000000..87972ab01a276cbb63033e214e1ad53d38b5c8d8 --- /dev/null +++ b/slo-checker/generic/requirements.txt @@ -0,0 +1,4 @@ +fastapi==0.65.2 +pandas==1.0.3 +uvicorn +requests diff --git a/slo-checker/generic/resources/test-1-rep-success.json b/slo-checker/generic/resources/test-1-rep-success.json new file mode 100644 index 0000000000000000000000000000000000000000..b70f461cf620d8eee8c4d9d93feb46db7498626f --- /dev/null +++ b/slo-checker/generic/resources/test-1-rep-success.json @@ -0,0 +1,276 @@ +{ + "results": [ + [ + { + "metric": { + "job": "titan-ccp-aggregation" + }, + "values": [ + [ + 1.634624674695E9, + "0" + ], + [ + 1.634624679695E9, + "0" + ], + [ + 1.634624684695E9, + "0" + ], + [ + 1.634624689695E9, + "0" + ], + [ + 1.634624694695E9, + "0" + ], + [ + 1.634624699695E9, + "0" + ], + [ + 1.634624704695E9, + "0" + ], + [ + 1.634624709695E9, + "0" + ], + [ + 1.634624714695E9, + "0" + ], + [ + 1.634624719695E9, + "0" + ], + [ + 1.634624724695E9, + "0" + ], + [ + 1.634624729695E9, + "0" + ], + [ + 1.634624734695E9, + "0" + ], + [ + 1.634624739695E9, + "0" + ], + [ + 1.634624744695E9, + "1" + ], + [ + 1.634624749695E9, + "3" + ], + [ + 1.634624754695E9, + "4" + ], + [ + 1.634624759695E9, + "4" + ], + [ + 1.634624764695E9, + "4" + ], + [ + 1.634624769695E9, + "4" + ], + [ + 1.634624774695E9, + "4" + ], + [ + 1.634624779695E9, + "4" + ], + [ + 1.634624784695E9, + "4" + ], + [ + 1.634624789695E9, + "4" + ], + [ + 1.634624794695E9, + "4" + ], + [ + 1.634624799695E9, + "4" + ], + [ + 1.634624804695E9, + "176" + ], + [ + 1.634624809695E9, + "176" + ], + [ + 1.634624814695E9, + "176" + ], + [ + 1.634624819695E9, + "176" + ], + [ + 1.634624824695E9, + "176" + ], + [ + 1.634624829695E9, + "159524" + ], + [ + 1.634624834695E9, + "209870" + ], + [ + 1.634624839695E9, + "278597" + ], + [ + 1.634624844695E9, + "460761" + ], + [ + 1.634624849695E9, + "460761" + ], + [ + 1.634624854695E9, + "460761" + ], + [ + 1.634624859695E9, + "460761" + ], + [ + 1.634624864695E9, + "460761" + ], + [ + 1.634624869695E9, + "606893" + ], + [ + 1.634624874695E9, + "653534" + ], + [ + 1.634624879695E9, + "755796" + ], + [ + 1.634624884695E9, + "919317" + ], + [ + 1.634624889695E9, + "919317" + ], + [ + 1.634624894695E9, + "955926" + ], + [ + 1.634624899695E9, + "955926" + ], + [ + 1.634624904695E9, + "955926" + ], + [ + 1.634624909695E9, + "955926" + ], + [ + 1.634624914695E9, + "955926" + ], + [ + 1.634624919695E9, + "1036530" + ], + [ + 1.634624924695E9, + "1078477" + ], + [ + 1.634624929695E9, + "1194775" + ], + [ + 1.634624934695E9, + "1347755" + ], + [ + 1.634624939695E9, + "1352151" + ], + [ + 1.634624944695E9, + "1360428" + ], + [ + 1.634624949695E9, + "1360428" + ], + [ + 1.634624954695E9, + "1360428" + ], + [ + 1.634624959695E9, + "1360428" + ], + [ + 1.634624964695E9, + "1360428" + ], + [ + 1.634624969695E9, + "1525685" + ], + [ + 1.634624974695E9, + "1689296" + ], + [ + 1.634624979695E9, + "1771358" + ], + [ + 1.634624984695E9, + "1854284" + ], + [ + 1.634624989695E9, + "1854284" + ] + ] + } + ] + ], + "metadata": { + "warmup": 60, + "queryAggregation": "max", + "repetitionAggregation": "median", + "operator": "lt", + "threshold": 2000000 + } +} \ No newline at end of file diff --git a/theodolite-benchmarks/beam-commons/build.gradle b/theodolite-benchmarks/beam-commons/build.gradle index 66ec44ad715d64458584e71fdd4f49abb9c458f4..a809f6bc4b97d8d62b807243eddecda8a5de5032 100644 --- a/theodolite-benchmarks/beam-commons/build.gradle +++ b/theodolite-benchmarks/beam-commons/build.gradle @@ -3,7 +3,7 @@ plugins { } repositories { - jcenter() + mavenCentral() maven { url "https://oss.sonatype.org/content/repositories/snapshots/" } diff --git a/theodolite-benchmarks/buildSrc/build.gradle b/theodolite-benchmarks/buildSrc/build.gradle index 4c099de32dc97ed3aa0417e8fff1f06e2a50dfd8..e3c3a8cb496929a5005c28d5d87b00bae85ad2cd 100644 --- a/theodolite-benchmarks/buildSrc/build.gradle +++ b/theodolite-benchmarks/buildSrc/build.gradle @@ -1,14 +1,3 @@ -buildscript { - repositories { - maven { - url "https://plugins.gradle.org/m2/" - } - } - dependencies { - classpath "com.github.jengelman.gradle.plugins:shadow:6.0.0" - } -} - // to discover the precompiled script plugins plugins { id 'groovy-gradle-plugin' @@ -19,6 +8,6 @@ repositories { } dependencies { - implementation 'gradle.plugin.com.github.spotbugs.snom:spotbugs-gradle-plugin:4.6.0' - implementation 'com.github.jengelman.gradle.plugins:shadow:6.0.0' + implementation 'com.github.spotbugs.snom:spotbugs-gradle-plugin:5.0.4' + implementation 'gradle.plugin.com.github.johnrengelman:shadow:7.1.2' } diff --git a/theodolite-benchmarks/buildSrc/src/main/groovy/theodolite.beam.gradle b/theodolite-benchmarks/buildSrc/src/main/groovy/theodolite.beam.gradle index 09e36d52171699c61b212b1f64c827933679b6fa..41d1ae4f2bdfa358aca3fca2b91ea2b57e4c3405 100644 --- a/theodolite-benchmarks/buildSrc/src/main/groovy/theodolite.beam.gradle +++ b/theodolite-benchmarks/buildSrc/src/main/groovy/theodolite.beam.gradle @@ -9,7 +9,7 @@ plugins { tasks.distZip.enabled = false repositories { - jcenter() + mavenCentral() maven { url "https://oss.sonatype.org/content/repositories/snapshots/" } diff --git a/theodolite-benchmarks/buildSrc/src/main/groovy/theodolite.flink.gradle b/theodolite-benchmarks/buildSrc/src/main/groovy/theodolite.flink.gradle index 26a827b6049d09e422d48609590614f383f6cae8..f5e93dd88d2234f8a9b0d6fea880f47d652dccfa 100644 --- a/theodolite-benchmarks/buildSrc/src/main/groovy/theodolite.flink.gradle +++ b/theodolite-benchmarks/buildSrc/src/main/groovy/theodolite.flink.gradle @@ -25,7 +25,7 @@ ext { } repositories { - jcenter() + mavenCentral() maven { url "https://oss.sonatype.org/content/repositories/snapshots/" } diff --git a/theodolite-benchmarks/buildSrc/src/main/groovy/theodolite.java-conventions.gradle b/theodolite-benchmarks/buildSrc/src/main/groovy/theodolite.java-conventions.gradle index 5b0e2a8a1211653428b296b11b14c1531e40e46b..a2912d96262f3d9c9f843ed508370e2798aeb735 100644 --- a/theodolite-benchmarks/buildSrc/src/main/groovy/theodolite.java-conventions.gradle +++ b/theodolite-benchmarks/buildSrc/src/main/groovy/theodolite.java-conventions.gradle @@ -66,5 +66,5 @@ spotbugs { reportLevel = "low" effort = "max" ignoreFailures = false - toolVersion = '4.1.4' + toolVersion = '4.5.3' } diff --git a/theodolite-benchmarks/buildSrc/src/main/groovy/theodolite.kstreams.gradle b/theodolite-benchmarks/buildSrc/src/main/groovy/theodolite.kstreams.gradle index eece7b835ae9d6f39283ea371ce8b0b8194cdaa0..da2d42176ac0ddc9a157f843e3268b37ac4397e2 100644 --- a/theodolite-benchmarks/buildSrc/src/main/groovy/theodolite.kstreams.gradle +++ b/theodolite-benchmarks/buildSrc/src/main/groovy/theodolite.kstreams.gradle @@ -9,7 +9,7 @@ plugins { tasks.distZip.enabled = false repositories { - jcenter() + mavenCentral() maven { url "https://oss.sonatype.org/content/repositories/snapshots/" } diff --git a/theodolite-benchmarks/buildSrc/src/main/groovy/theodolite.load-generator.gradle b/theodolite-benchmarks/buildSrc/src/main/groovy/theodolite.load-generator.gradle index c6c2b6057cf35c32faa4d67b6ea6dba9e5c13beb..fb4fd89d1fe8a6d625a3ba7b459e9b0961befdbc 100644 --- a/theodolite-benchmarks/buildSrc/src/main/groovy/theodolite.load-generator.gradle +++ b/theodolite-benchmarks/buildSrc/src/main/groovy/theodolite.load-generator.gradle @@ -9,7 +9,7 @@ plugins { tasks.distZip.enabled = false repositories { - jcenter() + mavenCentral() maven { url "https://oss.sonatype.org/content/repositories/snapshots/" } diff --git a/theodolite-benchmarks/docker-test/uc1-beam-flink/docker-compose.yml b/theodolite-benchmarks/docker-test/uc1-beam-flink/docker-compose.yml index 6d2c134039e9ecb34dd80d65175bfa5a988e992c..1b683b4ca65a2582aa6a4d68444c4bbef7895b73 100644 --- a/theodolite-benchmarks/docker-test/uc1-beam-flink/docker-compose.yml +++ b/theodolite-benchmarks/docker-test/uc1-beam-flink/docker-compose.yml @@ -19,7 +19,7 @@ services: KAFKA_ZOOKEEPER_CONNECT: zookeeper:2181 KAFKA_ZOOKEEPER_CONNECTION_TIMEOUT_MS: 30000 KAFKA_AUTO_CREATE_TOPICS_ENABLE: "false" - KAFKA_CREATE_TOPICS: "input:3:1,output:3:1,configuration:3:1,aggregation-feedback:3:1" + KAFKA_CREATE_TOPICS: "input:3:1" schema-registry: image: confluentinc/cp-schema-registry:5.3.1 depends_on: @@ -33,7 +33,7 @@ services: SCHEMA_REGISTRY_HOST_NAME: schema-registry SCHEMA_REGISTRY_KAFKASTORE_CONNECTION_URL: 'zookeeper:2181' load-generator: - image: ghcr.io/cau-se/theodolite-uc1-workload-generator:latest + image: ghcr.io/cau-se/theodolite-uc1-workload-generator:${THEODOLITE_TAG:-latest} depends_on: - schema-registry - kafka @@ -44,12 +44,11 @@ services: SCHEMA_REGISTRY_URL: http://schema-registry:8081 NUM_SENSORS: 10 benchmark-jobmanager: - image: uc1-beam-flink:latest + image: ghcr.io/cau-se/theodolite-uc1-beam-flink:${THEODOLITE_TAG:-latest} #ports: # - "8080:8081" command: > standalone-job --job-classname application.Uc1BeamFlink - --streaming --disableMetrics=true --fasterCopy environment: @@ -63,7 +62,7 @@ services: - schema-registry - kafka benchmark-taskmanager: - image: uc1-beam-flink:latest + image: ghcr.io/cau-se/theodolite-uc1-beam-flink:${THEODOLITE_TAG:-latest} scale: 1 command: taskmanager environment: diff --git a/theodolite-benchmarks/docker-test/uc1-beam-samza/docker-compose.yml b/theodolite-benchmarks/docker-test/uc1-beam-samza/docker-compose.yml index c6f901c8ef1245aeb105dc5bf4e021abfdd66abc..f5213799daa2d51eea53e794becdffc151a4da56 100644 --- a/theodolite-benchmarks/docker-test/uc1-beam-samza/docker-compose.yml +++ b/theodolite-benchmarks/docker-test/uc1-beam-samza/docker-compose.yml @@ -21,7 +21,7 @@ services: KAFKA_ZOOKEEPER_CONNECT: zookeeper:2181 KAFKA_ZOOKEEPER_CONNECTION_TIMEOUT_MS: 30000 KAFKA_AUTO_CREATE_TOPICS_ENABLE: "false" - KAFKA_CREATE_TOPICS: "input:3:1,output:3:1,configuration:3:1,aggregation-feedback:3:1" + KAFKA_CREATE_TOPICS: "input:3:1" schema-registry: image: confluentinc/cp-schema-registry:5.3.1 depends_on: @@ -35,7 +35,7 @@ services: SCHEMA_REGISTRY_HOST_NAME: schema-registry SCHEMA_REGISTRY_KAFKASTORE_CONNECTION_URL: 'zookeeper:2181' benchmark: - image: uc1-beam-samza:latest + image: ghcr.io/cau-se/theodolite-uc1-beam-samza:${THEODOLITE_TAG:-latest} scale: 1 depends_on: - schema-registry @@ -44,11 +44,10 @@ services: SAMZA_JOB_COORDINATOR_ZK_CONNECT: zookeeper:2181 SAMZA_SYSTEMS_KAFKA_PRODUCER_BOOTSTRAP_SERVERS: kafka:9092 SAMZA_SYSTEMS_KAFKA_CONSUMER_BOOTSTRAP_SERVERS: kafka:9092 - MAX_SOURCE_PARALLELISM: 1024 KAFKA_BOOTSTRAP_SERVERS: kafka:9092 SCHEMA_REGISTRY_URL: http://schema-registry:8081 load-generator: - image: ghcr.io/cau-se/theodolite-uc1-workload-generator:latest + image: ghcr.io/cau-se/theodolite-uc1-workload-generator:${THEODOLITE_TAG:-latest} depends_on: - schema-registry - kafka diff --git a/theodolite-benchmarks/docker-test/uc1-flink-docker-compose/docker-compose.yml b/theodolite-benchmarks/docker-test/uc1-flink-docker-compose/docker-compose.yml index 5a252f07e23205cf20390230ec956240ad2dc7a6..6c661bb49cb4173357acc89c06783fe5e0a2ce49 100755 --- a/theodolite-benchmarks/docker-test/uc1-flink-docker-compose/docker-compose.yml +++ b/theodolite-benchmarks/docker-test/uc1-flink-docker-compose/docker-compose.yml @@ -19,7 +19,7 @@ services: KAFKA_ZOOKEEPER_CONNECT: zookeeper:2181 KAFKA_ZOOKEEPER_CONNECTION_TIMEOUT_MS: 30000 KAFKA_AUTO_CREATE_TOPICS_ENABLE: "false" - KAFKA_CREATE_TOPICS: "input:3:1,output:3:1,configuration:3:1,aggregation-feedback:3:1" + KAFKA_CREATE_TOPICS: "input:3:1" schema-registry: image: confluentinc/cp-schema-registry:5.3.1 depends_on: @@ -33,7 +33,7 @@ services: SCHEMA_REGISTRY_HOST_NAME: schema-registry SCHEMA_REGISTRY_KAFKASTORE_CONNECTION_URL: 'zookeeper:2181' load-generator: - image: ghcr.io/cau-se/theodolite-uc1-workload-generator:latest + image: ghcr.io/cau-se/theodolite-uc1-workload-generator:${THEODOLITE_TAG:-latest} depends_on: - schema-registry - kafka @@ -44,7 +44,7 @@ services: SCHEMA_REGISTRY_URL: http://schema-registry:8081 NUM_SENSORS: 10 benchmark-jobmanager: - image: ghcr.io/cau-se/theodolite-uc1-flink:latest + image: ghcr.io/cau-se/theodolite-uc1-flink:${THEODOLITE_TAG:-latest} #ports: # - "8080:8081" command: standalone-job --job-classname theodolite.uc1.application.HistoryServiceFlinkJob @@ -59,7 +59,7 @@ services: - schema-registry - kafka benchmark-taskmanager: - image: ghcr.io/cau-se/theodolite-uc1-flink:latest + image: ghcr.io/cau-se/theodolite-uc1-flink:${THEODOLITE_TAG:-latest} command: taskmanager environment: - | diff --git a/theodolite-benchmarks/docker-test/uc1-kstreams-docker-compose/docker-compose.yml b/theodolite-benchmarks/docker-test/uc1-kstreams-docker-compose/docker-compose.yml index 88ffadfcf3ce7e372fad1e3cbf28cc3aa847756d..25c19e35e5dae1807ef46fb8ade4e888dff0c2d8 100755 --- a/theodolite-benchmarks/docker-test/uc1-kstreams-docker-compose/docker-compose.yml +++ b/theodolite-benchmarks/docker-test/uc1-kstreams-docker-compose/docker-compose.yml @@ -19,7 +19,7 @@ services: KAFKA_ZOOKEEPER_CONNECT: zookeeper:2181 KAFKA_ZOOKEEPER_CONNECTION_TIMEOUT_MS: 30000 KAFKA_AUTO_CREATE_TOPICS_ENABLE: "false" - KAFKA_CREATE_TOPICS: "input:3:1,output:3:1,configuration:3:1,aggregation-feedback:3:1" + KAFKA_CREATE_TOPICS: "input:3:1" schema-registry: image: confluentinc/cp-schema-registry:5.3.1 depends_on: @@ -33,7 +33,7 @@ services: SCHEMA_REGISTRY_HOST_NAME: schema-registry SCHEMA_REGISTRY_KAFKASTORE_CONNECTION_URL: 'zookeeper:2181' benchmark: - image: ghcr.io/cau-se/theodolite-uc1-kstreams-app:latest + image: ghcr.io/cau-se/theodolite-uc1-kstreams-app:${THEODOLITE_TAG:-latest} depends_on: - schema-registry - kafka @@ -41,7 +41,7 @@ services: KAFKA_BOOTSTRAP_SERVERS: kafka:9092 SCHEMA_REGISTRY_URL: http://schema-registry:8081 load-generator: - image: ghcr.io/cau-se/theodolite-uc1-workload-generator:latest + image: ghcr.io/cau-se/theodolite-uc1-workload-generator:${THEODOLITE_TAG:-latest} depends_on: - schema-registry - kafka diff --git a/theodolite-benchmarks/docker-test/uc2-beam-flink/docker-compose.yml b/theodolite-benchmarks/docker-test/uc2-beam-flink/docker-compose.yml index 5d3320cccda8e1735ab56ec563dbf11912b31896..8427161e43faa920e011973d76f32f9cc9d62f8c 100644 --- a/theodolite-benchmarks/docker-test/uc2-beam-flink/docker-compose.yml +++ b/theodolite-benchmarks/docker-test/uc2-beam-flink/docker-compose.yml @@ -19,7 +19,7 @@ services: KAFKA_ZOOKEEPER_CONNECT: zookeeper:2181 KAFKA_ZOOKEEPER_CONNECTION_TIMEOUT_MS: 30000 KAFKA_AUTO_CREATE_TOPICS_ENABLE: "false" - KAFKA_CREATE_TOPICS: "input:3:1,output:3:1,configuration:3:1,aggregation-feedback:3:1" + KAFKA_CREATE_TOPICS: "input:3:1,output:3:1" schema-registry: image: confluentinc/cp-schema-registry:5.3.1 depends_on: @@ -33,7 +33,7 @@ services: SCHEMA_REGISTRY_HOST_NAME: schema-registry SCHEMA_REGISTRY_KAFKASTORE_CONNECTION_URL: 'zookeeper:2181' load-generator: - image: ghcr.io/cau-se/theodolite-uc2-workload-generator:latest + image: ghcr.io/cau-se/theodolite-uc2-workload-generator:${THEODOLITE_TAG:-latest} depends_on: - schema-registry - kafka @@ -44,16 +44,14 @@ services: SCHEMA_REGISTRY_URL: http://schema-registry:8081 NUM_SENSORS: 10 benchmark-jobmanager: - image: uc2-beam-flink:latest + image: ghcr.io/cau-se/theodolite-uc2-beam-flink:${THEODOLITE_TAG:-latest} #ports: # - "8080:8081" command: > standalone-job --job-classname application.Uc2BeamFlink - --streaming --disableMetrics=true --fasterCopy environment: - - KAFKA_WINDOW_DURATION_MINUTES=60 - KAFKA_BOOTSTRAP_SERVERS=kafka:9092 - SCHEMA_REGISTRY_URL=http://schema-registry:8081 - | @@ -64,7 +62,7 @@ services: - schema-registry - kafka benchmark-taskmanager: - image: uc2-beam-flink:latest + image: ghcr.io/cau-se/theodolite-uc2-beam-flink:${THEODOLITE_TAG:-latest} scale: 1 command: taskmanager environment: diff --git a/theodolite-benchmarks/docker-test/uc2-beam-samza/docker-compose.yml b/theodolite-benchmarks/docker-test/uc2-beam-samza/docker-compose.yml index f24db061c7b3dbf0760d1b1926750e988be3699e..820bb25dd370cf6c7410b20fbdbdb1d4281f47d3 100644 --- a/theodolite-benchmarks/docker-test/uc2-beam-samza/docker-compose.yml +++ b/theodolite-benchmarks/docker-test/uc2-beam-samza/docker-compose.yml @@ -21,7 +21,7 @@ services: KAFKA_ZOOKEEPER_CONNECT: zookeeper:2181 KAFKA_ZOOKEEPER_CONNECTION_TIMEOUT_MS: 30000 KAFKA_AUTO_CREATE_TOPICS_ENABLE: "false" - KAFKA_CREATE_TOPICS: "input:3:1,output:3:1,configuration:3:1,aggregation-feedback:3:1" + KAFKA_CREATE_TOPICS: "input:3:1,output:3:1" schema-registry: image: confluentinc/cp-schema-registry:5.3.1 depends_on: @@ -35,7 +35,7 @@ services: SCHEMA_REGISTRY_HOST_NAME: schema-registry SCHEMA_REGISTRY_KAFKASTORE_CONNECTION_URL: 'zookeeper:2181' benchmark: - image: uc2-beam-samza:latest + image: ghcr.io/cau-se/theodolite-uc2-beam-samza:${THEODOLITE_TAG:-latest} scale: 1 depends_on: - schema-registry @@ -44,12 +44,10 @@ services: SAMZA_JOB_COORDINATOR_ZK_CONNECT: zookeeper:2181 SAMZA_SYSTEMS_KAFKA_PRODUCER_BOOTSTRAP_SERVERS: kafka:9092 SAMZA_SYSTEMS_KAFKA_CONSUMER_BOOTSTRAP_SERVERS: kafka:9092 - MAX_SOURCE_PARALLELISM: 1024 KAFKA_BOOTSTRAP_SERVERS: kafka:9092 SCHEMA_REGISTRY_URL: http://schema-registry:8081 - KAFKA_WINDOW_DURATION_MINUTES: 60 load-generator: - image: ghcr.io/cau-se/theodolite-uc2-workload-generator:latest + image: ghcr.io/cau-se/theodolite-uc2-workload-generator:${THEODOLITE_TAG:-latest} depends_on: - schema-registry - kafka diff --git a/theodolite-benchmarks/docker-test/uc2-flink-docker-compose/docker-compose.yml b/theodolite-benchmarks/docker-test/uc2-flink-docker-compose/docker-compose.yml index f7047a7af7d0b613dd128b9d8d4d9fffd22b4692..e51c544bfd64c6f540f5a84a5f617de745a1a6b6 100755 --- a/theodolite-benchmarks/docker-test/uc2-flink-docker-compose/docker-compose.yml +++ b/theodolite-benchmarks/docker-test/uc2-flink-docker-compose/docker-compose.yml @@ -19,7 +19,7 @@ services: KAFKA_ZOOKEEPER_CONNECT: zookeeper:2181 KAFKA_ZOOKEEPER_CONNECTION_TIMEOUT_MS: 30000 KAFKA_AUTO_CREATE_TOPICS_ENABLE: "false" - KAFKA_CREATE_TOPICS: "input:3:1,output:3:1,configuration:3:1,aggregation-feedback:3:1" + KAFKA_CREATE_TOPICS: "input:3:1,output:3:1" schema-registry: image: confluentinc/cp-schema-registry:5.3.1 depends_on: @@ -33,7 +33,7 @@ services: SCHEMA_REGISTRY_HOST_NAME: schema-registry SCHEMA_REGISTRY_KAFKASTORE_CONNECTION_URL: 'zookeeper:2181' load-generator: - image: ghcr.io/cau-se/theodolite-uc2-workload-generator:latest + image: ghcr.io/cau-se/theodolite-uc2-workload-generator:${THEODOLITE_TAG:-latest} depends_on: - schema-registry - kafka @@ -44,7 +44,7 @@ services: SCHEMA_REGISTRY_URL: http://schema-registry:8081 NUM_SENSORS: 10 benchmark-jobmanager: - image: ghcr.io/cau-se/theodolite-uc2-flink:latest + image: ghcr.io/cau-se/theodolite-uc2-flink:${THEODOLITE_TAG:-latest} #ports: # - "8080:8081" command: standalone-job --job-classname theodolite.uc2.application.HistoryServiceFlinkJob @@ -59,7 +59,7 @@ services: - schema-registry - kafka benchmark-taskmanager: - image: ghcr.io/cau-se/theodolite-uc2-flink:latest + image: ghcr.io/cau-se/theodolite-uc2-flink:${THEODOLITE_TAG:-latest} command: taskmanager environment: - | diff --git a/theodolite-benchmarks/docker-test/uc2-kstreams-docker-compose/docker-compose.yml b/theodolite-benchmarks/docker-test/uc2-kstreams-docker-compose/docker-compose.yml index 89f2633b390b08a3a18128e98f261cc264e2b41d..4cc4978d844a8b361af4061ab41d1adc4e7a1813 100755 --- a/theodolite-benchmarks/docker-test/uc2-kstreams-docker-compose/docker-compose.yml +++ b/theodolite-benchmarks/docker-test/uc2-kstreams-docker-compose/docker-compose.yml @@ -19,7 +19,7 @@ services: KAFKA_ZOOKEEPER_CONNECT: zookeeper:2181 KAFKA_ZOOKEEPER_CONNECTION_TIMEOUT_MS: 30000 KAFKA_AUTO_CREATE_TOPICS_ENABLE: "false" - KAFKA_CREATE_TOPICS: "input:3:1,output:3:1,configuration:3:1,aggregation-feedback:3:1" + KAFKA_CREATE_TOPICS: "input:3:1,output:3:1" schema-registry: image: confluentinc/cp-schema-registry:5.3.1 depends_on: @@ -33,7 +33,7 @@ services: SCHEMA_REGISTRY_HOST_NAME: schema-registry SCHEMA_REGISTRY_KAFKASTORE_CONNECTION_URL: 'zookeeper:2181' benchmark: - image: ghcr.io/cau-se/theodolite-uc2-kstreams-app:latest + image: ghcr.io/cau-se/theodolite-uc2-kstreams-app:${THEODOLITE_TAG:-latest} depends_on: - schema-registry - kafka @@ -42,7 +42,7 @@ services: SCHEMA_REGISTRY_URL: http://schema-registry:8081 KAFKA_WINDOW_DURATION_MINUTES: 60 load-generator: - image: ghcr.io/cau-se/theodolite-uc2-workload-generator:latest + image: ghcr.io/cau-se/theodolite-uc2-workload-generator:${THEODOLITE_TAG:-latest} depends_on: - schema-registry - kafka diff --git a/theodolite-benchmarks/docker-test/uc3-beam-flink/docker-compose.yml b/theodolite-benchmarks/docker-test/uc3-beam-flink/docker-compose.yml index c8abe05d9a5d10cc73a7a13a5df5feeeee58c48d..b9e934b61f9742ad4e83601ff13707be0641c875 100644 --- a/theodolite-benchmarks/docker-test/uc3-beam-flink/docker-compose.yml +++ b/theodolite-benchmarks/docker-test/uc3-beam-flink/docker-compose.yml @@ -19,7 +19,7 @@ services: KAFKA_ZOOKEEPER_CONNECT: zookeeper:2181 KAFKA_ZOOKEEPER_CONNECTION_TIMEOUT_MS: 30000 KAFKA_AUTO_CREATE_TOPICS_ENABLE: "false" - KAFKA_CREATE_TOPICS: "input:3:1,output:3:1,configuration:3:1,aggregation-feedback:3:1" + KAFKA_CREATE_TOPICS: "input:3:1,output:3:1" schema-registry: image: confluentinc/cp-schema-registry:5.3.1 depends_on: @@ -33,7 +33,7 @@ services: SCHEMA_REGISTRY_HOST_NAME: schema-registry SCHEMA_REGISTRY_KAFKASTORE_CONNECTION_URL: 'zookeeper:2181' load-generator: - image: ghcr.io/cau-se/theodolite-uc3-workload-generator:latest + image: ghcr.io/cau-se/theodolite-uc3-workload-generator:${THEODOLITE_TAG:-latest} depends_on: - schema-registry - kafka @@ -44,12 +44,11 @@ services: SCHEMA_REGISTRY_URL: http://schema-registry:8081 NUM_SENSORS: 10 benchmark-jobmanager: - image: uc3-beam-flink:latest + image: ghcr.io/cau-se/theodolite-uc3-beam-flink:${THEODOLITE_TAG:-latest} #ports: # - "8080:8081" command: > standalone-job --job-classname application.Uc3BeamFlink - --streaming --disableMetrics=true --fasterCopy environment: @@ -65,7 +64,7 @@ services: - schema-registry - kafka benchmark-taskmanager: - image: uc3-beam-flink:latest + image: ghcr.io/cau-se/theodolite-uc3-beam-flink:${THEODOLITE_TAG:-latest} scale: 1 command: taskmanager environment: diff --git a/theodolite-benchmarks/docker-test/uc3-beam-samza/docker-compose.yml b/theodolite-benchmarks/docker-test/uc3-beam-samza/docker-compose.yml index 9e6b7726284a14c8f3c07a6e21b824f5746812d6..3ae3a2faa7c0849b76ea838b09ba0254bdfea936 100644 --- a/theodolite-benchmarks/docker-test/uc3-beam-samza/docker-compose.yml +++ b/theodolite-benchmarks/docker-test/uc3-beam-samza/docker-compose.yml @@ -21,7 +21,7 @@ services: KAFKA_ZOOKEEPER_CONNECT: zookeeper:2181 KAFKA_ZOOKEEPER_CONNECTION_TIMEOUT_MS: 30000 KAFKA_AUTO_CREATE_TOPICS_ENABLE: "false" - KAFKA_CREATE_TOPICS: "input:3:1,output:3:1,configuration:3:1,aggregation-feedback:3:1" + KAFKA_CREATE_TOPICS: "input:3:1,output:3:1" schema-registry: image: confluentinc/cp-schema-registry:5.3.1 depends_on: @@ -35,7 +35,7 @@ services: SCHEMA_REGISTRY_HOST_NAME: schema-registry SCHEMA_REGISTRY_KAFKASTORE_CONNECTION_URL: 'zookeeper:2181' benchmark: - image: uc3-beam-samza:latest + image: ghcr.io/cau-se/theodolite-uc3-beam-samza:${THEODOLITE_TAG:-latest} scale: 1 depends_on: - schema-registry @@ -44,11 +44,10 @@ services: SAMZA_JOB_COORDINATOR_ZK_CONNECT: zookeeper:2181 SAMZA_SYSTEMS_KAFKA_PRODUCER_BOOTSTRAP_SERVERS: kafka:9092 SAMZA_SYSTEMS_KAFKA_CONSUMER_BOOTSTRAP_SERVERS: kafka:9092 - MAX_SOURCE_PARALLELISM: 1024 KAFKA_BOOTSTRAP_SERVERS: kafka:9092 SCHEMA_REGISTRY_URL: http://schema-registry:8081 load-generator: - image: ghcr.io/cau-se/theodolite-uc3-workload-generator:latest + image: ghcr.io/cau-se/theodolite-uc3-workload-generator:${THEODOLITE_TAG:-latest} depends_on: - schema-registry - kafka diff --git a/theodolite-benchmarks/docker-test/uc3-flink-docker-compose/docker-compose.yml b/theodolite-benchmarks/docker-test/uc3-flink-docker-compose/docker-compose.yml index c2b8d7ad436301138acdf8dfae1654e2feb9b9bb..42c55950fbea022f00019699ae72678fbe88b8cb 100755 --- a/theodolite-benchmarks/docker-test/uc3-flink-docker-compose/docker-compose.yml +++ b/theodolite-benchmarks/docker-test/uc3-flink-docker-compose/docker-compose.yml @@ -19,7 +19,7 @@ services: KAFKA_ZOOKEEPER_CONNECT: zookeeper:2181 KAFKA_ZOOKEEPER_CONNECTION_TIMEOUT_MS: 30000 KAFKA_AUTO_CREATE_TOPICS_ENABLE: "false" - KAFKA_CREATE_TOPICS: "input:3:1,output:3:1,configuration:3:1,aggregation-feedback:3:1" + KAFKA_CREATE_TOPICS: "input:3:1,output:3:1" schema-registry: image: confluentinc/cp-schema-registry:5.3.1 depends_on: @@ -33,7 +33,7 @@ services: SCHEMA_REGISTRY_HOST_NAME: schema-registry SCHEMA_REGISTRY_KAFKASTORE_CONNECTION_URL: 'zookeeper:2181' load-generator: - image: ghcr.io/cau-se/theodolite-uc3-workload-generator:latest + image: ghcr.io/cau-se/theodolite-uc3-workload-generator:${THEODOLITE_TAG:-latest} depends_on: - schema-registry - kafka @@ -44,7 +44,7 @@ services: SCHEMA_REGISTRY_URL: http://schema-registry:8081 NUM_SENSORS: 10 benchmark-jobmanager: - image: ghcr.io/cau-se/theodolite-uc3-flink:latest + image: ghcr.io/cau-se/theodolite-uc3-flink:${THEODOLITE_TAG:-latest} #ports: # - "8080:8081" command: standalone-job --job-classname theodolite.uc3.application.HistoryServiceFlinkJob @@ -59,7 +59,7 @@ services: - schema-registry - kafka benchmark-taskmanager: - image: ghcr.io/cau-se/theodolite-uc3-flink:latest + image: ghcr.io/cau-se/theodolite-uc3-flink:${THEODOLITE_TAG:-latest} command: taskmanager environment: - | diff --git a/theodolite-benchmarks/docker-test/uc3-kstreams-docker-compose/docker-compose.yml b/theodolite-benchmarks/docker-test/uc3-kstreams-docker-compose/docker-compose.yml index 65b0a3467e123a84d0e719d8702749ed33773aea..f943de372b75bf64df0028679d56950fedfaec48 100755 --- a/theodolite-benchmarks/docker-test/uc3-kstreams-docker-compose/docker-compose.yml +++ b/theodolite-benchmarks/docker-test/uc3-kstreams-docker-compose/docker-compose.yml @@ -19,7 +19,7 @@ services: KAFKA_ZOOKEEPER_CONNECT: zookeeper:2181 KAFKA_ZOOKEEPER_CONNECTION_TIMEOUT_MS: 30000 KAFKA_AUTO_CREATE_TOPICS_ENABLE: "false" - KAFKA_CREATE_TOPICS: "input:3:1,output:3:1,configuration:3:1,aggregation-feedback:3:1" + KAFKA_CREATE_TOPICS: "input:3:1,output:3:1" schema-registry: image: confluentinc/cp-schema-registry:5.3.1 depends_on: @@ -33,7 +33,7 @@ services: SCHEMA_REGISTRY_HOST_NAME: schema-registry SCHEMA_REGISTRY_KAFKASTORE_CONNECTION_URL: 'zookeeper:2181' benchmark: - image: ghcr.io/cau-se/theodolite-uc3-kstreams-app:latest + image: ghcr.io/cau-se/theodolite-uc3-kstreams-app:${THEODOLITE_TAG:-latest} depends_on: - schema-registry - kafka @@ -41,7 +41,7 @@ services: KAFKA_BOOTSTRAP_SERVERS: kafka:9092 SCHEMA_REGISTRY_URL: http://schema-registry:8081 load-generator: - image: ghcr.io/cau-se/theodolite-uc3-workload-generator:latest + image: ghcr.io/cau-se/theodolite-uc3-workload-generator:${THEODOLITE_TAG:-latest} depends_on: - schema-registry - kafka diff --git a/theodolite-benchmarks/docker-test/uc4-beam-flink/docker-compose.yml b/theodolite-benchmarks/docker-test/uc4-beam-flink/docker-compose.yml index cd35ca050ec134248851da304b342a33a11aedc4..b0d18dfe34c23847b3cc0b04d788fdc4b3552e68 100644 --- a/theodolite-benchmarks/docker-test/uc4-beam-flink/docker-compose.yml +++ b/theodolite-benchmarks/docker-test/uc4-beam-flink/docker-compose.yml @@ -33,7 +33,7 @@ services: SCHEMA_REGISTRY_HOST_NAME: schema-registry SCHEMA_REGISTRY_KAFKASTORE_CONNECTION_URL: 'zookeeper:2181' load-generator: - image: ghcr.io/cau-se/theodolite-uc4-workload-generator:latest + image: ghcr.io/cau-se/theodolite-uc4-workload-generator:${THEODOLITE_TAG:-latest} depends_on: - schema-registry - kafka @@ -45,13 +45,12 @@ services: NUM_SENSORS: 4 NUM_NESTED_GROUPS: 4 benchmark-jobmanager: - image: uc4-beam-flink:latest + image: ghcr.io/cau-se/theodolite-uc4-beam-flink:${THEODOLITE_TAG:-latest} #ports: # - "8080:8081" command: > standalone-job --job-classname application.Uc4BeamFlink - --streaming --disableMetrics=true --fasterCopy environment: @@ -67,7 +66,7 @@ services: - schema-registry - kafka benchmark-taskmanager: - image: uc4-beam-flink:latest + image: ghcr.io/cau-se/theodolite-uc4-beam-flink:${THEODOLITE_TAG:-latest} scale: 1 command: taskmanager environment: diff --git a/theodolite-benchmarks/docker-test/uc4-beam-samza/docker-compose.yml b/theodolite-benchmarks/docker-test/uc4-beam-samza/docker-compose.yml index fc83f25341e99b948290b89b529c1d158203fe81..b9e4142cb0be2701f7772cff5725b524aaffcbc7 100644 --- a/theodolite-benchmarks/docker-test/uc4-beam-samza/docker-compose.yml +++ b/theodolite-benchmarks/docker-test/uc4-beam-samza/docker-compose.yml @@ -35,7 +35,7 @@ services: SCHEMA_REGISTRY_HOST_NAME: schema-registry SCHEMA_REGISTRY_KAFKASTORE_CONNECTION_URL: 'zookeeper:2181' benchmark: - image: uc4-beam-samza:latest + image: ghcr.io/cau-se/theodolite-uc4-beam-samza:${THEODOLITE_TAG:-latest} scale: 1 depends_on: - schema-registry @@ -44,11 +44,10 @@ services: SAMZA_JOB_COORDINATOR_ZK_CONNECT: zookeeper:2181 SAMZA_SYSTEMS_KAFKA_PRODUCER_BOOTSTRAP_SERVERS: kafka:9092 SAMZA_SYSTEMS_KAFKA_CONSUMER_BOOTSTRAP_SERVERS: kafka:9092 - MAX_SOURCE_PARALLELISM: 1024 KAFKA_BOOTSTRAP_SERVERS: kafka:9092 SCHEMA_REGISTRY_URL: http://schema-registry:8081 load-generator: - image: ghcr.io/cau-se/theodolite-uc4-workload-generator:latest + image: ghcr.io/cau-se/theodolite-uc4-workload-generator:${THEODOLITE_TAG:-latest} depends_on: - schema-registry - kafka diff --git a/theodolite-benchmarks/docker-test/uc4-flink-docker-compose/docker-compose.yml b/theodolite-benchmarks/docker-test/uc4-flink-docker-compose/docker-compose.yml index 0f7e4e656dede1aad3342fb79816e3ebf88e84d8..5a5a5924ef13cc9691b267ce6169bdb85a1e267b 100755 --- a/theodolite-benchmarks/docker-test/uc4-flink-docker-compose/docker-compose.yml +++ b/theodolite-benchmarks/docker-test/uc4-flink-docker-compose/docker-compose.yml @@ -33,7 +33,7 @@ services: SCHEMA_REGISTRY_HOST_NAME: schema-registry SCHEMA_REGISTRY_KAFKASTORE_CONNECTION_URL: 'zookeeper:2181' load-generator: - image: ghcr.io/cau-se/theodolite-uc4-workload-generator:latest + image: ghcr.io/cau-se/theodolite-uc4-workload-generator:${THEODOLITE_TAG:-latest} depends_on: - schema-registry - kafka @@ -45,7 +45,7 @@ services: NUM_SENSORS: 4 NUM_NESTED_GROUPS: 4 benchmark-jobmanager: - image: ghcr.io/cau-se/theodolite-uc4-flink:latest + image: ghcr.io/cau-se/theodolite-uc4-flink:${THEODOLITE_TAG:-latest} #ports: # - "8080:8081" command: standalone-job --job-classname theodolite.uc4.application.AggregationServiceFlinkJob @@ -60,7 +60,7 @@ services: - schema-registry - kafka benchmark-taskmanager: - image: ghcr.io/cau-se/theodolite-uc4-flink:latest + image: ghcr.io/cau-se/theodolite-uc4-flink:${THEODOLITE_TAG:-latest} command: taskmanager environment: - | diff --git a/theodolite-benchmarks/docker-test/uc4-kstreams-docker-compose/docker-compose.yml b/theodolite-benchmarks/docker-test/uc4-kstreams-docker-compose/docker-compose.yml index 5fca44708006d1fae3ae2f9f46b5c42f6431fc3a..1818505787f662d57f1a96c8c79b03d61cf9da2a 100755 --- a/theodolite-benchmarks/docker-test/uc4-kstreams-docker-compose/docker-compose.yml +++ b/theodolite-benchmarks/docker-test/uc4-kstreams-docker-compose/docker-compose.yml @@ -33,7 +33,7 @@ services: SCHEMA_REGISTRY_HOST_NAME: schema-registry SCHEMA_REGISTRY_KAFKASTORE_CONNECTION_URL: 'zookeeper:2181' benchmark: - image: ghcr.io/cau-se/theodolite-uc4-kstreams-app:latest + image: ghcr.io/cau-se/theodolite-uc4-kstreams-app:${THEODOLITE_TAG:-latest} depends_on: - schema-registry - kafka @@ -41,7 +41,7 @@ services: KAFKA_BOOTSTRAP_SERVERS: kafka:9092 SCHEMA_REGISTRY_URL: http://schema-registry:8081 load-generator: - image: ghcr.io/cau-se/theodolite-uc4-workload-generator:latest + image: ghcr.io/cau-se/theodolite-uc4-workload-generator:${THEODOLITE_TAG:-latest} depends_on: - schema-registry - kafka diff --git a/theodolite-benchmarks/flink-commons/build.gradle b/theodolite-benchmarks/flink-commons/build.gradle index edd48c914b8c909ff196bb98e9bbc8b9d99865b9..a3a4a35752006bb10e15ff508ce0b37f70adc57d 100644 --- a/theodolite-benchmarks/flink-commons/build.gradle +++ b/theodolite-benchmarks/flink-commons/build.gradle @@ -8,7 +8,7 @@ ext { } repositories { - jcenter() + mavenCentral() maven { url "https://oss.sonatype.org/content/repositories/snapshots/" } diff --git a/theodolite-benchmarks/gradle/wrapper/gradle-wrapper.properties b/theodolite-benchmarks/gradle/wrapper/gradle-wrapper.properties index 442d9132ea32808ad980df4bd233b359f76341a7..2e6e5897b5285c749d75662c65ac5d2904c37bc6 100644 --- a/theodolite-benchmarks/gradle/wrapper/gradle-wrapper.properties +++ b/theodolite-benchmarks/gradle/wrapper/gradle-wrapper.properties @@ -1,5 +1,5 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-6.8.3-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.3-bin.zip zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists diff --git a/theodolite-benchmarks/kstreams-commons/build.gradle b/theodolite-benchmarks/kstreams-commons/build.gradle index c5a880acd4377056cc0b0f06b33a2d74c9f87c4e..7683ffe39314ec375eda0ed4e139d618d44a7328 100644 --- a/theodolite-benchmarks/kstreams-commons/build.gradle +++ b/theodolite-benchmarks/kstreams-commons/build.gradle @@ -3,7 +3,7 @@ plugins { } repositories { - jcenter() + mavenCentral() maven { url "https://oss.sonatype.org/content/repositories/snapshots/" } diff --git a/theodolite-benchmarks/load-generator-commons/build.gradle b/theodolite-benchmarks/load-generator-commons/build.gradle index 118f3e648f829a3eafe719ddf660d35ac8563574..2d8f77b5154b5b788e0729da69122b443740ce75 100644 --- a/theodolite-benchmarks/load-generator-commons/build.gradle +++ b/theodolite-benchmarks/load-generator-commons/build.gradle @@ -3,7 +3,7 @@ plugins { } repositories { - jcenter() + mavenCentral() maven { url "https://oss.sonatype.org/content/repositories/snapshots/" } @@ -13,14 +13,16 @@ repositories { } dependencies { - implementation 'com.google.guava:guava:30.1-jre' implementation 'com.hazelcast:hazelcast:4.1.1' implementation 'com.hazelcast:hazelcast-kubernetes:2.2.1' implementation 'org.slf4j:slf4j-simple:1.7.25' + implementation 'com.google.guava:guava:30.1-jre' + implementation 'com.google.code.gson:gson:2.8.2' implementation('org.industrial-devops:titan-ccp-common:0.1.0-SNAPSHOT') { changing = true } implementation('org.industrial-devops:titan-ccp-common-kafka:0.1.0-SNAPSHOT') { changing = true } implementation 'org.apache.kafka:kafka-streams:2.6.0' // TODO required? // Use JUnit test framework testImplementation 'junit:junit:4.12' + testImplementation 'com.github.tomakehurst:wiremock-jre8:2.32.0' } diff --git a/theodolite-benchmarks/load-generator-commons/src/main/java/theodolite/commons/workloadgeneration/ConfigurationKeys.java b/theodolite-benchmarks/load-generator-commons/src/main/java/theodolite/commons/workloadgeneration/ConfigurationKeys.java index 45ac1d5bb9c21a1b6303de2f248d08b69c02fc28..7a60e271f04e396b2e0c69b1fcfee1d8a1ca8a7d 100644 --- a/theodolite-benchmarks/load-generator-commons/src/main/java/theodolite/commons/workloadgeneration/ConfigurationKeys.java +++ b/theodolite-benchmarks/load-generator-commons/src/main/java/theodolite/commons/workloadgeneration/ConfigurationKeys.java @@ -23,6 +23,8 @@ public final class ConfigurationKeys { public static final String THREADS = "THREADS"; + public static final String TARGET = "TARGET"; + public static final String KAFKA_BOOTSTRAP_SERVERS = "KAFKA_BOOTSTRAP_SERVERS"; public static final String SCHEMA_REGISTRY_URL = "SCHEMA_REGISTRY_URL"; @@ -35,6 +37,8 @@ public final class ConfigurationKeys { public static final String KAFKA_BUFFER_MEMORY = "KAFKA_BUFFER_MEMORY"; + public static final String HTTP_URL = "HTTP_URL"; + private ConfigurationKeys() {} } diff --git a/theodolite-benchmarks/load-generator-commons/src/main/java/theodolite/commons/workloadgeneration/HttpRecordSender.java b/theodolite-benchmarks/load-generator-commons/src/main/java/theodolite/commons/workloadgeneration/HttpRecordSender.java new file mode 100644 index 0000000000000000000000000000000000000000..6b7a5db067c8117f046aa0ff1c6f5d56c35c4321 --- /dev/null +++ b/theodolite-benchmarks/load-generator-commons/src/main/java/theodolite/commons/workloadgeneration/HttpRecordSender.java @@ -0,0 +1,93 @@ +package theodolite.commons.workloadgeneration; + +import com.google.gson.Gson; +import java.net.URI; +import java.net.http.HttpClient; +import java.net.http.HttpRequest; +import java.net.http.HttpResponse; +import java.net.http.HttpResponse.BodyHandler; +import java.net.http.HttpResponse.BodyHandlers; +import java.util.List; +import java.util.concurrent.CompletableFuture; +import java.util.concurrent.ExecutionException; +import org.apache.avro.specific.SpecificRecord; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; + +/** + * Sends monitoring records via HTTP. + * + * @param <T> {@link SpecificRecord} to send + */ +public class HttpRecordSender<T extends SpecificRecord> implements RecordSender<T> { + + private static final int HTTP_OK = 200; + + private static final Logger LOGGER = LoggerFactory.getLogger(HttpRecordSender.class); + + private final Gson gson = new Gson(); + + private final HttpClient httpClient = HttpClient.newBuilder().build(); + + private final URI uri; + + private final boolean async; + + private final List<Integer> validStatusCodes; + + /** + * Create a new {@link HttpRecordSender}. + * + * @param uri the {@link URI} records should be sent to + */ + public HttpRecordSender(final URI uri) { + this(uri, true, List.of(HTTP_OK)); + } + + /** + * Create a new {@link HttpRecordSender}. + * + * @param uri the {@link URI} records should be sent to + * @param async whether HTTP requests should be sent asynchronous + * @param validStatusCodes a list of HTTP status codes which are considered as successful + */ + public HttpRecordSender(final URI uri, final boolean async, + final List<Integer> validStatusCodes) { + this.uri = uri; + this.async = async; + this.validStatusCodes = validStatusCodes; + } + + @Override + public void send(final T message) { + final String json = this.gson.toJson(message); + final HttpRequest request = HttpRequest.newBuilder() + .uri(this.uri) + .POST(HttpRequest.BodyPublishers.ofString(json)) + .build(); + final BodyHandler<Void> bodyHandler = BodyHandlers.discarding(); + // final BodyHandler<String> bodyHandler = BodyHandlers.ofString(); + + final CompletableFuture<HttpResponse<Void>> result = + this.httpClient.sendAsync(request, bodyHandler) + .whenComplete((response, exception) -> { + if (exception != null) { // NOPMD + LOGGER.warn("Couldn't send request to {}.", this.uri, exception); // NOPMD false-p. + } else if (!this.validStatusCodes.contains(response.statusCode())) { // NOPMD + LOGGER.warn("Received status code {} for request to {}.", response.statusCode(), + this.uri); + } else { + LOGGER.debug("Sucessfully sent request to {} (status={}).", this.uri, + response.statusCode()); + } + }); + if (this.async) { + try { + result.get(); + } catch (InterruptedException | ExecutionException e) { + LOGGER.error("Couldn't get result for request to {}.", this.uri, e); + } + } + } + +} diff --git a/theodolite-benchmarks/load-generator-commons/src/main/java/theodolite/commons/workloadgeneration/KafkaRecordSender.java b/theodolite-benchmarks/load-generator-commons/src/main/java/theodolite/commons/workloadgeneration/KafkaRecordSender.java index ded7c347c8d6b057581dc63b691df5bb60997791..44ff8a92afd5356b4bb2af203899a61f7af48b2d 100644 --- a/theodolite-benchmarks/load-generator-commons/src/main/java/theodolite/commons/workloadgeneration/KafkaRecordSender.java +++ b/theodolite-benchmarks/load-generator-commons/src/main/java/theodolite/commons/workloadgeneration/KafkaRecordSender.java @@ -15,7 +15,7 @@ import titan.ccp.common.kafka.avro.SchemaRegistryAvroSerdeFactory; /** * Sends monitoring records to Kafka. * - * @param <T> {@link IMonitoringRecord} to send + * @param <T> {@link SpecificRecord} to send */ public class KafkaRecordSender<T extends SpecificRecord> implements RecordSender<T> { diff --git a/theodolite-benchmarks/load-generator-commons/src/main/java/theodolite/commons/workloadgeneration/LoadGenerator.java b/theodolite-benchmarks/load-generator-commons/src/main/java/theodolite/commons/workloadgeneration/LoadGenerator.java index 73f064d1ce44ff8a613f9ce0a7b9a64d4bac6c38..6453ef0bd3b6d5a3b5f7f2b77fa20da8f79cb35f 100644 --- a/theodolite-benchmarks/load-generator-commons/src/main/java/theodolite/commons/workloadgeneration/LoadGenerator.java +++ b/theodolite-benchmarks/load-generator-commons/src/main/java/theodolite/commons/workloadgeneration/LoadGenerator.java @@ -1,11 +1,13 @@ package theodolite.commons.workloadgeneration; +import java.net.URI; import java.time.Duration; import java.util.Objects; import java.util.Properties; import org.apache.kafka.clients.producer.ProducerConfig; import org.slf4j.Logger; import org.slf4j.LoggerFactory; +import titan.ccp.model.records.ActivePowerRecord; /** * A Theodolite load generator. @@ -20,9 +22,11 @@ public final class LoadGenerator { private static final int PERIOD_MS_DEFAULT = 1000; private static final int VALUE_DEFAULT = 10; private static final int THREADS_DEFAULT = 4; + private static final LoadGeneratorTarget TARGET_DEFAULT = LoadGeneratorTarget.KAFKA; private static final String SCHEMA_REGISTRY_URL_DEFAULT = "http://localhost:8081"; private static final String KAFKA_TOPIC_DEFAULT = "input"; - private static final String KAFKA_BOOTSTRAP_SERVERS_DEFAULT = "localhost:19092"; // NOPMD + private static final String KAFKA_BOOTSTRAP_SERVERS_DEFAULT = "localhost:9092"; // NOPMD + private static final String HTTP_URI_DEFAULT = "http://localhost:8080"; private ClusterConfig clusterConfig; private WorkloadDefinition loadDefinition; @@ -91,7 +95,7 @@ public final class LoadGenerator { new KeySpace(SENSOR_PREFIX_DEFAULT, NUMBER_OF_KEYS_DEFAULT), Duration.ofMillis(PERIOD_MS_DEFAULT))) .setGeneratorConfig(new LoadGeneratorConfig( - TitanRecordGeneratorFactory.forConstantValue(VALUE_DEFAULT), + TitanRecordGenerator.forConstantValue(VALUE_DEFAULT), TitanKafkaSenderFactory.forKafkaConfig( KAFKA_BOOTSTRAP_SERVERS_DEFAULT, KAFKA_TOPIC_DEFAULT, @@ -134,6 +138,47 @@ public final class LoadGenerator { clusterConfig.setClusterNamePrefix(portAutoIncrement); } + final LoadGeneratorTarget target = LoadGeneratorTarget.from( + Objects.requireNonNullElse(System.getenv(ConfigurationKeys.TARGET), + TARGET_DEFAULT.getValue())); + + final RecordSender<ActivePowerRecord> recordSender; // NOPMD + if (target == LoadGeneratorTarget.KAFKA) { + final String kafkaBootstrapServers = Objects.requireNonNullElse( + System.getenv(ConfigurationKeys.KAFKA_BOOTSTRAP_SERVERS), + KAFKA_BOOTSTRAP_SERVERS_DEFAULT); + final String kafkaInputTopic = Objects.requireNonNullElse( + System.getenv(ConfigurationKeys.KAFKA_INPUT_TOPIC), + KAFKA_TOPIC_DEFAULT); + final String schemaRegistryUrl = Objects.requireNonNullElse( + System.getenv(ConfigurationKeys.SCHEMA_REGISTRY_URL), + SCHEMA_REGISTRY_URL_DEFAULT); + final Properties kafkaProperties = new Properties(); + kafkaProperties.compute(ProducerConfig.BATCH_SIZE_CONFIG, + (k, v) -> System.getenv(ConfigurationKeys.KAFKA_BATCH_SIZE)); + kafkaProperties.compute(ProducerConfig.LINGER_MS_CONFIG, + (k, v) -> System.getenv(ConfigurationKeys.KAFKA_LINGER_MS)); + kafkaProperties.compute(ProducerConfig.BUFFER_MEMORY_CONFIG, + (k, v) -> System.getenv(ConfigurationKeys.KAFKA_BUFFER_MEMORY)); + recordSender = TitanKafkaSenderFactory.forKafkaConfig( + kafkaBootstrapServers, + kafkaInputTopic, + schemaRegistryUrl); + LOGGER.info( + "Use Kafka as target with bootstrap server '{}', schema registry url '{}' and topic '{}'.", // NOCS + kafkaBootstrapServers, schemaRegistryUrl, kafkaInputTopic); + } else if (target == LoadGeneratorTarget.HTTP) { + final URI url = URI.create( + Objects.requireNonNullElse( + System.getenv(ConfigurationKeys.HTTP_URL), + HTTP_URI_DEFAULT)); + recordSender = new HttpRecordSender<>(url); + LOGGER.info("Use HTTP server as target with url '{}'.", url); + } else { + // Should never happen + throw new IllegalStateException("Target " + target + " is not handled yet."); + } + final int numSensors = Integer.parseInt(Objects.requireNonNullElse( System.getenv(ConfigurationKeys.NUM_SENSORS), Integer.toString(NUMBER_OF_KEYS_DEFAULT))); @@ -146,22 +191,6 @@ public final class LoadGenerator { final int threads = Integer.parseInt(Objects.requireNonNullElse( System.getenv(ConfigurationKeys.THREADS), Integer.toString(THREADS_DEFAULT))); - final String kafkaBootstrapServers = Objects.requireNonNullElse( - System.getenv(ConfigurationKeys.KAFKA_BOOTSTRAP_SERVERS), - KAFKA_BOOTSTRAP_SERVERS_DEFAULT); - final String kafkaInputTopic = Objects.requireNonNullElse( - System.getenv(ConfigurationKeys.KAFKA_INPUT_TOPIC), - KAFKA_TOPIC_DEFAULT); - final String schemaRegistryUrl = Objects.requireNonNullElse( - System.getenv(ConfigurationKeys.SCHEMA_REGISTRY_URL), - SCHEMA_REGISTRY_URL_DEFAULT); - final Properties kafkaProperties = new Properties(); - kafkaProperties.compute(ProducerConfig.BATCH_SIZE_CONFIG, - (k, v) -> System.getenv(ConfigurationKeys.KAFKA_BATCH_SIZE)); - kafkaProperties.compute(ProducerConfig.LINGER_MS_CONFIG, - (k, v) -> System.getenv(ConfigurationKeys.KAFKA_LINGER_MS)); - kafkaProperties.compute(ProducerConfig.BUFFER_MEMORY_CONFIG, - (k, v) -> System.getenv(ConfigurationKeys.KAFKA_BUFFER_MEMORY)); return new LoadGenerator() .setClusterConfig(clusterConfig) @@ -169,11 +198,8 @@ public final class LoadGenerator { new KeySpace(SENSOR_PREFIX_DEFAULT, numSensors), Duration.ofMillis(periodMs))) .setGeneratorConfig(new LoadGeneratorConfig( - TitanRecordGeneratorFactory.forConstantValue(value), - TitanKafkaSenderFactory.forKafkaConfig( - kafkaBootstrapServers, - kafkaInputTopic, - schemaRegistryUrl))) + TitanRecordGenerator.forConstantValue(value), + recordSender)) .withThreads(threads); } diff --git a/theodolite-benchmarks/load-generator-commons/src/main/java/theodolite/commons/workloadgeneration/LoadGeneratorTarget.java b/theodolite-benchmarks/load-generator-commons/src/main/java/theodolite/commons/workloadgeneration/LoadGeneratorTarget.java new file mode 100644 index 0000000000000000000000000000000000000000..086e4de36301693c6873016122a47709b858a0d4 --- /dev/null +++ b/theodolite-benchmarks/load-generator-commons/src/main/java/theodolite/commons/workloadgeneration/LoadGeneratorTarget.java @@ -0,0 +1,26 @@ +package theodolite.commons.workloadgeneration; + +import java.util.stream.Stream; + +enum LoadGeneratorTarget { + + KAFKA("kafka"), HTTP("http"); + + private final String value; + + LoadGeneratorTarget(final String value) { + this.value = value; + } + + String getValue() { + return this.value; + } + + static LoadGeneratorTarget from(final String value) { + return Stream.of(LoadGeneratorTarget.values()) + .filter(t -> t.value.equals(value)) + .findFirst() + .orElseThrow(() -> new IllegalArgumentException("Target '" + value + "' does not exist.")); + } + +} diff --git a/theodolite-benchmarks/load-generator-commons/src/main/java/theodolite/commons/workloadgeneration/TitanRecordGenerator.java b/theodolite-benchmarks/load-generator-commons/src/main/java/theodolite/commons/workloadgeneration/TitanRecordGenerator.java new file mode 100644 index 0000000000000000000000000000000000000000..cebdacaee9a8e7d05787fdf3f846d49914574828 --- /dev/null +++ b/theodolite-benchmarks/load-generator-commons/src/main/java/theodolite/commons/workloadgeneration/TitanRecordGenerator.java @@ -0,0 +1,38 @@ +package theodolite.commons.workloadgeneration; + +import java.time.Clock; +import titan.ccp.model.records.ActivePowerRecord; + +/** + * A factory for creating {@link RecordGenerator}s that creates Titan {@link ActivePowerRecord}s. + */ +public final class TitanRecordGenerator implements RecordGenerator<ActivePowerRecord> { + + private final Clock clock; + + private final double constantValue; + + private TitanRecordGenerator(final double constantValue) { + this.constantValue = constantValue; + this.clock = Clock.systemUTC(); + } + + /* default */ TitanRecordGenerator(final double constantValue, final Clock clock) { + this.constantValue = constantValue; + this.clock = clock; + } + + /** + * Create a {@link RecordGenerator} that generates Titan {@link ActivePowerRecord}s with a + * constant value. + */ + public static RecordGenerator<ActivePowerRecord> forConstantValue(final double value) { + return new TitanRecordGenerator(value); + } + + @Override + public ActivePowerRecord generate(final String key) { + return new ActivePowerRecord(key, this.clock.millis(), this.constantValue); + } + +} diff --git a/theodolite-benchmarks/load-generator-commons/src/main/java/theodolite/commons/workloadgeneration/TitanRecordGeneratorFactory.java b/theodolite-benchmarks/load-generator-commons/src/main/java/theodolite/commons/workloadgeneration/TitanRecordGeneratorFactory.java deleted file mode 100644 index 4e1c10071eff28d77514dbc121e30bead3f6fa74..0000000000000000000000000000000000000000 --- a/theodolite-benchmarks/load-generator-commons/src/main/java/theodolite/commons/workloadgeneration/TitanRecordGeneratorFactory.java +++ /dev/null @@ -1,21 +0,0 @@ -package theodolite.commons.workloadgeneration; - -import titan.ccp.model.records.ActivePowerRecord; - -/** - * A factory for creating {@link RecordGenerator}s that creates Titan {@link ActivePowerRecord}s. - */ -public final class TitanRecordGeneratorFactory { - - - private TitanRecordGeneratorFactory() {} - - /** - * Create a {@link RecordGenerator} that generates Titan {@link ActivePowerRecord}s with a - * constant value. - */ - public static RecordGenerator<ActivePowerRecord> forConstantValue(final double value) { - return sensor -> new ActivePowerRecord(sensor, System.currentTimeMillis(), value); - } - -} diff --git a/theodolite-benchmarks/load-generator-commons/src/test/java/theodolite/commons/workloadgeneration/HttpRecordSenderTest.java b/theodolite-benchmarks/load-generator-commons/src/test/java/theodolite/commons/workloadgeneration/HttpRecordSenderTest.java new file mode 100644 index 0000000000000000000000000000000000000000..6d908d34b7c6b87254782b6ae8b0b8dc2a6d036e --- /dev/null +++ b/theodolite-benchmarks/load-generator-commons/src/test/java/theodolite/commons/workloadgeneration/HttpRecordSenderTest.java @@ -0,0 +1,53 @@ +package theodolite.commons.workloadgeneration; + +import static com.github.tomakehurst.wiremock.client.WireMock.aResponse; +import static com.github.tomakehurst.wiremock.client.WireMock.equalTo; +import static com.github.tomakehurst.wiremock.client.WireMock.exactly; +import static com.github.tomakehurst.wiremock.client.WireMock.post; +import static com.github.tomakehurst.wiremock.client.WireMock.postRequestedFor; +import static com.github.tomakehurst.wiremock.client.WireMock.urlEqualTo; +import static com.github.tomakehurst.wiremock.client.WireMock.urlPathEqualTo; +import static com.github.tomakehurst.wiremock.client.WireMock.verify; +import static com.github.tomakehurst.wiremock.core.WireMockConfiguration.options; +import com.github.tomakehurst.wiremock.junit.WireMockRule; +import com.google.gson.Gson; +import java.net.URI; +import org.junit.Before; +import org.junit.Rule; +import org.junit.Test; +import titan.ccp.model.records.ActivePowerRecord; + +public class HttpRecordSenderTest { + + private HttpRecordSender<ActivePowerRecord> httpRecordSender; + + private Gson gson; + + @Rule + public WireMockRule wireMockRule = new WireMockRule(options().dynamicPort()); + + @Before + public void setup() { + this.httpRecordSender = + new HttpRecordSender<>(URI.create("http://localhost:" + this.wireMockRule.port())); + this.gson = new Gson(); + } + + @Test + public void testValidUri() { + this.wireMockRule.stubFor( + post(urlPathEqualTo("/")) + .willReturn( + aResponse() + .withStatus(200) + .withBody("received"))); + + final ActivePowerRecord record = new ActivePowerRecord("my-id", 12345L, 12.34); + this.httpRecordSender.send(record); + + final String expectedJson = "{\"identifier\":\"my-id\",\"timestamp\":12345,\"valueInW\":12.34}"; + verify(exactly(1), postRequestedFor(urlEqualTo("/")) + .withRequestBody(equalTo(expectedJson))); // toJson + } + +} diff --git a/theodolite-benchmarks/load-generator-commons/src/test/java/theodolite/commons/workloadgeneration/KeySpaceTest.java b/theodolite-benchmarks/load-generator-commons/src/test/java/theodolite/commons/workloadgeneration/KeySpaceTest.java index 20c094ddcc7ff110a25aaffa494766e89d4d2475..49004839a9c8fd280aba5006a1f08c2acb3c3136 100644 --- a/theodolite-benchmarks/load-generator-commons/src/test/java/theodolite/commons/workloadgeneration/KeySpaceTest.java +++ b/theodolite-benchmarks/load-generator-commons/src/test/java/theodolite/commons/workloadgeneration/KeySpaceTest.java @@ -2,7 +2,6 @@ package theodolite.commons.workloadgeneration; import org.junit.Assert; import org.junit.Test; -import theodolite.commons.workloadgeneration.KeySpace; public class KeySpaceTest { diff --git a/theodolite-benchmarks/load-generator-commons/src/test/java/theodolite/commons/workloadgeneration/LoadGeneratorTargetTest.java b/theodolite-benchmarks/load-generator-commons/src/test/java/theodolite/commons/workloadgeneration/LoadGeneratorTargetTest.java new file mode 100644 index 0000000000000000000000000000000000000000..644ffad9a4d2732f72ac307294d1311eba3a9ce8 --- /dev/null +++ b/theodolite-benchmarks/load-generator-commons/src/test/java/theodolite/commons/workloadgeneration/LoadGeneratorTargetTest.java @@ -0,0 +1,26 @@ +package theodolite.commons.workloadgeneration; + +import org.junit.Assert; +import org.junit.Test; + +public class LoadGeneratorTargetTest { + + @Test + public void testFromKafka() { + final LoadGeneratorTarget target = LoadGeneratorTarget.from("kafka"); + Assert.assertEquals(LoadGeneratorTarget.KAFKA, target); + } + + @Test + public void testFromHttp() { + final LoadGeneratorTarget target = LoadGeneratorTarget.from("http"); + Assert.assertEquals(LoadGeneratorTarget.HTTP, target); + } + + @Test(expected = IllegalArgumentException.class) + public void testFromInvalidTarget() { + LoadGeneratorTarget.from("<invalid-target>"); + } + + +} diff --git a/theodolite-benchmarks/load-generator-commons/src/test/java/theodolite/commons/workloadgeneration/TitanRecordGeneratorTest.java b/theodolite-benchmarks/load-generator-commons/src/test/java/theodolite/commons/workloadgeneration/TitanRecordGeneratorTest.java new file mode 100644 index 0000000000000000000000000000000000000000..04ba38b9c8fcd41df46d3d3070a6308acfd72cb7 --- /dev/null +++ b/theodolite-benchmarks/load-generator-commons/src/test/java/theodolite/commons/workloadgeneration/TitanRecordGeneratorTest.java @@ -0,0 +1,40 @@ +package theodolite.commons.workloadgeneration; + +import java.time.Clock; +import java.time.Instant; +import java.time.LocalDateTime; +import java.time.ZoneId; +import java.time.ZoneOffset; +import org.junit.Assert; +import org.junit.Test; +import titan.ccp.model.records.ActivePowerRecord; + +public class TitanRecordGeneratorTest { + + @Test + public void testGenerate() { + final ZoneId zoneId = ZoneOffset.UTC; + final LocalDateTime dateTime = LocalDateTime.of(2022, 1, 17, 14, 2, 42); + final Instant instant = dateTime.atZone(zoneId).toInstant(); + final TitanRecordGenerator generator = + new TitanRecordGenerator(42.0, Clock.fixed(instant, zoneId)); + + final ActivePowerRecord activePowerRecord = generator.generate("my-identifier"); + Assert.assertEquals("my-identifier", activePowerRecord.getIdentifier()); + Assert.assertEquals(instant.toEpochMilli(), activePowerRecord.getTimestamp()); + Assert.assertEquals(42.0, activePowerRecord.getValueInW(), 0.001); + } + + @Test + public void testTimestampForArbitraryClockTimeZone() { + final LocalDateTime dateTime = LocalDateTime.of(2022, 1, 17, 14, 2, 42); + final Instant instant = dateTime.atZone(ZoneId.of("Europe/Paris")).toInstant(); + // Setting of ZoneId should have no impact on result as we request epoch millis + final Clock clock = Clock.fixed(instant, ZoneId.of("America/Sao_Paulo")); + final TitanRecordGenerator generator = new TitanRecordGenerator(42.0, clock); + + final ActivePowerRecord activePowerRecord = generator.generate("my-identifier"); + Assert.assertEquals(instant.toEpochMilli(), activePowerRecord.getTimestamp()); + } + +} diff --git a/theodolite-benchmarks/uc1-beam-samza/.gitignore b/theodolite-benchmarks/uc1-beam-samza/.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..7bf05dd280fcc888467656ce1fbdeb65322c7ba8 --- /dev/null +++ b/theodolite-benchmarks/uc1-beam-samza/.gitignore @@ -0,0 +1 @@ +state \ No newline at end of file diff --git a/theodolite-benchmarks/uc1-beam/.settings/org.eclipse.jdt.ui.prefs b/theodolite-benchmarks/uc1-beam/.settings/org.eclipse.jdt.ui.prefs new file mode 100644 index 0000000000000000000000000000000000000000..da2db2cefa90c0d974068e22804132eb6c11d824 --- /dev/null +++ b/theodolite-benchmarks/uc1-beam/.settings/org.eclipse.jdt.ui.prefs @@ -0,0 +1,283 @@ +cleanup.add_all=false +cleanup.add_default_serial_version_id=true +cleanup.add_generated_serial_version_id=false +cleanup.add_missing_annotations=true +cleanup.add_missing_deprecated_annotations=true +cleanup.add_missing_methods=false +cleanup.add_missing_nls_tags=false +cleanup.add_missing_override_annotations=true +cleanup.add_missing_override_annotations_interface_methods=true +cleanup.add_serial_version_id=false +cleanup.always_use_blocks=true +cleanup.always_use_parentheses_in_expressions=false +cleanup.always_use_this_for_non_static_field_access=true +cleanup.always_use_this_for_non_static_method_access=true +cleanup.array_with_curly=false +cleanup.arrays_fill=false +cleanup.bitwise_conditional_expression=false +cleanup.boolean_literal=false +cleanup.boolean_value_rather_than_comparison=true +cleanup.break_loop=false +cleanup.collection_cloning=false +cleanup.comparing_on_criteria=false +cleanup.comparison_statement=false +cleanup.controlflow_merge=false +cleanup.convert_functional_interfaces=false +cleanup.convert_to_enhanced_for_loop=true +cleanup.convert_to_enhanced_for_loop_if_loop_var_used=true +cleanup.convert_to_switch_expressions=false +cleanup.correct_indentation=true +cleanup.do_while_rather_than_while=true +cleanup.double_negation=false +cleanup.else_if=false +cleanup.embedded_if=false +cleanup.evaluate_nullable=false +cleanup.extract_increment=false +cleanup.format_source_code=true +cleanup.format_source_code_changes_only=false +cleanup.hash=false +cleanup.if_condition=false +cleanup.insert_inferred_type_arguments=false +cleanup.instanceof=false +cleanup.instanceof_keyword=false +cleanup.invert_equals=false +cleanup.join=false +cleanup.lazy_logical_operator=false +cleanup.make_local_variable_final=true +cleanup.make_parameters_final=true +cleanup.make_private_fields_final=true +cleanup.make_type_abstract_if_missing_method=false +cleanup.make_variable_declarations_final=true +cleanup.map_cloning=false +cleanup.merge_conditional_blocks=false +cleanup.multi_catch=false +cleanup.never_use_blocks=false +cleanup.never_use_parentheses_in_expressions=true +cleanup.no_string_creation=false +cleanup.no_super=false +cleanup.number_suffix=false +cleanup.objects_equals=false +cleanup.one_if_rather_than_duplicate_blocks_that_fall_through=true +cleanup.operand_factorization=false +cleanup.organize_imports=true +cleanup.overridden_assignment=false +cleanup.plain_replacement=false +cleanup.precompile_regex=false +cleanup.primitive_comparison=false +cleanup.primitive_parsing=false +cleanup.primitive_rather_than_wrapper=true +cleanup.primitive_serialization=false +cleanup.pull_out_if_from_if_else=false +cleanup.pull_up_assignment=false +cleanup.push_down_negation=false +cleanup.qualify_static_field_accesses_with_declaring_class=false +cleanup.qualify_static_member_accesses_through_instances_with_declaring_class=true +cleanup.qualify_static_member_accesses_through_subtypes_with_declaring_class=true +cleanup.qualify_static_member_accesses_with_declaring_class=true +cleanup.qualify_static_method_accesses_with_declaring_class=false +cleanup.reduce_indentation=false +cleanup.redundant_comparator=false +cleanup.redundant_falling_through_block_end=false +cleanup.remove_private_constructors=true +cleanup.remove_redundant_modifiers=false +cleanup.remove_redundant_semicolons=true +cleanup.remove_redundant_type_arguments=true +cleanup.remove_trailing_whitespaces=true +cleanup.remove_trailing_whitespaces_all=true +cleanup.remove_trailing_whitespaces_ignore_empty=false +cleanup.remove_unnecessary_array_creation=false +cleanup.remove_unnecessary_casts=true +cleanup.remove_unnecessary_nls_tags=true +cleanup.remove_unused_imports=true +cleanup.remove_unused_local_variables=false +cleanup.remove_unused_private_fields=true +cleanup.remove_unused_private_members=false +cleanup.remove_unused_private_methods=true +cleanup.remove_unused_private_types=true +cleanup.return_expression=false +cleanup.simplify_lambda_expression_and_method_ref=false +cleanup.single_used_field=false +cleanup.sort_members=false +cleanup.sort_members_all=false +cleanup.standard_comparison=false +cleanup.static_inner_class=false +cleanup.strictly_equal_or_different=false +cleanup.stringbuffer_to_stringbuilder=false +cleanup.stringbuilder=false +cleanup.stringbuilder_for_local_vars=true +cleanup.substring=false +cleanup.switch=false +cleanup.system_property=false +cleanup.system_property_boolean=false +cleanup.system_property_file_encoding=false +cleanup.system_property_file_separator=false +cleanup.system_property_line_separator=false +cleanup.system_property_path_separator=false +cleanup.ternary_operator=false +cleanup.try_with_resource=false +cleanup.unlooped_while=false +cleanup.unreachable_block=false +cleanup.use_anonymous_class_creation=false +cleanup.use_autoboxing=false +cleanup.use_blocks=true +cleanup.use_blocks_only_for_return_and_throw=false +cleanup.use_directly_map_method=false +cleanup.use_lambda=true +cleanup.use_parentheses_in_expressions=true +cleanup.use_string_is_blank=false +cleanup.use_this_for_non_static_field_access=true +cleanup.use_this_for_non_static_field_access_only_if_necessary=false +cleanup.use_this_for_non_static_method_access=true +cleanup.use_this_for_non_static_method_access_only_if_necessary=false +cleanup.use_unboxing=false +cleanup.use_var=false +cleanup.useless_continue=false +cleanup.useless_return=false +cleanup.valueof_rather_than_instantiation=false +cleanup_profile=_CAU-SE-Style +cleanup_settings_version=2 +eclipse.preferences.version=1 +editor_save_participant_org.eclipse.jdt.ui.postsavelistener.cleanup=true +formatter_profile=_CAU-SE-Style +formatter_settings_version=21 +org.eclipse.jdt.ui.ignorelowercasenames=true +org.eclipse.jdt.ui.importorder= +org.eclipse.jdt.ui.ondemandthreshold=99 +org.eclipse.jdt.ui.staticondemandthreshold=99 +sp_cleanup.add_all=false +sp_cleanup.add_default_serial_version_id=true +sp_cleanup.add_generated_serial_version_id=false +sp_cleanup.add_missing_annotations=true +sp_cleanup.add_missing_deprecated_annotations=true +sp_cleanup.add_missing_methods=false +sp_cleanup.add_missing_nls_tags=false +sp_cleanup.add_missing_override_annotations=true +sp_cleanup.add_missing_override_annotations_interface_methods=true +sp_cleanup.add_serial_version_id=false +sp_cleanup.always_use_blocks=true +sp_cleanup.always_use_parentheses_in_expressions=false +sp_cleanup.always_use_this_for_non_static_field_access=true +sp_cleanup.always_use_this_for_non_static_method_access=true +sp_cleanup.array_with_curly=false +sp_cleanup.arrays_fill=false +sp_cleanup.bitwise_conditional_expression=false +sp_cleanup.boolean_literal=false +sp_cleanup.boolean_value_rather_than_comparison=false +sp_cleanup.break_loop=false +sp_cleanup.collection_cloning=false +sp_cleanup.comparing_on_criteria=false +sp_cleanup.comparison_statement=false +sp_cleanup.controlflow_merge=false +sp_cleanup.convert_functional_interfaces=false +sp_cleanup.convert_to_enhanced_for_loop=false +sp_cleanup.convert_to_enhanced_for_loop_if_loop_var_used=false +sp_cleanup.convert_to_switch_expressions=false +sp_cleanup.correct_indentation=false +sp_cleanup.do_while_rather_than_while=false +sp_cleanup.double_negation=false +sp_cleanup.else_if=false +sp_cleanup.embedded_if=false +sp_cleanup.evaluate_nullable=false +sp_cleanup.extract_increment=false +sp_cleanup.format_source_code=true +sp_cleanup.format_source_code_changes_only=false +sp_cleanup.hash=false +sp_cleanup.if_condition=false +sp_cleanup.insert_inferred_type_arguments=false +sp_cleanup.instanceof=false +sp_cleanup.instanceof_keyword=false +sp_cleanup.invert_equals=false +sp_cleanup.join=false +sp_cleanup.lazy_logical_operator=false +sp_cleanup.make_local_variable_final=true +sp_cleanup.make_parameters_final=false +sp_cleanup.make_private_fields_final=true +sp_cleanup.make_type_abstract_if_missing_method=false +sp_cleanup.make_variable_declarations_final=true +sp_cleanup.map_cloning=false +sp_cleanup.merge_conditional_blocks=false +sp_cleanup.multi_catch=false +sp_cleanup.never_use_blocks=false +sp_cleanup.never_use_parentheses_in_expressions=true +sp_cleanup.no_string_creation=false +sp_cleanup.no_super=false +sp_cleanup.number_suffix=false +sp_cleanup.objects_equals=false +sp_cleanup.on_save_use_additional_actions=true +sp_cleanup.one_if_rather_than_duplicate_blocks_that_fall_through=false +sp_cleanup.operand_factorization=false +sp_cleanup.organize_imports=true +sp_cleanup.overridden_assignment=false +sp_cleanup.plain_replacement=false +sp_cleanup.precompile_regex=false +sp_cleanup.primitive_comparison=false +sp_cleanup.primitive_parsing=false +sp_cleanup.primitive_rather_than_wrapper=false +sp_cleanup.primitive_serialization=false +sp_cleanup.pull_out_if_from_if_else=false +sp_cleanup.pull_up_assignment=false +sp_cleanup.push_down_negation=false +sp_cleanup.qualify_static_field_accesses_with_declaring_class=false +sp_cleanup.qualify_static_member_accesses_through_instances_with_declaring_class=true +sp_cleanup.qualify_static_member_accesses_through_subtypes_with_declaring_class=true +sp_cleanup.qualify_static_member_accesses_with_declaring_class=true +sp_cleanup.qualify_static_method_accesses_with_declaring_class=false +sp_cleanup.reduce_indentation=false +sp_cleanup.redundant_comparator=false +sp_cleanup.redundant_falling_through_block_end=false +sp_cleanup.remove_private_constructors=true +sp_cleanup.remove_redundant_modifiers=false +sp_cleanup.remove_redundant_semicolons=true +sp_cleanup.remove_redundant_type_arguments=true +sp_cleanup.remove_trailing_whitespaces=false +sp_cleanup.remove_trailing_whitespaces_all=true +sp_cleanup.remove_trailing_whitespaces_ignore_empty=false +sp_cleanup.remove_unnecessary_array_creation=false +sp_cleanup.remove_unnecessary_casts=true +sp_cleanup.remove_unnecessary_nls_tags=false +sp_cleanup.remove_unused_imports=false +sp_cleanup.remove_unused_local_variables=false +sp_cleanup.remove_unused_private_fields=true +sp_cleanup.remove_unused_private_members=false +sp_cleanup.remove_unused_private_methods=true +sp_cleanup.remove_unused_private_types=true +sp_cleanup.return_expression=false +sp_cleanup.simplify_lambda_expression_and_method_ref=false +sp_cleanup.single_used_field=false +sp_cleanup.sort_members=false +sp_cleanup.sort_members_all=false +sp_cleanup.standard_comparison=false +sp_cleanup.static_inner_class=false +sp_cleanup.strictly_equal_or_different=false +sp_cleanup.stringbuffer_to_stringbuilder=false +sp_cleanup.stringbuilder=false +sp_cleanup.stringbuilder_for_local_vars=true +sp_cleanup.substring=false +sp_cleanup.switch=false +sp_cleanup.system_property=false +sp_cleanup.system_property_boolean=false +sp_cleanup.system_property_file_encoding=false +sp_cleanup.system_property_file_separator=false +sp_cleanup.system_property_line_separator=false +sp_cleanup.system_property_path_separator=false +sp_cleanup.ternary_operator=false +sp_cleanup.try_with_resource=true +sp_cleanup.unlooped_while=false +sp_cleanup.unreachable_block=false +sp_cleanup.use_anonymous_class_creation=false +sp_cleanup.use_autoboxing=false +sp_cleanup.use_blocks=true +sp_cleanup.use_blocks_only_for_return_and_throw=false +sp_cleanup.use_directly_map_method=false +sp_cleanup.use_lambda=true +sp_cleanup.use_parentheses_in_expressions=true +sp_cleanup.use_string_is_blank=false +sp_cleanup.use_this_for_non_static_field_access=true +sp_cleanup.use_this_for_non_static_field_access_only_if_necessary=false +sp_cleanup.use_this_for_non_static_method_access=true +sp_cleanup.use_this_for_non_static_method_access_only_if_necessary=false +sp_cleanup.use_unboxing=false +sp_cleanup.use_var=false +sp_cleanup.useless_continue=false +sp_cleanup.useless_return=false +sp_cleanup.valueof_rather_than_instantiation=false diff --git a/theodolite-benchmarks/uc1-beam/src/main/java/application/LogKeyValue.java b/theodolite-benchmarks/uc1-beam/src/main/java/application/LogKeyValue.java index 0cf4495325a417fa0369ae2c59bb071de250df4a..79566fd937b9c100663d426610b6ff476035ef87 100644 --- a/theodolite-benchmarks/uc1-beam/src/main/java/application/LogKeyValue.java +++ b/theodolite-benchmarks/uc1-beam/src/main/java/application/LogKeyValue.java @@ -18,7 +18,7 @@ public class LogKeyValue extends DoFn<KV<String, String>, KV<String, String>> { */ @ProcessElement public void processElement(@Element final KV<String, String> kv, - final OutputReceiver<KV<String, String>> out) { + final OutputReceiver<KV<String, String>> out) { if (LOGGER.isInfoEnabled()) { LOGGER.info("Key: {}, Value: {}", kv.getKey(), kv.getValue()); } diff --git a/theodolite-benchmarks/uc1-beam/src/main/java/application/Uc1BeamPipeline.java b/theodolite-benchmarks/uc1-beam/src/main/java/application/Uc1BeamPipeline.java index b146ce465cdb55faf632ddd09cf15d36575fbe4b..eaff08ac78cd18ddfd47eb2949ca13340ecc27b8 100644 --- a/theodolite-benchmarks/uc1-beam/src/main/java/application/Uc1BeamPipeline.java +++ b/theodolite-benchmarks/uc1-beam/src/main/java/application/Uc1BeamPipeline.java @@ -30,11 +30,11 @@ public final class Uc1BeamPipeline extends AbstractPipeline { cr.registerCoderForClass(ActivePowerRecord.class, AvroCoder.of(ActivePowerRecord.SCHEMA$)); // build KafkaConsumerConfig - final Map<String, Object> consumerConfig = buildConsumerConfig(); + final Map<String, Object> consumerConfig = this.buildConsumerConfig(); // Create Pipeline transformations final KafkaActivePowerTimestampReader kafka = - new KafkaActivePowerTimestampReader(bootstrapServer, inputTopic, consumerConfig); + new KafkaActivePowerTimestampReader(this.bootstrapServer, this.inputTopic, consumerConfig); final LogKeyValue logKeyValue = new LogKeyValue(); final MapToGson mapToGson = new MapToGson(); diff --git a/theodolite-benchmarks/uc2-beam-flink/src/main/java/application/Uc2BeamFlink.java b/theodolite-benchmarks/uc2-beam-flink/src/main/java/application/Uc2BeamFlink.java index e0a29ed513147b15e62c4e46336e792e7cf4de95..f5bb849e626444929e00b17b1324a08c41cb19a0 100644 --- a/theodolite-benchmarks/uc2-beam-flink/src/main/java/application/Uc2BeamFlink.java +++ b/theodolite-benchmarks/uc2-beam-flink/src/main/java/application/Uc2BeamFlink.java @@ -15,7 +15,7 @@ public final class Uc2BeamFlink extends AbstractBeamService { /** * Private constructor setting specific options for this use case. */ - private Uc2BeamFlink(final String[] args) { //NOPMD + private Uc2BeamFlink(final String[] args) { // NOPMD super(args); this.options.setRunner(FlinkRunner.class); } diff --git a/theodolite-benchmarks/uc2-beam-samza/.gitignore b/theodolite-benchmarks/uc2-beam-samza/.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..7bf05dd280fcc888467656ce1fbdeb65322c7ba8 --- /dev/null +++ b/theodolite-benchmarks/uc2-beam-samza/.gitignore @@ -0,0 +1 @@ +state \ No newline at end of file diff --git a/theodolite-benchmarks/uc2-beam/.settings/org.eclipse.jdt.ui.prefs b/theodolite-benchmarks/uc2-beam/.settings/org.eclipse.jdt.ui.prefs new file mode 100644 index 0000000000000000000000000000000000000000..43ccd3dbcdf80e49b8920c8fe242b35c3f604281 --- /dev/null +++ b/theodolite-benchmarks/uc2-beam/.settings/org.eclipse.jdt.ui.prefs @@ -0,0 +1,283 @@ +cleanup.add_all=false +cleanup.add_default_serial_version_id=true +cleanup.add_generated_serial_version_id=false +cleanup.add_missing_annotations=true +cleanup.add_missing_deprecated_annotations=true +cleanup.add_missing_methods=false +cleanup.add_missing_nls_tags=false +cleanup.add_missing_override_annotations=true +cleanup.add_missing_override_annotations_interface_methods=true +cleanup.add_serial_version_id=false +cleanup.always_use_blocks=true +cleanup.always_use_parentheses_in_expressions=false +cleanup.always_use_this_for_non_static_field_access=true +cleanup.always_use_this_for_non_static_method_access=true +cleanup.array_with_curly=false +cleanup.arrays_fill=false +cleanup.bitwise_conditional_expression=false +cleanup.boolean_literal=false +cleanup.boolean_value_rather_than_comparison=true +cleanup.break_loop=false +cleanup.collection_cloning=false +cleanup.comparing_on_criteria=false +cleanup.comparison_statement=false +cleanup.controlflow_merge=false +cleanup.convert_functional_interfaces=false +cleanup.convert_to_enhanced_for_loop=true +cleanup.convert_to_enhanced_for_loop_if_loop_var_used=true +cleanup.convert_to_switch_expressions=false +cleanup.correct_indentation=true +cleanup.do_while_rather_than_while=true +cleanup.double_negation=false +cleanup.else_if=false +cleanup.embedded_if=false +cleanup.evaluate_nullable=false +cleanup.extract_increment=false +cleanup.format_source_code=true +cleanup.format_source_code_changes_only=false +cleanup.hash=false +cleanup.if_condition=false +cleanup.insert_inferred_type_arguments=false +cleanup.instanceof=false +cleanup.instanceof_keyword=false +cleanup.invert_equals=false +cleanup.join=false +cleanup.lazy_logical_operator=false +cleanup.make_local_variable_final=true +cleanup.make_parameters_final=true +cleanup.make_private_fields_final=true +cleanup.make_type_abstract_if_missing_method=false +cleanup.make_variable_declarations_final=true +cleanup.map_cloning=false +cleanup.merge_conditional_blocks=false +cleanup.multi_catch=false +cleanup.never_use_blocks=false +cleanup.never_use_parentheses_in_expressions=true +cleanup.no_string_creation=false +cleanup.no_super=false +cleanup.number_suffix=false +cleanup.objects_equals=false +cleanup.one_if_rather_than_duplicate_blocks_that_fall_through=true +cleanup.operand_factorization=false +cleanup.organize_imports=true +cleanup.overridden_assignment=false +cleanup.plain_replacement=false +cleanup.precompile_regex=false +cleanup.primitive_comparison=false +cleanup.primitive_parsing=false +cleanup.primitive_rather_than_wrapper=true +cleanup.primitive_serialization=false +cleanup.pull_out_if_from_if_else=false +cleanup.pull_up_assignment=false +cleanup.push_down_negation=false +cleanup.qualify_static_field_accesses_with_declaring_class=false +cleanup.qualify_static_member_accesses_through_instances_with_declaring_class=true +cleanup.qualify_static_member_accesses_through_subtypes_with_declaring_class=true +cleanup.qualify_static_member_accesses_with_declaring_class=true +cleanup.qualify_static_method_accesses_with_declaring_class=false +cleanup.reduce_indentation=false +cleanup.redundant_comparator=false +cleanup.redundant_falling_through_block_end=false +cleanup.remove_private_constructors=true +cleanup.remove_redundant_modifiers=false +cleanup.remove_redundant_semicolons=true +cleanup.remove_redundant_type_arguments=true +cleanup.remove_trailing_whitespaces=true +cleanup.remove_trailing_whitespaces_all=true +cleanup.remove_trailing_whitespaces_ignore_empty=false +cleanup.remove_unnecessary_array_creation=false +cleanup.remove_unnecessary_casts=true +cleanup.remove_unnecessary_nls_tags=true +cleanup.remove_unused_imports=true +cleanup.remove_unused_local_variables=false +cleanup.remove_unused_private_fields=true +cleanup.remove_unused_private_members=false +cleanup.remove_unused_private_methods=true +cleanup.remove_unused_private_types=true +cleanup.return_expression=false +cleanup.simplify_lambda_expression_and_method_ref=false +cleanup.single_used_field=false +cleanup.sort_members=false +cleanup.sort_members_all=false +cleanup.standard_comparison=false +cleanup.static_inner_class=false +cleanup.strictly_equal_or_different=false +cleanup.stringbuffer_to_stringbuilder=false +cleanup.stringbuilder=false +cleanup.stringbuilder_for_local_vars=true +cleanup.substring=false +cleanup.switch=false +cleanup.system_property=false +cleanup.system_property_boolean=false +cleanup.system_property_file_encoding=false +cleanup.system_property_file_separator=false +cleanup.system_property_line_separator=false +cleanup.system_property_path_separator=false +cleanup.ternary_operator=false +cleanup.try_with_resource=false +cleanup.unlooped_while=false +cleanup.unreachable_block=false +cleanup.use_anonymous_class_creation=false +cleanup.use_autoboxing=false +cleanup.use_blocks=true +cleanup.use_blocks_only_for_return_and_throw=false +cleanup.use_directly_map_method=false +cleanup.use_lambda=true +cleanup.use_parentheses_in_expressions=true +cleanup.use_string_is_blank=false +cleanup.use_this_for_non_static_field_access=true +cleanup.use_this_for_non_static_field_access_only_if_necessary=false +cleanup.use_this_for_non_static_method_access=true +cleanup.use_this_for_non_static_method_access_only_if_necessary=false +cleanup.use_unboxing=false +cleanup.use_var=false +cleanup.useless_continue=false +cleanup.useless_return=false +cleanup.valueof_rather_than_instantiation=false +cleanup_profile=_CAU-SE-Style +cleanup_settings_version=2 +eclipse.preferences.version=1 +editor_save_participant_org.eclipse.jdt.ui.postsavelistener.cleanup=true +formatter_profile=_CAU-SE-Style +formatter_settings_version=21 +org.eclipse.jdt.ui.ignorelowercasenames=true +org.eclipse.jdt.ui.importorder= +org.eclipse.jdt.ui.ondemandthreshold=99 +org.eclipse.jdt.ui.staticondemandthreshold=99 +sp_cleanup.add_all=false +sp_cleanup.add_default_serial_version_id=true +sp_cleanup.add_generated_serial_version_id=false +sp_cleanup.add_missing_annotations=true +sp_cleanup.add_missing_deprecated_annotations=true +sp_cleanup.add_missing_methods=false +sp_cleanup.add_missing_nls_tags=false +sp_cleanup.add_missing_override_annotations=true +sp_cleanup.add_missing_override_annotations_interface_methods=true +sp_cleanup.add_serial_version_id=false +sp_cleanup.always_use_blocks=true +sp_cleanup.always_use_parentheses_in_expressions=false +sp_cleanup.always_use_this_for_non_static_field_access=false +sp_cleanup.always_use_this_for_non_static_method_access=false +sp_cleanup.array_with_curly=false +sp_cleanup.arrays_fill=false +sp_cleanup.bitwise_conditional_expression=false +sp_cleanup.boolean_literal=false +sp_cleanup.boolean_value_rather_than_comparison=false +sp_cleanup.break_loop=false +sp_cleanup.collection_cloning=false +sp_cleanup.comparing_on_criteria=false +sp_cleanup.comparison_statement=false +sp_cleanup.controlflow_merge=false +sp_cleanup.convert_functional_interfaces=false +sp_cleanup.convert_to_enhanced_for_loop=true +sp_cleanup.convert_to_enhanced_for_loop_if_loop_var_used=false +sp_cleanup.convert_to_switch_expressions=false +sp_cleanup.correct_indentation=true +sp_cleanup.do_while_rather_than_while=false +sp_cleanup.double_negation=false +sp_cleanup.else_if=true +sp_cleanup.embedded_if=false +sp_cleanup.evaluate_nullable=false +sp_cleanup.extract_increment=false +sp_cleanup.format_source_code=true +sp_cleanup.format_source_code_changes_only=false +sp_cleanup.hash=false +sp_cleanup.if_condition=false +sp_cleanup.insert_inferred_type_arguments=false +sp_cleanup.instanceof=false +sp_cleanup.instanceof_keyword=false +sp_cleanup.invert_equals=false +sp_cleanup.join=false +sp_cleanup.lazy_logical_operator=false +sp_cleanup.make_local_variable_final=true +sp_cleanup.make_parameters_final=false +sp_cleanup.make_private_fields_final=true +sp_cleanup.make_type_abstract_if_missing_method=false +sp_cleanup.make_variable_declarations_final=true +sp_cleanup.map_cloning=false +sp_cleanup.merge_conditional_blocks=false +sp_cleanup.multi_catch=false +sp_cleanup.never_use_blocks=false +sp_cleanup.never_use_parentheses_in_expressions=true +sp_cleanup.no_string_creation=false +sp_cleanup.no_super=false +sp_cleanup.number_suffix=false +sp_cleanup.objects_equals=false +sp_cleanup.on_save_use_additional_actions=true +sp_cleanup.one_if_rather_than_duplicate_blocks_that_fall_through=false +sp_cleanup.operand_factorization=false +sp_cleanup.organize_imports=true +sp_cleanup.overridden_assignment=false +sp_cleanup.plain_replacement=false +sp_cleanup.precompile_regex=false +sp_cleanup.primitive_comparison=false +sp_cleanup.primitive_parsing=false +sp_cleanup.primitive_rather_than_wrapper=false +sp_cleanup.primitive_serialization=false +sp_cleanup.pull_out_if_from_if_else=false +sp_cleanup.pull_up_assignment=false +sp_cleanup.push_down_negation=false +sp_cleanup.qualify_static_field_accesses_with_declaring_class=false +sp_cleanup.qualify_static_member_accesses_through_instances_with_declaring_class=true +sp_cleanup.qualify_static_member_accesses_through_subtypes_with_declaring_class=true +sp_cleanup.qualify_static_member_accesses_with_declaring_class=true +sp_cleanup.qualify_static_method_accesses_with_declaring_class=false +sp_cleanup.reduce_indentation=false +sp_cleanup.redundant_comparator=false +sp_cleanup.redundant_falling_through_block_end=false +sp_cleanup.remove_private_constructors=true +sp_cleanup.remove_redundant_modifiers=false +sp_cleanup.remove_redundant_semicolons=true +sp_cleanup.remove_redundant_type_arguments=true +sp_cleanup.remove_trailing_whitespaces=true +sp_cleanup.remove_trailing_whitespaces_all=true +sp_cleanup.remove_trailing_whitespaces_ignore_empty=false +sp_cleanup.remove_unnecessary_array_creation=false +sp_cleanup.remove_unnecessary_casts=true +sp_cleanup.remove_unnecessary_nls_tags=true +sp_cleanup.remove_unused_imports=true +sp_cleanup.remove_unused_local_variables=false +sp_cleanup.remove_unused_private_fields=true +sp_cleanup.remove_unused_private_members=false +sp_cleanup.remove_unused_private_methods=true +sp_cleanup.remove_unused_private_types=true +sp_cleanup.return_expression=false +sp_cleanup.simplify_lambda_expression_and_method_ref=false +sp_cleanup.single_used_field=false +sp_cleanup.sort_members=false +sp_cleanup.sort_members_all=false +sp_cleanup.standard_comparison=false +sp_cleanup.static_inner_class=false +sp_cleanup.strictly_equal_or_different=false +sp_cleanup.stringbuffer_to_stringbuilder=false +sp_cleanup.stringbuilder=false +sp_cleanup.stringbuilder_for_local_vars=true +sp_cleanup.substring=false +sp_cleanup.switch=false +sp_cleanup.system_property=false +sp_cleanup.system_property_boolean=false +sp_cleanup.system_property_file_encoding=false +sp_cleanup.system_property_file_separator=false +sp_cleanup.system_property_line_separator=false +sp_cleanup.system_property_path_separator=false +sp_cleanup.ternary_operator=false +sp_cleanup.try_with_resource=false +sp_cleanup.unlooped_while=false +sp_cleanup.unreachable_block=false +sp_cleanup.use_anonymous_class_creation=false +sp_cleanup.use_autoboxing=false +sp_cleanup.use_blocks=true +sp_cleanup.use_blocks_only_for_return_and_throw=false +sp_cleanup.use_directly_map_method=false +sp_cleanup.use_lambda=true +sp_cleanup.use_parentheses_in_expressions=true +sp_cleanup.use_string_is_blank=false +sp_cleanup.use_this_for_non_static_field_access=true +sp_cleanup.use_this_for_non_static_field_access_only_if_necessary=true +sp_cleanup.use_this_for_non_static_method_access=true +sp_cleanup.use_this_for_non_static_method_access_only_if_necessary=true +sp_cleanup.use_unboxing=false +sp_cleanup.use_var=false +sp_cleanup.useless_continue=false +sp_cleanup.useless_return=false +sp_cleanup.valueof_rather_than_instantiation=false diff --git a/theodolite-benchmarks/uc2-beam/src/main/java/application/StatsAggregation.java b/theodolite-benchmarks/uc2-beam/src/main/java/application/StatsAggregation.java index 270e42f6496754117ffdcffd0918b0b178deda13..688f6677ec6d74e063a07a20c079b783aa71c399 100644 --- a/theodolite-benchmarks/uc2-beam/src/main/java/application/StatsAggregation.java +++ b/theodolite-benchmarks/uc2-beam/src/main/java/application/StatsAggregation.java @@ -31,7 +31,7 @@ public class StatsAggregation extends CombineFn<ActivePowerRecord, StatsAccumula @Override public StatsAccumulator mergeAccumulators(final Iterable<StatsAccumulator> accums) { - final StatsAccumulator merged = this.createAccumulator(); + final StatsAccumulator merged = createAccumulator(); for (final StatsAccumulator accum : accums) { merged.addAll(accum.snapshot()); } diff --git a/theodolite-benchmarks/uc2-beam/src/main/java/application/StatsToString.java b/theodolite-benchmarks/uc2-beam/src/main/java/application/StatsToString.java index cedecd8df2ef00bf59215dba60f5f8d7cefe4fcc..9a73ae8e1681b2c350dee328cba7283cf3386fd7 100644 --- a/theodolite-benchmarks/uc2-beam/src/main/java/application/StatsToString.java +++ b/theodolite-benchmarks/uc2-beam/src/main/java/application/StatsToString.java @@ -14,4 +14,5 @@ public class StatsToString extends SimpleFunction<KV<String, Stats>, KV<String, public KV<String, String> apply(final KV<String, Stats> kv) { return KV.of(kv.getKey(), kv.getValue().toString()); } + } diff --git a/theodolite-benchmarks/uc2-beam/src/main/java/application/Uc2BeamPipeline.java b/theodolite-benchmarks/uc2-beam/src/main/java/application/Uc2BeamPipeline.java index e69ccce2981ace8f7c5ff48aae71ce0357dd19b2..02eec9868b0bbfbf6fd45206ff0d4092ac09e1ac 100644 --- a/theodolite-benchmarks/uc2-beam/src/main/java/application/Uc2BeamPipeline.java +++ b/theodolite-benchmarks/uc2-beam/src/main/java/application/Uc2BeamPipeline.java @@ -25,12 +25,7 @@ import titan.ccp.model.records.ActivePowerRecord; /** - * Implementation of the use case Database Storage using Apache Beam with the Flink Runner. To - * execute locally in standalone start Kafka, Zookeeper, the schema-registry and the workload - * generator using the delayed_startup.sh script. Start a Flink cluster and pass its REST adress - * using--flinkMaster as run parameter. To persist logs add - * ${workspace_loc:/uc1-application-samza/eclipseConsoleLogs.log} as Output File under Standard - * Input Output in Common in the Run Configuration Start via Eclipse Run. + * Implementation of the use case Downsampling using Apache Beam. */ public final class Uc2BeamPipeline extends AbstractPipeline { @@ -39,24 +34,20 @@ public final class Uc2BeamPipeline extends AbstractPipeline { // Additional needed variables final String outputTopic = config.getString(ConfigurationKeys.KAFKA_OUTPUT_TOPIC); - final int windowDurationMinutes = Integer.parseInt( - config.getString(ConfigurationKeys.KAFKA_WINDOW_DURATION_MINUTES)); - final Duration duration = Duration.standardMinutes(windowDurationMinutes); + final Duration duration = + Duration.standardMinutes(config.getInt(ConfigurationKeys.KAFKA_WINDOW_DURATION_MINUTES)); // Build kafka configuration final Map<String, Object> consumerConfig = buildConsumerConfig(); // Set Coders for Classes that will be distributed - final CoderRegistry cr = this.getCoderRegistry(); + final CoderRegistry cr = getCoderRegistry(); cr.registerCoderForClass(ActivePowerRecord.class, AvroCoder.of(ActivePowerRecord.SCHEMA$)); - cr.registerCoderForClass(StatsAggregation.class, - SerializableCoder.of(StatsAggregation.class)); + cr.registerCoderForClass(StatsAggregation.class, SerializableCoder.of(StatsAggregation.class)); cr.registerCoderForClass(StatsAccumulator.class, AvroCoder.of(StatsAccumulator.class)); - // Read from Kafka - final KafkaActivePowerTimestampReader - kafkaActivePowerRecordReader = + final KafkaActivePowerTimestampReader kafkaActivePowerRecordReader = new KafkaActivePowerTimestampReader(bootstrapServer, inputTopic, consumerConfig); // Transform into String @@ -69,15 +60,12 @@ public final class Uc2BeamPipeline extends AbstractPipeline { // Apply pipeline transformations this.apply(kafkaActivePowerRecordReader) // Apply a fixed window - .apply(Window - .<KV<String, ActivePowerRecord>>into(FixedWindows.of(duration))) + .apply(Window.<KV<String, ActivePowerRecord>>into(FixedWindows.of(duration))) // Aggregate per window for every key - .apply(Combine.<String, ActivePowerRecord, Stats>perKey( - new StatsAggregation())) + .apply(Combine.<String, ActivePowerRecord, Stats>perKey(new StatsAggregation())) .setCoder(KvCoder.of(StringUtf8Coder.of(), SerializableCoder.of(Stats.class))) // Map into correct output format - .apply(MapElements - .via(statsToString)) + .apply(MapElements.via(statsToString)) // Write to Kafka .apply(kafkaWriter); } diff --git a/theodolite-benchmarks/uc3-beam-samza/.gitignore b/theodolite-benchmarks/uc3-beam-samza/.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..7bf05dd280fcc888467656ce1fbdeb65322c7ba8 --- /dev/null +++ b/theodolite-benchmarks/uc3-beam-samza/.gitignore @@ -0,0 +1 @@ +state \ No newline at end of file diff --git a/theodolite-benchmarks/uc3-beam-samza/src/main/java/application/Uc3BeamSamza.java b/theodolite-benchmarks/uc3-beam-samza/src/main/java/application/Uc3BeamSamza.java index d25e692aa79465d0c68e9efafa503d2a9469158a..913293bd02cb16e14ee9d94ea0e161c74853e72a 100644 --- a/theodolite-benchmarks/uc3-beam-samza/src/main/java/application/Uc3BeamSamza.java +++ b/theodolite-benchmarks/uc3-beam-samza/src/main/java/application/Uc3BeamSamza.java @@ -5,7 +5,7 @@ import theodolite.commons.beam.AbstractBeamService; /** * Implementation of the use case Aggregation based on Time Attributes using Apache Beam with the - * Flink Runner. To run locally in standalone start Kafka, Zookeeper, the schema-registry and the + * Samza Runner. To run locally in standalone start Kafka, Zookeeper, the schema-registry and the * workload generator using the delayed_startup.sh script. And configure the Kafka, Zookeeper and * Schema Registry urls accordingly. Start a Flink cluster and pass its REST adress * using--flinkMaster as run parameter. To persist logs add diff --git a/theodolite-benchmarks/uc3-beam/.settings/org.eclipse.jdt.ui.prefs b/theodolite-benchmarks/uc3-beam/.settings/org.eclipse.jdt.ui.prefs new file mode 100644 index 0000000000000000000000000000000000000000..d71754b65d8da3cee7e6e440f49aa833ddabae10 --- /dev/null +++ b/theodolite-benchmarks/uc3-beam/.settings/org.eclipse.jdt.ui.prefs @@ -0,0 +1,283 @@ +cleanup.add_all=false +cleanup.add_default_serial_version_id=true +cleanup.add_generated_serial_version_id=false +cleanup.add_missing_annotations=true +cleanup.add_missing_deprecated_annotations=true +cleanup.add_missing_methods=false +cleanup.add_missing_nls_tags=false +cleanup.add_missing_override_annotations=true +cleanup.add_missing_override_annotations_interface_methods=true +cleanup.add_serial_version_id=false +cleanup.always_use_blocks=true +cleanup.always_use_parentheses_in_expressions=false +cleanup.always_use_this_for_non_static_field_access=true +cleanup.always_use_this_for_non_static_method_access=true +cleanup.array_with_curly=false +cleanup.arrays_fill=false +cleanup.bitwise_conditional_expression=false +cleanup.boolean_literal=false +cleanup.boolean_value_rather_than_comparison=true +cleanup.break_loop=false +cleanup.collection_cloning=false +cleanup.comparing_on_criteria=false +cleanup.comparison_statement=false +cleanup.controlflow_merge=false +cleanup.convert_functional_interfaces=false +cleanup.convert_to_enhanced_for_loop=true +cleanup.convert_to_enhanced_for_loop_if_loop_var_used=true +cleanup.convert_to_switch_expressions=false +cleanup.correct_indentation=true +cleanup.do_while_rather_than_while=true +cleanup.double_negation=false +cleanup.else_if=false +cleanup.embedded_if=false +cleanup.evaluate_nullable=false +cleanup.extract_increment=false +cleanup.format_source_code=true +cleanup.format_source_code_changes_only=false +cleanup.hash=false +cleanup.if_condition=false +cleanup.insert_inferred_type_arguments=false +cleanup.instanceof=false +cleanup.instanceof_keyword=false +cleanup.invert_equals=false +cleanup.join=false +cleanup.lazy_logical_operator=false +cleanup.make_local_variable_final=true +cleanup.make_parameters_final=true +cleanup.make_private_fields_final=true +cleanup.make_type_abstract_if_missing_method=false +cleanup.make_variable_declarations_final=true +cleanup.map_cloning=false +cleanup.merge_conditional_blocks=false +cleanup.multi_catch=false +cleanup.never_use_blocks=false +cleanup.never_use_parentheses_in_expressions=true +cleanup.no_string_creation=false +cleanup.no_super=false +cleanup.number_suffix=false +cleanup.objects_equals=false +cleanup.one_if_rather_than_duplicate_blocks_that_fall_through=true +cleanup.operand_factorization=false +cleanup.organize_imports=true +cleanup.overridden_assignment=false +cleanup.plain_replacement=false +cleanup.precompile_regex=false +cleanup.primitive_comparison=false +cleanup.primitive_parsing=false +cleanup.primitive_rather_than_wrapper=true +cleanup.primitive_serialization=false +cleanup.pull_out_if_from_if_else=false +cleanup.pull_up_assignment=false +cleanup.push_down_negation=false +cleanup.qualify_static_field_accesses_with_declaring_class=false +cleanup.qualify_static_member_accesses_through_instances_with_declaring_class=true +cleanup.qualify_static_member_accesses_through_subtypes_with_declaring_class=true +cleanup.qualify_static_member_accesses_with_declaring_class=true +cleanup.qualify_static_method_accesses_with_declaring_class=false +cleanup.reduce_indentation=false +cleanup.redundant_comparator=false +cleanup.redundant_falling_through_block_end=false +cleanup.remove_private_constructors=true +cleanup.remove_redundant_modifiers=false +cleanup.remove_redundant_semicolons=true +cleanup.remove_redundant_type_arguments=true +cleanup.remove_trailing_whitespaces=true +cleanup.remove_trailing_whitespaces_all=true +cleanup.remove_trailing_whitespaces_ignore_empty=false +cleanup.remove_unnecessary_array_creation=false +cleanup.remove_unnecessary_casts=true +cleanup.remove_unnecessary_nls_tags=true +cleanup.remove_unused_imports=true +cleanup.remove_unused_local_variables=false +cleanup.remove_unused_private_fields=true +cleanup.remove_unused_private_members=false +cleanup.remove_unused_private_methods=true +cleanup.remove_unused_private_types=true +cleanup.return_expression=false +cleanup.simplify_lambda_expression_and_method_ref=false +cleanup.single_used_field=false +cleanup.sort_members=false +cleanup.sort_members_all=false +cleanup.standard_comparison=false +cleanup.static_inner_class=false +cleanup.strictly_equal_or_different=false +cleanup.stringbuffer_to_stringbuilder=false +cleanup.stringbuilder=false +cleanup.stringbuilder_for_local_vars=true +cleanup.substring=false +cleanup.switch=false +cleanup.system_property=false +cleanup.system_property_boolean=false +cleanup.system_property_file_encoding=false +cleanup.system_property_file_separator=false +cleanup.system_property_line_separator=false +cleanup.system_property_path_separator=false +cleanup.ternary_operator=false +cleanup.try_with_resource=false +cleanup.unlooped_while=false +cleanup.unreachable_block=false +cleanup.use_anonymous_class_creation=false +cleanup.use_autoboxing=false +cleanup.use_blocks=true +cleanup.use_blocks_only_for_return_and_throw=false +cleanup.use_directly_map_method=false +cleanup.use_lambda=true +cleanup.use_parentheses_in_expressions=true +cleanup.use_string_is_blank=false +cleanup.use_this_for_non_static_field_access=true +cleanup.use_this_for_non_static_field_access_only_if_necessary=false +cleanup.use_this_for_non_static_method_access=true +cleanup.use_this_for_non_static_method_access_only_if_necessary=false +cleanup.use_unboxing=false +cleanup.use_var=false +cleanup.useless_continue=false +cleanup.useless_return=false +cleanup.valueof_rather_than_instantiation=false +cleanup_profile=_CAU-SE-Style +cleanup_settings_version=2 +eclipse.preferences.version=1 +editor_save_participant_org.eclipse.jdt.ui.postsavelistener.cleanup=true +formatter_profile=_CAU-SE-Style +formatter_settings_version=21 +org.eclipse.jdt.ui.ignorelowercasenames=true +org.eclipse.jdt.ui.importorder= +org.eclipse.jdt.ui.ondemandthreshold=99 +org.eclipse.jdt.ui.staticondemandthreshold=99 +sp_cleanup.add_all=false +sp_cleanup.add_default_serial_version_id=true +sp_cleanup.add_generated_serial_version_id=false +sp_cleanup.add_missing_annotations=true +sp_cleanup.add_missing_deprecated_annotations=true +sp_cleanup.add_missing_methods=false +sp_cleanup.add_missing_nls_tags=false +sp_cleanup.add_missing_override_annotations=true +sp_cleanup.add_missing_override_annotations_interface_methods=true +sp_cleanup.add_serial_version_id=false +sp_cleanup.always_use_blocks=true +sp_cleanup.always_use_parentheses_in_expressions=false +sp_cleanup.always_use_this_for_non_static_field_access=true +sp_cleanup.always_use_this_for_non_static_method_access=true +sp_cleanup.array_with_curly=false +sp_cleanup.arrays_fill=false +sp_cleanup.bitwise_conditional_expression=false +sp_cleanup.boolean_literal=false +sp_cleanup.boolean_value_rather_than_comparison=false +sp_cleanup.break_loop=false +sp_cleanup.collection_cloning=false +sp_cleanup.comparing_on_criteria=false +sp_cleanup.comparison_statement=false +sp_cleanup.controlflow_merge=false +sp_cleanup.convert_functional_interfaces=false +sp_cleanup.convert_to_enhanced_for_loop=false +sp_cleanup.convert_to_enhanced_for_loop_if_loop_var_used=false +sp_cleanup.convert_to_switch_expressions=false +sp_cleanup.correct_indentation=true +sp_cleanup.do_while_rather_than_while=false +sp_cleanup.double_negation=false +sp_cleanup.else_if=false +sp_cleanup.embedded_if=false +sp_cleanup.evaluate_nullable=false +sp_cleanup.extract_increment=false +sp_cleanup.format_source_code=true +sp_cleanup.format_source_code_changes_only=false +sp_cleanup.hash=false +sp_cleanup.if_condition=false +sp_cleanup.insert_inferred_type_arguments=false +sp_cleanup.instanceof=false +sp_cleanup.instanceof_keyword=false +sp_cleanup.invert_equals=false +sp_cleanup.join=false +sp_cleanup.lazy_logical_operator=false +sp_cleanup.make_local_variable_final=true +sp_cleanup.make_parameters_final=false +sp_cleanup.make_private_fields_final=true +sp_cleanup.make_type_abstract_if_missing_method=false +sp_cleanup.make_variable_declarations_final=true +sp_cleanup.map_cloning=false +sp_cleanup.merge_conditional_blocks=false +sp_cleanup.multi_catch=false +sp_cleanup.never_use_blocks=false +sp_cleanup.never_use_parentheses_in_expressions=true +sp_cleanup.no_string_creation=false +sp_cleanup.no_super=false +sp_cleanup.number_suffix=false +sp_cleanup.objects_equals=false +sp_cleanup.on_save_use_additional_actions=true +sp_cleanup.one_if_rather_than_duplicate_blocks_that_fall_through=false +sp_cleanup.operand_factorization=false +sp_cleanup.organize_imports=true +sp_cleanup.overridden_assignment=false +sp_cleanup.plain_replacement=false +sp_cleanup.precompile_regex=false +sp_cleanup.primitive_comparison=false +sp_cleanup.primitive_parsing=false +sp_cleanup.primitive_rather_than_wrapper=false +sp_cleanup.primitive_serialization=false +sp_cleanup.pull_out_if_from_if_else=false +sp_cleanup.pull_up_assignment=false +sp_cleanup.push_down_negation=false +sp_cleanup.qualify_static_field_accesses_with_declaring_class=false +sp_cleanup.qualify_static_member_accesses_through_instances_with_declaring_class=true +sp_cleanup.qualify_static_member_accesses_through_subtypes_with_declaring_class=true +sp_cleanup.qualify_static_member_accesses_with_declaring_class=true +sp_cleanup.qualify_static_method_accesses_with_declaring_class=false +sp_cleanup.reduce_indentation=false +sp_cleanup.redundant_comparator=false +sp_cleanup.redundant_falling_through_block_end=false +sp_cleanup.remove_private_constructors=true +sp_cleanup.remove_redundant_modifiers=false +sp_cleanup.remove_redundant_semicolons=true +sp_cleanup.remove_redundant_type_arguments=true +sp_cleanup.remove_trailing_whitespaces=true +sp_cleanup.remove_trailing_whitespaces_all=true +sp_cleanup.remove_trailing_whitespaces_ignore_empty=false +sp_cleanup.remove_unnecessary_array_creation=false +sp_cleanup.remove_unnecessary_casts=true +sp_cleanup.remove_unnecessary_nls_tags=false +sp_cleanup.remove_unused_imports=true +sp_cleanup.remove_unused_local_variables=false +sp_cleanup.remove_unused_private_fields=true +sp_cleanup.remove_unused_private_members=false +sp_cleanup.remove_unused_private_methods=true +sp_cleanup.remove_unused_private_types=true +sp_cleanup.return_expression=false +sp_cleanup.simplify_lambda_expression_and_method_ref=false +sp_cleanup.single_used_field=false +sp_cleanup.sort_members=false +sp_cleanup.sort_members_all=false +sp_cleanup.standard_comparison=false +sp_cleanup.static_inner_class=false +sp_cleanup.strictly_equal_or_different=false +sp_cleanup.stringbuffer_to_stringbuilder=false +sp_cleanup.stringbuilder=false +sp_cleanup.stringbuilder_for_local_vars=true +sp_cleanup.substring=false +sp_cleanup.switch=false +sp_cleanup.system_property=false +sp_cleanup.system_property_boolean=false +sp_cleanup.system_property_file_encoding=false +sp_cleanup.system_property_file_separator=false +sp_cleanup.system_property_line_separator=false +sp_cleanup.system_property_path_separator=false +sp_cleanup.ternary_operator=false +sp_cleanup.try_with_resource=true +sp_cleanup.unlooped_while=false +sp_cleanup.unreachable_block=false +sp_cleanup.use_anonymous_class_creation=false +sp_cleanup.use_autoboxing=false +sp_cleanup.use_blocks=true +sp_cleanup.use_blocks_only_for_return_and_throw=false +sp_cleanup.use_directly_map_method=false +sp_cleanup.use_lambda=true +sp_cleanup.use_parentheses_in_expressions=true +sp_cleanup.use_string_is_blank=false +sp_cleanup.use_this_for_non_static_field_access=true +sp_cleanup.use_this_for_non_static_field_access_only_if_necessary=false +sp_cleanup.use_this_for_non_static_method_access=true +sp_cleanup.use_this_for_non_static_method_access_only_if_necessary=false +sp_cleanup.use_unboxing=false +sp_cleanup.use_var=false +sp_cleanup.useless_continue=false +sp_cleanup.useless_return=false +sp_cleanup.valueof_rather_than_instantiation=false diff --git a/theodolite-benchmarks/uc3-beam/src/main/java/application/MapTimeFormat.java b/theodolite-benchmarks/uc3-beam/src/main/java/application/MapTimeFormat.java index bdfb09551fe66d18092495248e3745bd28c084d3..7d8897fb0fd76cd4eb145da6a7ce031f9f45d396 100644 --- a/theodolite-benchmarks/uc3-beam/src/main/java/application/MapTimeFormat.java +++ b/theodolite-benchmarks/uc3-beam/src/main/java/application/MapTimeFormat.java @@ -10,8 +10,8 @@ import titan.ccp.model.records.ActivePowerRecord; /** * Changes the time format to us europe/paris time. */ -public class MapTimeFormat extends SimpleFunction<KV<String, ActivePowerRecord>, KV<HourOfDayKey, - ActivePowerRecord>> { +public class MapTimeFormat + extends SimpleFunction<KV<String, ActivePowerRecord>, KV<HourOfDayKey, ActivePowerRecord>> { private static final long serialVersionUID = -6597391279968647035L; private final StatsKeyFactory<HourOfDayKey> keyFactory = new HourOfDayKeyFactory(); private final ZoneId zone = ZoneId.of("Europe/Paris"); @@ -21,7 +21,7 @@ public class MapTimeFormat extends SimpleFunction<KV<String, ActivePowerRecord>, final KV<String, ActivePowerRecord> kv) { final Instant instant = Instant.ofEpochMilli(kv.getValue().getTimestamp()); final LocalDateTime dateTime = LocalDateTime.ofInstant(instant, this.zone); - return KV.of(keyFactory.createKey(kv.getValue().getIdentifier(), dateTime), + return KV.of(this.keyFactory.createKey(kv.getValue().getIdentifier(), dateTime), kv.getValue()); } } diff --git a/theodolite-benchmarks/uc3-beam/src/main/java/application/Uc3BeamPipeline.java b/theodolite-benchmarks/uc3-beam/src/main/java/application/Uc3BeamPipeline.java index 7424a19fecef5a7b86d273a223c6f3f7a2562db9..c402271777dd63026e1f1fb36855dad1a72e1136 100644 --- a/theodolite-benchmarks/uc3-beam/src/main/java/application/Uc3BeamPipeline.java +++ b/theodolite-benchmarks/uc3-beam/src/main/java/application/Uc3BeamPipeline.java @@ -26,12 +26,7 @@ import titan.ccp.model.records.ActivePowerRecord; /** - * Implementation of the use case Database Storage using Apache Beam with the Flink Runner. To - * execute locally in standalone start Kafka, Zookeeper, the schema-registry and the workload - * generator using the delayed_startup.sh script. Start a Flink cluster and pass its REST adress - * using--flinkMaster as run parameter. To persist logs add - * ${workspace_loc:/uc1-application-samza/eclipseConsoleLogs.log} as Output File under Standard - * Input Output in Common in the Run Configuration Start via Eclipse Run. + * Implementation of the use case Aggregation based on Time Attributes using Apache Beam. */ public final class Uc3BeamPipeline extends AbstractPipeline { @@ -40,46 +35,41 @@ public final class Uc3BeamPipeline extends AbstractPipeline { // Additional needed variables final String outputTopic = config.getString(ConfigurationKeys.KAFKA_OUTPUT_TOPIC); - final int windowDurationDays = Integer.parseInt( - config.getString(ConfigurationKeys.AGGREGATION_DURATION_DAYS)); - final Duration duration = Duration.standardDays(windowDurationDays); + final Duration duration = + Duration.standardDays(config.getInt(ConfigurationKeys.AGGREGATION_DURATION_DAYS)); + final Duration aggregationAdvanceDuration = + Duration.standardDays(config.getInt(ConfigurationKeys.AGGREGATION_ADVANCE_DAYS)); + final Duration triggerDelay = + Duration.standardSeconds(config.getInt(ConfigurationKeys.TRIGGER_INTERVAL)); - final int aggregationAdvance = Integer.parseInt( - config.getString(ConfigurationKeys.AGGREGATION_ADVANCE_DAYS)); - final Duration aggregationAdvanceDuration = Duration.standardDays(aggregationAdvance); + // Build Kafka configuration + final Map<String, Object> consumerConfig = this.buildConsumerConfig(); - final int triggerInterval = Integer.parseInt( - config.getString(ConfigurationKeys.TRIGGER_INTERVAL)); - final Duration triggerDelay = Duration.standardSeconds(triggerInterval); - - // Build kafka configuration - final Map consumerConfig = buildConsumerConfig(); - - // Set Coders for Classes that will be distributed + // Set Coders for classes that will be distributed final CoderRegistry cr = this.getCoderRegistry(); registerCoders(cr); // Read from Kafka final KafkaActivePowerTimestampReader kafka = - new KafkaActivePowerTimestampReader(bootstrapServer, inputTopic, consumerConfig); + new KafkaActivePowerTimestampReader(this.bootstrapServer, this.inputTopic, consumerConfig); // Map the time format final MapTimeFormat mapTimeFormat = new MapTimeFormat(); - // get the stats per HourOfDay + // Get the stats per HourOfDay final HourOfDayWithStats hourOfDayWithStats = new HourOfDayWithStats(); // Write to Kafka final KafkaWriterTransformation<String> kafkaWriter = - new KafkaWriterTransformation<>(bootstrapServer, outputTopic, StringSerializer.class); + new KafkaWriterTransformation<>(this.bootstrapServer, outputTopic, StringSerializer.class); this.apply(kafka) // Map to correct time format .apply(MapElements.via(mapTimeFormat)) // Apply a sliding window .apply(Window - .<KV<HourOfDayKey, ActivePowerRecord>> - into(SlidingWindows.of(duration).every(aggregationAdvanceDuration)) + .<KV<HourOfDayKey, ActivePowerRecord>>into( + SlidingWindows.of(duration).every(aggregationAdvanceDuration)) .triggering(AfterWatermark.pastEndOfWindow() .withEarlyFirings( AfterProcessingTime.pastFirstElementInPane().plusDelayOf(triggerDelay))) @@ -87,13 +77,11 @@ public final class Uc3BeamPipeline extends AbstractPipeline { .accumulatingFiredPanes()) // Aggregate per window for every key - .apply(Combine.<HourOfDayKey, ActivePowerRecord, Stats>perKey( - new StatsAggregation())) + .apply(Combine.<HourOfDayKey, ActivePowerRecord, Stats>perKey(new StatsAggregation())) .setCoder(KvCoder.of(new HourOfDaykeyCoder(), SerializableCoder.of(Stats.class))) // Map into correct output format - .apply(MapElements - .via(hourOfDayWithStats)) + .apply(MapElements.via(hourOfDayWithStats)) // Write to Kafka .apply(kafkaWriter); } @@ -107,8 +95,7 @@ public final class Uc3BeamPipeline extends AbstractPipeline { private static void registerCoders(final CoderRegistry cr) { cr.registerCoderForClass(ActivePowerRecord.class, AvroCoder.of(ActivePowerRecord.SCHEMA$)); cr.registerCoderForClass(HourOfDayKey.class, new HourOfDaykeyCoder()); - cr.registerCoderForClass(StatsAggregation.class, - SerializableCoder.of(StatsAggregation.class)); + cr.registerCoderForClass(StatsAggregation.class, SerializableCoder.of(StatsAggregation.class)); cr.registerCoderForClass(StatsAccumulator.class, AvroCoder.of(StatsAccumulator.class)); } } diff --git a/theodolite-benchmarks/uc4-beam-samza/.gitignore b/theodolite-benchmarks/uc4-beam-samza/.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..7bf05dd280fcc888467656ce1fbdeb65322c7ba8 --- /dev/null +++ b/theodolite-benchmarks/uc4-beam-samza/.gitignore @@ -0,0 +1 @@ +state \ No newline at end of file diff --git a/theodolite-benchmarks/uc4-beam/.settings/org.eclipse.jdt.ui.prefs b/theodolite-benchmarks/uc4-beam/.settings/org.eclipse.jdt.ui.prefs new file mode 100644 index 0000000000000000000000000000000000000000..32e18c393f53a0b0b3207bb896ec0e4211b27bf0 --- /dev/null +++ b/theodolite-benchmarks/uc4-beam/.settings/org.eclipse.jdt.ui.prefs @@ -0,0 +1,284 @@ +cleanup.add_all=false +cleanup.add_default_serial_version_id=true +cleanup.add_generated_serial_version_id=false +cleanup.add_missing_annotations=true +cleanup.add_missing_deprecated_annotations=true +cleanup.add_missing_methods=false +cleanup.add_missing_nls_tags=false +cleanup.add_missing_override_annotations=true +cleanup.add_missing_override_annotations_interface_methods=true +cleanup.add_serial_version_id=false +cleanup.always_use_blocks=true +cleanup.always_use_parentheses_in_expressions=false +cleanup.always_use_this_for_non_static_field_access=true +cleanup.always_use_this_for_non_static_method_access=true +cleanup.array_with_curly=false +cleanup.arrays_fill=false +cleanup.bitwise_conditional_expression=false +cleanup.boolean_literal=false +cleanup.boolean_value_rather_than_comparison=true +cleanup.break_loop=false +cleanup.collection_cloning=false +cleanup.comparing_on_criteria=false +cleanup.comparison_statement=false +cleanup.controlflow_merge=false +cleanup.convert_functional_interfaces=false +cleanup.convert_to_enhanced_for_loop=true +cleanup.convert_to_enhanced_for_loop_if_loop_var_used=true +cleanup.convert_to_switch_expressions=false +cleanup.correct_indentation=true +cleanup.do_while_rather_than_while=true +cleanup.double_negation=false +cleanup.else_if=false +cleanup.embedded_if=false +cleanup.evaluate_nullable=false +cleanup.extract_increment=false +cleanup.format_source_code=true +cleanup.format_source_code_changes_only=false +cleanup.hash=false +cleanup.if_condition=false +cleanup.insert_inferred_type_arguments=false +cleanup.instanceof=false +cleanup.instanceof_keyword=false +cleanup.invert_equals=false +cleanup.join=false +cleanup.lazy_logical_operator=false +cleanup.make_local_variable_final=true +cleanup.make_parameters_final=true +cleanup.make_private_fields_final=true +cleanup.make_type_abstract_if_missing_method=false +cleanup.make_variable_declarations_final=true +cleanup.map_cloning=false +cleanup.merge_conditional_blocks=false +cleanup.multi_catch=false +cleanup.never_use_blocks=false +cleanup.never_use_parentheses_in_expressions=true +cleanup.no_string_creation=false +cleanup.no_super=false +cleanup.number_suffix=false +cleanup.objects_equals=false +cleanup.one_if_rather_than_duplicate_blocks_that_fall_through=true +cleanup.operand_factorization=false +cleanup.organize_imports=true +cleanup.overridden_assignment=false +cleanup.plain_replacement=false +cleanup.precompile_regex=false +cleanup.primitive_comparison=false +cleanup.primitive_parsing=false +cleanup.primitive_rather_than_wrapper=true +cleanup.primitive_serialization=false +cleanup.pull_out_if_from_if_else=false +cleanup.pull_up_assignment=false +cleanup.push_down_negation=false +cleanup.qualify_static_field_accesses_with_declaring_class=false +cleanup.qualify_static_member_accesses_through_instances_with_declaring_class=true +cleanup.qualify_static_member_accesses_through_subtypes_with_declaring_class=true +cleanup.qualify_static_member_accesses_with_declaring_class=true +cleanup.qualify_static_method_accesses_with_declaring_class=false +cleanup.reduce_indentation=false +cleanup.redundant_comparator=false +cleanup.redundant_falling_through_block_end=false +cleanup.remove_private_constructors=true +cleanup.remove_redundant_modifiers=false +cleanup.remove_redundant_semicolons=true +cleanup.remove_redundant_type_arguments=true +cleanup.remove_trailing_whitespaces=true +cleanup.remove_trailing_whitespaces_all=true +cleanup.remove_trailing_whitespaces_ignore_empty=false +cleanup.remove_unnecessary_array_creation=false +cleanup.remove_unnecessary_casts=true +cleanup.remove_unnecessary_nls_tags=true +cleanup.remove_unused_imports=true +cleanup.remove_unused_local_variables=false +cleanup.remove_unused_private_fields=true +cleanup.remove_unused_private_members=false +cleanup.remove_unused_private_methods=true +cleanup.remove_unused_private_types=true +cleanup.return_expression=false +cleanup.simplify_lambda_expression_and_method_ref=false +cleanup.single_used_field=false +cleanup.sort_members=false +cleanup.sort_members_all=false +cleanup.standard_comparison=false +cleanup.static_inner_class=false +cleanup.strictly_equal_or_different=false +cleanup.stringbuffer_to_stringbuilder=false +cleanup.stringbuilder=false +cleanup.stringbuilder_for_local_vars=true +cleanup.substring=false +cleanup.switch=false +cleanup.system_property=false +cleanup.system_property_boolean=false +cleanup.system_property_file_encoding=false +cleanup.system_property_file_separator=false +cleanup.system_property_line_separator=false +cleanup.system_property_path_separator=false +cleanup.ternary_operator=false +cleanup.try_with_resource=false +cleanup.unlooped_while=false +cleanup.unreachable_block=false +cleanup.use_anonymous_class_creation=false +cleanup.use_autoboxing=false +cleanup.use_blocks=true +cleanup.use_blocks_only_for_return_and_throw=false +cleanup.use_directly_map_method=false +cleanup.use_lambda=true +cleanup.use_parentheses_in_expressions=true +cleanup.use_string_is_blank=false +cleanup.use_this_for_non_static_field_access=true +cleanup.use_this_for_non_static_field_access_only_if_necessary=false +cleanup.use_this_for_non_static_method_access=true +cleanup.use_this_for_non_static_method_access_only_if_necessary=false +cleanup.use_unboxing=false +cleanup.use_var=false +cleanup.useless_continue=false +cleanup.useless_return=false +cleanup.valueof_rather_than_instantiation=false +cleanup_profile=_CAU-SE-Style +cleanup_settings_version=2 +eclipse.preferences.version=1 +editor_save_participant_org.eclipse.jdt.ui.postsavelistener.cleanup=true +formatter_profile=_CAU-SE-Style +formatter_settings_version=21 +org.eclipse.jdt.ui.ignorelowercasenames=true +org.eclipse.jdt.ui.importorder= +org.eclipse.jdt.ui.ondemandthreshold=99 +org.eclipse.jdt.ui.staticondemandthreshold=99 +org.eclipse.jdt.ui.text.custom_code_templates= +sp_cleanup.add_all=false +sp_cleanup.add_default_serial_version_id=true +sp_cleanup.add_generated_serial_version_id=false +sp_cleanup.add_missing_annotations=true +sp_cleanup.add_missing_deprecated_annotations=true +sp_cleanup.add_missing_methods=false +sp_cleanup.add_missing_nls_tags=false +sp_cleanup.add_missing_override_annotations=true +sp_cleanup.add_missing_override_annotations_interface_methods=true +sp_cleanup.add_serial_version_id=false +sp_cleanup.always_use_blocks=true +sp_cleanup.always_use_parentheses_in_expressions=false +sp_cleanup.always_use_this_for_non_static_field_access=true +sp_cleanup.always_use_this_for_non_static_method_access=true +sp_cleanup.array_with_curly=false +sp_cleanup.arrays_fill=false +sp_cleanup.bitwise_conditional_expression=false +sp_cleanup.boolean_literal=false +sp_cleanup.boolean_value_rather_than_comparison=false +sp_cleanup.break_loop=false +sp_cleanup.collection_cloning=false +sp_cleanup.comparing_on_criteria=false +sp_cleanup.comparison_statement=false +sp_cleanup.controlflow_merge=false +sp_cleanup.convert_functional_interfaces=false +sp_cleanup.convert_to_enhanced_for_loop=false +sp_cleanup.convert_to_enhanced_for_loop_if_loop_var_used=false +sp_cleanup.convert_to_switch_expressions=false +sp_cleanup.correct_indentation=true +sp_cleanup.do_while_rather_than_while=false +sp_cleanup.double_negation=false +sp_cleanup.else_if=false +sp_cleanup.embedded_if=false +sp_cleanup.evaluate_nullable=false +sp_cleanup.extract_increment=false +sp_cleanup.format_source_code=true +sp_cleanup.format_source_code_changes_only=false +sp_cleanup.hash=false +sp_cleanup.if_condition=false +sp_cleanup.insert_inferred_type_arguments=false +sp_cleanup.instanceof=false +sp_cleanup.instanceof_keyword=false +sp_cleanup.invert_equals=false +sp_cleanup.join=false +sp_cleanup.lazy_logical_operator=false +sp_cleanup.make_local_variable_final=true +sp_cleanup.make_parameters_final=false +sp_cleanup.make_private_fields_final=true +sp_cleanup.make_type_abstract_if_missing_method=false +sp_cleanup.make_variable_declarations_final=true +sp_cleanup.map_cloning=false +sp_cleanup.merge_conditional_blocks=false +sp_cleanup.multi_catch=false +sp_cleanup.never_use_blocks=false +sp_cleanup.never_use_parentheses_in_expressions=true +sp_cleanup.no_string_creation=false +sp_cleanup.no_super=false +sp_cleanup.number_suffix=false +sp_cleanup.objects_equals=false +sp_cleanup.on_save_use_additional_actions=true +sp_cleanup.one_if_rather_than_duplicate_blocks_that_fall_through=false +sp_cleanup.operand_factorization=false +sp_cleanup.organize_imports=true +sp_cleanup.overridden_assignment=false +sp_cleanup.plain_replacement=false +sp_cleanup.precompile_regex=false +sp_cleanup.primitive_comparison=false +sp_cleanup.primitive_parsing=false +sp_cleanup.primitive_rather_than_wrapper=false +sp_cleanup.primitive_serialization=false +sp_cleanup.pull_out_if_from_if_else=false +sp_cleanup.pull_up_assignment=false +sp_cleanup.push_down_negation=false +sp_cleanup.qualify_static_field_accesses_with_declaring_class=false +sp_cleanup.qualify_static_member_accesses_through_instances_with_declaring_class=true +sp_cleanup.qualify_static_member_accesses_through_subtypes_with_declaring_class=true +sp_cleanup.qualify_static_member_accesses_with_declaring_class=true +sp_cleanup.qualify_static_method_accesses_with_declaring_class=false +sp_cleanup.reduce_indentation=false +sp_cleanup.redundant_comparator=false +sp_cleanup.redundant_falling_through_block_end=false +sp_cleanup.remove_private_constructors=true +sp_cleanup.remove_redundant_modifiers=false +sp_cleanup.remove_redundant_semicolons=false +sp_cleanup.remove_redundant_type_arguments=false +sp_cleanup.remove_trailing_whitespaces=true +sp_cleanup.remove_trailing_whitespaces_all=true +sp_cleanup.remove_trailing_whitespaces_ignore_empty=false +sp_cleanup.remove_unnecessary_array_creation=false +sp_cleanup.remove_unnecessary_casts=true +sp_cleanup.remove_unnecessary_nls_tags=false +sp_cleanup.remove_unused_imports=true +sp_cleanup.remove_unused_local_variables=false +sp_cleanup.remove_unused_private_fields=true +sp_cleanup.remove_unused_private_members=false +sp_cleanup.remove_unused_private_methods=true +sp_cleanup.remove_unused_private_types=true +sp_cleanup.return_expression=false +sp_cleanup.simplify_lambda_expression_and_method_ref=false +sp_cleanup.single_used_field=false +sp_cleanup.sort_members=false +sp_cleanup.sort_members_all=false +sp_cleanup.standard_comparison=false +sp_cleanup.static_inner_class=false +sp_cleanup.strictly_equal_or_different=false +sp_cleanup.stringbuffer_to_stringbuilder=false +sp_cleanup.stringbuilder=false +sp_cleanup.stringbuilder_for_local_vars=true +sp_cleanup.substring=false +sp_cleanup.switch=false +sp_cleanup.system_property=false +sp_cleanup.system_property_boolean=false +sp_cleanup.system_property_file_encoding=false +sp_cleanup.system_property_file_separator=false +sp_cleanup.system_property_line_separator=false +sp_cleanup.system_property_path_separator=false +sp_cleanup.ternary_operator=false +sp_cleanup.try_with_resource=false +sp_cleanup.unlooped_while=false +sp_cleanup.unreachable_block=false +sp_cleanup.use_anonymous_class_creation=false +sp_cleanup.use_autoboxing=false +sp_cleanup.use_blocks=true +sp_cleanup.use_blocks_only_for_return_and_throw=false +sp_cleanup.use_directly_map_method=false +sp_cleanup.use_lambda=true +sp_cleanup.use_parentheses_in_expressions=true +sp_cleanup.use_string_is_blank=false +sp_cleanup.use_this_for_non_static_field_access=true +sp_cleanup.use_this_for_non_static_field_access_only_if_necessary=false +sp_cleanup.use_this_for_non_static_method_access=true +sp_cleanup.use_this_for_non_static_method_access_only_if_necessary=false +sp_cleanup.use_unboxing=false +sp_cleanup.use_var=false +sp_cleanup.useless_continue=false +sp_cleanup.useless_return=false +sp_cleanup.valueof_rather_than_instantiation=false diff --git a/theodolite-benchmarks/uc4-beam/src/main/java/application/AggregatedActivePowerRecordEventTimePolicy.java b/theodolite-benchmarks/uc4-beam/src/main/java/application/AggregatedActivePowerRecordEventTimePolicy.java index 245092323fd7edf4929fcb906a8713aa5aa3679c..dad9eca7d8d50d1b85932ddaa7ffc99418a4b759 100644 --- a/theodolite-benchmarks/uc4-beam/src/main/java/application/AggregatedActivePowerRecordEventTimePolicy.java +++ b/theodolite-benchmarks/uc4-beam/src/main/java/application/AggregatedActivePowerRecordEventTimePolicy.java @@ -1,7 +1,6 @@ package application; import java.util.Optional; - import org.apache.beam.sdk.io.kafka.KafkaRecord; import org.apache.beam.sdk.io.kafka.TimestampPolicy; import org.apache.beam.sdk.transforms.windowing.BoundedWindow; @@ -20,7 +19,6 @@ public class AggregatedActivePowerRecordEventTimePolicy this.currentWatermark = previousWatermark.orElse(BoundedWindow.TIMESTAMP_MIN_VALUE); } - @Override public Instant getTimestampForRecord(final PartitionContext ctx, final KafkaRecord<String, AggregatedActivePowerRecord> record) { diff --git a/theodolite-benchmarks/uc4-beam/src/main/java/application/AggregatedToActive.java b/theodolite-benchmarks/uc4-beam/src/main/java/application/AggregatedToActive.java index dbf32a5a49209b929cb24997110d4a52a916fdba..bddd43e1e09c54bcfc85e5cbb65d1a6487f53438 100644 --- a/theodolite-benchmarks/uc4-beam/src/main/java/application/AggregatedToActive.java +++ b/theodolite-benchmarks/uc4-beam/src/main/java/application/AggregatedToActive.java @@ -8,8 +8,8 @@ import titan.ccp.model.records.AggregatedActivePowerRecord; /** * Converts AggregatedActivePowerRecord to ActivePowerRecord. */ -public class AggregatedToActive extends SimpleFunction<KV<String, AggregatedActivePowerRecord>, - KV<String, ActivePowerRecord>> { +public class AggregatedToActive + extends SimpleFunction<KV<String, AggregatedActivePowerRecord>, KV<String, ActivePowerRecord>> { private static final long serialVersionUID = -8275252527964065889L; diff --git a/theodolite-benchmarks/uc4-beam/src/main/java/application/FilterEvents.java b/theodolite-benchmarks/uc4-beam/src/main/java/application/FilterEvents.java index d5b9b5c1bcc878f35b36936d74673a7c268770a1..3588443393fdef2e0fd1bf5f1e7c497e5030cf77 100644 --- a/theodolite-benchmarks/uc4-beam/src/main/java/application/FilterEvents.java +++ b/theodolite-benchmarks/uc4-beam/src/main/java/application/FilterEvents.java @@ -5,8 +5,8 @@ import org.apache.beam.sdk.values.KV; import titan.ccp.configuration.events.Event; /** - * Filters for {@code Event.SENSOR_REGISTRY_CHANGED} and - * {@code Event.SENSOR_REGISTRY_STATUS} events. + * Filters for {@code Event.SENSOR_REGISTRY_CHANGED} and {@code Event.SENSOR_REGISTRY_STATUS} + * events. */ public class FilterEvents implements SerializableFunction<KV<Event, String>, Boolean> { private static final long serialVersionUID = -2233447357614891559L; diff --git a/theodolite-benchmarks/uc4-beam/src/main/java/application/GenerateParentsFn.java b/theodolite-benchmarks/uc4-beam/src/main/java/application/GenerateParentsFn.java index f58ebde52de5da2a07a5280d1e361a524ca6a2e7..68cf551af9c681c586ebc6026c043ae8c9befbc5 100644 --- a/theodolite-benchmarks/uc4-beam/src/main/java/application/GenerateParentsFn.java +++ b/theodolite-benchmarks/uc4-beam/src/main/java/application/GenerateParentsFn.java @@ -20,11 +20,11 @@ import titan.ccp.model.sensorregistry.SensorRegistry; */ public class GenerateParentsFn extends DoFn<KV<Event, String>, KV<String, Set<String>>> { - private static final long serialVersionUID = 958270648688932091L; /** * Transforms a parent [children] map of sensors to a child [parents] map. + * * @param kv input map. * @param out outputstream. */ diff --git a/theodolite-benchmarks/uc4-beam/src/main/java/application/RecordAggregation.java b/theodolite-benchmarks/uc4-beam/src/main/java/application/RecordAggregation.java index b2ddf296acfe8d98b4a96ad8f1d23263d5b3f259..16fd411b44cc1f955b255be870215ac120bce193 100644 --- a/theodolite-benchmarks/uc4-beam/src/main/java/application/RecordAggregation.java +++ b/theodolite-benchmarks/uc4-beam/src/main/java/application/RecordAggregation.java @@ -15,7 +15,6 @@ import titan.ccp.model.records.AggregatedActivePowerRecord; public class RecordAggregation extends CombineFn<ActivePowerRecord, RecordAggregation.Accum, AggregatedActivePowerRecord> { - private static final long serialVersionUID = 4362213539553233529L; /** diff --git a/theodolite-benchmarks/uc4-beam/src/main/java/application/SetIdForAggregated.java b/theodolite-benchmarks/uc4-beam/src/main/java/application/SetIdForAggregated.java index 58518eefb4b3a321e9fcd33db45eb8e3ab562ff0..0279a26ed925408b5383be50a202f5c88cea53aa 100644 --- a/theodolite-benchmarks/uc4-beam/src/main/java/application/SetIdForAggregated.java +++ b/theodolite-benchmarks/uc4-beam/src/main/java/application/SetIdForAggregated.java @@ -7,8 +7,8 @@ import titan.ccp.model.records.AggregatedActivePowerRecord; /** * Sets the identifier for new {@link AggregatedActivePowerRecord}. */ -public class SetIdForAggregated extends SimpleFunction<KV<String, AggregatedActivePowerRecord>, - KV<String, AggregatedActivePowerRecord>> { +public class SetIdForAggregated extends + SimpleFunction<KV<String, AggregatedActivePowerRecord>, KV<String, AggregatedActivePowerRecord>> { // NOCS private static final long serialVersionUID = 2148522605294086982L; @Override diff --git a/theodolite-benchmarks/uc4-beam/src/main/java/application/SetKeyToGroup.java b/theodolite-benchmarks/uc4-beam/src/main/java/application/SetKeyToGroup.java index c44028eb6c793573f7ceb8187759b716aafe17be..7d8dc70583fb45e02a5a8091b92d724bb22b4a78 100644 --- a/theodolite-benchmarks/uc4-beam/src/main/java/application/SetKeyToGroup.java +++ b/theodolite-benchmarks/uc4-beam/src/main/java/application/SetKeyToGroup.java @@ -7,8 +7,8 @@ import titan.ccp.model.records.ActivePowerRecord; /** * Set the Key for a group of {@code ActivePowerRecords} to their Parent. */ -public class SetKeyToGroup extends SimpleFunction<KV<SensorParentKey, - ActivePowerRecord>, KV<String, ActivePowerRecord>> { +public class SetKeyToGroup + extends SimpleFunction<KV<SensorParentKey, ActivePowerRecord>, KV<String, ActivePowerRecord>> { private static final long serialVersionUID = 790215050768527L; @@ -17,4 +17,4 @@ public class SetKeyToGroup extends SimpleFunction<KV<SensorParentKey, final KV<SensorParentKey, ActivePowerRecord> kv) { return KV.of(kv.getKey().getParent(), kv.getValue()); } -} \ No newline at end of file +} diff --git a/theodolite-benchmarks/uc4-beam/src/main/java/application/Uc4BeamPipeline.java b/theodolite-benchmarks/uc4-beam/src/main/java/application/Uc4BeamPipeline.java index 78083db125f93a6e48878d07a293aa3a227f122d..7179fe5da937280d5baf72cd73cc392ef15a60e0 100644 --- a/theodolite-benchmarks/uc4-beam/src/main/java/application/Uc4BeamPipeline.java +++ b/theodolite-benchmarks/uc4-beam/src/main/java/application/Uc4BeamPipeline.java @@ -1,4 +1,4 @@ -package application; //NOPMD +package application; // NOPMD import com.google.common.math.StatsAccumulator; import java.util.HashMap; @@ -47,16 +47,11 @@ import titan.ccp.model.records.ActivePowerRecord; import titan.ccp.model.records.AggregatedActivePowerRecord; /** - * Implementation of the use case Database Storage using Apache Beam with the Flink Runner. To - * execute locally in standalone start Kafka, Zookeeper, the schema-registry and the workload - * generator using the delayed_startup.sh script. Start a Flink cluster and pass its REST address - * using--flinkMaster as run parameter. To persist logs add - * ${workspace_loc:/uc1-application-samza/eclipseConsoleLogs.log} as Output File under Standard - * Input Output in Common in the Run Configuration Start via Eclipse Run. + * Implementation of the use case Hierarchical Aggregation using Apache Beam. */ public final class Uc4BeamPipeline extends AbstractPipeline { - protected Uc4BeamPipeline(final PipelineOptions options, final Configuration config) { //NOPMD + protected Uc4BeamPipeline(final PipelineOptions options, final Configuration config) { // NOPMD super(options, config); // Additional needed variables @@ -64,21 +59,16 @@ public final class Uc4BeamPipeline extends AbstractPipeline { final String outputTopic = config.getString(ConfigurationKeys.KAFKA_OUTPUT_TOPIC); final String configurationTopic = config.getString(ConfigurationKeys.KAFKA_CONFIGURATION_TOPIC); - final int windowDurationMinutes = Integer.parseInt( - config.getString(ConfigurationKeys.KAFKA_WINDOW_DURATION_MINUTES)); - final Duration duration = Duration.standardSeconds(windowDurationMinutes); - - final int triggerInterval = Integer.parseInt( - config.getString(ConfigurationKeys.TRIGGER_INTERVAL)); - final Duration triggerDelay = Duration.standardSeconds(triggerInterval); - - final int grace = Integer.parseInt( - config.getString(ConfigurationKeys.GRACE_PERIOD_MS)); - final Duration gracePeriod = Duration.standardSeconds(grace); + final Duration duration = + Duration.standardSeconds(config.getInt(ConfigurationKeys.KAFKA_WINDOW_DURATION_MINUTES)); + final Duration triggerDelay = + Duration.standardSeconds(config.getInt(ConfigurationKeys.TRIGGER_INTERVAL)); + final Duration gracePeriod = + Duration.standardSeconds(config.getInt(ConfigurationKeys.GRACE_PERIOD_MS)); // Build kafka configuration - final Map<String, Object> consumerConfig = buildConsumerConfig(); - final Map<String, Object> configurationConfig = configurationConfig(config); + final Map<String, Object> consumerConfig = this.buildConsumerConfig(); + final Map<String, Object> configurationConfig = this.configurationConfig(config); // Set Coders for Classes that will be distributed final CoderRegistry cr = this.getCoderRegistry(); @@ -86,15 +76,13 @@ public final class Uc4BeamPipeline extends AbstractPipeline { // Read from Kafka // ActivePowerRecords - final KafkaActivePowerTimestampReader - kafkaActivePowerRecordReader = - new KafkaActivePowerTimestampReader(bootstrapServer, inputTopic, consumerConfig); + final KafkaActivePowerTimestampReader kafkaActivePowerRecordReader = + new KafkaActivePowerTimestampReader(this.bootstrapServer, this.inputTopic, consumerConfig); - //Configuration Events - final KafkaGenericReader<Event, String> - kafkaConfigurationReader = + // Configuration Events + final KafkaGenericReader<Event, String> kafkaConfigurationReader = new KafkaGenericReader<>( - bootstrapServer, configurationTopic, configurationConfig, + this.bootstrapServer, configurationTopic, configurationConfig, EventDeserializer.class, StringDeserializer.class); // Transform into AggregatedActivePowerRecords into ActivePowerRecords @@ -103,11 +91,11 @@ public final class Uc4BeamPipeline extends AbstractPipeline { // Write to Kafka final KafkaWriterTransformation<AggregatedActivePowerRecord> kafkaOutput = new KafkaWriterTransformation<>( - bootstrapServer, outputTopic, AggregatedActivePowerRecordSerializer.class); + this.bootstrapServer, outputTopic, AggregatedActivePowerRecordSerializer.class); final KafkaWriterTransformation<AggregatedActivePowerRecord> kafkaFeedback = new KafkaWriterTransformation<>( - bootstrapServer, feedbackTopic, AggregatedActivePowerRecordSerializer.class); + this.bootstrapServer, feedbackTopic, AggregatedActivePowerRecordSerializer.class); // Apply pipeline transformations final PCollection<KV<String, ActivePowerRecord>> values = this @@ -124,7 +112,7 @@ public final class Uc4BeamPipeline extends AbstractPipeline { // Read the results of earlier aggregations. final PCollection<KV<String, ActivePowerRecord>> aggregationsInput = this .apply("Read aggregation results", KafkaIO.<String, AggregatedActivePowerRecord>read() - .withBootstrapServers(bootstrapServer) + .withBootstrapServers(this.bootstrapServer) .withTopic(feedbackTopic) .withKeyDeserializer(StringDeserializer.class) .withValueDeserializer(AggregatedActivePowerRecordDeserializer.class) @@ -187,9 +175,9 @@ public final class Uc4BeamPipeline extends AbstractPipeline { // Build pairs of every sensor reading and parent final PCollection<KV<SensorParentKey, ActivePowerRecord>> flatMappedValues = inputCollection.apply( - "Duplicate as flatMap", - ParDo.of(new DuplicateAsFlatMap(childParentPairMap)) - .withSideInputs(childParentPairMap)) + "Duplicate as flatMap", + ParDo.of(new DuplicateAsFlatMap(childParentPairMap)) + .withSideInputs(childParentPairMap)) .apply("Filter only latest changes", Latest.perKey()) .apply("Filter out null values", Filter.by(filterNullValues)); @@ -198,8 +186,7 @@ public final class Uc4BeamPipeline extends AbstractPipeline { final SetKeyToGroup setKeyToGroup = new SetKeyToGroup(); // Aggregate for every sensor group of the current level - final PCollection<KV<String, AggregatedActivePowerRecord>> - aggregations = flatMappedValues + final PCollection<KV<String, AggregatedActivePowerRecord>> aggregations = flatMappedValues .apply("Set key to group", MapElements.via(setKeyToGroup)) // Reset trigger to avoid synchronized processing time .apply("Reset trigger for aggregations", Window diff --git a/theodolite-benchmarks/uc4-beam/src/main/java/application/UpdateChildParentPairs.java b/theodolite-benchmarks/uc4-beam/src/main/java/application/UpdateChildParentPairs.java index 86c449d3e42569c55e0e4c9e70a1fe7dee6198a2..8692be5ae6637ebda86f10d66b43c6071264e099 100644 --- a/theodolite-benchmarks/uc4-beam/src/main/java/application/UpdateChildParentPairs.java +++ b/theodolite-benchmarks/uc4-beam/src/main/java/application/UpdateChildParentPairs.java @@ -20,6 +20,7 @@ public class UpdateChildParentPairs extends DoFn<KV<String, Set<String>>, KV<Str /** * Match the changes accordingly. + * * @param kv the sensor parents set that contains the changes. */ @ProcessElement diff --git a/theodolite-benchmarks/uc4-beam/src/main/java/serialization/AggregatedActivePowerRecordCoder.java b/theodolite-benchmarks/uc4-beam/src/main/java/serialization/AggregatedActivePowerRecordCoder.java index aba4c5f9adbea7c3cebe9cee7a71cdf731509a82..d2b484f5ab30be63f311d6dbcf495baebbd5e2b4 100644 --- a/theodolite-benchmarks/uc4-beam/src/main/java/serialization/AggregatedActivePowerRecordCoder.java +++ b/theodolite-benchmarks/uc4-beam/src/main/java/serialization/AggregatedActivePowerRecordCoder.java @@ -17,10 +17,11 @@ import titan.ccp.model.records.AggregatedActivePowerRecord; @SuppressWarnings("serial") public class AggregatedActivePowerRecordCoder extends Coder<AggregatedActivePowerRecord> implements Serializable { - private static final boolean DETERMINISTIC = true; - private transient AvroCoder avroEnCoder = AvroCoder.of(AggregatedActivePowerRecord.class); + private static final boolean DETERMINISTIC = true; + private transient AvroCoder<AggregatedActivePowerRecord> avroEnCoder = + AvroCoder.of(AggregatedActivePowerRecord.class); @Override public void encode(final AggregatedActivePowerRecord value, final OutputStream outStream) @@ -36,9 +37,9 @@ public class AggregatedActivePowerRecordCoder extends Coder<AggregatedActivePowe public AggregatedActivePowerRecord decode(final InputStream inStream) throws CoderException, IOException { if (this.avroEnCoder == null) { - avroEnCoder = AvroCoder.of(AggregatedActivePowerRecord.class); + this.avroEnCoder = AvroCoder.of(AggregatedActivePowerRecord.class); } - return (AggregatedActivePowerRecord) this.avroEnCoder.decode(inStream); + return this.avroEnCoder.decode(inStream); } diff --git a/theodolite-benchmarks/uc4-beam/src/main/java/serialization/AggregatedActivePowerRecordDeserializer.java b/theodolite-benchmarks/uc4-beam/src/main/java/serialization/AggregatedActivePowerRecordDeserializer.java index efdc3adf5a3e70d65c76130bc5fc4ff5feac6183..6e2f2765ff65d3bca2a127be36db0854f15afebc 100644 --- a/theodolite-benchmarks/uc4-beam/src/main/java/serialization/AggregatedActivePowerRecordDeserializer.java +++ b/theodolite-benchmarks/uc4-beam/src/main/java/serialization/AggregatedActivePowerRecordDeserializer.java @@ -4,7 +4,6 @@ import java.io.ByteArrayInputStream; import java.io.IOException; import org.apache.beam.sdk.coders.AvroCoder; import org.apache.kafka.common.serialization.Deserializer; - import org.slf4j.Logger; import org.slf4j.LoggerFactory; import titan.ccp.model.records.AggregatedActivePowerRecord; @@ -14,17 +13,20 @@ import titan.ccp.model.records.AggregatedActivePowerRecord; */ public class AggregatedActivePowerRecordDeserializer implements Deserializer<AggregatedActivePowerRecord> { + private static final Logger LOGGER = LoggerFactory.getLogger(AggregatedActivePowerRecordDeserializer.class); - private final transient AvroCoder avroEnCoder = AvroCoder.of(AggregatedActivePowerRecord.class); + + private final transient AvroCoder<AggregatedActivePowerRecord> avroEnCoder = + AvroCoder.of(AggregatedActivePowerRecord.class); @Override public AggregatedActivePowerRecord deserialize(final String topic, final byte[] data) { AggregatedActivePowerRecord value = null; try { - value = (AggregatedActivePowerRecord) avroEnCoder.decode(new ByteArrayInputStream(data)); - } catch (IOException e) { - LOGGER.error("Could not deserialize AggregatedActivePowerRecord",e); + value = this.avroEnCoder.decode(new ByteArrayInputStream(data)); + } catch (final IOException e) { + LOGGER.error("Could not deserialize AggregatedActivePowerRecord", e); } return value; } diff --git a/theodolite-benchmarks/uc4-beam/src/main/java/serialization/AggregatedActivePowerRecordSerializer.java b/theodolite-benchmarks/uc4-beam/src/main/java/serialization/AggregatedActivePowerRecordSerializer.java index 319fca931208fd0fb346fdd144c3af74509e7e37..77b79d5465f1d561870bf5b04f8fa20f87076adb 100644 --- a/theodolite-benchmarks/uc4-beam/src/main/java/serialization/AggregatedActivePowerRecordSerializer.java +++ b/theodolite-benchmarks/uc4-beam/src/main/java/serialization/AggregatedActivePowerRecordSerializer.java @@ -13,24 +13,25 @@ import titan.ccp.model.records.AggregatedActivePowerRecord; */ public class AggregatedActivePowerRecordSerializer implements Serializer<AggregatedActivePowerRecord> { + private static final Logger LOGGER = LoggerFactory.getLogger(AggregatedActivePowerRecordSerializer.class); - private final transient AvroCoder<AggregatedActivePowerRecord> - avroEnCoder = AvroCoder.of(AggregatedActivePowerRecord.class); + private final transient AvroCoder<AggregatedActivePowerRecord> avroEnCoder = + AvroCoder.of(AggregatedActivePowerRecord.class); @Override public byte[] serialize(final String topic, final AggregatedActivePowerRecord data) { final ByteArrayOutputStream out = new ByteArrayOutputStream(); try { this.avroEnCoder.encode(data, out); - } catch (IOException e) { + } catch (final IOException e) { LOGGER.error("Could not serialize AggregatedActivePowerRecord", e); } final byte[] result = out.toByteArray(); try { out.close(); - } catch (IOException e) { + } catch (final IOException e) { LOGGER.error( "Could not close output stream after serialization of AggregatedActivePowerRecord", e); } diff --git a/theodolite-benchmarks/uc4-beam/src/main/java/serialization/EventCoder.java b/theodolite-benchmarks/uc4-beam/src/main/java/serialization/EventCoder.java index 41a025485819c384bc502fe6fb622878a61165ec..710beb71dc8776e6309028327b05307aa590a7f6 100644 --- a/theodolite-benchmarks/uc4-beam/src/main/java/serialization/EventCoder.java +++ b/theodolite-benchmarks/uc4-beam/src/main/java/serialization/EventCoder.java @@ -17,12 +17,11 @@ import titan.ccp.configuration.events.EventSerde; * Wrapper Class that encapsulates a Event Serde in a org.apache.beam.sdk.coders.Coder. */ public class EventCoder extends Coder<Event> implements Serializable { + private static final long serialVersionUID = 8403045343970659100L; private static final int VALUE_SIZE = 4; private static final boolean DETERMINISTIC = true; - - private transient Serde<Event> innerSerde = EventSerde.serde(); @Override diff --git a/theodolite-benchmarks/uc4-beam/src/main/java/serialization/SensorParentKeyCoder.java b/theodolite-benchmarks/uc4-beam/src/main/java/serialization/SensorParentKeyCoder.java index 3fd8758534cff8eee80c2923061eb730b90fe161..3e85c3242fb854bef514787c92bb58ad76526cb4 100644 --- a/theodolite-benchmarks/uc4-beam/src/main/java/serialization/SensorParentKeyCoder.java +++ b/theodolite-benchmarks/uc4-beam/src/main/java/serialization/SensorParentKeyCoder.java @@ -16,6 +16,7 @@ import org.apache.kafka.common.serialization.Serde; * Wrapper Class that encapsulates a SensorParentKey Serde in a org.apache.beam.sdk.coders.Coder. */ public class SensorParentKeyCoder extends Coder<SensorParentKey> implements Serializable { + private static final long serialVersionUID = -3480141901035692398L; private static final boolean DETERMINISTIC = true; private static final int VALUE_SIZE = 4; diff --git a/theodolite/.gitignore b/theodolite/.gitignore index a1eff0e1d4dddacdbcafa2c235b28616cb53e7bf..285b6baee527835a20f0b79f1ecece49b80f7d42 100644 --- a/theodolite/.gitignore +++ b/theodolite/.gitignore @@ -31,3 +31,6 @@ nb-configuration.xml # patch *.orig *.rej + +# Local environment +.env diff --git a/theodolite/README.md b/theodolite/README.md index 60bd56d933d8955217120465c47e70b4b34585e1..96f56c20db1d0796ba692cc497b93532517526ff 100644 --- a/theodolite/README.md +++ b/theodolite/README.md @@ -12,14 +12,8 @@ You can run your application in dev mode using: ./gradlew quarkusDev ``` -### Hint for running with k3s (or k3d) +> **_NOTE:_** Quarkus now ships with a Dev UI, which is available in dev mode only at http://localhost:8080/q/dev/. -You may need to add the following dependencies to the `build.gradle` file when running Theodolite with k3s. - -``` -implementation 'org.bouncycastle:bcprov-ext-jdk15on:1.68' -implementation 'org.bouncycastle:bcpkix-jdk15on:1.68' -``` ## Packaging and running the application @@ -29,7 +23,7 @@ The application can be packaged using: ./gradlew build ``` -It produces the `theodolite-1.0.0-SNAPSHOT-runner.jar` file in the `/build` directory. Be aware that it’s not +It produces the `theodolite-0.7.0-SNAPSHOT-runner.jar` file in the `/build` directory. Be aware that it’s not an _über-jar_ as the dependencies are copied into the `build/lib` directory. If you want to build an _über-jar_, execute the following command: @@ -38,7 +32,7 @@ If you want to build an _über-jar_, execute the following command: ./gradlew build -Dquarkus.package.type=uber-jar ``` -The application is now runnable using `java -jar build/theodolite-1.0.0-SNAPSHOT-runner.jar`. +The application is now runnable using `java -jar build/theodolite-0.7.0-SNAPSHOT-runner.jar`. ## Creating a native executable @@ -57,9 +51,9 @@ Or, if you don't have GraalVM installed, you can run the native executable build ``` You can then execute your native executable with: -```./build/theodolite-1.0.0-SNAPSHOT-runner``` +```./build/theodolite-0.7.0-SNAPSHOT-runner``` -If you want to learn more about building native executables, please consult <https://quarkus.io/guides/gradle-tooling>. +If you want to learn more about building native executables, please consult https://quarkus.io/guides/gradle-tooling. ## Build docker images diff --git a/theodolite/build.gradle b/theodolite/build.gradle index 39cc62804a382888f8d0019e639c5ff4febe8d59..0ec113cbba893bc1f2f44a60c270f7cb67688803 100644 --- a/theodolite/build.gradle +++ b/theodolite/build.gradle @@ -1,9 +1,9 @@ plugins { - id 'org.jetbrains.kotlin.jvm' version "1.3.72" - id "org.jetbrains.kotlin.plugin.allopen" version "1.3.72" + id 'org.jetbrains.kotlin.jvm' version "1.5.31" + id "org.jetbrains.kotlin.plugin.allopen" version "1.5.31" id 'io.quarkus' - id "io.gitlab.arturbosch.detekt" version "1.15.0" //For code style - id "org.jlleitschuh.gradle.ktlint" version "10.0.0" // same as above + id "io.gitlab.arturbosch.detekt" version "1.15.0" + id "org.jlleitschuh.gradle.ktlint" version "10.0.0" } repositories { @@ -18,25 +18,26 @@ dependencies { implementation 'org.jetbrains.kotlin:kotlin-stdlib-jdk8' implementation 'io.quarkus:quarkus-arc' implementation 'io.quarkus:quarkus-resteasy' - implementation 'com.google.code.gson:gson:2.8.5' - implementation 'org.slf4j:slf4j-simple:1.7.29' - implementation 'io.github.microutils:kotlin-logging:1.12.0' - implementation('io.fabric8:kubernetes-client:5.4.1'){force = true} - implementation('io.fabric8:kubernetes-model-core:5.4.1'){force = true} - implementation('io.fabric8:kubernetes-model-common:5.4.1'){force = true} - implementation 'org.apache.kafka:kafka-clients:2.7.0' - implementation 'khttp:khttp:1.0.0' + implementation 'io.quarkus:quarkus-kubernetes-client' + + implementation 'org.bouncycastle:bcprov-ext-jdk15on:1.69' + implementation 'org.bouncycastle:bcpkix-jdk15on:1.69' - compile 'junit:junit:4.12' + implementation 'com.google.code.gson:gson:2.8.9' + implementation 'org.slf4j:slf4j-simple:1.7.32' + implementation 'io.github.microutils:kotlin-logging:2.1.16' + implementation 'org.apache.kafka:kafka-clients:2.8.0' + implementation 'khttp:khttp:1.0.0' testImplementation 'io.quarkus:quarkus-junit5' + testImplementation 'io.quarkus:quarkus-test-kubernetes-client' testImplementation 'io.rest-assured:rest-assured' - testImplementation 'org.junit-pioneer:junit-pioneer:1.4.0' - testImplementation ('io.fabric8:kubernetes-server-mock:5.4.1'){force = true} + testImplementation 'org.junit-pioneer:junit-pioneer:1.5.0' + testImplementation "org.mockito.kotlin:mockito-kotlin:4.0.0" } group 'theodolite' -version '0.6.0-SNAPSHOT' +version '0.7.0-SNAPSHOT' java { sourceCompatibility = JavaVersion.VERSION_11 @@ -57,6 +58,7 @@ compileKotlin { compileTestKotlin { kotlinOptions.jvmTarget = JavaVersion.VERSION_11 } + detekt { failFast = true // fail build on any finding buildUponDefaultConfig = true diff --git a/theodolite/crd/crd-benchmark.yaml b/theodolite/crd/crd-benchmark.yaml index 7ab2e5f3b890a883f68dbbd36805f3791158f256..55bf6ed69e44287905bce85b63f66bb43ea65669 100644 --- a/theodolite/crd/crd-benchmark.yaml +++ b/theodolite/crd/crd-benchmark.yaml @@ -64,13 +64,87 @@ spec: type: array items: type: string + beforeActions: + type: array + default: [] + description: Infrastructure before actions are executed before the infrastructure is set up. + items: + type: object + properties: + selector: + type: object + description: The selector specifies which resource should be selected for the execution of the command. + properties: + pod: + type: object + description: Specifies the pod. + properties: + matchLabels: + type: object + description: The matchLabels of the desired pod. + additionalProperties: true + x-kubernetes-map-type: "granular" + default: { } + container: + description: Specifies the container. + default: "" + type: string + exec: + type: object + description: Specifies command to be executed. + properties: + command: + type: array + description: The command to be executed as string array. + items: + type: string + timeoutSeconds: + description: Specifies the timeout (in seconds) for the specified command. + type: integer + afterActions: + type: array + default: [] + description: Infrastructure after actions are executed after the teardown of the infrastructure. + items: + type: object + properties: + selector: + type: object + description: The selector specifies which resource should be selected for the execution of the command. + properties: + pod: + type: object + description: Specifies the pod. + properties: + matchLabels: + type: object + description: The matchLabels of the desired pod. + additionalProperties: true + x-kubernetes-map-type: "granular" + default: { } + container: + description: Specifies the container. + default: "" + type: string + exec: + type: object + description: Specifies command to be executed. + properties: + command: + type: array + description: The command to be executed as string array. + items: + type: string + timeoutSeconds: + description: Specifies the timeout (in seconds) for the specified command. + type: integer sut: description: The appResourceSets specifies all Kubernetes resources required to start the sut. A resourceSet can be either a configMap resourceSet or a fileSystem resourceSet. type: object properties: resources: type: array - default: [ ] + default: [] items: type: object oneOf: @@ -101,6 +175,79 @@ spec: type: array items: type: string + beforeActions: + type: array + default: [] + description: SUT before actions are executed before the SUT is started. + items: + type: object + properties: + selector: + type: object + description: The selector specifies which resource should be selected for the execution of the command. + properties: + pod: + type: object + description: Specifies the pod. + properties: + matchLabels: + type: object + description: The matchLabels of the desired pod. + additionalProperties: true + x-kubernetes-map-type: "granular" + default: { } + container: + description: Specifies the container. + default: "" + type: string + exec: + type: object + description: Specifies command to be executed. + properties: + command: + type: array + description: The command to be executed as string array. + items: + type: string + timeoutSeconds: + description: Specifies the timeout (in seconds) for the specified command. + type: integer + afterActions: + type: array + default: [] + items: + type: object + properties: + selector: + type: object + description: The selector specifies which resource should be selected for the execution of the command. + properties: + pod: + type: object + description: Specifies the pod. + properties: + matchLabels: + type: object + description: The matchLabels of the desired pod. + additionalProperties: true + x-kubernetes-map-type: "granular" + default: { } + container: + description: Specifies the container. + default: "" + type: string + exec: + type: object + description: Specifies command to be executed. + properties: + command: + type: array + description: The command to be executed as string array. + items: + type: string + timeoutSeconds: + description: Specifies the timeout (in seconds) for the specified command. + type: integer loadGenerator: description: The loadGenResourceSets specifies all Kubernetes resources required to start the load generator. A resourceSet can be either a configMap resourceSet or a fileSystem resourceSet. type: object @@ -138,6 +285,80 @@ spec: type: array items: type: string + beforeActions: + type: array + default: [ ] + description: Load generator before actions are executed before the load generator is started. + items: + type: object + properties: + selector: + type: object + description: The selector specifies which resource should be selected for the execution of the command. + properties: + pod: + type: object + description: Specifies the pod. + properties: + matchLabels: + type: object + description: The matchLabels of the desired pod. + additionalProperties: true + x-kubernetes-map-type: "granular" + default: { } + container: + description: Specifies the container. + default: "" + type: string + exec: + type: object + description: Specifies command to be executed. + properties: + command: + type: array + description: The command to be executed as string array. + items: + type: string + timeoutSeconds: + description: Specifies the timeout (in seconds) for the specified command. + type: integer + afterActions: + type: array + default: [] + description: Load generator after actions are executed after the teardown of the load generator. + items: + type: object + properties: + selector: + type: object + description: The selector specifies which resource should be selected for the execution of the command. + properties: + pod: + type: object + description: Specifies the pod. + properties: + matchLabels: + type: object + description: The matchLabels of the desired pod. + additionalProperties: true + x-kubernetes-map-type: "granular" + default: { } + container: + description: Specifies the container. + default: "" + type: string + exec: + type: object + description: Specifies command to be executed. + properties: + command: + type: array + description: The command to be executed as string array. + items: + type: string + timeoutSeconds: + description: Specifies the timeout (in seconds) for the specified command. + type: integer resourceTypes: description: A list of resource types that can be scaled for this `benchmark` resource. For each resource type the concrete values are defined in the `execution` object. type: array @@ -246,7 +467,7 @@ spec: - name: Age type: date jsonPath: .metadata.creationTimestamp - - name: STATUS + - name: Status type: string description: The status of a Benchmark indicates whether all resources are available to start the benchmark or not. jsonPath: .status.resourceSetsState diff --git a/theodolite/crd/crd-execution.yaml b/theodolite/crd/crd-execution.yaml index d9cd41903bb2fdc18bd6640bdbe2eb764b2106ab..92a8ca18d87009143620097caf2abfe8da202c82 100644 --- a/theodolite/crd/crd-execution.yaml +++ b/theodolite/crd/crd-execution.yaml @@ -133,10 +133,18 @@ spec: description: "" type: string executionDuration: - description: "Duration of the execution in seconds" + description: "Duration of the execution" type: string + startTime: + description: "Time this execution started" + type: string + format: date-time + completionTime: + description: "Time when this execution was stopped" + type: string + format: date-time additionalPrinterColumns: - - name: STATUS + - name: Status type: string description: State of the execution jsonPath: .status.executionState diff --git a/theodolite/examples/operator/example-benchmark.yaml b/theodolite/examples/operator/example-benchmark.yaml index 3452fff9c729d680890d6eafa685ce2f13b098d6..5f68af04750bcd779c9682ede69d6c68b9fb3e92 100644 --- a/theodolite/examples/operator/example-benchmark.yaml +++ b/theodolite/examples/operator/example-benchmark.yaml @@ -1,7 +1,7 @@ apiVersion: theodolite.com/v1 kind: benchmark metadata: - name: uc1-kstreams + name: example-benchmark spec: sut: resources: @@ -32,7 +32,7 @@ spec: - type: "NumSensorsLoadGeneratorReplicaPatcher" resource: "uc1-load-generator-deployment.yaml" properties: - loadGenMaxRecords: "15000" + loadGenMaxRecords: "150000" kafkaConfig: bootstrapServer: "theodolite-cp-kafka:9092" topics: @@ -40,4 +40,4 @@ spec: numPartitions: 40 replicationFactor: 1 - name: "theodolite-.*" - removeOnly: True \ No newline at end of file + removeOnly: True diff --git a/theodolite/examples/operator/example-execution.yaml b/theodolite/examples/operator/example-execution.yaml index e2efb6e9a2bb6c08354b57a83506a601ac0ed96e..576a74b90dfc38483de79502ac14d42f6bedfb49 100644 --- a/theodolite/examples/operator/example-execution.yaml +++ b/theodolite/examples/operator/example-execution.yaml @@ -3,7 +3,7 @@ kind: execution metadata: name: theodolite-example-execution spec: - benchmark: "uc1-kstreams" + benchmark: "example-benchmark" load: loadType: "NumSensors" loadValues: [25000, 50000, 75000, 100000, 125000, 150000] diff --git a/theodolite/examples/standalone/example-benchmark.yaml b/theodolite/examples/standalone/example-benchmark.yaml index 0d5df81b163c1285f12971d08518dddf4b451d0f..4d67399231778c91cebb3ffe088e2d26ef388008 100644 --- a/theodolite/examples/standalone/example-benchmark.yaml +++ b/theodolite/examples/standalone/example-benchmark.yaml @@ -29,7 +29,7 @@ loadTypes: - type: "NumSensorsLoadGeneratorReplicaPatcher" resource: "uc1-load-generator-deployment.yaml" properties: - loadGenMaxRecords: "15000" + loadGenMaxRecords: "150000" kafkaConfig: bootstrapServer: "theodolite-cp-kafka:9092" topics: diff --git a/theodolite/gradle.properties b/theodolite/gradle.properties index d7e4187c25e76dfb440650274b2d383f75a32242..76ed8f2136f14263460bc391d420c78de200d659 100644 --- a/theodolite/gradle.properties +++ b/theodolite/gradle.properties @@ -1,8 +1,8 @@ #Gradle properties +quarkusPluginVersion=2.5.2.Final +quarkusPlatformArtifactId=quarkus-bom quarkusPluginId=io.quarkus -quarkusPluginVersion=1.10.3.Final -quarkusPlatformGroupId=io.quarkus -quarkusPlatformArtifactId=quarkus-universe-bom -quarkusPlatformVersion=1.10.3.Final +quarkusPlatformGroupId=io.quarkus.platform +quarkusPlatformVersion=2.5.2.Final -org.gradle.logging.level=INFO \ No newline at end of file +#org.gradle.logging.level=INFO \ No newline at end of file diff --git a/theodolite/gradle/wrapper/gradle-wrapper.properties b/theodolite/gradle/wrapper/gradle-wrapper.properties index bb8b2fc26b2e572c79d7212a4f6f11057c6787f7..e750102e09269a4ac558e10a6612998e5ca4c0f2 100644 --- a/theodolite/gradle/wrapper/gradle-wrapper.properties +++ b/theodolite/gradle/wrapper/gradle-wrapper.properties @@ -1,5 +1,5 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-6.5.1-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-7.3-bin.zip zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists diff --git a/theodolite/gradlew.bat b/theodolite/gradlew.bat old mode 100755 new mode 100644 diff --git a/theodolite/src/main/docker/Dockerfile.jvm b/theodolite/src/main/docker/Dockerfile.jvm index 4d51240e0225bb571cc4a625e40c9ec76fd8f10d..03035752038fee2e5ce4c477c61adc84991f3729 100644 --- a/theodolite/src/main/docker/Dockerfile.jvm +++ b/theodolite/src/main/docker/Dockerfile.jvm @@ -14,14 +14,14 @@ # docker run -i --rm -p 8080:8080 quarkus/theodolite-jvm # # If you want to include the debug port into your docker image -# you will have to expose the debug port (default 5005) like this : EXPOSE 8080 5050 +# you will have to expose the debug port (default 5005) like this : EXPOSE 8080 5005 # # Then run the container using : # # docker run -i --rm -p 8080:8080 -p 5005:5005 -e JAVA_ENABLE_DEBUG="true" quarkus/theodolite-jvm # ### -FROM registry.access.redhat.com/ubi8/ubi-minimal:8.3 +FROM registry.access.redhat.com/ubi8/ubi-minimal:8.4 ARG JAVA_PACKAGE=java-11-openjdk-headless ARG RUN_JAVA_VERSION=1.3.8 @@ -38,14 +38,18 @@ RUN microdnf install curl ca-certificates ${JAVA_PACKAGE} \ && curl https://repo1.maven.org/maven2/io/fabric8/run-java-sh/${RUN_JAVA_VERSION}/run-java-sh-${RUN_JAVA_VERSION}-sh.sh -o /deployments/run-java.sh \ && chown 1001 /deployments/run-java.sh \ && chmod 540 /deployments/run-java.sh \ - && echo "securerandom.source=file:/dev/urandom" >> /etc/alternatives/jre/lib/security/java.security + && echo "securerandom.source=file:/dev/urandom" >> /etc/alternatives/jre/conf/security/java.security # Configure the JAVA_OPTIONS, you can add -XshowSettings:vm to also display the heap size. ENV JAVA_OPTIONS="-Dquarkus.http.host=0.0.0.0 -Djava.util.logging.manager=org.jboss.logmanager.LogManager" -COPY build/lib/* /deployments/lib/ -COPY build/*-runner.jar /deployments/app.jar +# We make four distinct layers so if there are application changes the library layers can be re-used +COPY --chown=1001 build/quarkus-app/lib/ /deployments/lib/ +COPY --chown=1001 build/quarkus-app/*.jar /deployments/ +COPY --chown=1001 build/quarkus-app/app/ /deployments/app/ +COPY --chown=1001 build/quarkus-app/quarkus/ /deployments/quarkus/ EXPOSE 8080 USER 1001 ENTRYPOINT [ "/deployments/run-java.sh" ] + diff --git a/theodolite/src/main/docker/Dockerfile.fast-jar b/theodolite/src/main/docker/Dockerfile.legacy-jar similarity index 67% rename from theodolite/src/main/docker/Dockerfile.fast-jar rename to theodolite/src/main/docker/Dockerfile.legacy-jar index 16853dd8f064565ae017bee9dae3597b63085006..f9dffd188570c14087bafaec838b58b61a4e5912 100644 --- a/theodolite/src/main/docker/Dockerfile.fast-jar +++ b/theodolite/src/main/docker/Dockerfile.legacy-jar @@ -3,25 +3,25 @@ # # Before building the container image run: # -# ./gradlew build -Dquarkus.package.type=fast-jar +# ./gradlew build -Dquarkus.package.type=legacy-jar # # Then, build the image with: # -# docker build -f src/main/docker/Dockerfile.fast-jar -t quarkus/theodolite-fast-jar . +# docker build -f src/main/docker/Dockerfile.legacy-jar -t quarkus/theodolite-legacy-jar . # # Then run the container using: # -# docker run -i --rm -p 8080:8080 quarkus/theodolite-fast-jar +# docker run -i --rm -p 8080:8080 quarkus/theodolite-legacy-jar # # If you want to include the debug port into your docker image -# you will have to expose the debug port (default 5005) like this : EXPOSE 8080 5050 +# you will have to expose the debug port (default 5005) like this : EXPOSE 8080 5005 # # Then run the container using : # -# docker run -i --rm -p 8080:8080 -p 5005:5005 -e JAVA_ENABLE_DEBUG="true" quarkus/theodolite-fast-jar +# docker run -i --rm -p 8080:8080 -p 5005:5005 -e JAVA_ENABLE_DEBUG="true" quarkus/theodolite-legacy-jar # ### -FROM registry.access.redhat.com/ubi8/ubi-minimal:8.3 +FROM registry.access.redhat.com/ubi8/ubi-minimal:8.4 ARG JAVA_PACKAGE=java-11-openjdk-headless ARG RUN_JAVA_VERSION=1.3.8 @@ -38,15 +38,12 @@ RUN microdnf install curl ca-certificates ${JAVA_PACKAGE} \ && curl https://repo1.maven.org/maven2/io/fabric8/run-java-sh/${RUN_JAVA_VERSION}/run-java-sh-${RUN_JAVA_VERSION}-sh.sh -o /deployments/run-java.sh \ && chown 1001 /deployments/run-java.sh \ && chmod 540 /deployments/run-java.sh \ - && echo "securerandom.source=file:/dev/urandom" >> /etc/alternatives/jre/lib/security/java.security + && echo "securerandom.source=file:/dev/urandom" >> /etc/alternatives/jre/conf/security/java.security # Configure the JAVA_OPTIONS, you can add -XshowSettings:vm to also display the heap size. ENV JAVA_OPTIONS="-Dquarkus.http.host=0.0.0.0 -Djava.util.logging.manager=org.jboss.logmanager.LogManager" -# We make four distinct layers so if there are application changes the library layers can be re-used -COPY --chown=1001 build/quarkus-app/lib/ /deployments/lib/ -COPY --chown=1001 build/quarkus-app/*.jar /deployments/ -COPY --chown=1001 build/quarkus-app/app/ /deployments/app/ -COPY --chown=1001 build/quarkus-app/quarkus/ /deployments/quarkus/ +COPY build/lib/* /deployments/lib/ +COPY build/*-runner.jar /deployments/app.jar EXPOSE 8080 USER 1001 diff --git a/theodolite/src/main/docker/Dockerfile.native b/theodolite/src/main/docker/Dockerfile.native index 95ef4fb51d7dc1ac520fb4c5a9af1b2d0a32fd09..04a1dd6f2b6cc99511bf705eed5d98be1da25b05 100644 --- a/theodolite/src/main/docker/Dockerfile.native +++ b/theodolite/src/main/docker/Dockerfile.native @@ -14,8 +14,8 @@ # docker run -i --rm -p 8080:8080 quarkus/theodolite # ### -FROM registry.access.redhat.com/ubi8/ubi-minimal:8.3 -WORKDIR /deployments +FROM registry.access.redhat.com/ubi8/ubi-minimal:8.4 +WORKDIR /deployments/ RUN chown 1001 /deployments \ && chmod "g+rwX" /deployments \ && chown 1001:root /deployments diff --git a/theodolite/src/main/docker/Dockerfile.native-distroless b/theodolite/src/main/docker/Dockerfile.native-distroless new file mode 100644 index 0000000000000000000000000000000000000000..1ed64110dd931bf3fea9100e3318318ad40b6966 --- /dev/null +++ b/theodolite/src/main/docker/Dockerfile.native-distroless @@ -0,0 +1,24 @@ +#### +# This Dockerfile is used in order to build a distroless container that runs the Quarkus application in native (no JVM) mode +# +# Before building the container image run: +# +# ./gradlew build -Dquarkus.package.type=native +# +# Then, build the image with: +# +# docker build -f src/main/docker/Dockerfile.native-distroless -t quarkus/theodolite . +# +# Then run the container using: +# +# docker run -i --rm -p 8080:8080 quarkus/theodolite +# +### +FROM quay.io/quarkus/quarkus-distroless-image:1.0 +WORKDIR /deployments/ +COPY build/*-runner /deployments/application + +EXPOSE 8080 +USER nonroot + +CMD ["./application", "-Dquarkus.http.host=0.0.0.0"] diff --git a/theodolite/src/main/kotlin/theodolite/benchmark/Action.kt b/theodolite/src/main/kotlin/theodolite/benchmark/Action.kt new file mode 100644 index 0000000000000000000000000000000000000000..35efebdc0fb2a3748660cb76cdd5499b4ca5f622 --- /dev/null +++ b/theodolite/src/main/kotlin/theodolite/benchmark/Action.kt @@ -0,0 +1,48 @@ +package theodolite.benchmark + +import com.fasterxml.jackson.annotation.JsonInclude +import com.fasterxml.jackson.databind.annotation.JsonDeserialize +import io.fabric8.kubernetes.client.NamespacedKubernetesClient +import io.quarkus.runtime.annotations.RegisterForReflection +import theodolite.util.ActionCommandFailedException +import theodolite.util.Configuration + +@JsonDeserialize +@RegisterForReflection +@JsonInclude(JsonInclude.Include.NON_NULL) +class Action { + + lateinit var selector: ActionSelector + lateinit var exec: Command + + fun exec(client: NamespacedKubernetesClient) { + val exitCode = ActionCommand(client = client) + .exec( + matchLabels = selector.pod.matchLabels, + container = selector.container, + timeout = exec.timeoutSeconds, + command = exec.command + ) + if(exitCode != 0){ + throw ActionCommandFailedException("Error while executing action, finished with exit code $exitCode") + } + } +} + +@JsonDeserialize +@RegisterForReflection +class ActionSelector { + lateinit var pod: PodSelector + var container: String = "" +} +@JsonDeserialize +@RegisterForReflection +class PodSelector { + lateinit var matchLabels: MutableMap<String, String> +} +@JsonDeserialize +@RegisterForReflection +class Command { + lateinit var command: Array<String> + var timeoutSeconds: Long = Configuration.TIMEOUT_SECONDS +} \ No newline at end of file diff --git a/theodolite/src/main/kotlin/theodolite/benchmark/ActionCommand.kt b/theodolite/src/main/kotlin/theodolite/benchmark/ActionCommand.kt new file mode 100644 index 0000000000000000000000000000000000000000..966fa56329c8d7d466dd14858bcbc06bb5b857c3 --- /dev/null +++ b/theodolite/src/main/kotlin/theodolite/benchmark/ActionCommand.kt @@ -0,0 +1,161 @@ +package theodolite.benchmark + +import io.fabric8.kubernetes.api.model.Status +import io.fabric8.kubernetes.client.KubernetesClientException +import io.fabric8.kubernetes.client.NamespacedKubernetesClient +import io.fabric8.kubernetes.client.dsl.ExecListener +import io.fabric8.kubernetes.client.dsl.ExecWatch +import io.fabric8.kubernetes.client.utils.Serialization +import mu.KotlinLogging +import okhttp3.Response +import theodolite.util.ActionCommandFailedException +import theodolite.util.Configuration +import java.io.ByteArrayOutputStream +import java.time.Duration +import java.util.concurrent.CountDownLatch +import java.util.concurrent.TimeUnit + + +private val logger = KotlinLogging.logger {} + +class ActionCommand(val client: NamespacedKubernetesClient) { + var out: ByteArrayOutputStream = ByteArrayOutputStream() + var error: ByteArrayOutputStream = ByteArrayOutputStream() + var errChannelStream: ByteArrayOutputStream = ByteArrayOutputStream() + private val execLatch = CountDownLatch(1) + + /** + * Executes an action command. + * + * @param matchLabels matchLabels specifies on which pod the command should be executed. For this, the principle + * `of any` of is used and the command is called on one of the possible pods. + * @param container (Optional) The container to run the command. Is optional iff exactly one container exist. + * @param command The command to be executed. + * @return the exit code of this executed command + */ + fun exec( + matchLabels: MutableMap<String, String>, + command: Array<String>, + timeout: Long = Configuration.TIMEOUT_SECONDS, + container: String = "" + ): Int { + try { + val execWatch: ExecWatch = if (container.isNotEmpty()) { + client.pods() + .inNamespace(client.namespace) + .withName(getPodName(matchLabels, 3)) + .inContainer(container) + + } else { + client.pods() + .inNamespace(client.namespace) + .withName(getPodName(matchLabels, 3)) + } + .writingOutput(out) + .writingError(error) + .writingErrorChannel(errChannelStream) + .usingListener(ActionCommandListener(execLatch)) + .exec(*command) + + val latchTerminationStatus = execLatch.await(timeout, TimeUnit.SECONDS) + if (!latchTerminationStatus) { + throw ActionCommandFailedException("Latch could not terminate within specified time") + } + execWatch.close() + } catch (e: Exception) { + when (e) { + is InterruptedException -> { + Thread.currentThread().interrupt() + throw ActionCommandFailedException("Interrupted while waiting for the exec", e) + } + is KubernetesClientException -> { + throw ActionCommandFailedException("Error while executing command", e) + } + else -> { + throw e + } + } + } + logger.debug { "Execution Output Stream is \n $out" } + logger.debug { "Execution Error Stream is \n $error" } + logger.debug { "Execution ErrorChannel is: \n $errChannelStream" } + return getExitCode(errChannelStream) + } + + private fun getExitCode(errChannelStream: ByteArrayOutputStream): Int { + val status: Status? + try { + status = Serialization.unmarshal(errChannelStream.toString(), Status::class.java) + } catch (e: Exception) { + throw ActionCommandFailedException("Could not determine the exit code, no information given") + } + + if (status == null) { + throw ActionCommandFailedException("Could not determine the exit code, no information given") + } + + return if (status.status.equals("Success")) { + 0 + } else status.details.causes.stream() + .filter { it.reason.equals("ExitCode") } + .map { it.message } + .findFirst() + .orElseThrow { + ActionCommandFailedException("Status is not SUCCESS but contains no exit code - Status: $status") + }.toInt() + } + + /** + * Find pod with matching labels. The matching pod must have the status `Running`. + * + * @param matchLabels the match labels + * @param tries specifies the number of times to look for a matching pod. When pods are newly created, + * it can take a while until the status is ready and the pod can be selected. + * @return the name of the pod or throws [ActionCommandFailedException] + */ + fun getPodName(matchLabels: MutableMap<String, String>, tries: Int): String { + for (i in 1..tries) { + + try { + return getPodName(matchLabels) + } catch (e: Exception) { + logger.warn { "Could not found any pod with specified matchlabels or pod is not ready." } + } + Thread.sleep(Duration.ofSeconds(5).toMillis()) + } + throw ActionCommandFailedException("Couldn't find any pod that matches the specified labels.") + } + + private fun getPodName(matchLabels: MutableMap<String, String>): String { + return try { + val podNames = this.client + .pods() + .withLabels(matchLabels) + .list() + .items + .map { it.metadata.name } + + podNames.first { + this.client.pods().withName(it).isReady + } + + } catch (e: NoSuchElementException) { + throw ActionCommandFailedException("Couldn't find any pod that matches the specified labels.", e) + } + } + + private class ActionCommandListener(val execLatch: CountDownLatch) : ExecListener { + override fun onOpen(response: Response) { + } + + override fun onFailure(throwable: Throwable, response: Response) { + execLatch.countDown() + throw ActionCommandFailedException("Some error encountered while executing action, caused ${throwable.message})") + } + + override fun onClose(code: Int, reason: String) { + execLatch.countDown() + } + } + +} diff --git a/theodolite/src/main/kotlin/theodolite/benchmark/ConfigMapResourceSet.kt b/theodolite/src/main/kotlin/theodolite/benchmark/ConfigMapResourceSet.kt index 273a13170e77ae9e2f5f09869ebbc5cc06185715..27e3206ad7b60d61cab94caaef8a3279d834fe65 100644 --- a/theodolite/src/main/kotlin/theodolite/benchmark/ConfigMapResourceSet.kt +++ b/theodolite/src/main/kotlin/theodolite/benchmark/ConfigMapResourceSet.kt @@ -5,14 +5,10 @@ import io.fabric8.kubernetes.api.model.KubernetesResource import io.fabric8.kubernetes.client.KubernetesClientException import io.fabric8.kubernetes.client.NamespacedKubernetesClient import io.quarkus.runtime.annotations.RegisterForReflection -import mu.KotlinLogging import theodolite.k8s.resourceLoader.K8sResourceLoaderFromString import theodolite.util.DeploymentFailedException import theodolite.util.YamlParserFromString import java.lang.IllegalArgumentException -import java.lang.IllegalStateException - -private val logger = KotlinLogging.logger {} @RegisterForReflection @JsonDeserialize @@ -20,30 +16,26 @@ class ConfigMapResourceSet: ResourceSet, KubernetesResource { lateinit var name: String lateinit var files: List<String> // load all files, iff files is not set - @OptIn(ExperimentalStdlibApi::class) override fun getResourceSet(client: NamespacedKubernetesClient): Collection<Pair<String, KubernetesResource>> { val loader = K8sResourceLoaderFromString(client) var resources: Map<String, String> try { - resources = client + resources = (client .configMaps() .withName(name) - .get() + .get() ?: throw DeploymentFailedException("Cannot find ConfigMap with name '$name'.")) .data - .filter { it.key.endsWith(".yaml") } // consider only yaml files, e.g. ignore readme files + .filter { it.key.endsWith(".yaml") } } catch (e: KubernetesClientException) { - throw DeploymentFailedException("can not find or read configmap: $name", e) - } catch (e: IllegalStateException) { - throw DeploymentFailedException("can not find configmap or data section is null $name", e) + throw DeploymentFailedException("Cannot find or read ConfigMap with name '$name'.", e) } if (::files.isInitialized){ - resources = resources - .filter { files.contains(it.key) } + resources = resources.filter { files.contains(it.key) } if (resources.size != files.size) { - throw DeploymentFailedException("Could not find all specified Kubernetes manifests files") + throw DeploymentFailedException("Could not find all specified Kubernetes manifests files") } } @@ -57,7 +49,7 @@ class ConfigMapResourceSet: ResourceSet, KubernetesResource { it.second.key, loader.loadK8sResource(it.first, it.second.value)) } } catch (e: IllegalArgumentException) { - throw DeploymentFailedException("Can not creat resource set from specified configmap", e) + throw DeploymentFailedException("Can not create resource set from specified configmap", e) } } diff --git a/theodolite/src/main/kotlin/theodolite/benchmark/FileSystemResourceSet.kt b/theodolite/src/main/kotlin/theodolite/benchmark/FileSystemResourceSet.kt index 92df1bec3cd6f21b1f830e73b466f70e37a9f4c8..e769f8b9883b98d9787f2de65571fc94056c3b9c 100644 --- a/theodolite/src/main/kotlin/theodolite/benchmark/FileSystemResourceSet.kt +++ b/theodolite/src/main/kotlin/theodolite/benchmark/FileSystemResourceSet.kt @@ -2,10 +2,8 @@ package theodolite.benchmark import com.fasterxml.jackson.databind.annotation.JsonDeserialize import io.fabric8.kubernetes.api.model.KubernetesResource -import io.fabric8.kubernetes.client.DefaultKubernetesClient import io.fabric8.kubernetes.client.NamespacedKubernetesClient import io.quarkus.runtime.annotations.RegisterForReflection -import mu.KotlinLogging import theodolite.k8s.resourceLoader.K8sResourceLoaderFromFile import theodolite.util.DeploymentFailedException import theodolite.util.YamlParserFromFile @@ -13,8 +11,6 @@ import java.io.File import java.io.FileNotFoundException import java.lang.IllegalArgumentException -private val logger = KotlinLogging.logger {} - @RegisterForReflection @JsonDeserialize class FileSystemResourceSet: ResourceSet, KubernetesResource { diff --git a/theodolite/src/main/kotlin/theodolite/benchmark/KubernetesBenchmark.kt b/theodolite/src/main/kotlin/theodolite/benchmark/KubernetesBenchmark.kt index 0b81f8701f92a95662efef6e0d58839c9a2f6f3b..70d8b241c84d1c6875c8da3d74cd90b3f57956d6 100644 --- a/theodolite/src/main/kotlin/theodolite/benchmark/KubernetesBenchmark.kt +++ b/theodolite/src/main/kotlin/theodolite/benchmark/KubernetesBenchmark.kt @@ -1,6 +1,5 @@ package theodolite.benchmark -import com.fasterxml.jackson.annotation.JsonInclude import com.fasterxml.jackson.databind.annotation.JsonDeserialize import io.fabric8.kubernetes.api.model.KubernetesResource import io.fabric8.kubernetes.client.DefaultKubernetesClient @@ -44,10 +43,10 @@ class KubernetesBenchmark : KubernetesResource, Benchmark { lateinit var infrastructure: Resources lateinit var sut: Resources lateinit var loadGenerator: Resources - var namespace = System.getenv("NAMESPACE") ?: DEFAULT_NAMESPACE + private var namespace = System.getenv("NAMESPACE") ?: DEFAULT_NAMESPACE @Transient - private val client: NamespacedKubernetesClient = DefaultKubernetesClient().inNamespace(namespace) + private var client: NamespacedKubernetesClient = DefaultKubernetesClient().inNamespace(namespace) /** * Loads [KubernetesResource]s. @@ -59,6 +58,7 @@ class KubernetesBenchmark : KubernetesResource, Benchmark { } override fun setupInfrastructure() { + this.infrastructure.beforeActions.forEach { it.exec(client = client) } val kubernetesManager = K8sManager(this.client) loadKubernetesResources(this.infrastructure.resources) .map{it.second} @@ -70,7 +70,8 @@ class KubernetesBenchmark : KubernetesResource, Benchmark { loadKubernetesResources(this.infrastructure.resources) .map{it.second} .forEach { kubernetesManager.remove(it) } - } + this.infrastructure.afterActions.forEach { it.exec(client = client) } + } /** * Builds a deployment. @@ -110,6 +111,10 @@ class KubernetesBenchmark : KubernetesResource, Benchmark { } } return KubernetesBenchmarkDeployment( + sutBeforeActions = sut.beforeActions, + sutAfterActions = sut.afterActions, + loadGenBeforeActions = loadGenerator.beforeActions, + loadGenAfterActions = loadGenerator.afterActions, appResources = appResources.map { it.second }, loadGenResources = loadGenResources.map { it.second }, loadGenerationDelay = loadGenerationDelay, @@ -119,4 +124,13 @@ class KubernetesBenchmark : KubernetesResource, Benchmark { client = this.client ) } + + /** + * This function can be used to set the Kubernetes client manually. This is for example necessary for testing. + * + * @param client + */ + fun setClient(client: NamespacedKubernetesClient) { + this.client = client + } } diff --git a/theodolite/src/main/kotlin/theodolite/benchmark/KubernetesBenchmarkDeployment.kt b/theodolite/src/main/kotlin/theodolite/benchmark/KubernetesBenchmarkDeployment.kt index 423ac92c654ff55057796d9642c2cb408bc62fe5..9d32a4eeab656143e10b5057a173e04245d6f22b 100644 --- a/theodolite/src/main/kotlin/theodolite/benchmark/KubernetesBenchmarkDeployment.kt +++ b/theodolite/src/main/kotlin/theodolite/benchmark/KubernetesBenchmarkDeployment.kt @@ -23,6 +23,10 @@ private val logger = KotlinLogging.logger {} */ @RegisterForReflection class KubernetesBenchmarkDeployment( + private val sutBeforeActions: List<Action>, + private val sutAfterActions: List<Action>, + private val loadGenBeforeActions: List<Action>, + private val loadGenAfterActions: List<Action>, val appResources: List<KubernetesResource>, val loadGenResources: List<KubernetesResource>, private val loadGenerationDelay: Long, @@ -45,10 +49,13 @@ class KubernetesBenchmarkDeployment( val kafkaTopics = this.topics.filter { !it.removeOnly } .map { NewTopic(it.name, it.numPartitions, it.replicationFactor) } kafkaController.createTopics(kafkaTopics) + sutBeforeActions.forEach { it.exec(client = client) } appResources.forEach { kubernetesManager.deploy(it) } logger.info { "Wait ${this.loadGenerationDelay} seconds before starting the load generator." } Thread.sleep(Duration.ofSeconds(this.loadGenerationDelay).toMillis()) + loadGenBeforeActions.forEach { it.exec(client = client) } loadGenResources.forEach { kubernetesManager.deploy(it) } + } /** @@ -59,7 +66,9 @@ class KubernetesBenchmarkDeployment( */ override fun teardown() { loadGenResources.forEach { kubernetesManager.remove(it) } + loadGenAfterActions.forEach { it.exec(client = client) } appResources.forEach { kubernetesManager.remove(it) } + sutAfterActions.forEach { it.exec(client = client) } kafkaController.removeTopics(this.topics.map { topic -> topic.name }) ResourceByLabelHandler(client).removePods( labelName = LAG_EXPORTER_POD_LABEL_NAME, diff --git a/theodolite/src/main/kotlin/theodolite/benchmark/ResourceSets.kt b/theodolite/src/main/kotlin/theodolite/benchmark/ResourceSets.kt index a4fe443e7f304c411792ee06c32592ba3c9e692a..b6364949727d4ea134e348ce8b79e22334753c1c 100644 --- a/theodolite/src/main/kotlin/theodolite/benchmark/ResourceSets.kt +++ b/theodolite/src/main/kotlin/theodolite/benchmark/ResourceSets.kt @@ -6,7 +6,6 @@ import com.fasterxml.jackson.databind.annotation.JsonDeserialize import io.fabric8.kubernetes.api.model.KubernetesResource import io.fabric8.kubernetes.client.NamespacedKubernetesClient import io.quarkus.runtime.annotations.RegisterForReflection -import mu.KotlinLogging import theodolite.util.DeploymentFailedException @JsonDeserialize @@ -14,7 +13,7 @@ import theodolite.util.DeploymentFailedException class ResourceSets: KubernetesResource { @JsonProperty("configMap") @JsonInclude(JsonInclude.Include.NON_NULL) - var configMap: ConfigMapResourceSet? = null + var configMap: ConfigMapResourceSet? = null @JsonProperty("fileSystem") @JsonInclude(JsonInclude.Include.NON_NULL) diff --git a/theodolite/src/main/kotlin/theodolite/benchmark/Resources.kt b/theodolite/src/main/kotlin/theodolite/benchmark/Resources.kt index 0187735b8fd273419874942cb7ed68797732c84c..fccbd2c41a646a2ef85ef77c65763e7f793d1e91 100644 --- a/theodolite/src/main/kotlin/theodolite/benchmark/Resources.kt +++ b/theodolite/src/main/kotlin/theodolite/benchmark/Resources.kt @@ -1,7 +1,6 @@ package theodolite.benchmark import com.fasterxml.jackson.databind.annotation.JsonDeserialize -import com.fasterxml.jackson.databind.annotation.JsonSerialize import io.quarkus.runtime.annotations.RegisterForReflection @JsonDeserialize @@ -9,5 +8,7 @@ import io.quarkus.runtime.annotations.RegisterForReflection class Resources { lateinit var resources: List<ResourceSets> + lateinit var beforeActions: List<Action> + lateinit var afterActions: List<Action> } \ No newline at end of file diff --git a/theodolite/src/main/kotlin/theodolite/evaluation/AnalysisExecutor.kt b/theodolite/src/main/kotlin/theodolite/evaluation/AnalysisExecutor.kt index 281c68e318784ee8206473cd014f814b3f5152a9..be3e48be406b631e03ca2fd32909a442b592f259 100644 --- a/theodolite/src/main/kotlin/theodolite/evaluation/AnalysisExecutor.kt +++ b/theodolite/src/main/kotlin/theodolite/evaluation/AnalysisExecutor.kt @@ -1,6 +1,5 @@ package theodolite.evaluation -import mu.KotlinLogging import theodolite.benchmark.BenchmarkExecution import theodolite.util.EvaluationFailedException import theodolite.util.IOHandler @@ -12,8 +11,6 @@ import java.time.Instant import java.util.* import java.util.regex.Pattern -private val logger = KotlinLogging.logger {} - /** * Contains the analysis. Fetches a metric from Prometheus, documents it, and evaluates it. * @param slo Slo that is used for the analysis. @@ -37,7 +34,6 @@ class AnalysisExecutor( * @return true if the experiment succeeded. */ fun analyze(load: LoadDimension, res: Resource, executionIntervals: List<Pair<Instant, Instant>>): Boolean { - var result: Boolean var repetitionCounter = 1 try { @@ -50,7 +46,7 @@ class AnalysisExecutor( fetcher.fetchMetric( start = interval.first, end = interval.second, - query = SloConfigHandler.getQueryString(sloType = slo.sloType) + query = SloConfigHandler.getQueryString(slo = slo) ) } @@ -68,12 +64,11 @@ class AnalysisExecutor( load = load ) - result = sloChecker.evaluate(prometheusData) + return sloChecker.evaluate(prometheusData) } catch (e: Exception) { - throw EvaluationFailedException("Evaluation failed for resource '${res.get()}' and load '${load.get()} ", e) + throw EvaluationFailedException("Evaluation failed for resource '${res.get()}' and load '${load.get()}", e) } - return result } private val NONLATIN: Pattern = Pattern.compile("[^\\w-]") @@ -83,6 +78,6 @@ class AnalysisExecutor( val noWhitespace: String = WHITESPACE.matcher(this).replaceAll("-") val normalized: String = Normalizer.normalize(noWhitespace, Normalizer.Form.NFD) val slug: String = NONLATIN.matcher(normalized).replaceAll("") - return slug.toLowerCase(Locale.ENGLISH) + return slug.lowercase(Locale.ENGLISH) } } diff --git a/theodolite/src/main/kotlin/theodolite/evaluation/ExternalSloChecker.kt b/theodolite/src/main/kotlin/theodolite/evaluation/ExternalSloChecker.kt index d646286b70bc5880df1f603afdc2bda22bcc3259..7fb5417e200f64b0db74a8bebe69a751c5d484b8 100644 --- a/theodolite/src/main/kotlin/theodolite/evaluation/ExternalSloChecker.kt +++ b/theodolite/src/main/kotlin/theodolite/evaluation/ExternalSloChecker.kt @@ -1,6 +1,5 @@ package theodolite.evaluation -import com.google.gson.Gson import khttp.post import mu.KotlinLogging import theodolite.util.PrometheusResponse @@ -9,13 +8,11 @@ import java.net.ConnectException /** * [SloChecker] that uses an external source for the concrete evaluation. * @param externalSlopeURL The url under which the external evaluation can be reached. - * @param threshold threshold that should not be exceeded to evaluate to true. - * @param warmup time that is not taken into consideration for the evaluation. + * @param metadata metadata passed to the external SLO checker. */ class ExternalSloChecker( private val externalSlopeURL: String, - private val threshold: Int, - private val warmup: Int + private val metadata: Map<String, Any> ) : SloChecker { private val RETRIES = 2 @@ -28,29 +25,25 @@ class ExternalSloChecker( * Will try to reach the external service until success or [RETRIES] times. * Each request will timeout after [TIMEOUT]. * - * @param start point of the experiment. - * @param end point of the experiment. * @param fetchedData that should be evaluated - * @return true if the experiment was successful(the threshold was not exceeded. + * @return true if the experiment was successful (the threshold was not exceeded). * @throws ConnectException if the external service could not be reached. */ override fun evaluate(fetchedData: List<PrometheusResponse>): Boolean { var counter = 0 - val data = SloJson.Builder() - .results(fetchedData.map { it.data?.result }) - .addMetadata("threshold", threshold) - .addMetadata( "warmup", warmup) - .build() - .toJson() + val data = SloJson( + results = fetchedData.map { it.data?.result ?: listOf() }, + metadata = metadata + ).toJson() while (counter < RETRIES) { val result = post(externalSlopeURL, data = data, timeout = TIMEOUT) if (result.statusCode != 200) { counter++ - logger.error { "Could not reach external SLO checker" } + logger.error { "Could not reach external SLO checker." } } else { val booleanResult = result.text.toBoolean() - logger.info { "SLO checker result is: $booleanResult" } + logger.info { "SLO checker result is: $booleanResult." } return booleanResult } } diff --git a/theodolite/src/main/kotlin/theodolite/evaluation/SloChecker.kt b/theodolite/src/main/kotlin/theodolite/evaluation/SloChecker.kt index af70fa5dca3f0556d38791ed96c2af30b9a44a68..82f903f5be868731d58ebefd6279d5d438bd5eab 100644 --- a/theodolite/src/main/kotlin/theodolite/evaluation/SloChecker.kt +++ b/theodolite/src/main/kotlin/theodolite/evaluation/SloChecker.kt @@ -11,7 +11,7 @@ interface SloChecker { * Evaluates [fetchedData] and returns if the experiments were successful. * * @param fetchedData from Prometheus that will be evaluated. - * @return true if experiments were successful. Otherwise false. + * @return true if experiments were successful. Otherwise, false. */ fun evaluate(fetchedData: List<PrometheusResponse>): Boolean } diff --git a/theodolite/src/main/kotlin/theodolite/evaluation/SloCheckerFactory.kt b/theodolite/src/main/kotlin/theodolite/evaluation/SloCheckerFactory.kt index 64f9110cd931feef41dc65f88d6623e82f4e03a2..f57cebfcb13d0e86919ec15a0a479d1258e318a6 100644 --- a/theodolite/src/main/kotlin/theodolite/evaluation/SloCheckerFactory.kt +++ b/theodolite/src/main/kotlin/theodolite/evaluation/SloCheckerFactory.kt @@ -43,15 +43,32 @@ class SloCheckerFactory { properties: MutableMap<String, String>, load: LoadDimension ): SloChecker { - return when (sloType.toLowerCase()) { - SloTypes.LAG_TREND.value, SloTypes.DROPPED_RECORDS.value -> ExternalSloChecker( + return when (SloTypes.from(sloType)) { + SloTypes.GENERIC -> ExternalSloChecker( externalSlopeURL = properties["externalSloUrl"] ?: throw IllegalArgumentException("externalSloUrl expected"), - threshold = properties["threshold"]?.toInt() ?: throw IllegalArgumentException("threshold expected"), - warmup = properties["warmup"]?.toInt() ?: throw IllegalArgumentException("warmup expected") + // TODO validate property contents + metadata = mapOf( + "warmup" to (properties["warmup"]?.toInt() ?: throw IllegalArgumentException("warmup expected")), + "queryAggregation" to (properties["queryAggregation"] + ?: throw IllegalArgumentException("queryAggregation expected")), + "repetitionAggregation" to (properties["repetitionAggregation"] + ?: throw IllegalArgumentException("repetitionAggregation expected")), + "operator" to (properties["operator"] ?: throw IllegalArgumentException("operator expected")), + "threshold" to (properties["threshold"]?.toInt() + ?: throw IllegalArgumentException("threshold expected")) + ) ) - - SloTypes.LAG_TREND_RATIO.value, SloTypes.DROPPED_RECORDS_RATIO.value -> { + SloTypes.LAG_TREND, SloTypes.DROPPED_RECORDS -> ExternalSloChecker( + externalSlopeURL = properties["externalSloUrl"] + ?: throw IllegalArgumentException("externalSloUrl expected"), + metadata = mapOf( + "warmup" to (properties["warmup"]?.toInt() ?: throw IllegalArgumentException("warmup expected")), + "threshold" to (properties["threshold"]?.toInt() + ?: throw IllegalArgumentException("threshold expected")) + ) + ) + SloTypes.LAG_TREND_RATIO, SloTypes.DROPPED_RECORDS_RATIO -> { val thresholdRatio = properties["ratio"]?.toDouble() ?: throw IllegalArgumentException("ratio for threshold expected") @@ -64,11 +81,13 @@ class SloCheckerFactory { ExternalSloChecker( externalSlopeURL = properties["externalSloUrl"] ?: throw IllegalArgumentException("externalSloUrl expected"), - threshold = threshold, - warmup = properties["warmup"]?.toInt() ?: throw IllegalArgumentException("warmup expected") + metadata = mapOf( + "warmup" to (properties["warmup"]?.toInt() + ?: throw IllegalArgumentException("warmup expected")), + "threshold" to threshold + ) ) } - else -> throw IllegalArgumentException("Slotype $sloType not found.") } } } diff --git a/theodolite/src/main/kotlin/theodolite/evaluation/SloConfigHandler.kt b/theodolite/src/main/kotlin/theodolite/evaluation/SloConfigHandler.kt index 93929218c822030ff065dafb19cce1fbaa69a179..425a4f3b0634d53f8b1d5c4b8abdba9ca81c3f2b 100644 --- a/theodolite/src/main/kotlin/theodolite/evaluation/SloConfigHandler.kt +++ b/theodolite/src/main/kotlin/theodolite/evaluation/SloConfigHandler.kt @@ -1,5 +1,6 @@ package theodolite.evaluation +import theodolite.benchmark.BenchmarkExecution import theodolite.util.InvalidPatcherConfigurationException import javax.enterprise.context.ApplicationScoped @@ -7,13 +8,14 @@ private const val CONSUMER_LAG_QUERY = "sum by(group)(kafka_consumergroup_group_ private const val DROPPED_RECORDS_QUERY = "sum by(job) (kafka_streams_stream_task_metrics_dropped_records_total>=0)" @ApplicationScoped -class SloConfigHandler() { +class SloConfigHandler { companion object { - fun getQueryString(sloType: String): String { - return when (sloType.toLowerCase()) { + fun getQueryString(slo: BenchmarkExecution.Slo): String { + return when (slo.sloType.toLowerCase()) { + SloTypes.GENERIC.value -> slo.properties["promQLQuery"] ?: throw IllegalArgumentException("promQLQuery expected") SloTypes.LAG_TREND.value, SloTypes.LAG_TREND_RATIO.value -> CONSUMER_LAG_QUERY SloTypes.DROPPED_RECORDS.value, SloTypes.DROPPED_RECORDS_RATIO.value -> DROPPED_RECORDS_QUERY - else -> throw InvalidPatcherConfigurationException("Could not find Prometheus query string for slo type $sloType") + else -> throw InvalidPatcherConfigurationException("Could not find Prometheus query string for slo type $slo.sloType") } } } diff --git a/theodolite/src/main/kotlin/theodolite/evaluation/SloJson.kt b/theodolite/src/main/kotlin/theodolite/evaluation/SloJson.kt index fc9fe17b255dbb5ae68881538d8d2a50a191edb1..205389276f2c1adef6cba6c745baf99744c8d2dd 100644 --- a/theodolite/src/main/kotlin/theodolite/evaluation/SloJson.kt +++ b/theodolite/src/main/kotlin/theodolite/evaluation/SloJson.kt @@ -3,61 +3,17 @@ package theodolite.evaluation import com.google.gson.Gson import theodolite.util.PromResult -class SloJson private constructor( - val results: List<List<PromResult>?>? = null, - var metadata: MutableMap<String, Any>? = null +class SloJson constructor( + val results: List<List<PromResult>>, + var metadata: Map<String, Any> ) { - data class Builder( - var results:List<List<PromResult>?>? = null, - var metadata: MutableMap<String, Any>? = null - ) { - - /** - * Set the results - * - * @param results list of prometheus results - */ - fun results(results: List<List<PromResult>?>) = apply { this.results = results } - - /** - * Add metadata as key value pairs - * - * @param key key of the metadata to be added - * @param value value of the metadata to be added - */ - fun addMetadata(key: String, value: String) = apply { - if (this.metadata.isNullOrEmpty()) { - this.metadata = mutableMapOf(key to value) - } else { - this.metadata!![key] = value - } - } - - /** - * Add metadata as key value pairs - * - * @param key key of the metadata to be added - * @param value value of the metadata to be added - */ - fun addMetadata(key: String, value: Int) = apply { - if (this.metadata.isNullOrEmpty()) { - this.metadata = mutableMapOf(key to value) - } else { - this.metadata!![key] = value - } - } - - fun build() = SloJson( - results = results, - metadata = metadata + fun toJson(): String { + return Gson().toJson( + mapOf( + "results" to this.results, + "metadata" to this.metadata + ) ) } - - fun toJson(): String { - return Gson().toJson(mapOf( - "results" to this.results, - "metadata" to this.metadata - )) - } } \ No newline at end of file diff --git a/theodolite/src/main/kotlin/theodolite/evaluation/SloTypes.kt b/theodolite/src/main/kotlin/theodolite/evaluation/SloTypes.kt index ac9de35861b0bd9c012bfb0b8cfcb2e1aa5aed68..812b50de779d2f3abfd5788b8aee145edc959e6c 100644 --- a/theodolite/src/main/kotlin/theodolite/evaluation/SloTypes.kt +++ b/theodolite/src/main/kotlin/theodolite/evaluation/SloTypes.kt @@ -1,10 +1,14 @@ package theodolite.evaluation enum class SloTypes(val value: String) { + GENERIC("generic"), LAG_TREND("lag trend"), LAG_TREND_RATIO("lag trend ratio"), DROPPED_RECORDS("dropped records"), - DROPPED_RECORDS_RATIO("dropped records ratio") - + DROPPED_RECORDS_RATIO("dropped records ratio"); + companion object { + fun from(type: String): SloTypes = + values().find { it.value == type } ?: throw IllegalArgumentException("Requested SLO does not exist") + } } \ No newline at end of file diff --git a/theodolite/src/main/kotlin/theodolite/execution/ExecutionModes.kt b/theodolite/src/main/kotlin/theodolite/execution/ExecutionModes.kt index bf947be01b534fd000d3967f0b72ef25978d4110..370b87e062d942a512e059ee4041dca776376ddf 100644 --- a/theodolite/src/main/kotlin/theodolite/execution/ExecutionModes.kt +++ b/theodolite/src/main/kotlin/theodolite/execution/ExecutionModes.kt @@ -2,6 +2,5 @@ package theodolite.execution enum class ExecutionModes(val value: String) { OPERATOR("operator"), - YAML_EXECUTOR("yaml-executor"), STANDALONE("standalone") } \ No newline at end of file diff --git a/theodolite/src/main/kotlin/theodolite/execution/Main.kt b/theodolite/src/main/kotlin/theodolite/execution/Main.kt index 11f696ddd739e987e92ecec724390948714d898b..17b3d4e7b86f9e430abfb6093e79aa7865cd5923 100644 --- a/theodolite/src/main/kotlin/theodolite/execution/Main.kt +++ b/theodolite/src/main/kotlin/theodolite/execution/Main.kt @@ -17,8 +17,8 @@ object Main { val mode = Configuration.EXECUTION_MODE logger.info { "Start Theodolite with mode $mode" } - when (mode.toLowerCase()) { - ExecutionModes.STANDALONE.value, ExecutionModes.YAML_EXECUTOR.value -> TheodoliteStandalone().start() // TODO remove standalone (#209) + when (mode.lowercase()) { + ExecutionModes.STANDALONE.value -> TheodoliteStandalone().start() ExecutionModes.OPERATOR.value -> TheodoliteOperator().start() else -> { logger.error { "MODE $mode not found" } diff --git a/theodolite/src/main/kotlin/theodolite/execution/Shutdown.kt b/theodolite/src/main/kotlin/theodolite/execution/Shutdown.kt index 6dedc94af864269d7d15929c69ec54aa384fc8e3..29ac39c122f68636e08c6c5ecd5a6c01751edafb 100644 --- a/theodolite/src/main/kotlin/theodolite/execution/Shutdown.kt +++ b/theodolite/src/main/kotlin/theodolite/execution/Shutdown.kt @@ -14,14 +14,13 @@ private val logger = KotlinLogging.logger {} * @property benchmarkExecution * @property benchmark */ -class Shutdown(private val benchmarkExecution: BenchmarkExecution, private val benchmark: KubernetesBenchmark) : - Thread() { +class Shutdown(private val benchmarkExecution: BenchmarkExecution, private val benchmark: KubernetesBenchmark) { /** * Run * Delete all Kubernetes resources which are related to the execution and the benchmark. */ - override fun run() { + fun run() { // Build Configuration to teardown try { logger.info { "Received shutdown signal -> Shutting down" } @@ -34,9 +33,7 @@ class Shutdown(private val benchmarkExecution: BenchmarkExecution, private val b afterTeardownDelay = 5L ) deployment.teardown() - logger.info { - "Finished teardown of all benchmark resources." - } + logger.info { "Finished teardown of all benchmark resources." } } catch (e: Exception) { logger.warn { "Could not delete all specified resources from Kubernetes. " + diff --git a/theodolite/src/main/kotlin/theodolite/execution/TheodoliteExecutor.kt b/theodolite/src/main/kotlin/theodolite/execution/TheodoliteExecutor.kt index 315d1cf1afe7fd2ffbfc1c437d725d4dff29f637..8596576e0a7984c32b6dabf90c6bbf06961d2bb1 100644 --- a/theodolite/src/main/kotlin/theodolite/execution/TheodoliteExecutor.kt +++ b/theodolite/src/main/kotlin/theodolite/execution/TheodoliteExecutor.kt @@ -137,6 +137,12 @@ class TheodoliteExecutor( config.compositeStrategy.benchmarkExecutor.results, "${resultsFolder}exp${this.config.executionId}-result" ) + // Create expXYZ_demand.csv file + ioHandler.writeToCSVFile( + "${resultsFolder}exp${this.config.executionId}_demand", + calculateDemandMetric(config.loads, config.compositeStrategy.benchmarkExecutor.results), + listOf("load","resources") + ) } kubernetesBenchmark.teardownInfrastructure() } @@ -151,4 +157,8 @@ class TheodoliteExecutor( return executionID } + private fun calculateDemandMetric(loadDimensions: List<LoadDimension>, results: Results): List<List<String>> { + return loadDimensions.map { listOf(it.get().toString(), results.getMinRequiredInstances(it).get().toString()) } + } + } diff --git a/theodolite/src/main/kotlin/theodolite/execution/operator/AbstractStateHandler.kt b/theodolite/src/main/kotlin/theodolite/execution/operator/AbstractStateHandler.kt index 0b5d6040bdea1316f8fb55bcc3f204c5443f6eee..93536282e2eefe6e476c3fde3fd86860fa24dcc3 100644 --- a/theodolite/src/main/kotlin/theodolite/execution/operator/AbstractStateHandler.kt +++ b/theodolite/src/main/kotlin/theodolite/execution/operator/AbstractStateHandler.kt @@ -2,8 +2,6 @@ package theodolite.execution.operator import io.fabric8.kubernetes.api.model.HasMetadata import io.fabric8.kubernetes.api.model.KubernetesResourceList -import io.fabric8.kubernetes.api.model.Namespaced -import io.fabric8.kubernetes.client.CustomResource import io.fabric8.kubernetes.client.KubernetesClientException import io.fabric8.kubernetes.client.NamespacedKubernetesClient import io.fabric8.kubernetes.client.dsl.MixedOperation @@ -12,30 +10,30 @@ import mu.KotlinLogging import java.lang.Thread.sleep private val logger = KotlinLogging.logger {} -abstract class AbstractStateHandler<T, L, D>( +private const val MAX_RETRIES: Int = 5 + +abstract class AbstractStateHandler<S : HasMetadata>( private val client: NamespacedKubernetesClient, - private val crd: Class<T>, - private val crdList: Class<L> -) : StateHandler<T> where T : CustomResource<*, *>?, T : HasMetadata, T : Namespaced, L : KubernetesResourceList<T> { + private val crd: Class<S> +) { - private val crdClient: MixedOperation<T, L, Resource<T>> = - this.client.customResources(this.crd, this.crdList) + private val crdClient: MixedOperation<S, KubernetesResourceList<S>, Resource<S>> = this.client.resources(this.crd) @Synchronized - override fun setState(resourceName: String, f: (T) -> T?) { + fun setState(resourceName: String, setter: (S) -> S?) { try { - this.crdClient - .list().items - .filter { it.metadata.name == resourceName } - .map { customResource -> f(customResource) } - .forEach { this.crdClient.updateStatus(it) } + val resource = this.crdClient.withName(resourceName).get() + if (resource != null) { + val resourcePatched = setter(resource) + this.crdClient.patchStatus(resourcePatched) + } } catch (e: KubernetesClientException) { - logger.warn { "Status cannot be set for resource $resourceName" } + logger.warn(e) { "Status cannot be set for resource $resourceName." } } } @Synchronized - override fun getState(resourceName: String, f: (T) -> String?): String? { + fun getState(resourceName: String, f: (S) -> String?): String? { return this.crdClient .list().items .filter { it.metadata.name == resourceName } @@ -44,13 +42,13 @@ abstract class AbstractStateHandler<T, L, D>( } @Synchronized - override fun blockUntilStateIsSet( + fun blockUntilStateIsSet( resourceName: String, desiredStatusString: String, - f: (T) -> String?, - maxTries: Int + f: (S) -> String?, + maxRetries: Int = MAX_RETRIES ): Boolean { - for (i in 0.rangeTo(maxTries)) { + for (i in 0.rangeTo(maxRetries)) { val currentStatus = getState(resourceName, f) if (currentStatus == desiredStatusString) { return true diff --git a/theodolite/src/main/kotlin/theodolite/execution/operator/BenchmarkStateChecker.kt b/theodolite/src/main/kotlin/theodolite/execution/operator/BenchmarkStateChecker.kt new file mode 100644 index 0000000000000000000000000000000000000000..40f5b7ddbbfc9da4514b8a88946d97149b94b390 --- /dev/null +++ b/theodolite/src/main/kotlin/theodolite/execution/operator/BenchmarkStateChecker.kt @@ -0,0 +1,201 @@ +package theodolite.execution.operator + +import io.fabric8.kubernetes.api.model.apps.Deployment +import io.fabric8.kubernetes.api.model.apps.StatefulSet +import io.fabric8.kubernetes.client.NamespacedKubernetesClient +import io.fabric8.kubernetes.client.dsl.MixedOperation +import io.fabric8.kubernetes.client.dsl.Resource +import theodolite.benchmark.Action +import theodolite.benchmark.ActionSelector +import theodolite.benchmark.KubernetesBenchmark +import theodolite.benchmark.ResourceSets +import theodolite.model.crd.BenchmarkCRD +import theodolite.model.crd.BenchmarkState +import theodolite.model.crd.KubernetesBenchmarkList + +class BenchmarkStateChecker( + private val benchmarkCRDClient: MixedOperation<BenchmarkCRD, KubernetesBenchmarkList, Resource<BenchmarkCRD>>, + private val benchmarkStateHandler: BenchmarkStateHandler, + private val client: NamespacedKubernetesClient + +) { + + fun start(running: Boolean) { + Thread { + while (running) { + updateBenchmarkStatus() + Thread.sleep(100 * 1) + } + }.start() + } + + /** + * Checks and updates the states off all deployed benchmarks. + * + */ + fun updateBenchmarkStatus() { + this.benchmarkCRDClient + .list() + .items + .map { it.spec.name = it.metadata.name; it } + .map { Pair(it, checkState(it.spec)) } + .forEach { setState(it.first, it.second) } + } + + private fun setState(resource: BenchmarkCRD, state: BenchmarkState) { + benchmarkStateHandler.setResourceSetState(resource.spec.name, state) + } + + /** + * Checks the state of the benchmark. + * + * @param benchmark The benchmark to check + * @return [BenchmarkStates.READY] iff all resource could be loaded and all actions could be executed, [BenchmarkStates.PENDING] else + */ + private fun checkState(benchmark: KubernetesBenchmark): BenchmarkState { + return if (checkActionCommands(benchmark) == BenchmarkState.READY + && checkResources(benchmark) == BenchmarkState.READY + ) { + BenchmarkState.READY + } else { + BenchmarkState.PENDING + } + } + + /** + * Checks if all specified actions of the given benchmark could be executed or not + * + * @param benchmark The benchmark to check + * @return The state of this benchmark. [BenchmarkStates.READY] if all actions could be executed, else [BenchmarkStates.PENDING] + */ + private fun checkActionCommands(benchmark: KubernetesBenchmark): BenchmarkState { + return if (checkIfActionPossible(benchmark.infrastructure.resources, benchmark.sut.beforeActions) + && checkIfActionPossible(benchmark.infrastructure.resources, benchmark.sut.afterActions) + && checkIfActionPossible(benchmark.infrastructure.resources, benchmark.loadGenerator.beforeActions) + && checkIfActionPossible(benchmark.infrastructure.resources, benchmark.loadGenerator.beforeActions) + ) { + BenchmarkState.READY + } else { + BenchmarkState.PENDING + } + } + + /** + * Action commands are called on a pod. To verify that an action command can be executed, + * it checks that the specified pods are either currently running in the cluster or + * have been specified as infrastructure in the benchmark. + * + * @param benchmark the benchmark to check + * @param actions the actions + * @return true if all actions could be executed, else false + */ + private fun checkIfActionPossible(resourcesSets: List<ResourceSets>, actions: List<Action>): Boolean { + return !actions.map { + checkIfResourceIsDeployed(it.selector) || checkIfResourceIsInfrastructure(resourcesSets, it.selector) + }.contains(false) + } + + /** + * Checks for the given actionSelector whether the required resources are already deployed in the cluster or not + * + * @param selector the actionSelector to check + * @return true if the required resources are found, else false + */ + fun checkIfResourceIsDeployed(selector: ActionSelector): Boolean { + val pods = this.client + .pods() + .withLabels(selector.pod.matchLabels) + .list() + .items + + return if (pods.isNotEmpty() && selector.container.isNotEmpty()) { + pods.map { pod -> + pod + .spec + .containers + .map { it.name } + .contains(selector.container) + }.contains(true) + } else { + pods.isNotEmpty() + } + } + + /** + * Checks for the given actionSelector whether the required resources are specified as infrastructure or not + * + * @param benchmark the benchmark to check + * @param selector the actionSelector to check + * @return true if the required resources are found, else false + */ + fun checkIfResourceIsInfrastructure(resourcesSets: List<ResourceSets>, selector: ActionSelector): Boolean { + val resources = resourcesSets.flatMap { it.loadResourceSet(this.client) } + if (resources.isEmpty()) { + return false + } + + var podExist = resources.map { it.second } + .filterIsInstance<Deployment>() + .filter { it.metadata.labels.containsMatchLabels(selector.pod.matchLabels) } + .any { + if (selector.container.isNotEmpty()) { + it.spec.template.spec.containers.map { it.name }.contains(selector.container) + } else { + true + } + } + + if (podExist) { + return true + } + + podExist = resources.map { it.second } + .filterIsInstance<StatefulSet>() + .filter { it.metadata.labels.containsMatchLabels(selector.pod.matchLabels) } + .any { + if (selector.container.isNotEmpty()) { + it.spec.template.spec.containers.map { it.name }.contains(selector.container) + } else { + true + } + } + + if (podExist) { + return true + } + + return false + } + + /** + * Checks if it is possible to load all specified Kubernetes manifests. + * + * @param benchmark The benchmark to check + * @return The state of this benchmark. [BenchmarkState.READY] if all resources could be loaded, else [BenchmarkState.PENDING] + */ + fun checkResources(benchmark: KubernetesBenchmark): BenchmarkState { + return try { + val appResources = + benchmark.loadKubernetesResources(resourceSet = benchmark.sut.resources) + val loadGenResources = + benchmark.loadKubernetesResources(resourceSet = benchmark.loadGenerator.resources) + if (appResources.isNotEmpty() && loadGenResources.isNotEmpty()) { + BenchmarkState.READY + } else { + BenchmarkState.PENDING + } + } catch (e: Exception) { + BenchmarkState.PENDING + } + } +} + +private fun <K, V> MutableMap<K, V>.containsMatchLabels(matchLabels: MutableMap<V, V>): Boolean { + for (kv in matchLabels) { + if (kv.value != this[kv.key as K]) { + return false + } + } + return true +} + diff --git a/theodolite/src/main/kotlin/theodolite/execution/operator/BenchmarkStateHandler.kt b/theodolite/src/main/kotlin/theodolite/execution/operator/BenchmarkStateHandler.kt index adca2a8b7fdb9b3e610f15e57c011679869df14c..3b46859737d86a34b58a5514c0ae31ae215b9c7d 100644 --- a/theodolite/src/main/kotlin/theodolite/execution/operator/BenchmarkStateHandler.kt +++ b/theodolite/src/main/kotlin/theodolite/execution/operator/BenchmarkStateHandler.kt @@ -4,25 +4,24 @@ import io.fabric8.kubernetes.client.NamespacedKubernetesClient import theodolite.model.crd.* class BenchmarkStateHandler(val client: NamespacedKubernetesClient) : - AbstractStateHandler<BenchmarkCRD, KubernetesBenchmarkList, ExecutionStatus>( + AbstractStateHandler<BenchmarkCRD>( client = client, - crd = BenchmarkCRD::class.java, - crdList = KubernetesBenchmarkList::class.java + crd = BenchmarkCRD::class.java ) { - private fun getBenchmarkResourceState() = { cr: BenchmarkCRD -> cr.status.resourceSetsState } + private fun getBenchmarkResourceState() = { cr: BenchmarkCRD -> cr.status.resourceSetsState.value } - fun setResourceSetState(resourceName: String, status: BenchmarkStates): Boolean { - setState(resourceName) { cr -> cr.status.resourceSetsState = status.value; cr } + fun setResourceSetState(resourceName: String, status: BenchmarkState): Boolean { + setState(resourceName) { cr -> cr.status.resourceSetsState = status; cr } return blockUntilStateIsSet(resourceName, status.value, getBenchmarkResourceState()) } - fun getResourceSetState(resourceName: String): ExecutionStates { + fun getResourceSetState(resourceName: String): ExecutionState { val status = this.getState(resourceName, getBenchmarkResourceState()) return if (status.isNullOrBlank()) { - ExecutionStates.NO_STATE + ExecutionState.NO_STATE } else { - ExecutionStates.values().first { it.value == status } + ExecutionState.values().first { it.value == status } } } } \ No newline at end of file diff --git a/theodolite/src/main/kotlin/theodolite/execution/operator/ClusterSetup.kt b/theodolite/src/main/kotlin/theodolite/execution/operator/ClusterSetup.kt index efca98f8bf72024daa0367c6c57574f0644872e4..885315df6eda0d91a27567720056738b997a8ec1 100644 --- a/theodolite/src/main/kotlin/theodolite/execution/operator/ClusterSetup.kt +++ b/theodolite/src/main/kotlin/theodolite/execution/operator/ClusterSetup.kt @@ -3,14 +3,11 @@ package theodolite.execution.operator import io.fabric8.kubernetes.client.NamespacedKubernetesClient import io.fabric8.kubernetes.client.dsl.MixedOperation import io.fabric8.kubernetes.client.dsl.Resource -import mu.KotlinLogging import theodolite.execution.Shutdown import theodolite.k8s.K8sContextFactory import theodolite.k8s.ResourceByLabelHandler import theodolite.model.crd.* -private val logger = KotlinLogging.logger {} - class ClusterSetup( private val executionCRDClient: MixedOperation<ExecutionCRD, BenchmarkExecutionList, Resource<ExecutionCRD>>, private val benchmarkCRDClient: MixedOperation<BenchmarkCRD, KubernetesBenchmarkList, Resource<BenchmarkCRD>>, @@ -41,7 +38,7 @@ class ClusterSetup( .list() .items .asSequence() - .filter { it.status.executionState == ExecutionStates.RUNNING.value } + .filter { it.status.executionState == ExecutionState.RUNNING } .forEach { execution -> val benchmark = benchmarkCRDClient .inNamespace(client.namespace) @@ -52,9 +49,9 @@ class ClusterSetup( if (benchmark != null) { execution.spec.name = execution.metadata.name benchmark.spec.name = benchmark.metadata.name - Shutdown(execution.spec, benchmark.spec).start() + Shutdown(execution.spec, benchmark.spec).run() } else { - throw IllegalStateException("Execution with state ${ExecutionStates.RUNNING.value} was found, but no corresponding benchmark. " + + throw IllegalStateException("Execution with state ${ExecutionState.RUNNING.value} was found, but no corresponding benchmark. " + "Could not initialize cluster.") } } diff --git a/theodolite/src/main/kotlin/theodolite/execution/operator/ExecutionEventHandler.kt b/theodolite/src/main/kotlin/theodolite/execution/operator/ExecutionEventHandler.kt index 16c4ea98ba614bb3dcdd7d9f486f4e65ae70d380..25c627a350e3939530c4b453ec6db846b546cc08 100644 --- a/theodolite/src/main/kotlin/theodolite/execution/operator/ExecutionEventHandler.kt +++ b/theodolite/src/main/kotlin/theodolite/execution/operator/ExecutionEventHandler.kt @@ -17,25 +17,26 @@ private val logger = KotlinLogging.logger {} * @see TheodoliteController * @see BenchmarkExecution */ -class ExecutionHandler( +class ExecutionEventHandler( private val controller: TheodoliteController, private val stateHandler: ExecutionStateHandler ) : ResourceEventHandler<ExecutionCRD> { + private val gson: Gson = GsonBuilder().enableComplexMapKeySerialization().create() /** - * Add an execution to the end of the queue of the TheodoliteController. + * Adds an execution to the end of the queue of the TheodoliteController. * - * @param ExecutionCRD the execution to add + * @param execution the execution to add */ @Synchronized override fun onAdd(execution: ExecutionCRD) { - logger.info { "Add execution ${execution.metadata.name}" } + logger.info { "Add execution ${execution.metadata.name}." } execution.spec.name = execution.metadata.name when (this.stateHandler.getExecutionState(execution.metadata.name)) { - ExecutionStates.NO_STATE -> this.stateHandler.setExecutionState(execution.spec.name, ExecutionStates.PENDING) - ExecutionStates.RUNNING -> { - this.stateHandler.setExecutionState(execution.spec.name, ExecutionStates.RESTART) + ExecutionState.NO_STATE -> this.stateHandler.setExecutionState(execution.spec.name, ExecutionState.PENDING) + ExecutionState.RUNNING -> { + this.stateHandler.setExecutionState(execution.spec.name, ExecutionState.RESTART) if (this.controller.isExecutionRunning(execution.spec.name)) { this.controller.stop(restart = true) } @@ -44,29 +45,29 @@ class ExecutionHandler( } /** - * Updates an execution. If this execution is running at the time this function is called, it is stopped and + * To be called on update of an execution. If this execution is running at the time this function is called, it is stopped and * added to the beginning of the queue of the TheodoliteController. * Otherwise, it is just added to the beginning of the queue. * - * @param oldExecutionCRD the old execution - * @param newExecutionCRD the new execution + * @param oldExecution the old execution + * @param newExecution the new execution */ @Synchronized override fun onUpdate(oldExecution: ExecutionCRD, newExecution: ExecutionCRD) { newExecution.spec.name = newExecution.metadata.name oldExecution.spec.name = oldExecution.metadata.name if (gson.toJson(oldExecution.spec) != gson.toJson(newExecution.spec)) { - logger.info { "Receive update event for execution ${oldExecution.metadata.name}" } + logger.info { "Receive update event for execution ${oldExecution.metadata.name}." } when (this.stateHandler.getExecutionState(newExecution.metadata.name)) { - ExecutionStates.RUNNING -> { - this.stateHandler.setExecutionState(newExecution.spec.name, ExecutionStates.RESTART) + ExecutionState.RUNNING -> { + this.stateHandler.setExecutionState(newExecution.spec.name, ExecutionState.RESTART) if (this.controller.isExecutionRunning(newExecution.spec.name)) { this.controller.stop(restart = true) } } - ExecutionStates.RESTART -> { + ExecutionState.RESTART -> { } // should this set to pending? - else -> this.stateHandler.setExecutionState(newExecution.spec.name, ExecutionStates.PENDING) + else -> this.stateHandler.setExecutionState(newExecution.spec.name, ExecutionState.PENDING) } } } @@ -74,12 +75,12 @@ class ExecutionHandler( /** * Delete an execution from the queue of the TheodoliteController. * - * @param ExecutionCRD the execution to delete + * @param execution the execution to delete */ @Synchronized - override fun onDelete(execution: ExecutionCRD, b: Boolean) { - logger.info { "Delete execution ${execution.metadata.name}" } - if (execution.status.executionState == ExecutionStates.RUNNING.value + override fun onDelete(execution: ExecutionCRD, deletedFinalStateUnknown: Boolean) { + logger.info { "Delete execution ${execution.metadata.name}." } + if (execution.status.executionState == ExecutionState.RUNNING && this.controller.isExecutionRunning(execution.metadata.name) ) { this.controller.stop() diff --git a/theodolite/src/main/kotlin/theodolite/execution/operator/ExecutionStateHandler.kt b/theodolite/src/main/kotlin/theodolite/execution/operator/ExecutionStateHandler.kt index 9f49cf3ee4f9f62e7006dbf6697340e1af152f27..340044e5be954d4d7673120e5bf2cba5aed02d92 100644 --- a/theodolite/src/main/kotlin/theodolite/execution/operator/ExecutionStateHandler.kt +++ b/theodolite/src/main/kotlin/theodolite/execution/operator/ExecutionStateHandler.kt @@ -1,80 +1,54 @@ package theodolite.execution.operator +import io.fabric8.kubernetes.api.model.MicroTime import io.fabric8.kubernetes.client.NamespacedKubernetesClient -import theodolite.model.crd.BenchmarkExecutionList import theodolite.model.crd.ExecutionCRD -import theodolite.model.crd.ExecutionStatus -import theodolite.model.crd.ExecutionStates +import theodolite.model.crd.ExecutionState import java.lang.Thread.sleep -import java.time.Duration import java.time.Instant import java.util.concurrent.atomic.AtomicBoolean class ExecutionStateHandler(val client: NamespacedKubernetesClient) : - AbstractStateHandler<ExecutionCRD, BenchmarkExecutionList, ExecutionStatus>( + AbstractStateHandler<ExecutionCRD>( client = client, - crd = ExecutionCRD::class.java, - crdList = BenchmarkExecutionList::class.java + crd = ExecutionCRD::class.java ) { private var runExecutionDurationTimer: AtomicBoolean = AtomicBoolean(false) - private fun getExecutionLambda() = { cr: ExecutionCRD -> cr.status.executionState } + private fun getExecutionLambda() = { cr: ExecutionCRD -> cr.status.executionState.value } - private fun getDurationLambda() = { cr: ExecutionCRD -> cr.status.executionDuration } - - fun setExecutionState(resourceName: String, status: ExecutionStates): Boolean { - setState(resourceName) { cr -> cr.status.executionState = status.value; cr } + fun setExecutionState(resourceName: String, status: ExecutionState): Boolean { + super.setState(resourceName) { cr -> cr.status.executionState = status; cr } return blockUntilStateIsSet(resourceName, status.value, getExecutionLambda()) } - fun getExecutionState(resourceName: String): ExecutionStates { - val status = this.getState(resourceName, getExecutionLambda()) - return if (status.isNullOrBlank()) { - ExecutionStates.NO_STATE - } else { - ExecutionStates.values().first { it.value == status } - } - } - - fun setDurationState(resourceName: String, duration: Duration): Boolean { - setState(resourceName) { cr -> cr.status.executionDuration = durationToK8sString(duration); cr } - return blockUntilStateIsSet(resourceName, durationToK8sString(duration), getDurationLambda()) + fun getExecutionState(resourceName: String): ExecutionState { + val statusString = this.getState(resourceName, getExecutionLambda()) + return ExecutionState.values().first { it.value == statusString } } - fun getDurationState(resourceName: String): String { - val status = getState(resourceName, getDurationLambda()) - return if (status.isNullOrBlank()) { - "-" - } else { - status - } - } - - private fun durationToK8sString(duration: Duration): String { - val sec = duration.seconds - return when { - sec <= 120 -> "${sec}s" // max 120s - sec < 60 * 99 -> "${duration.toMinutes()}m" // max 99m - sec < 60 * 60 * 99 -> "${duration.toHours()}h" // max 99h - else -> "${duration.toDays()}d + ${duration.minusDays(duration.toDays()).toHours()}h" - } + private fun updateDurationState(resourceName: String) { + super.setState(resourceName) { cr -> cr } } fun startDurationStateTimer(resourceName: String) { this.runExecutionDurationTimer.set(true) - val startTime = Instant.now().toEpochMilli() + + super.setState(resourceName) { cr -> cr.status.completionTime = null; cr } + super.setState(resourceName) { cr -> cr.status.startTime = MicroTime(Instant.now().toString()); cr } + Thread { while (this.runExecutionDurationTimer.get()) { - val duration = Duration.ofMillis(Instant.now().minusMillis(startTime).toEpochMilli()) - setDurationState(resourceName, duration) + updateDurationState(resourceName) sleep(100 * 1) } }.start() } @Synchronized - fun stopDurationStateTimer() { + fun stopDurationStateTimer(resourceName: String) { + super.setState(resourceName) { cr -> cr.status.completionTime = MicroTime(Instant.now().toString()); cr } this.runExecutionDurationTimer.set(false) sleep(100 * 2) } diff --git a/theodolite/src/main/kotlin/theodolite/execution/operator/StateHandler.kt b/theodolite/src/main/kotlin/theodolite/execution/operator/StateHandler.kt index e2cfaa354443cdc940abf92ef2c7474d028daecf..28563ac5a640d0226224b812a8e0691cde83942a 100644 --- a/theodolite/src/main/kotlin/theodolite/execution/operator/StateHandler.kt +++ b/theodolite/src/main/kotlin/theodolite/execution/operator/StateHandler.kt @@ -1,15 +1,19 @@ package theodolite.execution.operator -private const val MAX_TRIES: Int = 5 +private const val MAX_RETRIES: Int = 5 +@Deprecated("should not be needed") interface StateHandler<T> { + fun setState(resourceName: String, f: (T) -> T?) + fun getState(resourceName: String, f: (T) -> String?): String? + fun blockUntilStateIsSet( resourceName: String, desiredStatusString: String, f: (T) -> String?, - maxTries: Int = MAX_TRIES + maxRetries: Int = MAX_RETRIES ): Boolean } \ No newline at end of file diff --git a/theodolite/src/main/kotlin/theodolite/execution/operator/TheodoliteController.kt b/theodolite/src/main/kotlin/theodolite/execution/operator/TheodoliteController.kt index 70e30cf84ef40796eb085a0d68eb2e323232fde9..2b6f83c76ce6e31f85cdfec1962f9523c3d297b8 100644 --- a/theodolite/src/main/kotlin/theodolite/execution/operator/TheodoliteController.kt +++ b/theodolite/src/main/kotlin/theodolite/execution/operator/TheodoliteController.kt @@ -22,26 +22,24 @@ const val CREATED_BY_LABEL_VALUE = "theodolite" * * @see BenchmarkExecution * @see KubernetesBenchmark - * @see ConcurrentLinkedDeque */ class TheodoliteController( private val executionCRDClient: MixedOperation<ExecutionCRD, BenchmarkExecutionList, Resource<ExecutionCRD>>, private val benchmarkCRDClient: MixedOperation<BenchmarkCRD, KubernetesBenchmarkList, Resource<BenchmarkCRD>>, private val executionStateHandler: ExecutionStateHandler, - private val benchmarkStateHandler: BenchmarkStateHandler + private val benchmarkStateChecker: BenchmarkStateChecker ) { lateinit var executor: TheodoliteExecutor /** - * * Runs the TheodoliteController forever. */ fun run() { sleep(5000) // wait until all states are correctly set while (true) { reconcile() - updateBenchmarkStatus() + benchmarkStateChecker.start(true) sleep(2000) } } @@ -49,7 +47,6 @@ class TheodoliteController( private fun reconcile() { do { val execution = getNextExecution() - updateBenchmarkStatus() if (execution != null) { val benchmark = getBenchmarks() .map { it.spec } @@ -88,20 +85,20 @@ class TheodoliteController( labelName = CREATED_BY_LABEL_NAME ) - executionStateHandler.setExecutionState(execution.name, ExecutionStates.RUNNING) + executionStateHandler.setExecutionState(execution.name, ExecutionState.RUNNING) executionStateHandler.startDurationStateTimer(execution.name) executor = TheodoliteExecutor(execution, benchmark) executor.run() when (executionStateHandler.getExecutionState(execution.name)) { - ExecutionStates.RESTART -> runExecution(execution, benchmark) - ExecutionStates.RUNNING -> { - executionStateHandler.setExecutionState(execution.name, ExecutionStates.FINISHED) + ExecutionState.RESTART -> runExecution(execution, benchmark) + ExecutionState.RUNNING -> { + executionStateHandler.setExecutionState(execution.name, ExecutionState.FINISHED) logger.info { "Execution of ${execution.name} is finally stopped." } } else -> { - executionStateHandler.setExecutionState(execution.name, ExecutionStates.FAILURE) - logger.warn { "Unexpected execution state, set state to ${ExecutionStates.FAILURE.value}" } + executionStateHandler.setExecutionState(execution.name, ExecutionState.FAILURE) + logger.warn { "Unexpected execution state, set state to ${ExecutionState.FAILURE.value}" } } } } catch (e: Exception) { @@ -110,18 +107,17 @@ class TheodoliteController( type = "WARNING", reason = "Execution failed", message = "An error occurs while executing: ${e.message}") - logger.error { "Failure while executing execution ${execution.name} with benchmark ${benchmark.name}." } - logger.error { "Problem is: $e" } - executionStateHandler.setExecutionState(execution.name, ExecutionStates.FAILURE) + logger.error(e) { "Failure while executing execution ${execution.name} with benchmark ${benchmark.name}." } + executionStateHandler.setExecutionState(execution.name, ExecutionState.FAILURE) } - executionStateHandler.stopDurationStateTimer() + executionStateHandler.stopDurationStateTimer(execution.name) } @Synchronized fun stop(restart: Boolean = false) { if (!::executor.isInitialized) return if (restart) { - executionStateHandler.setExecutionState(this.executor.getExecution().name, ExecutionStates.RESTART) + executionStateHandler.setExecutionState(this.executor.getExecution().name, ExecutionState.RESTART) } this.executor.executor.run.set(false) } @@ -139,22 +135,21 @@ class TheodoliteController( } } - /** * Get the [BenchmarkExecution] for the next run. Which [BenchmarkExecution] * is selected for the next execution depends on three points: * * 1. Only executions are considered for which a matching benchmark is available on the cluster - * 2. The Status of the execution must be [ExecutionStates.PENDING] or [ExecutionStates.RESTART] - * 3. Of the remaining [BenchmarkCRD], those with status [ExecutionStates.RESTART] are preferred, + * 2. The Status of the execution must be [ExecutionState.PENDING] or [ExecutionState.RESTART] + * 3. Of the remaining [BenchmarkCRD], those with status [ExecutionState.RESTART] are preferred, * then, if there is more than one, the oldest execution is chosen. * * @return the next execution or null */ private fun getNextExecution(): BenchmarkExecution? { - val comparator = ExecutionStateComparator(ExecutionStates.RESTART) + val comparator = ExecutionStateComparator(ExecutionState.RESTART) val availableBenchmarkNames = getBenchmarks() - .filter { it.status.resourceSetsState == BenchmarkStates.READY.value } + .filter { it.status.resourceSetsState == BenchmarkState.READY } .map { it.spec } .map { it.name } @@ -164,8 +159,7 @@ class TheodoliteController( .asSequence() .map { it.spec.name = it.metadata.name; it } .filter { - it.status.executionState == ExecutionStates.PENDING.value || - it.status.executionState == ExecutionStates.RESTART.value + it.status.executionState == ExecutionState.PENDING || it.status.executionState == ExecutionState.RESTART } .filter { availableBenchmarkNames.contains(it.spec.benchmark) } .sortedWith(comparator.thenBy { it.metadata.creationTimestamp }) @@ -173,35 +167,6 @@ class TheodoliteController( .firstOrNull() } - private fun updateBenchmarkStatus() { - this.benchmarkCRDClient - .list() - .items - .map { it.spec.name = it.metadata.name; it } - .map { Pair(it, checkResource(it.spec)) } - .forEach { setState(it.first, it.second ) } - } - - private fun setState(resource: BenchmarkCRD, state: BenchmarkStates) { - benchmarkStateHandler.setResourceSetState(resource.spec.name, state) - } - - private fun checkResource(benchmark: KubernetesBenchmark): BenchmarkStates { - return try { - val appResources = - benchmark.loadKubernetesResources(resourceSet = benchmark.sut.resources) - val loadGenResources = - benchmark.loadKubernetesResources(resourceSet = benchmark.sut.resources) - if(appResources.isNotEmpty() && loadGenResources.isNotEmpty()) { - BenchmarkStates.READY - } else { - BenchmarkStates.PENDING - } - } catch (e: Exception) { - BenchmarkStates.PENDING - } - } - fun isExecutionRunning(executionName: String): Boolean { if (!::executor.isInitialized) return false return this.executor.getExecution().name == executionName diff --git a/theodolite/src/main/kotlin/theodolite/execution/operator/TheodoliteOperator.kt b/theodolite/src/main/kotlin/theodolite/execution/operator/TheodoliteOperator.kt index 4850a44fdddba117178e29d3170f44a95df646e7..071bd06071345499d01595df72e5de4c8535b3fc 100644 --- a/theodolite/src/main/kotlin/theodolite/execution/operator/TheodoliteOperator.kt +++ b/theodolite/src/main/kotlin/theodolite/execution/operator/TheodoliteOperator.kt @@ -34,6 +34,7 @@ class TheodoliteOperator { private lateinit var controller: TheodoliteController private lateinit var executionStateHandler: ExecutionStateHandler private lateinit var benchmarkStateHandler: BenchmarkStateHandler + private lateinit var benchmarkStateChecker: BenchmarkStateChecker fun start() { @@ -71,7 +72,7 @@ class TheodoliteOperator { controller = getController( client = client, executionStateHandler = getExecutionStateHandler(client = client), - benchmarkStateHandler = getBenchmarkStateHandler(client = client) + benchmarkStateChecker = getBenchmarkStateChecker(client = client) ) getExecutionEventHandler(controller, client).startAllRegisteredInformers() @@ -90,7 +91,7 @@ class TheodoliteOperator { ExecutionCRD::class.java, RESYNC_PERIOD ).addEventHandler( - ExecutionHandler( + ExecutionEventHandler( controller = controller, stateHandler = ExecutionStateHandler(client) ) @@ -112,17 +113,28 @@ class TheodoliteOperator { return benchmarkStateHandler } + fun getBenchmarkStateChecker(client: NamespacedKubernetesClient) : BenchmarkStateChecker { + if (!::benchmarkStateChecker.isInitialized) { + this.benchmarkStateChecker = BenchmarkStateChecker( + client = client, + benchmarkStateHandler = getBenchmarkStateHandler(client = client), + benchmarkCRDClient = getBenchmarkClient(client = client)) + } + return benchmarkStateChecker + } + + fun getController( client: NamespacedKubernetesClient, executionStateHandler: ExecutionStateHandler, - benchmarkStateHandler: BenchmarkStateHandler + benchmarkStateChecker: BenchmarkStateChecker ): TheodoliteController { if (!::controller.isInitialized) { this.controller = TheodoliteController( benchmarkCRDClient = getBenchmarkClient(client), executionCRDClient = getExecutionClient(client), executionStateHandler = executionStateHandler, - benchmarkStateHandler = benchmarkStateHandler + benchmarkStateChecker = benchmarkStateChecker ) } return this.controller diff --git a/theodolite/src/main/kotlin/theodolite/k8s/ResourceByLabelHandler.kt b/theodolite/src/main/kotlin/theodolite/k8s/ResourceByLabelHandler.kt index 28a72c8947bffe7b57203cacf2460d7080fa7b51..518b8eae211dd064e3c12b0713382bf3b12bb1ba 100644 --- a/theodolite/src/main/kotlin/theodolite/k8s/ResourceByLabelHandler.kt +++ b/theodolite/src/main/kotlin/theodolite/k8s/ResourceByLabelHandler.kt @@ -96,10 +96,9 @@ class ResourceByLabelHandler(private val client: NamespacedKubernetesClient) { /** * Block until all pods with are deleted * - * @param [labelName] the label name - * @param [labelValue] the value of this label + * @param matchLabels Map of label keys to label values to be deleted * */ - fun blockUntilPodsDeleted(matchLabels: MutableMap<String, String>) { + fun blockUntilPodsDeleted(matchLabels: Map<String, String>) { while ( !this.client .pods() @@ -108,7 +107,7 @@ class ResourceByLabelHandler(private val client: NamespacedKubernetesClient) { .items .isNullOrEmpty() ) { - logger.info { "Wait for pods with label ${matchLabels.toString()} to be deleted." } + logger.info { "Wait for pods with label $matchLabels to be deleted." } Thread.sleep(1000) } } diff --git a/theodolite/src/main/kotlin/theodolite/k8s/TopicManager.kt b/theodolite/src/main/kotlin/theodolite/k8s/TopicManager.kt index f2afd71f6e4b4cf8e7106a8fc8a9bd113d9f36e6..ed1e06571d20c53fc82439833c8a31800a48b602 100644 --- a/theodolite/src/main/kotlin/theodolite/k8s/TopicManager.kt +++ b/theodolite/src/main/kotlin/theodolite/k8s/TopicManager.kt @@ -99,7 +99,7 @@ class TopicManager(private val kafkaConfig: Map<String, Any>) { val toDelete = topics.filter { kafkaAdmin.listTopics().names().get().contains(it) } - if (toDelete.isNullOrEmpty()) { + if (toDelete.isEmpty()) { deleted = true } else { logger.info { "Deletion of Kafka topics failed, will retry in ${RETRY_TIME / 1000} seconds." } diff --git a/theodolite/src/main/kotlin/theodolite/k8s/resourceLoader/AbstractK8sLoader.kt b/theodolite/src/main/kotlin/theodolite/k8s/resourceLoader/AbstractK8sLoader.kt index 862de14e2a7a4721e15215b0a1389e14f943fe24..871b8cf43907fcb8b0b5ea501c6b47f82e56ff69 100644 --- a/theodolite/src/main/kotlin/theodolite/k8s/resourceLoader/AbstractK8sLoader.kt +++ b/theodolite/src/main/kotlin/theodolite/k8s/resourceLoader/AbstractK8sLoader.kt @@ -9,7 +9,7 @@ private val logger = KotlinLogging.logger {} abstract class AbstractK8sLoader: K8sResourceLoader { fun loadK8sResource(kind: String, resourceString: String): KubernetesResource { - return when (kind.replaceFirst(kind[0],kind[0].toUpperCase())) { + return when (kind.replaceFirst(kind[0],kind[0].uppercaseChar())) { "Deployment" -> loadDeployment(resourceString) "Service" -> loadService(resourceString) "ServiceMonitor" -> loadServiceMonitor(resourceString) @@ -18,13 +18,13 @@ abstract class AbstractK8sLoader: K8sResourceLoader { "Execution" -> loadExecution(resourceString) "Benchmark" -> loadBenchmark(resourceString) else -> { - logger.error { "Error during loading of unspecified resource Kind $kind" } - throw java.lang.IllegalArgumentException("error while loading resource with kind: $kind") + logger.error { "Error during loading of unspecified resource Kind '$kind'." } + throw IllegalArgumentException("error while loading resource with kind: $kind") } } } - fun <T> loadGenericResource(resourceString: String, f: (String) -> T): T { + fun <T : KubernetesResource> loadGenericResource(resourceString: String, f: (String) -> T): T { var resource: T? = null try { diff --git a/theodolite/src/main/kotlin/theodolite/k8s/resourceLoader/K8sResourceLoaderFromString.kt b/theodolite/src/main/kotlin/theodolite/k8s/resourceLoader/K8sResourceLoaderFromString.kt index e9611aaa82870dfb676820029cf42c5aab63d672..639e4c4584d47968cd718d601f1cd7064d85eda2 100644 --- a/theodolite/src/main/kotlin/theodolite/k8s/resourceLoader/K8sResourceLoaderFromString.kt +++ b/theodolite/src/main/kotlin/theodolite/k8s/resourceLoader/K8sResourceLoaderFromString.kt @@ -2,42 +2,37 @@ package theodolite.k8s.resourceLoader import io.fabric8.kubernetes.api.model.ConfigMap import io.fabric8.kubernetes.api.model.KubernetesResource +import io.fabric8.kubernetes.api.model.Service import io.fabric8.kubernetes.api.model.apps.Deployment +import io.fabric8.kubernetes.api.model.apps.StatefulSet import io.fabric8.kubernetes.client.NamespacedKubernetesClient import io.fabric8.kubernetes.client.dsl.base.CustomResourceDefinitionContext import theodolite.k8s.CustomResourceWrapper import theodolite.util.YamlParserFromString import java.io.ByteArrayInputStream +import java.io.InputStream class K8sResourceLoaderFromString(private val client: NamespacedKubernetesClient): AbstractK8sLoader(), K8sResourceLoader { - @OptIn(ExperimentalStdlibApi::class) - override fun loadService(resource: String): KubernetesResource { - return loadGenericResource(resource) { x: String -> - val stream = ByteArrayInputStream(x.encodeToByteArray()) - client.services().load(stream).get() } + override fun loadService(resource: String): Service { + return loadAnyResource(resource) { stream -> client.services().load(stream).get() } } - @OptIn(ExperimentalStdlibApi::class) override fun loadDeployment(resource: String): Deployment { - return loadGenericResource(resource) { x: String -> - val stream = ByteArrayInputStream(x.encodeToByteArray()) - client.apps().deployments().load(stream).get() } + return loadAnyResource(resource) { stream -> client.apps().deployments().load(stream).get() } } - @OptIn(ExperimentalStdlibApi::class) override fun loadConfigmap(resource: String): ConfigMap { - return loadGenericResource(resource) { x: String -> - val stream = ByteArrayInputStream(x.encodeToByteArray()) - client.configMaps().load(stream).get() } + return loadAnyResource(resource) { stream -> client.configMaps().load(stream).get() } } - @OptIn(ExperimentalStdlibApi::class) - override fun loadStatefulSet(resource: String): KubernetesResource { - return loadGenericResource(resource) { x: String -> - val stream = ByteArrayInputStream(x.encodeToByteArray()) - client.apps().statefulSets().load(stream).get() } + override fun loadStatefulSet(resource: String): StatefulSet { + return loadAnyResource(resource) { stream -> client.apps().statefulSets().load(stream).get() } + } + + private fun <T : KubernetesResource> loadAnyResource(resource: String, f: (InputStream) -> T): T { + return loadGenericResource(resource) { f(ByteArrayInputStream(it.encodeToByteArray())) } } /** diff --git a/theodolite/src/main/kotlin/theodolite/model/crd/BenchmarkCRD.kt b/theodolite/src/main/kotlin/theodolite/model/crd/BenchmarkCRD.kt index b6468fff523e57b124e144d5b9fef6477973655a..0ec6decbdea5e192721a4f9b6d0d85ea65665a5a 100644 --- a/theodolite/src/main/kotlin/theodolite/model/crd/BenchmarkCRD.kt +++ b/theodolite/src/main/kotlin/theodolite/model/crd/BenchmarkCRD.kt @@ -1,7 +1,6 @@ package theodolite.model.crd import com.fasterxml.jackson.databind.annotation.JsonDeserialize -import io.fabric8.kubernetes.api.model.HasMetadata import io.fabric8.kubernetes.api.model.Namespaced import io.fabric8.kubernetes.client.CustomResource import io.fabric8.kubernetes.model.annotation.Group @@ -13,7 +12,14 @@ import theodolite.benchmark.KubernetesBenchmark @Version("v1") @Group("theodolite.com") @Kind("benchmark") -class BenchmarkCRD( - var spec: KubernetesBenchmark = KubernetesBenchmark(), - var status: BenchmarkStatus = BenchmarkStatus() -) : CustomResource<KubernetesBenchmark, BenchmarkStatus>(), Namespaced, HasMetadata \ No newline at end of file +class BenchmarkCRD : CustomResource<KubernetesBenchmark, BenchmarkStatus>(), Namespaced { + + override fun initSpec(): KubernetesBenchmark { + return KubernetesBenchmark() + } + + override fun initStatus(): BenchmarkStatus { + return BenchmarkStatus() + } + +} \ No newline at end of file diff --git a/theodolite/src/main/kotlin/theodolite/model/crd/BenchmarkState.kt b/theodolite/src/main/kotlin/theodolite/model/crd/BenchmarkState.kt new file mode 100644 index 0000000000000000000000000000000000000000..dc2c6f9ba971367c0bb142a54745629eb29c07d5 --- /dev/null +++ b/theodolite/src/main/kotlin/theodolite/model/crd/BenchmarkState.kt @@ -0,0 +1,8 @@ +package theodolite.model.crd + +import com.fasterxml.jackson.annotation.JsonValue + +enum class BenchmarkState(@JsonValue val value: String) { + PENDING("Pending"), + READY("Ready") +} \ No newline at end of file diff --git a/theodolite/src/main/kotlin/theodolite/model/crd/BenchmarkStates.kt b/theodolite/src/main/kotlin/theodolite/model/crd/BenchmarkStates.kt deleted file mode 100644 index f52f2c168765ebb8bcc4f390795aa470b968021b..0000000000000000000000000000000000000000 --- a/theodolite/src/main/kotlin/theodolite/model/crd/BenchmarkStates.kt +++ /dev/null @@ -1,6 +0,0 @@ -package theodolite.model.crd - -enum class BenchmarkStates(val value: String) { - PENDING("Pending"), - READY("Ready") -} \ No newline at end of file diff --git a/theodolite/src/main/kotlin/theodolite/model/crd/BenchmarkStatus.kt b/theodolite/src/main/kotlin/theodolite/model/crd/BenchmarkStatus.kt index f51cb7a76d015d6ecd900279e68d41baa26e876a..d4a17dbefb6cf3a53d545c32cb18e1d9acd7067f 100644 --- a/theodolite/src/main/kotlin/theodolite/model/crd/BenchmarkStatus.kt +++ b/theodolite/src/main/kotlin/theodolite/model/crd/BenchmarkStatus.kt @@ -6,6 +6,6 @@ import io.fabric8.kubernetes.api.model.Namespaced @JsonDeserialize class BenchmarkStatus: KubernetesResource, Namespaced { - var resourceSetsState = "-" + var resourceSetsState: BenchmarkState = BenchmarkState.PENDING } \ No newline at end of file diff --git a/theodolite/src/main/kotlin/theodolite/model/crd/ExecutionCRD.kt b/theodolite/src/main/kotlin/theodolite/model/crd/ExecutionCRD.kt index 659621e8c3b1d5308a10d81240575dd3d432b53f..3be0aaf2a30cd4ef279edd34854eb936cc6e7e7c 100644 --- a/theodolite/src/main/kotlin/theodolite/model/crd/ExecutionCRD.kt +++ b/theodolite/src/main/kotlin/theodolite/model/crd/ExecutionCRD.kt @@ -12,7 +12,14 @@ import theodolite.benchmark.BenchmarkExecution @Version("v1") @Group("theodolite.com") @Kind("execution") -class ExecutionCRD( - var spec: BenchmarkExecution = BenchmarkExecution(), - var status: ExecutionStatus = ExecutionStatus() -) : CustomResource<BenchmarkExecution, ExecutionStatus>(), Namespaced +class ExecutionCRD: CustomResource<BenchmarkExecution, ExecutionStatus>(), Namespaced { + + override fun initSpec(): BenchmarkExecution { + return BenchmarkExecution() + } + + override fun initStatus(): ExecutionStatus { + return ExecutionStatus() + } + +} diff --git a/theodolite/src/main/kotlin/theodolite/model/crd/ExecutionStates.kt b/theodolite/src/main/kotlin/theodolite/model/crd/ExecutionState.kt similarity index 65% rename from theodolite/src/main/kotlin/theodolite/model/crd/ExecutionStates.kt rename to theodolite/src/main/kotlin/theodolite/model/crd/ExecutionState.kt index ad68bf380b18af1a654c201817bb7fc982804c8b..9ce38d9f56a968ccc408966e56609ee4f70570a4 100644 --- a/theodolite/src/main/kotlin/theodolite/model/crd/ExecutionStates.kt +++ b/theodolite/src/main/kotlin/theodolite/model/crd/ExecutionState.kt @@ -1,7 +1,8 @@ package theodolite.model.crd -enum class ExecutionStates(val value: String) { - // Execution states +import com.fasterxml.jackson.annotation.JsonValue + +enum class ExecutionState(@JsonValue val value: String) { RUNNING("Running"), PENDING("Pending"), FAILURE("Failure"), diff --git a/theodolite/src/main/kotlin/theodolite/model/crd/ExecutionStatus.kt b/theodolite/src/main/kotlin/theodolite/model/crd/ExecutionStatus.kt index 252738959762aa5d0732babc5589c698d7bd4e9f..1f843ccf9152676e778bc4ed359776e37205e998 100644 --- a/theodolite/src/main/kotlin/theodolite/model/crd/ExecutionStatus.kt +++ b/theodolite/src/main/kotlin/theodolite/model/crd/ExecutionStatus.kt @@ -1,11 +1,58 @@ package theodolite.model.crd +import com.fasterxml.jackson.annotation.JsonIgnoreProperties +import com.fasterxml.jackson.core.JsonGenerator +import com.fasterxml.jackson.databind.JsonSerializer +import com.fasterxml.jackson.databind.SerializerProvider import com.fasterxml.jackson.databind.annotation.JsonDeserialize +import com.fasterxml.jackson.databind.annotation.JsonSerialize +import io.fabric8.kubernetes.api.model.Duration import io.fabric8.kubernetes.api.model.KubernetesResource +import io.fabric8.kubernetes.api.model.MicroTime import io.fabric8.kubernetes.api.model.Namespaced +import java.time.Clock +import java.time.Instant +import java.time.Duration as JavaDuration + @JsonDeserialize -class ExecutionStatus : KubernetesResource, Namespaced { - var executionState: String = "" - var executionDuration: String = "-" +@JsonIgnoreProperties(ignoreUnknown = true) +class ExecutionStatus( + private val clock: Clock = Clock.systemUTC() +) : KubernetesResource, Namespaced { + + var executionState: ExecutionState = ExecutionState.NO_STATE + + var startTime: MicroTime? = null + + var completionTime: MicroTime? = null + + @get:JsonSerialize(using = DurationSerializer::class) + val executionDuration: Duration? + get() { + val startTime = this.startTime?.toInstant() + val completionTime = this.completionTime?.toInstant() ?: clock.instant()!! + return startTime?.let {Duration(JavaDuration.between(it, completionTime)) } + } + + private fun MicroTime.toInstant(): Instant { + return Instant.parse(this.time) + } + + class DurationSerializer : JsonSerializer<Duration?>() { + + override fun serialize(duration: Duration?, generator: JsonGenerator, serProvider: SerializerProvider) { + generator.writeObject(duration?.duration?.toK8sString()) + } + + private fun JavaDuration.toK8sString(): String { + return when { + this <= JavaDuration.ofSeconds(2) -> "${this.toSeconds()}s" + this < JavaDuration.ofMinutes(99) -> "${this.toMinutes()}m" + this < JavaDuration.ofHours(99) -> "${this.toHours()}h" + else -> "${this.toDays()}d + ${this.minusDays(this.toDays()).toHours()}h" + } + } + + } } \ No newline at end of file diff --git a/theodolite/src/main/kotlin/theodolite/patcher/PatcherFactory.kt b/theodolite/src/main/kotlin/theodolite/patcher/PatcherFactory.kt index ebad5de74a6b819dbf7887dfad91faac37ed5074..88b3e19e999a889cdcb8345ca7c90c37a6e6d275 100644 --- a/theodolite/src/main/kotlin/theodolite/patcher/PatcherFactory.kt +++ b/theodolite/src/main/kotlin/theodolite/patcher/PatcherFactory.kt @@ -1,7 +1,6 @@ package theodolite.patcher import io.fabric8.kubernetes.api.model.KubernetesResource -import theodolite.util.DeploymentFailedException import theodolite.util.InvalidPatcherConfigurationException import theodolite.util.PatcherDefinition diff --git a/theodolite/src/main/kotlin/theodolite/strategies/searchstrategy/CompositeStrategy.kt b/theodolite/src/main/kotlin/theodolite/strategies/searchstrategy/CompositeStrategy.kt index 41cc5c325163ade54469398e815fdb8d95c6e6cd..d6ace6f564239e73a0d59f8eb7900f50018482c5 100644 --- a/theodolite/src/main/kotlin/theodolite/strategies/searchstrategy/CompositeStrategy.kt +++ b/theodolite/src/main/kotlin/theodolite/strategies/searchstrategy/CompositeStrategy.kt @@ -23,7 +23,7 @@ class CompositeStrategy( override fun findSuitableResource(load: LoadDimension, resources: List<Resource>): Resource? { var restrictedResources = resources.toList() for (strategy in this.restrictionStrategies) { - restrictedResources = restrictedResources.intersect(strategy.apply(load, resources)).toList() + restrictedResources = restrictedResources.intersect(strategy.apply(load, resources).toSet()).toList() } return this.searchStrategy.findSuitableResource(load, restrictedResources) } diff --git a/theodolite/src/main/kotlin/theodolite/strategies/searchstrategy/FullSearch.kt b/theodolite/src/main/kotlin/theodolite/strategies/searchstrategy/FullSearch.kt index cb0dd2d8ab528e42e8290f59f26c8b9b32f384c7..83c4abbdf44f1a1c2f3a27714d796580feedee49 100644 --- a/theodolite/src/main/kotlin/theodolite/strategies/searchstrategy/FullSearch.kt +++ b/theodolite/src/main/kotlin/theodolite/strategies/searchstrategy/FullSearch.kt @@ -22,7 +22,7 @@ class FullSearch(benchmarkExecutor: BenchmarkExecutor) : SearchStrategy(benchmar for (res in resources) { logger.info { "Running experiment with load '${load.get()}' and resources '${res.get()}'" } val result = this.benchmarkExecutor.runExperiment(load, res) - if (result && minimalSuitableResources != null) { + if (result && minimalSuitableResources == null) { minimalSuitableResources = res } } diff --git a/theodolite/src/main/kotlin/theodolite/strategies/searchstrategy/GuessStrategy.kt b/theodolite/src/main/kotlin/theodolite/strategies/searchstrategy/GuessStrategy.kt new file mode 100644 index 0000000000000000000000000000000000000000..786a3baf159e94841c1f76c696f030718e8f768f --- /dev/null +++ b/theodolite/src/main/kotlin/theodolite/strategies/searchstrategy/GuessStrategy.kt @@ -0,0 +1,22 @@ +package theodolite.strategies.searchstrategy + +import io.quarkus.runtime.annotations.RegisterForReflection +import theodolite.util.Resource + +/** + * Base class for the implementation of Guess strategies. Guess strategies are strategies to determine the resource + * demand we start with in our initial guess search strategy. + */ + +@RegisterForReflection +abstract class GuessStrategy { + /** + * Computing the resource demand for the initial guess search strategy to start with. + * + * @param resources List of all possible [Resource]s. + * @param lastLowestResource Previous resource demand needed for the given load. + * + * @return Returns the resource demand to start the initial guess search strategy with or null + */ + abstract fun firstGuess(resources: List<Resource>, lastLowestResource: Resource?): Resource? +} \ No newline at end of file diff --git a/theodolite/src/main/kotlin/theodolite/strategies/searchstrategy/InitialGuessSearchStrategy.kt b/theodolite/src/main/kotlin/theodolite/strategies/searchstrategy/InitialGuessSearchStrategy.kt new file mode 100644 index 0000000000000000000000000000000000000000..d97fb62cc9d37dd50122199e5d089c491784e511 --- /dev/null +++ b/theodolite/src/main/kotlin/theodolite/strategies/searchstrategy/InitialGuessSearchStrategy.kt @@ -0,0 +1,93 @@ +package theodolite.strategies.searchstrategy + +import mu.KotlinLogging +import theodolite.execution.BenchmarkExecutor +import theodolite.util.LoadDimension +import theodolite.util.Resource +import theodolite.util.Results + +private val logger = KotlinLogging.logger {} + +/** + * Search strategy implementation for determining the smallest suitable resource demand. + * Starting with a resource amount provided by a guess strategy. + * + * @param benchmarkExecutor Benchmark executor which runs the individual benchmarks. + * @param guessStrategy Strategy that provides us with a guess for the first resource amount. + * @param results current results of all previously performed benchmarks. + */ +class InitialGuessSearchStrategy(benchmarkExecutor: BenchmarkExecutor, guessStrategy: GuessStrategy, results: Results) : + SearchStrategy(benchmarkExecutor, guessStrategy, results) { + + override fun findSuitableResource(load: LoadDimension, resources: List<Resource>): Resource? { + + if(resources.isEmpty()) { + logger.info { "You need to specify resources to be checked for the InitialGuessSearchStrategy to work." } + return null + } + + if(guessStrategy == null){ + logger.info { "Your InitialGuessSearchStrategy doesn't have a GuessStrategy. This is not supported." } + return null + } + + if(results == null){ + logger.info { "The results need to be initialized." } + return null + } + + + var lastLowestResource : Resource? = null + + // Getting the lastLowestResource from results and calling firstGuess() with it + if (!results.isEmpty()) { + val maxLoad: LoadDimension? = this.results.getMaxBenchmarkedLoad(load) + lastLowestResource = this.results.getMinRequiredInstances(maxLoad) + if (lastLowestResource.get() == Int.MAX_VALUE) lastLowestResource = null + } + lastLowestResource = this.guessStrategy.firstGuess(resources, lastLowestResource) + + if (lastLowestResource != null) { + val resourcesToCheck: List<Resource> + val startIndex: Int = resources.indexOf(lastLowestResource) + + logger.info { "Running experiment with load '${load.get()}' and resources '${lastLowestResource.get()}'" } + + // If the first experiment passes, starting downward linear search + // otherwise starting upward linear search + if (this.benchmarkExecutor.runExperiment(load, lastLowestResource)) { + + resourcesToCheck = resources.subList(0, startIndex).reversed() + if (resourcesToCheck.isEmpty()) return lastLowestResource + + var currentMin: Resource = lastLowestResource + for (res in resourcesToCheck) { + + logger.info { "Running experiment with load '${load.get()}' and resources '${res.get()}'" } + if (this.benchmarkExecutor.runExperiment(load, res)) { + currentMin = res + } + } + return currentMin + } + else { + if (resources.size <= startIndex + 1) { + logger.info{ "No more resources left to check." } + return null + } + resourcesToCheck = resources.subList(startIndex + 1, resources.size) + + for (res in resourcesToCheck) { + + logger.info { "Running experiment with load '${load.get()}' and resources '${res.get()}'" } + if (this.benchmarkExecutor.runExperiment(load, res)) return res + } + } + } + else { + logger.info { "InitialGuessSearchStrategy called without lastLowestResource value, which is needed as a " + + "starting point!" } + } + return null + } +} \ No newline at end of file diff --git a/theodolite/src/main/kotlin/theodolite/strategies/searchstrategy/PrevResourceMinGuess.kt b/theodolite/src/main/kotlin/theodolite/strategies/searchstrategy/PrevResourceMinGuess.kt new file mode 100644 index 0000000000000000000000000000000000000000..413eecea27279cd79bad155fbb7d5d18b674a12e --- /dev/null +++ b/theodolite/src/main/kotlin/theodolite/strategies/searchstrategy/PrevResourceMinGuess.kt @@ -0,0 +1,24 @@ +package theodolite.strategies.searchstrategy + +import theodolite.util.Resource + +/** + * This Guess strategy takes the minimal resource demand of the previous load, which is given as an argument for the + * firstGuess function. + */ + +class PrevResourceMinGuess() : GuessStrategy(){ + + /** + * @param resources List of all possible [Resource]s. + * @param lastLowestResource Previous resource demand needed for the given load. + * + * @return the value of lastLowestResource if given otherwise the first element of the resource list or null + */ + override fun firstGuess(resources: List<Resource>, lastLowestResource: Resource?): Resource? { + + if (lastLowestResource != null) return lastLowestResource + else if(resources.isNotEmpty()) return resources[0] + else return null + } +} \ No newline at end of file diff --git a/theodolite/src/main/kotlin/theodolite/strategies/searchstrategy/SearchStrategy.kt b/theodolite/src/main/kotlin/theodolite/strategies/searchstrategy/SearchStrategy.kt index 4e304b010d4d56f6b5fe734a6b977361f93e57a1..97c723f2cfe459081cbb327f6860e48319c8f4f1 100644 --- a/theodolite/src/main/kotlin/theodolite/strategies/searchstrategy/SearchStrategy.kt +++ b/theodolite/src/main/kotlin/theodolite/strategies/searchstrategy/SearchStrategy.kt @@ -4,14 +4,18 @@ import io.quarkus.runtime.annotations.RegisterForReflection import theodolite.execution.BenchmarkExecutor import theodolite.util.LoadDimension import theodolite.util.Resource +import theodolite.util.Results /** * Base class for the implementation for SearchStrategies. SearchStrategies determine the smallest suitable number of instances. * * @param benchmarkExecutor Benchmark executor which runs the individual benchmarks. + * @param guessStrategy Guess strategy for the initial resource amount in case the InitialGuessStrategy is selected. + * @param results the [Results] object. */ @RegisterForReflection -abstract class SearchStrategy(val benchmarkExecutor: BenchmarkExecutor) { +abstract class SearchStrategy(val benchmarkExecutor: BenchmarkExecutor, val guessStrategy: GuessStrategy? = null, + val results: Results? = null) { /** * Find smallest suitable resource from the specified resource list for the given load. * diff --git a/theodolite/src/main/kotlin/theodolite/util/ActionCommandFailedException.kt b/theodolite/src/main/kotlin/theodolite/util/ActionCommandFailedException.kt new file mode 100644 index 0000000000000000000000000000000000000000..c1a8fc401961370d2f07bfffe43f0ae4dc441d25 --- /dev/null +++ b/theodolite/src/main/kotlin/theodolite/util/ActionCommandFailedException.kt @@ -0,0 +1,4 @@ +package theodolite.util + +class ActionCommandFailedException(message: String, e: Exception? = null) : DeploymentFailedException(message,e) { +} \ No newline at end of file diff --git a/theodolite/src/main/kotlin/theodolite/util/Configuration.kt b/theodolite/src/main/kotlin/theodolite/util/Configuration.kt index dac3b943e69bd7e208d318f2a788275f19db11e4..0a63cfa84de9e60fba04707372ef884d77a1543b 100644 --- a/theodolite/src/main/kotlin/theodolite/util/Configuration.kt +++ b/theodolite/src/main/kotlin/theodolite/util/Configuration.kt @@ -7,12 +7,16 @@ private const val DEFAULT_NAMESPACE = "default" private const val DEFAULT_COMPONENT_NAME = "theodolite-operator" -class Configuration( -) { +class Configuration { companion object { val NAMESPACE = System.getenv("NAMESPACE") ?: DEFAULT_NAMESPACE val COMPONENT_NAME = System.getenv("COMPONENT_NAME") ?: DEFAULT_COMPONENT_NAME val EXECUTION_MODE = System.getenv("MODE") ?: ExecutionModes.STANDALONE.value + + /** + * Specifies how long Theodolite should wait (in sec) before aborting the execution of an action command. + */ + const val TIMEOUT_SECONDS: Long = 30L } } diff --git a/theodolite/src/main/kotlin/theodolite/util/EvaluationFailedException.kt b/theodolite/src/main/kotlin/theodolite/util/EvaluationFailedException.kt index c67ed7ffd79afc733a97dae05c3203f8e78722ea..ebdf5a37b4e82c8d4b1870d065f5e77133154735 100644 --- a/theodolite/src/main/kotlin/theodolite/util/EvaluationFailedException.kt +++ b/theodolite/src/main/kotlin/theodolite/util/EvaluationFailedException.kt @@ -1,4 +1,3 @@ package theodolite.util -class EvaluationFailedException(message: String, e: Exception? = null) : ExecutionFailedException(message,e) { -} +class EvaluationFailedException(message: String, e: Exception? = null) : ExecutionFailedException(message,e) diff --git a/theodolite/src/main/kotlin/theodolite/util/ExecutionFailedException.kt b/theodolite/src/main/kotlin/theodolite/util/ExecutionFailedException.kt index 6566a451a3e273214f59962531b6bd17b33a850d..2e181dad35786d386226f8a57dfffbc2c3966754 100644 --- a/theodolite/src/main/kotlin/theodolite/util/ExecutionFailedException.kt +++ b/theodolite/src/main/kotlin/theodolite/util/ExecutionFailedException.kt @@ -1,4 +1,3 @@ package theodolite.util -open class ExecutionFailedException(message: String, e: Exception? = null) : TheodoliteException(message,e) { -} \ No newline at end of file +open class ExecutionFailedException(message: String, e: Exception? = null) : TheodoliteException(message,e) diff --git a/theodolite/src/main/kotlin/theodolite/util/ExecutionStateComparator.kt b/theodolite/src/main/kotlin/theodolite/util/ExecutionStateComparator.kt index 8a6b0e9a49362afa401cf3c1279e7f7f6cddf85d..81bf350b58901bc10535f143d5ccdb295b5fe85f 100644 --- a/theodolite/src/main/kotlin/theodolite/util/ExecutionStateComparator.kt +++ b/theodolite/src/main/kotlin/theodolite/util/ExecutionStateComparator.kt @@ -1,18 +1,17 @@ package theodolite.util import theodolite.model.crd.ExecutionCRD -import theodolite.model.crd.ExecutionStates +import theodolite.model.crd.ExecutionState -class ExecutionStateComparator(private val preferredState: ExecutionStates): Comparator<ExecutionCRD> { +class ExecutionStateComparator(private val preferredState: ExecutionState): Comparator<ExecutionCRD> { /** - * Simple comparator which can be used to order a list of [ExecutionCRD] such that executions with - * status [ExecutionStates.RESTART] are before all other executions. + * Simple comparator which can be used to order a list of [ExecutionCRD]s such that executions with + * status [ExecutionState.RESTART] are before all other executions. */ override fun compare(p0: ExecutionCRD, p1: ExecutionCRD): Int { return when { - (p0 == null && p1 == null) -> 0 - (p0.status.executionState == preferredState.value) -> -1 + (p0.status.executionState == preferredState) -> -1 else -> 1 } } diff --git a/theodolite/src/main/kotlin/theodolite/util/IOHandler.kt b/theodolite/src/main/kotlin/theodolite/util/IOHandler.kt index 57032189412d0937e4d77ddbf4354c78ffcc71a3..8b580c733ab7ae527d99c676223f4b09b392c6fd 100644 --- a/theodolite/src/main/kotlin/theodolite/util/IOHandler.kt +++ b/theodolite/src/main/kotlin/theodolite/util/IOHandler.kt @@ -85,7 +85,7 @@ class IOHandler { * @param data the data to write in the file as String */ fun writeStringToTextFile(fileURL: String, data: String) { - val outputFile = File("$fileURL") + val outputFile = File(fileURL) outputFile.printWriter().use { it.println(data) } diff --git a/theodolite/src/main/kotlin/theodolite/util/Results.kt b/theodolite/src/main/kotlin/theodolite/util/Results.kt index 60641ea0248435de53aaaaf362da7be995b391c5..2221c2e64f6dbc1776122f20793aa8d04d621d9d 100644 --- a/theodolite/src/main/kotlin/theodolite/util/Results.kt +++ b/theodolite/src/main/kotlin/theodolite/util/Results.kt @@ -3,7 +3,7 @@ package theodolite.util import io.quarkus.runtime.annotations.RegisterForReflection /** - * Central class that saves the state of a execution of Theodolite. For an execution, it is used to save the result of + * Central class that saves the state of an execution of Theodolite. For an execution, it is used to save the result of * individual experiments. Further, it is used by the RestrictionStrategy to * perform the [theodolite.strategies.restriction.RestrictionStrategy]. */ @@ -44,16 +44,16 @@ class Results { * If no experiments have been marked as either successful or unsuccessful * yet, a Resource with the constant value Int.MIN_VALUE is returned. */ - fun getMinRequiredInstances(load: LoadDimension?): Resource? { + fun getMinRequiredInstances(load: LoadDimension?): Resource { if (this.results.isEmpty()) { return Resource(Int.MIN_VALUE, emptyList()) } - var minRequiredInstances: Resource? = Resource(Int.MAX_VALUE, emptyList()) + var minRequiredInstances = Resource(Int.MAX_VALUE, emptyList()) for (experiment in results) { // Get all successful experiments for requested load if (experiment.key.first == load && experiment.value) { - if (minRequiredInstances == null || experiment.key.second.get() < minRequiredInstances.get()) { + if (experiment.key.second.get() < minRequiredInstances.get()) { // Found new smallest resources minRequiredInstances = experiment.key.second } @@ -83,4 +83,13 @@ class Results { } return maxBenchmarkedLoad } + + /** + * Checks whether the results are empty. + * + * @return true if [results] is empty. + */ + fun isEmpty(): Boolean{ + return results.isEmpty() + } } diff --git a/theodolite/src/main/kotlin/theodolite/util/YamlParserFromString.kt b/theodolite/src/main/kotlin/theodolite/util/YamlParserFromString.kt index 61db189ee99fa5fe36113b0fdecf589ad1114852..0e197908a501c0f6b89761a61989580b18e21f64 100644 --- a/theodolite/src/main/kotlin/theodolite/util/YamlParserFromString.kt +++ b/theodolite/src/main/kotlin/theodolite/util/YamlParserFromString.kt @@ -2,9 +2,6 @@ package theodolite.util import org.yaml.snakeyaml.Yaml import org.yaml.snakeyaml.constructor.Constructor -import java.io.File -import java.io.FileInputStream -import java.io.InputStream /** * The YamlParser parses a YAML string diff --git a/theodolite/src/test/kotlin/theodolite/InitialGuessSearchStrategyTest.kt b/theodolite/src/test/kotlin/theodolite/InitialGuessSearchStrategyTest.kt new file mode 100644 index 0000000000000000000000000000000000000000..1af6f548b219697009c688ace712a9f7f5620bd0 --- /dev/null +++ b/theodolite/src/test/kotlin/theodolite/InitialGuessSearchStrategyTest.kt @@ -0,0 +1,133 @@ +package theodolite + +import io.quarkus.test.junit.QuarkusTest +import org.junit.jupiter.api.Assertions.assertEquals +import org.junit.jupiter.api.Test +import theodolite.benchmark.BenchmarkExecution +import theodolite.strategies.searchstrategy.InitialGuessSearchStrategy +import theodolite.util.LoadDimension +import theodolite.util.Resource +import theodolite.util.Results +import mu.KotlinLogging +import theodolite.strategies.searchstrategy.PrevResourceMinGuess + +private val logger = KotlinLogging.logger {} + +@QuarkusTest +class InitialGuessSearchStrategyTest { + + @Test + fun testInitialGuessSearch() { + val mockResults = arrayOf( + arrayOf(true, true, true, true, true, true, true), + arrayOf(false, false, true, true, true, true, true), + arrayOf(false, false, true, true, true, true, true), + arrayOf(false, false, false, true, true, true, true), + arrayOf(false, false, false, false, true, true, true), + arrayOf(false, false, false, false, false, false, true), + arrayOf(false, false, false, false, false, false, false) + ) + val mockLoads: List<LoadDimension> = (0..6).map { number -> LoadDimension(number, emptyList()) } + val mockResources: List<Resource> = (0..6).map { number -> Resource(number, emptyList()) } + val results = Results() + val benchmark = TestBenchmark() + val guessStrategy = PrevResourceMinGuess() + val sloChecker: BenchmarkExecution.Slo = BenchmarkExecution.Slo() + val benchmarkExecutor = TestBenchmarkExecutorImpl(mockResults, benchmark, results, listOf(sloChecker), 0, 0, 5) + val strategy = InitialGuessSearchStrategy(benchmarkExecutor,guessStrategy, results) + + val actual: ArrayList<Resource?> = ArrayList() + val expected: ArrayList<Resource?> = ArrayList(listOf(0, 2, 2, 3, 4, 6).map { x -> Resource(x, emptyList()) }) + expected.add(null) + + for (load in mockLoads) { + val returnVal : Resource? = strategy.findSuitableResource(load, mockResources) + if(returnVal != null) { + logger.info { "returnVal '${returnVal.get()}'" } + } + else { + logger.info { "returnVal is null." } + } + actual.add(returnVal) + } + + assertEquals(actual, expected) + } + + @Test + fun testInitialGuessSearchLowerResourceDemandHigherLoad() { + val mockResults = arrayOf( + arrayOf(true, true, true, true, true, true, true), + arrayOf(false, false, true, true, true, true, true), + arrayOf(false, false, true, true, true, true, true), + arrayOf(false, true, true, true, true, true, true), + arrayOf(false, false, false, false, true, true, true), + arrayOf(false, false, false, false, false, false, true), + arrayOf(false, false, false, false, false, false, false) + ) + val mockLoads: List<LoadDimension> = (0..6).map { number -> LoadDimension(number, emptyList()) } + val mockResources: List<Resource> = (0..6).map { number -> Resource(number, emptyList()) } + val results = Results() + val benchmark = TestBenchmark() + val guessStrategy = PrevResourceMinGuess() + val sloChecker: BenchmarkExecution.Slo = BenchmarkExecution.Slo() + val benchmarkExecutor = TestBenchmarkExecutorImpl(mockResults, benchmark, results, listOf(sloChecker), 0, 0, 5) + val strategy = InitialGuessSearchStrategy(benchmarkExecutor,guessStrategy, results) + + val actual: ArrayList<Resource?> = ArrayList() + val expected: ArrayList<Resource?> = ArrayList(listOf(0, 2, 2, 1, 4, 6).map { x -> Resource(x, emptyList()) }) + expected.add(null) + + for (load in mockLoads) { + val returnVal : Resource? = strategy.findSuitableResource(load, mockResources) + if(returnVal != null) { + logger.info { "returnVal '${returnVal.get()}'" } + } + else { + logger.info { "returnVal is null." } + } + actual.add(returnVal) + } + + assertEquals(actual, expected) + } + + @Test + fun testInitialGuessSearchFirstNotDoable() { + val mockResults = arrayOf( + arrayOf(false, false, false, false, false, false, false), + arrayOf(false, false, true, true, true, true, true), + arrayOf(false, false, false, true, true, true, true), + arrayOf(true, true, true, true, true, true, true), + arrayOf(false, false, false, false, true, true, true), + arrayOf(false, false, false, false, false, false, true), + arrayOf(false, false, false, false, false, false, false) + ) + val mockLoads: List<LoadDimension> = (0..6).map { number -> LoadDimension(number, emptyList()) } + val mockResources: List<Resource> = (0..6).map { number -> Resource(number, emptyList()) } + val results = Results() + val benchmark = TestBenchmark() + val guessStrategy = PrevResourceMinGuess() + val sloChecker: BenchmarkExecution.Slo = BenchmarkExecution.Slo() + val benchmarkExecutor = TestBenchmarkExecutorImpl(mockResults, benchmark, results, listOf(sloChecker), 0, 0, 5) + val strategy = InitialGuessSearchStrategy(benchmarkExecutor, guessStrategy, results) + + val actual: ArrayList<Resource?> = ArrayList() + var expected: ArrayList<Resource?> = ArrayList(listOf(2, 3, 0, 4, 6).map { x -> Resource(x, emptyList()) }) + expected.add(null) + expected = ArrayList(listOf(null) + expected) + + for (load in mockLoads) { + val returnVal : Resource? = strategy.findSuitableResource(load, mockResources) + if(returnVal != null) { + logger.info { "returnVal '${returnVal.get()}'" } + } + else { + logger.info { "returnVal is null." } + } + actual.add(returnVal) + } + + assertEquals(actual, expected) + } +} \ No newline at end of file diff --git a/theodolite/src/test/kotlin/theodolite/ResourceLimitPatcherTest.kt b/theodolite/src/test/kotlin/theodolite/ResourceLimitPatcherTest.kt index 46758583172c3fcd6417e17ff5bab85f8659734b..b7fc2d9f1b2d5110f974b3805584baa3903d5eb1 100644 --- a/theodolite/src/test/kotlin/theodolite/ResourceLimitPatcherTest.kt +++ b/theodolite/src/test/kotlin/theodolite/ResourceLimitPatcherTest.kt @@ -3,7 +3,7 @@ package theodolite import io.fabric8.kubernetes.api.model.apps.Deployment import io.fabric8.kubernetes.client.DefaultKubernetesClient import io.quarkus.test.junit.QuarkusTest -import io.smallrye.common.constraint.Assert.assertTrue +import org.junit.jupiter.api.Assertions.assertTrue import org.junit.jupiter.api.Test import theodolite.k8s.resourceLoader.K8sResourceLoaderFromFile import theodolite.patcher.PatcherFactory diff --git a/theodolite/src/test/kotlin/theodolite/benchmark/ActionCommandTest.kt b/theodolite/src/test/kotlin/theodolite/benchmark/ActionCommandTest.kt new file mode 100644 index 0000000000000000000000000000000000000000..0e40fca5caf9fe721c547e09d2ba22c25860a1bf --- /dev/null +++ b/theodolite/src/test/kotlin/theodolite/benchmark/ActionCommandTest.kt @@ -0,0 +1,128 @@ +package theodolite.benchmark + +import io.fabric8.kubernetes.api.model.Pod +import io.fabric8.kubernetes.api.model.PodBuilder +import io.fabric8.kubernetes.api.model.PodListBuilder +import io.fabric8.kubernetes.client.server.mock.KubernetesServer +import io.fabric8.kubernetes.client.utils.Utils +import io.quarkus.test.junit.QuarkusTest +import org.junit.jupiter.api.* +import org.junit.jupiter.api.Assertions.assertEquals +import theodolite.execution.operator.TheodoliteController +import theodolite.execution.operator.TheodoliteOperator +import theodolite.util.ActionCommandFailedException + +@QuarkusTest +class ActionCommandTest { + private val server = KubernetesServer(false, false) + lateinit var controller: TheodoliteController + + @BeforeEach + fun setUp() { + server.before() + val operator = TheodoliteOperator() + this.controller = operator.getController( + client = server.client, + executionStateHandler = operator.getExecutionStateHandler(client = server.client), + benchmarkStateChecker = operator.getBenchmarkStateChecker(client = server.client) + ) + + val pod: Pod = PodBuilder().withNewMetadata() + .withName("pod1") + .withResourceVersion("1") + .withLabels<String, String>(mapOf("app" to "pod")) + .withNamespace("test").and() + .build() + + val ready: Pod = createReadyFrom(pod, "True") + + val podList = PodListBuilder().build() + podList.items.add(0, ready) + + server + .expect() + .withPath("/api/v1/namespaces/test/pods?labelSelector=${Utils.toUrlEncoded("app=pod")}") + .andReturn(200, podList) + .always() + + server + .expect() + .get() + .withPath("/api/v1/namespaces/test/pods/pod1") + .andReturn(200, ready) + .always() + + server + .expect() + .withPath("/api/v1/namespaces/test/pods/pod1/exec?command=ls&stdout=true&stderr=true") + .andUpgradeToWebSocket() + .open(ErrorChannelMessage("{\"metadata\":{},\"status\":\"Success\"}\n")) + .done() + .always() + + server + .expect() + .withPath("/api/v1/namespaces/test/pods/pod1/exec?command=error-command&stdout=true&stderr=true") + .andUpgradeToWebSocket() + .open(ErrorChannelMessage("{\"metadata\":{},\"status\":\"failed\", \"details\":{}}\n")) + .done() + .always() + } + + /** + * Copied from fabric8 Kubernetes Client repository + * + * @param pod + * @param status + * @return + */ + fun createReadyFrom(pod: Pod, status: String): Pod { + return PodBuilder(pod) + .withNewStatus() + .addNewCondition() + .withType("Ready") + .withStatus(status) + .endCondition() + .endStatus() + .build() + } + + @AfterEach + fun tearDown() { + server.after() + } + + @Test + fun testGetPodName() { + assertEquals("pod1", ActionCommand(client = server.client).getPodName(mutableMapOf("app" to "pod"), 1)) + } + + @Test + fun testActionSuccess() { + val action = Action() + action.selector = ActionSelector() + action.selector.pod = PodSelector() + action.selector.pod.matchLabels = mutableMapOf("app" to "pod") + action.exec = Command() + action.exec.command = arrayOf("ls") + action.exec.timeoutSeconds = 10L + + action.exec(server.client) + assertEquals( + "/api/v1/namespaces/test/pods/pod1/exec?command=ls&stdout=true&stderr=true", + server.lastRequest.path) + } + + @Test + fun testActionFailed() { + val action = Action() + action.selector = ActionSelector() + action.selector.pod = PodSelector() + action.selector.pod.matchLabels = mutableMapOf("app" to "pod") + action.exec = Command() + action.exec.command = arrayOf("error-command") + action.exec.timeoutSeconds = 10L + + assertThrows<ActionCommandFailedException> { run { action.exec(server.client) } } + } +} diff --git a/theodolite/src/test/kotlin/theodolite/benchmark/ConfigMapResourceSetTest.kt b/theodolite/src/test/kotlin/theodolite/benchmark/ConfigMapResourceSetTest.kt index 2cc8f931418e28ae8841b592f93df8d88440cf3c..bc3263aa5fd06a8a19609d9f677db51f173cf54f 100644 --- a/theodolite/src/test/kotlin/theodolite/benchmark/ConfigMapResourceSetTest.kt +++ b/theodolite/src/test/kotlin/theodolite/benchmark/ConfigMapResourceSetTest.kt @@ -8,16 +8,17 @@ import io.fabric8.kubernetes.api.model.apps.StatefulSet import io.fabric8.kubernetes.api.model.apps.StatefulSetBuilder import io.fabric8.kubernetes.client.server.mock.KubernetesServer import io.quarkus.test.junit.QuarkusTest -import io.smallrye.common.constraint.Assert.assertTrue -import junit.framework.Assert.assertEquals import org.junit.jupiter.api.AfterEach +import org.junit.jupiter.api.Assertions.assertEquals +import org.junit.jupiter.api.Assertions.assertTrue import org.junit.jupiter.api.BeforeEach import org.junit.jupiter.api.Test +import org.junit.jupiter.api.assertThrows import theodolite.k8s.CustomResourceWrapper import theodolite.k8s.resourceLoader.K8sResourceLoaderFromFile import theodolite.util.DeploymentFailedException -private val testResourcePath = "./src/test/resources/k8s-resource-files/" +private const val testResourcePath = "./src/test/resources/k8s-resource-files/" @QuarkusTest class ConfigMapResourceSetTest { @@ -206,21 +207,17 @@ class ConfigMapResourceSetTest { val createdResourcesSet = resourceSet.getResourceSet(server.client) - assertEquals(1,createdResourcesSet.size ) + assertEquals(1, createdResourcesSet.size ) assert(createdResourcesSet.toMutableSet().first().second is Deployment) } - @Test() + @Test fun testConfigMapNotExist() { val resourceSet = ConfigMapResourceSet() resourceSet.name = "test-configmap1" - lateinit var ex: Exception - try { + assertThrows<DeploymentFailedException> { resourceSet.getResourceSet(server.client) - } catch (e: Exception) { - ex = e } - assertTrue(ex is DeploymentFailedException) } } \ No newline at end of file diff --git a/theodolite/src/test/kotlin/theodolite/benchmark/ErrorChannelMessage.kt b/theodolite/src/test/kotlin/theodolite/benchmark/ErrorChannelMessage.kt new file mode 100644 index 0000000000000000000000000000000000000000..df57a2529653a39ccbde14b4a91d30352224457e --- /dev/null +++ b/theodolite/src/test/kotlin/theodolite/benchmark/ErrorChannelMessage.kt @@ -0,0 +1,17 @@ +package theodolite.benchmark + +import io.fabric8.mockwebserver.internal.WebSocketMessage +import java.nio.charset.StandardCharsets + +class ErrorChannelMessage(body: String) : WebSocketMessage(0L, getBodyBytes(OUT_STREAM_ID, body), true, true) { + companion object { + private const val OUT_STREAM_ID: Byte = 3 + private fun getBodyBytes(prefix: Byte, body: String): ByteArray { + val original = body.toByteArray(StandardCharsets.UTF_8) + val prefixed = ByteArray(original.size + 1) + prefixed[0] = prefix + System.arraycopy(original, 0, prefixed, 1, original.size) + return prefixed + } + } +} diff --git a/theodolite/src/test/kotlin/theodolite/benchmark/FileSystemResourceSetTest.kt b/theodolite/src/test/kotlin/theodolite/benchmark/FileSystemResourceSetTest.kt index 59ad2be3248f67442ce352788f8b94b26f3b6b90..f15685c8e0ecd67b99caabb77f68cc35a78b47f2 100644 --- a/theodolite/src/test/kotlin/theodolite/benchmark/FileSystemResourceSetTest.kt +++ b/theodolite/src/test/kotlin/theodolite/benchmark/FileSystemResourceSetTest.kt @@ -5,16 +5,16 @@ import io.fabric8.kubernetes.api.model.Service import io.fabric8.kubernetes.api.model.apps.Deployment import io.fabric8.kubernetes.api.model.apps.StatefulSet import io.fabric8.kubernetes.client.server.mock.KubernetesServer -import io.smallrye.common.constraint.Assert.assertTrue -import junit.framework.Assert.assertEquals import org.junit.jupiter.api.AfterEach +import org.junit.jupiter.api.Assertions.assertEquals +import org.junit.jupiter.api.Assertions.assertTrue import org.junit.jupiter.api.BeforeEach import org.junit.jupiter.api.Test +import org.junit.jupiter.api.assertThrows import theodolite.k8s.CustomResourceWrapper import theodolite.util.DeploymentFailedException -import java.lang.IllegalStateException -private val testResourcePath = "./src/test/resources/k8s-resource-files/" +private const val testResourcePath = "./src/test/resources/k8s-resource-files/" class FileSystemResourceSetTest { @@ -104,12 +104,8 @@ class FileSystemResourceSetTest { fun testWrongPath() { val resourceSet = FileSystemResourceSet() resourceSet.path = "/abc/not-exist" - lateinit var ex: Exception - try { + assertThrows<DeploymentFailedException> { resourceSet.getResourceSet(server.client) - } catch (e: Exception) { - println(e) - ex = e } - assertTrue(ex is DeploymentFailedException) } + } } \ No newline at end of file diff --git a/theodolite/src/test/kotlin/theodolite/execution/operator/BenchmarkCRDummy.kt b/theodolite/src/test/kotlin/theodolite/execution/operator/BenchmarkCRDummy.kt index e294ea539ea60104cc00e9f73de790302ad52670..cbddbfbfc5d6f838677c6d04b0a0c79f59d8bc66 100644 --- a/theodolite/src/test/kotlin/theodolite/execution/operator/BenchmarkCRDummy.kt +++ b/theodolite/src/test/kotlin/theodolite/execution/operator/BenchmarkCRDummy.kt @@ -8,7 +8,7 @@ import theodolite.util.KafkaConfig class BenchmarkCRDummy(name: String) { private val benchmark = KubernetesBenchmark() - private val benchmarkCR = BenchmarkCRD(benchmark) + private val benchmarkCR = BenchmarkCRD() fun getCR(): BenchmarkCRD { return benchmarkCR @@ -34,6 +34,13 @@ class BenchmarkCRDummy(name: String) { benchmark.sut.resources = emptyList() benchmark.loadGenerator.resources = emptyList() + benchmark.infrastructure.beforeActions = emptyList() + benchmark.infrastructure.afterActions = emptyList() + benchmark.sut.beforeActions = emptyList() + benchmark.sut.afterActions = emptyList() + benchmark.loadGenerator.beforeActions = emptyList() + benchmark.loadGenerator.afterActions = emptyList() + benchmark.resourceTypes = emptyList() benchmark.loadTypes = emptyList() benchmark.kafkaConfig = kafkaConfig diff --git a/theodolite/src/test/kotlin/theodolite/execution/operator/BenchmarkStateCheckerTest.kt b/theodolite/src/test/kotlin/theodolite/execution/operator/BenchmarkStateCheckerTest.kt new file mode 100644 index 0000000000000000000000000000000000000000..528cfac8066c28bf6382fb97cddf280b3c1de622 --- /dev/null +++ b/theodolite/src/test/kotlin/theodolite/execution/operator/BenchmarkStateCheckerTest.kt @@ -0,0 +1,177 @@ +package theodolite.execution.operator + +import com.google.gson.Gson +import io.fabric8.kubernetes.api.model.ConfigMapBuilder +import io.fabric8.kubernetes.api.model.Pod +import io.fabric8.kubernetes.api.model.PodBuilder +import io.fabric8.kubernetes.api.model.PodListBuilder +import io.fabric8.kubernetes.api.model.apps.DeploymentBuilder +import io.fabric8.kubernetes.client.server.mock.KubernetesServer +import io.fabric8.kubernetes.client.server.mock.OutputStreamMessage +import io.fabric8.kubernetes.client.utils.Utils +import org.junit.jupiter.api.AfterEach +import org.junit.jupiter.api.BeforeEach +import org.junit.jupiter.api.Test +import org.junit.jupiter.api.Assertions.* +import theodolite.benchmark.* +import theodolite.model.crd.BenchmarkState + +internal class BenchmarkStateCheckerTest { + private val server = KubernetesServer(false, false) + private val serverCrud = KubernetesServer(false, true) + private lateinit var checker: BenchmarkStateChecker + private lateinit var checkerCrud: BenchmarkStateChecker + + @BeforeEach + fun setUp() { + server.before() + serverCrud.before() + val operator = TheodoliteOperator() + checker = BenchmarkStateChecker( + client = server.client, + benchmarkCRDClient = operator.getBenchmarkClient(server.client), + benchmarkStateHandler = operator.getBenchmarkStateHandler(server.client) + ) + + checkerCrud = BenchmarkStateChecker( + client = serverCrud.client, + benchmarkCRDClient = operator.getBenchmarkClient(serverCrud.client), + benchmarkStateHandler = operator.getBenchmarkStateHandler(serverCrud.client) + ) + + val pod: Pod = PodBuilder().withNewMetadata() + .withName("pod1") + .withResourceVersion("1") + .withLabels<String, String>(mapOf("app" to "pod")) + .withNamespace("test").and() + .build() + + val ready: Pod = createReadyFrom(pod, "True") + + val podList = PodListBuilder().build() + podList.items.add(0, ready) + + + server + .expect() + .withPath("/api/v1/namespaces/test/pods?labelSelector=${Utils.toUrlEncoded("app=pod1")}") + .andReturn(200, podList) + .always() + + server + .expect() + .withPath("/api/v1/namespaces/test/pods?labelSelector=${Utils.toUrlEncoded("app=pod0")}") + .andReturn(200, emptyMap<String, String>()) + .always() + + + server + .expect() + .get() + .withPath("/api/v1/namespaces/test/pods/pod1") + .andReturn(200, ready) + .always() + + server + .expect() + .withPath("/api/v1/namespaces/test/pods/pod1/exec?command=ls&stdout=true&stderr=true") + .andUpgradeToWebSocket() + .open(OutputStreamMessage("Test-Output")) + .done() + .always() + } + + @AfterEach + fun tearDown() { + server.after() + serverCrud.after() + } + + /** + * Copied from fabric8 Kubernetes Client repository + * + * @param pod + * @param status + * @return + */ + private fun createReadyFrom(pod: Pod, status: String): Pod { + return PodBuilder(pod) + .withNewStatus() + .addNewCondition() + .withType("Ready") + .withStatus(status) + .endCondition() + .endStatus() + .build() + } + + private fun getActionSelector(label: Pair<String, String>): ActionSelector { + val podSelector = PodSelector() + val actionSelector = ActionSelector() + actionSelector.pod = podSelector + + // pod with matching labels are deployed + podSelector.matchLabels = mutableMapOf(label) + return actionSelector + } + + private fun createAndDeployConfigmapResourceSet(): ResourceSets { + // create test deployment + val resourceBuilder = DeploymentBuilder() + resourceBuilder.withNewSpec().endSpec() + resourceBuilder.withNewMetadata().endMetadata() + val resource = resourceBuilder.build() + resource.metadata.name = "test-deployment" + resource.metadata.labels = mutableMapOf("app" to "pod1") + val resourceString = Gson().toJson(resource) + + // create and deploy configmap + val configMap1 = ConfigMapBuilder() + .withNewMetadata().withName("test-configmap").endMetadata() + .addToData("test-resource.yaml",resourceString) + .build() + + serverCrud.client.configMaps().createOrReplace(configMap1) + + // create configmap resource set + val resourceSet = ConfigMapResourceSet() + resourceSet.name = "test-configmap" + + // create ResourceSetsList + val set = ResourceSets() + set.configMap = resourceSet + return set + } + + @Test + fun checkIfResourceIsDeployed() { + // pod with matching labels are deployed + assertTrue(checker.checkIfResourceIsDeployed(getActionSelector("app" to "pod1"))) + + // no pod with matching labels are deployed + assertFalse(checker.checkIfResourceIsDeployed(getActionSelector("app" to "pod0"))) + } + + @Test + fun checkIfResourceIsInfrastructure() { + val resourceSets = listOf(createAndDeployConfigmapResourceSet()) + assertTrue(checkerCrud.checkIfResourceIsInfrastructure(resourceSets, getActionSelector("app" to "pod1"))) + assertFalse(checkerCrud.checkIfResourceIsInfrastructure(resourceSets, getActionSelector("app" to "pod0"))) + + } + + @Test + fun checkResources() { + val benchmark = BenchmarkCRDummy( + name = "test-benchmark" + ) + benchmark.getCR().spec.setClient(serverCrud.client) + val resourceSet = Resources() + resourceSet.resources = listOf(createAndDeployConfigmapResourceSet()) + benchmark.getCR().spec.infrastructure = resourceSet + benchmark.getCR().spec.loadGenerator = resourceSet + benchmark.getCR().spec.sut = resourceSet + + assertEquals(BenchmarkState.READY,checkerCrud.checkResources(benchmark.getCR().spec)) + } +} \ No newline at end of file diff --git a/theodolite/src/test/kotlin/theodolite/execution/operator/ControllerTest.kt b/theodolite/src/test/kotlin/theodolite/execution/operator/ControllerTest.kt index 7e0532aff36cac2fb1a1c718415315b8f54052c2..7d40f7e45d6aa2c93206a1bad22754fe93b0c100 100644 --- a/theodolite/src/test/kotlin/theodolite/execution/operator/ControllerTest.kt +++ b/theodolite/src/test/kotlin/theodolite/execution/operator/ControllerTest.kt @@ -13,7 +13,7 @@ import org.junit.jupiter.api.Test import theodolite.benchmark.BenchmarkExecution import theodolite.benchmark.KubernetesBenchmark import theodolite.model.crd.BenchmarkCRD -import theodolite.model.crd.BenchmarkStates +import theodolite.model.crd.BenchmarkState import theodolite.model.crd.ExecutionCRD @QuarkusTest @@ -32,15 +32,16 @@ class ControllerTest { @BeforeEach fun setUp() { server.before() - this.controller = TheodoliteOperator().getController( + val operator = TheodoliteOperator() + this.controller = operator.getController( client = server.client, - executionStateHandler = ExecutionStateHandler(server.client), - benchmarkStateHandler = BenchmarkStateHandler(server.client) + executionStateHandler = operator.getExecutionStateHandler(client = server.client), + benchmarkStateChecker = operator.getBenchmarkStateChecker(client = server.client) ) // benchmark val benchmark1 = BenchmarkCRDummy(name = "Test-Benchmark") - benchmark1.getCR().status.resourceSetsState = BenchmarkStates.READY.value + benchmark1.getCR().status.resourceSetsState = BenchmarkState.READY val benchmark2 = BenchmarkCRDummy(name = "Test-Benchmark-123") benchmarkResourceList.items = listOf(benchmark1.getCR(), benchmark2.getCR()) diff --git a/theodolite/src/test/kotlin/theodolite/execution/operator/ExecutionCRDummy.kt b/theodolite/src/test/kotlin/theodolite/execution/operator/ExecutionCRDummy.kt index 51347d41b396bf375c14d5580b0f2619ce5b518c..9274e283b48a6fd9b30d5ce0aff3cb8b995e0ce5 100644 --- a/theodolite/src/test/kotlin/theodolite/execution/operator/ExecutionCRDummy.kt +++ b/theodolite/src/test/kotlin/theodolite/execution/operator/ExecutionCRDummy.kt @@ -3,13 +3,13 @@ package theodolite.execution.operator import theodolite.benchmark.BenchmarkExecution import theodolite.model.crd.ExecutionCRD import theodolite.model.crd.ExecutionStatus -import theodolite.model.crd.ExecutionStates +import theodolite.model.crd.ExecutionState class ExecutionCRDummy(name: String, benchmark: String) { private val execution = BenchmarkExecution() private val executionState = ExecutionStatus() - private val executionCR = ExecutionCRD(execution, executionState) + private val executionCR = ExecutionCRD() fun getCR(): ExecutionCRD { return this.executionCR @@ -25,6 +25,7 @@ class ExecutionCRDummy(name: String, benchmark: String) { executionCR.metadata.name = name executionCR.kind = "Execution" executionCR.apiVersion = "v1" + executionCR.status = executionState // configure execution val loadType = BenchmarkExecution.LoadDefinition() @@ -51,6 +52,6 @@ class ExecutionCRDummy(name: String, benchmark: String) { execution.configOverrides = mutableListOf() execution.name = executionCR.metadata.name - executionState.executionState = ExecutionStates.PENDING.value + executionState.executionState = ExecutionState.PENDING } } \ No newline at end of file diff --git a/theodolite/src/test/kotlin/theodolite/execution/operator/ExecutionEventHandlerTest.kt b/theodolite/src/test/kotlin/theodolite/execution/operator/ExecutionEventHandlerTest.kt index d8db7ab3b64ce3856984ddbc279ef148aa325e73..c08e0565375de84a228a28b6d68a0b713af97d0f 100644 --- a/theodolite/src/test/kotlin/theodolite/execution/operator/ExecutionEventHandlerTest.kt +++ b/theodolite/src/test/kotlin/theodolite/execution/operator/ExecutionEventHandlerTest.kt @@ -1,227 +1,264 @@ package theodolite.execution.operator -import io.fabric8.kubernetes.api.model.KubernetesResource -import io.fabric8.kubernetes.client.informers.SharedInformerFactory +import io.fabric8.kubernetes.api.model.KubernetesResourceList +import io.fabric8.kubernetes.client.dsl.MixedOperation +import io.fabric8.kubernetes.client.dsl.Resource import io.fabric8.kubernetes.client.server.mock.KubernetesServer import io.quarkus.test.junit.QuarkusTest +import io.quarkus.test.kubernetes.client.KubernetesTestServer +import io.quarkus.test.kubernetes.client.WithKubernetesTestServer import org.junit.jupiter.api.AfterEach -import org.junit.jupiter.api.Assertions.assertEquals +import org.junit.jupiter.api.Assertions.* import org.junit.jupiter.api.BeforeEach import org.junit.jupiter.api.DisplayName import org.junit.jupiter.api.Test -import theodolite.k8s.K8sManager -import theodolite.k8s.resourceLoader.K8sResourceLoaderFromFile -import theodolite.model.crd.ExecutionStates -import java.lang.Thread.sleep +import org.junit.jupiter.params.ParameterizedTest +import org.junit.jupiter.params.provider.Arguments +import org.junit.jupiter.params.provider.MethodSource +import org.mockito.kotlin.* +import theodolite.model.crd.ExecutionCRD +import theodolite.model.crd.ExecutionState +import java.io.FileInputStream +import java.util.stream.Stream + +// TODO move somewhere else +typealias ExecutionClient = MixedOperation<ExecutionCRD, KubernetesResourceList<ExecutionCRD>, Resource<ExecutionCRD>> + +@WithKubernetesTestServer +@QuarkusTest +class ExecutionEventHandlerTest { + @KubernetesTestServer + private lateinit var server: KubernetesServer -private const val RESYNC_PERIOD = 1000 * 1000.toLong() + lateinit var executionClient: ExecutionClient + lateinit var controller: TheodoliteController -@QuarkusTest -class ExecutionEventHandlerTest { - private final val server = KubernetesServer(false, true) - private val testResourcePath = "./src/test/resources/k8s-resource-files/" - private final val executionName = "example-execution" - lateinit var factory: SharedInformerFactory - lateinit var executionVersion1: KubernetesResource - lateinit var executionVersion2: KubernetesResource lateinit var stateHandler: ExecutionStateHandler - lateinit var manager: K8sManager - lateinit var controller: TheodoliteController + + lateinit var eventHandler: ExecutionEventHandler @BeforeEach fun setUp() { server.before() - val operator = TheodoliteOperator() - this.controller = operator.getController( - client = server.client, - executionStateHandler = ExecutionStateHandler(client = server.client), - benchmarkStateHandler = BenchmarkStateHandler(client = server.client) - ) - this.factory = operator.getExecutionEventHandler(this.controller, server.client) - this.stateHandler = TheodoliteOperator().getExecutionStateHandler(client = server.client) + this.server.client + .apiextensions().v1() + .customResourceDefinitions() + .load(FileInputStream("crd/crd-execution.yaml")) + .create() - this.executionVersion1 = K8sResourceLoaderFromFile(server.client) - .loadK8sResource("Execution", testResourcePath + "test-execution.yaml") + this.executionClient = this.server.client.resources(ExecutionCRD::class.java) - this.executionVersion2 = K8sResourceLoaderFromFile(server.client) - .loadK8sResource("Execution", testResourcePath + "test-execution-update.yaml") - - this.stateHandler = operator.getExecutionStateHandler(server.client) - - this.manager = K8sManager((server.client)) + this.controller = mock() + this.stateHandler = ExecutionStateHandler(server.client) + this.eventHandler = ExecutionEventHandler(this.controller, this.stateHandler) } @AfterEach fun tearDown() { server.after() - factory.stopAllRegisteredInformers() } @Test - @DisplayName("Check namespaced property of informers") - fun testNamespaced() { - manager.deploy(executionVersion1) - factory.startAllRegisteredInformers() - server.lastRequest - // the second request must be namespaced (this is the first `GET` request) - assert( - server - .lastRequest - .toString() - .contains("namespaces") - ) + fun testCrdRegistered() { + val crds = this.server.client.apiextensions().v1().customResourceDefinitions().list(); + assertEquals(1, crds.items.size) + assertEquals("execution", crds.items[0].spec.names.kind) } @Test - @DisplayName("Test onAdd method for executions without execution state") - fun testWithoutState() { - manager.deploy(executionVersion1) - factory.startAllRegisteredInformers() - sleep(500) - assertEquals( - ExecutionStates.PENDING, - stateHandler.getExecutionState( - resourceName = executionName - ) - ) + fun testExecutionDeploy() { + getExecutionFromSystemResource("k8s-resource-files/test-execution.yaml").create() + + val executions = executionClient.list().items + assertEquals(1, executions.size) } @Test - @DisplayName("Test onAdd method for executions with execution state `RUNNING`") - fun testWithStateIsRunning() { - manager.deploy(executionVersion1) - stateHandler - .setExecutionState( - resourceName = executionName, - status = ExecutionStates.RUNNING - ) - factory.startAllRegisteredInformers() - sleep(500) - assertEquals( - ExecutionStates.RESTART, - stateHandler.getExecutionState( - resourceName = executionName - ) - ) + fun testStatusSet() { + val execCreated = getExecutionFromSystemResource("k8s-resource-files/test-execution.yaml").create() + assertNotNull(execCreated.status) + val execResponse = this.executionClient.withName(execCreated.metadata.name) + val execResponseItem = execResponse.get() + assertNotNull(execResponseItem.status) } @Test - @DisplayName("Test onUpdate method for execution with execution state `PENDING`") - fun testOnUpdatePending() { - manager.deploy(executionVersion1) - - factory.startAllRegisteredInformers() - sleep(500) + @DisplayName("Test onAdd method for executions without execution state") + fun testOnAddWithoutStatus() { + // Create first version of execution resource + val executionResource = getExecutionFromSystemResource("k8s-resource-files/test-execution.yaml") + val execution = executionResource.create() + val executionName = execution.metadata.name - assertEquals( - ExecutionStates.PENDING, - stateHandler.getExecutionState( - resourceName = executionName - ) - ) + // Get execution from server + val executionResponse = this.executionClient.withName(executionName).get() + this.eventHandler.onAdd(executionResponse) - manager.deploy(executionVersion2) - assertEquals( - ExecutionStates.PENDING, - stateHandler.getExecutionState( - resourceName = executionName - ) - ) + assertEquals(ExecutionState.PENDING, this.executionClient.withName(executionName).get().status.executionState) } @Test - @DisplayName("Test onUpdate method for execution with execution state `FINISHED`") - fun testOnUpdateFinished() { - manager.deploy(executionVersion1) - factory.startAllRegisteredInformers() - sleep(500) - - stateHandler.setExecutionState( - resourceName = executionName, - status = ExecutionStates.FINISHED - ) - - manager.deploy(executionVersion2) - sleep(500) - - assertEquals( - ExecutionStates.PENDING, - stateHandler.getExecutionState( - resourceName = executionName - ) - ) + @DisplayName("Test onAdd method for executions with execution state `RUNNING`") + fun testOnAddWithStatusRunning() { + // Create first version of execution resource + val executionResource = getExecutionFromSystemResource("k8s-resource-files/test-execution.yaml") + val execution = executionResource.create() + val executionName = execution.metadata.name + stateHandler.setExecutionState(executionName, ExecutionState.RUNNING) + + // Update status of execution + execution.status.executionState = ExecutionState.RUNNING + executionResource.patchStatus(execution) + + + // Get execution from server + val executionResponse = this.executionClient.withName(executionName).get() + // Assert that status at server matches set status + assertEquals(ExecutionState.RUNNING, this.executionClient.withName(executionName).get().status.executionState) + + whenever(this.controller.isExecutionRunning(executionName)).thenReturn(true) + + this.eventHandler.onAdd(executionResponse) + + verify(this.controller).stop(true) + assertEquals(ExecutionState.RESTART, this.executionClient.withName(executionName).get().status.executionState) } @Test - @DisplayName("Test onUpdate method for execution with execution state `FAILURE`") - fun testOnUpdateFailure() { - manager.deploy(executionVersion1) - factory.startAllRegisteredInformers() - sleep(500) - - stateHandler.setExecutionState( - resourceName = executionName, - status = ExecutionStates.FAILURE - ) - - manager.deploy(executionVersion2) - sleep(500) - - assertEquals( - ExecutionStates.PENDING, - stateHandler.getExecutionState( - resourceName = executionName - ) - ) + @DisplayName("Test onUpdate method for execution with no status") + fun testOnUpdateWithoutStatus() { + // Create first version of execution resource + val firstExecutionResource = getExecutionFromSystemResource("k8s-resource-files/test-execution.yaml") + val firstExecution = firstExecutionResource.create() + val executionName = firstExecution.metadata.name + + // Get execution from server + val firstExecutionResponse = this.executionClient.withName(executionName).get() + // Assert that execution at server has no status + assertEquals(ExecutionState.NO_STATE, firstExecutionResponse.status.executionState) + + // Create new version of execution and update at server + getExecutionFromSystemResource("k8s-resource-files/test-execution-update.yaml").createOrReplace() + // Get execution from server + val secondExecutionResponse = this.executionClient.withName(executionName).get() + + this.eventHandler.onUpdate(firstExecutionResponse, secondExecutionResponse) + + // Get execution from server and assert that new status matches expected one + assertEquals(ExecutionState.PENDING, this.executionClient.withName(executionName).get().status.executionState) } + @ParameterizedTest + @MethodSource("provideOnUpdateTestArguments") + @DisplayName("Test onUpdate method for execution with different status") + fun testOnUpdateWithStatus(beforeState: ExecutionState, expectedState: ExecutionState) { + // Create first version of execution resource + val firstExecutionResource = getExecutionFromSystemResource("k8s-resource-files/test-execution.yaml") + val firstExecution = firstExecutionResource.create() + val executionName = firstExecution.metadata.name + + // Update status of execution + firstExecution.status.executionState = beforeState + firstExecutionResource.patchStatus(firstExecution) + + // Get execution from server + val firstExecutionResponse = this.executionClient.withName(executionName).get() + // Assert that status at server matches set status + assertEquals(beforeState, firstExecutionResponse.status.executionState) + + // Create new version of execution and update at server + getExecutionFromSystemResource("k8s-resource-files/test-execution-update.yaml").createOrReplace() + // Get execution from server + val secondExecutionResponse = this.executionClient.withName(executionName).get() + + this.eventHandler.onUpdate(firstExecutionResponse, secondExecutionResponse) + + // Get execution from server and assert that new status matches expected one + assertEquals(expectedState, this.executionClient.withName(executionName).get().status.executionState) + } @Test - @DisplayName("Test onUpdate method for execution with execution state `RUNNING`") - fun testOnUpdateRunning() { - manager.deploy(executionVersion1) - factory.startAllRegisteredInformers() - sleep(500) - - stateHandler.setExecutionState( - resourceName = executionName, - status = ExecutionStates.RUNNING - ) - - manager.deploy(executionVersion2) - sleep(500) - - assertEquals( - ExecutionStates.RESTART, - stateHandler.getExecutionState( - resourceName = executionName - ) - ) + fun testOnDeleteWithExecutionRunning() { + // Create first version of execution resource + val firstExecutionResource = getExecutionFromSystemResource("k8s-resource-files/test-execution.yaml") + val firstExecution = firstExecutionResource.create() + val executionName = firstExecution.metadata.name + + // Update status of execution to be running + firstExecution.status.executionState = ExecutionState.RUNNING + firstExecutionResource.patchStatus(firstExecution) + + // Get execution from server + val firstExecutionResponse = this.executionClient.withName(executionName).get() + // Assert that execution created at server + assertNotNull(firstExecutionResponse) + + // Delete execution + this.executionClient.delete(firstExecutionResponse) + + // Get execution from server + val secondExecutionResponse = this.executionClient.withName(executionName).get() + // Assert that execution created at server + assertNull(secondExecutionResponse) + + // We consider execution to be running + whenever(this.controller.isExecutionRunning(executionName)).thenReturn(true) + + this.eventHandler.onDelete(firstExecutionResponse, true) + + verify(this.controller).stop(false) } @Test - @DisplayName("Test onUpdate method for execution with execution state `RESTART`") - fun testOnUpdateRestart() { - manager.deploy(executionVersion1) - factory.startAllRegisteredInformers() - sleep(500) - - stateHandler.setExecutionState( - resourceName = executionName, - status = ExecutionStates.RESTART - ) - - manager.deploy(executionVersion2) - sleep(500) - - assertEquals( - ExecutionStates.RESTART, - stateHandler.getExecutionState( - resourceName = executionName + fun testOnDeleteWithExecutionNotRunning() { + // Create first version of execution resource + val firstExecutionResource = getExecutionFromSystemResource("k8s-resource-files/test-execution.yaml") + val firstExecution = firstExecutionResource.create() + val executionName = firstExecution.metadata.name + + // Update status of execution to be running + firstExecution.status.executionState = ExecutionState.RUNNING + firstExecutionResource.patchStatus(firstExecution) + + // Get execution from server + val firstExecutionResponse = this.executionClient.withName(executionName).get() + // Assert that execution created at server + assertNotNull(firstExecutionResponse) + + // Delete execution + this.executionClient.delete(firstExecutionResponse) + + // Get execution from server + val secondExecutionResponse = this.executionClient.withName(executionName).get() + // Assert that execution created at server + assertNull(secondExecutionResponse) + + // We consider execution to be running + whenever(this.controller.isExecutionRunning(executionName)).thenReturn(false) + + this.eventHandler.onDelete(firstExecutionResponse, true) + + verify(this.controller, never()).stop(false) + } + + private fun getExecutionFromSystemResource(resourceName: String): Resource<ExecutionCRD> { + return executionClient.load(ClassLoader.getSystemResourceAsStream(resourceName)) + } + + companion object { + @JvmStatic + fun provideOnUpdateTestArguments(): Stream<Arguments> = + Stream.of( + // before state -> expected state + Arguments.of(ExecutionState.PENDING, ExecutionState.PENDING), + Arguments.of(ExecutionState.FINISHED, ExecutionState.PENDING), + Arguments.of(ExecutionState.FAILURE, ExecutionState.PENDING), + Arguments.of(ExecutionState.RUNNING, ExecutionState.RESTART), + Arguments.of(ExecutionState.RESTART, ExecutionState.RESTART) ) - ) } + } \ No newline at end of file diff --git a/theodolite/src/test/kotlin/theodolite/execution/operator/ExecutionEventHandlerTestWithInformer.kt b/theodolite/src/test/kotlin/theodolite/execution/operator/ExecutionEventHandlerTestWithInformer.kt new file mode 100644 index 0000000000000000000000000000000000000000..adddc705616935e5440c1c601615ce9a065df4c4 --- /dev/null +++ b/theodolite/src/test/kotlin/theodolite/execution/operator/ExecutionEventHandlerTestWithInformer.kt @@ -0,0 +1,283 @@ +package theodolite.execution.operator + +import io.fabric8.kubernetes.client.dsl.Resource +import io.fabric8.kubernetes.client.server.mock.KubernetesServer +import io.quarkus.test.junit.QuarkusTest +import io.quarkus.test.kubernetes.client.KubernetesTestServer +import io.quarkus.test.kubernetes.client.WithKubernetesTestServer +import org.junit.jupiter.api.* +import org.junit.jupiter.api.Assertions.* +import org.junit.jupiter.params.ParameterizedTest +import org.junit.jupiter.params.provider.Arguments +import org.junit.jupiter.params.provider.MethodSource +import org.mockito.kotlin.* +import theodolite.model.crd.ExecutionCRD +import theodolite.model.crd.ExecutionState +import java.io.FileInputStream +import java.util.concurrent.CountDownLatch +import java.util.stream.Stream + +@WithKubernetesTestServer +@QuarkusTest +class ExecutionEventHandlerTestWithInformer { + + @KubernetesTestServer + private lateinit var server: KubernetesServer + + lateinit var executionClient: ExecutionClient + + lateinit var controller: TheodoliteController + + lateinit var stateHandler: ExecutionStateHandler + + lateinit var addCountDownLatch: CountDownLatch + lateinit var updateCountDownLatch: CountDownLatch + lateinit var deleteCountDownLatch: CountDownLatch + + lateinit var eventHandler: ExecutionEventHandlerWrapper + + @BeforeEach + fun setUp() { + server.before() + + this.server.client + .apiextensions().v1() + .customResourceDefinitions() + .load(FileInputStream("crd/crd-execution.yaml")) + .create() + + this.executionClient = this.server.client.resources(ExecutionCRD::class.java) + + this.controller = mock() + this.stateHandler = ExecutionStateHandler(server.client) + this.addCountDownLatch = CountDownLatch(1) + this.updateCountDownLatch = CountDownLatch(2) + this.deleteCountDownLatch = CountDownLatch(1) + this.eventHandler = ExecutionEventHandlerWrapper( + ExecutionEventHandler(this.controller, this.stateHandler), + { addCountDownLatch.countDown() }, + { updateCountDownLatch.countDown() }, + { deleteCountDownLatch.countDown() } + ) + } + + @AfterEach + fun tearDown() { + server.after() + this.server.client.informers().stopAllRegisteredInformers() + } + + @Test + fun testCrdRegistered() { + val crds = this.server.client.apiextensions().v1().customResourceDefinitions().list(); + assertEquals(1, crds.items.size) + assertEquals("execution", crds.items[0].spec.names.kind) + } + + @Test + fun testExecutionDeploy() { + getExecutionFromSystemResource("k8s-resource-files/test-execution.yaml").create() + + val executions = executionClient.list().items + assertEquals(1, executions.size) + } + + @Test + fun testStatusSet() { + val execCreated = getExecutionFromSystemResource("k8s-resource-files/test-execution.yaml").create() + assertNotNull(execCreated.status) + val execResponse = this.executionClient.withName(execCreated.metadata.name) + val execResponseItem = execResponse.get() + assertNotNull(execResponseItem.status) + } + + @Test + @DisplayName("Test onAdd method for executions without execution state") + fun testOnAddWithoutStatus() { + // Create first version of execution resource + val executionResource = getExecutionFromSystemResource("k8s-resource-files/test-execution.yaml") + val execution = executionResource.create() + val executionName = execution.metadata.name + + // Start informer + this.executionClient.inform(eventHandler) + + // Await informer called + this.addCountDownLatch.await() + assertEquals(ExecutionState.PENDING, this.executionClient.withName(executionName).get().status.executionState) + } + + @Test + @DisplayName("Test onAdd method for executions with execution state `RUNNING`") + @Disabled("Flaky test due to multiple informer events.") + fun testOnAddWithStatusRunning() { + // Create first version of execution resource + val executionResource = getExecutionFromSystemResource("k8s-resource-files/test-execution.yaml") + val executionName = executionResource.get().metadata.name + + whenever(this.controller.isExecutionRunning(executionName)).thenReturn(true) + + // Start informer + this.executionClient.inform(eventHandler) + + val execution = executionResource.create() + + // Update status of execution + execution.status.executionState = ExecutionState.RUNNING + executionResource.patchStatus(execution) + + // Assert that status at server matches set status + // assertEquals(ExecutionStates.RUNNING, this.executionClient.withName(executionName).get().status.executionState) + + // Await informer called + this.addCountDownLatch.await() + verify(this.controller).stop(true) + assertEquals(ExecutionState.RESTART, this.executionClient.withName(executionName).get().status.executionState) + } + + @Test + @DisplayName("Test onUpdate method for execution with no status") + fun testOnUpdateWithoutStatus() { + // Create first version of execution resource + val firstExecutionResource = getExecutionFromSystemResource("k8s-resource-files/test-execution.yaml") + val firstExecution = firstExecutionResource.create() + val executionName = firstExecution.metadata.name + + // Start informer + this.executionClient.inform(eventHandler) + + // Get execution from server + val firstExecutionResponse = this.executionClient.withName(executionName).get() + // Assert that execution at server has pending status + assertEquals(ExecutionState.PENDING, firstExecutionResponse.status.executionState) + + // Create new version of execution and update at server + getExecutionFromSystemResource("k8s-resource-files/test-execution-update.yaml").createOrReplace() + + // Await informer called + this.updateCountDownLatch.await() + // Get execution from server and assert that new status matches expected one + assertEquals(ExecutionState.PENDING, this.executionClient.withName(executionName).get().status.executionState) + } + + @ParameterizedTest + @MethodSource("provideOnUpdateTestArguments") + @DisplayName("Test onUpdate method for execution with different status") + fun testOnUpdateWithStatus(beforeState: ExecutionState, expectedState: ExecutionState) { + // Create first version of execution resource + val firstExecutionResource = getExecutionFromSystemResource("k8s-resource-files/test-execution.yaml") + val firstExecution = firstExecutionResource.create() + val executionName = firstExecution.metadata.name + + // Update status of execution + firstExecution.status.executionState = beforeState + firstExecutionResource.patchStatus(firstExecution) + + // Start informer + this.executionClient.inform(eventHandler) + + // Get execution from server + val firstExecutionResponse = this.executionClient.withName(executionName).get() + // Assert that status at server matches set status + assertEquals(beforeState, firstExecutionResponse.status.executionState) + + // Create new version of execution and update at server + getExecutionFromSystemResource("k8s-resource-files/test-execution-update.yaml").createOrReplace() + + // Await informer called + this.updateCountDownLatch.await() + // Get execution from server and assert that new status matches expected one + assertEquals(expectedState, this.executionClient.withName(executionName).get().status.executionState) + } + + @Test + @Disabled("Informer also called onAdd and changes status") + fun testOnDeleteWithExecutionRunning() { + // Create first version of execution resource + val firstExecutionResource = getExecutionFromSystemResource("k8s-resource-files/test-execution.yaml") + val firstExecution = firstExecutionResource.create() + val executionName = firstExecution.metadata.name + + // Update status of execution to be running + firstExecution.status.executionState = ExecutionState.RUNNING + firstExecutionResource.patchStatus(firstExecution) + + // Get execution from server + val firstExecutionResponse = this.executionClient.withName(executionName).get() + // Assert that execution created at server + assertNotNull(firstExecutionResponse) + + // Start informer + this.executionClient.inform(eventHandler) + + // We consider execution to be running + whenever(this.controller.isExecutionRunning(executionName)).thenReturn(true) + + // Delete execution + this.executionClient.delete(firstExecutionResponse) + + // Get execution from server + val secondExecutionResponse = this.executionClient.withName(executionName).get() + // Assert that execution deleted at server + assertNull(secondExecutionResponse) + + // Await informer called + this.deleteCountDownLatch.await() + + verify(this.controller).stop(false) + } + + @Test + fun testOnDeleteWithExecutionNotRunning() { + // Create first version of execution resource + val firstExecutionResource = getExecutionFromSystemResource("k8s-resource-files/test-execution.yaml") + val firstExecution = firstExecutionResource.create() + val executionName = firstExecution.metadata.name + + // Update status of execution to be running + firstExecution.status.executionState = ExecutionState.RUNNING + firstExecutionResource.patchStatus(firstExecution) + + // Get execution from server + val firstExecutionResponse = this.executionClient.withName(executionName).get() + // Assert that execution created at server + assertNotNull(firstExecutionResponse) + + // Start informer + this.executionClient.inform(eventHandler) + + // We consider execution to be running + whenever(this.controller.isExecutionRunning(executionName)).thenReturn(false) + + // Delete execution + this.executionClient.delete(firstExecutionResponse) + + // Get execution from server + val secondExecutionResponse = this.executionClient.withName(executionName).get() + // Assert that execution created at server + assertNull(secondExecutionResponse) + + // Await informer called + this.deleteCountDownLatch.await() + + verify(this.controller, never()).stop(false) + } + + private fun getExecutionFromSystemResource(resourceName: String): Resource<ExecutionCRD> { + return executionClient.load(ClassLoader.getSystemResourceAsStream(resourceName)) + } + + companion object { + @JvmStatic + fun provideOnUpdateTestArguments(): Stream<Arguments> = + Stream.of( + // before state -> expected state + Arguments.of(ExecutionState.PENDING, ExecutionState.PENDING), + Arguments.of(ExecutionState.FINISHED, ExecutionState.PENDING), + Arguments.of(ExecutionState.FAILURE, ExecutionState.PENDING), + // Arguments.of(ExecutionStates.RUNNING, ExecutionStates.RESTART), // see testOnDeleteWithExecutionRunning + Arguments.of(ExecutionState.RESTART, ExecutionState.RESTART) + ) + } + +} \ No newline at end of file diff --git a/theodolite/src/test/kotlin/theodolite/execution/operator/ExecutionEventHandlerWrapper.kt b/theodolite/src/test/kotlin/theodolite/execution/operator/ExecutionEventHandlerWrapper.kt new file mode 100644 index 0000000000000000000000000000000000000000..5dbc515a7799dd51e6395153f13d80650587d7fa --- /dev/null +++ b/theodolite/src/test/kotlin/theodolite/execution/operator/ExecutionEventHandlerWrapper.kt @@ -0,0 +1,27 @@ +package theodolite.execution.operator + +import io.fabric8.kubernetes.client.informers.ResourceEventHandler +import theodolite.model.crd.ExecutionCRD + +class ExecutionEventHandlerWrapper( + private val executionEventHandler: ExecutionEventHandler, + private val afterOnAddCallback: () -> Unit, + private val afterOnUpdateCallback: () -> Unit, + private val afterOnDeleteCallback: () -> Unit +) : ResourceEventHandler<ExecutionCRD> { + + override fun onAdd(execution: ExecutionCRD) { + this.executionEventHandler.onAdd(execution) + this.afterOnAddCallback() + } + + override fun onUpdate(oldExecution: ExecutionCRD, newExecution: ExecutionCRD) { + this.executionEventHandler.onUpdate(oldExecution, newExecution) + this.afterOnUpdateCallback() + } + + override fun onDelete(execution: ExecutionCRD, deletedFinalStateUnknown: Boolean) { + this.executionEventHandler.onDelete(execution, deletedFinalStateUnknown) + this.afterOnDeleteCallback() + } +} \ No newline at end of file diff --git a/theodolite/src/test/kotlin/theodolite/execution/operator/StateHandlerTest.kt b/theodolite/src/test/kotlin/theodolite/execution/operator/StateHandlerTest.kt index a54f4ed6db559f8f7f15ae82deecf3fedf8b4abe..138f79eadc6bdee17e62cc7a961eb7de539fa3df 100644 --- a/theodolite/src/test/kotlin/theodolite/execution/operator/StateHandlerTest.kt +++ b/theodolite/src/test/kotlin/theodolite/execution/operator/StateHandlerTest.kt @@ -1,6 +1,9 @@ package theodolite.execution.operator import io.fabric8.kubernetes.client.server.mock.KubernetesServer +import io.quarkus.test.junit.QuarkusTest +import io.quarkus.test.kubernetes.client.KubernetesTestServer +import io.quarkus.test.kubernetes.client.WithKubernetesTestServer import org.junit.jupiter.api.AfterEach import org.junit.jupiter.api.Assertions.assertEquals import org.junit.jupiter.api.Assertions.assertTrue @@ -9,12 +12,16 @@ import org.junit.jupiter.api.DisplayName import org.junit.jupiter.api.Test import theodolite.k8s.K8sManager import theodolite.k8s.resourceLoader.K8sResourceLoaderFromFile -import theodolite.model.crd.ExecutionStates +import theodolite.model.crd.ExecutionState import java.time.Duration +@QuarkusTest +@WithKubernetesTestServer class StateHandlerTest { private val testResourcePath = "./src/test/resources/k8s-resource-files/" - private val server = KubernetesServer(false, true) + + @KubernetesTestServer + private lateinit var server: KubernetesServer @BeforeEach fun setUp() { @@ -47,14 +54,7 @@ class StateHandlerTest { @DisplayName("Test empty execution state") fun executionWithoutExecutionStatusTest() { val handler = ExecutionStateHandler(client = server.client) - assertEquals(ExecutionStates.NO_STATE, handler.getExecutionState("example-execution")) - } - - @Test - @DisplayName("Test empty duration state") - fun executionWithoutDurationStatusTest() { - val handler = ExecutionStateHandler(client = server.client) - assertEquals("-", handler.getDurationState("example-execution")) + assertEquals(ExecutionState.NO_STATE, handler.getExecutionState("example-execution")) } @Test @@ -62,16 +62,8 @@ class StateHandlerTest { fun executionStatusTest() { val handler = ExecutionStateHandler(client = server.client) - assertTrue(handler.setExecutionState("example-execution", ExecutionStates.INTERRUPTED)) - assertEquals(ExecutionStates.INTERRUPTED, handler.getExecutionState("example-execution")) + assertTrue(handler.setExecutionState("example-execution", ExecutionState.INTERRUPTED)) + assertEquals(ExecutionState.INTERRUPTED, handler.getExecutionState("example-execution")) } - @Test - @DisplayName("Test set and get of the duration state") - fun durationStatusTest() { - val handler = ExecutionStateHandler(client = server.client) - - assertTrue(handler.setDurationState("example-execution", Duration.ofMillis(100))) - assertEquals("0s", handler.getDurationState("example-execution")) - } } \ No newline at end of file diff --git a/theodolite/src/test/kotlin/theodolite/k8s/K8sManagerTest.kt b/theodolite/src/test/kotlin/theodolite/k8s/K8sManagerTest.kt index 7c69618de03f730f5b6f1cb83c5df544e2cd120c..ffc3f2f2b8083ab8b8170fa77c19de3a6ef387e7 100644 --- a/theodolite/src/test/kotlin/theodolite/k8s/K8sManagerTest.kt +++ b/theodolite/src/test/kotlin/theodolite/k8s/K8sManagerTest.kt @@ -8,7 +8,6 @@ import io.fabric8.kubernetes.api.model.apps.StatefulSet import io.fabric8.kubernetes.api.model.apps.StatefulSetBuilder import io.fabric8.kubernetes.client.server.mock.KubernetesServer import io.quarkus.test.junit.QuarkusTest -import mu.KotlinLogging import org.json.JSONObject import org.junit.jupiter.api.AfterEach import org.junit.jupiter.api.Assertions.assertEquals @@ -17,9 +16,6 @@ import org.junit.jupiter.api.DisplayName import org.junit.jupiter.api.Test import theodolite.k8s.resourceLoader.K8sResourceLoaderFromFile - -private val logger = KotlinLogging.logger {} - @QuarkusTest @JsonIgnoreProperties(ignoreUnknown = true) class K8sManagerTest { diff --git a/theodolite/src/test/kotlin/theodolite/model/crd/ExecutionStatusTest.kt b/theodolite/src/test/kotlin/theodolite/model/crd/ExecutionStatusTest.kt new file mode 100644 index 0000000000000000000000000000000000000000..157bc1c03cc40375c928677189f549052e1e134d --- /dev/null +++ b/theodolite/src/test/kotlin/theodolite/model/crd/ExecutionStatusTest.kt @@ -0,0 +1,144 @@ +package theodolite.model.crd + +import com.fasterxml.jackson.databind.ObjectMapper +import com.fasterxml.jackson.databind.exc.InvalidFormatException +import io.fabric8.kubernetes.api.model.MicroTime +import io.fabric8.kubernetes.api.model.Duration as K8sDuration +import org.junit.jupiter.api.Assertions.* +import org.junit.jupiter.api.Test +import org.junit.jupiter.api.assertThrows +import java.time.Clock +import java.time.Duration +import java.time.Instant +import java.time.ZoneId + + +internal class ExecutionStatusTest { + + @Test + fun testDefaultStateSerialization() { + val objectMapper = ObjectMapper() + val executionStatus = ExecutionStatus() + val jsonString = objectMapper.writeValueAsString(executionStatus) + val json = objectMapper.readTree(jsonString) + val jsonField = json.get("executionState") + assertTrue(jsonField.isTextual) + assertEquals(ExecutionState.NO_STATE.value, json.get("executionState").asText()) + } + + @Test + fun testCustomStateSerialization() { + val objectMapper = ObjectMapper() + val executionStatus = ExecutionStatus() + executionStatus.executionState = ExecutionState.PENDING + val jsonString = objectMapper.writeValueAsString(executionStatus) + val json = objectMapper.readTree(jsonString) + val jsonField = json.get("executionState") + assertTrue(jsonField.isTextual) + assertEquals(ExecutionState.PENDING.value, json.get("executionState").asText()) + } + + @Test + fun testStateDeserialization() { + val objectMapper = ObjectMapper() + val json = objectMapper.createObjectNode() + json.put("executionState", ExecutionState.RUNNING.value) + json.put("executionDuration", "") + val jsonString = objectMapper.writeValueAsString(json) + val executionStatus = objectMapper.readValue(jsonString, ExecutionStatus::class.java) + val executionState = executionStatus.executionState + assertNotNull(executionState) + assertEquals(ExecutionState.RUNNING, executionState) + } + + @Test + fun testInvalidStateDeserialization() { + val objectMapper = ObjectMapper() + val json = objectMapper.createObjectNode() + json.put("executionState", "invalid-state") + json.put("executionDuration", "") + val jsonString = objectMapper.writeValueAsString(json) + assertThrows<InvalidFormatException> { + objectMapper.readValue(jsonString, ExecutionStatus::class.java) + } + } + + @Test + fun `test duration for no start and completion time`() { + val executionStatus = ExecutionStatus() + assertNull(executionStatus.startTime) + assertNull(executionStatus.completionTime) + assertNull(executionStatus.executionDuration) + } + + @Test + fun `test duration for no start but completion time`() { + val executionStatus = ExecutionStatus() + executionStatus.completionTime = MicroTime(Instant.parse("2022-01-02T18:59:20.492103Z").toString()) + assertNull(executionStatus.startTime) + assertNull(executionStatus.executionDuration) + } + + @Test + fun `test duration for non completed execution`() { + val startInstant = Instant.parse("2022-01-02T18:59:20.492103Z") + val sinceStart = Duration.ofMinutes(5) + val executionStatus = ExecutionStatus(clock = Clock.fixed(startInstant.plus(sinceStart), ZoneId.systemDefault())) + executionStatus.startTime = MicroTime(startInstant.toString()) + assertNotNull(executionStatus.executionDuration) + assertEquals(K8sDuration(sinceStart), executionStatus.executionDuration) + } + + @Test + fun `test duration for completed execution`() { + val startInstant = Instant.parse("2022-01-02T18:59:20.492103Z") + val sinceStart = Duration.ofMinutes(5) + val executionStatus = ExecutionStatus() + executionStatus.startTime = MicroTime(startInstant.toString()) + executionStatus.completionTime = MicroTime(startInstant.plus(sinceStart).toString()) + assertNotNull(executionStatus.executionDuration) + assertEquals(K8sDuration(sinceStart), executionStatus.executionDuration) + } + + @Test + fun testDurationSerialization() { + val objectMapper = ObjectMapper() + val executionStatus = ExecutionStatus() + val startInstant = Instant.parse("2022-01-02T18:59:20.492103Z") + executionStatus.startTime = MicroTime(startInstant.toString()) + executionStatus.completionTime = MicroTime(startInstant.plus(Duration.ofMinutes(15)).toString()) + val jsonString = objectMapper.writeValueAsString(executionStatus) + val json = objectMapper.readTree(jsonString) + val jsonField = json.get("executionDuration") + assertTrue(jsonField.isTextual) + assertEquals("15m", jsonField.asText()) + } + + @Test + fun testNotStartedDurationSerialization() { + val objectMapper = ObjectMapper() + val executionStatus = ExecutionStatus() + val jsonString = objectMapper.writeValueAsString(executionStatus) + val json = objectMapper.readTree(jsonString) + + assertTrue(json.get("startTime").isNull) + assertTrue(json.get("completionTime").isNull) + assertTrue(json.get("executionDuration").isNull) + } + + @Test + fun testWrongDurationDeserialization() { + val startTime = "2022-01-02T18:59:20.492103Z" + val completionTime = "2022-01-02T19:14:20.492103Z" + val objectMapper = ObjectMapper() + val json = objectMapper.createObjectNode() + json.put("executionState", ExecutionState.RUNNING.value) + json.put("executionDuration", "20m") + json.put("startTime", startTime) + json.put("completionTime", completionTime) + val jsonString = objectMapper.writeValueAsString(json) + val executionStatus = objectMapper.readValue(jsonString, ExecutionStatus::class.java) + assertNotNull(executionStatus.executionDuration) + assertEquals(Duration.ofMinutes(15), executionStatus.executionDuration?.duration) + } +} \ No newline at end of file diff --git a/theodolite/src/test/kotlin/theodolite/util/ExecutionStateComparatorTest.kt b/theodolite/src/test/kotlin/theodolite/util/ExecutionStateComparatorTest.kt index 7332e53f9e1814f28b8ff37a595b31b0eb931ea7..ae80312afd2c128f0f542306a8ffda7f3f53876b 100644 --- a/theodolite/src/test/kotlin/theodolite/util/ExecutionStateComparatorTest.kt +++ b/theodolite/src/test/kotlin/theodolite/util/ExecutionStateComparatorTest.kt @@ -4,7 +4,7 @@ import io.quarkus.test.junit.QuarkusTest import org.junit.jupiter.api.Assertions.assertEquals import org.junit.jupiter.api.Test import theodolite.execution.operator.ExecutionCRDummy -import theodolite.model.crd.ExecutionStates +import theodolite.model.crd.ExecutionState @QuarkusTest @@ -12,14 +12,13 @@ class ExecutionStateComparatorTest { @Test fun testCompare() { - val comparator = ExecutionStateComparator(ExecutionStates.RESTART) + val comparator = ExecutionStateComparator(ExecutionState.RESTART) val execution1 = ExecutionCRDummy("dummy1", "default-benchmark") val execution2 = ExecutionCRDummy("dummy2", "default-benchmark") - execution1.getStatus().executionState = ExecutionStates.RESTART.value - execution2.getStatus().executionState = ExecutionStates.PENDING.value + execution1.getStatus().executionState = ExecutionState.RESTART + execution2.getStatus().executionState = ExecutionState.PENDING val list = listOf(execution2.getCR(), execution1.getCR()) - assertEquals( list.reversed(), list.sortedWith(comparator) diff --git a/theodolite/src/test/kotlin/theodolite/util/IOHandlerTest.kt b/theodolite/src/test/kotlin/theodolite/util/IOHandlerTest.kt index 6b8aa1d567fd2c93c1301fe3f953273e0f5d5420..f84536bfc029a829c1798293938386965eedcf47 100644 --- a/theodolite/src/test/kotlin/theodolite/util/IOHandlerTest.kt +++ b/theodolite/src/test/kotlin/theodolite/util/IOHandlerTest.kt @@ -96,7 +96,7 @@ internal class IOHandlerTest { } - @Test() + @Test @SetEnvironmentVariable.SetEnvironmentVariables( SetEnvironmentVariable(key = "RESULTS_FOLDER", value = "./src/test/resources"), SetEnvironmentVariable(key = "CREATE_RESULTS_FOLDER", value = "false") @@ -105,7 +105,7 @@ internal class IOHandlerTest { assertEquals("./src/test/resources/", IOHandler().getResultFolderURL()) } - @Test() + @Test @SetEnvironmentVariable.SetEnvironmentVariables( SetEnvironmentVariable(key = "RESULTS_FOLDER", value = "$FOLDER_URL-0"), SetEnvironmentVariable(key = "CREATE_RESULTS_FOLDER", value = "false") @@ -121,7 +121,7 @@ internal class IOHandlerTest { assertTrue(exceptionWasThrown) } - @Test() + @Test @SetEnvironmentVariable.SetEnvironmentVariables( SetEnvironmentVariable(key = "RESULTS_FOLDER", value = FOLDER_URL), SetEnvironmentVariable(key = "CREATE_RESULTS_FOLDER", value = "true") @@ -130,7 +130,7 @@ internal class IOHandlerTest { assertEquals("$FOLDER_URL/", IOHandler().getResultFolderURL()) } - @Test() + @Test @ClearEnvironmentVariable(key = "RESULTS_FOLDER") @SetEnvironmentVariable(key = "CREATE_RESULTS_FOLDER", value = "true") fun testGetResultFolderURL_CreateFolderButNoFolderGiven() { diff --git a/theodolite/src/test/resources/mockito-extensions/org.mockito.plugins.MockMaker b/theodolite/src/test/resources/mockito-extensions/org.mockito.plugins.MockMaker new file mode 100644 index 0000000000000000000000000000000000000000..1f0955d450f0dc49ca715b1a0a88a5aa746ee11e --- /dev/null +++ b/theodolite/src/test/resources/mockito-extensions/org.mockito.plugins.MockMaker @@ -0,0 +1 @@ +mock-maker-inline